blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
250
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
5
107
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
185 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
15.7k
664M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
68 values
src_encoding
stringclasses
27 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
6
9.36M
extension
stringclasses
31 values
content
stringlengths
4
9.36M
authors
sequencelengths
1
1
author
stringlengths
0
73
77cf0cfcd529a513e8b989845d201af36c1c7ccc
d958799ac23f52d6363948425fe05fe3e14b11a6
/source/include_local/managed_array_definitions.h
de2cbdafdff1cfbd333913ad8cc1079e4f4765f9
[ "MIT" ]
permissive
BGluth/IoT-Library
858ee1ce1f5d5088e1806b2e730779be7881ff1d
ccd0c2e208e04df76264a1d963283201a5ab7497
refs/heads/master
2020-12-06T12:09:22.994239
2016-09-06T04:57:21
2016-09-06T05:34:57
67,476,062
0
0
null
null
null
null
UTF-8
C
false
false
1,052
h
#ifndef IoTLib_MANGED_ARRAY_DEFINITIONS_H #define IoTLib_MANGED_ARRAY_DEFINITIONS_H #ifdef __cplusplus extern "C" { #endif #include "user_settings.h" #include "typedefs.h" #include "general_macros.h" #include "managed_array_macros.h" #include "managed_key_value_array_macros.h" IoTLib_define_SensorID_with_data_struct(IoTLib_SnsrIDDataPtr, void*); IoTLib_define_managed_array_and_declare_functions(IoTLib_MngdArray_SnsrID, IoTLib_SensorID); IoTLib_define_managed_array_and_declare_functions(IoTLib_MngdArray_String, char*); IoTLib_define_managed_key_value_array_and_declare_functions(IoTLib_MngdKVArray_SnsrIDString, IoTLib_SensorID, const char*); IoTLib_define_managed_key_value_array_and_declare_functions(IoTLib_MngdKVArray_SnsrIDDataPtr, IoTLib_SensorID, void*); IoTLib_define_managed_key_value_array_and_declare_functions(IoTLib_MngdKVArray_SnsrIDFloat, IoTLib_SensorID, float); IoTLib_define_managed_key_value_array_and_declare_functions(IoTLib_MngdKVArray_SnsrIDTime_t, IoTLib_SensorID, IoTLib_TIME_T); #ifdef __cplusplus } #endif #endif
731866ceee31f161d58cc9f477120cb329e75157
8798818bfe50a439b20ff9465b6e6cf4410948b9
/cpu/src/module.memory/memoryRequest.c
c1ba58947d07630321b0196e59f3c5ce96dcd00e
[]
no_license
mujicajuancarlos/tp_so_esther2017
f514c7baeab3ebfc472e41e400af08d71f1abfb0
a5e5f7b7130ba76696234198c19184e46b6ffe24
refs/heads/master
2021-01-01T19:53:51.215756
2017-07-29T06:23:47
2017-07-29T06:23:47
98,713,366
1
0
null
null
null
null
UTF-8
C
false
false
4,336
c
/* * memoryRequest.c * * Created on: 29/4/2017 * Author: utnso */ #include "memoryRequest.h" /** * mi objetivo es solicitar y setear el tmaño de pagina */ void loadMemoryPageSize(cpu_struct* cpuStruct) { Package* package; logInfo("Solicitando a la memoria el tamaño de pagina"); package = createAndSendPackage(cpuStruct->socketClientMemoria, COD_PAGE_SIZE_REQUEST, 0, NULL); if (package == NULL) { logError("No se pudo solicitar el tamaño de pagina"); exit(ERROR_DISCONNECTED_SOCKET); } destroyPackage(package); logInfo("Esperando respuesta de la memoria"); package = createAndReceivePackage(cpuStruct->socketClientMemoria); if (package != NULL && package->msgCode == COD_PAGE_SIZE_RESPONSE) { logInfo("Seteando el tamaño de pagina"); setPageSize(deserialize_int(package->stream)); } else { logError("La memoria respondio con una accion no permitida."); exit(ERROR_UNKNOWN_MESSAGE_CODE); } destroyPackage(package); } char* getDataFromPage(cpu_struct* cpuStruct, int pageNumber, int offset, int size) { Package* package; size_t bufferSize = sizeof(char) * size; char* buffer = malloc(bufferSize); t_PageBytes* data = create_t_PageBytes(getPCB()->pid, pageNumber, offset, size, buffer); char* serializedData = serialize_t_PageBytes(data); size_t serializedSize = sizeof_t_PageBytes(data); logTrace("Solicitando datos para pid: %d pag: %d offset: %d size: %d", getPCB()->pid, pageNumber, offset, size); package = createAndSendPackage(cpuStruct->socketClientMemoria, COD_GET_PAGE_BYTES_REQUEST, serializedSize, serializedData); free(serializedData); destroy_t_PageBytes(data); if (package != NULL) { destroyPackage(package); package = createAndReceivePackage(cpuStruct->socketClientMemoria); if (package != NULL) { switch (package->msgCode) { case COD_GET_PAGE_BYTES_RESPONSE: logInfo( "Solicitud de datos realizada para pid: %d pag: %d offset: %d size: %d", getPCB()->pid, pageNumber, offset, size); data = deserialize_t_PageBytes(package->stream); memcpy(buffer, data->buffer, bufferSize); destroy_t_PageBytes(data); break; case ERROR_SEGMENTATION_FAULT: logError( "La memoria informo que la solicitud produjo SegmentationFault"); setErrorFlag(FLAG_SEGMENTATION_FAULT); break; default: logError("La memoria respondio con un codigo no esperado"); setErrorFlag(FLAG_UNKNOWN_ERROR); break; } destroyPackage(package); } else { logError("No se pudo recibir la solicitud a la memoria"); setErrorFlag(FLAG_DISCONNECTED_MEMORY); } } else { logError("No se pudo enviar la solicitud a la memoria"); setErrorFlag(FLAG_DISCONNECTED_MEMORY); } if (getErrorFlag() != FLAG_OK) { free(buffer); buffer = NULL; } return buffer; } void saveDataOnPage(cpu_struct* cpuStruct, int pageNumber, int offset, int size, char* buffer) { Package* package; t_PageBytes* data = create_t_PageBytes(getPCB()->pid, pageNumber, offset, size, buffer); char* serializedData = serialize_t_PageBytes(data); size_t serializedSize = sizeof_t_PageBytes(data); logTrace("Enviando datos del pid: %d pag: %d offset: %d size: %d", getPCB()->pid, pageNumber, offset, size); package = createAndSendPackage(cpuStruct->socketClientMemoria, COD_SAVE_PAGE_BYTES_REQUEST, serializedSize, serializedData); free(serializedData); destroy_t_PageBytes(data); if (package != NULL) { destroyPackage(package); package = createAndReceivePackage(cpuStruct->socketClientMemoria); if (package != NULL) { switch (package->msgCode) { case COD_SAVE_PAGE_BYTES_RESPONSE: logInfo( "Solicitud para guardar datos realizada para pid: %d pag: %d offset: %d size: %d", getPCB()->pid, pageNumber, offset, size); break; case ERROR_SEGMENTATION_FAULT: logError( "La memoria informo que la solicitud produjo SegmentationFault"); setErrorFlag(FLAG_SEGMENTATION_FAULT); break; default: logError("La memoria respondio con un codigo no esperado"); setErrorFlag(FLAG_UNKNOWN_ERROR); break; } destroyPackage(package); } else { logError("No se pudo recibir la solicitud a la memoria"); setErrorFlag(FLAG_DISCONNECTED_MEMORY); } } else { logError("No se pudo enviar la solicitud a la memoria"); setErrorFlag(FLAG_DISCONNECTED_MEMORY); } }
b53b033395acc1949286339a01cde8746a99d2d3
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/FFmpeg/libswscale/extr_hscale.c_lum_h_scale.c
7d8b8681b732bdaa4bffe6e3167c9b3647a4419a
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
3,863
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_20__ TYPE_7__ ; typedef struct TYPE_19__ TYPE_6__ ; typedef struct TYPE_18__ TYPE_5__ ; typedef struct TYPE_17__ TYPE_4__ ; typedef struct TYPE_16__ TYPE_3__ ; typedef struct TYPE_15__ TYPE_2__ ; typedef struct TYPE_14__ TYPE_1__ ; /* Type definitions */ typedef int /*<<< orphan*/ uint8_t ; typedef int /*<<< orphan*/ int16_t ; struct TYPE_20__ {int xInc; int /*<<< orphan*/ filter_size; int /*<<< orphan*/ filter_pos; int /*<<< orphan*/ filter; } ; struct TYPE_19__ {int /*<<< orphan*/ (* hyScale ) (TYPE_6__*,int /*<<< orphan*/ *,int,int /*<<< orphan*/ const*,int /*<<< orphan*/ ,int /*<<< orphan*/ ,int /*<<< orphan*/ ) ;int /*<<< orphan*/ (* hyscale_fast ) (TYPE_6__*,int /*<<< orphan*/ *,int,int /*<<< orphan*/ *,int,int) ;int /*<<< orphan*/ (* lumConvertRange ) (int /*<<< orphan*/ *,int) ;} ; struct TYPE_18__ {TYPE_4__* dst; TYPE_2__* src; scalar_t__ alpha; TYPE_7__* instance; } ; struct TYPE_17__ {int width; TYPE_3__* plane; } ; struct TYPE_16__ {int sliceY; int sliceH; int /*<<< orphan*/ ** line; } ; struct TYPE_15__ {int width; TYPE_1__* plane; } ; struct TYPE_14__ {int sliceY; int /*<<< orphan*/ ** line; } ; typedef TYPE_5__ SwsFilterDescriptor ; typedef TYPE_6__ SwsContext ; typedef TYPE_7__ FilterContext ; /* Variables and functions */ int /*<<< orphan*/ stub1 (TYPE_6__*,int /*<<< orphan*/ *,int,int /*<<< orphan*/ *,int,int) ; int /*<<< orphan*/ stub2 (TYPE_6__*,int /*<<< orphan*/ *,int,int /*<<< orphan*/ const*,int /*<<< orphan*/ ,int /*<<< orphan*/ ,int /*<<< orphan*/ ) ; int /*<<< orphan*/ stub3 (int /*<<< orphan*/ *,int) ; int /*<<< orphan*/ stub4 (TYPE_6__*,int /*<<< orphan*/ *,int,int /*<<< orphan*/ *,int,int) ; int /*<<< orphan*/ stub5 (TYPE_6__*,int /*<<< orphan*/ *,int,int /*<<< orphan*/ const*,int /*<<< orphan*/ ,int /*<<< orphan*/ ,int /*<<< orphan*/ ) ; __attribute__((used)) static int lum_h_scale(SwsContext *c, SwsFilterDescriptor *desc, int sliceY, int sliceH) { FilterContext *instance = desc->instance; int srcW = desc->src->width; int dstW = desc->dst->width; int xInc = instance->xInc; int i; for (i = 0; i < sliceH; ++i) { uint8_t ** src = desc->src->plane[0].line; uint8_t ** dst = desc->dst->plane[0].line; int src_pos = sliceY+i - desc->src->plane[0].sliceY; int dst_pos = sliceY+i - desc->dst->plane[0].sliceY; if (c->hyscale_fast) { c->hyscale_fast(c, (int16_t*)dst[dst_pos], dstW, src[src_pos], srcW, xInc); } else { c->hyScale(c, (int16_t*)dst[dst_pos], dstW, (const uint8_t *)src[src_pos], instance->filter, instance->filter_pos, instance->filter_size); } if (c->lumConvertRange) c->lumConvertRange((int16_t*)dst[dst_pos], dstW); desc->dst->plane[0].sliceH += 1; if (desc->alpha) { src = desc->src->plane[3].line; dst = desc->dst->plane[3].line; src_pos = sliceY+i - desc->src->plane[3].sliceY; dst_pos = sliceY+i - desc->dst->plane[3].sliceY; desc->dst->plane[3].sliceH += 1; if (c->hyscale_fast) { c->hyscale_fast(c, (int16_t*)dst[dst_pos], dstW, src[src_pos], srcW, xInc); } else { c->hyScale(c, (int16_t*)dst[dst_pos], dstW, (const uint8_t *)src[src_pos], instance->filter, instance->filter_pos, instance->filter_size); } } } return sliceH; }
0c87315bb957cc111a00aea1cd78c65739a9ef94
560aebf2ff7ae3b95b3699e21131d0c80254fb2f
/switch/acs-switch.c
9b137074b7fdec8e6b6e9c4cb4e61102c53b990c
[]
no_license
ktt-ol/access-control-system
2eb008e73c5ed3134488699d84a6b2c188f610cf
406645e88e8c96a3c7c04ed8cffedd5031294a65
refs/heads/master
2020-04-04T07:02:44.847405
2017-07-01T14:17:00
2017-07-01T14:17:00
33,448,848
7
1
null
null
null
null
UTF-8
C
false
false
7,238
c
/* * Space Status Switch * * Copyright (c) 2015-2016, Sebastian Reichel <[email protected]> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <stdio.h> #include <string.h> #include <unistd.h> #include <mosquitto.h> #include <poll.h> #include <stdlib.h> #include <errno.h> #include <linux/gpio.h> #include "../keyboard/gpio.h" #include "../common/config.h" #define TOPIC_CURRENT_STATE "/access-control-system/space-state" #define TOPIC_NEXT_STATE "/access-control-system/space-state-next" #define TOPIC_KEYHOLDER_ID "/access-control-system/keyholder/id" #define TOPIC_KEYHOLDER_NAME "/access-control-system/keyholder/name" #define TOPIC_MESSAGE "/access-control-system/message" #define GPIO_TIMEOUT 60 * 1000 struct gpiodesc gpios[] = { { "platform/3f200000.gpio", 22, "status switch bottom", false, false, -1, -1 }, { "platform/3f200000.gpio", 27, "status switch top", false, false, -1, -1 }, {} }; const static char* states[] = { "switch up (opened)", "switch middle (closing)", "switch down (closed)", "unknown", }; #define GPIOS_CLOSING 0x00 #define GPIOS_CLOSED 0x01 #define GPIOS_OPENED 0x02 static void on_connect(struct mosquitto *m, void *udata, int res) { fprintf(stderr, "Connected.\n"); } static void on_publish(struct mosquitto *m, void *udata, int m_id) { fprintf(stderr, "Message published.\n"); } static void on_log(struct mosquitto *m, void *udata, int level, const char *str) { fprintf(stdout, "[%d] %s\n", level, str); } static const char* gpios_decode(unsigned char gpios) { switch(gpios) { case 0x00: return states[1]; case 0x01: return states[2]; case 0x02: return states[0]; default: return states[3]; } } static bool remove_file(const char *dir, const char *filename) { size_t pathlen = strlen(dir)+strlen(filename)+2; char *path = malloc(pathlen); snprintf(path, pathlen, "%s/%s", dir, filename); bool result = !unlink(path); free(path); return result; } int main(int argc, char **argv) { struct mosquitto *mosq; struct gpioevent_data event; int ret = 0, i; unsigned char old_gpios = 0xFF; mosquitto_lib_init(); FILE *cfg = cfg_open(); char *user = cfg_get_default(cfg, "mqtt-username", MQTT_USERNAME); char *pass = cfg_get_default(cfg, "mqtt-password", MQTT_PASSWORD); char *cert = cfg_get_default(cfg, "mqtt-broker-cert", MQTT_BROKER_CERT); char *host = cfg_get_default(cfg, "mqtt-broker-host", MQTT_BROKER_HOST); int port = cfg_get_int_default(cfg, "mqtt-broker-port", MQTT_BROKER_PORT); int keepalv = cfg_get_int_default(cfg, "mqtt-keepalive", MQTT_KEEPALIVE_SECONDS); char *statedir = cfg_get_default(cfg, "statedir", STATEDIR); cfg_close(cfg); /* create mosquitto client instance */ mosq = mosquitto_new("space-status-switch", true, NULL); if(!mosq) { fprintf(stderr, "Error: Out of memory.\n"); return 1; } /* setup callbacks */ mosquitto_connect_callback_set(mosq, on_connect); mosquitto_publish_callback_set(mosq, on_publish); mosquitto_log_callback_set(mosq, on_log); /* setup credentials */ if (strcmp(user, "")) { ret = mosquitto_username_pw_set(mosq, user, pass); if(ret) { fprintf(stderr, "Error setting credentials: %d\n", ret); return 1; } } if (strcmp(cert, "")) { ret = mosquitto_tls_set(mosq, cert, NULL, NULL, NULL, NULL); if(ret) { fprintf(stderr, "Error setting TLS mode: %d\n", ret); return 1; } ret = mosquitto_tls_opts_set(mosq, 1, "tlsv1.2", NULL); if(ret) { fprintf(stderr, "Error requiring TLS 1.2: %d\n", ret); return 1; } } /* connect to broker */ ret = mosquitto_connect(mosq, host, port, keepalv); if (ret) { fprintf(stderr, "Error could not connect to broker: %d\n", ret); return 1; } for (i = 0; gpios[i].dev; i++) { int err = gpio_init(&gpios[i]); if (err) { fprintf(stderr, "could not init gpio \"%s\": %d!\n", gpios[i].name, err); return 1; } } ret = mosquitto_loop_start(mosq); if (ret) { fprintf(stderr, "Error could not start mosquitto network loop: %d\n", ret); return 1; } struct pollfd fdset[2]; int nfds = 2; fdset[0].fd = gpios[0].evfd; fdset[0].events = POLLIN; fdset[1].fd = gpios[1].evfd; fdset[1].events = POLLIN; for (;;) { ret = poll(fdset, nfds, GPIO_TIMEOUT); if(ret < 0) { fprintf(stderr, "Failed to poll gpios: %d\n", ret); return 1; } uint8_t gpioval; for (i = 0; i < nfds; i++) { bool state; if ((fdset[i].revents & POLLIN) == 0) continue; ret = read(gpios[i].evfd, &event, sizeof(event)); if (ret < 0) { fprintf(stderr, "read failed: %d\n", errno); return 1; } if (event.id == GPIOEVENT_EVENT_RISING_EDGE) gpioval |= (1 << i); else gpioval &= ~(1 << i); } if(gpioval != old_gpios) { old_gpios = gpioval; fprintf(stderr, "new state: %s\n", gpios_decode(gpioval)); char *state_cur; char *state_next; switch(gpioval) { case GPIOS_OPENED: state_cur = "open"; state_next = ""; break; case GPIOS_CLOSED: state_cur = "none"; state_next = ""; break; case GPIOS_CLOSING: state_cur = "open"; state_next = "none"; break; default: break; } /* reset authenticated information */ remove_file(statedir, "keyholder-id"); remove_file(statedir, "keyholder-name"); remove_file(statedir, "status"); remove_file(statedir, "status-next"); remove_file(statedir, "message"); /* publish state */ ret = mosquitto_publish(mosq, NULL, TOPIC_CURRENT_STATE, strlen(state_cur), state_cur, 0, true); if (ret) { fprintf(stderr, "Error could not send message: %d\n", ret); return 1; } ret = mosquitto_publish(mosq, NULL, TOPIC_NEXT_STATE, strlen(state_next), state_next, 0, true); if (ret) { fprintf(stderr, "Error could not send message: %d\n", ret); return 1; } ret = mosquitto_publish(mosq, NULL, TOPIC_KEYHOLDER_ID, strlen("0"), "0", 0, true); if (ret) { fprintf(stderr, "Error could not send message: %d\n", ret); return 1; } ret = mosquitto_publish(mosq, NULL, TOPIC_KEYHOLDER_NAME, 0, "", 0, true); if (ret) { fprintf(stderr, "Error could not send message: %d\n", ret); return 1; } ret = mosquitto_publish(mosq, NULL, TOPIC_MESSAGE, 0, "", 0, true); if (ret) { fprintf(stderr, "Error could not send message: %d\n", ret); return 1; } } else { fprintf(stdout, "gpios: 0x%02x\n", gpioval); } } free(user); free(pass); free(cert); free(host); free(statedir); /* cleanup */ mosquitto_destroy(mosq); mosquitto_lib_cleanup(); return 0; }
c1ee76b5729409c21368cdd6f701d6d5aa74287a
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/fastsocket/kernel/drivers/rtc/extr_rtc-coh901331.c_coh901331_interrupt.c
3d29b664c9588f575a652433ef95fccbf5786be9
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
1,542
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ /* Type definitions */ struct coh901331_port {int /*<<< orphan*/ rtc; int /*<<< orphan*/ clk; scalar_t__ virtbase; } ; typedef int /*<<< orphan*/ irqreturn_t ; /* Variables and functions */ scalar_t__ COH901331_IRQ_EVENT ; scalar_t__ COH901331_IRQ_MASK ; int /*<<< orphan*/ IRQ_HANDLED ; int /*<<< orphan*/ RTC_AF ; int /*<<< orphan*/ clk_disable (int /*<<< orphan*/ ) ; int /*<<< orphan*/ clk_enable (int /*<<< orphan*/ ) ; int /*<<< orphan*/ rtc_update_irq (int /*<<< orphan*/ ,int,int /*<<< orphan*/ ) ; int /*<<< orphan*/ writel (int,scalar_t__) ; __attribute__((used)) static irqreturn_t coh901331_interrupt(int irq, void *data) { struct coh901331_port *rtap = data; clk_enable(rtap->clk); /* Ack IRQ */ writel(1, rtap->virtbase + COH901331_IRQ_EVENT); /* * Disable the interrupt. This is necessary because * the RTC lives on a lower-clocked line and will * not release the IRQ line until after a few (slower) * clock cycles. The interrupt will be re-enabled when * a new alarm is set anyway. */ writel(0, rtap->virtbase + COH901331_IRQ_MASK); clk_disable(rtap->clk); /* Set alarm flag */ rtc_update_irq(rtap->rtc, 1, RTC_AF); return IRQ_HANDLED; }
d3afd172f61bbbdd3d78211d7d4be8dddc82c0d7
373d4b5e397705a92b095f589bed7d92afa593ab
/example/ios/Frameworks/R5Streaming.framework/Headers/global.h
e9460e15bd552f4ff8bf311d998b64f7f92de0b5
[ "Apache-2.0" ]
permissive
nexlesoft/react-native-red5pro
8a54130884de7c43908c807c5ebbf4af07ab6d21
e7fa4eb4ed215a69da5aaddd911bc71ba1c6ab75
refs/heads/master
2023-01-09T21:46:15.694395
2020-01-08T02:37:32
2020-01-08T02:37:32
178,394,049
0
0
Apache-2.0
2019-04-01T06:27:12
2019-03-29T11:34:36
Objective-C
UTF-8
C
false
false
8,647
h
// // global.h // Red5Pro // // Created by Andy Zupko on 9/15/14. // Copyright (c) 2014 Infrared5. All rights reserved. // #ifndef Red5Pro_global_h #define Red5Pro_global_h #ifdef __cplusplus extern "C" { #endif #include <stdlib.h> #ifdef IS_IOS #include <pthread.h> #endif #define STRINGIFY_(s) #s #define STRINGIFY(s) STRINGIFY_(s) #define R5PRO_MAJOR_VERSION 5 #define R5PRO_MINOR_VERSION 2 #define R5PRO_REVISION 0 #define R5PRO_BUILD 0 #define R5PRO_VERSION STRINGIFY(R5PRO_MAJOR_VERSION.R5PRO_MINOR_VERSION.R5PRO_REVISION.R5PRO_BUILD) #define R5PRO_VERSION_ISRELEASE 0 #define R5PRO_VERSION_CHECK(maj, min) ((maj==MYLIB_MAJOR_VERSION) && (min<=MYLIB_MINOR_VERSION)) #define SEC_TO_NANO 1e9 #define SEC_TO_MS 1e3 #if defined(__APPLE__) && defined(__MACH__) /* Apple OSX and iOS (Darwin). ------------------------------ */ #include <TargetConditionals.h> #if TARGET_IPHONE_SIMULATOR == 1 /* iOS in Xcode simulator */ #elif TARGET_OS_IPHONE == 1 /* iOS on iPhone, iPad, etc. */ #elif TARGET_OS_MAC == 1 /* OSX */ #endif #endif #if TARGET_OS_IPHONE == 1 #define LOG(...) fprintf(stdout, __VA_ARGS__); #define LOGD(M, ...) if(r5_get_log_level() <= (int)r5_log_level_debug) fprintf(stderr, "[R5 DEBUG]" M "\n", ##__VA_ARGS__) #define LOGI(M, ...) if(r5_get_log_level() <= (int)r5_log_level_info) fprintf(stderr, "[R5 INFO] " M "\n", ##__VA_ARGS__) #define LOGW(M, ...) if(r5_get_log_level() <= (int)r5_log_level_warn) fprintf(stderr, "[R5 WARNING] " M "\n", ##__VA_ARGS__); #define LOGE(M, ...) if(r5_get_log_level() <= (int)r5_log_level_error) fprintf(stderr, "[R5 ERROR] " M "\n", ##__VA_ARGS__); #else #include <android/log.h> #define LOG(...) __android_log_print(ANDROID_LOG_INFO, "r5pro", __VA_ARGS__); #define LOGD(M, ...) if(r5_get_log_level() <= (int)r5_log_level_debug) LOG(M, ##__VA_ARGS__) #define LOGI(M, ...) if(r5_get_log_level() <= (int)r5_log_level_info) LOG( M, ##__VA_ARGS__) #define LOGW(M, ...) if(r5_get_log_level() <= (int)r5_log_level_warn) LOG( M, ##__VA_ARGS__); #define LOGE(M, ...) if(r5_get_log_level() <= (int)r5_log_level_error) LOG(M, ##__VA_ARGS__); #endif #define check_mem(A) check((A), "Out of memory.") /** * Logging level for R5 Pro API */ enum r5_log_level{ r5_log_level_debug, r5_log_level_info, r5_log_level_warn, r5_log_level_error }; /** * Status code for an R5Stream/R5Connection */ enum r5_status { r5_status_connected, //!< A connection with the server has been established. Streaming has *not* started yet. r5_status_disconnected, //!< The connection with the server has been lost. r5_status_connection_error, //!< There was an error with the connection. r5_status_connection_timeout, //!< The connection has failed due to timeout. r5_status_connection_close, //!< The connection is fully closed. Wait for this before releasing assets. r5_status_start_streaming, //!< Streaming content has begun as a publisher or subscriber r5_status_stop_streaming, //!< Streaming content has stopped. r5_status_netstatus, //!< A netstatus event has been received from the server. r5_status_audio_mute, //!< Publisher has muted their audio stream r5_status_audio_unmute, //!< Publisher has unmuted their audio stream r5_status_video_mute, //!< Publisher has muted their video stream r5_status_video_unmute, //!< Publisher has unmuted their video stream r5_status_license_error, //!< An error in validating the SDK license. r5_status_license_valid, //!< The license key provided for the SDK is deemed valid. r5_status_buffer_flush_start, //!< Publisher has started flushing queued packets post-broadcast. r5_status_buffer_flush_empty, //!< Publisher has completed flushing queued packets post-broadcast. r5_status_video_render_start, //!< Subscriber has rendered first video frame. r5_status_abr_level_change //!< ABR Publisher has changed broadcast level. }; /** * Streaming mode for an R5Stream */ typedef enum r5_stream_mode{ r5_stream_mode_stop, r5_stream_mode_subscribe, r5_stream_mode_publish }r5_stream_mode_t; /** * Buffering state of an R5Stream */ enum r5_buffer_state{ r5_buffer_state_buffered, r5_buffer_state_needs_rebuffer, r5_buffer_state_flush_buffer, r5_buffer_state_rebuffering }; /** * Scale modes for GL rendering of incoming streams */ typedef enum r5_scale_mode{ r5_scale_to_fill, //scale to fill and maintain aspect ratio (cropping will occur) r5_scale_to_fit, //scale to fit inside view (letterboxing will occur) r5_scale_fill //scale to fill view (will not respect aspect ratio of video) }r5_scale_mode; /** * Type of r5_media for encoding */ typedef enum r5_media_type{ r5_media_type_video, //!< Standard video using R5Camera r5_media_type_audio, //!< Standard audio using R5Microphone r5_media_type_video_custom, //!< Custom video source r5_media_type_audio_custom //!< Custom audio source } r5_media_type; /** * Client context */ typedef struct client_ctx client_ctx; /** * Format r5_status events into a readable string * * @param status r5_status to stringify * * @return A string representation the the status code */ const char * r5_string_for_status(int status); /** * Set logging level for the R5 Pro SDK * * @param level r5_log_level of the level of logging desired */ void r5_set_log_level(int level); /** * Internal License validation * * @return if build is valid or not */ int requires_sdk_license(); int r5_valid_license(client_ctx* ctx, const void* license); void r5_validate_license(client_ctx* ctx, const char* license, const char* stream_name, int publish_type); void r5_cancel_license_validation(client_ctx* ctx); /** * @return The current logging level for the R5 Pro library */ int r5_get_log_level(); /** * Current stream time in ms */ double now_ms(void); /** * Stats for an R5Stream */ typedef struct r5_stats{ float buffered_time; //!< Length of content that has been received on socket int subscribe_queue_size; //!< Number of audio/video frames waiting for decode int nb_audio_frames; //!< Number of queued audio frames to be played int nb_video_frames; //!< Number of queued video frames to be played long pkts_received; //!< Num Received packets long pkts_sent; //!< Num Sent packets long pkts_video_dropped; //!< Incoming video packets dropped long pkts_audio_dropped; //!< Incoming audio packets dropped long publish_pkts_dropped; //!< Total audio/video packets dropped due to latency long total_bytes_received; //!< Total bytes received by stream long total_bytes_sent; //!< total bytes sent by stream float subscribe_bitrate; //!< Subscribing bitrate (not smoothed) float publish_bitrate; //!< Publishing bitrate (not smoothed) long socket_queue_size; //!< Num Packets queued to be sent out float bitrate_sent_smoothed; //!< Smoothed outgoing bitrate float bitrate_received_smoothed; //!< Smoothed incoming bitrate float subscribe_latency; //!< How far behind subscriber clock the stream is arriving }r5_stats; /** * Access Stats object for current stream * * @param client Client to retrieve stats for * * @return stats object with current state */ r5_stats *r5_client_stats(client_ctx* client); #ifdef __cplusplus } #endif #endif
3d84efb17f839eef918a2041b68ee301a3b5e1c1
e1eb3b9be4c0512ac7cebebf1198c040decad3a3
/src-ocl/viz_kernels.c
e913f920c6b380b822963fd7efb498575a1f1e38
[]
no_license
sbiersdorff/CoMD
3c0cad7db63d83ab5696146a98bfd6cdb1686c59
f64b751faa28d23417a59fcab1ac166224aaede8
refs/heads/master
2020-12-30T14:56:16.656415
2013-01-16T18:33:50
2013-01-16T18:33:50
null
0
0
null
null
null
null
UTF-8
C
false
false
1,192
c
#define N_MAX_ATOMS 64 #define N_MAX_NEIGHBORS 27 #define PERIODIC 1 #define ALLOW_PRINTF 0 #if defined(cl_khr_fp64) // Khronos extension available? #pragma OPENCL EXTENSION cl_khr_fp64 : enable #elif defined(cl_amd_fp64) // AMD extension available? #pragma OPENCL EXTENSION cl_amd_fp64 : enable #endif typedef CL_REAL_T real_t; __kernel void Viz( __global real_t* x_pos, __global real_t* y_pos, __global real_t* z_pos, const __global int* n_atoms, __global real_t* x_cen, __global real_t* y_cen, __global real_t* z_cen, __global float* vertices) { int i_atom = get_global_id(0); int ibox = get_global_id(1); int offset = N_MAX_ATOMS; if (i_atom < n_atoms[ibox]) { vertices[i_atom*3 + offset*ibox*3 + 0] = x_cen[ibox] + x_pos[i_atom + offset*ibox]; vertices[i_atom*3 + offset*ibox*3 + 1] = y_cen[ibox] + y_pos[i_atom + offset*ibox]; vertices[i_atom*3 + offset*ibox*3 + 2] = z_cen[ibox] + z_pos[i_atom + offset*ibox]; } else { vertices[i_atom*3 + offset*ibox*3 + 0] = 0.0f; vertices[i_atom*3 + offset*ibox*3 + 1] = 0.0f; vertices[i_atom*3 + offset*ibox*3 + 2] = 0.0f; } }
bf5e764aaadc29dcb5ce15c37c323d83a8857049
0a3a35f75ac698b41951163469edb0960eceba24
/ders_kodlari/Cart_Grad_Desc.c
eb553f53706db6bad750018025b753e729e52cb8
[]
no_license
Halil-Kaya/paralel_programing_in_c
31f76e1159dfbeec809dcf065c9256f917f42f93
50ecff33222c6627a4181c41ebe6ad248842f992
refs/heads/main
2023-05-31T12:51:57.670400
2021-06-10T17:48:04
2021-06-10T17:48:04
346,143,981
2
0
null
null
null
null
UTF-8
C
false
false
4,291
c
#include <stdio.h> #include <stdlib.h> #include "mpi.h" #include "time.h" #include "math.h" #define MASTER 0 #define COMM MPI_COMM_WORLD float *create1DArray( int n ) { float *v = (float *)malloc( n * sizeof(float) ); return v; } void fillArray(float *v, int n) { srand( time( 0 ) ); int i; for (i = 0; i < n; i++) v[i] = (float)rand() / (float)RAND_MAX; } float innerProd(float *u, float * v, int n) { int i; float sum = 0.0; for (i = 0; i < n; i++) sum += u[i] * v[i]; return sum; } float *matVecProd(float *M, float *v, int n1, int n2) { float *r = create1DArray( n1 ); int i; for (i = 0; i < n1; i++) r[i] = innerProd(&M[i*n2], v, n2); return r; } float *vecSubt(float *u, float *v, int n) { float *r = create1DArray( n ); int i; for (i = 0; i < n; i++) r[i] = u[i] - v[i]; return r; } float *scalarProd(float *u, float alpha, int n) { float *r = create1DArray( n ); int i; for (i = 0; i < n; i++) r[i] = alpha * u[i]; return r; } float sumOfSquares(float *u, int n) { int i; float sum = 0.0; for (i = 0; i < n; i++) sum += u[i] * u[i]; return sum; } int main(int *argc, char* argv[]) { int const n1 = atoi( argv[1] ); int const n2 = atoi( argv[2] ); float const ALPHA = atof( argv[3] ); int const NITERS = atoi( argv[4] ); int rank, size; MPI_Init(NULL, NULL); double t1 = MPI_Wtime(); // Start timer MPI_Comm_size(COMM, &size); MPI_Comm_rank(COMM, &rank); int chunk1 = n1 / size; int chunk2 = n2 / size; float *A, *x, *b, *A_local, *b_local, *r_local, *y_local, *y, *A_local_T, *x_local, *u_local; float ss_y_local, ss_y; x = create1DArray( n2 ); if (rank == MASTER) { A = create1DArray( n1 * n2 ); fillArray(A, n1 * n2); fillArray(x, n2); b = create1DArray( n1 ); fillArray(b, n1); } // Row type MPI_Datatype rowType; MPI_Type_contiguous(n2, MPI_FLOAT, &rowType); MPI_Type_commit(&rowType); // Col type MPI_Datatype colType, newColType; MPI_Type_vector(n1, 1, n2, MPI_FLOAT, &colType); MPI_Type_commit(&colType); MPI_Type_create_resized(colType, 0, sizeof(float), &newColType); MPI_Type_commit(&newColType); // 1-D Cartesian Topology MPI_Comm CartTopo; int dims[] = { size }; int periods[] = { 0 }; // non-periodic MPI_Cart_create(COMM, 1, dims, periods, 1, &CartTopo); int iter; for (iter = 1; iter <= NITERS; iter++) { // Broadcast x as initial guess vector MPI_Bcast(x, 1, rowType, MASTER, CartTopo); // Scatter A matrix A_local = create1DArray(chunk1 * n2); MPI_Scatter(A, chunk1, rowType, A_local, chunk1 * n2, MPI_FLOAT, MASTER, CartTopo); // Scatter b vector b_local = create1DArray(chunk1); MPI_Scatter(b, chunk1, MPI_FLOAT, b_local, chunk1, MPI_FLOAT, MASTER, CartTopo); // Compute A_local * x - b_local = y_local y_local = create1DArray(chunk1); r_local = create1DArray(chunk1); r_local = matVecProd(A_local, x, chunk1, n2); // multiplication y_local = vecSubt(r_local, b_local, chunk1); // subtraction // Allgather y from y_local's y = create1DArray(n1); MPI_Allgather(y_local, chunk1, MPI_FLOAT, y, chunk1, MPI_FLOAT, CartTopo); // Scatter columns of A into A_local_T's A_local_T = create1DArray(chunk2 * n1); MPI_Scatter(A, chunk2, newColType, A_local_T, chunk2 * n1, MPI_FLOAT, MASTER, CartTopo); // Compute A_local_T * y = u_local u_local = create1DArray( chunk2 ); u_local = matVecProd(A_local_T, y, chunk2, n1); // multipication // Scatter x into x_local's x_local = create1DArray( chunk2 ); MPI_Scatter(x, chunk2, MPI_FLOAT, x_local, chunk2, MPI_FLOAT, MASTER, CartTopo); // Compute x_local := x_local - ALPHA * u_local x_local = vecSubt( x_local, scalarProd(u_local, ALPHA, chunk2), chunk2 ); // Gather x_local's and obtain the solution MPI_Gather(x_local, chunk2, MPI_FLOAT, x, chunk2, MPI_FLOAT, MASTER, CartTopo); // Compute sum of squares of the elements of y_local's ss_y_local = sumOfSquares(y_local, chunk1); MPI_Reduce(&ss_y_local, &ss_y, 1, MPI_FLOAT, MPI_SUM, MASTER, CartTopo); // MASTER computes the square root of ss_y and prints out the error if (rank == MASTER) printf( "Iteration %d: Error = %.10f\n", iter, sqrt(ss_y) ); } // end of iteration double t2 = MPI_Wtime(); if (rank == MASTER) { puts(""); printf("Time elapsed = %f sec.\n", t2 - t1); } MPI_Finalize(); }
2d69a93431620f7ccefce0eb732c481f2b93eedd
48b8a695ae85b928263e26f326fe5e2b5710484b
/src/bolos_ux_not_personalized.c
9c6147273c2819a9cf43dd31712f8bf2056f82a7
[ "Apache-2.0" ]
permissive
petertodd/nanos-ui
986c368fa3fb26afd4f4899c41c7dd716aaab0a2
17772c5038d292ad97688bc3adfe63914e838408
refs/heads/master
2021-01-13T05:00:16.307050
2016-10-18T07:14:49
2016-10-18T07:14:49
81,170,038
0
0
null
2017-02-07T05:28:17
2017-02-07T05:28:17
null
UTF-8
C
false
false
1,885
c
/******************************************************************************* * Ledger Nano S - Secure firmware * (c) 2016 Ledger * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ********************************************************************************/ #include "os.h" #include "cx.h" #include "os_io_seproxyhal.h" #include "string.h" #include "bolos_ux_common.h" #ifdef OS_IO_SEPROXYHAL const bagl_element_t screen_not_personalized_static_elements[] = { {{BAGL_RECTANGLE, 0x00, 0, 0, 128, 32, 0, 0, BAGL_FILL, 0x000000, 0xFFFFFF, 0, 0}, NULL, 0, 0, 0, NULL, NULL, NULL}, {{BAGL_LABELINE, 0x00, 0, 20, 128, 32, 0, 0, 0, 0x000000, 0xFFFFFF, BAGL_FONT_OPEN_SANS_LIGHT_16px | BAGL_FONT_ALIGNMENT_CENTER, 0}, "FAB MODE", 0, 0, 0, NULL, NULL, NULL}, }; void screen_not_personalized_init(void) { screen_state_init(); G_bolos_ux_context.screen_current_element_arrays[0].element_array = screen_not_personalized_static_elements; G_bolos_ux_context.screen_current_element_arrays[0].element_array_count = ARRAYLEN(screen_not_personalized_static_elements); G_bolos_ux_context.screen_current_element_arrays_count = 1; G_bolos_ux_context.exit_code_after_elements_displayed = BOLOS_UX_OK; screen_display_init(); } #endif // OS_IO_SEPROXYHAL
4e4829494a961f39726428177029c6eb78087490
02ed6e0706a23fa8d76b3426b421588ea870a431
/sdcc/lib/_sinf.c
4862592f09df58f6022be3a0d955b5057a9bc1d6
[ "BSD-2-Clause" ]
permissive
Megatokio/zasm
b83947f19638c14cfd0dd8708787aa322209c9d3
a64835d1d1a09baa5b181bcabfe8f1ff94d55d90
refs/heads/master
2023-08-17T02:18:07.071090
2023-08-14T21:42:59
2023-08-14T21:42:59
218,482,353
78
19
BSD-2-Clause
2023-05-16T05:58:09
2019-10-30T08:47:13
Assembly
UTF-8
C
false
false
1,691
c
/*------------------------------------------------------------------------- sinf.c - Computes sin(x) where x is a 32-bit float. Copyright (C) 2001, 2002, Jesus Calvino-Fraga, [email protected] This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This library 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 General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, if you link this library with other files, some of which are compiled with SDCC, to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. Version 1.0 - Initial release kio 2014-11-26 added #pragma std_sdcc99 for bool kio 2014-11-26 removed keyword FLOAT_FUNC_REENTRANT because functions on the z80 are always rentrant */ #pragma std_sdcc99 #include <math.h> #include <stdbool.h> float sincosf(float x, bool iscos); float sinf(float x) { if (x==0.0) return 0.0; return sincosf(x, 0); }
71f116da61e7c379902a270715ea203b36b42df9
aa7134f7f1abdcbc0ca0252178d6b3bfd3d742a3
/FinalExam/FinalExam/StringLB.h
21048041b10d28b461c99a9714e41024092f6092
[]
no_license
rivki770/C-WorkSpace
4cd0aa781519371d6d2fa3e2de770a48720008dd
a9336161e30fdf910f91baad54a83408d45afa9a
refs/heads/master
2023-06-10T08:52:21.632184
2021-06-28T08:39:07
2021-06-28T08:39:07
375,623,126
0
0
null
null
null
null
UTF-8
C
false
false
1,883
h
#ifndef _STRLIB #define _STRLIB #define FALSE 0 #define TRUE 1 #include <stdio.h> #include <string.h> /** * @file * The Final Exam - The StringLibary */ /** * @brief The stract describe string (= char*). */ typedef struct String_t { char *string; size_t sizeString; } String; /** * @brief Enum of Bool. */ typedef enum { F, T } BOOL; /** * @brief The function that get char* and create string from it. * @param source is the input char*. * @return pointer to the String. */ String *CreateString(const char *source); /** * @brief The function that get string and delete him. * @param *str pointer is the string*. * @return BOOL T or F, if the delete was done. */ BOOL DeleteString(String *str); /** * @brief The function that get string and his length. * @param *str pointer is the string*. * @return the length of the string */ size_t GetStringLength(const String *str); /** * @brief The function that get string and return if he enpty or not. * @param *str pointer is the string*. * @return BOOL false or true */ BOOL IsEmpty(const String *str); /** * @brief The function that get string and string, compare between them. * @param *str1 pointer is the string*. * @param *str2 pointer is the string*. * @see strcmp(_In_z_ char const* _Str1, _In_z_ char const* _Str2) * @return int = 0/-1/1 */ int CompareString(const String *str1, const String *str2); /** * @brief The function that get string and string, and copy the string1 to the string2. * @param src pointer is the input string*. * @param dst pointer is the output string*. */ void CopyString(String *dst, const String *src); /** * @brief The function that get char* and string, and copy the char to the string. * @param src pointer is the input char*. * @param dst pointer is the output string*. * @see CreateString(const char *source) */ void CopyCString(String *dst, const char *src); #endif // !_STRLIB
821efb13938c92cc0714c995a07a60f42f41c15b
f7bdc0323b0f7e3365cca4035bd7ec2e31432acc
/libft/ft_strstr.c
6af453977baed400fbcab3feac3e5c27118cc5af
[]
no_license
aleung-c/Abstract_VM
5f070573cc02f798fdf26931270a7bf89b463bc1
677c9420754a50242025ab1e4ee79456ab1a8dd8
refs/heads/master
2021-05-01T00:24:41.818227
2016-11-02T17:49:02
2016-11-02T17:49:02
69,872,283
2
0
null
null
null
null
UTF-8
C
false
false
1,226
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aleung-c <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2014/11/05 18:15:37 by aleung-c #+# #+# */ /* Updated: 2014/11/13 11:58:13 by aleung-c ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" char *ft_strstr(const char *s1, const char *s2) { unsigned int i; unsigned int j; i = 0; j = 0; if (s2[0] == '\0' || s2 == NULL) return ((char *)s1); while (s1[i] != '\0') { if (s1[i] == s2[j]) j++; else j = 0; if (!s2[j]) return ((char *)s1 + (i - (j - 1))); i++; } return (NULL); }
8f2f336ee47d482444d982941dd05b0ab7dc4502
117e204844ebf3386e87b72d6e93f8859167b209
/exercicio2.1/server_tcp.c
58bb44ad337bb12a6aa2821461a2fd98285ae711
[]
no_license
FranciscoRafael/mc833
7797ffdc3029441d0a8427386e1886026d900f84
fe3b62ea5a42255925ebeb4e491afa245de7e581
refs/heads/master
2021-01-20T03:53:12.037019
2017-06-28T22:39:14
2017-06-28T22:39:14
89,598,644
0
0
null
null
null
null
UTF-8
C
false
false
2,607
c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <netdb.h> #define LISTEN_PORT 7000 #define MAX_PENDING 5 #define MAX_LINE 256 int main() { struct sockaddr_in socket_address, client, info; char buf[MAX_LINE]; unsigned int len; int s, new_s, aux = 0, r, len_info; char tam[INET_ADDRSTRLEN]; int pid; bzero((char *)&socket_address, sizeof(socket_address)); // criacao de um socket do servidor s = socket(AF_INET, SOCK_STREAM, 0); // verifica se o socket foi criado corretamente if(s == -1) { printf("Erro ao criar o socket\n"); exit(1); } else { printf("Socket criado com sucesso\n"); } //inicializacao das estruturas de dados do sockaddr do servidor socket_address.sin_family = AF_INET; socket_address.sin_addr.s_addr = INADDR_ANY; socket_address.sin_port = htons(LISTEN_PORT); // processo de bind, verifica se pode associar o socket a porta aux = bind(s,(struct sockaddr *)&socket_address , sizeof(socket_address)); if(aux < 0) { printf("Erro no binding\n"); exit(1); } else { printf("Bind efetuado com sucesso\n"); } // habilita o socket para receber conexoes aux = listen(s, MAX_PENDING); if(aux < 0) { printf("Erro no listen\n"); exit(1); } else { printf("Listen realizado com sucesso\n"); } printf("Esperando conexao\n"); len = sizeof(struct sockaddr_in); len_info = sizeof(struct sockaddr_in); while(1) { // aceita conexoes de clientes new_s= accept(s,(struct sockaddr *)&client,(socklen_t*)&len); if(new_s < 0) { printf("Erro ao aceitar o cliente\n"); exit(1); } pid = fork(); if(pid < 0) { printf("Ërro no Fork()\n"); } else if(pid == 0) { close(s); printf("Conxeao aceita com sucesso\n"); getpeername(new_s, (struct sockaddr *)&info, (socklen_t*)&len_info); inet_ntop(AF_INET, &info.sin_addr, tam, sizeof(tam)); printf("IP - Remoto: %s\nPorta - Remota: %i\n\n", tam, ntohs(info.sin_port)); while(1) { //zera o buffer bzero(buf, MAX_LINE); // loop que fica lendo as mensagens de um socket e enviando o ECO recv(new_s, buf, MAX_LINE, 0); //printf("Cliente: %s, %i\n", tam, ntohs(info.sin_port)); printf("Mensagem: "); for(int i = 0; i < strlen(buf); i++) { printf("%c", buf[i]); } printf("\n"); //write(new_s, buf, strlen(buf)); //printf("Eco enviado\n\n"); bzero(buf, MAX_LINE); } } else { close(new_s); } } }
6e7f071635414d7fc5814ad5017c991eda3af8a0
7f1aee4501c3bfc4e9a944997aee43b35e81e46e
/kilo/editor.h
640937b3d0a69e9b4d7d9ef5374b61e62be5765b
[]
no_license
xyzshantaram/c_learning
b1da56aec9f8406b0272dd0021b0adb0d1704a20
5634b7de5935f5bf76c8b1d1759c723f23c691ce
refs/heads/master
2023-01-09T16:42:17.843379
2020-11-12T05:39:57
2020-11-12T05:39:57
289,935,840
1
1
null
null
null
null
UTF-8
C
false
false
1,991
h
#ifndef __EDITOR_H #define __EDITOR_H #include "highlighting.h" #include "termutils.h" #include "structs.h" #include <ctype.h> #include <errno.h> #include <fcntl.h> #include <stdarg.h> #include <stdio.h> #include <string.h> #include <sys/ioctl.h> #include <sys/types.h> #include <time.h> #include <termios.h> #include <unistd.h> #define KILO_VERSION "ch 7" #define TAB_SIZE 4 #define STATUSLINE_COUNT 2 #define STATUS_TIMEOUT 2 #define QUIT_CONFIRM_COUNT 3 #define CTRL_KEY(k) ((k)&0x1f) void editor_draw_rows(struct editor_state *state, struct abuf *ab); void editor_refresh_screen(struct editor_state *state); void init_editor(struct editor_state *state); void editor_move_cursor(struct editor_state *state, int key); int editor_read_key(struct editor_state *state); void editor_process_keypress(struct editor_state *state); void editor_open_file(struct editor_state *state, const char *filename); void editor_insert_row(struct editor_state *state, char *s, size_t len, size_t at); void editor_update_row(struct editor_state *state, e_row *row); void editor_set_status(struct editor_state *state, const char *fmt, ...); char *editor_rows_to_string(struct editor_state *state, int *buf_len); void editor_row_append_string(struct editor_state *state, e_row *row, char *s, size_t len); void editor_delete_row(struct editor_state *state, size_t at); char *e_get_prompt_response(struct editor_state *state, const char *prompt, void (*callback)(struct editor_state *, char *, int)); void editor_delete_char(struct editor_state *state); int e_row_cx_to_rx(e_row *row, int cx); void editor_insert_char(struct editor_state *state, int c); void editor_insert_newline(struct editor_state *state); void editor_find_callback(struct editor_state *state, char *query, int key); void editor_find(struct editor_state *state); enum editor_key { ARROW_LEFT = 1000, ARROW_RIGHT, ARROW_UP, ARROW_DOWN, PAGE_UP, PAGE_DOWN, HOME, END, DEL, BACKSPACE = 127, }; #endif
44d70cd8dcb34a7ecd14da06c856b3d529dd45ae
737820840f83c4ec9493a8c0cc89b3159e2e1a57
/socketapi/eventsignal.h
3260bd160266c1af219d5045c70e92b77a9cc964
[]
permissive
NEAT-project/neat
01a89631cff654ebc118d97547517de295b90bda
652ee991043ce3560a6e5715fa2a5c211139d15c
refs/heads/master
2023-03-06T05:04:23.557554
2022-08-23T14:03:41
2022-08-23T14:03:41
33,730,163
74
21
BSD-3-Clause
2020-12-08T00:06:24
2015-04-10T13:33:46
C
UTF-8
C
false
false
2,891
h
/* * Socket API implementation for NEAT * Copyright (C) 2016-2021 by Thomas Dreibholz <[email protected]> * 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 name of NEAT nor the names of its * 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 HOLDER 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. */ #ifndef EVENTSIGNAL_H #define EVENTSIGNAL_H #include <stdbool.h> #include <pthread.h> #include <sys/queue.h> struct event_signal; struct event_signal_node { TAILQ_ENTRY(event_signal_node) esn_node; struct event_signal* esn_event_signal_ptr; }; struct event_signal { pthread_mutex_t es_mutex; pthread_cond_t es_condition; bool es_has_fired; TAILQ_HEAD(event_signal_node_header, event_signal_node) es_parent_list; }; #ifdef __cplusplus extern "C" { #endif void es_new(struct event_signal* es, struct event_signal* parent); void es_delete(struct event_signal* es); void es_add_parent(struct event_signal* es, struct event_signal* parent); void es_remove_parent(struct event_signal* es, struct event_signal* parent); void es_fire(struct event_signal* es, const bool broadcast); void es_signal(struct event_signal* es); void es_broadcast(struct event_signal* es); bool es_has_fired(struct event_signal* es); bool es_peek_fired(struct event_signal* es); void es_wait(struct event_signal* es); bool es_timed_wait(struct event_signal* es, const long microseconds); #ifdef __cplusplus } #endif #endif
22f9bb5cecee767183efcad8f24e527a34c871ef
913e1e21c57db09433100696bf81e8e1847dd2b4
/src/compat/endian.h
8601fd1f8bb247b24a8f1ea094582cd039f70f6f
[ "MIT" ]
permissive
D0WN3D/gobyte
de4e08e0f00157393a9b5ad1b5934fa6abfcfadf
54c44641acf6eb1308a518ff76911db2968047f6
refs/heads/master
2021-06-20T09:23:01.333012
2020-08-27T16:22:33
2020-08-27T16:22:33
131,578,732
0
0
MIT
2018-04-30T09:41:00
2018-04-30T09:41:00
null
UTF-8
C
false
false
4,029
h
// Copyright (c) 2014-2015 The Bitcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COMPAT_ENDIAN_H #define BITCOIN_COMPAT_ENDIAN_H #if defined(HAVE_CONFIG_H) #include "config/gobyte-config.h" #endif #include <stdint.h> #include "compat/byteswap.h" #if defined(HAVE_ENDIAN_H) #include <endian.h> #elif defined(HAVE_SYS_ENDIAN_H) #include <sys/endian.h> #endif #if defined(WORDS_BIGENDIAN) #if HAVE_DECL_HTOBE16 == 0 inline uint16_t htobe16(uint16_t host_16bits) { return host_16bits; } #endif // HAVE_DECL_HTOBE16 #if HAVE_DECL_HTOLE16 == 0 inline uint16_t htole16(uint16_t host_16bits) { return bswap_16(host_16bits); } #endif // HAVE_DECL_HTOLE16 #if HAVE_DECL_BE16TOH == 0 inline uint16_t be16toh(uint16_t big_endian_16bits) { return big_endian_16bits; } #endif // HAVE_DECL_BE16TOH #if HAVE_DECL_LE16TOH == 0 inline uint16_t le16toh(uint16_t little_endian_16bits) { return bswap_16(little_endian_16bits); } #endif // HAVE_DECL_LE16TOH #if HAVE_DECL_HTOBE32 == 0 inline uint32_t htobe32(uint32_t host_32bits) { return host_32bits; } #endif // HAVE_DECL_HTOBE32 #if HAVE_DECL_HTOLE32 == 0 inline uint32_t htole32(uint32_t host_32bits) { return bswap_32(host_32bits); } #endif // HAVE_DECL_HTOLE32 #if HAVE_DECL_BE32TOH == 0 inline uint32_t be32toh(uint32_t big_endian_32bits) { return big_endian_32bits; } #endif // HAVE_DECL_BE32TOH #if HAVE_DECL_LE32TOH == 0 inline uint32_t le32toh(uint32_t little_endian_32bits) { return bswap_32(little_endian_32bits); } #endif // HAVE_DECL_LE32TOH #if HAVE_DECL_HTOBE64 == 0 inline uint64_t htobe64(uint64_t host_64bits) { return host_64bits; } #endif // HAVE_DECL_HTOBE64 #if HAVE_DECL_HTOLE64 == 0 inline uint64_t htole64(uint64_t host_64bits) { return bswap_64(host_64bits); } #endif // HAVE_DECL_HTOLE64 #if HAVE_DECL_BE64TOH == 0 inline uint64_t be64toh(uint64_t big_endian_64bits) { return big_endian_64bits; } #endif // HAVE_DECL_BE64TOH #if HAVE_DECL_LE64TOH == 0 inline uint64_t le64toh(uint64_t little_endian_64bits) { return bswap_64(little_endian_64bits); } #endif // HAVE_DECL_LE64TOH #else // WORDS_BIGENDIAN #if HAVE_DECL_HTOBE16 == 0 /*inline uint16_t htobe16(uint16_t host_16bits) { return bswap_16(host_16bits); } */ #endif // HAVE_DECL_HTOBE16 #if HAVE_DECL_HTOLE16 == 0 inline uint16_t htole16(uint16_t host_16bits) { return host_16bits; } #endif // HAVE_DECL_HTOLE16 #if HAVE_DECL_BE16TOH == 0 inline uint16_t be16toh(uint16_t big_endian_16bits) { return bswap_16(big_endian_16bits); } #endif // HAVE_DECL_BE16TOH #if HAVE_DECL_LE16TOH == 0 inline uint16_t le16toh(uint16_t little_endian_16bits) { return little_endian_16bits; } #endif // HAVE_DECL_LE16TOH #if HAVE_DECL_HTOBE32 == 0 inline uint32_t htobe32(uint32_t host_32bits) { return bswap_32(host_32bits); } #endif // HAVE_DECL_HTOBE32 #if HAVE_DECL_HTOLE32 == 0 inline uint32_t htole32(uint32_t host_32bits) { return host_32bits; } #endif // HAVE_DECL_HTOLE32 #if HAVE_DECL_BE32TOH == 0 inline uint32_t be32toh(uint32_t big_endian_32bits) { return bswap_32(big_endian_32bits); } #endif // HAVE_DECL_BE32TOH #if HAVE_DECL_LE32TOH == 0 inline uint32_t le32toh(uint32_t little_endian_32bits) { return little_endian_32bits; } #endif // HAVE_DECL_LE32TOH #if HAVE_DECL_HTOBE64 == 0 inline uint64_t htobe64(uint64_t host_64bits) { return bswap_64(host_64bits); } #endif // HAVE_DECL_HTOBE64 #if HAVE_DECL_HTOLE64 == 0 inline uint64_t htole64(uint64_t host_64bits) { return host_64bits; } #endif // HAVE_DECL_HTOLE64 #if HAVE_DECL_BE64TOH == 0 inline uint64_t be64toh(uint64_t big_endian_64bits) { return bswap_64(big_endian_64bits); } #endif // HAVE_DECL_BE64TOH #if HAVE_DECL_LE64TOH == 0 inline uint64_t le64toh(uint64_t little_endian_64bits) { return little_endian_64bits; } #endif // HAVE_DECL_LE64TOH #endif // WORDS_BIGENDIAN #endif // BITCOIN_COMPAT_ENDIAN_H
00d9a625bcaf5c16bc9690574216210fffb22ee2
2988e64ec9789e5e04f84857cfaffadbe45a94d6
/XsLuaJIT/src/lmem.h
b6a7e0ac7bc42132c433152a8035a14c10fab2cf
[ "MIT" ]
permissive
avoitishin/XsLuaJIT
298e254d95507bd5b1057995bdebdb8fe0c12750
2d5df86da5680a0933ce0f2ab9408f113363d0fd
refs/heads/master
2021-01-16T20:42:39.691233
2014-04-09T17:47:58
2014-04-09T17:47:58
null
0
0
null
null
null
null
UTF-8
C
false
false
1,709
h
/* ** $Id: lmem.h,v 1.31.1.1 2007/12/27 13:02:25 roberto Exp $ ** Interface to Memory Manager ** See Copyright Notice in lua.h */ #ifndef lmem_h #define lmem_h #include <stddef.h> #include "llimits.h" #include "lua.h" #define MEMERRMSG "not enough memory" #define luaM_reallocv(L,b,on,n,e) \ ((cast(size_t, (n)+1) <= MAX_SIZET/(e)) ? /* +1 to avoid warnings */ \ luaM_realloc_(L, (b), (on)*(e), (n)*(e)) : \ luaM_toobig(L)) #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0) #define luaM_freearray(L, b, n, t) luaM_reallocv(L, (b), n, 0, sizeof(t)) #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) #define luaM_realloc(L,p,os,ns) luaM_realloc_(L, (p), (os), (ns)) #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t))) #define luaM_newvector(L,n,t) \ cast(t *, luaM_reallocv(L, NULL, 0, n, sizeof(t))) #define luaM_growvector(L,v,nelems,size,t,limit,e) \ if ((nelems)+1 > (size)) \ ((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e))) #define luaM_reallocvector(L, v,oldn,n,t) \ ((v)=cast(t *, luaM_reallocv(L, v, oldn, n, sizeof(t)))) LUAI_FUNC void* luaM_realloc_ (lua_State* L, void* block, size_t oldsize, size_t size); LUAI_FUNC void* luaM_toobig (lua_State* L); LUAI_FUNC void* luaM_growaux_ (lua_State* L, void* block, int* size, size_t size_elem, int limit, const char* errormsg); #endif // lmem_h
378aca900650c1848a6826ed209a99247113b67e
5ef4b50ffdf7b4ae413eaad4ec886536af65ca23
/86.c
119257dc54dbb705936fb437aa2f57631064084c
[]
no_license
chenxu-liu/haizei
190cbc2a424c8f2e63f0800fb99a4ac40799e710
9bc0512b35f12911e6c3abf4dd05b1e35c72e45e
refs/heads/master
2022-06-17T16:14:24.104581
2020-05-08T16:43:42
2020-05-08T16:43:42
198,056,161
0
0
null
null
null
null
UTF-8
C
false
false
87
c
nclude<stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d",a*b*c);}
90258b2364eb8ec361a66d50b53c96120290b427
2f8b9e79e0d2f8232678415a1902ca8b742e1d93
/c-study/lesson/sample.h
0e0aed31313d1026e3f51c14ef7a6bb7b51b1620
[]
no_license
chunxiao369/chunxiao-code
38b62c8ca70a580e52ddfe87179ece6e4438b101
0988085f89907ad9ffce640ef4a1e97e40d86591
refs/heads/master
2023-07-08T23:46:43.624505
2023-07-06T08:20:51
2023-07-06T08:20:51
27,289,836
1
0
null
2019-10-31T10:54:41
2014-11-29T03:12:36
C
UTF-8
C
false
false
5,163
h
enum { IOCTL_BCM_GET_COUNTERS, IOCTL_BCM_CLEAR_COUNTERS, IOCTL_BCM_GET_PORT_STATUS, IOCTL_BCM_SET_PORT_AUTONEG, IOCTL_BCM_FP_INIT, IOCTL_BCM_FP_ENTRY_ADD, IOCTL_BCM_FP_UDF_SET, IOCTL_BCM_VLAN_INIT, IOCTL_BCM_VLAN_CREATE, IOCTL_BCM_VLAN_ADD, IOCTL_BCM_VLAN_REMOVE, IOCTL_BCM_VLAN_DESTROY, IOCTL_BCM_FP_ENTRY_REMOVE, IOCTL_BCM_PVLAN_SET, IOCTL_BCM_GROUP_NUMBER_GET, IOCTL_BCM_XGE_PHY_SET, IOCTL_BCM_XGE_PHY_GET, IOCTL_BCM_SET_PORT_LEARN, IOCTL_BCM_SET_PORT_PAUSE, IOCTL_BCM_SET_PORT_SPEED, IOCTL_BCM_GE_PHY_SET, IOCTL_BCM_GE_PHY_GET, IOCTL_BCM_FP_ENTRY_ACTION, IOCTL_BCM_TRUNK_ADD, IOCTL_BCM_TRUNK_REMOVE, IOCTL_BCM_REG_GET, IOCTL_BCM_REG_SET, IOCTL_BCM_SLB_READ, IOCTL_BCM_SLB_WRITE, }; enum { KEY_MASK_IPVERSION = 0x0001, KEY_MASK_PROTOCOL = 0x0002, KEY_MASK_SIP = 0x0004, KEY_MASK_DIP = 0x0008, KEY_MASK_SPORT = 0x0010, KEY_MASK_DPORT = 0x0020, KEY_MASK_FIN = 0x0040, KEY_MASK_SYN = 0x0080, KEY_MASK_RST = 0x0100, KEY_MASK_PSH = 0x0200, KEY_MASK_ACK = 0x0400, KEY_MASK_URG = 0x0800, KEY_MASK_TCP_FLAG = 0x0fc0, KEY_MASK_OUTER_VLAN = 0x1000, KEY_MASK_RANGE = 0x2000, KEY_MASK_IPFRAGMENT = 0x4000, KEY_MASK_INTERFACE = 0x8000, KEY_MASK_ALL = 0xffff, KEY_MASK_SIPV6 = 0x10000, KEY_MASK_DIPV6 = 0x20000, KEY_MASK_INPORTS = 0x40000, KEY_MASK_DSTPORTTGID = 0x80000, }; enum { KEY_MODE_TYPICAL, KEY_MODE_IPV6_SRC, KEY_MODE_IPV6_DST, KEY_MODE_RESERVE, }; #define BCM_UDF_VLAN_MASK 0x60 #define BCM_UDF_VLAN_NOTAG 0x00 #define BCM_UDF_VLAN_ONETAG 0x20 #define BCM_UDF_VLAN_TWOTAG 0x40 #define BCM_UDF_VLAN_NOTUSED 0x60 #define BCM_UDF_L2_MASK 0x18 #define BCM_UDF_L2_ETHERNET2 0x00 #define BCM_UDF_L2_SNAP 0x08 #define BCM_UDF_L2_LLC 0x10 #define BCM_UDF_L2_OTHER 0x18 #define BCM_UDF_IP_MASK 0x07 #define BCM_UDF_IP4_HDR_ONLY 0x00 #define BCM_UDF_IP6_HDR_ONLY 0x01 #define BCM_UDF_IP6_FRAGMENT 0x02 #define BCM_UDF_IP4_OVER_IP4 0x03 #define BCM_UDF_IP6_OVER_IP4 0x04 #define BCM_UDF_IP6_FRAGMENT_OVER_IP4 0x05 #define BCM_UDF_IP_OTHER 0x06 #define BCM_UDF_IP_NOTUSED 0x07 #define G_GROUP_NUM 8 #define G_RULE_NUM 64 #define G_ENTRY_NUM 1024 typedef struct { char name[20]; unsigned long long total; unsigned long long rate; }xy_counter_t; typedef struct { int unit; int port; int cntr_num; xy_counter_t * cntr; }ioctl_bcm_get_counters_t; typedef struct { int unit; int port; }ioctl_bcm_clear_counters_t; typedef struct { int unit; int port; int link; int speed; int duplex; int autoneg; int pause; int max_frame; }ioctl_bcm_get_port_status_t; typedef struct { int unit; int port; int autoneg; int pause; int speed; int duplex; int max_frame; }ioctl_bcm_set_port_config_t; typedef struct { int unit; int port; int enable; }ioctl_bcm_set_port_learn_t; typedef struct { unsigned int key_mask; //unsigned int user_data_mask; unsigned int protocol; unsigned int sip; unsigned int sip_mask; unsigned int dip; unsigned int dip_mask; unsigned short outer_vlan; unsigned short outer_vlan_mask; unsigned short min_sport; unsigned short max_sport; unsigned short sport_mask; unsigned short min_dport; unsigned short max_dport; unsigned short dport_mask; unsigned int tcp_flag; //unsigned char udf[32]; //unsigned char udf_mask[32]; int dstporttgid; int ipfragment; int inports; int ipversion; int ruleid; int gid; int eid; }bcm_fp_entry_t ; typedef struct { int gid; int prio; int mode; int keymode; int free; }bcm_fp_group_t ; typedef struct { int udf_id; int type; int offset; } bcm_fp_udf_t ; typedef struct { int vid; unsigned int port_map; unsigned int untag_map; } bcm_ext_vlan_t ; typedef struct { int vid; unsigned int port_map; } bcm_pvlan_t ; typedef struct { unsigned int port; unsigned char devad; unsigned short reg; unsigned short mask; unsigned short value; } bcm_phy_t ; typedef struct { int eid; int action; int param0; int param1; } bcm_fp_entry_action_t; typedef struct { int tid; int rtag; int pbmp; } ioctl_bcm_trunk_t; typedef struct bcm_reg_args_s { char a_cmd[64]; /* Initial string */ char a_argv[16][16]; /* argv pointers */ char a_buffer[64]; /* Split up buffer */ int a_argc; /* Parsed arg counter */ int a_arg; /* Pointer to NEXT arg */ int unit; } bcm_reg_args_t; typedef struct bcm_slb_args_s { uint8_t device_id; uint8_t sub_mode; uint16_t address; uint16_t value; } bcm_slb_args_t;
cad8368608455d8d20bd83a7ce3e551b6498e7f7
b2d48aac47dc3a3050f9cb562808f0e6f19a36e4
/siva/assignmnt_aura/storage_classes/static/fun1.c
6c925b1e4a669a1b156c6cd48f57639ad765960a
[]
no_license
bhagavansprasad/students
7f7df2f4c2350025d58406794a7d94d9c8a9d7be
2822fb81cfb6714d48dea1e4957d6011ffa6198b
refs/heads/master
2023-08-04T04:44:11.346963
2023-07-24T06:09:00
2023-07-24T06:09:00
193,177,404
0
0
null
2022-11-30T23:33:00
2019-06-22T01:21:59
C
UTF-8
C
false
false
123
c
void my_function1(void) { //static int a = 20; printf("-->a :%d\r\n", a); a++; printf("-->a :%d\r\n", a); }
5cffe125a1386257dcdf178125bf6e327098c91e
eae53d8a076f447f966d0d79e5e72cb6963fe663
/workspace 2016/Week2/src2w/argv-2.c
a601b4324bb8ec1c08e9f4e1d272cb3fed57316e
[]
no_license
RaminMammadzada/CS50x-Introduction-to-Computer-Science
409c66f9e3ba91614535bfa1566d2de3893ede0a
8a3001600f42edc20caae9bcae85b4138402c206
refs/heads/master
2021-01-12T08:54:35.979177
2017-03-23T17:16:32
2017-03-23T17:16:32
79,552,212
1
1
null
null
null
null
UTF-8
C
false
false
481
c
/** * argv-2.c * * David J. Malan * [email protected] * * Prints command-line arguments, one character per line. * * Demonstrates argv as a two-dimensional array. */ #include <cs50.h> #include <stdio.h> #include <string.h> int main(int argc, string argv[]) { // print arguments for (int i = 0; i < argc; i++) { for (int j = 0, n = strlen(argv[i]); j < n; j++) { printf("%c\n", argv[i][j]); } printf("\n"); } }
7ea695ca1894ac16d5900b67591a876758119eee
41e3316373d8f75c1e38cdcd50b540ac824fe526
/dtof.c
c84a10ffe586a568d45156a6cf3af0aeb7f8d8c3
[ "MIT" ]
permissive
shubhamguptaji/C-codes
fe83dcb0f66ab9eb5147be2a9210cd053eb16899
2ecc44048a76d24bc93ac473894bb03af23a70cc
refs/heads/master
2021-09-03T10:00:44.399083
2018-01-08T07:08:36
2018-01-08T07:08:36
104,838,901
2
0
null
null
null
null
UTF-8
C
false
false
132
c
#include<stdio.h> void main() { double x; printf("enter a number"); scanf("%lf",&x); float y; y=(float)x; printf("%f",y); }
7762bd950de7b3159d586c977e72600b35d9c912
7725b1eb9d79fa67c1eea73f8279527c04dc6dd0
/Pods/Headers/Public/PubMaticSDK/PMNativeAdDelegate.h
7cae313a9209c00edadeb73c5af81c01ea7baba0
[]
no_license
jboehler/SampleAS24PubMaticCocoaPods
a5359fc6167d15017d7981570bcd946a901af6b9
553fe8baa367e102d96d74bd31d2a8bb631a4447
refs/heads/master
2020-03-16T08:20:15.278763
2018-05-16T14:24:01
2018-05-16T14:24:01
132,594,563
0
1
null
2018-05-09T12:28:45
2018-05-08T10:43:35
Objective-C
UTF-8
C
false
false
93
h
../../../PubMaticSDK/PubMatic-iOS-SDK/PubMaticSDK/PubMaticSDK/PMNativeAd/PMNativeAdDelegate.h
aa0cc51539a1468ea3016cf7bc9ba762fb1d20a4
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/ds/nw/convert/nwconv/filesel.h
3551d9f0bec4257f8e7116d2265e3c29d32026fd
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C
false
false
4,296
h
/*+-------------------------------------------------------------------------+ | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. | +-------------------------------------------------------------------------+*/ #ifndef _HFILESEL_ #define _HFILESEL_ #ifdef __cplusplus extern "C"{ #endif // Forward references as the structures are recursively linked struct _DIR_BUFFER; struct _DIR_LIST; struct _FILE_BUFFER; struct _FILE_LIST; struct SHARE_BUFFER; /*+-------------------------------------------------------------------------+ | | The dir/file lists contain all the information used when working with | a file tree. The naming convention is that a buffer (I.E. | DIR_BUFFER) contains the information for one entry (one directory | or one file). A List is an array of buffers of the appropriate | type (DIR_LIST contains an array of DIR_BUFFERS). | | The whole mess starts with a root DIR_BUFFER, the DIR_BUFFER then | points to a cascading chain of DIR and FILE LISTS. | | Almost all of the structures are a doubly linked list with a pointer back | to their parent. A buffer parent pointer, points to it's parent list | structure. The List structure then has a back pointer to the parent | DIR_BUFFER. This facilitates recursing up and down the chain when | an item is checked/un-checked and it's parent and/or children are affected. | | +--------+ +----------+ | | Dir |<--->| Dir List | | | Buffer |<-+ +----------+ | +--------+ | | Dir |-->Dir List... | | | Buffer |-->File List... | | + - - - - -+ | | | | | | + - - - - -+ | | | | | | | | | | +-----------+ | +->| File List | | +-----------+ | | File | | | Buffer | | + - - - - - + | | | | + - - - - - + | | | | +-------------------------------------------------------------------------+*/ #define CONVERT_NONE 0 #define CONVERT_ALL 1 #define CONVERT_PARTIAL 2 // A dir buffer holds a directory or sub-directory entry, with pointers to the // files and other dirs within it. typedef struct _DIR_BUFFER { TCHAR Name[MAX_PATH]; struct _DIR_LIST *parent; BOOL Last; // Flag is last dir-buffer in list DWORD Attributes; BYTE Convert; // None, All or Partial BOOL Special; struct _DIR_LIST *DirList; // Directory List structure struct _FILE_LIST *FileList; // File List structure } DIR_BUFFER; // A dir list contains the sub-directories in a directory - basically a count // and then array of sub-dirs. typedef struct _DIR_LIST { ULONG Count; DIR_BUFFER *parent; UINT Level; // how deeply nested in file tree (nesting level) DIR_BUFFER DirBuffer[]; } DIR_LIST; // Structures to hold information on individual files selected/de-selected for // conversion typedef struct _FILE_BUFFER { TCHAR Name[MAX_PATH]; struct _FILE_LIST *parent; BOOL Convert; DWORD Attributes; ULONG Size; } FILE_BUFFER; typedef struct _FILE_LIST { ULONG Count; DIR_BUFFER *parent; FILE_BUFFER FileBuffer[]; } FILE_LIST; typedef struct _FILE_PATH_BUFFER { LPTSTR Server; LPTSTR Share; LPTSTR Path; TCHAR FullPath[MAX_PATH + 1]; } FILE_PATH_BUFFER; /*+-------------------------------------------------------------------------+ | Function Prototypes | +-------------------------------------------------------------------------+*/ void TreeDelete(DIR_BUFFER *Dir); void TreePrune(DIR_BUFFER *Dir); ULONG TreeCount(DIR_BUFFER *Dir); DIR_BUFFER *TreeCopy(DIR_BUFFER *Dir); FILE_PATH_BUFFER *FilePathInit(); void FilePathServerSet(FILE_PATH_BUFFER *fpBuf, LPTSTR Server); void FilePathShareSet(FILE_PATH_BUFFER *fpBuf, LPTSTR Share); void FilePathPathSet(FILE_PATH_BUFFER *fpBuf, LPTSTR Path); #ifdef __cplusplus } #endif #endif
b01f0cf17bd0f7ed8025dce87a3a27d446667395
53e1cfd01f4fb6ff6160b5292c471a3d77a48660
/share_memory/testapp.c
f3ecff4d4feef59564485c8ebf738fa8078a7715
[]
no_license
MarkTseng/mySampleCode
446df156c14c04519fbfdad933ef3e04fb1d4e04
e3c4c8589b634dc2b26681b5c2c704a39665a280
refs/heads/master
2022-06-04T08:28:49.317400
2020-06-12T07:23:32
2020-06-12T07:23:32
7,599,118
10
10
null
2022-05-14T00:31:27
2013-01-14T05:45:34
C
UTF-8
C
false
false
1,244
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/shm.h> #define SHM_SIZE 32 /* make it a 1K shared memory segment */ int main(int argc, char *argv[]) { key_t key; int shmid; char *data; int mode; if (argc > 2) { fprintf(stderr, "usage: shmdemo [data_to_write]\n"); exit(1); } /* make the key: */ if ((key = ftok("/lib/libcamera.so", 'R')) == -1) { perror("ftok"); exit(1); } /* connect to (and possibly create) the segment: */ if ((shmid = shmget(key, SHM_SIZE, 0644 | IPC_CREAT)) == -1) { perror("shmget"); exit(1); } /* attach to the segment to get a pointer to it: */ data = shmat(shmid, (void *)0, 0); if (data == (char *)(-1)) { perror("shmat"); exit(1); } /* read or modify the segment, based on the command line: */ if (argc == 2) { printf("writing to segment: \"%s\"\n", argv[1]); strncpy(data, argv[1], SHM_SIZE); } else printf("segment contains: \"%s\"\n", data); /* detach from the segment: */ if (shmdt(data) == -1) { perror("shmdt"); exit(1); } return 0; }
ed89edacb42905b8f3dc6c4ce4c75370be64419b
bfb439874bd723fd318f4d2e72d0097011941ec6
/Moving Photos/Pods/Headers/Private/ImagePicker-Objective-C/AssetManager.h
a76d793ee0e77c060e60ccf356382033b0bc3edd
[]
no_license
519968211/Moving-Photos
a31e605347ab0143efed2b5f1fb7c69ee9b3776e
90fc62b23ef666780a2d26da4ec5c4e80c5bbc5e
refs/heads/main
2021-07-10T20:26:56.224420
2020-10-22T03:21:55
2020-10-22T03:21:55
209,751,442
0
0
null
null
null
null
UTF-8
C
false
false
54
h
../../../ImagePicker-Objective-C/Source/AssetManager.h
83126b89701dac1f8df50627cb60cf41b96e2d7e
13ae074c2800facfaa9d01fffdef34b7cc88c75a
/software/lcd.c
de950a1fb2faaa331d30b3e165323a06312d6e9a
[]
no_license
nam0901/EE-3102-Project
244731e018932ed843706526ecf46e4b0c57d281
616c46db7673f408825209f59397a77e845b84f3
refs/heads/master
2020-06-10T02:55:27.727024
2019-08-20T17:22:09
2019-08-20T17:22:09
193,560,524
0
0
null
null
null
null
UTF-8
C
false
false
3,433
c
/* * File: lcd.c * Author: AlexM * * Created on March 28, 2018, 10:10 AM * * */ #include "xc.h" #include "lcd.h" #include <stdio.h> #define CONTRAST 0b010111 void lcd_cmd(char package) { I2C2CONbits.SEN = 1; while(I2C2CONbits.SEN); asm("nop"); IFS3bits.MI2C2IF = 0; I2C2TRN = 0b01111100; while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2TRN = 0b00000000; while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2TRN = package; while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2CONbits.PEN = 1; while(I2C2CONbits.PEN); asm("nop"); IFS3bits.MI2C2IF = 0; } void lcd_init() { //set up SDA2 and SCL2 as outputs _TRISB2 = 0; _TRISB3 = 0; IFS3bits.MI2C2IF = 0; I2C2CON = 0; I2C2BRG = 157; //set clk to 100kHz I2C2CONbits.I2CEN = 1; //setup tmr2 for setup delays (50ms) T4CON = 0x0020; TMR4 = 0; _T4IF = 0; PR4 = 12499; T4CONbits.TON = 1; while(_T4IF == 0); _T4IF = 0; lcd_cmd(0b00111000); // function set, normal instruction mode lcd_cmd(0b00111001); // function set, extended instruction mode lcd_cmd(0b00010100); // interval osc lcd_cmd(0b01110000 + (CONTRAST & 0b001111)); // contrast C3-C0 lcd_cmd(0b01011100 + (CONTRAST >> 4)); // C5-C4, Ion, Bon lcd_cmd(0b01101100); // follower control int i = 0; for(i = 0; i < 5; i++) { while(_T4IF == 0); _T4IF = 0; } i = 0; lcd_cmd(0b00111000); // function set, normal instruction mode lcd_cmd(0b00001100); // Display On lcd_cmd(0b00000001); // Clear Display while(_T4IF == 0); _T4IF = 0; } void lcd_setCursor(char x, char y) { char location = 0x40*(y) + x + 0x80; lcd_cmd(location); } void lcd_printChar(char package) { I2C2CONbits.SEN = 1; while(I2C2CONbits.SEN); asm("nop"); IFS3bits.MI2C2IF = 0; I2C2TRN = 0b01111100; // 8-bits consisting of the slave address and the R/nW bit while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2TRN = 0b01000000; // 8-bits consisting of control byte /w RS=1 while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2TRN = package; // 8-bits consisting of the data byte while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2CONbits.PEN = 1; while(I2C2CONbits.PEN); // PEN will clear when Stop bit is complete asm("nop"); IFS3bits.MI2C2IF = 0; } void lcd_printStr(const char *s) { I2C2CONbits.SEN = 1; while(I2C2CONbits.SEN); asm("nop"); IFS3bits.MI2C2IF = 0; I2C2TRN = 0b01111100; // 8-bits consisting of the slave address and the R/nW bit while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; I2C2TRN = 0b01000000; // 8-bits consisting of control byte /w RS=1 while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; int i = 0; while(s[i] != 0) //loop to print out all the characters in the string { I2C2TRN = s[i]; while(IFS3bits.MI2C2IF == 0); IFS3bits.MI2C2IF = 0; i++; } I2C2CONbits.PEN = 1; while(I2C2CONbits.PEN); // PEN will clear when Stop bit is complete asm("nop"); IFS3bits.MI2C2IF = 0; } void lcd_printDouble(double data) { char buffer[50]; sprintf(buffer, "%f", data); lcd_printStr(buffer); }
b7b622a04cda8b73abd6bd01f1675ecda61c5e85
911729e019762ed93b14f49d19c1b7d817c29af6
/terminal/terminal/v938/938highapi/internal938.h
8a9238dde7bdab4d08361a54d7e56352cfd6c598
[]
no_license
JackBro/DragonVer1.0
59590809df749540f70b904f83c4093890031fbb
31b3a97f2aa4a66d2ee518b8e6ae4245755009b1
refs/heads/master
2020-06-19T21:02:17.248852
2014-05-08T02:19:33
2014-05-08T02:19:33
74,833,772
0
1
null
2016-11-26T15:29:10
2016-11-26T15:29:10
null
UTF-8
C
false
false
216
h
#ifndef _RDK_HIGHAPI_INTERNAL938_H_ #define _RDK_HIGHAPI_INTERNAL938_H_ #include "../../main/option.h" #include "../userapi/internal938.h" #include "../driver/v9type.h" #include "vbridge938.h" #endif
b5887e63b58650f7ba3559fd27c377a8fba8bd71
a39b4e6b24917dbd785a5a9ca0f00fd19a81311f
/LabFinalCSE-123/P10783.c
93efa69e066e979e4e7cd4ddd278268bba4b8386
[]
no_license
GolamRabbani20/C
358f2e04d837bcb01497359727eb4d8307c4d8ab
6c6344822838e3d7ee468e6685533445e50d93de
refs/heads/master
2023-03-15T22:29:57.566220
2021-03-15T18:15:45
2021-03-15T18:15:45
346,623,423
0
0
null
null
null
null
UTF-8
C
false
false
230
c
#include<stdio.h> int main() { int i,j,t,x,y,sum=0; scanf("%d",&t); for(i=1;i<=t;i++){ scanf("%d %d",&x,&y); for(j=x;j<=y;j++){ if(j%2==1){ sum+=j; } } printf("Case %d : %d\n",i,sum); sum=0; } return 0; }
6d559784118d804330b5ed63b98aa205619881bc
3c693170e92696558a482ca7afbd35e34346e86b
/mcal/uart/usart.h
096d5715d52232513ac991b117ab610afcba9841
[]
no_license
Shabrawy95/Atmega16-Drivers
3afbc164236f27c449c9b565ef4b90066e727bea
97839a233089cd4f4ec48a73361bafa63415d584
refs/heads/master
2022-09-21T23:24:35.307661
2020-05-22T23:02:05
2020-05-22T23:02:05
266,222,345
0
0
null
null
null
null
UTF-8
C
false
false
2,715
h
/********************************************************************************************************************************* * Filename: usart.h * * Description: header file for usart driver * * Created on: Jan 04, 2020 * * Author: Shabrawy ********************************************************************************************************************************/ #ifndef USART_H_ #define USART_H_ #include "../../common/std_types.h" #include "../../common/micro_config.h" #include "../../common/common_macros.h" #define BAUD_PRESCALE(BAUD, DIVISOR) (((F_CPU)/(DIVISOR*BAUD))-1) #define USART_FRAME_ERROR 0xFFFF /********************************************************************************************************************************* * Type definitions * *********************************************************************************************************************************/ typedef enum{ USART_SYNCH_RATE = 0, USART_NORMAL_RATE = 0, USART_DOUBLE_RATE /*double = 1*/ }USART_Rate; typedef enum{ USART_INT_DISABLED, USART_DATA_REG_EMPTY_ENABLE, USART_TX_ENABLE, USART_TX_AND_DATA_REG_EMPTY, USART_RX_ENABLE, USART_RX_AND_DATA_REG_EMPTY, USART_TX_AND_RX, USART_TX_RX_DATA_REG_EMPTY }USART_Interrupt; /*changed place for easier insertion in interrupt register*/ typedef enum{ USART_FIVE, USART_SIX, USART_SEVEN, USART_EIGHT, USART_NINE = 7 }USART_CharSize; typedef enum{ USART_ASYNCH, USART_SYNCH }USART_Mode; typedef enum{ USART_PAR_DISABLED, USART_EVEN = 2, USART_ODD }USART_Parity; typedef enum{ USART_ONE, USART_TWO }USART_StopBits; typedef enum{ USART_POL_ASYNCH = 0, USART_RISING = 0, USART_FALLING }USART_Polarity; typedef struct{ USART_Rate rate; USART_Interrupt interrupt; USART_CharSize charSize; USART_Mode mode; USART_Parity parity; USART_StopBits stopBits; USART_Polarity polarity; uint32 baud; }USART_ConfigType; /********************************************************************************************************************************* * Function Prototypes * *********************************************************************************************************************************/ void USART_Init(USART_ConfigType *config_Ptr); void USART_sendFrame(const uint16 a_data); uint16 USART_receiveFrame(void); void USART_sendString(const uint8 *Str); void USART_receiveString(uint8 *Str); #endif /* USART_H_ */
823ff74138b548822ff4096bcafe88db01173c6a
0f796164fd575b168d59e94cb3f0ae9ed766ed4d
/mm-camera2/media-controller/modules/isp/hw/modules/clf/clf32/clf32.h
7bd8c7efb0ea345f2ae6852de12718d070c49d66
[]
no_license
zoggn/proprietary_qcom_mm-camera
02b30f42ae3783e2bf893d7e5342baec6f128251
44c4e4b282afac08839088395902fb811fc30d3d
refs/heads/master
2021-01-25T11:49:11.462639
2017-06-10T15:13:59
2017-06-10T15:13:59
93,947,251
3
1
null
null
null
null
UTF-8
C
false
false
2,443
h
/*============================================================================ Copyright (c) 2013 Qualcomm Technologies, Inc. All Rights Reserved. Qualcomm Technologies Proprietary and Confidential. ============================================================================*/ #ifndef __CLF_H__ #define __CLF_H__ #include "camera_dbg.h" #include "isp_event.h" #include "clf32_reg.h" #include "isp_hw_module_ops.h" #include "isp_pipeline.h" #include "isp_pipeline_util.h" #include "../../abf/common/abf_common.h" #include "chromatix.h" #define CLF_CF_COEFF(x) MIN(128, FLOAT_TO_Q(6, (x))) /* Luma Update Command */ typedef struct ISP_CLF_Luma_Update_CmdType { ISP_CLF_Luma_Cfg Cfg; ISP_CLF_Luma_Lut pos_LUT[8]; ISP_CLF_Luma_Lut neg_LUT[4]; }__attribute__((packed, aligned(4))) ISP_CLF_Luma_Update_CmdType; /* Chroma Update Command */ typedef struct ISP_CLF_Chroma_Update_CmdType { ISP_CLF_Chroma_Coeff chroma_coeff; }__attribute__((packed, aligned(4))) ISP_CLF_Chroma_Update_CmdType; /* CLF config Command */ typedef struct ISP_CLF_CmdType { ISP_CLF_Cfg clf_cfg; ISP_CLF_Luma_Update_CmdType lumaUpdateCmd; ISP_CLF_Chroma_Update_CmdType chromaUpdateCmd; }__attribute__((packed, aligned(4))) ISP_CLF_CmdType; typedef enum { ISP_CLF_LUMA_CHROMA_DISABLE, ISP_CLF_LUMA_ENABLE, ISP_CLF_CHROMA_ENABLE, ISP_CLF_LUMA_CHROMA_ENABLE, }isp_clf_enable_type_t; typedef struct { Chroma_filter_type cf_param; chromatix_adaptive_bayer_filter_data_type2 lf_param; }clf_params_t; typedef struct { ISP_CLF_CmdType ISP_PrevCLF_Cmd; float cur_cf_ratio; clf_params_t clf_params; trigger_ratio_t cur_lf_trig_ratio; int trigger_enable; }clf_mod_t; typedef struct { /* ISP Related*/ int fd; //handle for module in session isp_ops_t ops; isp_notify_ops_t *notify_ops; cam_streaming_mode_t old_streaming_mode; /* Module Params*/ ISP_CLF_CmdType reg_cmd; float cur_cf_aec_ratio; trigger_ratio_t cur_lf_aec_ratio; clf_params_t clf_params; clf_params_t applied_clf_params; /* Module Control */ uint8_t hw_update_pending; uint8_t trigger_enable; /* enable trigger update feature flag from PIX*/ uint8_t skip_trigger; uint8_t enable; /* enable flag from PIX */ //old int8_t cf_enable; int8_t lf_enable; int8_t cf_update; int8_t lf_update; int8_t cf_enable_trig; int8_t lf_enable_trig; } isp_clf_mod_t; #endif //__CLF_H__
40e95e76c56147c608865beac3a8d812d31baba5
2bc580be482a85f1030d6645e26505ddb4de7da6
/nemu/src/cpu/exec/data-mov/mov-template.h
2c43bdfcffe547a2c1f87084e2bc61981ac55b24
[]
no_license
SkyeWoo/ICS_PA
ed2744688ccac94e54e8045ebdd48aa1e2ccde85
a0a13a61c1f432aa9580b20c2270d99b52a3079a
refs/heads/master
2021-07-21T05:52:34.385184
2017-10-27T06:55:17
2017-10-27T06:55:17
108,510,282
0
0
null
null
null
null
UTF-8
C
false
false
4,232
h
#include "cpu/exec/template-start.h" #include "cpu/decode/modrm.h" #include "nemu.h" #define instr mov TLB tlb[TLB_SIZE]; uint32_t swaddr_read(swaddr_t, size_t, uint8_t); uint32_t lnaddr_read(lnaddr_t, size_t); void init_tlb(); static void do_execute() { OPERAND_W(op_dest, op_src->val); print_asm_template2(); } make_instr_helper(i2r) make_instr_helper(i2rm) make_instr_helper(r2rm) make_instr_helper(rm2r) make_helper(concat(mov_a2moffs_, SUFFIX)) { swaddr_t addr = instr_fetch(cpu.eip + 1, 4); current_sreg = R_DS; MEM_W(addr, REG(R_EAX)); //swaddr_w(addr, DATA_BYTE, REG(R_EAX), R_DS); print_asm("mov" str(SUFFIX) " %%%s,0x%x", REG_NAME(R_EAX), addr); return 5; } make_helper(concat(mov_moffs2a_, SUFFIX)) { swaddr_t addr = instr_fetch(cpu.eip + 1, 4); current_sreg = R_DS; REG(R_EAX) = MEM_R(addr); //REG(R_EAX) = swaddr_r(addr, DATA_BYTE, R_DS); print_asm("mov" str(SUFFIX) " 0x%x,%%%s", addr, REG_NAME(R_EAX)); return 5; } make_helper(concat(mov_zb_, SUFFIX)) { ModR_M m; m.val = instr_fetch(cpu.eip + 2, 1); if (m.mod == 3) { REG(m.reg) = (DATA_TYPE)(uint8_t)REG(m.R_M); print_asm("movzb" str(SUFFIX) " %%%s,%%%s", REG_NAME(m.R_M), REG_NAME(m.reg)); return 2; } else { Operand addrm, addrr; addrm.size = DATA_BYTE; int len = read_ModR_M(cpu.eip + 2, &addrm, &addrr); REG(m.reg) = (DATA_TYPE)(uint8_t)addrm.val; print_asm("movzb" str(SUFFIX) " %s,%%%s", addrm.str, REG_NAME(m.reg)); return len + 1; } } make_helper(concat(mov_zw_, SUFFIX)) { ModR_M m; m.val = instr_fetch(cpu.eip + 2, 1); if (m.mod == 3) { REG(m.reg) = (uint32_t)(uint16_t)REG(m.R_M); print_asm("movzwl %%%s,%%%s", REG_NAME(m.R_M), REG_NAME(m.reg)); return 2; } else { Operand addrm, addrr; addrm.size = 4; int len = read_ModR_M(cpu.eip + 2, &addrm, &addrr); REG(m.reg) = (uint32_t)(uint16_t)addrm.val; print_asm("movzwl %s,%%%s", addrm.str, REG_NAME(m.reg)); return len + 1; } } make_helper(concat(mov_sb_, SUFFIX)) { ModR_M m; m.val = instr_fetch(cpu.eip + 2, 1); if (m.mod == 3) { REG(m.reg) = (DATA_TYPE_S)(int8_t)REG(m.R_M); print_asm("movsb" str(SUFFIX) " %%%s,%%%s", REG_NAME(m.R_M), REG_NAME(m.reg)); return 2; } else { Operand addrm, addrr; addrm.size = DATA_BYTE; int len = read_ModR_M(cpu.eip + 2, &addrm, &addrr); REG(m.reg) = (DATA_TYPE_S)(int8_t)addrm.val; print_asm("movsb" str(SUFFIX) " %s,%%%s", addrm.str, REG_NAME(m.reg)); return len + 1; } } make_helper(concat(mov_sw_, SUFFIX)) { ModR_M m; m.val = instr_fetch(cpu.eip + 2, 1); if (m.mod == 3) { REG(m.reg) = (int32_t)(int16_t)REG(m.R_M); print_asm("movswl %%%s,%%%s", REG_NAME(m.R_M), REG_NAME(m.reg)); return 2; } else { Operand addrm, addrr; addrm.size = DATA_BYTE; int len = read_ModR_M(cpu.eip + 2, &addrm, &addrr); REG(m.reg) = (int32_t)(int16_t)addrm.val; print_asm("movswl %s,%%%s", addrm.str, REG_NAME(m.reg)); return len + 1; } } #if DATA_BYTE == 4 make_helper(mov_cr2r) { uint8_t opcode = instr_fetch(cpu.eip + 2, 1); switch (opcode) { case 0xc0: cpu.eax = cpu.cr0.val; print_asm("mov %%cr0,%%%s", REG_NAME(R_EAX)); break; case 0xd8: cpu.eax = cpu.cr3.val; print_asm("mov %%cr3, %%%s", REG_NAME(R_EAX)); break; } return 2; } make_helper(mov_r2cr) { uint8_t opcode = instr_fetch(cpu.eip + 2, 1); switch (opcode) { case 0xc0: cpu.cr0.val = cpu.eax; print_asm("mov %%%s,%%cr0", REG_NAME(R_EAX)); break; case 0xd8: cpu.cr3.val = cpu.eax; init_tlb(); print_asm("mov %%%s,%%cr3", REG_NAME(R_EAX)); break; } return 2; } #endif #if DATA_BYTE == 2 make_helper(mov_rm2sreg) { uint8_t opcode = instr_fetch(cpu.eip + 1, 1); uint16_t temp = reg_w(R_EAX); switch (opcode) { case 0xd8: cpu.ds.selector = temp; sreg_load(R_DS); current_sreg = R_DS; print_asm("mov %%%s, ds", REG_NAME(R_EAX)); break; case 0xc0: cpu.es.selector = temp; sreg_load(R_ES); current_sreg = R_ES; print_asm("mov %%%s, es", REG_NAME(R_EAX)); break; case 0xd0: cpu.ss.selector = temp; sreg_load(R_SS); current_sreg = R_SS; print_asm("mov %%%s, ss", REG_NAME(R_EAX)); break; default: break; } return 2; } #endif #include "cpu/exec/template-end.h"
7d9c2256c4df26ff677bf12359301210946f745a
2a695555c2403fb72de93ba0b6599dc21403b197
/src/edit_functs.c
4a562fe484fa219dd53a46387a514f2e7d2d433a
[]
no_license
Saursinet/42sh
59bdccf68383cde8382318f109460771697fa10f
f75f141d2a3558d74398fad6ce3a6982ade194f2
refs/heads/master
2021-01-19T04:50:43.643762
2016-05-30T12:23:20
2016-05-30T12:23:20
60,007,512
0
0
null
null
null
null
UTF-8
C
false
false
2,543
c
/* ** edit.c for edit in /home/wilmot_g/LOLOL/Edit ** ** Made by guillaume wilmot ** Login <[email protected]> ** ** Started on Thu Mar 5 17:07:18 2015 guillaume wilmot ** Last update Sun May 24 02:52:03 2015 guillaume wilmot */ #include "edit.h" int set_canon(int on) { struct termios termios; if (isatty(0)) { if ((tcgetattr(0, &termios)) != 0) return (my_int_errors("\nTcgetattr : error\n", -1)); if (on == 1) { termios.c_lflag &= ~ICANON; termios.c_lflag &= ~ECHO; termios.c_cc[VMIN] = 1; termios.c_cc[VTIME] = 0; } else if (on == 0) { termios.c_lflag |= ICANON; termios.c_lflag |= ECHO; } if ((tcsetattr(0, TCSANOW, &termios)) == -1) return (my_int_errors("\nTcsetattr : error\n", -1)); } return (0); } char *get_position(char *term) { char *term_buffer; char *str; term_buffer = NULL; if (tgetent(term_buffer, term) != 1) return (my_errors("Tgetent : error\n", NULL)); if ((str = tgetstr("sc", NULL)) == NULL) return (my_errors("Tgetstr : error\n", NULL)); tputs(tgoto(str, 0, 0), 1, &my_putchar_int); if ((str = tgetstr("rc", NULL)) == NULL) return (my_errors("Tgetstr : error\n", NULL)); return (str); } char *set_position(char *str, char *term) { char *term_buffer; term_buffer = NULL; if (tgetent(term_buffer, term) != 1) return (my_errors("\nTgetent : error\n", NULL)); tputs(tgoto(str, 0, 0), 1, &my_putchar_int); if ((str = tgetstr("cd", NULL)) == NULL) return (my_errors("\nTgetstr : error\n", NULL)); tputs(str, 1, &my_putchar_int); return (NULL); } int set_visibility_cursor(char *term, int mode) { char *str; char *term_buffer; term_buffer = NULL; if (tgetent(term_buffer, term) != 1) return (my_int_errors("\nTgetent : error\n", -1)); if ((str = tgetstr(((mode == 0) ? "vi" : "ve"), NULL)) == NULL) return (my_int_errors("\nTgetstr : error\n", -1)); tputs(str, 1, &my_putchar_int); return (0); } int my_putstr_special(char *c, int mode, char *term) { char *term_buffer; char *str; term_buffer = NULL; if (tgetent(term_buffer, term) != 1) return (my_int_errors("\nTgetent : error\n", -1)); if ((str = tgetstr(((mode == 2) ? "us" : "mr"), NULL)) == NULL) return (my_int_errors("\nTgetstr : error\n", -1)); tputs(str, 1, &my_putchar_int); my_putstr(c); if ((str = tgetstr(((mode == 2) ? "ue" : "me"), NULL)) == NULL) return (my_int_errors("\nTgestr : error\n", -1)); tputs(str, 1, &my_putchar_int); return (0); }
07c39cca1ae3b325693692e06fb3255996d55c40
d70d938fc282b979b38ca1f8ce8320e93a6b75af
/icon-rh850-boot2000-Nos/source/bsw/communication/CanTp/CanTp.c
ed579146bc69227ddfbf151eb8557ae4a73eb286
[]
no_license
xiaokeZMSG/MY_Code
691a9c41de59bac2d0d1b003c333943569debeb2
a605d04e9765a7dcb6ffb977afd2320f170482b5
refs/heads/master
2023-07-02T19:33:54.781138
2021-08-12T03:15:37
2021-08-12T03:15:37
395,165,991
0
0
null
null
null
null
UTF-8
C
false
false
56,506
c
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <[email protected]> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in the written license agreement between you and ArcCore, * or alternatively * 2)if you follow the terms found in GNU General Public License version 2 as * published by the Free Software Foundation and appearing in the file * LICENSE.GPL included in the packaging of this file or here * <http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt> *-------------------------------- Arctic Core -----------------------------*/ /* * General requirements */ /** @req CANTP133 */ /** @req CANTP289 */ /** @req CANTP288 */ /** @req CANTP287 */ /** @req CANTP286 */ /** @req CANTP285 */ /** @req CANTP327 */ /** @req CANTP326 */ /** @req CANTP307 */ /** @req CANTP296 */ /** @req CANTP265 */ /** @req CANTP249 */ /** @req CANTP250 */ /** @req CANTP251 */ /** @req CANTP252 */ /** @req CANTP248 */ /** @req CANTP001 */ /** @req CANTP002 */ /** @req CANTP008 */ /** @req CANTP156.Partially */ /** @req CANTP150 */ /** @req CANTP151 */ /** @req CANTP152 */ /** @req CANTP153 */ /** @req CANTP155 */ /** @req CANTP158 */ /** @req CANTP003 */ /** @req CANTP216 */ /** @req CANTP217 */ /* * Environmental requirements */ /** @req CANTP164 */ /** @req CANTP199 */ #include "CanTp.h" /** @req CANTP219 */ #include "CanTp_Cbk.h" /** @req CANTP233 */ #include "Det.h" #include "CanIf.h" #include "SchM_CanTp.h" #include "Dcm_Cbk.h" //#include "MemMap.h" #include <string.h> //#define USE_DEBUG_PRINTF #include "debug.h" #include "CanTp_cfg.h" #include "CanTp_Types.h" #if ( CANTP_DEV_ERROR_DETECT == STD_ON ) /** @req CANTP006 *//** @req CANTP134 */ /** @req CANTP132 */ /** @req CANTP021 */ /** @req CANTP294 */ #define VALIDATE(_exp,_api,_err ) \ if( !(_exp) ) { \ (void)Det_ReportError(MODULE_ID_CANTP, 0, _api, _err); \ return E_NOT_OK; \ } /** @req CANTP132 */ /** @req CANTP021 */ #define VALIDATE_NO_RV(_exp,_api,_err ) \ if( !(_exp) ) { \ (void)Det_ReportError(MODULE_ID_CANTP, 0, _api, _err); \ return; \ } #define DET_REPORTERROR(_api, _error) \ do { \ (void)Det_ReportError(MODULE_ID_CANTP, 0, _api, _error); \ } while(0) #else #define VALIDATE(_exp,_api,_err ) #define VALIDATE_NO_RV(_exp,_api,_err ) #define DET_REPORTERROR(_exp,_api,_err) #endif #if 0 NotifResultType PduR_CanTpRxIndication(PduIdType CanTpRxPduId, NotifResultType Result) { ; } BufReq_ReturnType PduR_CanTpCopyRxData(PduIdType CanTpRxId, PduInfoType *PduInfoPtr, PduLengthType *length) { ; } BufReq_ReturnType PduR_CanTpCopyTxData(PduIdType id, PduInfoType* info, RetryInfoType *retry, PduLengthType *availableDataPtr) { ; } void PduR_CanTpTxConfirmation(PduIdType CanTpTxPduId, NotifResultType Result) { ; } #endif #define TIMER_DECREMENT(timer) \ if (timer >= CanTp_ConfigPtr->CanTpGeneral->main_function_period) { \ timer = timer - CanTp_ConfigPtr->CanTpGeneral->main_function_period; \ }else { \ timer = 0; \ } #define COUNT_DECREMENT(timer) \ if (timer > 0) { \ timer = timer - 1; \ } \ /** @req CANTP033 */ #define CANTP_ERR -1 #define ISO15765_FLOW_CONTROL_STATUS_CTS 0 #define ISO15765_FLOW_CONTROL_STATUS_WAIT 1 #define ISO15765_FLOW_CONTROL_STATUS_OVFLW 2 // - - - - - - - - - - - - - - #define ISO15765_TPCI_MASK 0x30 #define ISO15765_TPCI_SF 0x00 /* Single Frame */ #define ISO15765_TPCI_FF 0x10 /* First Frame */ #define ISO15765_TPCI_CF 0x20 /* Consecutive Frame */ #define ISO15765_TPCI_FC 0x30 /* Flow Control */ #define ISO15765_TPCI_DL 0x7 /* Single frame data length mask */ #define ISO15765_TPCI_FS_MASK 0x0F /* Flowcontrol status mask */ // - - - - - - - - - - - - - - #define MAX_PAYLOAD_SF_STD_ADDR 7 #define MAX_PAYLOAD_SF_EXT_ADDR 6 #define MAX_PAYLOAD_FF_STD_ADDR 6 #define MAX_PAYLOAD_FF_EXT_ADDR 5 #define MAX_PAYLOAD_CF_STD_ADDR 7 #define MAX_PAYLOAD_CF_EXT_ADDR 6 #define SEGMENT_NUMBER_MASK 0x0f #define MAX_SEGMENT_DATA_SIZE 8 // Size of a CAN frame data bytes. #define CANTP_TX_CHANNEL 0 #define CANTP_RX_CHANNEL 1 #define CANTP_NO_SIMPLEX_CHANNEL 2 #define INVALID_PDU_ID 0xFFFF /* * */ typedef enum { UNINITIALIZED, IDLE, SF_OR_FF_RECEIVED_WAITING_PDUR_BUFFER, /** @req CANTP079 */ RX_WAIT_CONSECUTIVE_FRAME, RX_WAIT_SF_SDU_BUFFER, RX_WAIT_CF_SDU_BUFFER, TX_WAIT_STMIN, TX_WAIT_TRANSMIT, TX_WAIT_FLOW_CONTROL, TX_WAIT_TX_CONFIRMATION } ISO15765TransferStateTypes; typedef enum { INVALID_FRAME, /* Not specified by ISO15765 - used as error return type when decoding frame. */ SINGLE_FRAME, FIRST_FRAME, CONSECUTIVE_FRAME, FLOW_CONTROL_CTS_FRAME, /* Clear to send */ FLOW_CONTROL_WAIT_FRAME, FLOW_CONTROL_OVERFLOW_FRAME } ISO15765FrameType; /* * In case no buffer is available at some cases the data needs to be * temporarily stored away. */ typedef struct { uint8_t data[MAX_SEGMENT_DATA_SIZE]; PduLengthType byteCount; } CanIfSduType; /* * Structure that is keeping track on the run-time variables for the ongoing * transfer. */ typedef struct { uint16_t nextFlowControlCount; // Count down to next Flow Control. uint16_t framesHandledCount; // Counter keeping track total frames handled. uint32_t stateTimeoutCount; // Counter for timeout. uint8_t extendedAddress; // Not always used but need to be available. uint8_t STmin; // In case we are transmitters the remote node can configure this value (only valid for TX). uint8_t BS; // Blocksize (only valid for TX). boolean NasNarPending; uint32_t NasNarTimeoutCount; // CanTpNas, CanTpNar. ISO15765TransferStateTypes state; // Transfer state machine. } ISO15765TransferControlType; /* * Container for TX or RX runtime paramters (TX/RX are identical?) */ typedef struct { ISO15765TransferControlType iso15765; PduLengthType transferTotal; // Total length of the PDU. PduLengthType transferCount; // Counter ongoing transfer. PduLengthType sizeBuffer; CanIfSduType canFrameBuffer; // Temp storage of SDU data. CanTp_TransferInstanceMode mode; // CanTp030. uint16_t CanTpWftMaxCounter; PduIdType pduId; } CanTp_SimplexChannelPrivateType; typedef struct { CanTp_SimplexChannelPrivateType SimplexChnlList[CANTP_NO_SIMPLEX_CHANNEL]; //one for RX and one for TX CanTp_SimplexChannelPrivateType functionalChnl; //For functional frame reception }CanTp_ChannelPrivateType; // - - - - - - - - - - - - - - typedef struct { boolean initRun; CanTp_StateType internalState; /** @req CANTP027 */ CanTp_ChannelPrivateType runtimeDataList[CANTP_MAX_NO_CHANNELS]; } CanTp_RunTimeDataType; // - - - - - - - - - - - - - - CanTp_RunTimeDataType CanTpRunTimeData = { /*initRun = */ FALSE, /*internalState =*/ CANTP_OFF }; /** @req CANTP168 */ /* Global configure */ static const CanTp_ConfigType *CanTp_ConfigPtr = NULL; // - - - - - - - - - - - - - - static uint32_t ConvertMsToMainCycles(uint32_t ms) { //return (ms/CanTp_ConfigPtr->CanTpGeneral->main_function_period); return ms; } ISO15765FrameType getFrameType( const CanTp_AddressingFormantType *formatType, const PduInfoType *CanTpRxPduPtr) { ISO15765FrameType res = INVALID_FRAME; uint8_t tpci = 0; switch (*formatType) { case CANTP_STANDARD: tpci = CanTpRxPduPtr->SduDataPtr[0]; break; case CANTP_EXTENDED: tpci = CanTpRxPduPtr->SduDataPtr[1]; break; default: break; } switch (tpci & ISO15765_TPCI_MASK) { case ISO15765_TPCI_SF: if(tpci<=ISO15765_TPCI_DL) res = SINGLE_FRAME; break; case ISO15765_TPCI_FF: res = FIRST_FRAME; break; case ISO15765_TPCI_CF: res = CONSECUTIVE_FRAME; break; case ISO15765_TPCI_FC: // Some kind of flow control. switch (tpci & ISO15765_TPCI_FS_MASK) { case ISO15765_FLOW_CONTROL_STATUS_CTS: res = FLOW_CONTROL_CTS_FRAME; break; case ISO15765_FLOW_CONTROL_STATUS_WAIT: res = FLOW_CONTROL_CTS_FRAME; break; case ISO15765_FLOW_CONTROL_STATUS_OVFLW: res = FLOW_CONTROL_CTS_FRAME; break; default : /* Invalid FC recognized and transmision is aborted.This is handled in handleFlowControlFrame() */ res = INVALID_FRAME;//res = FLOW_CONTROL_CTS_FRAME; //change,20160617,issue TP27 break; } } return res; } // - - - - - - - - - - - - - - PduLengthType getPduLength( const CanTp_AddressingFormantType *formatType, const ISO15765FrameType iso15765Frame, const PduInfoType *CanTpRxPduPtr) { PduLengthType res = 0; uint8_t tpci_offset = 0; switch (*formatType) { case CANTP_STANDARD: tpci_offset = 0; break; case CANTP_EXTENDED: tpci_offset = 1; break; default: return 0; } switch (iso15765Frame) { case SINGLE_FRAME: // Parse the data length from the single frame header. res = CanTpRxPduPtr->SduDataPtr[tpci_offset] & ISO15765_TPCI_DL; break; case FIRST_FRAME: // Parse the data length form the first frame. res = CanTpRxPduPtr->SduDataPtr[tpci_offset + 1] + ((PduLengthType)((CanTpRxPduPtr->SduDataPtr[tpci_offset]) & 0xf) << 8); break; default: res = 0; // IMPROVEMENT: Add Det error break; } return res; } // - - - - - - - - - - - - - - static void initRx15765RuntimeData(CanTp_SimplexChannelPrivateType *rxRuntimeParams) { rxRuntimeParams->iso15765.state = IDLE; rxRuntimeParams->iso15765.NasNarPending = FALSE; rxRuntimeParams->iso15765.framesHandledCount = 0; rxRuntimeParams->iso15765.nextFlowControlCount = 0; rxRuntimeParams->transferTotal = 0; rxRuntimeParams->transferCount = 0; rxRuntimeParams->sizeBuffer = 0; rxRuntimeParams->CanTpWftMaxCounter = 0; rxRuntimeParams->mode = CANTP_RX_WAIT; /** @req CANTP030 */ rxRuntimeParams->pduId = INVALID_PDU_ID; } // - - - - - - - - - - - - - - static void initTx15765RuntimeData(CanTp_SimplexChannelPrivateType *txRuntimeParams) { txRuntimeParams->iso15765.state = IDLE; txRuntimeParams->iso15765.NasNarPending = FALSE; txRuntimeParams->iso15765.framesHandledCount = 0; txRuntimeParams->iso15765.nextFlowControlCount = 0; txRuntimeParams->transferTotal = 0; txRuntimeParams->transferCount = 0; txRuntimeParams->sizeBuffer = 0; txRuntimeParams->mode = CANTP_TX_WAIT; /** @req CANTP030 */ txRuntimeParams->pduId = INVALID_PDU_ID; } // - - - - - - - - - - - - - - BufReq_ReturnType copySegmentToPduRRxBuffer(const CanTp_RxNSduType *rxConfig, CanTp_SimplexChannelPrivateType *rxRuntime, uint8_t *segment, PduLengthType segmentSize, PduLengthType *bytesWrittenSuccessfully) { BufReq_ReturnType ret; static PduInfoType tempPdu; *bytesWrittenSuccessfully = 0; /* when not a consectuive frame we have to begin a new buffer */ if (rxRuntime->iso15765.state != RX_WAIT_CONSECUTIVE_FRAME) { ret = Dcm_StartOfReception(rxConfig->PduR_PduId, rxRuntime->transferTotal, &rxRuntime->sizeBuffer); /** @req CANTP079 */ /* ok buffer is now locked for us */ /* until PduR_CanTpTxConfirmation or PduR_CanTpRxIndication arises */ } else { /** @req CANTP270 */ /* ask how many free space is left */ tempPdu.SduLength = 0; tempPdu.SduDataPtr = NULL; ret = Dcm_CopyRxData(rxConfig->PduR_PduId, &tempPdu, &rxRuntime->sizeBuffer); } if (ret == BUFREQ_OK) { tempPdu.SduDataPtr = segment; if (segmentSize <= rxRuntime->sizeBuffer) /** @req CANTP080 */ { /* everything is ok - we can go on */ tempPdu.SduLength = segmentSize; ret = Dcm_CopyRxData(rxConfig->PduR_PduId, &tempPdu, &rxRuntime->sizeBuffer); } else { /* currently there is not enough space available */ ret = BUFREQ_E_BUSY; } /* when everything is fine we can adjust our "global" variables and end */ if (ret == BUFREQ_OK) { *bytesWrittenSuccessfully = tempPdu.SduLength; rxRuntime->transferCount += tempPdu.SduLength; } } return ret; } // - - - - - - - - - - - - - - boolean copySegmentToLocalRxBuffer /*writeDataSegmentToLocalBuffer*/( CanTp_SimplexChannelPrivateType *rxRuntime, uint8_t *segment, PduLengthType segmentSize) { boolean ret = FALSE; int i; if ( segmentSize < MAX_SEGMENT_DATA_SIZE ) { for (i=0; i < segmentSize; i++) { rxRuntime->canFrameBuffer.data[i] = segment[i]; } rxRuntime->canFrameBuffer.byteCount = segmentSize; ret = TRUE; } return ret; } // - - - - - - - - - - - - - - Std_ReturnType canReceivePaddingHelper( const CanTp_RxNSduType *rxConfig, CanTp_SimplexChannelPrivateType *rxRuntime, PduInfoType *PduInfoPtr) { int i; if (rxConfig->CanTpRxPaddingActivation == CANTP_ON) { for (i = PduInfoPtr->SduLength; i < MAX_SEGMENT_DATA_SIZE; i++) { PduInfoPtr->SduDataPtr[i] = CanTp_ConfigPtr->CanTpGeneral->padding; } PduInfoPtr->SduLength = MAX_SEGMENT_DATA_SIZE; } rxRuntime->iso15765.NasNarTimeoutCount = rxConfig->CanTpNar; /** @req CANTP075 */ rxRuntime->iso15765.NasNarPending = TRUE; return CanIf_Transmit(rxConfig->CanIf_FcPduId+CANIF_TXPDU_ID_0x738, PduInfoPtr); } // - - - - - - - - - - - - - - Std_ReturnType canTansmitPaddingHelper( const CanTp_TxNSduType *txConfig, CanTp_SimplexChannelPrivateType *txRuntime, PduInfoType *PduInfoPtr) { int i; /** @req CANTP114 */ /** @req CANTP040 */ /** @req CANTP098 */ /** @req CANTP116 */ /** @req CANTP059 */ if (txConfig->CanTpTxPaddingActivation == CANTP_ON) { /** @req CANTP225 */ for (i = PduInfoPtr->SduLength; i < MAX_SEGMENT_DATA_SIZE; i++) { PduInfoPtr->SduDataPtr[i] = CanTp_ConfigPtr->CanTpGeneral->padding; } PduInfoPtr->SduLength = MAX_SEGMENT_DATA_SIZE; } txRuntime->iso15765.NasNarTimeoutCount = txConfig->CanTpNas; /** @req CANTP075 */ txRuntime->iso15765.NasNarPending = TRUE; return CanIf_Transmit(txConfig->CanIf_PduId, PduInfoPtr); } // - - - - - - - - - - - - - - void sendFlowControlFrame(const CanTp_RxNSduType *rxConfig, CanTp_SimplexChannelPrivateType *rxRuntime, BufReq_ReturnType flowStatus) { uint8_t indexCount = 0; Std_ReturnType ret = E_NOT_OK; PduInfoType pduInfo; uint8_t sduData[8]; // Note that buffer in declared on the stack. uint16_t computedBs = 0; pduInfo.SduDataPtr = &sduData[0]; if (rxConfig->CanTpAddressingFormant == CANTP_EXTENDED) { sduData[indexCount++] = rxRuntime->iso15765.extendedAddress; } switch (flowStatus) { case BUFREQ_OK: { sduData[indexCount++] = ISO15765_TPCI_FC | ISO15765_FLOW_CONTROL_STATUS_CTS; if (rxConfig->CanTpAddressingFormant == CANTP_EXTENDED) { /** @req CANTP094 *//** @req CANTP095 */ computedBs = (rxRuntime->sizeBuffer / MAX_PAYLOAD_SF_EXT_ADDR) + 1; // + 1 is for local buffer. } else { computedBs = (rxRuntime->sizeBuffer / MAX_PAYLOAD_SF_STD_ADDR) + 1; // + 1 is for local buffer. } if (computedBs > rxConfig->CanTpBs) { // /** @req CANTP091 *//** @req CANTP084 */ computedBs = rxConfig->CanTpBs; } rxRuntime->iso15765.BS = rxConfig->CanTpBs; sduData[indexCount++] = computedBs; // 734 PC-lint: Okej att casta till uint8? sduData[indexCount++] = (uint8_t) rxConfig->CanTpSTmin; rxRuntime->iso15765.nextFlowControlCount = computedBs; pduInfo.SduLength = indexCount; rxRuntime->CanTpWftMaxCounter = 0; break; } case BUFREQ_E_NOT_OK: break; case BUFREQ_E_BUSY: sduData[indexCount++] = ISO15765_TPCI_FC | ISO15765_FLOW_CONTROL_STATUS_WAIT; indexCount +=2; pduInfo.SduLength = indexCount; rxRuntime->CanTpWftMaxCounter++; break; case BUFREQ_E_OVFL: /** @req CANTP318 Assuming 1-byte frame length */ sduData[indexCount++] = ISO15765_TPCI_FC | ISO15765_FLOW_CONTROL_STATUS_OVFLW; indexCount +=2; pduInfo.SduLength = indexCount; break; default: break; } ret = canReceivePaddingHelper(rxConfig, rxRuntime, &pduInfo); if (ret != E_OK) { Dcm_TpRxIndication(rxConfig->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } } // - - - - - - - - - - - - - - void handleConsecutiveFrame(const CanTp_RxNSduType *rxConfig, CanTp_SimplexChannelPrivateType *rxRuntime, const PduInfoType *rxPduData) { uint8_t indexCount = 0; uint8_t segmentNumber = 0; PduLengthType bytesLeftToCopy = 0; PduLengthType bytesLeftToTransfer = 0; PduLengthType currentSegmentSize = 0; PduLengthType currentSegmentMaxSize = 0; PduLengthType bytesCopiedToPdurRxBuffer = 0; BufReq_ReturnType ret = BUFREQ_E_NOT_OK; if (rxConfig->CanTpAddressingFormant == CANTP_EXTENDED) { uint8_t extendedAddress = 0; extendedAddress = rxPduData->SduDataPtr[indexCount++]; //Verfify the target address if (extendedAddress != rxConfig->CanTpNTa->CanTpNTa) return; } if (rxRuntime->iso15765.state == RX_WAIT_CONSECUTIVE_FRAME) { segmentNumber = rxPduData->SduDataPtr[indexCount++] & SEGMENT_NUMBER_MASK; if (segmentNumber != (rxRuntime->iso15765.framesHandledCount & SEGMENT_NUMBER_MASK)) { /** @req CANTP314 */ Dcm_TpRxIndication(rxConfig->PduR_PduId, NTFRSLT_E_WRONG_SN); /** @req CANTP084 */ rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } else { currentSegmentMaxSize = MAX_SEGMENT_DATA_SIZE - indexCount; bytesLeftToCopy = rxRuntime->transferTotal - rxRuntime->transferCount; if (bytesLeftToCopy < currentSegmentMaxSize) { currentSegmentSize = bytesLeftToCopy; // 1-5. } else { currentSegmentSize = currentSegmentMaxSize; // 6 or 7, depends on addressing format used. } // Copy received data to buffer provided by SDUR. ret = copySegmentToPduRRxBuffer(rxConfig, rxRuntime, &rxPduData->SduDataPtr[indexCount], currentSegmentSize, &bytesCopiedToPdurRxBuffer); /** @req CANTP269 */ if (ret == BUFREQ_E_NOT_OK) { Dcm_TpRxIndication(rxConfig->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ rxRuntime->iso15765.state = IDLE; /** @req CANTP271 */ rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } else if (ret == BUFREQ_E_BUSY) { boolean status = FALSE; status = (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) ? (bytesLeftToCopy > 7 ) : (bytesLeftToCopy > 6 ); // Check whether this is the last CF in the block and a FC is to be sent if ((rxRuntime->iso15765.nextFlowControlCount == 1) && (status)) { boolean dataCopyFailure = FALSE; PduLengthType bytesNotCopiedToPdurRxBuffer = currentSegmentSize - bytesCopiedToPdurRxBuffer; if (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) { if ( copySegmentToLocalRxBuffer(rxRuntime, &rxPduData->SduDataPtr[1 + bytesCopiedToPdurRxBuffer], bytesNotCopiedToPdurRxBuffer ) != TRUE ) { rxRuntime->iso15765.state = IDLE; /** @req CANTP271 */ /* this can be quite dangerous! imagine a concurrent reception (ok sender should wait some time..) - we set first to idle and then a few steps later to RX_WAIT_SDU_BUFFER => in the meantime a new firstframe could come in?!?! */ /* by the way - requirement 271 isn't correct!! when receiving busy we still have wait until WFT > the configured value */ rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; dataCopyFailure = TRUE; } } else { if ( copySegmentToLocalRxBuffer(rxRuntime, &rxPduData->SduDataPtr[2 + bytesCopiedToPdurRxBuffer], bytesNotCopiedToPdurRxBuffer) != TRUE ) { rxRuntime->iso15765.state = IDLE; /** @req CANTP271 */ /* this can be quite dangerous! imagine a concurrent reception (ok sender should wait some time..) - we set first to idle and then a few steps later to RX_WAIT_SDU_BUFFER => in the meantime a new firstframe could come in?!?! */ /* by the way - requirement 271 isn't correct!! when receiving busy we still have wait until WFT > the configured value */ rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; dataCopyFailure = TRUE; } } if ( !dataCopyFailure ) { rxRuntime->iso15765.framesHandledCount++; rxRuntime->iso15765.stateTimeoutCount = (rxConfig->CanTpNbr) + 1; rxRuntime->iso15765.state = RX_WAIT_CF_SDU_BUFFER; rxRuntime->mode = CANTP_RX_PROCESSING; sendFlowControlFrame(rxConfig, rxRuntime, ret); /** @req CANTP268 */ } } else { // Abort connection /** @req CANTP271 */ Dcm_TpRxIndication(rxConfig->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ rxRuntime->iso15765.state = IDLE; /** @req CANTP271 */ rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } } else if (ret == BUFREQ_OK) { bytesLeftToTransfer = rxRuntime->transferTotal - rxRuntime->transferCount; if (bytesLeftToTransfer > 0) { rxRuntime->iso15765.framesHandledCount++; COUNT_DECREMENT(rxRuntime->iso15765.nextFlowControlCount); if (rxRuntime->iso15765.nextFlowControlCount == 0 && rxRuntime->iso15765.BS > 0) { sendFlowControlFrame(rxConfig, rxRuntime, BUFREQ_OK); } else { rxRuntime->iso15765.stateTimeoutCount = (rxConfig->CanTpNcr) + 1; //UH /** @req CANTP312 */ } } else { rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; Dcm_TpRxIndication(rxConfig->PduR_PduId, NTFRSLT_OK); /** @req CANTP084 */ } } } } } // - - - - - - - - - - - - - - BufReq_ReturnType sendNextTxFrame( const CanTp_TxNSduType *txConfig, CanTp_SimplexChannelPrivateType *txRuntime) { BufReq_ReturnType ret = BUFREQ_OK; PduInfoType pduInfo; uint8_t offset = txRuntime->canFrameBuffer.byteCount; pduInfo.SduDataPtr = &txRuntime->canFrameBuffer.data[offset]; if( (txRuntime->transferTotal - txRuntime->transferCount) > (MAX_SEGMENT_DATA_SIZE - offset) ) { pduInfo.SduLength = MAX_SEGMENT_DATA_SIZE - offset; } else { pduInfo.SduLength = txRuntime->transferTotal - txRuntime->transferCount; } ret = Dcm_CopyTxData(txConfig->PduR_PduId, &pduInfo, NULL, &txRuntime->sizeBuffer); /** @req CANTP272 */ /** @req CANTP226 */ /** @req CANTP086 */ txRuntime->canFrameBuffer.byteCount += pduInfo.SduLength; /* SduLength could have changed during transmit (when frame is smaller than MAX_SEGMENT_DATA_SIZE) */ txRuntime->transferCount += pduInfo.SduLength; /* SduLength could have changed during transmit (when frame is smaller than MAX_SEGMENT_DATA_SIZE) */ if(ret == BUFREQ_OK) { Std_ReturnType resp; pduInfo.SduDataPtr = &txRuntime->canFrameBuffer.data[0]; pduInfo.SduLength += offset; // change state to verify tx confirm within timeout txRuntime->iso15765.stateTimeoutCount = (txConfig->CanTpNas) + 1; txRuntime->iso15765.state = TX_WAIT_TX_CONFIRMATION; resp = canTansmitPaddingHelper(txConfig, txRuntime, &pduInfo); if(resp == E_OK) { // sending done } else { // failed to send ret = BUFREQ_E_NOT_OK; } } return ret; } // - - - - - - - - - - - - - - void handleNextTxFrameSent( const CanTp_TxNSduType *txConfig, CanTp_SimplexChannelPrivateType *txRuntime) { txRuntime->iso15765.framesHandledCount++; // prepare tx buffer for next frame txRuntime->canFrameBuffer.byteCount = 1; if (txConfig->CanTpAddressingMode == CANTP_EXTENDED) { txRuntime->canFrameBuffer.byteCount++; } txRuntime->canFrameBuffer.data[txRuntime->canFrameBuffer.byteCount - 1] = (txRuntime->iso15765.framesHandledCount & SEGMENT_NUMBER_MASK) + ISO15765_TPCI_CF; COUNT_DECREMENT(txRuntime->iso15765.nextFlowControlCount); if (txRuntime->transferTotal <= txRuntime->transferCount) { // Transfer finished! Dcm_TpTxConfirmation(txConfig->PduR_PduId, NTFRSLT_OK); /** @req CANTP090 *//** @req CANTP204 */ txRuntime->iso15765.state = IDLE; txRuntime->pduId = INVALID_PDU_ID; txRuntime->mode = CANTP_TX_WAIT; } else if (txRuntime->iso15765.nextFlowControlCount == 0 && txRuntime->iso15765.BS) { // receiver expects flow control. txRuntime->iso15765.stateTimeoutCount = (txConfig->CanTpNbs) + 1; /** @req CANTP315.partially */ txRuntime->iso15765.state = TX_WAIT_FLOW_CONTROL; } else if (txRuntime->iso15765.STmin == 0) { // Send next consecutive frame! Std_ReturnType resp; resp = sendNextTxFrame(txConfig, txRuntime); if (resp == BUFREQ_OK ) { // successfully sent frame, wait for tx confirm } else if(BUFREQ_E_BUSY == resp) { /** @req CANTP184 */ /** @req CANTP279 */ // change state and setup timeout txRuntime->iso15765.stateTimeoutCount = (txConfig->CanTpNcs) + 1; txRuntime->iso15765.state = TX_WAIT_TRANSMIT; } else { Dcm_TpTxConfirmation(txConfig->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP177 */ /** @req CANTP084 */ /** @req CANTP087 */ txRuntime->iso15765.state = IDLE; txRuntime->pduId = INVALID_PDU_ID; txRuntime->mode = CANTP_TX_WAIT; } } else { // Send next consecutive frame after stmin! //ST MIN error handling ISO 15765-2 sec 7.6 if (txRuntime->iso15765.STmin < 0x80) { //txRuntime->iso15765.stateTimeoutCount = ConvertMsToMainCycles(txRuntime->iso15765.STmin) + 1; txRuntime->iso15765.stateTimeoutCount = ConvertMsToMainCycles(txRuntime->iso15765.STmin); } else if (txRuntime->iso15765.STmin > 0xF0 && txRuntime->iso15765.STmin < 0xFA) { //txRuntime->iso15765.stateTimeoutCount = ConvertMsToMainCycles((txRuntime->iso15765.STmin - 0xF0)/10) + 1; txRuntime->iso15765.stateTimeoutCount = 1; //This is hard coded to 1 main cycle since achieving 0.1ms task is difficult } else { txRuntime->iso15765.stateTimeoutCount = ConvertMsToMainCycles(0x7F) + 1; } txRuntime->iso15765.state = TX_WAIT_STMIN; } } // - - - - - - - - - - - - - - void handleFlowControlFrame(const CanTp_TxNSduType *txConfig, CanTp_SimplexChannelPrivateType *txRuntime, const PduInfoType *txPduData) { int indexCount = 0; if (txConfig->CanTpAddressingMode == CANTP_EXTENDED) { /** @req CANTP094 *//** @req CANTP095 */ uint8_t extendedAddress = 0; extendedAddress = txPduData->SduDataPtr[indexCount++]; //Verfify the target address if (extendedAddress != txConfig->CanTpNSa->CanTpNSa) return; } if ( txRuntime->iso15765.state == TX_WAIT_FLOW_CONTROL ) { switch (txPduData->SduDataPtr[indexCount++] & ISO15765_TPCI_FS_MASK) { case ISO15765_FLOW_CONTROL_STATUS_CTS: #if 1 { // This construction is added to make the hcs12 compiler happy. const uint8_t bs = txPduData->SduDataPtr[indexCount++]; txRuntime->iso15765.BS = bs; txRuntime->iso15765.nextFlowControlCount = bs; } txRuntime->iso15765.STmin = txPduData->SduDataPtr[indexCount++]; /** @req CANTP282 */ #else txRuntime->iso15765.BS = txPduData->SduDataPtr[indexCount++]; txRuntime->iso15765.nextFlowControlCount = txRuntime->iso15765.BS; txRuntime->iso15765.STmin = txPduData->SduDataPtr[indexCount++]; #endif // change state and setup timout txRuntime->iso15765.stateTimeoutCount = (txConfig->CanTpNcs) + 1; txRuntime->iso15765.state = TX_WAIT_TRANSMIT; break; case ISO15765_FLOW_CONTROL_STATUS_WAIT: txRuntime->iso15765.stateTimeoutCount = (txConfig->CanTpNbs) + 1; /** @req CANTP315.partially */ txRuntime->iso15765.state = TX_WAIT_FLOW_CONTROL; break; case ISO15765_FLOW_CONTROL_STATUS_OVFLW: Dcm_TpTxConfirmation(txConfig->PduR_PduId, NTFRSLT_E_NO_BUFFER); /* @req ISO/FDIS 15765-2:2004(E) 7.5.5.2*/ /** @req CANTP309 */ txRuntime->iso15765.state = IDLE; txRuntime->pduId = INVALID_PDU_ID; txRuntime->mode = CANTP_TX_WAIT; break; default: /* Abort transmission if invalid FS */ Dcm_TpTxConfirmation(txConfig->PduR_PduId,NTFRSLT_E_INVALID_FS); /* @req ISO/FDIS 15765-2:2004(E) 7.5.5.3*/ /** @req CANTP317 */ txRuntime->iso15765.state = IDLE; txRuntime->pduId = INVALID_PDU_ID; txRuntime->mode = CANTP_TX_WAIT; break; } } else { } } // - - - - - - - - - - - - - - void handleSingleFrame(const CanTp_RxNSduType *rxConfig, CanTp_SimplexChannelPrivateType *rxRuntime, const PduInfoType *rxPduData, PduIdType CanTpRxNSduId) { BufReq_ReturnType ret; PduLengthType pduLength; uint8_t *data = NULL; PduLengthType bytesWrittenToSduRBuffer; PduIdType pdurPduOngoing; if ((rxRuntime->iso15765.state != IDLE) && (rxRuntime->iso15765.state != RX_WAIT_CF_SDU_BUFFER) && (rxRuntime->iso15765.state != RX_WAIT_SF_SDU_BUFFER)){ pdurPduOngoing=CanTp_ConfigPtr->CanTpNSduList[rxRuntime->pduId].configData.CanTpRxNSdu.PduR_PduId; Dcm_TpRxIndication(pdurPduOngoing, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ // Abort current reception, we need to tell the current receiver it has been aborted. } if (rxConfig->CanTpAddressingFormant == CANTP_EXTENDED) { uint8_t extendedAddress = 0; extendedAddress = rxPduData->SduDataPtr[0]; //Verfify the target address if (extendedAddress != rxConfig->CanTpNTa->CanTpNTa && extendedAddress != 255) return; } initRx15765RuntimeData(rxRuntime); /** @req CANTP124 */ pduLength = getPduLength(&rxConfig->CanTpAddressingFormant, SINGLE_FRAME, rxPduData); if (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) { /** @req CANTP094 *//** @req CANTP095 */ data = &rxPduData->SduDataPtr[1]; } else { data = &rxPduData->SduDataPtr[2]; } rxRuntime->transferTotal = pduLength; rxRuntime->iso15765.state = SF_OR_FF_RECEIVED_WAITING_PDUR_BUFFER; rxRuntime->mode = CANTP_RX_PROCESSING; rxRuntime->iso15765.stateTimeoutCount = (rxConfig->CanTpNbr) + 1; /** @req CANTP166 */ rxRuntime->pduId = CanTpRxNSduId; ret = copySegmentToPduRRxBuffer(rxConfig, rxRuntime, data, pduLength, &bytesWrittenToSduRBuffer); /** @req CANTP277 */ if (ret == BUFREQ_OK) { Dcm_TpRxIndication(rxConfig->PduR_PduId, NTFRSLT_OK); /** @req CANTP084 */ rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } else if (ret == BUFREQ_E_BUSY) { if (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) { data = &rxPduData->SduDataPtr[1]; } else { data = &rxPduData->SduDataPtr[2]; } (void)copySegmentToLocalRxBuffer(rxRuntime, data, pduLength ); rxRuntime->iso15765.state = RX_WAIT_SF_SDU_BUFFER; rxRuntime->mode = CANTP_RX_PROCESSING; } else { rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } } // - - - - - - - - - - - - - - void handleFirstFrame(const CanTp_RxNSduType *rxConfig, CanTp_SimplexChannelPrivateType *rxRuntime, const PduInfoType *rxPduData, PduIdType CanTpRxNSduId) { BufReq_ReturnType ret; PduLengthType pduLength = 0; PduLengthType bytesWrittenToSduRBuffer; uint8_t extendedAddress = 0; PduIdType pdurPduOngoing; if (rxConfig->CanTpAddressingFormant == CANTP_EXTENDED) { extendedAddress = rxPduData->SduDataPtr[0]; //Verfify the target address if (extendedAddress != rxConfig->CanTpNTa->CanTpNTa) return; } if ((rxRuntime->iso15765.state != IDLE) && (rxRuntime->iso15765.state != RX_WAIT_CF_SDU_BUFFER) && (rxRuntime->iso15765.state != RX_WAIT_SF_SDU_BUFFER)) { pdurPduOngoing=CanTp_ConfigPtr->CanTpNSduList[rxRuntime->pduId].configData.CanTpRxNSdu.PduR_PduId; Dcm_TpRxIndication(pdurPduOngoing, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ // Abort current reception, we need to tell the current receiver it has been aborted. } initRx15765RuntimeData(rxRuntime); /** @req CANTP124 */ pduLength = getPduLength(&rxConfig->CanTpAddressingFormant, FIRST_FRAME, rxPduData); rxRuntime->transferTotal = pduLength; rxRuntime->pduId = CanTpRxNSduId; VALIDATE_NO_RV( rxRuntime->transferTotal != 0, SERVICE_ID_CANTP_RX_INDICATION, CANTP_E_INVALID_RX_LENGTH ); // Validate that that there is a reason for using the segmented transfers and // if not simply skip (single frame should have been used). if (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) { /** @req CANTP094 *//** @req CANTP095 */ if (pduLength <= MAX_PAYLOAD_SF_STD_ADDR){ return; } } else { if (pduLength <= MAX_PAYLOAD_SF_EXT_ADDR){ return; } } // Validate that the SDU is full length in this first frame. if (rxPduData->SduLength < MAX_SEGMENT_DATA_SIZE) { return; } rxRuntime->iso15765.framesHandledCount = 1; // Segment count begins with 1 (FirstFrame has the 0). rxRuntime->iso15765.state = SF_OR_FF_RECEIVED_WAITING_PDUR_BUFFER; rxRuntime->mode = CANTP_RX_PROCESSING; rxRuntime->iso15765.stateTimeoutCount = rxConfig->CanTpNbr; /** @req CANTP166 */ if (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) { ret = copySegmentToPduRRxBuffer(rxConfig, rxRuntime, &rxPduData->SduDataPtr[2], MAX_PAYLOAD_FF_STD_ADDR, &bytesWrittenToSduRBuffer); } else { rxRuntime->iso15765.extendedAddress = rxConfig->CanTpNSa->CanTpNSa; ret = copySegmentToPduRRxBuffer(rxConfig, rxRuntime, &rxPduData->SduDataPtr[3], MAX_PAYLOAD_FF_EXT_ADDR, &bytesWrittenToSduRBuffer); } if (ret == BUFREQ_OK) { rxRuntime->iso15765.stateTimeoutCount = (rxConfig->CanTpNcr) + 1; /** @req CANTP312 */ rxRuntime->iso15765.state = RX_WAIT_CONSECUTIVE_FRAME; rxRuntime->mode = CANTP_RX_PROCESSING; sendFlowControlFrame(rxConfig, rxRuntime, ret); /** @req CANTP064 */ } else if (ret == BUFREQ_E_BUSY) { /** @req CANTP222 */ if (rxConfig->CanTpAddressingFormant == CANTP_STANDARD) { (void)copySegmentToLocalRxBuffer(rxRuntime, &rxPduData->SduDataPtr[2], MAX_PAYLOAD_FF_STD_ADDR ); } else { (void)copySegmentToLocalRxBuffer(rxRuntime, &rxPduData->SduDataPtr[3], MAX_PAYLOAD_FF_EXT_ADDR ); } rxRuntime->iso15765.stateTimeoutCount = (rxConfig->CanTpNbr) + 1; rxRuntime->iso15765.state = RX_WAIT_CF_SDU_BUFFER; rxRuntime->mode = CANTP_RX_PROCESSING; sendFlowControlFrame(rxConfig, rxRuntime, ret); /** @req CANTP082 */ /** @req CANTP064 */ } else if (ret == BUFREQ_E_OVFL) { sendFlowControlFrame(rxConfig, rxRuntime, ret); /** @req CANTP318 */ /** @req CANTP064 */ rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } else if (ret == BUFREQ_E_NOT_OK) { rxRuntime->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; rxRuntime->mode = CANTP_RX_WAIT; } /** @req CANTP081 */ } // - - - - - - - - - - - - - - ISO15765FrameType calcRequiredProtocolFrameType( const CanTp_TxNSduType *txConfig, CanTp_SimplexChannelPrivateType *txRuntime) { ISO15765FrameType ret = INVALID_FRAME; if (txConfig->CanTpAddressingMode == CANTP_EXTENDED) { if (txRuntime->transferTotal <= MAX_PAYLOAD_CF_EXT_ADDR) { ret = SINGLE_FRAME; } else { if (txConfig->CanTpTxTaType == CANTP_PHYSICAL) { ret = FIRST_FRAME; } else { //DET_REPORTERROR(SERVICE_ID_CANTP_TRANSMIT, CANTP_E_INVALID_TATYPE ); /** @req CANTP093 */ } } } else { // CANTP_STANDARD if (txRuntime->transferTotal <= MAX_PAYLOAD_CF_STD_ADDR) { ret = SINGLE_FRAME; } else { if (txConfig->CanTpTxTaType == CANTP_PHYSICAL) { ret = FIRST_FRAME; } else { //DET_REPORTERROR(SERVICE_ID_CANTP_TRANSMIT, CANTP_E_INVALID_TATYPE ); /** @req CANTP093 */ } } } return ret; } // - - - - - - - - - - - - - - Std_ReturnType CanTp_Transmit(PduIdType CanTpTxSduId, const PduInfoType *CanTpTxInfoPtr) /** @req CANTP176 */ { const CanTp_TxNSduType *txConfig = NULL; CanTp_SimplexChannelPrivateType *txRuntime = NULL; Std_ReturnType ret = 0; PduIdType CanTp_InternalTxNSduId; uint8_t txsdu_index; txsdu_index = CanTpTxSduId + CanTp_ConfigPtr->CanTpGeneral->start_of_txsdu; if( CanTp_ConfigPtr->CanTpRxIdList[txsdu_index].CanTpNSduIndex != 0xFFFF ) { CanTp_InternalTxNSduId = CanTp_ConfigPtr->CanTpRxIdList[txsdu_index].CanTpNSduIndex; txConfig =&CanTp_ConfigPtr->CanTpNSduList[CanTp_InternalTxNSduId].configData.CanTpTxNSdu; txRuntime = &CanTpRunTimeData.runtimeDataList[txConfig->CanTpTxChannel].SimplexChnlList[CANTP_TX_CHANNEL]; // Runtime data. if (txRuntime->iso15765.state == IDLE) { ISO15765FrameType iso15765Frame; txRuntime->canFrameBuffer.byteCount = 0; txRuntime->transferCount = 0; txRuntime->iso15765.framesHandledCount = 0; txRuntime->transferTotal = CanTpTxInfoPtr->SduLength; /** @req CANTP225 */ txRuntime->iso15765.stateTimeoutCount = (txConfig->CanTpNcs) + 1; /** @req CANTP167 */ txRuntime->mode = CANTP_TX_PROCESSING; txRuntime->pduId = CanTp_InternalTxNSduId; iso15765Frame = calcRequiredProtocolFrameType(txConfig, txRuntime); /** @req CANTP231 */ /** @req CANTP232 */ if (txConfig->CanTpAddressingMode == CANTP_EXTENDED) { /** @req CANTP094 *//** @req CANTP095 */ txRuntime->canFrameBuffer.data[txRuntime->canFrameBuffer.byteCount++] = (uint8_t) txConfig->CanTpNTa->CanTpNTa; // Target address. } switch(iso15765Frame) { case SINGLE_FRAME: txRuntime->canFrameBuffer.data[txRuntime->canFrameBuffer.byteCount++] = ISO15765_TPCI_SF | (uint8_t)(txRuntime->transferTotal); ret = E_OK; break; case FIRST_FRAME: txRuntime->canFrameBuffer.data[txRuntime->canFrameBuffer.byteCount++] = ISO15765_TPCI_FF | (uint8_t)((txRuntime->transferTotal & 0xf00) >> 8); txRuntime->canFrameBuffer.data[txRuntime->canFrameBuffer.byteCount++] = (uint8_t)(txRuntime->transferTotal & 0xff); // setup block size so that state machine waits for flow control after first frame txRuntime->iso15765.nextFlowControlCount = 1; txRuntime->iso15765.BS = 1; ret = E_OK; break; default: ret = E_NOT_OK; } txRuntime->iso15765.state = TX_WAIT_TRANSMIT; } else { ret = E_NOT_OK; /** @req CANTP123 *//** @req CANTP206 */ } } return ret; // CAN level error code. } /* @req CANTP273 */ void CanTp_Init( const CanTp_ConfigType* CfgPtr) { uint8_t i; VALIDATE_NO_RV(CfgPtr != NULL, SERVICE_ID_CANTP_INIT,CANTP_E_PARAM_POINTER); /* @req CANTP320 */ CanTp_ConfigPtr = CfgPtr; for ( i=0; i < CANTP_MAX_NO_CHANNELS; i++) { initTx15765RuntimeData(&CanTpRunTimeData.runtimeDataList[i].SimplexChnlList[CANTP_TX_CHANNEL]); initRx15765RuntimeData(&CanTpRunTimeData.runtimeDataList[i].SimplexChnlList[CANTP_RX_CHANNEL]); initRx15765RuntimeData(&CanTpRunTimeData.runtimeDataList[i].functionalChnl); } CanTpRunTimeData.internalState = CANTP_ON; /** @req CANTP170 */ } // - - - - - - - - - - - - - - /** @req CANTP214 */ void CanTp_RxIndication(PduIdType CanTpRxPduId, /** @req CANTP078 */ /** @req CANTP035 */ PduInfoType *CanTpRxPduPtr) { const CanTp_RxNSduType *rxConfigParams; // Params reside in ROM. const CanTp_TxNSduType *txConfigParams; const CanTp_AddressingFormantType *addressingFormat; // Configured CanTp_SimplexChannelPrivateType *runtimeParams = 0; // Params reside in RAM. ISO15765FrameType frameType; PduIdType CanTpTxNSduId, CanTpRxNSduId; int32_t i; CanTpRxNSduId = INVALID_PDU_ID; CanTpRxPduId -= CAN_DIAG_MSG_START; addressingFormat = &CanTp_ConfigPtr->CanTpRxIdList[CanTpRxPduId].CanTpAddressingMode; frameType = getFrameType(addressingFormat, CanTpRxPduPtr); /** @req CANTP094 *//** @req CANTP095 */ /** @req CANTP284 */ if( frameType == FLOW_CONTROL_CTS_FRAME ) { if( CanTp_ConfigPtr->CanTpRxIdList[CanTpRxPduId].CanTpReferringTxIndex != 0xFFFF ) { CanTpTxNSduId = CanTp_ConfigPtr->CanTpRxIdList[CanTpRxPduId].CanTpReferringTxIndex; txConfigParams = &CanTp_ConfigPtr->CanTpNSduList[CanTpTxNSduId].configData.CanTpTxNSdu; runtimeParams = &CanTpRunTimeData.runtimeDataList[txConfigParams->CanTpTxChannel].SimplexChnlList[CANTP_TX_CHANNEL]; } else { //Invalid FC received return; } rxConfigParams = NULL; } else { if( CanTp_ConfigPtr->CanTpRxIdList[CanTpRxPduId].CanTpNSduIndex != 0xFFFF ) { CanTpRxNSduId = CanTp_ConfigPtr->CanTpRxIdList[CanTpRxPduId].CanTpNSduIndex; rxConfigParams = &CanTp_ConfigPtr->CanTpNSduList[CanTpRxNSduId].configData.CanTpRxNSdu; /** @req CANTP120 */ if( CANTP_FUNCTIONAL == rxConfigParams->CanTpRxTaType) {// Find if the current Pdu received is on a functional channel runtimeParams = &CanTpRunTimeData.runtimeDataList[rxConfigParams->CanTpRxChannel].functionalChnl; } else { runtimeParams = &CanTpRunTimeData.runtimeDataList[rxConfigParams->CanTpRxChannel].SimplexChnlList[CANTP_RX_CHANNEL]; /** @req CANTP096 *//** @req CANTP121 *//** @req CANTP122 *//** @req CANTP190 */ } } else { //Invalid Frame received return; } txConfigParams = NULL; } if(( CANTP_ADD_FUNCTIONAL == rxConfigParams->CanTpRxTaType)&&(SINGLE_FRAME !=frameType)) {//functinal addressing shall only be supported for single frame communication,20160508 return; } switch (frameType) { case SINGLE_FRAME: { if (rxConfigParams != NULL) { handleSingleFrame(rxConfigParams, runtimeParams, CanTpRxPduPtr, CanTpRxNSduId); /** @req CANTP096 *//** @req CANTP121 *//** @req CANTP122 *//** @req CANTP190 */ } else{ } break; } case FIRST_FRAME: { if (rxConfigParams != NULL) { handleFirstFrame(rxConfigParams, runtimeParams, CanTpRxPduPtr,CanTpRxNSduId); }else{ } break; } case CONSECUTIVE_FRAME: { if (rxConfigParams != NULL) { handleConsecutiveFrame(rxConfigParams, runtimeParams, CanTpRxPduPtr); } else { } break; } case FLOW_CONTROL_CTS_FRAME: { if (txConfigParams != NULL) { handleFlowControlFrame(txConfigParams, runtimeParams, CanTpRxPduPtr); } else { } break; } case INVALID_FRAME: { break; } default: break; } } // - - - - - - - - - - - - - - /** @req CANTP215 */ void CanTp_TxConfirmation(PduIdType CanTpTxPduId) /** @req CANTP076 */ { PduIdType CanTpNSduId; const CanTp_RxNSduType *rxConfigParams = NULL; const CanTp_TxNSduType *txConfigParams = NULL; CanTp_SimplexChannelPrivateType *txRuntime ; uint8_t txsdu_index; VALIDATE_NO_RV( CanTpRunTimeData.internalState == CANTP_ON, SERVICE_ID_CANTP_TX_CONFIRMATION, CANTP_E_UNINIT ); /** @req CANTP031 */ VALIDATE_NO_RV( CanTpTxPduId < CanTp_ConfigPtr->CanTpGeneral->number_of_pdus, SERVICE_ID_CANTP_TX_CONFIRMATION, CANTP_E_INVALID_TX_ID ); /** @req CANTP158 */ /** @req CANTP236 */ txsdu_index = CanTpTxPduId - CanTp_ConfigPtr->CanTpGeneral->start_of_txpdu + CanTp_ConfigPtr->CanTpGeneral->start_of_txsdu; if( CanTp_ConfigPtr->CanTpRxIdList[txsdu_index].CanTpNSduIndex != 0xFFFF ) { CanTpNSduId = CanTp_ConfigPtr->CanTpRxIdList[txsdu_index].CanTpNSduIndex; if ( CanTp_ConfigPtr->CanTpNSduList[CanTpNSduId].direction == IS015765_TRANSMIT ) { txConfigParams = (CanTp_TxNSduType*)&CanTp_ConfigPtr->CanTpNSduList[CanTpNSduId].configData.CanTpTxNSdu; txRuntime = &CanTpRunTimeData.runtimeDataList[txConfigParams->CanTpTxChannel].SimplexChnlList[CANTP_TX_CHANNEL]; if(txRuntime->iso15765.state == TX_WAIT_TX_CONFIRMATION) { handleNextTxFrameSent(txConfigParams, txRuntime); } } else { rxConfigParams = (CanTp_RxNSduType*)&CanTp_ConfigPtr->CanTpNSduList[CanTpNSduId].configData.CanTpRxNSdu; CanTpRunTimeData.runtimeDataList[rxConfigParams->CanTpRxChannel].SimplexChnlList[CANTP_RX_CHANNEL].iso15765.NasNarPending = FALSE; } } } // - - - - - - - - - - - - - - void CanTp_Shutdown(void) /** @req CANTP202 *//** @req CANTP200 *//** @req CANTP010 */ { VALIDATE_NO_RV( CanTpRunTimeData.internalState == CANTP_ON, SERVICE_ID_CANTP_SHUTDOWN, CANTP_E_UNINIT ); /** @req CANTP031 */ CanTpRunTimeData.internalState = CANTP_OFF; } // - - - - - - - - - - - - - - #if 0 /* IMPROVEMENT: Add support for Nas/Nar .*/ boolean checkNasNarTimeout(PduIdType CanTpTxPduId, CanTp_SimplexChannelPrivateType *runtimeData) { /* this function is NEVER CALLED */ boolean ret = FALSE; if (runtimeData->iso15765.NasNarPending) { TIMER_DECREMENT(runtimeData->iso15765.NasNarTimeoutCount); if (runtimeData->iso15765.NasNarTimeoutCount == 0) { DEBUG( DEBUG_MEDIUM, "NAS timed out.\n" ); runtimeData->iso15765.state = IDLE; rxRuntime->pduId = INVALID_PDU_ID; runtimeData->iso15765.NasNarPending = FALSE; ret = TRUE; PduR_CanTpTxConfirmation(CanTpTxPduId, NTFRSLT_E_TIMEOUT_A); /** @req CANTP310 */ /** @req CANTP311 */ } } return ret; } #endif //This function tries to obtain a buffer in every MainFunction for a SF which is denied buffer by higher layers. This is not an ASR req. void getBuffSingleFrame(const CanTp_RxNSduType *rxConfigListItem, CanTp_SimplexChannelPrivateType *rxRuntimeListItem) { /* We end up here if we have requested a buffer from the * PDUR but the response have been BUSY. */ BufReq_ReturnType ret; PduLengthType bytesWrittenToSduRBuffer; TIMER_DECREMENT (rxRuntimeListItem->iso15765.stateTimeoutCount); /* first try to copy the the old data to the buffer */ /** @req CANTP222 */ ret = copySegmentToPduRRxBuffer(rxConfigListItem, rxRuntimeListItem, rxRuntimeListItem->canFrameBuffer.data, rxRuntimeListItem->canFrameBuffer.byteCount, &bytesWrittenToSduRBuffer); if (ret == BUFREQ_OK) { Dcm_TpRxIndication(rxConfigListItem->PduR_PduId, NTFRSLT_OK); /** @req CANTP084 */ /** @req CANTP204 */ rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; } else if (((ret == BUFREQ_E_BUSY) && (rxRuntimeListItem->iso15765.stateTimeoutCount == 0)) || (ret == BUFREQ_E_NOT_OK )) { /** @req CANTP204 */ rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; } return; } void txSduStateMachine(const CanTp_TxNSduType *txConfigListItem, CanTp_SimplexChannelPrivateType *txRuntimeListItem) { BufReq_ReturnType ret; switch (txRuntimeListItem->iso15765.state) { case TX_WAIT_STMIN: TIMER_DECREMENT(txRuntimeListItem->iso15765.stateTimeoutCount); // Make sure that STmin timer has expired. if (txRuntimeListItem->iso15765.stateTimeoutCount != 0) { break; } txRuntimeListItem->iso15765.state = TX_WAIT_TRANSMIT; txRuntimeListItem->iso15765.stateTimeoutCount = (txConfigListItem->CanTpNcs) + 1; // no break, continue case TX_WAIT_TRANSMIT: { ret = sendNextTxFrame(txConfigListItem, txRuntimeListItem); /** @req CANTP184 */ /** @req CANTP089 */ if ( ret == BUFREQ_OK ) { // successfully sent frame, wait for tx confirm } else if(BUFREQ_E_BUSY == ret) { /** @req CANTP184 */ // check N_Cs timeout TIMER_DECREMENT(txRuntimeListItem->iso15765.stateTimeoutCount); if (txRuntimeListItem->iso15765.stateTimeoutCount == 0) { /* Cs timeout */ txRuntimeListItem->iso15765.state = IDLE; txRuntimeListItem->pduId = INVALID_PDU_ID; txRuntimeListItem->mode = CANTP_TX_WAIT; Dcm_TpTxConfirmation(txConfigListItem->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP204 */ /** @req CANTP280 */ /** @req CANTP185 */ } } else { txRuntimeListItem->iso15765.state = IDLE; txRuntimeListItem->pduId = INVALID_PDU_ID; txRuntimeListItem->mode = CANTP_TX_WAIT; Dcm_TpTxConfirmation(txConfigListItem->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP204 */ /** @req CANTP087 */ } break; } case TX_WAIT_FLOW_CONTROL: //DEBUG( DEBUG_MEDIUM, "Waiting for flow control!\n"); TIMER_DECREMENT(txRuntimeListItem->iso15765.stateTimeoutCount); if (txRuntimeListItem->iso15765.stateTimeoutCount == 0) { /* N_Bs timeout */ txRuntimeListItem->iso15765.state = IDLE; txRuntimeListItem->pduId = INVALID_PDU_ID; txRuntimeListItem->mode = CANTP_TX_WAIT; Dcm_TpTxConfirmation(txConfigListItem->PduR_PduId, NTFRSLT_E_TIMEOUT_BS ); /** @req CANTP204 */ /** @req CANTP316 */ } break; case TX_WAIT_TX_CONFIRMATION: TIMER_DECREMENT(txRuntimeListItem->iso15765.stateTimeoutCount); if (txRuntimeListItem->iso15765.stateTimeoutCount == 0) { /** @req CANTP075 */ /* N_As timeout */ txRuntimeListItem->iso15765.state = IDLE; txRuntimeListItem->pduId = INVALID_PDU_ID; txRuntimeListItem->mode = CANTP_TX_WAIT; Dcm_TpTxConfirmation(txConfigListItem->PduR_PduId, NTFRSLT_E_TIMEOUT_A ); /**add by xuey.04279**/ } break; default: break; } } void rxPhySduStateMachine(const CanTp_RxNSduType *rxConfigListItem, CanTp_SimplexChannelPrivateType *rxRuntimeListItem) { BufReq_ReturnType ret; PduLengthType bytesWrittenToSduRBuffer; PduLengthType bytesRemaining ; switch (rxRuntimeListItem->iso15765.state) { case RX_WAIT_CONSECUTIVE_FRAME: { TIMER_DECREMENT (rxRuntimeListItem->iso15765.stateTimeoutCount); if (rxRuntimeListItem->iso15765.stateTimeoutCount == 0) { /* N_Cr timeout */ Dcm_TpRxIndication(rxConfigListItem->PduR_PduId, NTFRSLT_E_TIMEOUT_CR); /** @req CANTP084 */ /** @req CANTP313 */ rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; } break; } case RX_WAIT_CF_SDU_BUFFER: { /* We end up here if we have requested a buffer from the * PDUR but the response have been BUSY. We assume * we have data in our local buffer and we are expected * to send a flow-control clear to send (CTS). */ TIMER_DECREMENT (rxRuntimeListItem->iso15765.stateTimeoutCount); /* first try to copy the the old data to the buffer */ /** @req CANTP222 */ bytesRemaining = 0; ret = copySegmentToPduRRxBuffer(rxConfigListItem, rxRuntimeListItem, rxRuntimeListItem->canFrameBuffer.data, rxRuntimeListItem->canFrameBuffer.byteCount, &bytesWrittenToSduRBuffer); bytesRemaining = rxRuntimeListItem->transferTotal - rxRuntimeListItem->transferCount; if (ret == BUFREQ_OK) { if (( bytesRemaining > 0)) { /** @req CANTP224 */ sendFlowControlFrame( rxConfigListItem, rxRuntimeListItem, ret ); /** @req CANTP312 */ rxRuntimeListItem->iso15765.stateTimeoutCount = rxConfigListItem->CanTpNcr; rxRuntimeListItem->iso15765.state = RX_WAIT_CONSECUTIVE_FRAME; } else { /** @req CANTP204 */ rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; Dcm_TpRxIndication(rxConfigListItem->PduR_PduId, NTFRSLT_OK); /** @req CANTP084 */ } } else if (ret == BUFREQ_E_BUSY) { if (rxRuntimeListItem->iso15765.stateTimeoutCount == 0) { /* N_Br timeout */ if ((rxRuntimeListItem->CanTpWftMaxCounter < rxConfigListItem->CanTpWftMax)) { /** @req CANTP082 */ sendFlowControlFrame( rxConfigListItem, rxRuntimeListItem, BUFREQ_E_BUSY); rxRuntimeListItem->iso15765.stateTimeoutCount = rxConfigListItem->CanTpNbr; } else { /** @req CANTP205 */ /** @req CANTP223 */ rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; rxRuntimeListItem->CanTpWftMaxCounter = 0; /* If FF has already acquired a buffer and last CF in a block fails indicate failure to PduR */ if (rxRuntimeListItem->transferCount != 0) { Dcm_TpRxIndication(rxConfigListItem->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ } } } else { if (rxRuntimeListItem->CanTpWftMaxCounter >= rxConfigListItem->CanTpWftMax) { /** @req CANTP205 */ /** @req CANTP223 */ rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; rxRuntimeListItem->CanTpWftMaxCounter = 0; /* If FF has already acquired a buffer and last CF in a block fails indicate failure to PduR */ if (rxRuntimeListItem->transferCount != 0) { Dcm_TpRxIndication(rxConfigListItem->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ } } } } else if (ret == BUFREQ_E_NOT_OK ) { rxRuntimeListItem->iso15765.state = IDLE; rxRuntimeListItem->pduId = INVALID_PDU_ID; rxRuntimeListItem->mode = CANTP_RX_WAIT; rxRuntimeListItem->CanTpWftMaxCounter = 0; /* If FF has already acquired a buffer and last CF in a block fails indicate failure to PduR */ if (rxRuntimeListItem->transferCount != 0) { Dcm_TpRxIndication(rxConfigListItem->PduR_PduId, NTFRSLT_E_NOT_OK); /** @req CANTP084 */ } } break; } case RX_WAIT_SF_SDU_BUFFER: { getBuffSingleFrame(rxConfigListItem, rxRuntimeListItem); break; } default: break; } } void rxFncSduStateMachine(const CanTp_RxNSduType *rxConfigListItem, CanTp_SimplexChannelPrivateType *rxRuntimeListItem) { switch (rxRuntimeListItem->iso15765.state) { case RX_WAIT_SF_SDU_BUFFER: { getBuffSingleFrame(rxConfigListItem, rxRuntimeListItem); break; } default: break; } } // - - - - - - - - - - - - - - void CanTp_MainFunction(void) { PduIdType pduTxId, pduRxId,pduRxFuncId; uint32_t i; CanTp_SimplexChannelPrivateType *txRuntimeListItem = NULL; CanTp_SimplexChannelPrivateType *rxRuntimeListItem = NULL; const CanTp_TxNSduType *txConfigListItem = NULL; const CanTp_RxNSduType *rxConfigListItem = NULL; if( CanTpRunTimeData.internalState != CANTP_ON ) { // DET_REPORTERROR(SERVICE_ID_CANTP_MAIN_FUNCTION, CANTP_E_UNINIT ); /** @req CANTP031 */ return; } for( i=0; i < CANTP_MAX_NO_CHANNELS; i++ ) { pduTxId = CanTpRunTimeData.runtimeDataList[i].SimplexChnlList[CANTP_TX_CHANNEL].pduId; pduRxId = CanTpRunTimeData.runtimeDataList[i].SimplexChnlList[CANTP_RX_CHANNEL].pduId; pduRxFuncId = CanTpRunTimeData.runtimeDataList[i].functionalChnl.pduId; if (pduTxId != INVALID_PDU_ID) { txConfigListItem = (CanTp_TxNSduType*)&CanTp_ConfigPtr->CanTpNSduList[pduTxId].configData.CanTpTxNSdu; txRuntimeListItem = &CanTpRunTimeData.runtimeDataList[i].SimplexChnlList[CANTP_TX_CHANNEL]; txSduStateMachine(txConfigListItem, txRuntimeListItem); } if (pduRxId != INVALID_PDU_ID) { rxConfigListItem = (CanTp_RxNSduType*)&CanTp_ConfigPtr->CanTpNSduList[pduRxId].configData.CanTpRxNSdu; rxRuntimeListItem = &CanTpRunTimeData.runtimeDataList[i].SimplexChnlList[CANTP_RX_CHANNEL]; rxPhySduStateMachine(rxConfigListItem, rxRuntimeListItem); } if (pduRxFuncId != INVALID_PDU_ID) { rxConfigListItem = (CanTp_RxNSduType*)&CanTp_ConfigPtr->CanTpNSduList[pduRxFuncId].configData.CanTpRxNSdu; rxRuntimeListItem = &CanTpRunTimeData.runtimeDataList[i].functionalChnl; rxFncSduStateMachine(rxConfigListItem, rxRuntimeListItem); } } }
f323470becaa571992c17a0c1d537a0e01e6b15d
22b6ab52693bca44774cf0fd913d73afc2548f73
/app/il2cpp_output/mscorlib_System_Runtime_Serialization_StreamingContextMethodDeclarations.h
604e33ef04bb4b697f9d5ccfcc5fe0b88271f076
[]
no_license
yuji1129xxx/drops
a4f1bfe2b4c7ede033d799f14eea96c68f4fd9f2
26c4719025ad614aa8522e3d1bb5abb7692863f9
refs/heads/master
2021-01-10T01:10:34.753556
2015-09-28T02:39:44
2015-09-28T02:39:44
43,196,830
0
0
null
null
null
null
UTF-8
C
false
false
1,646
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // System.Object struct Object_t; #include "codegen/il2cpp-codegen.h" #include "mscorlib_System_Runtime_Serialization_StreamingContext.h" #include "mscorlib_System_Runtime_Serialization_StreamingContextStates.h" // System.Void System.Runtime.Serialization.StreamingContext::.ctor(System.Runtime.Serialization.StreamingContextStates) extern "C" void StreamingContext__ctor_m6697 (StreamingContext_t313 * __this, int32_t ___state, const MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.Serialization.StreamingContext::.ctor(System.Runtime.Serialization.StreamingContextStates,System.Object) extern "C" void StreamingContext__ctor_m6698 (StreamingContext_t313 * __this, int32_t ___state, Object_t * ___additional, const MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::get_State() extern "C" int32_t StreamingContext_get_State_m6699 (StreamingContext_t313 * __this, const MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Runtime.Serialization.StreamingContext::Equals(System.Object) extern "C" bool StreamingContext_Equals_m6700 (StreamingContext_t313 * __this, Object_t * ___obj, const MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Runtime.Serialization.StreamingContext::GetHashCode() extern "C" int32_t StreamingContext_GetHashCode_m6701 (StreamingContext_t313 * __this, const MethodInfo* method) IL2CPP_METHOD_ATTR;
7a6f050cda2dae344810a614a32ba3671a1f0dcf
c47c254ca476c1f9969f8f3e89acb4d0618c14b6
/datasets/linux-4.11-rc3/arch/powerpc/kvm/book3s_xics.h
ec5474cf70c633e00ce0ca47cb116a74470a658f
[ "BSD-2-Clause", "Linux-syscall-note", "GPL-2.0-only" ]
permissive
yijunyu/demo
5cf4e83f585254a28b31c4a050630b8f661a90c8
11c0c84081a3181494b9c469bda42a313c457ad2
refs/heads/master
2023-02-22T09:00:12.023083
2021-01-25T16:51:40
2021-01-25T16:51:40
175,939,000
3
6
BSD-2-Clause
2021-01-09T23:00:12
2019-03-16T07:13:00
C
UTF-8
C
false
false
3,515
h
/* * Copyright 2012 Michael Ellerman, IBM Corporation. * Copyright 2012 Benjamin Herrenschmidt, IBM Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation. */ #ifndef _KVM_PPC_BOOK3S_XICS_H #define _KVM_PPC_BOOK3S_XICS_H /* * We use a two-level tree to store interrupt source information. * There are up to 1024 ICS nodes, each of which can represent * 1024 sources. */ #define KVMPPC_XICS_MAX_ICS_ID 1023 #define KVMPPC_XICS_ICS_SHIFT 10 #define KVMPPC_XICS_IRQ_PER_ICS (1 << KVMPPC_XICS_ICS_SHIFT) #define KVMPPC_XICS_SRC_MASK (KVMPPC_XICS_IRQ_PER_ICS - 1) /* * Interrupt source numbers below this are reserved, for example * 0 is "no interrupt", and 2 is used for IPIs. */ #define KVMPPC_XICS_FIRST_IRQ 16 #define KVMPPC_XICS_NR_IRQS ((KVMPPC_XICS_MAX_ICS_ID + 1) * \ KVMPPC_XICS_IRQ_PER_ICS) /* Priority value to use for disabling an interrupt */ #define MASKED 0xff #define PQ_PRESENTED 1 #define PQ_QUEUED 2 /* State for one irq source */ struct ics_irq_state { u32 number; u32 server; u32 pq_state; u8 priority; u8 saved_priority; u8 resend; u8 masked_pending; u8 lsi; /* level-sensitive interrupt */ u8 exists; int intr_cpu; u32 host_irq; }; /* Atomic ICP state, updated with a single compare & swap */ union kvmppc_icp_state { unsigned long raw; struct { u8 out_ee:1; u8 need_resend:1; u8 cppr; u8 mfrr; u8 pending_pri; u32 xisr; }; }; /* One bit per ICS */ #define ICP_RESEND_MAP_SIZE (KVMPPC_XICS_MAX_ICS_ID / BITS_PER_LONG + 1) struct kvmppc_icp { struct kvm_vcpu *vcpu; unsigned long server_num; union kvmppc_icp_state state; unsigned long resend_map[ICP_RESEND_MAP_SIZE]; /* Real mode might find something too hard, here's the action * it might request from virtual mode */ #define XICS_RM_KICK_VCPU 0x1 #define XICS_RM_CHECK_RESEND 0x2 #define XICS_RM_NOTIFY_EOI 0x8 u32 rm_action; struct kvm_vcpu *rm_kick_target; struct kvmppc_icp *rm_resend_icp; u32 rm_reject; u32 rm_eoied_irq; /* Counters for each reason we exited real mode */ unsigned long n_rm_kick_vcpu; unsigned long n_rm_check_resend; unsigned long n_rm_notify_eoi; /* Counters for handling ICP processing in real mode */ unsigned long n_check_resend; unsigned long n_reject; /* Debug stuff for real mode */ union kvmppc_icp_state rm_dbgstate; struct kvm_vcpu *rm_dbgtgt; }; struct kvmppc_ics { arch_spinlock_t lock; u16 icsid; struct ics_irq_state irq_state[KVMPPC_XICS_IRQ_PER_ICS]; }; struct kvmppc_xics { struct kvm *kvm; struct kvm_device *dev; struct dentry *dentry; u32 max_icsid; bool real_mode; bool real_mode_dbg; u32 err_noics; u32 err_noicp; struct kvmppc_ics *ics[KVMPPC_XICS_MAX_ICS_ID + 1]; }; static inline struct kvmppc_icp *kvmppc_xics_find_server(struct kvm *kvm, u32 nr) { struct kvm_vcpu *vcpu = NULL; int i; kvm_for_each_vcpu(i, vcpu, kvm) { if (vcpu->arch.icp && nr == vcpu->arch.icp->server_num) return vcpu->arch.icp; } return NULL; } static inline struct kvmppc_ics *kvmppc_xics_find_ics(struct kvmppc_xics *xics, u32 irq, u16 *source) { u32 icsid = irq >> KVMPPC_XICS_ICS_SHIFT; u16 src = irq & KVMPPC_XICS_SRC_MASK; struct kvmppc_ics *ics; if (source) *source = src; if (icsid > KVMPPC_XICS_MAX_ICS_ID) return NULL; ics = xics->ics[icsid]; if (!ics) return NULL; return ics; } #endif /* _KVM_PPC_BOOK3S_XICS_H */
e909b84eb0e093278a41d307f8e33ccc96049ee5
74d7f2954b72b8ea53cab7ef5e09f4efcc5a46f6
/03-HAL/07- ESP/ESP_config.h
7c2bf1d4a52d62cd277c509c843b5ad58f910149
[]
no_license
N0urM/STM32-SDK
3c07155915319d89774928e7cb3b9eeebd8450c8
1b2f1013288d612c73b3155adbc2ae4721ad8a61
refs/heads/master
2023-03-28T06:18:01.007674
2021-04-01T17:13:23
2021-04-01T17:13:23
286,838,610
0
0
null
null
null
null
UTF-8
C
false
false
453
h
/*******************************************************/ /* Author : Nourhan Mansour */ /* Date : 29/9/2020 */ /* Version: 1.0 */ /* File : ESP_CONFIG.h */ /*******************************************************/ #ifndef ESP_CONFIG_H #define ESP_CONFIG_H #define ESP_UART_CHANNEL 0 #endif //End Of File
cd7e8f0229a3d92d14dcf8fd7e0be38ab2e5b9eb
3817f8f93594688e0c41d2d880a28650f394f7d1
/V1.0/Threshold_Drivers/Src/Threshold_RTC.c
233c053482cb28aefdf77056e254af019b445d1a
[]
no_license
Princeon/SmartBand
32be40ac1f7e466d6b97a0901e129bbf38ce759f
be0374e6b5905f91dc446021c6e946b8cc627345
refs/heads/master
2020-05-25T20:00:34.893545
2016-05-16T08:50:10
2016-05-16T08:50:10
null
0
0
null
null
null
null
UTF-8
C
false
false
7,445
c
#include "Threshold_RTC.h" RTC_HandleTypeDef RtcHandle; static void Error_Handler(void); uint8_t Threshold_RTC_Init(uint8_t year,uint8_t month,uint8_t date,uint8_t week,uint8_t hour,uint8_t minute,uint8_t seconds) { RTC_DateTypeDef sdatestructure; RTC_TimeTypeDef stimestructure; RTC_TamperTypeDef stamperstructure; /*##-1- Configure the RTC peripheral #######################################*/ /* Configure RTC prescaler and RTC data registers */ /* RTC configured as follow: - Hour Format = Format 24 - Asynch Prediv = Value according to source clock - Synch Prediv = Value according to source clock - OutPut = Output Disable - OutPutPolarity = High Polarity - OutPutType = Open Drain */ RtcHandle.Instance = RTC; RtcHandle.Init.HourFormat = RTC_HOURFORMAT_24; RtcHandle.Init.AsynchPrediv = RTC_ASYNCH_PREDIV; RtcHandle.Init.SynchPrediv = RTC_SYNCH_PREDIV; RtcHandle.Init.OutPut = RTC_OUTPUT_DISABLE; RtcHandle.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH; RtcHandle.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN; if(HAL_RTC_Init(&RtcHandle) != HAL_OK) { /* Initialization Error */ Error_Handler(); } /*##-1- Configure the Tamper peripheral ####################################*/ /* Configure Tamper registers */ /* RTC Tamper configured as follow: - Pamper = Tamper1 - Pin selection = PC13 - Trigger = Falling Edge - TimeStamp On Tamper Detection = Enable */ stamperstructure.Filter = RTC_TAMPERFILTER_DISABLE; stamperstructure.Tamper = RTC_TAMPER_1; stamperstructure.Trigger = RTC_TAMPERTRIGGER_FALLINGEDGE; stamperstructure.SamplingFrequency = RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096; stamperstructure.PrechargeDuration = RTC_TAMPERPRECHARGEDURATION_1RTCCLK ; stamperstructure.TamperPullUp = RTC_TAMPER_PULLUP_DISABLE; stamperstructure.TimeStampOnTamperDetection = RTC_TIMESTAMPONTAMPERDETECTION_ENABLE; HAL_RTCEx_SetTamper(&RtcHandle, &stamperstructure); /*##-2- Configure the Time Stamp peripheral ################################*/ /* RTC TimeStamp flag Generation: TimeStamp Rising Edge on PC13 Pin */ HAL_RTCEx_SetTimeStamp_IT(&RtcHandle, RTC_TIMESTAMPEDGE_RISING, RTC_TIMESTAMPPIN_DEFAULT); /* Clear the TIMESTAMP interrupt pending bit */ __HAL_RTC_TIMESTAMP_CLEAR_FLAG(&RtcHandle,RTC_FLAG_TSF); /*##-2- Configure the Date #################################################*/ /* Set Date: Monday April 14th 2014 */ sdatestructure.Year = year; sdatestructure.Month = month; sdatestructure.Date = date; sdatestructure.WeekDay = week; if(HAL_RTC_SetDate(&RtcHandle,&sdatestructure,RTC_FORMAT_BCD) != HAL_OK) { /* Initialization Error */ Error_Handler(); } /*##-3- Configure the Time #################################################*/ /* Set Time: 02:20:00 */ stimestructure.Hours = hour; stimestructure.Minutes = minute; stimestructure.Seconds = seconds; stimestructure.TimeFormat = RTC_HOURFORMAT12_PM; stimestructure.DayLightSaving = RTC_DAYLIGHTSAVING_NONE ; stimestructure.StoreOperation = RTC_STOREOPERATION_RESET; if(HAL_RTC_SetTime(&RtcHandle,&stimestructure,RTC_FORMAT_BCD) != HAL_OK) { /* Initialization Error */ Error_Handler(); } return 1; } /** * @brief Display the current time. * @param showtime : pointer to buffer * @retval None */ RTC_DateTypeDef sdatestructureget; RTC_TimeTypeDef stimestructureget; void Threshold_RTC_TimeShow(void) { /* Get the RTC current Time */ HAL_RTC_GetTime(&RtcHandle, &stimestructureget, RTC_FORMAT_BIN); /* Get the RTC current Date */ HAL_RTC_GetDate(&RtcHandle, &sdatestructureget, RTC_FORMAT_BIN); /* Display time Format : hh:mm:ss */ //printf("%.2d:%.2d:%.2d \r\n",stimestructureget.Hours, stimestructureget.Minutes, stimestructureget.Seconds); /* Display time Format : hh:mm:ss */ //printf("20%.2d %.2d %.2d WeekDay:%d \r\n",sdatestructureget.Year, sdatestructureget.Month, sdatestructureget.Date,sdatestructureget.WeekDay); } /** * @brief Tamper callback * @param hrtc : hrtc handle * @retval None */ RTC_DateTypeDef sTimeStampDateget; RTC_TimeTypeDef sTimeStampget; void HAL_RTCEx_TimeStampEventCallback(RTC_HandleTypeDef *hrtc) { /* Clear the Tamper Flag */ __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc,RTC_FLAG_TAMP1F); HAL_RTCEx_GetTimeStamp(&RtcHandle, &sTimeStampget, &sTimeStampDateget, RTC_FORMAT_BIN); } /** @defgroup HAL_MSP_Private_Functions * @{ */ /** * @brief RTC MSP Initialization * This function configures the hardware resources used in this example: * - Peripheral's clock enable * @param hrtc: RTC handle pointer * @note Care must be taken when HAL_RCCEx_PeriphCLKConfig() is used to select * the RTC clock source; in this case the Backup domain will be reset in * order to modify the RTC Clock source, as consequence RTC registers (including * the backup registers) and RCC_CSR register are set to their reset values. * @retval None */ void HAL_RTC_MspInit(RTC_HandleTypeDef *hrtc) { RCC_OscInitTypeDef RCC_OscInitStruct; RCC_PeriphCLKInitTypeDef PeriphClkInitStruct; // /*##-1- Backup Domain reset ################################################*/ // __HAL_RCC_BACKUPRESET_FORCE(); // __HAL_RCC_BACKUPRESET_RELEASE(); /*##-2- Configue LSE as RTC clock soucre ###################################*/ #ifdef RTC_CLOCK_SOURCE_LSE RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI | RCC_OSCILLATORTYPE_LSE; RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; RCC_OscInitStruct.LSEState = RCC_LSE_ON; RCC_OscInitStruct.LSIState = RCC_LSI_OFF; if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { Error_Handler(); } PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_RTC; PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSE; if(HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK) { Error_Handler(); } #elif defined (RTC_CLOCK_SOURCE_LSI) RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI | RCC_OSCILLATORTYPE_LSE; RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; RCC_OscInitStruct.LSIState = RCC_LSI_ON; RCC_OscInitStruct.LSEState = RCC_LSE_OFF; if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { Error_Handler(); } PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_RTC; PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSI; if(HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK) { Error_Handler(); } #else #error Please select the RTC Clock source inside the main.h file #endif /*RTC_CLOCK_SOURCE_LSE*/ /*##-3- Enable RTC peripheral Clocks #######################################*/ /* Enable RTC Clock */ __HAL_RCC_RTC_ENABLE(); /*##-4- Configure the NVIC for RTC Tamper ###################################*/ HAL_NVIC_SetPriority(RTC_IRQn, 0x0, 0); HAL_NVIC_EnableIRQ(RTC_IRQn); } /** * @brief RTC MSP De-Initialization * This function freeze the hardware resources used in this example: * - Disable the Peripheral's clock * @param hrtc: RTC handle pointer * @retval None */ void HAL_RTC_MspDeInit(RTC_HandleTypeDef *hrtc) { /*##-1- Reset peripherals ##################################################*/ __HAL_RCC_RTC_DISABLE(); } static void Error_Handler(void) { }
5cb2edc68816da6ae43c48b1de216f1705eccc46
f4d650884e16e6f7dc536a680f7087362e692070
/Exam_Review/inter.c
8c6814220cf2343d258a9c5b63872e098e77f2b2
[]
no_license
lycac/42-Piscine
0011a419d6c80d3057a38c5ebc3a88ec782bd35c
bcda3ed7357404f6a9cf07347f2cfdae0f92172b
refs/heads/master
2020-06-30T18:31:57.971995
2019-08-06T19:56:40
2019-08-06T19:56:40
200,184,202
1
0
null
null
null
null
UTF-8
C
false
false
1,317
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* inter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aconstan <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/08/01 17:09:46 by aconstan #+# #+# */ /* Updated: 2019/08/01 17:32:37 by aconstan ### ########.fr */ /* */ /* ************************************************************************** */ #include <unistd.h> int inter(char *str, char c, int len) { int i; i = 0; while(str[i] && (i < len || len == -1)) if (str[i++] == c) return (1); return (0); } int main(int argc, char *argv[]) { int i; if(argc == 3) { i = 0; while (argv[1][i]) { if (!inter(argv[1], argv[1][i], i) || inter(argv[2], argv[1][i], -1)) write(1, &argv[1][i++], 1); i += 1; } } write(1, "\n", 1); return (0); }
6645f167e1a22d13deb6e4a5b30b149b8b59cfe0
2f69454ffab636d07e55fa8bb82b1b2f60264219
/3DPhotoBrowser/resource.h
e847159c32c1395051759360dba971b2ee119227
[]
no_license
mpconte/3DPhotoBrowser
54423741bff7c8253a6a19e668b5821f8b9cc045
dc9cce8f770d3c32af3afb3cc42b57f3df3c3dad
refs/heads/master
2021-01-23T07:08:45.945627
2015-03-09T23:46:39
2015-03-09T23:46:39
31,928,033
2
0
null
null
null
null
UTF-8
C
false
false
543
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by Resource.rc // #define IDD_USERPREFERENCESDIALOG 101 #define IDC_BUTTON1 1001 #define IDC_EDIT1 1002 // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 102 #define _APS_NEXT_COMMAND_VALUE 40001 #define _APS_NEXT_CONTROL_VALUE 1003 #define _APS_NEXT_SYMED_VALUE 101 #endif #endif
66753be5ba859d1936d9c3ae2eeebbe47096c057
6acdd4ce6002851ae4717068ad87a926cd095c9a
/mem.c
45cf77db111eb1cdb4df89d8918fedb17402c1cf
[ "MIT" ]
permissive
mjmcardle/cs201
a4a3d3fbff0731edb74a51357192e6db05e302b6
c18dda8c11ae07bfe541ea9daff48178a3d237b9
refs/heads/master
2020-04-17T02:07:18.074379
2019-01-16T08:57:52
2019-01-16T08:57:52
166,121,069
0
0
NOASSERTION
2019-02-10T19:04:44
2019-01-16T22:22:04
C
UTF-8
C
false
false
774
c
/* Example showing various kinds of memory. */ #include <assert.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> /* Allocated and initialized at program startup. */ uint32_t a = 5; /* Allocated and set to 0 at program startup. */ uint32_t b; uint32_t f(uint32_t *cp) { /* * Allocated on entry to f(). * Disappears when f() returns. */ uint32_t d = a + b + *cp; /* Pointer is local. String is allocated in read-only * memory at program startup. */ char *s = "3"; return d + s[0] - '0'; } int main() { /* Allocated on heap by malloc(), not initialized. */ uint32_t *cp = malloc(sizeof *cp); assert(cp); *cp = 8; /* Prints a + b + *cp + 3 == 16. */ printf("%d\n", f(cp)); return 0; }
e0ef0452fafa621f009a52fa694403c3514b400c
dbbd6d5158c02293646cc2c3f3f69b97a0436a2c
/Microchip/PIC32MK-MC_DFP/1.11.151/include/xc-pic32m.h
87a9d2a0c1cd36eb1e20bc052d204d642d944d46
[ "Apache-2.0" ]
permissive
Microchip-MPLAB-Harmony/dev_packs
7db4dbb0d0198e21f0b0797cf935032ed402d8f3
f2408856cf6379db7750aa7c67fe12ff676e621e
refs/heads/master
2023-08-27T18:15:04.733933
2023-06-09T15:38:43
2023-06-09T15:38:43
161,400,334
14
11
null
2022-02-28T00:39:02
2018-12-11T22:11:24
Roff
UTF-8
C
false
false
11,673
h
/*------------------------------------------------------------------------- * XC processor header * Build date : Jul 12 2022 * * Copyright (c) 2022, Microchip Technology Inc. and its subsidiaries ("Microchip") * All rights reserved. * * This software is developed by Microchip Technology Inc. and its * subsidiaries ("Microchip"). * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. Publication is not required when this file * is used in an embedded application. * 3. Microchip's name may not be used to endorse or promote products * derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY MICROCHIP "AS IS" AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL MICROCHIP 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) HOWSOEVER 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. * */ #pragma once #ifndef __XC_PIC32M_H #define __XC_PIC32M_H #ifndef __XC32_PART_SUPPORT_VERSION #define __XC32_PART_SUPPORT_VERSION 3010 #endif #ifndef __XC32_PART_SUPPORT_UPDATE #define __XC32_PART_SUPPORT_UPDATE 0 #endif #if defined(__32MK0128MCA028__) # include <proc/p32mk0128mca028.h> #elif defined(__32MK0128MCA032__) # include <proc/p32mk0128mca032.h> #elif defined(__32MK0128MCA048__) # include <proc/p32mk0128mca048.h> #elif defined(__32MK0256MCJ048__) # include <proc/p32mk0256mcj048.h> #elif defined(__32MK0256MCJ064__) # include <proc/p32mk0256mcj064.h> #elif defined(__32MK0512MCF064__) # include <proc/p32mk0512mcf064.h> #elif defined(__32MK0512MCF100__) # include <proc/p32mk0512mcf100.h> #elif defined(__32MK0512MCJ048__) # include <proc/p32mk0512mcj048.h> #elif defined(__32MK0512MCJ064__) # include <proc/p32mk0512mcj064.h> #elif defined(__32MK0512MCM064__) # include <proc/p32mk0512mcm064.h> #elif defined(__32MK0512MCM100__) # include <proc/p32mk0512mcm100.h> #elif defined(__32MK1024MCF064__) # include <proc/p32mk1024mcf064.h> #elif defined(__32MK1024MCF100__) # include <proc/p32mk1024mcf100.h> #elif defined(__32MK1024MCM064__) # include <proc/p32mk1024mcm064.h> #elif defined(__32MK1024MCM100__) # include <proc/p32mk1024mcm100.h> #elif defined(__32M4KCORE__) # include <proc/p32m4kcore.h> #elif defined(__32MXGENERIC__) # include <proc/p32mxgeneric.h> #else # error Unknown processor! #endif #ifdef __LANGUAGE_ASSEMBLY__ /* * Conventional register names. */ /* Zero register: Always returns 0 */ #define zero $0 /* Assembler temporary register: Reserved for use by the assembler */ #define at_reg $1 #define AT_reg $1 /* Return value registers: Value returned by subroutine */ #define v0 $2 #define v1 $3 /* Argument registers: First few parameters for a subroutine */ #define a0 $4 #define a1 $5 #define a2 $6 #define a3 $7 /* Subroutine register temporaries: Registers that subroutines can use * without saving */ #define t0 $8 #define t1 $9 #define t2 $10 #define t3 $11 #define t4 $12 #define t5 $13 #define t6 $14 #define t7 $15 #define t8 $24 #define t9 $25 /* Subroutine register variables: A subroutine that writes one of these * must save the old value and restore it before it exists, so the calling * routine sees the values preserved */ #define s0 $16 #define s1 $17 #define s2 $18 #define s3 $19 #define s4 $20 #define s5 $21 #define s6 $22 #define s7 $23 /* Ninth subroutine register variable: Can either be used as above or * as the frame pointer for functions that require one */ #define s8 $30 #define fp $30 /* Interrupt/Trap handler registers: Reserved for use by interrupt/trap * handler. May change under your feet! */ #define k0 $26 #define k1 $27 /* Global pointer register: Gives easy access to (some) `static' or `extern' * variables */ #define gp $28 /* Stack pointer register: Stack pointer */ #define sp $29 /* Return address register: Contains the return address for the subroutine */ #define ra $31 #endif #if defined (__LANGUAGE_C__) || defined (__LANGUAGE_C_PLUS_PLUS__) #if defined (__XC32_VERSION) && (__XC32_VERSION >= 2490) #include <pic32m_builtins.h> #endif /* * __XC_UART selects the default UART port that read() and write() will use. * read() is called by fscanf and family, while write() is called by printf * and family. */ extern int __XC_UART; /* * When __DEBUG is defined, __debug_break() resolves to an MPLAB XC32 builtin * function, which creates a MIPS32 software debug-breakpoint (sddbp 0) * instruction. */ /* #if defined(__DEBUG) * #define __debug_break() __builtin_software_breakpoint() * #else * #define __debug_break() ((void)0) * #endif */ typedef unsigned long _reg_t; /* * Inline assembly macros */ #ifndef _nop #ifdef __mips16 #define _nop() __asm__ __volatile__ (" move $0,$16" : :) #else #define _nop() __asm__ __volatile__ ("%(ssnop%)" : :) #endif #endif #ifndef Nop /* Consider using _nop rather than Nop */ #define Nop() _nop() #endif #ifndef _ehb #define _ehb() __asm__ __volatile__ ("%(ehb%)" : :) #endif #ifdef __mips16 extern void __attribute__((__nomips16__)) _sync(void); #else #define _sync() __asm__ __volatile__ ("sync" : : : "memory") #endif #define _wait() __asm__ __volatile__ ("wait") #if defined(__GCC_HAVE_BUILTIN_MIPS_CACHE) && defined(__PIC32_HAS_L1CACHE) # define _cache(op,addr) __builtin_mips_cache(op,addr) #else /* _cache() */ # define _cache(op,addr) _Pragma("message (\"Warning - Using _cache(op,addr) on an uncached target device\")") #endif /* _cache */ #if defined(__PIC32_HAS_L1CACHE) # define _synci(x) __extension__({ \ __asm__ ("synci %a0" :: "d" (x)); \ }) #else /* _synci */ # define _synci(addr) _Pragma("message (\"Warning - Using _synci(addr) on an uncached target device\")") #endif /* _synci */ #if defined(__PIC32_HAS_L1CACHE) # define _prefetch(hint,x) __extension__({ \ __asm__ ("pref %0, %a1" :: "JYA" (hint), "d" (x) : "memory"); \ }) #else /* _prefetch */ # define _prefetch(hint,addr) _Pragma("message (\"Warning - Using _prefetch(hint,addr) on an uncached target device\")") #endif /* _prefetch */ #define _mfc0(rn, sel) __builtin_mfc0(rn,sel) #define _mtc0(rn, sel, v) __builtin_mtc0(rn,sel,v) /* exchange (swap) VAL and CP0 register REG,SEL */ #define _mxc0(rn, sel, v) __builtin_mxc0(rn,sel,v) /* bit clear non-zero bits from CLR in CP0 register REG,SEL */ #define _bcc0(rn, sel, clr) __builtin_bcc0(rn,sel,clr) /* bit set non-zero bits from SET in CP0 register REG,SEL */ #define _bsc0(rn, sel, set) __builtin_bsc0(rn,sel,set) /* bit clear non-zero bits from CLR and set non-zero bits from SET in REG,SEL */ #define _bcsc0(rn, sel, clr, set) __builtin_bcsc0(rn,sel,clr,set) /* count leading zeroes */ #define _clz(x) __builtin_clz (x) /* count trailing zeroes */ #define _ctz(x) __builtin_ctz (x) #if ! __mips16 /* count leading ones */ #define _clo(x) __extension__({ \ unsigned int __x = (x); \ unsigned int __v; \ __asm__ ("clo %0,%1" : "=d" (__v) : "d" (__x)); \ __v; \ }) /* Simulate 64-bit count leading zeroes */ #define _dclz(x) __extension__({ \ unsigned long long __x = (x); \ unsigned int __hx = (__x >> 32); \ __hx ? _clz(__hx) : 32 + _clz(__x); \ }) /* Simulate 64-bit count leading ones */ #define _dclo(x) __extension__({ \ unsigned long long __llx = (x); \ unsigned int __hx = (__llx >> 32); \ (~__hx) ? _clo(__hx) : 32 + _clo(__llx); \ }) /* Simulate 64-bit count trailing zeroes */ #define _dctz(x) __extension__({ \ unsigned long long __dx = (x); \ unsigned int __ldx = __dx; \ unsigned int __hdx = __dx >> 32; \ __ldx ? _ctz(__ldx) : (63 ^ _clz(__hdx & -__hdx)); \ }) /* MIPS32r2 wsbh opcode */ #define _wsbh(x) __extension__({ \ unsigned int __x = (x), __v; \ __asm__ ("wsbh %0,%1" \ : "=d" (__v) \ : "d" (__x)); \ __v; \ }) /* MIPS32r2 byte-swap word */ #define _bswapw(x) __extension__({ \ unsigned int __x = (x), __v; \ __asm__ ("wsbh %0,%1; rotr %0,16" \ : "=d" (__v) \ : "d" (__x)); \ __v; \ }) /* MIPS32r2 insert bits */ #define _ins(tgt,val,pos,sz) __extension__({ \ unsigned int __t = (tgt), __v = (val); \ __asm__ ("ins %0,%z1,%2,%3" \ : "+d" (__t) \ : "dJ" (__v), "I" (pos), "I" (sz)); \ __t; \ }) /* MIPS32r2 extract bits */ #define _ext(x,pos,sz) __extension__({ \ unsigned int __x = (x), __v; \ __asm__ ("ext %0,%z1,%2,%3" \ : "=d" (__v) \ : "dJ" (__x), "I" (pos), "I" (sz)); \ __v; \ }) /* MIPS32r2 jr.hb */ #define _jr_hb() __asm__ __volatile__( \ "bltzal $0,0f\n" \ "0: addiu $31,1f-0b\n" \ " jr.hb $31\n" \ "1:" \ : : : "$31") /* MIPS32r2 write previous gpr */ #define _wrpgpr(regno, val) \ do { \ __asm __volatile__ ("wrpgpr $%0,%z1" \ : /* no outputs */ \ : "JK" (regno), "dJ" (val)); \ } while (0) /* MIPS32r2 read previous gpr */ #define _rdpgpr(regno) \ __extension__({ \ _reg_t __val; \ __asm __volatile__ ("rdpgpr %0,$%1" \ : "=d" (__val) \ : "JK" (regno)); \ __val; \ }) /* MIPS32r2 set SRSCtl.PSS (previous shadow set), returning old value */ extern unsigned int _xchsrspss (unsigned int); #endif #define _get_byte(addr, errp) (*(volatile unsigned char *)(addr)) #define _get_half(addr, errp) (*(volatile unsigned short *)(addr)) #define _get_word(addr, errp) (*(volatile unsigned int *)(addr)) #define _get_dword(addr, errp) (*(volatile unsigned long long *)(addr)) #define _put_byte(addr, v) (*(volatile unsigned char *)(addr)=(v), 0) #define _put_half(addr, v) (*(volatile unsigned short *)(addr)=(v), 0) #define _put_word(addr, v) (*(volatile unsigned int *)(addr)=(v), 0) #define _put_dword(addr, v) (*(volatile unsigned long long *)(addr)=(v), 0) #endif #include <cp0defs.h> #if defined (__LANGUAGE_C__) || defined (__LANGUAGE_C_PLUS_PLUS__) # include <sys/appio.h> # include <sys/l1cache.h> #endif #endif
bf15b9fdd866a9b1941d211692055b81db717b4e
e80a42712d413dd95732241f2f9bd7149931c7d7
/DataStructurePractice/LCBXXZD/LCBXXZDChapterFive/LCBXXZDChapterFiveAlgorithmDesignTwo.c
c3a2eaa68846bef7fd6c3a806b0070e38331bc9d
[]
no_license
hui1379593215/DataStructurePractice
e0343cf71d2612753cb02ef1bd54b9386a93195a
8b27b1c9053b14b2cc47db1b08d810418fd52646
refs/heads/master
2021-09-19T05:08:46.434013
2018-07-23T13:36:45
2018-07-23T13:36:45
null
0
0
null
null
null
null
UTF-8
C
false
false
555
c
// // LCBXXZDChapterFiveAlgorithmDesignTwo.c // DataStructurePractice // // Created by ly on 2018/6/1. // Copyright © 2018年 LY. All rights reserved. // #include "LCBXXZDChapterFiveAlgorithmDesignTwo.h" bool judgementOneCharacterInSqString(SqString string , char character) { if (string.length == 0) { return false ; } if (string.data[string.length - 1] == character) { return true ; } SqString newString = subSqStr(string, 2, string.length); return judgementOneCharacterInSqString(newString, character); }
8f77e5cc6acd3280a6c5e9c0e0c5ed1e2a6f3208
5c255f911786e984286b1f7a4e6091a68419d049
/code/a96c160c-447c-4c41-93aa-8c41079c90e5.c
50336750c4cff903891fb2a80aae4dbc37f268aa
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
218
c
#include <stdio.h> int main() { int i=4; int j=112; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = l%j; l = k-j*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
c725b59f8e8d40554f8ccd26830e624a8cfbcc11
46d71f6b0e9e0335b524f973f1e3e06a0e90f802
/webbench.c
053d0fa0bea34fb7513011d6d729862485d3488c
[]
no_license
yongrong/webbench
d2263ca3360bd71ca1a128f36c1e4dacdfe80fa2
74cda6e7c17378673a902aab5a02f25fbcc3b68a
refs/heads/master
2020-12-24T09:44:19.023605
2016-11-09T10:19:55
2016-11-09T10:19:55
73,272,719
0
0
null
null
null
null
UTF-8
C
false
false
12,987
c
/* * (C) Radim Kolar 1997-2004 * This is free software, see GNU Public License version 2 for * details. * * Simple forking WWW Server benchmark: * * Usage: * webbench --help * * Return codes: * 0 - sucess * 1 - benchmark failed (server is not on-line) * 2 - bad param * 3 - internal error, fork failed * */ #include "socket.c" #include <unistd.h> #include <sys/param.h> #include <rpc/types.h> #include <getopt.h> #include <strings.h> #include <time.h> #include <signal.h> /* values */ volatile int timerexpired = 0; int speed = 0; int failed = 0; int bytes = 0; /* globals */ int http10 = 1; /* 0 - http/0.9, 1 - http/1.0, 2 - http/1.1 */ /* Allow: GET, HEAD, OPTIONS, TRACE */ #define METHOD_GET 0 #define METHOD_HEAD 1 #define METHOD_OPTIONS 2 #define METHOD_TRACE 3 #define PROGRAM_VERSION "1.5" int method = METHOD_GET; int clients = 1; int force = 0; int force_reload = 0; int proxyport = 80; char* proxyhost = NULL; int benchtime = 30; /* internal */ int mypipe[2]; char host[MAXHOSTNAMELEN]; #define REQUEST_SIZE 2048 char request[REQUEST_SIZE]; static const struct option long_options[] = { { "force", no_argument, &force, 1 }, { "reload", no_argument, &force_reload, 1 }, { "time", required_argument, NULL, 't' }, { "help", no_argument, NULL, '?' }, { "http09", no_argument, NULL, '9' }, { "http10", no_argument, NULL, '1' }, { "http11", no_argument, NULL, '2' }, { "get", no_argument, &method, METHOD_GET }, { "head", no_argument, &method, METHOD_HEAD }, { "options", no_argument, &method, METHOD_OPTIONS }, { "trace", no_argument, &method, METHOD_TRACE }, { "version", no_argument, NULL, 'V' }, { "proxy", required_argument, NULL, 'p' }, { "clients", required_argument, NULL, 'c' }, { NULL, 0, NULL, 0 } }; /* prototypes */ static void benchcore(const char* host, const int port, const char* request); static int bench(void); static void build_request(const char* url); static void alarm_handler(int signal) { timerexpired = 1; } static void usage(void) { fprintf(stderr, "webbench [option]... URL\n" " -f|--force Don't wait for reply from server.\n" " -r|--reload Send reload request - Pragma: no-cache.\n" " -t|--time <sec> Run benchmark for <sec> seconds. Default 30.\n" " -p|--proxy <server:port> Use proxy server for request.\n" " -c|--clients <n> Run <n> HTTP clients at once. Default one.\n" " -9|--http09 Use HTTP/0.9 style requests.\n" " -1|--http10 Use HTTP/1.0 protocol.\n" " -2|--http11 Use HTTP/1.1 protocol.\n" " --get Use GET request method.\n" " --head Use HEAD request method.\n" " --options Use OPTIONS request method.\n" " --trace Use TRACE request method.\n" " -?|-h|--help This information.\n" " -V|--version Display program version.\n" ); } int main(int argc, char* argv[]) { int opt = 0; int options_index = 0; char* tmp = NULL; if (argc == 1) { usage(); return 2; } while ((opt = getopt_long(argc, argv, "912Vfrt:p:c:?h", long_options, &options_index)) != EOF) { switch (opt) { case 0: break; case 'f': force = 1; break; case 'r': force_reload = 1; break; case '9': http10 = 0; break; case '1': http10 = 1; break; case '2': http10 = 2; break; case 'V': printf(PROGRAM_VERSION "\n"); exit(0); case 't': benchtime = atoi(optarg); break; case 'p': /* proxy server parsing server:port */ tmp = strrchr(optarg, ':'); proxyhost = optarg; if (tmp == NULL) { break; } if (tmp == optarg) { fprintf(stderr, "Error in option --proxy %s: Missing hostname.\n", optarg); return 2; } if (tmp == optarg + strlen(optarg) - 1) { fprintf(stderr, "Error in option --proxy %s Port number is missing.\n", optarg); return 2; } *tmp = '\0'; proxyport = atoi(tmp + 1); break; case ':': case 'h': case '?': usage(); return 2; break; case 'c': clients = atoi(optarg); break; } } if (optind == argc) { fprintf(stderr, "webbench: Missing URL!\n"); usage(); return 2; } if (clients == 0) clients = 1; if (benchtime == 0) benchtime = 60; /* Copyright */ fprintf(stderr, "Webbench - Simple Web Benchmark "PROGRAM_VERSION "\n" "Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.\n" ); build_request(argv[optind]); /* print bench info */ printf("\nBenchmarking: "); switch (method) { case METHOD_GET: default: printf("GET"); break; case METHOD_OPTIONS: printf("OPTIONS"); break; case METHOD_HEAD: printf("HEAD"); break; case METHOD_TRACE: printf("TRACE"); break; } printf(" %s", argv[optind]); switch (http10) { case 0: printf(" (using HTTP/0.9)"); break; case 2: printf(" (using HTTP/1.1)"); break; } printf("\n"); if (clients == 1) printf("1 client"); else printf("%d clients", clients); printf(", running %d sec", benchtime); if (force) printf(", early socket close"); if (proxyhost != NULL) printf(", via proxy server %s:%d", proxyhost, proxyport); if (force_reload) printf(", forcing reload"); printf(".\n"); return bench(); } void build_request(const char* url) { char tmp[10]; int i; bzero(host, MAXHOSTNAMELEN); bzero(request, REQUEST_SIZE); if (force_reload && proxyhost != NULL && http10 < 1) http10 = 1; if (method == METHOD_HEAD && http10 < 1) http10 = 1; if (method == METHOD_OPTIONS && http10 < 2) http10 = 2; if (method == METHOD_TRACE && http10 < 2) http10 = 2; switch (method) { default: case METHOD_GET: strcpy(request, "GET"); break; case METHOD_HEAD: strcpy(request, "HEAD"); break; case METHOD_OPTIONS: strcpy(request, "OPTIONS"); break; case METHOD_TRACE: strcpy(request, "TRACE"); break; } strcat(request, " "); if (NULL == strstr(url, "://")) { fprintf(stderr, "\n%s: is not a valid URL.\n", url); exit(2); } if (strlen(url) > 1500) { fprintf(stderr, "URL is too long.\n"); exit(2); } if (proxyhost == NULL) if (0 != strncasecmp("http://", url, 7)) { fprintf(stderr, "\nOnly HTTP protocol is directly supported, set --proxy for others.\n"); exit(2); } /* protocol/host delimiter */ i = strstr(url, "://") - url + 3; /* printf("%d\n",i); */ if (strchr(url + i, '/') == NULL) { fprintf(stderr, "\nInvalid URL syntax - hostname don't ends with '/'.\n"); exit(2); } if (proxyhost == NULL) { /* get port from hostname */ if (index(url + i, ':') != NULL && index(url + i, ':') < index(url + i, '/')) { strncpy(host, url + i, strchr(url + i, ':') - url - i); bzero(tmp, 10); strncpy(tmp, index(url + i, ':') + 1, strchr(url + i, '/') - index(url + i, ':') - 1); /* printf("tmp=%s\n",tmp); */ proxyport = atoi(tmp); if (proxyport == 0) proxyport = 80; } else { strncpy(host, url + i, strcspn(url + i, "/")); } // printf("Host=%s\n",host); strcat(request + strlen(request), url + i + strcspn(url + i, "/")); } else { // printf("ProxyHost=%s\nProxyPort=%d\n",proxyhost,proxyport); strcat(request, url); } if (http10 == 1) strcat(request, " HTTP/1.0"); else if (http10 == 2) strcat(request, " HTTP/1.1"); strcat(request, "\r\n"); if (http10 > 0) strcat(request, "User-Agent: WebBench "PROGRAM_VERSION "\r\n"); if (proxyhost == NULL && http10 > 0) { strcat(request, "Host: "); strcat(request, host); strcat(request, "\r\n"); } if (force_reload && proxyhost != NULL) { strcat(request, "Pragma: no-cache\r\n"); } if (http10 > 1) strcat(request, "Connection: close\r\n"); /* add empty line at end */ if (http10 > 0) strcat(request, "\r\n"); // printf("Req=%s\n",request); } /* vraci system rc error kod */ static int bench(void) { int i, j, k; pid_t pid = 0; FILE* f; /* check avaibility of target server */ i = Socket(proxyhost == NULL ? host : proxyhost, proxyport); if (i < 0) { fprintf(stderr, "\nConnect to server failed. Aborting benchmark.\n"); return 1; } close(i); /* create pipe */ if (pipe(mypipe)) { perror("pipe failed."); return 3; } /* not needed, since we have alarm() in childrens */ /* wait 4 next system clock tick */ /* cas=time(NULL); while(time(NULL)==cas) sched_yield(); */ /* fork childs */ for (i = 0; i < clients; i++) { pid = fork(); if (pid <= (pid_t)0) { /* child process or error*/ sleep(1); /* make childs faster */ break; } } if (pid < (pid_t)0) { fprintf(stderr, "problems forking worker no. %d\n", i); perror("fork failed."); return 3; } if (pid == (pid_t)0) { /* I am a child */ if (proxyhost == NULL) benchcore(host, proxyport, request); else benchcore(proxyhost, proxyport, request); /* write results to pipe */ f = fdopen(mypipe[1], "w"); if (f == NULL) { perror("open pipe for writing failed."); return 3; } /* fprintf(stderr,"Child - %d %d\n",speed,failed); */ fprintf(f, "%d %d %d\n", speed, failed, bytes); fclose(f); return 0; } else { f = fdopen(mypipe[0], "r"); if (f == NULL) { perror("open pipe for reading failed."); return 3; } setvbuf(f, NULL, _IONBF, 0); speed = 0; failed = 0; bytes = 0; while (1) { pid = fscanf(f, "%d %d %d", &i, &j, &k); if (pid < 2) { fprintf(stderr, "Some of our childrens died.\n"); break; } speed += i; failed += j; bytes += k; /* fprintf(stderr,"*Knock* %d %d read=%d\n",speed,failed,pid); */ if (--clients == 0) break; } fclose(f); printf("\nSpeed=%d pages/min, %d bytes/sec.\nRequests: %d susceed, %d failed.\n", (int)((speed + failed) / (benchtime / 60.0f)), (int)(bytes / (float)benchtime), speed, failed); } return i; } void benchcore(const char* host, const int port, const char* req) { int rlen; char buf[1500]; int s, i; struct sigaction sa; /* setup alarm signal handler */ sa.sa_handler = alarm_handler; sa.sa_flags = 0; if (sigaction(SIGALRM, &sa, NULL)) exit(3); alarm(benchtime); rlen = strlen(req); nexttry:while (1) { if (timerexpired) { if (failed > 0) { /* fprintf(stderr,"Correcting failed by signal\n"); */ failed--; } return; } s = Socket(host, port); if (s < 0) { failed++; continue; } if (rlen != write(s, req, rlen)) { failed++; close(s); continue; } if (http10 == 0) if (shutdown(s, 1)) { failed++; close(s); continue; } if (force == 0) { /* read all available data from socket */ while (1) { if (timerexpired) break; i = read(s, buf, 1500); /* fprintf(stderr,"%d\n",i); */ if (i < 0) { failed++; close(s); goto nexttry; } else if (i == 0) break; else bytes += i; } } if (close(s)) { failed++; continue; } speed++; } }
1f894b14b1734159285f47d26acd950344b970f3
baf6ba787fc184dd8225f5f61a8107087bb1bf73
/sources/packages/m/OpenMAX/libomxil-bellagio/create-0.9.3-patch/libomxil-bellagio-0.9.3-new/src/omx_reference_resource_manager.c
7dfc9805ea06a679850b4a31223ea8dcfe673945
[]
no_license
radix-platform/platform
49ac3a442a2a0c86f16a66b3947e7fc4dfab4d32
282f510418c93fbe145daba665032951c6c64957
refs/heads/master
2020-04-07T16:40:48.908294
2018-11-21T10:44:12
2018-11-21T10:44:12
158,538,469
0
0
null
null
null
null
UTF-8
C
false
false
18,319
c
/** src/omx_reference_resource_manager.c This simple resource manager emulates the behavior of a real RM. It applies the rules defined in the OpenMAX spec. It can be replaced in the future by a real system. Copyright (C) 2007-2009 STMicroelectronics Copyright (C) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <string.h> #include "omx_reference_resource_manager.h" #include "base/omx_base_component.h" #include "queue.h" /** * This is the static base pointer of the list */ static int globalTimestamp = 0; /** * This function initializes the Resource manager. In the current implementation * it does not perform any operation */ OMX_ERRORTYPE RM_Init() { int i; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); globalIndex = 0; listOfcomponentRegistered = calloc(1, sizeof(struct NameIndexType) * MAX_COMPONENTS_TYPES_HANDLED); for (i = 0; i<MAX_COMPONENTS_TYPES_HANDLED; i++) { listOfcomponentRegistered[i].index = -1; listOfcomponentRegistered[i].component_name = NULL; } globalComponentList = malloc(sizeof(ComponentListType*) * MAX_COMPONENTS_TYPES_HANDLED); globalWaitingComponentList = malloc(sizeof(ComponentListType*) * MAX_COMPONENTS_TYPES_HANDLED); memset(globalComponentList, '\0', sizeof(ComponentListType*) * MAX_COMPONENTS_TYPES_HANDLED); memset(globalWaitingComponentList, '\0', sizeof(ComponentListType*) * MAX_COMPONENTS_TYPES_HANDLED); DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** This function is called during initialization by any component interested in be * handled by the internal resource manager */ OMX_ERRORTYPE RM_RegisterComponent(char *name, int max_components) { int i = 0; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); while (listOfcomponentRegistered[i].component_name != NULL) { if (!strcmp(listOfcomponentRegistered[i].component_name, name)) { DEBUG(DEB_LEV_FUNCTION_NAME, "In %s component already registered\n", __func__); return OMX_ErrorNone; } i++; } listOfcomponentRegistered[i].component_name = calloc(1, OMX_MAX_STRINGNAME_SIZE); if (listOfcomponentRegistered[i].component_name == NULL) { return OMX_ErrorInsufficientResources; } strcpy(listOfcomponentRegistered[i].component_name, name); listOfcomponentRegistered[i].component_name[strlen(name)] = '\0'; listOfcomponentRegistered[i].index = globalIndex; listOfcomponentRegistered[i].max_components = max_components; globalIndex++; DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function de-initializes the resource manager. * In the current implementation its responsibility is to clean up any queue * that can be left pending at the end of usage. With a correct use of the * resource manager it won't happen, but it is safer to clean up everything * this these lists are global and alive for all the life of IL client, * beyond the usual OMX_Init - Deinit scope. */ OMX_ERRORTYPE RM_Deinit() { int i = 0; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); while(globalComponentList[i] != NULL) { clearList(&globalComponentList[i]); clearList(&globalWaitingComponentList[i]); i++; } DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function adds a new element to a given list. * If it does not yet exists, this function also allocates the list. */ OMX_ERRORTYPE addElemToList(ComponentListType **list, OMX_COMPONENTTYPE *openmaxStandComp, int index, OMX_BOOL bIsWaiting) { ComponentListType *componentTemp; ComponentListType *componentNext; omx_base_component_PrivateType* omx_base_component_Private; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s is waiting %i\n", __func__, bIsWaiting); omx_base_component_Private = (omx_base_component_PrivateType*)openmaxStandComp->pComponentPrivate; if (!*list) { *list = malloc(sizeof(ComponentListType)); if (!bIsWaiting) { globalComponentList[index] = *list; } else { globalWaitingComponentList[index] = *list; } if (!*list) { DEBUG(DEB_LEV_ERR, "In %s OMX_ErrorInsufficientResources\n", __func__); return OMX_ErrorInsufficientResources; } (*list)->openmaxStandComp = openmaxStandComp; (*list)->timestamp = globalTimestamp; globalTimestamp++; (*list)->nGroupPriority = omx_base_component_Private->nGroupPriority; (*list)->next = NULL; DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } componentTemp = *list; while(componentTemp->next) { componentTemp = componentTemp->next; } componentNext = malloc(sizeof(ComponentListType)); if (!componentNext) { DEBUG(DEB_LEV_ERR, "In %s OMX_ErrorInsufficientResources\n", __func__); return OMX_ErrorInsufficientResources; } componentTemp->next = componentNext; componentNext->next = NULL; componentNext->openmaxStandComp = openmaxStandComp; componentNext->timestamp = globalTimestamp; globalTimestamp++; componentNext->nGroupPriority = omx_base_component_Private->nGroupPriority; DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function removes the given element from the list, if present. * If the list is empty, this function cleans up everything. */ OMX_ERRORTYPE removeElemFromList(ComponentListType **list, OMX_COMPONENTTYPE *openmaxStandComp) { ComponentListType *componentTemp; ComponentListType *componentPrev; OMX_BOOL bFound = OMX_FALSE; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s list %p\n", __func__, *list); if (!*list) { DEBUG(DEB_LEV_ERR, "In %s, the resource manager is not initialized\n", __func__); return OMX_ErrorUndefined; } componentTemp = *list; componentPrev = *list; while(componentTemp) { if (componentTemp->openmaxStandComp == openmaxStandComp) { if (componentTemp == *list) { *list = (*list)->next; free(componentTemp); } else { componentPrev->next = componentTemp->next; free(componentTemp); } bFound = OMX_TRUE; break; } else { if (componentTemp != *list) { componentPrev = componentPrev->next; } componentTemp = componentTemp->next; } } if(!bFound) { DEBUG(DEB_LEV_ERR, "In %s, the specified component does not exist\n", __func__); return OMX_ErrorComponentNotFound; } DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function returns the number of elements present in the * list. If the list does not exists, this function returns 0 elements * without further warnings */ int numElemInList(ComponentListType *list) { ComponentListType *componentTemp; int numElem = 0; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); if (!list) { DEBUG(DEB_LEV_SIMPLE_SEQ, "In %s, no list no elements\n", __func__); return 0; } componentTemp = list; while(componentTemp) { numElem++; componentTemp = componentTemp->next; } DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return numElem; } /** * This function deallocate any remaining element in a list * and dispose it */ OMX_ERRORTYPE clearList(ComponentListType **list) { ComponentListType *componentTemp; ComponentListType *componentPrev; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); if (!*list) { DEBUG(DEB_LEV_FUNCTION_NAME, "In %s, no list no elements\n", __func__); return OMX_ErrorNone; } componentTemp = *list; while(componentTemp) { componentPrev = componentTemp; componentTemp = componentTemp->next; free(componentPrev); } *list = NULL; DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This debug function is capable of printing the full list * actually stored */ void RM_printList(ComponentListType *list, int viewFlag) { ComponentListType *componentTemp = list; omx_base_component_PrivateType* omx_base_component_Private; int index; if (!list) { printf("The list is empty\n"); return; } index = 0; while (componentTemp) { omx_base_component_Private = (omx_base_component_PrivateType*)componentTemp->openmaxStandComp->pComponentPrivate; if ((viewFlag & RM_SHOW_NAME) == RM_SHOW_NAME) { printf("Name %s ", omx_base_component_Private->name); } if ((viewFlag & RM_SHOW_ADDRESS) == RM_SHOW_ADDRESS) { printf("Address %p ", componentTemp->openmaxStandComp); } printf("\n"); index++; componentTemp = componentTemp->next; } } /** * This function returns the number of components that have a lower priority * than the value specified, and the lowest among all possibles. * If the number returned is 0, no component is preemptable. if it is 1 or more, * the oldest_component_preemptable will contain the reference to the preemptable * component with the oldest time stamp. */ int searchLowerPriority(ComponentListType *list, int current_priority, ComponentListType **oldest_component_preemptable) { ComponentListType *componentTemp; ComponentListType *componentCandidate; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); int nComp = 0; if (!list) { DEBUG(DEB_LEV_ERR, "In %s no list\n", __func__); return OMX_ErrorUndefined; } componentTemp = list; componentCandidate = NULL; while (componentTemp) { if (componentTemp->nGroupPriority > current_priority) { nComp++; } if (nComp>0) { if (componentCandidate) { if (componentCandidate->timestamp > componentTemp->timestamp) { componentCandidate = componentTemp; } } else { componentCandidate = componentTemp; } } componentTemp = componentTemp->next; } *oldest_component_preemptable = componentCandidate; DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return nComp; } /** * This function tries to preempt the given component, that has been detected as * the candidate by the default policy defined in the OpenMAX spec. */ OMX_ERRORTYPE preemptComponent(OMX_COMPONENTTYPE *openmaxStandComp) { OMX_ERRORTYPE err; omx_base_component_PrivateType* omx_base_component_Private = openmaxStandComp->pComponentPrivate; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); if (omx_base_component_Private->state == OMX_StateIdle) { (*(omx_base_component_Private->callbacks->EventHandler)) (openmaxStandComp, omx_base_component_Private->callbackData, OMX_EventError, OMX_ErrorResourcesLost, 0, NULL); err = OMX_SendCommand(openmaxStandComp, OMX_CommandStateSet, OMX_StateLoaded, NULL); if (err != OMX_ErrorNone) { DEBUG(DEB_LEV_ERR, "In %s, the state cannot be changed\n", __func__); return OMX_ErrorUndefined; } } else if ((omx_base_component_Private->state == OMX_StateExecuting) || (omx_base_component_Private->state == OMX_StatePause)) { // TODO fill also this section that cover the preemption of a running component // send OMX_ErrorResourcesPreempted // change state to Idle // send OMX_ErrorResourcesLost // change state to Loaded } DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function is executed by a component when it changes state from Loaded to Idle. * If it return ErrorNone the resource is granted and it can transit to Idle. * In case the resource is already busy, the resource manager preempt another component * with a lower priority and a oldest time flag if it exists. Differently it returns OMX_ErrorInsufficientResources */ OMX_ERRORTYPE RM_getResource(OMX_COMPONENTTYPE *openmaxStandComp) { ComponentListType *componentCandidate; omx_base_component_PrivateType* omx_base_component_Private; int candidates; OMX_ERRORTYPE err; int i = 0; int indexComponent = -1; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); omx_base_component_Private = (omx_base_component_PrivateType*)openmaxStandComp->pComponentPrivate; while(listOfcomponentRegistered[i].component_name != NULL ) { if (!strcmp(listOfcomponentRegistered[i].component_name, omx_base_component_Private->name)) { // found component in the list of the resource manager indexComponent = listOfcomponentRegistered[i].index; break; } i++; } if (indexComponent <0) { // No resource to be handled DEBUG(DEB_LEV_ERR, "In %s No resource to be handled\n", __func__); return OMX_ErrorNone; } if (numElemInList(globalComponentList[indexComponent]) >= listOfcomponentRegistered[i].max_components) { candidates = searchLowerPriority(globalComponentList[indexComponent], omx_base_component_Private->nGroupPriority, &componentCandidate); if (candidates) { DEBUG(DEB_LEV_SIMPLE_SEQ, "In %s candidates %i winner %p\n", __func__, candidates, componentCandidate->openmaxStandComp); err = preemptComponent(componentCandidate->openmaxStandComp); if (err != OMX_ErrorNone) { DEBUG(DEB_LEV_ERR, "In %s the component cannot be preempted\n", __func__); return OMX_ErrorInsufficientResources; } else { err = removeElemFromList(&globalComponentList[indexComponent], componentCandidate->openmaxStandComp); err = addElemToList(&globalComponentList[indexComponent], openmaxStandComp, indexComponent, OMX_FALSE); if (err != OMX_ErrorNone) { DEBUG(DEB_LEV_ERR, "In %s memory error\n", __func__); return OMX_ErrorInsufficientResources; } } } else { DEBUG(DEB_LEV_SIMPLE_SEQ, "Out of %s with insufficient resources\n", __func__); return OMX_ErrorInsufficientResources; } } else { err = addElemToList(&globalComponentList[indexComponent], openmaxStandComp, indexComponent, OMX_FALSE); } DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function is called by a component when it transit from Idle to Loaded and can release * its used resource handled by the resource manager */ OMX_ERRORTYPE RM_releaseResource(OMX_COMPONENTTYPE *openmaxStandComp){ omx_base_component_PrivateType* omx_base_component_Private; OMX_COMPONENTTYPE *openmaxWaitingComp; OMX_ERRORTYPE err; int i = 0; int indexComponent = -1; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); omx_base_component_Private = (omx_base_component_PrivateType*)openmaxStandComp->pComponentPrivate; while(listOfcomponentRegistered[i].component_name != NULL ) { if (!strcmp(listOfcomponentRegistered[i].component_name, omx_base_component_Private->name)) { // found component in the list of the resource manager indexComponent = listOfcomponentRegistered[i].index; break; } i++; } if (indexComponent <0) { // No resource to be handled DEBUG(DEB_LEV_ERR, "In %s No resource to be handled\n", __func__); return OMX_ErrorNone; } if (!globalComponentList[indexComponent]) { DEBUG(DEB_LEV_ERR, "In %s, the resource manager is not initialized\n", __func__); return OMX_ErrorUndefined; } err = removeElemFromList(&globalComponentList[indexComponent], openmaxStandComp); if (err != OMX_ErrorNone) { DEBUG(DEB_LEV_ERR, "In %s, the resource cannot be released\n", __func__); return OMX_ErrorUndefined; } if(numElemInList(globalWaitingComponentList[indexComponent])) { openmaxWaitingComp = globalWaitingComponentList[indexComponent]->openmaxStandComp; removeElemFromList(&globalWaitingComponentList[indexComponent], openmaxWaitingComp); err = OMX_SendCommand(openmaxWaitingComp, OMX_CommandStateSet, OMX_StateIdle, NULL); if (err != OMX_ErrorNone) { DEBUG(DEB_LEV_ERR, "In %s, the state cannot be changed\n", __func__); } } DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function adds the given component to the waiting queue for * the given resource. When a resource becomes available through the * RM_releaseResource function the first element in the queue is taken * off the list and it receives the resource just released. */ OMX_ERRORTYPE RM_waitForResource(OMX_COMPONENTTYPE *openmaxStandComp) { omx_base_component_PrivateType* omx_base_component_Private; int i = 0; int indexComponent = -1; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); omx_base_component_Private = (omx_base_component_PrivateType*)openmaxStandComp->pComponentPrivate; while(listOfcomponentRegistered[i].component_name != NULL ) { if (!strcmp(listOfcomponentRegistered[i].component_name, omx_base_component_Private->name)) { // found component in the list of the resource manager indexComponent = listOfcomponentRegistered[i].index; break; } i++; } if (indexComponent <0) { // No resource to be handled DEBUG(DEB_LEV_ERR, "In %s No resource to be handled\n", __func__); return OMX_ErrorNone; } addElemToList(&globalWaitingComponentList[indexComponent], openmaxStandComp, listOfcomponentRegistered[i].index, OMX_TRUE); DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } /** * This function removes a component from the waiting queue * if the IL client decides that the component should not wait any * more for the resource */ OMX_ERRORTYPE RM_removeFromWaitForResource(OMX_COMPONENTTYPE *openmaxStandComp) { omx_base_component_PrivateType* omx_base_component_Private; int i = 0; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); omx_base_component_Private = (omx_base_component_PrivateType*)openmaxStandComp->pComponentPrivate; while(listOfcomponentRegistered[i].component_name != NULL ) { if (!strcmp(listOfcomponentRegistered[i].component_name, omx_base_component_Private->name)) { // found component in the list of the resource manager removeElemFromList(&globalComponentList[i], openmaxStandComp); DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); return OMX_ErrorNone; } i++; } // No resource to be handled DEBUG(DEB_LEV_ERR, "In %s No resource to be handled\n", __func__); return OMX_ErrorNone; }
fe932221989ae82ccbfe28074683a82a57c58792
534491ea0a6004c0e9d2f2843b03eaf090e2868f
/Chapter7/exercise/ex 7-8/printf.c
a21433fe033726b4148add24169a7d76587a3923
[]
no_license
siyuanchai1999/CProgrammingLangPractice
ea99c03a7297131a96510307a4996a4f789d414a
0efbf222fabc4483f9d474a8327783eb6428aa74
refs/heads/master
2020-03-15T23:12:33.003966
2018-08-04T16:08:08
2018-08-04T16:08:08
132,388,974
0
0
null
null
null
null
UTF-8
C
false
false
1,286
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define FILENUM 3 struct file{ char *name; FILE *fptr; }; static struct file *fArr[FILENUM]; struct file *newFile(FILE *fp, char *fname){ struct file *f = (struct file *) malloc(sizeof(struct file)); f->fptr = fp; f->name = (char *) malloc(strlen(fname) +1); strcpy(f->name, fname); return f; } void printfile(FILE *f){ int c; while((c = getc(f)) != EOF){ putc(c,stdout); } } int main(int argc, char *argv[]){ int fnum = 0; FILE *fp; if(argc < 2){ printf("at least one file name as argument\n"); printf("Usage: printf filename ...\n"); } while(--argc > 0 && **++argv){ if((fp = fopen(*argv,"r")) != NULL){ if(fnum > FILENUM - 1){ argc++; argv--; printf("files not loaded due to size limit: "); break; } fArr[fnum++] = newFile(fp,*argv); }else{ printf("file %s does not exist\n",*argv); } } while(--argc > 0 && **++argv){ printf("%s \t",*argv); } if(fnum > FILENUM -1) printf("\n"); int i; for(i = 0; i<fnum; i++){ printf("-----------------%s-----------------\n",fArr[i]->name); printfile(fArr[i]->fptr); printf("----------------------------------\n\n\n\n\n"); } }
5cf33834179f2a6a309eff33e16c49633908d061
c8f5a1f63af6bba543c6798cdb3a300126ff184c
/ft_printf/includes/ft_printf.h
e44712c2fb0f5e33f5eb21d5bd030755db0fe0a9
[]
no_license
ASM717/StartProjects_21School
e7f37a9d7ef8f227d8ef579744038d36e43d4eed
f1dba5686457b488f7c7d1b1ce340f8f3c00949a
refs/heads/main
2023-02-11T10:44:23.105540
2021-01-17T13:32:28
2021-01-17T13:32:28
324,190,640
1
0
null
null
null
null
UTF-8
C
false
false
4,106
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: amuriel <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/11/26 13:12:19 by amuriel #+# #+# */ /* Updated: 2020/12/23 17:30:24 by amuriel ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_PRINTF_H # define FT_PRINTF_H # include "../libft/libft.h" # include <unistd.h> # include <stdlib.h> # include <stdarg.h> # define CONVERSIONS "cpsdiuxX%" # define S_BASE_X "0123456789abcdef" # define S_BASE_XX "0123456789ABCDEF" typedef struct s_struct { va_list ap; int width; int accuracy; int minus; int zero; int dot; int count; int i; int flag; int sign; char type; char *str; size_t length; long long int nbr; char *str_b; size_t length_b; unsigned long nbr_b; char *s_base_x; size_t i_base; } t_struct; int ft_printf(const char *fmt, ...); void ft_zero_struct(t_struct *check); void ft_zero_null(t_struct *check); void ft_check_flag(const char *fmt, t_struct *check); void ft_check_width(const char *fmt, t_struct *check); void ft_check_accuracy(const char *fmt, t_struct *check); void ft_conclusion_type(const char *fmt, t_struct *check); void ft_conclusion_char(char c, t_struct *check); void ft_conclusion_string(t_struct *check); void ft_conclusion_int(t_struct *check); void ft_conclusion_unsigned(t_struct *check); void ft_conclusion_pointer(t_struct *check); void ft_conclusion_hex(t_struct *check); int ft_strchr_new(int c, const char *str); int ft_atoi_new(const char *fmt, t_struct *check); char *ft_itoa_new(long long int n, t_struct *check); char *ft_itoa_base(unsigned long n, t_struct *check); void ft_char_minus_zero(int i, t_struct *check); void ft_write_space(int n); void ft_write_zero(int n); void ft_printing_inc(const char *str, t_struct *check); void ft_printing_dec(const char *str, t_struct *check); void ft_accuracy_dec_minus(const char *str, t_struct *check); void ft_accuracy_dec_else(const char *str, t_struct *check); void ft_accuracy_inc_zero(t_struct *check); void ft_accuracy_inc_minus(const char *str, t_struct *check); void ft_accuracy_inc_else(const char *str, t_struct *check); void ft_acc_inc_else_width(t_struct *check); void ft_acc_inc_else_width_len(const char *str, t_struct *check); void ft_signed(t_struct *check); void ft_print_sign(t_struct *check); void ft_print_space(const char *str, t_struct *check); void ft_print_zero_acc(const char *str, t_struct *check); void ft_print_zero(const char *str, t_struct *check); void ft_acc_inc_minus(const char *str, t_struct *check); void ft_acc_inc_else(const char *str, t_struct *check); void ft_acc_dec_zero(const char *str, t_struct *check); void ft_acc_dec_minus(const char *str, t_struct *check); void ft_acc_dec_else(const char *str, t_struct *check); void ft_acc_inc_else_p(const char *str, t_struct *check); void ft_acc_inc_minus_p(const char *str, t_struct *check); void ft_acc_dec_else_p(const char *str, t_struct *check); void ft_acc_dec_minus_p(const char *str, t_struct *check); void ft_acc_dec_zero_p(const char *str, t_struct *check); void ft_print_space_p(const char *str, t_struct *check); void ft_printing_dec_p(const char *str, t_struct *check); void ft_print_zero_acc_p(const char *str, t_struct *check); void ft_print_zero_p(const char *str, t_struct *check); #endif
4978f5c10b61213dcaea7147ab4e74f31cfde678
5c255f911786e984286b1f7a4e6091a68419d049
/code/10d1b04b-b228-469d-9875-1adc07c8e8ee.c
d892e2c66e18c6d90211b5da77d0311bbbdeab8d
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
241
c
#include <stdio.h> int main() { int i=0; int j=13; int k; int l; k = 33; l = 64; k = i%j; l = i/j; k = j%j; l = i/j; l = k-j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
ad9c2147a1d4c815a41808318fb3b7b572ce41e9
05e4fafae996dee7bb6377af0695cbdcb4d99f4a
/chap1/test.c
830847fea8d2486e3c77a95f0bd9c5609675c1bc
[ "MIT" ]
permissive
ypq-ucas/UCAS-2020Data-Structure
b01006586b0cc1a23a0aaf4bafff3d603f41202b
288c105bae753c97611ae183a1adba9b4b95573b
refs/heads/master
2022-11-20T00:32:25.140428
2020-06-26T15:25:57
2020-06-26T15:25:57
275,184,052
7
1
null
null
null
null
UTF-8
C
false
false
457
c
#include<stdio.h> #include<stdlib.h> int main(){ int data; int times = 0; for(data = 0;data<127;data++){ int line[3]; for(int i = 0;i<3;i++){ int temp = data; line[3-i] = temp%2; temp = temp/2; } for(int j = 0;j<1;j++){ if(line[j]==0&&line[j+1]==0&&line[j+2]==0){ times++; } } } printf("%d",times); }
ae4e1bbfe09e4587fae19bc2e58af28bf8e84119
96c1a8e6192dfdb71b44a98f97de854e09115ade
/libsamp/libxrpc.NEW/z/curl-7.30.0/src/tool_setopt.c
4493e5f8d0f4cc7d12d689f2f1e861898f32684f
[ "MIT", "curl" ]
permissive
olebole/voclient
76cd8f5a6a9a44e23c8f9ec5461c3e173b914a65
abeee7783f4e84404a8c3a9646bb57f48988b24a
refs/heads/master
2020-04-22T09:40:28.449558
2019-01-22T21:40:18
2019-01-22T21:40:18
170,281,077
0
0
MIT
2019-02-12T08:33:36
2019-02-12T08:30:31
C
UTF-8
C
false
false
15,311
c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2013, Daniel Stenberg, <[email protected]>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ #include "tool_setup.h" #ifndef CURL_DISABLE_LIBCURL_OPTION #define ENABLE_CURLX_PRINTF /* use our own printf() functions */ #include "curlx.h" #include "tool_cfgable.h" #include "tool_easysrc.h" #include "tool_setopt.h" #include "memdebug.h" /* keep this as LAST include */ /* Lookup tables for converting setopt values back to symbols */ /* For enums, values may be in any order. */ /* For bit masks, put combinations first, then single bits, */ /* and finally any "NONE" value. */ #define NV(e) {#e, e} #define NV1(e, v) {#e, (v)} #define NVEND {NULL, 0} /* sentinel to mark end of list */ const NameValue setopt_nv_CURLPROXY[] = { NV(CURLPROXY_HTTP), NV(CURLPROXY_HTTP_1_0), NV(CURLPROXY_SOCKS4), NV(CURLPROXY_SOCKS5), NV(CURLPROXY_SOCKS4A), NV(CURLPROXY_SOCKS5_HOSTNAME), NVEND, }; const NameValueUnsigned setopt_nv_CURLAUTH[] = { NV(CURLAUTH_ANY), /* combination */ NV(CURLAUTH_ANYSAFE), /* combination */ NV(CURLAUTH_BASIC), NV(CURLAUTH_DIGEST), NV(CURLAUTH_GSSNEGOTIATE), NV(CURLAUTH_NTLM), NV(CURLAUTH_DIGEST_IE), NV(CURLAUTH_NTLM_WB), NV(CURLAUTH_ONLY), NV(CURLAUTH_NONE), NVEND, }; const NameValue setopt_nv_CURL_HTTP_VERSION[] = { NV(CURL_HTTP_VERSION_NONE), NV(CURL_HTTP_VERSION_1_0), NV(CURL_HTTP_VERSION_1_1), NVEND, }; const NameValue setopt_nv_CURL_SSLVERSION[] = { NV(CURL_SSLVERSION_DEFAULT), NV(CURL_SSLVERSION_TLSv1), NV(CURL_SSLVERSION_SSLv2), NV(CURL_SSLVERSION_SSLv3), NVEND, }; const NameValue setopt_nv_CURL_TIMECOND[] = { NV(CURL_TIMECOND_IFMODSINCE), NV(CURL_TIMECOND_IFUNMODSINCE), NV(CURL_TIMECOND_LASTMOD), NV(CURL_TIMECOND_NONE), NVEND, }; const NameValue setopt_nv_CURLFTPSSL_CCC[] = { NV(CURLFTPSSL_CCC_NONE), NV(CURLFTPSSL_CCC_PASSIVE), NV(CURLFTPSSL_CCC_ACTIVE), NVEND, }; /* These mappings essentially triplicated - see * tool_libinfo.c and tool_paramhlp.c */ const NameValue setopt_nv_CURLPROTO[] = { NV(CURLPROTO_ALL), /* combination */ NV(CURLPROTO_DICT), NV(CURLPROTO_FILE), NV(CURLPROTO_FTP), NV(CURLPROTO_FTPS), NV(CURLPROTO_GOPHER), NV(CURLPROTO_HTTP), NV(CURLPROTO_HTTPS), NV(CURLPROTO_IMAP), NV(CURLPROTO_IMAPS), NV(CURLPROTO_LDAP), NV(CURLPROTO_LDAPS), NV(CURLPROTO_POP3), NV(CURLPROTO_POP3S), NV(CURLPROTO_RTSP), NV(CURLPROTO_SCP), NV(CURLPROTO_SFTP), NV(CURLPROTO_SMTP), NV(CURLPROTO_SMTPS), NV(CURLPROTO_TELNET), NV(CURLPROTO_TFTP), NVEND, }; /* These options have non-zero default values. */ static const NameValue setopt_nv_CURLNONZERODEFAULTS[] = { NV1(CURLOPT_SSL_VERIFYPEER, 1), NV1(CURLOPT_SSL_VERIFYHOST, 1), NVEND }; /* Format and add code; jump to nomem on malloc error */ #define ADD(args) do { \ ret = easysrc_add args; \ if(ret) \ goto nomem; \ } WHILE_FALSE #define ADDF(args) do { \ ret = easysrc_addf args; \ if(ret) \ goto nomem; \ } WHILE_FALSE #define DECL0(s) ADD((&easysrc_decl, s)) #define DECL1(f,a) ADDF((&easysrc_decl, f,a)) #define DATA0(s) ADD((&easysrc_data, s)) #define DATA1(f,a) ADDF((&easysrc_data, f,a)) #define DATA2(f,a,b) ADDF((&easysrc_data, f,a,b)) #define DATA3(f,a,b,c) ADDF((&easysrc_data, f,a,b,c)) #define CODE0(s) ADD((&easysrc_code, s)) #define CODE1(f,a) ADDF((&easysrc_code, f,a)) #define CODE2(f,a,b) ADDF((&easysrc_code, f,a,b)) #define CODE3(f,a,b,c) ADDF((&easysrc_code, f,a,b,c)) #define CLEAN0(s) ADD((&easysrc_clean, s)) #define CLEAN1(f,a) ADDF((&easysrc_clean, f,a)) #define REM0(s) ADD((&easysrc_toohard, s)) #define REM1(f,a) ADDF((&easysrc_toohard, f,a)) #define REM2(f,a,b) ADDF((&easysrc_toohard, f,a,b)) /* Escape string to C string syntax. Return NULL if out of memory. * Is this correct for those wacky EBCDIC guys? */ static char *c_escape(const char *str) { size_t len = 0; const char *s; unsigned char c; char *escaped, *e; /* Allocate space based on worst-case */ len = strlen(str); escaped = malloc(4 * len + 1); if(!escaped) return NULL; e = escaped; for(s=str; (c=*s) != '\0'; s++) { if(c=='\n') { strcpy(e, "\\n"); e += 2; } else if(c=='\r') { strcpy(e, "\\r"); e += 2; } else if(c=='\t') { strcpy(e, "\\t"); e += 2; } else if(c=='\\') { strcpy(e, "\\\\"); e += 2; } else if(c=='"') { strcpy(e, "\\\""); e += 2; } else if(! isprint(c)) { snprintf(e, 4, "\\%03o", c); e += 4; } else *e++ = c; } *e = '\0'; return escaped; } /* setopt wrapper for enum types */ CURLcode tool_setopt_enum(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, const NameValue *nvlist, long lval) { CURLcode ret = CURLE_OK; bool skip = FALSE; ret = curl_easy_setopt(curl, tag, lval); if(!lval) skip = TRUE; if(config->libcurl && !skip && !ret) { /* we only use this for real if --libcurl was used */ const NameValue *nv = NULL; for(nv=nvlist; nv->name; nv++) { if(nv->value == lval) break; /* found it */ } if(! nv->name) { /* If no definition was found, output an explicit value. * This could happen if new values are defined and used * but the NameValue list is not updated. */ CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval); } else { CODE2("curl_easy_setopt(hnd, %s, (long)%s);", name, nv->name); } } nomem: return ret; } /* setopt wrapper for flags */ CURLcode tool_setopt_flags(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, const NameValue *nvlist, long lval) { CURLcode ret = CURLE_OK; bool skip = FALSE; ret = curl_easy_setopt(curl, tag, lval); if(!lval) skip = TRUE; if(config->libcurl && !skip && !ret) { /* we only use this for real if --libcurl was used */ char preamble[80]; /* should accommodate any symbol name */ long rest = lval; /* bits not handled yet */ const NameValue *nv = NULL; snprintf(preamble, sizeof(preamble), "curl_easy_setopt(hnd, %s, ", name); for(nv=nvlist; nv->name; nv++) { if((nv->value & ~ rest) == 0) { /* all value flags contained in rest */ rest &= ~ nv->value; /* remove bits handled here */ CODE3("%s(long)%s%s", preamble, nv->name, rest ? " |" : ");"); if(!rest) break; /* handled them all */ /* replace with all spaces for continuation line */ snprintf(preamble, sizeof(preamble), "%*s", strlen(preamble), ""); } } /* If any bits have no definition, output an explicit value. * This could happen if new bits are defined and used * but the NameValue list is not updated. */ if(rest) CODE2("%s%ldL);", preamble, rest); } nomem: return ret; } /* setopt wrapper for bitmasks */ CURLcode tool_setopt_bitmask(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, const NameValueUnsigned *nvlist, long lval) { CURLcode ret = CURLE_OK; bool skip = FALSE; ret = curl_easy_setopt(curl, tag, lval); if(!lval) skip = TRUE; if(config->libcurl && !skip && !ret) { /* we only use this for real if --libcurl was used */ char preamble[80]; unsigned long rest = (unsigned long)lval; const NameValueUnsigned *nv = NULL; snprintf(preamble, sizeof(preamble), "curl_easy_setopt(hnd, %s, ", name); for(nv=nvlist; nv->name; nv++) { if((nv->value & ~ rest) == 0) { /* all value flags contained in rest */ rest &= ~ nv->value; /* remove bits handled here */ CODE3("%s(long)%s%s", preamble, nv->name, rest ? " |" : ");"); if(!rest) break; /* handled them all */ /* replace with all spaces for continuation line */ snprintf(preamble, sizeof(preamble), "%*s", strlen(preamble), ""); } } /* If any bits have no definition, output an explicit value. * This could happen if new bits are defined and used * but the NameValue list is not updated. */ if(rest) CODE2("%s%luUL);", preamble, rest); } nomem: return ret; } /* setopt wrapper for CURLOPT_HTTPPOST */ CURLcode tool_setopt_httppost(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, struct curl_httppost *post) { CURLcode ret = CURLE_OK; char *escaped = NULL; bool skip = FALSE; ret = curl_easy_setopt(curl, tag, post); if(!post) skip = TRUE; if(config->libcurl && !skip && !ret) { struct curl_httppost *pp, *p; int i; /* May use several httppost lists, if multiple POST actions */ i = ++ easysrc_form_count; DECL1("struct curl_httppost *post%d;", i); DATA1("post%d = NULL;", i); CLEAN1("curl_formfree(post%d);", i); CLEAN1("post%d = NULL;", i); if(i == 1) DECL0("struct curl_httppost *postend;"); DATA0("postend = NULL;"); for(p=post; p; p=p->next) { DATA1("curl_formadd(&post%d, &postend,", i); DATA1(" CURLFORM_COPYNAME, \"%s\",", p->name); for(pp=p; pp; pp=pp->more) { /* May be several files uploaded for one name; * these are linked through the 'more' pointer */ Curl_safefree(escaped); escaped = c_escape(pp->contents); if(!escaped) { ret = CURLE_OUT_OF_MEMORY; goto nomem; } if(pp->flags & HTTPPOST_FILENAME) { /* file upload as for -F @filename */ DATA1(" CURLFORM_FILE, \"%s\",", escaped); } else if(pp->flags & HTTPPOST_READFILE) { /* content from file as for -F <filename */ DATA1(" CURLFORM_FILECONTENT, \"%s\",", escaped); } else DATA1(" CURLFORM_COPYCONTENTS, \"%s\",", escaped); if(pp->showfilename) { Curl_safefree(escaped); escaped = c_escape(pp->showfilename); if(!escaped) { ret = CURLE_OUT_OF_MEMORY; goto nomem; } DATA1(" CURLFORM_FILENAME, \"%s\",", escaped); } if(pp->contenttype) { Curl_safefree(escaped); escaped = c_escape(pp->contenttype); if(!escaped) { ret = CURLE_OUT_OF_MEMORY; goto nomem; } DATA1(" CURLFORM_CONTENTTYPE, \"%s\",", escaped); } } DATA0(" CURLFORM_END);"); } CODE2("curl_easy_setopt(hnd, %s, post%d);", name, i); } nomem: Curl_safefree(escaped); return ret; } /* setopt wrapper for curl_slist options */ CURLcode tool_setopt_slist(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, struct curl_slist *list) { CURLcode ret = CURLE_OK; char *escaped = NULL; bool skip = FALSE; ret = curl_easy_setopt(curl, tag, list); if(!list) skip = TRUE; if(config->libcurl && !skip && !ret) { struct curl_slist *s; int i; /* May need several slist variables, so invent name */ i = ++ easysrc_slist_count; DECL1("struct curl_slist *slist%d;", i); DATA1("slist%d = NULL;", i); CLEAN1("curl_slist_free_all(slist%d);", i); CLEAN1("slist%d = NULL;", i); for(s=list; s; s=s->next) { Curl_safefree(escaped); escaped = c_escape(s->data); if(!escaped) { ret = CURLE_OUT_OF_MEMORY; goto nomem; } DATA3("slist%d = curl_slist_append(slist%d, \"%s\");", i, i, escaped); } CODE2("curl_easy_setopt(hnd, %s, slist%d);", name, i); } nomem: Curl_safefree(escaped); return ret; } /* generic setopt wrapper for all other options. * Some type information is encoded in the tag value. */ CURLcode tool_setopt(CURL *curl, bool str, struct Configurable *config, const char *name, CURLoption tag, ...) { va_list arg; char buf[256]; const char *value = NULL; bool remark = FALSE; bool skip = FALSE; bool escape = FALSE; char *escaped = NULL; CURLcode ret = CURLE_OK; va_start(arg, tag); if(tag < CURLOPTTYPE_OBJECTPOINT) { /* Value is expected to be a long */ long lval = va_arg(arg, long); long defval = 0L; const NameValue *nv = NULL; for(nv=setopt_nv_CURLNONZERODEFAULTS; nv->name; nv++) { if(!strcmp(name, nv->name)) { defval = nv->value; break; /* found it */ } } snprintf(buf, sizeof(buf), "%ldL", lval); value = buf; ret = curl_easy_setopt(curl, tag, lval); if(lval == defval) skip = TRUE; } else if(tag < CURLOPTTYPE_OFF_T) { /* Value is some sort of object pointer */ void *pval = va_arg(arg, void *); /* function pointers are never printable */ if(tag >= CURLOPTTYPE_FUNCTIONPOINT) { if(pval) { value = "functionpointer"; remark = TRUE; } else skip = TRUE; } else if(pval && str) { value = (char *)pval; escape = TRUE; } else if(pval) { value = "objectpointer"; remark = TRUE; } else skip = TRUE; ret = curl_easy_setopt(curl, tag, pval); } else { /* Value is expected to be curl_off_t */ curl_off_t oval = va_arg(arg, curl_off_t); snprintf(buf, sizeof(buf), "(curl_off_t)%" CURL_FORMAT_CURL_OFF_T, oval); value = buf; ret = curl_easy_setopt(curl, tag, oval); if(!oval) skip = TRUE; } va_end(arg); if(config->libcurl && !skip && !ret) { /* we only use this for real if --libcurl was used */ if(remark) REM2("%s set to a %s", name, value); else { if(escape) { escaped = c_escape(value); if(!escaped) { ret = CURLE_OUT_OF_MEMORY; goto nomem; } CODE2("curl_easy_setopt(hnd, %s, \"%s\");", name, escaped); } else CODE2("curl_easy_setopt(hnd, %s, %s);", name, value); } } nomem: Curl_safefree(escaped); return ret; } #endif /* CURL_DISABLE_LIBCURL_OPTION */
729fd63cae13c458f08ee0fac4d3544ea4d33fb9
18ea53b46c8c8bc1db6ce35407efae6a4b55f2f0
/PlotLimits/plot_Signif.C
2fd1560727cb0767785fe197b2dffaf5e0674fa2
[]
no_license
cms-analysis/HiggsAnalysis-HZZ4l_Combination
f8e59b30ca9afeb85543d574da6366356c805628
fb17007de7c44b69bbf536476d4dff0159f5c668
refs/heads/master
2018-12-28T23:39:46.935139
2014-03-27T22:20:45
2014-03-27T22:20:45
13,672,553
0
6
null
null
null
null
UTF-8
C
false
false
8,896
c
#include "TH1F.h" #include "TNtuple.h" #include "TCanvas.h" #include <fstream> #include <iostream> #include <string> #include <iomanip> #include <sstream> #include <algorithm> #include <vector> #include "TCutG.h" #include "TFile.h" #include "TH2.h" #include "TPad.h" void getPvals(TFile *f, std::vector<double> &v_mh, std::vector<double> &v_obs); // --------- Inputs ------- // TString inputFile = "results_2D_Combined_CorScale/higgsCombineHZZ4L_PLP.root"; TString inputFileExp ="results_2D_Combined_CorScale/higgsCombineHZZ4L_PLPE.root"; const bool addExpected = true; string method = "PLP"; Double_t xLow = 99.9; Double_t xHigh = 601.0; Double_t yLow = 1e-5; Double_t yHigh = 1.0; TString xTitle = "Higgs boson mass, GeV"; TString yTitle = "local #hat{p}-value"; const bool logy = true; const bool logx = true; const bool grid = true; const bool gridOnTop = false; const bool points = true; const bool isTiny = false; int canvasX = 900; int canvasY = 700; const bool _DEBUG_ = false; string plotDir = "plots_TopUp"; string dimension = "2D"; int sqrts = 7; Double_t lumi = 5.051; // ----------------------- // using namespace std; void plot_Signif() { gROOT->ProcessLine(".x tdrstyle.cc"); gStyle->SetPadLeftMargin(0.16); TFile *inFile = new TFile(inputFile,"READ"); TFile *inFileExp; if(addExpected)inFileExp = new TFile(inputFileExp,"READ"); // ------------------- Get Values -------------------- // vector<double> mH, Val_obs; getPvals(inFile,mH,Val_obs); vector<double> v_masses, v_obs; for(unsigned int i = 0; i < mH.size(); i++) { v_masses.push_back( mH[i] ); v_obs.push_back(Val_obs[i]); cout << mH[i] << " " << Val_obs[i] << endl; } // ------------------ Get Expected -------------------- // vector<double> mH_exp, Val_exp; vector<double> v_masses_exp, v_exp; if(addExpected) { getPvals(inFileExp,mH_exp,Val_exp); for(unsigned int i = 0; i < mH_exp.size(); i++) { v_masses_exp.push_back( mH_exp[i] ); v_exp.push_back(Val_exp[i]); cout << mH_exp[i] << " " << Val_exp[i] << endl; } } int nMassEffExp=0; int nExcludedExp=0; const int sizeVExp = v_masses_exp.size(); double a_masses_exp[sizeVExp], a_exp[sizeVExp]; if(addExpected) { for(unsigned int n = 0; n < v_masses_exp.size(); n++) { a_masses_exp[nMassEffExp] = v_masses_exp[n]; a_exp[nMassEffExp] = v_exp[n]; nMassEffExp++; } } // ------------------- Change Values to Arrays -------------------- // int nMassEff=0; int nExcluded=0; const int sizeV = v_masses.size(); double a_masses[sizeV], a_obs[sizeV]; for(unsigned int m = 0; m < v_masses.size(); m++) { a_masses[nMassEff] = v_masses[m]; a_obs[nMassEff] = v_obs[m]; nMassEff++; } cout << "Excluded " << nExcluded << " sick mass points!" << endl; // ------------------- Draw -------------------- // TCanvas *c = new TCanvas("c","c",canvasX,canvasY); TGraph *grObs = new TGraph(nMassEff, a_masses, a_obs); grObs->SetLineWidth(3); grObs->SetLineColor(kBlue); grObs->SetMarkerStyle(20); grObs->SetMarkerSize(1.2); grObs->SetMarkerColor(kBlue); if(addExpected) { TGraph *grExp = new TGraph(nMassEffExp, a_masses_exp, a_exp); grExp->SetLineWidth(1); grExp->SetLineColor(kBlack); grExp->SetLineStyle(2); } char outfileName[192]; // --------------- Low Mass Zoom -------------- // TLegend * box2 = new TLegend(0.2,0.18,0.45,0.3); box2->SetFillColor(0); box2->SetTextFont(42); //box2->SetBorderSize(0); box2->AddEntry(grObs,"w/o m_{4l} uncertainties","l"); TPaveText *pt = new TPaveText(0.16,0.95,0.44,0.99,"NDC"); pt->SetFillColor(0); pt->SetTextFont(42); pt->AddText("CMS Preliminary 2012"); TPaveText *pt2 = new TPaveText(0.69,0.95,0.98,0.99,"NDC"); pt2->SetFillColor(0); pt2->SetTextFont(42); char lum[192]; sprintf(lum," #sqrt{s} = %i TeV, L = %.2f fb^{-1}",sqrts,lumi); pt2->AddText(lum); if(grid) c->SetGrid(); TH1F *hr = c->DrawFrame(105.0,yLow,180.0,yHigh); if(points)grObs->Draw("LP"); else grObs->Draw("L"); if(addExpected)grExp->Draw("L"); pt->Draw("SAME"); pt2->Draw("SAME"); hr->GetXaxis()->SetTitle(xTitle); hr->GetYaxis()->SetTitle(yTitle); hr->GetYaxis()->SetTitleOffset(1.2); if(logy)gPad->SetLogy(); c->Update(); if(gridOnTop)gPad->RedrawAxis("g"); TLine *l1=new TLine(); l1->SetLineStyle(2); l1->SetLineWidth(3.0); l1->SetLineColor(kRed); l1->DrawLine(105.0,ROOT::Math::normal_cdf_c(1, 1.0),180.0,ROOT::Math::normal_cdf_c(1, 1.0)); TLine *l2=new TLine(); l2->SetLineStyle(2); l2->SetLineWidth(3.0); l2->SetLineColor(kRed); l2->DrawLine(105.0,ROOT::Math::normal_cdf_c(2, 1.0),180.0,ROOT::Math::normal_cdf_c(2, 1.0)); TLine *l3=new TLine(); l3->SetLineStyle(2); l3->SetLineWidth(3.0); l3->SetLineColor(kRed); l3->DrawLine(105.0,ROOT::Math::normal_cdf_c(3, 1.0),180.0,ROOT::Math::normal_cdf_c(3, 1.0)); TLine *l4=new TLine(); l4->SetLineStyle(2); l4->SetLineWidth(3.0); l4->SetLineColor(kRed); l4->DrawLine(105.0,ROOT::Math::normal_cdf_c(4, 1.0),180.0,ROOT::Math::normal_cdf_c(4, 1.0)); //box2->Draw(); sprintf( outfileName,"%s/Pvals_%s_lowMass_%s_%iTeV.eps",plotDir.c_str(),method.c_str(),dimension.c_str(),sqrts); //c->SaveAs(outfileName); sprintf( outfileName,"%s/Pvals_%s_lowMass_%s_%iTeV.png",plotDir.c_str(),method.c_str(),dimension.c_str(),sqrts); //c->SaveAs(outfileName); // --------------- Full Mass Range ---------------- // TLegend * box3 = new TLegend(0.2,0.18,0.45,0.3); box3->SetFillColor(0); box3->SetTextFont(42); //box3->SetBorderSize(0); box3->AddEntry(grObs,"w/o m_{4l} uncertainties","l"); TCanvas *cl = new TCanvas("cl","cl",canvasX,canvasY); cl->cd(); if(grid) cl->SetGrid(); TH1F *hrl = cl->DrawFrame(xLow,yLow,xHigh,yHigh); if(points)grObs->Draw("LP"); else grObs->Draw("L"); if(addExpected)grExp->Draw("L"); pt->Draw("SAME"); pt2->Draw("SAME"); hrl->GetXaxis()->SetTitle(xTitle); hrl->GetYaxis()->SetTitle(yTitle); hrl->GetYaxis()->SetTitleOffset(1.2); if(logy)gPad->SetLogy(); if(logx) { hrl->GetXaxis()->SetMoreLogLabels(); hrl->GetXaxis()->SetNoExponent(); gPad->SetLogx(); TLine tick; tick.SetLineWidth(1); tick.SetLineColor(1); double dyh = yHigh * 0.08; double dyl = yLow * 0.08; //fabs(c1->PixeltoY(c1->VtoPixel(0.95)) - c1->PixeltoY(c1->VtoPixel(0.94))); if (gPad->GetLogy() && log(yHigh/yLow) > log(1e6)) { dyh *= 2; dyl *= 2; } if (gPad->GetLogy() == 0) { dyh = dyl = 0.01*(yHigh-yLow); } if (isTiny) { dyh *= 2; dyl *= 2; } for (int j = 100; j < 600; j += 10) { if (j > 400 && j % 20 == 10) continue; tick.DrawLine(j, yLow, j, yLow+(j % 100 == 0 ? 2*dyl : dyl)); tick.DrawLine(j, yHigh, j, yHigh-(j % 100 == 0 ? 2*dyh : dyh)); } } cl->Update(); hrl->GetXaxis()->SetRangeUser(xLow,xHigh); cl->Update(); //TLine *l1=new TLine(); //l1->SetLineStyle(3); //l1->SetLineWidth(2.0); //l1->SetLineColor(kRed); l1->DrawLine(xLow,ROOT::Math::normal_cdf_c(1, 1.0),xHigh,ROOT::Math::normal_cdf_c(1, 1.0)); //TLine *l2=new TLine(); //l2->SetLineStyle(3); //l2->SetLineWidth(2.0); //l2->SetLineColor(kRed); l2->DrawLine(xLow,ROOT::Math::normal_cdf_c(2, 1.0),xHigh,ROOT::Math::normal_cdf_c(2, 1.0)); //TLine *l3=new TLine(); //l3->SetLineStyle(3); //l3->SetLineWidth(2.0); //l3->SetLineColor(kRed); l3->DrawLine(xLow,ROOT::Math::normal_cdf_c(3, 1.0),xHigh,ROOT::Math::normal_cdf_c(3, 1.0)); //TLine *l4=new TLine(); //l4->SetLineStyle(3); //l4->SetLineWidth(2.0); //l4->SetLineColor(kRed); l4->DrawLine(xLow,ROOT::Math::normal_cdf_c(4, 1.0),xHigh,ROOT::Math::normal_cdf_c(4, 1.0)); if(gridOnTop)gPad->RedrawAxis("g"); //box3->Draw(); sprintf( outfileName,"%s/Pvals_%s_wholeMass_%s_%iTeV.eps",plotDir.c_str(),method.c_str(),dimension.c_str(),sqrts); //cl->SaveAs(outfileName); sprintf( outfileName,"%s/Pvals_%s_wholeMass_%s_%iTeV.png",plotDir.c_str(),method.c_str(),dimension.c_str(),sqrts); //cl->SaveAs(outfileName); } void getPvals(TFile *f, std::vector<double> &v_mh,std::vector<double> &v_obs) { TTree *tree =(TTree*)f->Get("limit"); double mh,limit; float quant; tree->SetBranchAddress("mh",&mh); tree->SetBranchAddress("limit",&limit); tree->SetBranchAddress("quantileExpected",&quant); for(int i=0;i<tree->GetEntries();i++) { tree->GetEntry(i); double tmpMH = mh; if( fabs(floor(tmpMH)-mh) == 0.5) continue; if(_DEBUG_)cout << "mH: " << mh << " limit: " << limit << " quantileExpected: " << quant << endl; if(quant>-1.01&&quant<-0.99) { v_obs.push_back(limit); v_mh.push_back(mh); } else {cout<<"Error! Unknown Quantile = " << quant << endl;} } }
b1f5984f8b03e071affa11b9e5566be7550a4c76
6f758e573c9d733bcbcb8c8e578309999de60c96
/GL/Paint_1.1/1.2/1.2.c
f007326b4edcd343d549d1eb90b2fdf095ffb19a
[]
no_license
XuanmoFeng/PaintTable
ddbbea19d91eff8b06100612f613cea5f1d9e5ed
5a66c1ab7c53640c76c80a047580f28666b7afab
refs/heads/master
2020-05-20T19:02:48.339276
2017-03-20T15:57:40
2017-03-20T15:57:40
84,509,866
0
0
null
null
null
null
UTF-8
C
false
false
7,417
c
#include<gtk-2.0/gtk/gtk.h> #include<glib-2.0/glib.h> #include</usr/include/gtk-2.0/gdk/gdkkeysyms.h> #define EVENT_METHOD(i,x) GTK_WIDGET_GET_CLASS(i)->x GtkWidget *coloresldlg =NULL; GtkWidget *drawingarea =NULL; GdkColor color; void CreateDir() {//建文件目录 GtkWidget*dialog; gchar *filename; gint result; dialog=gtk_file_chooser_dialog_new("创建新目录",NULL, GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER, GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK,NULL); result=gtk_dialog_run(GTK_DIALOG(dialog)); if(result==GTK_RESPONSE_OK) { filename=gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); g_print("已经创建一个新目录:%s\n",filename); } gtk_widget_destroy(dialog); } GtkWidget* LableTool(GtkWidget *MTbox) { // GtkWidget *window1;//标签菜单 // window1=gtk_window_new(GTK_WINDOW_TOPLEVEL); // gtk_widget_show(window1); //g_signal_connect(G_OBJECT(window1),"delete_event",G_CALLBACK(gtk_main_quit),NULL); GtkAccelGroup *accel_group; accel_group=gtk_accel_group_new(); GtkWidget* menubar1; menubar1=gtk_menu_bar_new(); // gtk_widget_show(menubar1); //gtk_window_set_default_size(GTK_WINDOW(menubar1),40,300); // gtk_container_add(GTK_CONTAINER(window1),menubar1); gtk_box_pack_start(GTK_BOX(MTbox),menubar1,FALSE,FALSE,3); GtkWidget*menuitem1; menuitem1=gtk_menu_item_new_with_mnemonic("文件(_F)"); // gtk_widget_show(menuitem1); gtk_container_add(GTK_CONTAINER(menubar1),menuitem1); GtkWidget*menuitem2; menuitem2=gtk_menu_item_new_with_mnemonic("编辑(_C)"); // gtk_widget_show(menuitem2); gtk_container_add(GTK_CONTAINER(menubar1),menuitem2); GtkWidget*menuitem1_menu; menuitem1_menu=gtk_menu_new(); gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem1),menuitem1_menu); GtkWidget* open1; GtkWidget* save1; GtkWidget* exit1; GtkWidget* close1; open1=gtk_menu_item_new_with_mnemonic("打开"); // gtk_widget_show(open1); gtk_container_add(GTK_CONTAINER(menuitem1_menu),open1); gtk_widget_add_accelerator(open1,"activate",accel_group,GDK_o, (GdkModifierType)GDK_CONTROL_MASK,GTK_ACCEL_VISIBLE); save1=gtk_menu_item_new_with_mnemonic("保存"); // gtk_widget_show(save1); gtk_container_add(GTK_CONTAINER(menuitem1_menu),save1); gtk_widget_add_accelerator(save1,"activate",accel_group,GDK_s, (GdkModifierType)GDK_CONTROL_MASK,GTK_ACCEL_VISIBLE); close1=gtk_menu_item_new_with_mnemonic("退出"); // gtk_widget_show(close1); gtk_container_add(GTK_CONTAINER(menuitem1_menu),close1); gtk_widget_add_accelerator(close1,"activate",accel_group,GDK_c, (GdkModifierType)GDK_CONTROL_MASK,GTK_ACCEL_VISIBLE); exit1 =gtk_menu_item_new_with_mnemonic("关闭"); // gtk_widget_show(exit1); gtk_container_add(GTK_CONTAINER(menuitem1_menu),exit1); gtk_widget_add_accelerator(exit1,"activate",accel_group,GDK_x, (GdkModifierType)GDK_CONTROL_MASK,GTK_ACCEL_VISIBLE); // gtk_main(); // menubar1=gtk_menu_bar_new(); //` return menubar1; } /*GtkWidget* creat_menu(void) { GtkWidget*menu; GtkWidget*copy; GtkWidget*cut; GtkWidget*delte; GtkAccelGroup*accel_group; accel_group =gtk_accel_group_new; menu =gtk_menu_new; c }*/ void color_changed_cb(GtkWidget *widgt,GtkColorSelection *colorsel) { GdkColor ncolor; gtk_color_selection_get_current_color(colorsel,&ncolor); gtk_widget_modify_bg(drawingarea,GTK_STATE_NORMAL,&ncolor); } gint area_event(GtkWidget *widgt, GdkEvent *event, gpointer client_data) { gint handled = FALSE; gint response; GtkColorSelection *colorsel; if(event->type ==GDK_BUTTON_PRESS) { handled=TRUE; if(coloresldlg==NULL) { coloresldlg =gtk_color_selection_dialog_new("颜色选择对话框"); } colorsel =GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG (coloresldlg)->colorsel); gtk_color_selection_set_previous_color(colorsel,&color); gtk_color_selection_set_current_color(colorsel,&color); gtk_color_selection_set_has_palette(colorsel,TRUE); g_signal_connect(G_OBJECT(colorsel),"color_changed",G_CALLBACK(color_changed_cb),(gpointer)colorsel); response= gtk_dialog_run(GTK_DIALOG(coloresldlg)); if(response ==GTK_RESPONSE_OK) { gtk_color_selection_set_current_color(colorsel,&color); } else { gtk_widget_modify_bg(drawingarea,GTK_STATE_NORMAL,&color); } gtk_widget_hide(coloresldlg); } return handled; } gint destroy_window(GtkWidget *wiget, GdkEvent *event, gpointer data) { gtk_main_quit(); return TRUE; } GtkWidget*ColorTest() { GtkWidget *window; window =gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(window),"颜色选择测试"); gtk_window_set_policy(GTK_WINDOW(window),TRUE,TRUE,TRUE); g_signal_connect(GTK_OBJECT(window),"delete_event",G_CALLBACK(destroy_window),(gpointer)window); drawingarea=gtk_drawing_area_new(); color.red =0; color.blue=65535; color.green=0; gtk_widget_modify_bg(drawingarea,GTK_STATE_NORMAL,&color); gtk_widget_set_size_request(GTK_WIDGET(drawingarea),200,200); gtk_widget_set_events(drawingarea,GDK_BUTTON_PRESS_MASK); g_signal_connect(GTK_OBJECT(drawingarea),"event",GTK_SIGNAL_FUNC(area_event),(gpointer)drawingarea); gtk_container_add(GTK_CONTAINER(window),drawingarea); gtk_widget_show(drawingarea); gtk_widget_show(window); gtk_main(); } gint main(int argc,char *argv[]) { GtkWidget *MainWin,*MTbox; GtkWidget *RulerH,*RulerV,*table,*area; gtk_init(&argc,&argv); MainWin=gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(MainWin),"HAAPY PAINT"); gtk_window_set_default_size(GTK_WINDOW(MainWin),400,300); gtk_window_set_position(GTK_WINDOW(MainWin),GTK_WIN_POS_CENTER); gtk_container_set_border_width(GTK_CONTAINER(MainWin),0); GtkWidget *Menubox; MTbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(MainWin),MTbox); //LableTool(MTbox); GtkWidget *PaintMap; PaintMap =gtk_button_new_with_label("jjj"); gtk_box_pack_start(GTK_BOX(MTbox),PaintMap,FALSE,FALSE,0); // table =gtk_table_new(3,2,FALSE); gtk_box_pack_start(GTK_BOX(MTbox),table,TRUE,TRUE,3); area=gtk_drawing_area_new(); gtk_widget_set_size_request(GTK_WIDGET(area),600,400); gtk_table_attach(GTK_TABLE(table),area,1,2,1,2,GTK_EXPAND|GTK_FILL,GTK_FILL,0,0); gtk_widget_set_events(area,GDK_POINTER_MOTION_MASK|GDK_POINTER_MOTION_HINT_MASK); RulerH=gtk_hruler_new(); gtk_ruler_set_metric(GTK_RULER(RulerH),GTK_PIXELS); gtk_ruler_set_range(GTK_RULER(RulerH),7,13,0,20); g_signal_connect_swapped(G_OBJECT(area),"motion_notify_event",G_CALLBACK(EVENT_METHOD(RulerH,motion_notify_event)),RulerH); gtk_table_attach(GTK_TABLE(table),RulerH,1,2,0,1,GTK_EXPAND|GTK_SHRINK|GTK_FILL,GTK_FILL,0,0); RulerV=gtk_vruler_new(); gtk_ruler_set_metric(GTK_RULER(RulerV),GTK_PIXELS); gtk_ruler_set_range(GTK_RULER(RulerV),0,400,10,400); g_signal_connect_swapped(G_OBJECT(area),"motion_notify_event",G_CALLBACK(EVENT_METHOD(RulerV,motion_notify_event)),RulerV); gtk_table_attach(GTK_TABLE(table),RulerV,0,1,1,2,GTK_FILL,GTK_EXPAND|GTK_SHRINK|GTK_FILL,0,0); g_signal_connect(GTK_OBJECT(MainWin),"delete_event",G_CALLBACK(destroy_window),(gpointer)MainWin); g_signal_connect(GTK_OBJECT(MainWin),"delete_event",G_CALLBACK(destroy_window),(gpointer)MainWin); gtk_widget_show_all(MainWin); //LableTool(); gtk_main(); return 0; }
224169fae2d23f6b783c042ba94345f60a5bb02a
4592b4d26f19bcc1c87d663eec0840492df4fe2d
/parser/parser/parser.php5.c
cb0ebbcaf9a952a1ae243751c30d13df37db6c5a
[ "MIT" ]
permissive
v3u3i87/zephir
f8dde99855ac4f4466c1af33720505d869d198a0
2fba6d7a44783ba73359add7a107993ff08e9d59
refs/heads/master
2020-12-13T22:34:56.193199
2016-07-04T15:08:56
2016-07-04T15:08:56
null
0
0
null
null
null
null
UTF-8
C
false
false
385,372
c
/** The author disclaims copyright to this source code. */ /* First off, code is include which follows the "include" declaration ** in the input file. */ #include <stdio.h> #line 58 "parser.php5.lemon" #include "parser.php5.inc.h" #line 11 "parser.php5.c" /* Next is all token values, in a form suitable for use by makeheaders. ** This section will be null unless lemon is run with the -m switch. */ /* ** These constants (all generated automatically by the parser generator) ** specify the various kinds of tokens (terminals) that the parser ** understands. ** ** Each symbol here is a terminal symbol in the grammar. */ /* Make sure the INTERFACE macro is defined. */ #ifndef INTERFACE # define INTERFACE 1 #endif /* The next thing included is series of defines which control ** various aspects of the generated parser. ** YYCODETYPE is the data type used for storing terminal ** and nonterminal numbers. "unsigned char" is ** used if there are fewer than 250 terminals ** and nonterminals. "int" is used otherwise. ** YYNOCODE is a number of type YYCODETYPE which corresponds ** to no legal terminal or nonterminal number. This ** number is used to fill in empty slots of the hash ** table. ** YYFALLBACK If defined, this indicates that one or more tokens ** have fall-back values which should be used if the ** original value of the token will not parse. ** YYACTIONTYPE is the data type used for storing terminal ** and nonterminal numbers. "unsigned char" is ** used if there are fewer than 250 rules and ** states combined. "int" is used otherwise. ** xx_TOKENTYPE is the data type used for minor tokens given ** directly to the parser from the tokenizer. ** YYMINORTYPE is the data type used for all minor tokens. ** This is typically a union of many types, one of ** which is xx_TOKENTYPE. The entry in the union ** for base tokens is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. ** xx_ARG_SDECL A static variable declaration for the %extra_argument ** xx_ARG_PDECL A parameter declaration for the %extra_argument ** xx_ARG_STORE Code to store %extra_argument into yypParser ** xx_ARG_FETCH Code to extract %extra_argument from yypParser ** YYNSTATE the combined number of states. ** YYNRULE the number of rules in the grammar ** YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. */ #define YYCODETYPE unsigned char #define YYNOCODE 227 #define YYACTIONTYPE unsigned short int #define xx_TOKENTYPE xx_parser_token* typedef union { xx_TOKENTYPE yy0; zval* yy132; int yy453; } YYMINORTYPE; #define YYSTACKDEPTH 100 #define xx_ARG_SDECL xx_parser_status *status; #define xx_ARG_PDECL ,xx_parser_status *status #define xx_ARG_FETCH xx_parser_status *status = yypParser->status #define xx_ARG_STORE yypParser->status = status #define YYNSTATE 947 #define YYNRULE 459 #define YYERRORSYMBOL 127 #define YYERRSYMDT yy453 #define YY_NO_ACTION (YYNSTATE+YYNRULE+2) #define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) #define YY_ERROR_ACTION (YYNSTATE+YYNRULE) /* Next are that tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement ** functions that take a state number and lookahead value and return an ** action integer. ** ** Suppose the action integer is N. Then the action is determined as ** follows ** ** 0 <= N < YYNSTATE Shift N. That is, push the lookahead ** token onto the stack and goto state N. ** ** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. ** ** N == YYNSTATE+YYNRULE A syntax error has occurred. ** ** N == YYNSTATE+YYNRULE+1 The parser accepts its input. ** ** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused ** slots in the yy_action[] table. ** ** The action table is constructed as a single large table named yy_action[]. ** Given state S and lookahead X, the action is computed as ** ** yy_action[ yy_shift_ofst[S] + X ] ** ** If the index value yy_shift_ofst[S]+X is out of range or if the value ** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] ** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table ** and that yy_default[S] should be used instead. ** ** The formula above is for computing the action when the lookahead is ** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a reduce action) then the yy_reduce_ofst[] array is used in place of ** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of ** YY_SHIFT_USE_DFLT. ** ** The following are the tables generated in this section: ** ** yy_action[] A single table containing all actions. ** yy_lookahead[] A table containing the lookahead for each entry in ** yy_action. Used to detect hash collisions. ** yy_shift_ofst[] For each state, the offset into yy_action for ** shifting terminals. ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. */ static YYACTIONTYPE yy_action[] = { /* 0 */ 236, 254, 897, 414, 469, 420, 400, 128, 131, 892, /* 10 */ 133, 135, 143, 137, 139, 141, 898, 924, 189, 161, /* 20 */ 163, 683, 684, 688, 689, 108, 151, 409, 130, 125, /* 30 */ 114, 200, 123, 671, 657, 205, 120, 222, 102, 105, /* 40 */ 99, 603, 216, 723, 217, 193, 57, 488, 486, 247, /* 50 */ 169, 229, 32, 758, 243, 245, 244, 204, 541, 518, /* 60 */ 219, 773, 215, 597, 592, 596, 212, 547, 563, 478, /* 70 */ 487, 496, 499, 490, 493, 502, 508, 505, 514, 511, /* 80 */ 729, 481, 731, 58, 60, 62, 199, 774, 72, 775, /* 90 */ 773, 197, 83, 87, 92, 347, 151, 358, 130, 125, /* 100 */ 365, 243, 245, 244, 204, 709, 355, 208, 589, 246, /* 110 */ 705, 450, 465, 472, 475, 111, 207, 209, 210, 211, /* 120 */ 213, 214, 519, 236, 489, 771, 601, 469, 481, 809, /* 130 */ 128, 131, 811, 913, 919, 807, 918, 903, 801, 197, /* 140 */ 920, 189, 796, 879, 194, 773, 491, 486, 108, 243, /* 150 */ 245, 244, 204, 114, 200, 123, 627, 246, 205, 120, /* 160 */ 222, 102, 105, 99, 195, 216, 273, 217, 193, 57, /* 170 */ 609, 492, 247, 169, 229, 650, 731, 243, 245, 244, /* 180 */ 204, 608, 518, 730, 773, 215, 591, 592, 596, 212, /* 190 */ 77, 319, 478, 487, 496, 499, 490, 493, 502, 508, /* 200 */ 505, 514, 511, 161, 163, 278, 58, 60, 62, 527, /* 210 */ 151, 72, 130, 125, 692, 83, 87, 92, 347, 383, /* 220 */ 358, 392, 400, 365, 371, 870, 126, 79, 869, 651, /* 230 */ 208, 272, 623, 865, 450, 465, 472, 475, 111, 207, /* 240 */ 209, 210, 211, 213, 214, 519, 236, 481, 603, 378, /* 250 */ 469, 431, 400, 128, 131, 3, 4, 5, 6, 7, /* 260 */ 8, 9, 10, 406, 189, 372, 373, 374, 375, 376, /* 270 */ 377, 108, 271, 280, 275, 279, 114, 200, 123, 494, /* 280 */ 486, 205, 120, 222, 102, 105, 99, 429, 216, 197, /* 290 */ 495, 193, 57, 199, 404, 247, 169, 229, 699, 243, /* 300 */ 245, 244, 204, 814, 360, 518, 233, 246, 215, 813, /* 310 */ 325, 773, 212, 497, 486, 478, 487, 496, 499, 490, /* 320 */ 493, 502, 508, 505, 514, 511, 500, 486, 885, 58, /* 330 */ 60, 62, 481, 891, 72, 130, 125, 197, 83, 87, /* 340 */ 92, 347, 886, 358, 366, 449, 365, 243, 245, 244, /* 350 */ 204, 194, 232, 208, 240, 246, 408, 450, 465, 472, /* 360 */ 475, 111, 207, 209, 210, 211, 213, 214, 519, 236, /* 370 */ 455, 320, 336, 469, 251, 498, 128, 131, 451, 456, /* 380 */ 243, 245, 244, 204, 726, 316, 728, 189, 795, 301, /* 390 */ 731, 297, 76, 654, 108, 796, 294, 775, 773, 114, /* 400 */ 200, 123, 503, 486, 205, 120, 222, 102, 105, 99, /* 410 */ 561, 216, 197, 925, 193, 57, 481, 228, 247, 169, /* 420 */ 229, 554, 243, 245, 244, 204, 370, 250, 518, 633, /* 430 */ 246, 215, 440, 506, 486, 212, 368, 228, 478, 487, /* 440 */ 496, 499, 490, 493, 502, 508, 505, 514, 511, 328, /* 450 */ 481, 324, 58, 60, 62, 227, 321, 72, 74, 501, /* 460 */ 197, 83, 87, 92, 347, 702, 358, 509, 486, 365, /* 470 */ 243, 245, 244, 204, 405, 234, 208, 585, 246, 367, /* 480 */ 450, 465, 472, 475, 111, 207, 209, 210, 211, 213, /* 490 */ 214, 519, 236, 504, 877, 812, 469, 881, 903, 128, /* 500 */ 131, 197, 807, 796, 879, 940, 773, 943, 512, 486, /* 510 */ 189, 243, 245, 244, 204, 292, 305, 108, 226, 246, /* 520 */ 75, 302, 114, 200, 123, 68, 657, 205, 120, 222, /* 530 */ 102, 105, 99, 724, 216, 197, 718, 193, 57, 481, /* 540 */ 441, 247, 169, 229, 540, 243, 245, 244, 204, 721, /* 550 */ 382, 518, 572, 246, 215, 481, 403, 79, 212, 651, /* 560 */ 326, 478, 487, 496, 499, 490, 493, 502, 508, 505, /* 570 */ 514, 511, 515, 486, 905, 58, 60, 62, 719, 891, /* 580 */ 72, 797, 507, 197, 83, 87, 92, 347, 906, 358, /* 590 */ 939, 721, 365, 243, 245, 244, 204, 724, 510, 208, /* 600 */ 606, 246, 445, 450, 465, 472, 475, 111, 207, 209, /* 610 */ 210, 211, 213, 214, 519, 236, 914, 765, 917, 469, /* 620 */ 918, 903, 128, 131, 197, 807, 774, 879, 927, 773, /* 630 */ 933, 782, 791, 189, 243, 245, 244, 204, 313, 807, /* 640 */ 108, 620, 246, 310, 250, 114, 200, 123, 778, 787, /* 650 */ 205, 120, 222, 102, 105, 99, 694, 216, 197, 481, /* 660 */ 193, 57, 481, 17, 247, 169, 229, 706, 243, 245, /* 670 */ 244, 204, 562, 250, 518, 598, 246, 215, 567, 1399, /* 680 */ 393, 212, 741, 399, 478, 487, 496, 499, 490, 493, /* 690 */ 502, 508, 505, 514, 511, 67, 668, 263, 58, 60, /* 700 */ 62, 736, 513, 72, 739, 516, 16, 83, 87, 92, /* 710 */ 347, 768, 358, 21, 915, 365, 881, 903, 742, 663, /* 720 */ 657, 745, 208, 879, 228, 773, 450, 465, 472, 475, /* 730 */ 111, 207, 209, 210, 211, 213, 214, 519, 236, 380, /* 740 */ 897, 763, 469, 415, 766, 128, 131, 197, 807, 243, /* 750 */ 245, 244, 204, 804, 898, 221, 189, 243, 245, 244, /* 760 */ 204, 679, 566, 108, 578, 246, 29, 332, 114, 200, /* 770 */ 123, 278, 329, 205, 120, 222, 102, 105, 99, 769, /* 780 */ 216, 197, 772, 193, 57, 557, 228, 247, 169, 229, /* 790 */ 553, 243, 245, 244, 204, 22, 228, 518, 565, 246, /* 800 */ 215, 15, 944, 805, 212, 797, 797, 478, 487, 496, /* 810 */ 499, 490, 493, 502, 508, 505, 514, 511, 238, 249, /* 820 */ 220, 58, 60, 62, 573, 421, 72, 315, 399, 228, /* 830 */ 83, 87, 92, 347, 579, 358, 64, 830, 365, 274, /* 840 */ 275, 279, 826, 320, 336, 208, 555, 228, 770, 450, /* 850 */ 465, 472, 475, 111, 207, 209, 210, 211, 213, 214, /* 860 */ 519, 236, 624, 432, 761, 469, 399, 586, 128, 131, /* 870 */ 197, 681, 695, 684, 688, 689, 893, 900, 20, 189, /* 880 */ 243, 245, 244, 204, 844, 590, 108, 614, 246, 840, /* 890 */ 228, 114, 200, 123, 863, 97, 205, 120, 222, 102, /* 900 */ 105, 99, 760, 216, 644, 250, 193, 57, 453, 228, /* 910 */ 247, 169, 229, 708, 243, 245, 244, 204, 320, 336, /* 920 */ 518, 555, 228, 215, 630, 926, 934, 212, 241, 797, /* 930 */ 478, 487, 496, 499, 490, 493, 502, 508, 505, 514, /* 940 */ 511, 314, 767, 832, 58, 60, 62, 599, 278, 72, /* 950 */ 746, 452, 391, 83, 87, 92, 347, 190, 358, 389, /* 960 */ 607, 365, 243, 245, 244, 204, 320, 336, 208, 555, /* 970 */ 228, 237, 450, 465, 472, 475, 111, 207, 209, 210, /* 980 */ 211, 213, 214, 519, 236, 380, 846, 18, 469, 407, /* 990 */ 250, 128, 131, 228, 773, 243, 245, 244, 204, 883, /* 1000 */ 380, 340, 189, 312, 426, 19, 337, 773, 615, 108, /* 1010 */ 243, 245, 244, 204, 114, 200, 123, 831, 277, 205, /* 1020 */ 120, 222, 102, 105, 99, 895, 216, 594, 864, 193, /* 1030 */ 57, 621, 228, 247, 169, 229, 552, 243, 245, 244, /* 1040 */ 204, 320, 336, 518, 555, 228, 215, 862, 595, 436, /* 1050 */ 212, 481, 858, 478, 487, 496, 499, 490, 493, 502, /* 1060 */ 508, 505, 514, 511, 659, 701, 647, 58, 60, 62, /* 1070 */ 628, 311, 72, 397, 894, 644, 83, 87, 92, 347, /* 1080 */ 693, 358, 327, 634, 365, 243, 245, 244, 204, 320, /* 1090 */ 336, 208, 555, 825, 480, 450, 465, 472, 475, 111, /* 1100 */ 207, 209, 210, 211, 213, 214, 519, 236, 876, 740, /* 1110 */ 928, 469, 848, 872, 128, 131, 681, 695, 684, 688, /* 1120 */ 689, 351, 551, 838, 807, 189, 837, 824, 548, 930, /* 1130 */ 823, 833, 108, 320, 336, 819, 555, 114, 200, 123, /* 1140 */ 293, 309, 205, 120, 222, 102, 105, 99, 849, 216, /* 1150 */ 380, 250, 193, 57, 411, 610, 247, 169, 229, 711, /* 1160 */ 243, 245, 244, 204, 27, 888, 518, 700, 921, 215, /* 1170 */ 891, 797, 696, 212, 354, 550, 478, 487, 496, 499, /* 1180 */ 490, 493, 502, 508, 505, 514, 511, 611, 908, 344, /* 1190 */ 58, 60, 62, 891, 359, 72, 479, 486, 197, 83, /* 1200 */ 87, 92, 347, 931, 358, 549, 797, 365, 243, 245, /* 1210 */ 244, 204, 674, 657, 208, 264, 574, 28, 450, 465, /* 1220 */ 472, 475, 111, 207, 209, 210, 211, 213, 214, 519, /* 1230 */ 236, 484, 670, 668, 469, 929, 612, 128, 131, 134, /* 1240 */ 681, 695, 684, 688, 689, 330, 127, 196, 189, 243, /* 1250 */ 245, 244, 204, 543, 263, 108, 856, 442, 96, 855, /* 1260 */ 114, 200, 123, 941, 851, 205, 120, 222, 102, 105, /* 1270 */ 99, 542, 216, 380, 443, 193, 57, 422, 331, 247, /* 1280 */ 169, 229, 713, 243, 245, 244, 204, 703, 308, 518, /* 1290 */ 714, 13, 215, 61, 276, 710, 212, 744, 191, 478, /* 1300 */ 487, 496, 499, 490, 493, 502, 508, 505, 514, 511, /* 1310 */ 446, 672, 88, 58, 60, 62, 333, 932, 72, 78, /* 1320 */ 12, 644, 83, 87, 92, 347, 307, 358, 186, 390, /* 1330 */ 365, 243, 245, 244, 204, 447, 738, 208, 483, 656, /* 1340 */ 334, 450, 465, 472, 475, 111, 207, 209, 210, 211, /* 1350 */ 213, 214, 519, 236, 380, 625, 626, 469, 419, 288, /* 1360 */ 128, 131, 387, 184, 243, 245, 244, 204, 734, 306, /* 1370 */ 733, 189, 335, 243, 245, 244, 204, 691, 108, 84, /* 1380 */ 529, 81, 631, 114, 200, 123, 727, 632, 205, 120, /* 1390 */ 222, 102, 105, 99, 304, 216, 380, 528, 193, 57, /* 1400 */ 430, 253, 247, 169, 229, 350, 243, 245, 244, 204, /* 1410 */ 938, 287, 518, 685, 202, 215, 338, 587, 807, 212, /* 1420 */ 722, 901, 478, 487, 496, 499, 490, 493, 502, 508, /* 1430 */ 505, 514, 511, 59, 339, 80, 58, 60, 62, 458, /* 1440 */ 291, 72, 224, 887, 644, 83, 87, 92, 347, 889, /* 1450 */ 358, 890, 341, 365, 243, 245, 244, 204, 248, 460, /* 1460 */ 208, 89, 1018, 704, 450, 465, 472, 475, 111, 207, /* 1470 */ 209, 210, 211, 213, 214, 519, 236, 664, 342, 682, /* 1480 */ 469, 282, 343, 128, 131, 136, 681, 695, 684, 688, /* 1490 */ 689, 1019, 896, 462, 189, 243, 245, 244, 204, 942, /* 1500 */ 720, 108, 464, 899, 283, 345, 114, 200, 123, 902, /* 1510 */ 646, 205, 120, 222, 102, 105, 99, 303, 216, 380, /* 1520 */ 717, 193, 57, 379, 716, 247, 169, 229, 534, 243, /* 1530 */ 245, 244, 204, 648, 231, 518, 911, 300, 215, 935, /* 1540 */ 201, 907, 212, 909, 230, 478, 487, 496, 499, 490, /* 1550 */ 493, 502, 508, 505, 514, 511, 348, 910, 63, 58, /* 1560 */ 60, 62, 299, 652, 72, 284, 912, 644, 83, 87, /* 1570 */ 92, 347, 93, 358, 298, 482, 365, 243, 245, 244, /* 1580 */ 204, 296, 353, 208, 295, 937, 576, 450, 465, 472, /* 1590 */ 475, 111, 207, 209, 210, 211, 213, 214, 519, 236, /* 1600 */ 455, 69, 794, 469, 793, 418, 128, 131, 643, 454, /* 1610 */ 243, 245, 244, 204, 792, 799, 290, 189, 243, 245, /* 1620 */ 244, 204, 945, 790, 108, 800, 802, 369, 98, 114, /* 1630 */ 200, 123, 803, 581, 205, 120, 222, 102, 105, 99, /* 1640 */ 322, 216, 380, 675, 193, 57, 384, 806, 247, 169, /* 1650 */ 229, 866, 243, 245, 244, 204, 582, 583, 518, 789, /* 1660 */ 788, 215, 947, 810, 1400, 212, 187, 413, 478, 487, /* 1670 */ 496, 499, 490, 493, 502, 508, 505, 514, 511, 785, /* 1680 */ 570, 658, 58, 60, 62, 784, 783, 72, 323, 816, /* 1690 */ 644, 83, 87, 92, 347, 239, 358, 817, 588, 365, /* 1700 */ 243, 245, 244, 204, 569, 319, 208, 781, 780, 871, /* 1710 */ 450, 465, 472, 475, 111, 207, 209, 210, 211, 213, /* 1720 */ 214, 519, 236, 568, 673, 779, 469, 25, 1401, 128, /* 1730 */ 131, 637, 681, 695, 684, 688, 689, 425, 410, 922, /* 1740 */ 189, 243, 245, 244, 204, 593, 318, 108, 352, 24, /* 1750 */ 687, 687, 114, 200, 123, 687, 687, 205, 120, 222, /* 1760 */ 102, 105, 99, 687, 216, 380, 687, 193, 57, 448, /* 1770 */ 687, 247, 169, 229, 95, 243, 245, 244, 204, 687, /* 1780 */ 687, 518, 687, 687, 215, 687, 687, 687, 212, 687, /* 1790 */ 687, 478, 487, 496, 499, 490, 493, 502, 508, 505, /* 1800 */ 514, 511, 687, 687, 73, 58, 60, 62, 687, 687, /* 1810 */ 72, 687, 687, 644, 83, 87, 92, 347, 687, 358, /* 1820 */ 687, 687, 365, 243, 245, 244, 204, 687, 687, 208, /* 1830 */ 687, 687, 737, 450, 465, 472, 475, 111, 207, 209, /* 1840 */ 210, 211, 213, 214, 519, 236, 687, 687, 687, 469, /* 1850 */ 687, 687, 128, 131, 530, 681, 695, 684, 688, 689, /* 1860 */ 687, 687, 687, 189, 243, 245, 244, 204, 687, 687, /* 1870 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 1880 */ 205, 120, 222, 102, 105, 99, 687, 216, 380, 687, /* 1890 */ 193, 57, 388, 687, 247, 169, 229, 666, 243, 245, /* 1900 */ 244, 204, 687, 687, 518, 687, 687, 215, 687, 687, /* 1910 */ 687, 212, 687, 687, 478, 487, 496, 499, 490, 493, /* 1920 */ 502, 508, 505, 514, 511, 687, 687, 687, 58, 60, /* 1930 */ 62, 687, 687, 72, 687, 687, 140, 83, 87, 92, /* 1940 */ 347, 687, 358, 687, 687, 365, 243, 245, 244, 204, /* 1950 */ 687, 687, 208, 687, 687, 743, 450, 465, 472, 475, /* 1960 */ 111, 207, 209, 210, 211, 213, 214, 519, 236, 687, /* 1970 */ 687, 687, 469, 687, 687, 128, 131, 103, 681, 695, /* 1980 */ 684, 688, 689, 687, 687, 687, 189, 243, 245, 244, /* 1990 */ 204, 687, 687, 108, 687, 687, 687, 687, 114, 200, /* 2000 */ 123, 687, 687, 205, 120, 222, 102, 105, 99, 687, /* 2010 */ 216, 380, 687, 193, 57, 444, 687, 247, 169, 229, /* 2020 */ 861, 243, 245, 244, 204, 687, 687, 518, 687, 687, /* 2030 */ 215, 687, 687, 687, 212, 687, 687, 478, 487, 496, /* 2040 */ 499, 490, 493, 502, 508, 505, 514, 511, 687, 687, /* 2050 */ 687, 58, 60, 62, 687, 687, 72, 687, 687, 148, /* 2060 */ 83, 87, 92, 347, 687, 358, 687, 687, 365, 243, /* 2070 */ 245, 244, 204, 687, 687, 208, 687, 687, 857, 450, /* 2080 */ 465, 472, 475, 111, 207, 209, 210, 211, 213, 214, /* 2090 */ 519, 236, 687, 687, 687, 469, 687, 687, 128, 131, /* 2100 */ 106, 681, 695, 684, 688, 689, 687, 687, 687, 189, /* 2110 */ 243, 245, 244, 204, 687, 687, 108, 687, 687, 687, /* 2120 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 2130 */ 105, 99, 687, 216, 380, 687, 193, 57, 394, 687, /* 2140 */ 247, 169, 229, 678, 243, 245, 244, 204, 687, 687, /* 2150 */ 518, 687, 687, 215, 687, 687, 687, 212, 687, 687, /* 2160 */ 478, 487, 496, 499, 490, 493, 502, 508, 505, 514, /* 2170 */ 511, 687, 687, 687, 58, 60, 62, 687, 687, 72, /* 2180 */ 687, 687, 166, 83, 87, 92, 347, 687, 358, 687, /* 2190 */ 687, 365, 243, 245, 244, 204, 687, 687, 208, 687, /* 2200 */ 687, 687, 450, 465, 472, 475, 111, 207, 209, 210, /* 2210 */ 211, 213, 214, 519, 236, 380, 687, 687, 469, 437, /* 2220 */ 687, 128, 131, 118, 687, 243, 245, 244, 204, 687, /* 2230 */ 687, 687, 189, 243, 245, 244, 204, 687, 687, 108, /* 2240 */ 687, 687, 687, 687, 114, 200, 123, 687, 687, 205, /* 2250 */ 120, 222, 102, 105, 99, 687, 216, 380, 687, 193, /* 2260 */ 57, 398, 687, 247, 169, 229, 30, 243, 245, 244, /* 2270 */ 204, 687, 687, 518, 687, 687, 215, 687, 687, 687, /* 2280 */ 212, 687, 687, 478, 487, 496, 499, 490, 493, 502, /* 2290 */ 508, 505, 514, 511, 687, 687, 687, 58, 60, 62, /* 2300 */ 687, 687, 72, 687, 687, 604, 83, 87, 92, 347, /* 2310 */ 687, 358, 687, 687, 365, 243, 245, 244, 204, 687, /* 2320 */ 687, 208, 687, 687, 839, 450, 465, 472, 475, 111, /* 2330 */ 207, 209, 210, 211, 213, 214, 519, 236, 687, 687, /* 2340 */ 687, 469, 687, 687, 128, 131, 476, 681, 695, 684, /* 2350 */ 688, 689, 687, 687, 687, 189, 243, 245, 244, 204, /* 2360 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 2370 */ 687, 687, 205, 120, 222, 102, 105, 99, 687, 216, /* 2380 */ 380, 687, 193, 57, 433, 687, 247, 169, 229, 677, /* 2390 */ 243, 245, 244, 204, 687, 687, 518, 687, 687, 215, /* 2400 */ 687, 687, 687, 212, 687, 687, 478, 487, 496, 499, /* 2410 */ 490, 493, 502, 508, 505, 514, 511, 687, 687, 687, /* 2420 */ 58, 60, 62, 687, 687, 72, 687, 687, 536, 83, /* 2430 */ 87, 92, 347, 687, 358, 687, 687, 365, 243, 245, /* 2440 */ 244, 204, 687, 687, 208, 687, 687, 764, 450, 465, /* 2450 */ 472, 475, 111, 207, 209, 210, 211, 213, 214, 519, /* 2460 */ 236, 687, 687, 687, 469, 687, 687, 128, 131, 361, /* 2470 */ 681, 695, 684, 688, 689, 687, 687, 687, 189, 243, /* 2480 */ 245, 244, 204, 687, 687, 108, 687, 687, 687, 687, /* 2490 */ 114, 200, 123, 687, 687, 205, 120, 222, 102, 105, /* 2500 */ 99, 687, 216, 129, 687, 193, 57, 687, 687, 247, /* 2510 */ 169, 229, 86, 243, 245, 244, 204, 687, 687, 518, /* 2520 */ 687, 687, 215, 687, 687, 687, 212, 687, 687, 478, /* 2530 */ 487, 496, 499, 490, 493, 502, 508, 505, 514, 511, /* 2540 */ 687, 687, 687, 58, 60, 62, 687, 687, 72, 687, /* 2550 */ 687, 160, 83, 87, 92, 347, 687, 358, 687, 687, /* 2560 */ 365, 243, 245, 244, 204, 687, 687, 208, 687, 687, /* 2570 */ 687, 450, 465, 472, 475, 111, 207, 209, 210, 211, /* 2580 */ 213, 214, 519, 236, 687, 687, 878, 469, 687, 814, /* 2590 */ 128, 131, 152, 687, 774, 879, 687, 773, 687, 687, /* 2600 */ 687, 189, 243, 245, 244, 204, 687, 687, 108, 687, /* 2610 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 2620 */ 222, 102, 105, 99, 687, 216, 617, 687, 193, 57, /* 2630 */ 687, 687, 247, 169, 229, 697, 243, 245, 244, 204, /* 2640 */ 687, 687, 518, 687, 687, 215, 687, 687, 687, 212, /* 2650 */ 687, 687, 478, 487, 496, 499, 490, 493, 502, 508, /* 2660 */ 505, 514, 511, 687, 687, 687, 58, 60, 62, 687, /* 2670 */ 687, 72, 687, 687, 638, 83, 87, 92, 347, 687, /* 2680 */ 358, 687, 687, 365, 243, 245, 244, 204, 687, 687, /* 2690 */ 208, 687, 687, 687, 450, 465, 472, 475, 111, 207, /* 2700 */ 209, 210, 211, 213, 214, 519, 236, 154, 687, 687, /* 2710 */ 469, 687, 687, 128, 131, 602, 687, 243, 245, 244, /* 2720 */ 204, 687, 687, 687, 189, 243, 245, 244, 204, 687, /* 2730 */ 687, 108, 687, 687, 687, 687, 114, 200, 123, 687, /* 2740 */ 687, 205, 120, 222, 102, 105, 99, 687, 216, 109, /* 2750 */ 687, 193, 57, 687, 687, 247, 169, 229, 533, 243, /* 2760 */ 245, 244, 204, 687, 687, 518, 687, 687, 215, 687, /* 2770 */ 687, 687, 212, 687, 687, 478, 487, 496, 499, 490, /* 2780 */ 493, 502, 508, 505, 514, 511, 687, 687, 687, 58, /* 2790 */ 60, 62, 687, 687, 72, 687, 687, 687, 83, 87, /* 2800 */ 92, 347, 687, 358, 687, 687, 365, 687, 687, 687, /* 2810 */ 687, 687, 687, 208, 687, 687, 687, 450, 465, 472, /* 2820 */ 475, 111, 207, 209, 210, 211, 213, 214, 519, 236, /* 2830 */ 138, 687, 687, 469, 687, 687, 128, 131, 203, 687, /* 2840 */ 243, 245, 244, 204, 687, 687, 687, 189, 243, 245, /* 2850 */ 244, 204, 687, 687, 108, 687, 687, 687, 687, 114, /* 2860 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 2870 */ 687, 216, 206, 687, 193, 57, 687, 687, 247, 169, /* 2880 */ 229, 859, 243, 245, 244, 204, 687, 687, 518, 687, /* 2890 */ 687, 215, 687, 687, 687, 212, 687, 687, 478, 487, /* 2900 */ 496, 499, 490, 493, 502, 508, 505, 514, 511, 687, /* 2910 */ 687, 687, 58, 60, 62, 687, 687, 72, 687, 687, /* 2920 */ 641, 83, 87, 92, 347, 687, 358, 687, 687, 365, /* 2930 */ 243, 245, 244, 204, 687, 687, 208, 687, 687, 687, /* 2940 */ 450, 465, 472, 475, 111, 207, 209, 210, 211, 213, /* 2950 */ 214, 519, 236, 112, 687, 687, 469, 687, 687, 128, /* 2960 */ 131, 192, 687, 243, 245, 244, 204, 687, 687, 687, /* 2970 */ 189, 243, 245, 244, 204, 687, 687, 108, 687, 687, /* 2980 */ 687, 687, 114, 200, 123, 687, 687, 205, 120, 222, /* 2990 */ 102, 105, 99, 687, 216, 640, 687, 193, 57, 687, /* 3000 */ 687, 247, 169, 229, 539, 243, 245, 244, 204, 687, /* 3010 */ 687, 518, 687, 687, 215, 687, 687, 687, 212, 687, /* 3020 */ 687, 478, 487, 496, 499, 490, 493, 502, 508, 505, /* 3030 */ 514, 511, 687, 687, 687, 58, 60, 62, 687, 687, /* 3040 */ 72, 687, 687, 124, 83, 87, 92, 347, 687, 358, /* 3050 */ 687, 687, 365, 243, 245, 244, 204, 687, 687, 208, /* 3060 */ 687, 687, 687, 450, 465, 472, 475, 111, 207, 209, /* 3070 */ 210, 211, 213, 214, 519, 236, 164, 687, 687, 469, /* 3080 */ 687, 687, 128, 131, 144, 687, 243, 245, 244, 204, /* 3090 */ 687, 687, 687, 189, 243, 245, 244, 204, 687, 687, /* 3100 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 3110 */ 205, 120, 222, 102, 105, 99, 687, 216, 158, 687, /* 3120 */ 193, 57, 687, 687, 247, 169, 229, 645, 243, 245, /* 3130 */ 244, 204, 687, 687, 518, 687, 687, 215, 687, 687, /* 3140 */ 687, 212, 687, 687, 478, 487, 496, 499, 490, 493, /* 3150 */ 502, 508, 505, 514, 511, 687, 687, 687, 58, 60, /* 3160 */ 62, 687, 687, 72, 687, 687, 146, 83, 87, 92, /* 3170 */ 347, 687, 358, 687, 687, 365, 243, 245, 244, 204, /* 3180 */ 687, 687, 208, 687, 687, 687, 450, 465, 472, 475, /* 3190 */ 111, 207, 209, 210, 211, 213, 214, 519, 236, 618, /* 3200 */ 687, 687, 469, 687, 687, 128, 131, 485, 687, 243, /* 3210 */ 245, 244, 204, 687, 687, 687, 189, 243, 245, 244, /* 3220 */ 204, 687, 687, 108, 687, 687, 687, 687, 114, 200, /* 3230 */ 123, 687, 687, 205, 120, 222, 102, 105, 99, 687, /* 3240 */ 216, 132, 687, 193, 57, 687, 687, 247, 169, 229, /* 3250 */ 546, 243, 245, 244, 204, 687, 687, 518, 687, 687, /* 3260 */ 215, 687, 687, 687, 212, 687, 687, 478, 487, 496, /* 3270 */ 499, 490, 493, 502, 508, 505, 514, 511, 687, 687, /* 3280 */ 687, 58, 60, 62, 687, 687, 72, 687, 687, 115, /* 3290 */ 83, 87, 92, 347, 687, 358, 687, 687, 365, 243, /* 3300 */ 245, 244, 204, 687, 687, 208, 687, 687, 687, 450, /* 3310 */ 465, 472, 475, 111, 207, 209, 210, 211, 213, 214, /* 3320 */ 519, 236, 470, 687, 687, 469, 687, 687, 128, 131, /* 3330 */ 473, 687, 243, 245, 244, 204, 687, 687, 687, 189, /* 3340 */ 243, 245, 244, 204, 687, 687, 108, 687, 687, 687, /* 3350 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 3360 */ 105, 99, 687, 216, 636, 687, 193, 57, 687, 687, /* 3370 */ 247, 169, 229, 545, 243, 245, 244, 204, 687, 687, /* 3380 */ 518, 687, 687, 215, 687, 687, 687, 212, 687, 687, /* 3390 */ 478, 487, 496, 499, 490, 493, 502, 508, 505, 514, /* 3400 */ 511, 687, 687, 687, 58, 60, 62, 687, 687, 72, /* 3410 */ 687, 687, 639, 83, 87, 92, 347, 687, 358, 687, /* 3420 */ 687, 365, 243, 245, 244, 204, 687, 687, 208, 687, /* 3430 */ 687, 687, 450, 465, 472, 475, 111, 207, 209, 210, /* 3440 */ 211, 213, 214, 519, 236, 523, 687, 687, 469, 687, /* 3450 */ 687, 128, 131, 642, 687, 243, 245, 244, 204, 687, /* 3460 */ 687, 687, 189, 243, 245, 244, 204, 687, 687, 108, /* 3470 */ 687, 687, 687, 687, 114, 200, 123, 687, 687, 205, /* 3480 */ 120, 222, 102, 105, 99, 687, 216, 150, 687, 193, /* 3490 */ 57, 687, 687, 247, 169, 229, 868, 243, 245, 244, /* 3500 */ 204, 687, 687, 518, 687, 687, 215, 687, 687, 687, /* 3510 */ 212, 687, 687, 478, 487, 496, 499, 490, 493, 502, /* 3520 */ 508, 505, 514, 511, 687, 687, 687, 58, 60, 62, /* 3530 */ 687, 687, 72, 687, 687, 162, 83, 87, 92, 347, /* 3540 */ 687, 358, 687, 687, 365, 243, 245, 244, 204, 687, /* 3550 */ 687, 208, 687, 687, 687, 450, 465, 472, 475, 111, /* 3560 */ 207, 209, 210, 211, 213, 214, 519, 236, 100, 687, /* 3570 */ 687, 469, 687, 687, 128, 131, 466, 687, 243, 245, /* 3580 */ 244, 204, 687, 687, 687, 189, 243, 245, 244, 204, /* 3590 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 3600 */ 687, 687, 205, 120, 222, 102, 105, 99, 687, 216, /* 3610 */ 121, 687, 193, 57, 687, 687, 247, 169, 229, 560, /* 3620 */ 243, 245, 244, 204, 687, 687, 518, 687, 687, 215, /* 3630 */ 687, 687, 687, 212, 687, 687, 478, 487, 496, 499, /* 3640 */ 490, 493, 502, 508, 505, 514, 511, 687, 687, 687, /* 3650 */ 58, 60, 62, 687, 687, 72, 687, 687, 168, 83, /* 3660 */ 87, 92, 347, 687, 358, 687, 687, 365, 243, 245, /* 3670 */ 244, 204, 687, 687, 208, 687, 687, 687, 450, 465, /* 3680 */ 472, 475, 111, 207, 209, 210, 211, 213, 214, 519, /* 3690 */ 236, 156, 687, 687, 469, 687, 687, 128, 131, 188, /* 3700 */ 687, 243, 245, 244, 204, 687, 687, 687, 189, 243, /* 3710 */ 245, 244, 204, 687, 687, 108, 687, 687, 687, 687, /* 3720 */ 114, 200, 123, 687, 687, 205, 120, 222, 102, 105, /* 3730 */ 99, 687, 216, 142, 687, 193, 57, 687, 687, 247, /* 3740 */ 169, 229, 91, 243, 245, 244, 204, 687, 687, 518, /* 3750 */ 687, 687, 215, 687, 687, 687, 212, 687, 687, 478, /* 3760 */ 487, 496, 499, 490, 493, 502, 508, 505, 514, 511, /* 3770 */ 687, 687, 687, 58, 60, 62, 687, 687, 72, 687, /* 3780 */ 687, 687, 83, 87, 92, 347, 687, 358, 687, 687, /* 3790 */ 365, 687, 687, 687, 687, 687, 687, 208, 687, 687, /* 3800 */ 687, 450, 465, 472, 475, 111, 207, 209, 210, 211, /* 3810 */ 213, 214, 519, 236, 687, 687, 687, 469, 687, 687, /* 3820 */ 128, 131, 687, 687, 687, 687, 687, 687, 687, 687, /* 3830 */ 687, 189, 687, 687, 687, 687, 687, 687, 108, 687, /* 3840 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 3850 */ 222, 102, 105, 99, 687, 216, 687, 687, 193, 57, /* 3860 */ 687, 687, 247, 169, 229, 559, 687, 687, 687, 687, /* 3870 */ 687, 687, 518, 687, 687, 215, 687, 687, 687, 212, /* 3880 */ 687, 687, 478, 487, 496, 499, 490, 493, 502, 508, /* 3890 */ 505, 514, 511, 687, 687, 687, 58, 60, 62, 687, /* 3900 */ 687, 72, 687, 687, 687, 83, 87, 92, 347, 687, /* 3910 */ 358, 687, 687, 365, 687, 687, 687, 687, 687, 687, /* 3920 */ 208, 687, 687, 687, 450, 465, 472, 475, 111, 207, /* 3930 */ 209, 210, 211, 213, 214, 519, 236, 687, 687, 687, /* 3940 */ 469, 687, 687, 128, 131, 687, 687, 687, 687, 687, /* 3950 */ 687, 687, 687, 687, 189, 687, 687, 687, 687, 687, /* 3960 */ 687, 108, 687, 687, 687, 687, 114, 200, 123, 687, /* 3970 */ 687, 205, 120, 222, 102, 105, 99, 687, 216, 687, /* 3980 */ 687, 193, 57, 687, 687, 247, 169, 229, 71, 687, /* 3990 */ 687, 687, 687, 687, 687, 518, 687, 687, 215, 687, /* 4000 */ 687, 687, 212, 687, 687, 478, 487, 496, 499, 490, /* 4010 */ 493, 502, 508, 505, 514, 511, 687, 687, 687, 58, /* 4020 */ 60, 62, 687, 687, 72, 687, 687, 687, 83, 87, /* 4030 */ 92, 347, 687, 358, 687, 687, 365, 687, 687, 687, /* 4040 */ 687, 687, 687, 208, 687, 687, 687, 450, 465, 472, /* 4050 */ 475, 111, 207, 209, 210, 211, 213, 214, 519, 236, /* 4060 */ 687, 687, 687, 469, 687, 687, 128, 131, 687, 687, /* 4070 */ 687, 687, 687, 687, 687, 687, 687, 189, 687, 687, /* 4080 */ 687, 687, 687, 687, 108, 687, 687, 687, 687, 114, /* 4090 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 4100 */ 687, 216, 687, 687, 193, 57, 687, 687, 247, 169, /* 4110 */ 229, 854, 687, 687, 687, 687, 687, 687, 518, 687, /* 4120 */ 687, 215, 687, 687, 687, 212, 687, 687, 478, 487, /* 4130 */ 496, 499, 490, 493, 502, 508, 505, 514, 511, 687, /* 4140 */ 687, 687, 58, 60, 62, 687, 687, 72, 687, 687, /* 4150 */ 687, 83, 87, 92, 347, 687, 358, 687, 687, 365, /* 4160 */ 687, 687, 687, 687, 687, 687, 208, 687, 687, 687, /* 4170 */ 450, 465, 472, 475, 111, 207, 209, 210, 211, 213, /* 4180 */ 214, 519, 236, 687, 687, 687, 469, 687, 687, 128, /* 4190 */ 131, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 4200 */ 189, 687, 687, 687, 687, 687, 687, 108, 687, 687, /* 4210 */ 687, 687, 114, 200, 123, 687, 687, 205, 120, 222, /* 4220 */ 102, 105, 99, 687, 216, 687, 687, 193, 57, 687, /* 4230 */ 687, 247, 169, 229, 655, 687, 687, 687, 687, 687, /* 4240 */ 687, 518, 687, 687, 215, 687, 687, 687, 212, 687, /* 4250 */ 687, 478, 487, 496, 499, 490, 493, 502, 508, 505, /* 4260 */ 514, 511, 687, 687, 687, 58, 60, 62, 687, 687, /* 4270 */ 72, 687, 687, 687, 83, 87, 92, 347, 687, 358, /* 4280 */ 687, 687, 365, 687, 687, 687, 687, 687, 687, 208, /* 4290 */ 687, 687, 687, 450, 465, 472, 475, 111, 207, 209, /* 4300 */ 210, 211, 213, 214, 519, 236, 687, 687, 687, 469, /* 4310 */ 687, 687, 128, 131, 687, 687, 687, 687, 687, 687, /* 4320 */ 687, 687, 687, 189, 687, 687, 687, 687, 687, 687, /* 4330 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 4340 */ 205, 120, 222, 102, 105, 99, 687, 216, 687, 687, /* 4350 */ 193, 57, 687, 687, 247, 169, 229, 852, 687, 687, /* 4360 */ 687, 687, 687, 687, 518, 687, 687, 215, 687, 687, /* 4370 */ 687, 212, 687, 687, 478, 487, 496, 499, 490, 493, /* 4380 */ 502, 508, 505, 514, 511, 687, 687, 687, 58, 60, /* 4390 */ 62, 687, 687, 72, 687, 687, 687, 83, 87, 92, /* 4400 */ 347, 687, 358, 687, 687, 365, 687, 687, 687, 687, /* 4410 */ 687, 687, 208, 687, 687, 687, 450, 465, 472, 475, /* 4420 */ 111, 207, 209, 210, 211, 213, 214, 519, 236, 687, /* 4430 */ 687, 687, 469, 687, 687, 128, 131, 687, 687, 687, /* 4440 */ 687, 687, 687, 687, 687, 687, 189, 687, 687, 687, /* 4450 */ 687, 687, 687, 108, 687, 687, 687, 687, 114, 200, /* 4460 */ 123, 687, 687, 205, 120, 222, 102, 105, 99, 687, /* 4470 */ 216, 687, 687, 193, 57, 687, 687, 247, 169, 229, /* 4480 */ 649, 687, 687, 687, 687, 687, 687, 518, 687, 687, /* 4490 */ 215, 687, 687, 687, 212, 687, 687, 478, 487, 496, /* 4500 */ 499, 490, 493, 502, 508, 505, 514, 511, 687, 687, /* 4510 */ 687, 58, 60, 62, 687, 687, 72, 687, 687, 687, /* 4520 */ 83, 87, 92, 347, 687, 358, 687, 687, 365, 687, /* 4530 */ 687, 687, 687, 687, 687, 208, 687, 687, 687, 450, /* 4540 */ 465, 472, 475, 111, 207, 209, 210, 211, 213, 214, /* 4550 */ 519, 236, 687, 687, 687, 469, 687, 687, 128, 131, /* 4560 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 189, /* 4570 */ 687, 687, 687, 687, 687, 687, 108, 687, 687, 687, /* 4580 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 4590 */ 105, 99, 687, 216, 687, 687, 193, 57, 687, 687, /* 4600 */ 247, 169, 229, 873, 687, 687, 687, 687, 687, 687, /* 4610 */ 518, 687, 687, 215, 687, 687, 687, 212, 687, 687, /* 4620 */ 478, 487, 496, 499, 490, 493, 502, 508, 505, 514, /* 4630 */ 511, 687, 687, 687, 58, 60, 62, 687, 687, 72, /* 4640 */ 687, 687, 687, 83, 87, 92, 347, 687, 358, 687, /* 4650 */ 687, 365, 687, 687, 687, 687, 687, 687, 208, 687, /* 4660 */ 687, 687, 450, 465, 472, 475, 111, 207, 209, 210, /* 4670 */ 211, 213, 214, 519, 236, 687, 687, 687, 469, 687, /* 4680 */ 687, 128, 131, 687, 687, 687, 687, 687, 687, 687, /* 4690 */ 687, 687, 189, 687, 687, 687, 687, 687, 687, 108, /* 4700 */ 687, 687, 687, 687, 114, 200, 123, 687, 687, 205, /* 4710 */ 120, 222, 102, 105, 99, 687, 216, 687, 687, 193, /* 4720 */ 57, 687, 687, 247, 169, 229, 843, 687, 687, 687, /* 4730 */ 687, 687, 687, 518, 687, 687, 215, 687, 687, 687, /* 4740 */ 212, 687, 687, 478, 487, 496, 499, 490, 493, 502, /* 4750 */ 508, 505, 514, 511, 687, 687, 687, 58, 60, 62, /* 4760 */ 687, 687, 72, 687, 687, 687, 83, 87, 92, 347, /* 4770 */ 687, 358, 687, 687, 365, 687, 687, 687, 687, 687, /* 4780 */ 687, 208, 687, 687, 687, 450, 465, 472, 475, 111, /* 4790 */ 207, 209, 210, 211, 213, 214, 519, 236, 687, 687, /* 4800 */ 687, 469, 687, 687, 128, 131, 687, 687, 687, 687, /* 4810 */ 687, 687, 687, 687, 687, 189, 687, 687, 687, 687, /* 4820 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 4830 */ 687, 687, 205, 120, 222, 102, 105, 99, 687, 216, /* 4840 */ 687, 687, 193, 57, 687, 687, 247, 169, 229, 66, /* 4850 */ 687, 687, 687, 687, 687, 687, 518, 687, 687, 215, /* 4860 */ 687, 687, 687, 212, 687, 687, 478, 487, 496, 499, /* 4870 */ 490, 493, 502, 508, 505, 514, 511, 687, 687, 687, /* 4880 */ 58, 60, 62, 687, 687, 72, 687, 687, 687, 83, /* 4890 */ 87, 92, 347, 687, 358, 687, 687, 365, 687, 687, /* 4900 */ 687, 687, 687, 687, 208, 687, 687, 687, 450, 465, /* 4910 */ 472, 475, 111, 207, 209, 210, 211, 213, 214, 519, /* 4920 */ 236, 687, 687, 687, 469, 687, 687, 128, 131, 687, /* 4930 */ 687, 687, 687, 687, 687, 687, 687, 687, 189, 687, /* 4940 */ 687, 687, 687, 687, 687, 108, 687, 687, 687, 687, /* 4950 */ 114, 200, 123, 687, 687, 205, 120, 222, 102, 105, /* 4960 */ 99, 687, 216, 687, 687, 193, 57, 687, 687, 247, /* 4970 */ 169, 229, 841, 687, 687, 687, 687, 687, 687, 518, /* 4980 */ 687, 687, 215, 687, 687, 687, 212, 687, 687, 478, /* 4990 */ 487, 496, 499, 490, 493, 502, 508, 505, 514, 511, /* 5000 */ 687, 687, 687, 58, 60, 62, 687, 687, 72, 687, /* 5010 */ 687, 687, 83, 87, 92, 347, 687, 358, 687, 687, /* 5020 */ 365, 687, 687, 687, 687, 687, 687, 208, 687, 687, /* 5030 */ 687, 450, 465, 472, 475, 111, 207, 209, 210, 211, /* 5040 */ 213, 214, 519, 236, 687, 687, 687, 469, 687, 687, /* 5050 */ 128, 131, 687, 687, 687, 687, 687, 687, 687, 687, /* 5060 */ 687, 189, 687, 687, 687, 687, 687, 687, 108, 687, /* 5070 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 5080 */ 222, 102, 105, 99, 687, 216, 687, 687, 193, 57, /* 5090 */ 687, 687, 247, 169, 229, 669, 687, 687, 687, 687, /* 5100 */ 687, 687, 518, 687, 687, 215, 687, 687, 687, 212, /* 5110 */ 687, 687, 478, 487, 496, 499, 490, 493, 502, 508, /* 5120 */ 505, 514, 511, 687, 687, 687, 58, 60, 62, 687, /* 5130 */ 687, 72, 687, 687, 687, 83, 87, 92, 347, 687, /* 5140 */ 358, 687, 687, 365, 687, 687, 687, 687, 687, 687, /* 5150 */ 208, 687, 687, 687, 450, 465, 472, 475, 111, 207, /* 5160 */ 209, 210, 211, 213, 214, 519, 236, 687, 687, 687, /* 5170 */ 469, 687, 687, 128, 131, 687, 687, 687, 687, 687, /* 5180 */ 687, 687, 687, 687, 189, 687, 687, 687, 687, 687, /* 5190 */ 687, 108, 687, 687, 687, 687, 114, 200, 123, 687, /* 5200 */ 687, 205, 120, 222, 102, 105, 99, 687, 216, 687, /* 5210 */ 687, 193, 57, 687, 687, 247, 169, 229, 364, 687, /* 5220 */ 687, 687, 687, 687, 687, 518, 687, 687, 215, 687, /* 5230 */ 687, 687, 212, 687, 687, 478, 487, 496, 499, 490, /* 5240 */ 493, 502, 508, 505, 514, 511, 687, 687, 687, 58, /* 5250 */ 60, 62, 687, 687, 72, 687, 687, 687, 83, 87, /* 5260 */ 92, 347, 687, 358, 687, 687, 365, 687, 687, 687, /* 5270 */ 687, 687, 687, 208, 687, 687, 687, 450, 465, 472, /* 5280 */ 475, 111, 207, 209, 210, 211, 213, 214, 519, 236, /* 5290 */ 687, 687, 687, 469, 687, 687, 128, 131, 687, 687, /* 5300 */ 687, 687, 687, 687, 687, 687, 687, 189, 687, 687, /* 5310 */ 687, 687, 687, 687, 108, 687, 687, 687, 687, 114, /* 5320 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 5330 */ 687, 216, 687, 687, 193, 57, 687, 687, 247, 169, /* 5340 */ 229, 836, 687, 687, 687, 687, 687, 687, 518, 687, /* 5350 */ 687, 215, 687, 687, 687, 212, 687, 687, 478, 487, /* 5360 */ 496, 499, 490, 493, 502, 508, 505, 514, 511, 687, /* 5370 */ 687, 687, 58, 60, 62, 687, 687, 72, 687, 687, /* 5380 */ 687, 83, 87, 92, 347, 687, 358, 687, 687, 365, /* 5390 */ 687, 687, 687, 687, 687, 687, 208, 687, 687, 687, /* 5400 */ 450, 465, 472, 475, 111, 207, 209, 210, 211, 213, /* 5410 */ 214, 519, 236, 687, 687, 687, 469, 687, 687, 128, /* 5420 */ 131, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 5430 */ 189, 687, 687, 687, 687, 687, 687, 108, 687, 687, /* 5440 */ 687, 687, 114, 200, 123, 687, 687, 205, 120, 222, /* 5450 */ 102, 105, 99, 687, 216, 687, 687, 193, 57, 687, /* 5460 */ 687, 247, 169, 229, 521, 687, 687, 687, 687, 687, /* 5470 */ 687, 518, 687, 687, 215, 687, 687, 687, 212, 687, /* 5480 */ 687, 478, 487, 496, 499, 490, 493, 502, 508, 505, /* 5490 */ 514, 511, 687, 687, 687, 58, 60, 62, 687, 687, /* 5500 */ 72, 687, 687, 687, 83, 87, 92, 347, 687, 358, /* 5510 */ 687, 687, 365, 687, 687, 687, 687, 687, 687, 208, /* 5520 */ 687, 687, 687, 450, 465, 472, 475, 111, 207, 209, /* 5530 */ 210, 211, 213, 214, 519, 236, 687, 687, 687, 469, /* 5540 */ 687, 687, 128, 131, 687, 687, 687, 687, 687, 687, /* 5550 */ 687, 687, 687, 189, 687, 687, 687, 687, 687, 687, /* 5560 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 5570 */ 205, 120, 222, 102, 105, 99, 687, 216, 687, 687, /* 5580 */ 193, 57, 687, 687, 247, 169, 229, 834, 687, 687, /* 5590 */ 687, 687, 687, 687, 518, 687, 687, 215, 687, 687, /* 5600 */ 687, 212, 687, 687, 478, 487, 496, 499, 490, 493, /* 5610 */ 502, 508, 505, 514, 511, 687, 687, 687, 58, 60, /* 5620 */ 62, 687, 687, 72, 687, 687, 687, 83, 87, 92, /* 5630 */ 347, 687, 358, 687, 687, 365, 687, 687, 687, 687, /* 5640 */ 687, 687, 208, 687, 687, 687, 450, 465, 472, 475, /* 5650 */ 111, 207, 209, 210, 211, 213, 214, 519, 236, 687, /* 5660 */ 687, 687, 469, 687, 687, 128, 131, 687, 687, 687, /* 5670 */ 687, 687, 687, 687, 687, 687, 189, 687, 687, 687, /* 5680 */ 687, 687, 687, 108, 687, 687, 687, 687, 114, 200, /* 5690 */ 123, 687, 687, 205, 120, 222, 102, 105, 99, 687, /* 5700 */ 216, 687, 687, 193, 57, 687, 687, 247, 169, 229, /* 5710 */ 357, 687, 687, 687, 687, 687, 687, 518, 687, 687, /* 5720 */ 215, 687, 687, 687, 212, 687, 687, 478, 487, 496, /* 5730 */ 499, 490, 493, 502, 508, 505, 514, 511, 687, 687, /* 5740 */ 687, 58, 60, 62, 687, 687, 72, 687, 687, 687, /* 5750 */ 83, 87, 92, 347, 687, 358, 687, 687, 365, 687, /* 5760 */ 687, 687, 687, 687, 687, 208, 687, 687, 687, 450, /* 5770 */ 465, 472, 475, 111, 207, 209, 210, 211, 213, 214, /* 5780 */ 519, 236, 687, 687, 687, 469, 687, 687, 128, 131, /* 5790 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 189, /* 5800 */ 687, 687, 687, 687, 687, 687, 108, 687, 687, 687, /* 5810 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 5820 */ 105, 99, 687, 216, 687, 687, 193, 57, 687, 687, /* 5830 */ 247, 169, 229, 829, 687, 687, 687, 687, 687, 687, /* 5840 */ 518, 687, 687, 215, 687, 687, 687, 212, 687, 687, /* 5850 */ 478, 487, 496, 499, 490, 493, 502, 508, 505, 514, /* 5860 */ 511, 687, 687, 687, 58, 60, 62, 687, 687, 72, /* 5870 */ 687, 687, 687, 83, 87, 92, 347, 687, 358, 687, /* 5880 */ 687, 365, 687, 687, 687, 687, 687, 687, 208, 687, /* 5890 */ 687, 687, 450, 465, 472, 475, 111, 207, 209, 210, /* 5900 */ 211, 213, 214, 519, 236, 687, 687, 687, 469, 687, /* 5910 */ 687, 128, 131, 687, 687, 687, 687, 687, 687, 687, /* 5920 */ 687, 687, 189, 687, 687, 687, 687, 687, 687, 108, /* 5930 */ 687, 687, 687, 687, 114, 200, 123, 687, 687, 205, /* 5940 */ 120, 222, 102, 105, 99, 687, 216, 687, 687, 193, /* 5950 */ 57, 687, 687, 247, 169, 229, 827, 687, 687, 687, /* 5960 */ 687, 687, 687, 518, 687, 687, 215, 687, 687, 687, /* 5970 */ 212, 687, 687, 478, 487, 496, 499, 490, 493, 502, /* 5980 */ 508, 505, 514, 511, 687, 687, 687, 58, 60, 62, /* 5990 */ 687, 687, 72, 687, 687, 687, 83, 87, 92, 347, /* 6000 */ 687, 358, 687, 687, 365, 687, 687, 687, 687, 687, /* 6010 */ 687, 208, 687, 687, 687, 450, 465, 472, 475, 111, /* 6020 */ 207, 209, 210, 211, 213, 214, 519, 236, 687, 687, /* 6030 */ 687, 469, 687, 687, 128, 131, 687, 687, 687, 687, /* 6040 */ 687, 687, 687, 687, 687, 189, 687, 687, 687, 687, /* 6050 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 6060 */ 687, 687, 205, 120, 222, 102, 105, 99, 687, 216, /* 6070 */ 687, 687, 193, 57, 687, 687, 247, 169, 229, 662, /* 6080 */ 687, 687, 687, 687, 687, 687, 518, 687, 687, 215, /* 6090 */ 687, 687, 687, 212, 687, 687, 478, 487, 496, 499, /* 6100 */ 490, 493, 502, 508, 505, 514, 511, 687, 687, 687, /* 6110 */ 58, 60, 62, 687, 687, 72, 687, 687, 687, 83, /* 6120 */ 87, 92, 347, 687, 358, 687, 687, 365, 687, 687, /* 6130 */ 687, 687, 687, 687, 208, 687, 687, 687, 450, 465, /* 6140 */ 472, 475, 111, 207, 209, 210, 211, 213, 214, 519, /* 6150 */ 236, 687, 687, 687, 469, 687, 687, 128, 131, 687, /* 6160 */ 687, 687, 687, 687, 687, 687, 687, 687, 189, 687, /* 6170 */ 687, 687, 687, 687, 687, 108, 687, 687, 687, 687, /* 6180 */ 114, 200, 123, 687, 687, 205, 120, 222, 102, 105, /* 6190 */ 99, 687, 216, 687, 687, 193, 57, 687, 687, 247, /* 6200 */ 169, 229, 822, 687, 687, 687, 687, 687, 687, 518, /* 6210 */ 687, 687, 215, 687, 687, 687, 212, 687, 687, 478, /* 6220 */ 487, 496, 499, 490, 493, 502, 508, 505, 514, 511, /* 6230 */ 687, 687, 687, 58, 60, 62, 687, 687, 72, 687, /* 6240 */ 687, 687, 83, 87, 92, 347, 687, 358, 687, 687, /* 6250 */ 365, 687, 687, 687, 687, 687, 687, 208, 687, 687, /* 6260 */ 687, 450, 465, 472, 475, 111, 207, 209, 210, 211, /* 6270 */ 213, 214, 519, 236, 687, 687, 687, 469, 687, 687, /* 6280 */ 128, 131, 687, 687, 687, 687, 687, 687, 687, 687, /* 6290 */ 687, 189, 687, 687, 687, 687, 687, 687, 108, 687, /* 6300 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 6310 */ 222, 102, 105, 99, 687, 216, 687, 687, 193, 57, /* 6320 */ 687, 687, 247, 169, 229, 526, 687, 687, 687, 687, /* 6330 */ 687, 687, 518, 687, 687, 215, 687, 687, 687, 212, /* 6340 */ 687, 687, 478, 487, 496, 499, 490, 493, 502, 508, /* 6350 */ 505, 514, 511, 687, 687, 687, 58, 60, 62, 687, /* 6360 */ 687, 72, 687, 687, 687, 83, 87, 92, 347, 687, /* 6370 */ 358, 687, 687, 365, 687, 687, 687, 687, 687, 687, /* 6380 */ 208, 687, 687, 687, 450, 465, 472, 475, 111, 207, /* 6390 */ 209, 210, 211, 213, 214, 519, 236, 687, 687, 687, /* 6400 */ 469, 687, 687, 128, 131, 687, 687, 687, 687, 687, /* 6410 */ 687, 687, 687, 687, 189, 687, 687, 687, 687, 687, /* 6420 */ 687, 108, 687, 687, 687, 687, 114, 200, 123, 687, /* 6430 */ 687, 205, 120, 222, 102, 105, 99, 687, 216, 687, /* 6440 */ 687, 193, 57, 687, 687, 247, 169, 229, 661, 687, /* 6450 */ 687, 687, 687, 687, 687, 518, 687, 687, 215, 687, /* 6460 */ 687, 687, 212, 687, 687, 478, 487, 496, 499, 490, /* 6470 */ 493, 502, 508, 505, 514, 511, 687, 687, 687, 58, /* 6480 */ 60, 62, 687, 687, 72, 687, 687, 687, 83, 87, /* 6490 */ 92, 347, 687, 358, 687, 687, 365, 687, 687, 687, /* 6500 */ 687, 687, 687, 208, 687, 687, 687, 450, 465, 472, /* 6510 */ 475, 111, 207, 209, 210, 211, 213, 214, 519, 236, /* 6520 */ 687, 687, 687, 469, 687, 687, 128, 131, 687, 687, /* 6530 */ 687, 687, 687, 687, 687, 687, 687, 189, 687, 687, /* 6540 */ 687, 687, 687, 687, 108, 687, 687, 687, 687, 114, /* 6550 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 6560 */ 687, 216, 687, 687, 193, 57, 687, 687, 247, 169, /* 6570 */ 229, 820, 687, 687, 687, 687, 687, 687, 518, 687, /* 6580 */ 687, 215, 687, 687, 687, 212, 687, 687, 478, 487, /* 6590 */ 496, 499, 490, 493, 502, 508, 505, 514, 511, 687, /* 6600 */ 687, 687, 58, 60, 62, 687, 687, 72, 687, 687, /* 6610 */ 687, 83, 87, 92, 347, 687, 358, 687, 687, 365, /* 6620 */ 687, 687, 687, 687, 687, 687, 208, 687, 687, 687, /* 6630 */ 450, 465, 472, 475, 111, 207, 209, 210, 211, 213, /* 6640 */ 214, 519, 236, 687, 687, 687, 469, 687, 687, 128, /* 6650 */ 131, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 6660 */ 189, 687, 687, 687, 687, 687, 687, 108, 687, 687, /* 6670 */ 687, 687, 114, 200, 123, 687, 687, 205, 120, 222, /* 6680 */ 102, 105, 99, 687, 216, 687, 687, 193, 57, 687, /* 6690 */ 687, 247, 169, 229, 875, 687, 687, 687, 687, 687, /* 6700 */ 687, 518, 687, 687, 215, 687, 687, 687, 212, 687, /* 6710 */ 687, 478, 487, 496, 499, 490, 493, 502, 508, 505, /* 6720 */ 514, 511, 687, 687, 687, 58, 60, 62, 687, 687, /* 6730 */ 72, 687, 687, 687, 83, 87, 92, 347, 687, 358, /* 6740 */ 687, 687, 365, 687, 687, 687, 687, 687, 687, 208, /* 6750 */ 687, 687, 687, 450, 465, 472, 475, 111, 207, 209, /* 6760 */ 210, 211, 213, 214, 519, 236, 687, 687, 687, 469, /* 6770 */ 687, 687, 128, 131, 687, 687, 687, 687, 687, 687, /* 6780 */ 687, 687, 687, 189, 687, 687, 687, 687, 687, 687, /* 6790 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 6800 */ 205, 120, 222, 102, 105, 99, 687, 216, 687, 687, /* 6810 */ 193, 57, 687, 687, 247, 169, 229, 667, 687, 687, /* 6820 */ 687, 687, 687, 687, 518, 687, 687, 215, 687, 687, /* 6830 */ 687, 212, 687, 687, 478, 487, 496, 499, 490, 493, /* 6840 */ 502, 508, 505, 514, 511, 687, 687, 687, 58, 60, /* 6850 */ 62, 687, 687, 72, 687, 687, 687, 83, 87, 92, /* 6860 */ 347, 687, 358, 687, 687, 365, 687, 687, 687, 687, /* 6870 */ 687, 687, 208, 687, 687, 687, 450, 465, 472, 475, /* 6880 */ 111, 207, 209, 210, 211, 213, 214, 519, 236, 687, /* 6890 */ 687, 687, 469, 687, 687, 128, 131, 687, 687, 687, /* 6900 */ 687, 687, 687, 687, 687, 687, 189, 687, 687, 687, /* 6910 */ 687, 687, 687, 108, 687, 687, 687, 687, 114, 200, /* 6920 */ 123, 687, 687, 205, 120, 222, 102, 105, 99, 687, /* 6930 */ 216, 687, 687, 193, 57, 687, 687, 247, 169, 229, /* 6940 */ 687, 687, 687, 687, 687, 687, 687, 518, 687, 687, /* 6950 */ 215, 687, 687, 687, 212, 687, 687, 478, 487, 496, /* 6960 */ 499, 490, 493, 502, 508, 505, 514, 511, 687, 687, /* 6970 */ 687, 58, 60, 62, 687, 687, 72, 687, 687, 687, /* 6980 */ 83, 87, 92, 347, 687, 358, 687, 687, 365, 687, /* 6990 */ 687, 687, 687, 687, 687, 208, 687, 687, 687, 450, /* 7000 */ 465, 472, 475, 111, 207, 209, 210, 211, 213, 214, /* 7010 */ 519, 236, 687, 687, 687, 117, 687, 687, 128, 131, /* 7020 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 189, /* 7030 */ 687, 687, 687, 687, 687, 687, 108, 687, 687, 687, /* 7040 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 7050 */ 105, 99, 687, 216, 687, 687, 193, 687, 687, 687, /* 7060 */ 247, 169, 229, 687, 687, 687, 687, 687, 687, 687, /* 7070 */ 687, 687, 687, 215, 687, 687, 687, 212, 687, 687, /* 7080 */ 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, /* 7090 */ 180, 181, 182, 183, 149, 153, 155, 157, 101, 107, /* 7100 */ 113, 116, 119, 122, 110, 104, 133, 135, 143, 137, /* 7110 */ 139, 141, 687, 687, 687, 161, 163, 687, 208, 687, /* 7120 */ 687, 687, 151, 687, 130, 125, 111, 207, 209, 210, /* 7130 */ 211, 213, 214, 236, 687, 687, 687, 117, 687, 687, /* 7140 */ 128, 131, 687, 687, 687, 687, 687, 687, 687, 687, /* 7150 */ 687, 189, 687, 687, 687, 687, 687, 266, 108, 687, /* 7160 */ 262, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 7170 */ 222, 102, 105, 99, 687, 216, 687, 265, 193, 687, /* 7180 */ 687, 259, 247, 169, 229, 687, 687, 687, 687, 687, /* 7190 */ 687, 687, 687, 687, 687, 215, 687, 687, 687, 212, /* 7200 */ 687, 687, 687, 101, 107, 113, 116, 119, 122, 110, /* 7210 */ 104, 133, 135, 143, 137, 139, 141, 687, 687, 687, /* 7220 */ 161, 163, 257, 687, 687, 687, 687, 151, 687, 130, /* 7230 */ 125, 255, 535, 256, 258, 261, 260, 236, 687, 687, /* 7240 */ 208, 117, 687, 687, 128, 131, 687, 687, 111, 207, /* 7250 */ 209, 210, 211, 213, 214, 189, 687, 687, 687, 687, /* 7260 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 7270 */ 687, 687, 205, 120, 222, 102, 105, 99, 687, 216, /* 7280 */ 687, 687, 193, 468, 687, 687, 247, 169, 229, 687, /* 7290 */ 687, 687, 687, 687, 687, 687, 687, 11, 19, 215, /* 7300 */ 14, 687, 23, 212, 687, 687, 715, 687, 798, 687, /* 7310 */ 923, 936, 518, 687, 165, 687, 687, 147, 145, 159, /* 7320 */ 149, 153, 155, 157, 101, 107, 113, 116, 119, 122, /* 7330 */ 110, 104, 133, 135, 143, 137, 139, 141, 687, 687, /* 7340 */ 687, 161, 163, 687, 208, 687, 687, 687, 151, 687, /* 7350 */ 130, 125, 111, 207, 209, 210, 211, 213, 214, 236, /* 7360 */ 687, 687, 687, 117, 687, 687, 128, 131, 747, 748, /* 7370 */ 749, 751, 750, 752, 687, 519, 619, 189, 687, 687, /* 7380 */ 687, 687, 687, 687, 108, 687, 687, 687, 687, 114, /* 7390 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 7400 */ 687, 216, 687, 687, 193, 687, 687, 687, 247, 169, /* 7410 */ 229, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 7420 */ 687, 215, 687, 725, 687, 212, 687, 435, 755, 756, /* 7430 */ 776, 687, 786, 687, 753, 754, 165, 687, 687, 147, /* 7440 */ 145, 159, 149, 153, 155, 157, 101, 107, 113, 116, /* 7450 */ 119, 122, 110, 104, 133, 135, 143, 137, 139, 141, /* 7460 */ 687, 687, 687, 161, 163, 687, 208, 687, 687, 687, /* 7470 */ 151, 185, 130, 125, 111, 207, 209, 210, 211, 213, /* 7480 */ 214, 236, 687, 687, 687, 117, 687, 687, 128, 131, /* 7490 */ 747, 748, 749, 751, 750, 752, 687, 687, 687, 189, /* 7500 */ 687, 687, 687, 687, 687, 687, 108, 687, 687, 687, /* 7510 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 7520 */ 105, 99, 687, 216, 687, 687, 193, 687, 687, 687, /* 7530 */ 247, 169, 229, 687, 687, 687, 687, 687, 687, 687, /* 7540 */ 687, 687, 687, 215, 687, 997, 687, 212, 687, 428, /* 7550 */ 755, 756, 882, 687, 786, 687, 753, 754, 165, 687, /* 7560 */ 687, 147, 145, 159, 149, 153, 155, 157, 101, 107, /* 7570 */ 113, 116, 119, 122, 110, 104, 133, 135, 143, 137, /* 7580 */ 139, 141, 687, 687, 687, 161, 163, 687, 208, 687, /* 7590 */ 687, 687, 151, 687, 130, 125, 111, 207, 209, 210, /* 7600 */ 211, 213, 214, 236, 687, 687, 687, 117, 687, 687, /* 7610 */ 128, 131, 747, 748, 749, 751, 750, 752, 687, 687, /* 7620 */ 1245, 189, 687, 687, 687, 687, 687, 687, 108, 687, /* 7630 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 7640 */ 222, 102, 105, 99, 687, 216, 687, 687, 193, 687, /* 7650 */ 687, 687, 247, 169, 229, 687, 687, 687, 687, 687, /* 7660 */ 687, 687, 687, 687, 687, 215, 687, 996, 687, 212, /* 7670 */ 687, 424, 755, 756, 882, 687, 786, 687, 753, 754, /* 7680 */ 165, 687, 687, 147, 145, 159, 149, 153, 155, 157, /* 7690 */ 101, 107, 113, 116, 119, 122, 110, 104, 133, 135, /* 7700 */ 143, 137, 139, 141, 687, 687, 687, 161, 163, 687, /* 7710 */ 208, 687, 687, 687, 151, 687, 130, 125, 111, 207, /* 7720 */ 209, 210, 211, 213, 214, 236, 687, 687, 687, 117, /* 7730 */ 687, 687, 128, 131, 747, 748, 749, 751, 750, 752, /* 7740 */ 687, 687, 687, 189, 687, 687, 687, 687, 687, 687, /* 7750 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 7760 */ 205, 120, 222, 102, 105, 99, 687, 216, 687, 687, /* 7770 */ 193, 687, 687, 687, 247, 169, 229, 687, 687, 687, /* 7780 */ 687, 687, 687, 687, 687, 687, 687, 215, 687, 808, /* 7790 */ 687, 212, 687, 417, 755, 756, 882, 687, 786, 687, /* 7800 */ 753, 754, 687, 687, 687, 147, 145, 159, 149, 153, /* 7810 */ 155, 157, 101, 107, 113, 116, 119, 122, 110, 104, /* 7820 */ 133, 135, 143, 137, 139, 141, 687, 687, 687, 161, /* 7830 */ 163, 687, 208, 687, 687, 687, 151, 687, 130, 125, /* 7840 */ 111, 207, 209, 210, 211, 213, 214, 236, 687, 687, /* 7850 */ 687, 117, 687, 687, 128, 131, 687, 687, 687, 687, /* 7860 */ 687, 687, 687, 690, 687, 189, 687, 687, 687, 687, /* 7870 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 7880 */ 687, 687, 205, 120, 222, 102, 105, 99, 600, 216, /* 7890 */ 687, 687, 198, 687, 687, 687, 247, 169, 229, 687, /* 7900 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 215, /* 7910 */ 680, 686, 687, 212, 170, 171, 172, 173, 174, 175, /* 7920 */ 176, 177, 178, 179, 180, 181, 182, 183, 145, 159, /* 7930 */ 149, 153, 155, 157, 101, 107, 113, 116, 119, 122, /* 7940 */ 110, 104, 133, 135, 143, 137, 139, 141, 687, 687, /* 7950 */ 687, 161, 163, 687, 208, 687, 687, 687, 151, 687, /* 7960 */ 130, 125, 111, 207, 209, 210, 211, 213, 214, 236, /* 7970 */ 687, 687, 687, 117, 687, 687, 128, 131, 687, 687, /* 7980 */ 687, 687, 687, 687, 687, 687, 687, 189, 687, 687, /* 7990 */ 317, 687, 687, 687, 108, 687, 687, 687, 687, 114, /* 8000 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 8010 */ 317, 216, 281, 26, 193, 687, 687, 252, 247, 169, /* 8020 */ 229, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 8030 */ 687, 215, 289, 285, 687, 212, 687, 286, 687, 687, /* 8040 */ 687, 170, 171, 172, 173, 174, 175, 176, 177, 178, /* 8050 */ 179, 180, 181, 182, 183, 687, 687, 687, 687, 616, /* 8060 */ 687, 170, 171, 172, 173, 174, 175, 176, 177, 178, /* 8070 */ 179, 180, 181, 182, 183, 687, 208, 687, 747, 748, /* 8080 */ 749, 751, 750, 752, 111, 207, 209, 210, 211, 213, /* 8090 */ 214, 236, 687, 687, 687, 117, 687, 687, 128, 131, /* 8100 */ 747, 748, 749, 751, 750, 752, 687, 687, 687, 189, /* 8110 */ 687, 687, 687, 687, 687, 687, 108, 687, 687, 687, /* 8120 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 8130 */ 105, 99, 687, 216, 687, 687, 193, 687, 755, 756, /* 8140 */ 247, 169, 229, 687, 753, 754, 687, 687, 687, 687, /* 8150 */ 687, 687, 687, 215, 687, 1005, 687, 212, 687, 218, /* 8160 */ 755, 756, 776, 687, 786, 687, 753, 754, 687, 687, /* 8170 */ 687, 687, 687, 159, 149, 153, 155, 157, 101, 107, /* 8180 */ 113, 116, 119, 122, 110, 104, 133, 135, 143, 137, /* 8190 */ 139, 141, 687, 687, 687, 161, 163, 687, 208, 687, /* 8200 */ 687, 687, 151, 687, 130, 125, 111, 207, 209, 210, /* 8210 */ 211, 213, 214, 236, 687, 687, 687, 117, 687, 687, /* 8220 */ 128, 131, 687, 687, 687, 687, 687, 687, 687, 687, /* 8230 */ 687, 189, 687, 687, 317, 687, 687, 687, 108, 687, /* 8240 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 8250 */ 222, 102, 105, 99, 225, 216, 281, 556, 198, 687, /* 8260 */ 687, 252, 247, 169, 229, 687, 687, 687, 687, 687, /* 8270 */ 687, 687, 687, 687, 687, 215, 687, 285, 687, 212, /* 8280 */ 687, 687, 687, 687, 687, 170, 171, 172, 173, 174, /* 8290 */ 175, 176, 177, 178, 179, 180, 181, 182, 183, 687, /* 8300 */ 687, 687, 1407, 1, 2, 946, 4, 5, 6, 7, /* 8310 */ 8, 9, 10, 687, 687, 687, 687, 687, 687, 687, /* 8320 */ 208, 687, 687, 687, 687, 687, 687, 687, 111, 207, /* 8330 */ 209, 210, 211, 213, 214, 236, 687, 687, 687, 117, /* 8340 */ 687, 687, 128, 131, 687, 687, 687, 687, 687, 687, /* 8350 */ 687, 687, 687, 189, 687, 687, 317, 687, 687, 687, /* 8360 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 8370 */ 205, 120, 222, 102, 105, 99, 235, 216, 281, 735, /* 8380 */ 198, 687, 687, 252, 247, 169, 229, 687, 687, 687, /* 8390 */ 687, 687, 687, 687, 687, 687, 687, 215, 687, 285, /* 8400 */ 687, 212, 687, 687, 687, 687, 687, 170, 171, 172, /* 8410 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 8420 */ 183, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 8430 */ 687, 137, 139, 141, 687, 687, 687, 161, 163, 687, /* 8440 */ 687, 687, 208, 687, 151, 687, 130, 125, 687, 687, /* 8450 */ 111, 207, 209, 210, 211, 213, 214, 236, 687, 687, /* 8460 */ 687, 117, 687, 687, 128, 131, 687, 687, 687, 687, /* 8470 */ 687, 687, 687, 687, 687, 189, 687, 687, 317, 687, /* 8480 */ 687, 687, 108, 687, 687, 434, 687, 114, 200, 123, /* 8490 */ 687, 395, 205, 120, 222, 102, 105, 99, 242, 216, /* 8500 */ 281, 818, 198, 371, 687, 252, 247, 169, 229, 371, /* 8510 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 215, /* 8520 */ 687, 285, 687, 212, 687, 687, 687, 687, 687, 170, /* 8530 */ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, /* 8540 */ 181, 182, 183, 687, 372, 373, 374, 375, 376, 377, /* 8550 */ 372, 373, 374, 375, 376, 377, 687, 687, 687, 687, /* 8560 */ 687, 687, 687, 687, 208, 687, 687, 687, 687, 687, /* 8570 */ 687, 687, 111, 207, 209, 210, 211, 213, 214, 236, /* 8580 */ 687, 687, 687, 117, 687, 687, 128, 131, 687, 687, /* 8590 */ 687, 687, 687, 687, 687, 687, 687, 189, 687, 687, /* 8600 */ 317, 687, 687, 687, 108, 687, 687, 687, 687, 114, /* 8610 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 8620 */ 622, 216, 281, 762, 198, 687, 687, 252, 247, 169, /* 8630 */ 229, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 8640 */ 687, 215, 687, 285, 687, 212, 687, 687, 687, 687, /* 8650 */ 687, 170, 171, 172, 173, 174, 175, 176, 177, 178, /* 8660 */ 179, 180, 181, 182, 183, 687, 687, 687, 687, 687, /* 8670 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 8680 */ 687, 687, 687, 687, 687, 687, 208, 687, 687, 687, /* 8690 */ 687, 687, 687, 687, 111, 207, 209, 210, 211, 213, /* 8700 */ 214, 236, 687, 687, 687, 117, 687, 687, 128, 131, /* 8710 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 189, /* 8720 */ 687, 687, 317, 687, 687, 687, 108, 687, 687, 687, /* 8730 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 8740 */ 105, 99, 687, 216, 281, 850, 193, 687, 687, 252, /* 8750 */ 247, 169, 229, 687, 687, 687, 687, 687, 687, 687, /* 8760 */ 687, 687, 687, 215, 687, 285, 687, 212, 687, 687, /* 8770 */ 687, 687, 687, 170, 171, 172, 173, 174, 175, 176, /* 8780 */ 177, 178, 179, 180, 181, 182, 183, 266, 687, 687, /* 8790 */ 269, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 8800 */ 522, 687, 687, 687, 687, 236, 687, 265, 208, 117, /* 8810 */ 687, 259, 128, 131, 687, 687, 111, 207, 209, 210, /* 8820 */ 211, 213, 214, 189, 687, 687, 687, 223, 687, 687, /* 8830 */ 108, 317, 687, 687, 687, 114, 200, 123, 687, 687, /* 8840 */ 205, 120, 222, 102, 105, 99, 635, 216, 687, 687, /* 8850 */ 198, 687, 268, 281, 247, 169, 229, 687, 252, 687, /* 8860 */ 687, 267, 687, 256, 258, 261, 260, 215, 687, 687, /* 8870 */ 687, 212, 575, 687, 285, 687, 687, 687, 580, 687, /* 8880 */ 687, 687, 170, 171, 172, 173, 174, 175, 176, 177, /* 8890 */ 178, 179, 180, 181, 182, 183, 170, 171, 172, 173, /* 8900 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 8910 */ 687, 687, 208, 687, 687, 687, 687, 687, 687, 687, /* 8920 */ 111, 207, 209, 210, 211, 213, 214, 236, 687, 687, /* 8930 */ 687, 117, 687, 687, 128, 131, 687, 687, 687, 687, /* 8940 */ 687, 687, 687, 690, 687, 189, 687, 687, 687, 687, /* 8950 */ 687, 687, 108, 687, 687, 687, 687, 114, 200, 123, /* 8960 */ 687, 687, 205, 120, 222, 102, 105, 99, 629, 216, /* 8970 */ 948, 687, 198, 687, 687, 687, 247, 169, 229, 687, /* 8980 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 215, /* 8990 */ 687, 686, 687, 212, 170, 171, 172, 173, 174, 175, /* 9000 */ 176, 177, 178, 179, 180, 181, 182, 183, 687, 747, /* 9010 */ 748, 749, 751, 750, 752, 687, 687, 687, 11, 19, /* 9020 */ 687, 14, 687, 23, 687, 687, 687, 715, 687, 798, /* 9030 */ 687, 923, 936, 518, 208, 687, 687, 687, 687, 687, /* 9040 */ 687, 687, 111, 207, 209, 210, 211, 213, 214, 236, /* 9050 */ 687, 687, 687, 117, 687, 687, 128, 131, 747, 748, /* 9060 */ 749, 751, 750, 752, 1000, 687, 687, 189, 687, 755, /* 9070 */ 756, 880, 687, 786, 108, 753, 754, 687, 687, 114, /* 9080 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 9090 */ 613, 216, 687, 687, 198, 687, 519, 687, 247, 169, /* 9100 */ 229, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9110 */ 687, 215, 687, 1001, 687, 212, 687, 687, 755, 756, /* 9120 */ 916, 687, 687, 687, 753, 754, 747, 748, 749, 751, /* 9130 */ 750, 752, 687, 687, 687, 687, 687, 687, 687, 687, /* 9140 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9150 */ 687, 687, 687, 687, 687, 687, 208, 687, 687, 687, /* 9160 */ 687, 687, 687, 687, 111, 207, 209, 210, 211, 213, /* 9170 */ 214, 236, 687, 687, 687, 117, 687, 687, 128, 131, /* 9180 */ 687, 998, 687, 687, 687, 687, 755, 756, 845, 189, /* 9190 */ 687, 687, 753, 754, 687, 687, 108, 687, 687, 687, /* 9200 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 9210 */ 105, 99, 687, 216, 687, 687, 193, 687, 687, 687, /* 9220 */ 247, 169, 229, 687, 687, 687, 687, 687, 687, 687, /* 9230 */ 687, 687, 687, 215, 687, 687, 687, 212, 687, 386, /* 9240 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9250 */ 687, 687, 687, 427, 381, 687, 687, 687, 687, 687, /* 9260 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9270 */ 687, 371, 687, 687, 687, 687, 687, 687, 208, 687, /* 9280 */ 687, 687, 687, 687, 687, 687, 111, 207, 209, 210, /* 9290 */ 211, 213, 214, 236, 687, 687, 687, 117, 687, 687, /* 9300 */ 128, 131, 747, 748, 749, 751, 750, 752, 687, 687, /* 9310 */ 687, 189, 372, 373, 374, 375, 376, 377, 108, 412, /* 9320 */ 438, 439, 687, 114, 200, 123, 687, 687, 205, 120, /* 9330 */ 222, 102, 105, 99, 584, 216, 687, 687, 198, 687, /* 9340 */ 687, 687, 247, 169, 229, 687, 687, 687, 687, 687, /* 9350 */ 687, 687, 687, 687, 687, 215, 687, 1007, 687, 212, /* 9360 */ 687, 687, 755, 756, 757, 687, 687, 687, 753, 754, /* 9370 */ 747, 748, 749, 751, 750, 752, 687, 687, 687, 687, /* 9380 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9390 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9400 */ 208, 687, 687, 687, 687, 687, 687, 687, 111, 207, /* 9410 */ 209, 210, 211, 213, 214, 236, 687, 687, 266, 117, /* 9420 */ 687, 269, 128, 131, 687, 1006, 687, 687, 687, 687, /* 9430 */ 755, 756, 757, 189, 687, 687, 753, 754, 265, 687, /* 9440 */ 108, 687, 259, 687, 270, 114, 200, 123, 687, 687, /* 9450 */ 205, 120, 222, 102, 105, 99, 577, 216, 687, 687, /* 9460 */ 198, 687, 687, 687, 247, 169, 229, 687, 687, 687, /* 9470 */ 687, 687, 687, 687, 687, 687, 687, 215, 687, 687, /* 9480 */ 687, 212, 687, 268, 687, 687, 687, 687, 687, 687, /* 9490 */ 687, 687, 267, 687, 256, 258, 261, 260, 687, 747, /* 9500 */ 748, 749, 751, 750, 752, 687, 687, 687, 687, 687, /* 9510 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9520 */ 687, 687, 208, 687, 687, 687, 687, 687, 687, 687, /* 9530 */ 111, 207, 209, 210, 211, 213, 214, 236, 687, 687, /* 9540 */ 687, 117, 687, 687, 128, 131, 747, 748, 749, 751, /* 9550 */ 750, 752, 687, 687, 687, 189, 687, 687, 687, 755, /* 9560 */ 756, 687, 108, 777, 687, 753, 754, 114, 200, 123, /* 9570 */ 687, 687, 205, 120, 222, 102, 105, 99, 571, 216, /* 9580 */ 687, 687, 198, 687, 687, 687, 247, 169, 229, 687, /* 9590 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 215, /* 9600 */ 687, 999, 687, 212, 687, 687, 755, 756, 845, 687, /* 9610 */ 687, 687, 753, 754, 747, 748, 749, 751, 750, 752, /* 9620 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9630 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9640 */ 687, 687, 687, 687, 208, 687, 687, 687, 687, 687, /* 9650 */ 687, 687, 111, 207, 209, 210, 211, 213, 214, 236, /* 9660 */ 687, 687, 687, 117, 687, 687, 128, 131, 687, 1003, /* 9670 */ 687, 687, 687, 687, 755, 756, 845, 189, 687, 687, /* 9680 */ 753, 754, 687, 687, 108, 687, 687, 687, 687, 114, /* 9690 */ 200, 123, 687, 687, 205, 120, 222, 102, 105, 99, /* 9700 */ 605, 216, 687, 687, 198, 687, 687, 687, 247, 169, /* 9710 */ 229, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9720 */ 687, 215, 687, 687, 687, 212, 687, 687, 687, 687, /* 9730 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9740 */ 687, 385, 687, 687, 687, 687, 687, 687, 687, 687, /* 9750 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 371, /* 9760 */ 687, 687, 687, 687, 687, 687, 208, 687, 687, 687, /* 9770 */ 687, 687, 687, 687, 111, 207, 209, 210, 211, 213, /* 9780 */ 214, 236, 687, 687, 687, 117, 687, 687, 128, 131, /* 9790 */ 747, 748, 749, 751, 750, 752, 687, 687, 687, 189, /* 9800 */ 372, 373, 374, 375, 376, 377, 108, 687, 401, 402, /* 9810 */ 687, 114, 200, 123, 687, 687, 205, 120, 222, 102, /* 9820 */ 105, 99, 564, 216, 687, 687, 198, 687, 687, 687, /* 9830 */ 247, 169, 229, 687, 687, 687, 687, 687, 884, 687, /* 9840 */ 687, 687, 847, 215, 687, 687, 687, 212, 687, 687, /* 9850 */ 755, 756, 687, 687, 687, 687, 753, 754, 747, 748, /* 9860 */ 749, 751, 750, 752, 687, 687, 687, 687, 687, 687, /* 9870 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 9880 */ 687, 687, 687, 687, 687, 687, 687, 687, 208, 687, /* 9890 */ 687, 687, 687, 687, 687, 687, 111, 207, 209, 210, /* 9900 */ 211, 213, 214, 236, 687, 687, 687, 117, 687, 687, /* 9910 */ 128, 131, 747, 748, 749, 751, 750, 752, 755, 756, /* 9920 */ 687, 189, 777, 687, 753, 754, 687, 687, 108, 687, /* 9930 */ 687, 687, 687, 114, 200, 123, 687, 687, 205, 120, /* 9940 */ 222, 102, 105, 99, 423, 216, 687, 687, 193, 687, /* 9950 */ 687, 687, 247, 169, 229, 687, 687, 687, 687, 687, /* 9960 */ 904, 687, 371, 687, 815, 215, 687, 687, 687, 212, /* 9970 */ 687, 396, 755, 756, 687, 687, 687, 687, 753, 754, /* 9980 */ 747, 748, 749, 751, 750, 752, 687, 687, 687, 687, /* 9990 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 10000 */ 687, 687, 687, 372, 373, 374, 375, 376, 377, 687, /* 10010 */ 208, 687, 687, 687, 687, 687, 687, 687, 111, 207, /* 10020 */ 209, 210, 211, 213, 214, 236, 687, 687, 687, 117, /* 10030 */ 687, 687, 128, 131, 687, 1002, 687, 687, 687, 687, /* 10040 */ 755, 756, 845, 189, 687, 687, 753, 754, 687, 687, /* 10050 */ 108, 687, 687, 687, 687, 114, 200, 123, 687, 687, /* 10060 */ 205, 120, 222, 102, 105, 99, 687, 216, 687, 687, /* 10070 */ 193, 687, 687, 687, 247, 169, 229, 687, 687, 687, /* 10080 */ 687, 687, 687, 687, 687, 687, 687, 215, 687, 687, /* 10090 */ 687, 212, 687, 687, 687, 687, 687, 687, 687, 687, /* 10100 */ 687, 687, 165, 687, 687, 147, 145, 159, 149, 153, /* 10110 */ 155, 157, 101, 107, 113, 116, 119, 122, 110, 104, /* 10120 */ 133, 135, 143, 137, 139, 141, 687, 687, 687, 161, /* 10130 */ 163, 687, 208, 687, 687, 687, 151, 687, 130, 125, /* 10140 */ 111, 207, 209, 210, 211, 213, 214, 537, 55, 34, /* 10150 */ 687, 687, 687, 31, 416, 687, 687, 687, 687, 687, /* 10160 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 10170 */ 687, 687, 371, 687, 687, 687, 687, 687, 687, 687, /* 10180 */ 520, 35, 36, 37, 38, 39, 40, 41, 42, 43, /* 10190 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, /* 10200 */ 54, 56, 55, 34, 687, 687, 687, 676, 687, 687, /* 10210 */ 687, 517, 687, 372, 373, 374, 375, 376, 377, 687, /* 10220 */ 687, 457, 459, 461, 463, 687, 687, 687, 687, 687, /* 10230 */ 687, 687, 687, 687, 520, 35, 36, 37, 38, 39, /* 10240 */ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, /* 10250 */ 50, 51, 52, 53, 54, 56, 236, 687, 687, 687, /* 10260 */ 117, 687, 687, 128, 131, 517, 747, 748, 749, 751, /* 10270 */ 750, 752, 687, 687, 189, 457, 459, 461, 463, 687, /* 10280 */ 687, 108, 687, 687, 687, 687, 114, 200, 123, 687, /* 10290 */ 687, 205, 120, 222, 102, 105, 99, 687, 216, 687, /* 10300 */ 687, 198, 687, 687, 687, 247, 169, 229, 687, 687, /* 10310 */ 687, 687, 687, 687, 687, 687, 687, 687, 215, 687, /* 10320 */ 687, 1004, 212, 687, 687, 687, 755, 756, 845, 687, /* 10330 */ 687, 687, 753, 754, 687, 687, 687, 687, 687, 687, /* 10340 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 55, /* 10350 */ 34, 687, 687, 687, 665, 687, 687, 687, 687, 687, /* 10360 */ 687, 687, 687, 208, 687, 687, 687, 687, 687, 687, /* 10370 */ 687, 111, 207, 209, 210, 211, 213, 214, 687, 687, /* 10380 */ 687, 520, 35, 36, 37, 38, 39, 40, 41, 42, /* 10390 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, /* 10400 */ 53, 54, 56, 55, 34, 687, 687, 687, 821, 687, /* 10410 */ 687, 687, 517, 687, 687, 687, 687, 687, 687, 687, /* 10420 */ 687, 687, 457, 459, 461, 463, 687, 687, 687, 687, /* 10430 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 10440 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 10450 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 10460 */ 55, 34, 687, 687, 687, 660, 517, 687, 687, 687, /* 10470 */ 687, 687, 687, 687, 687, 687, 457, 459, 461, 463, /* 10480 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 10490 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 10500 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 10510 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 874, /* 10520 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 10530 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 10540 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 10550 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 10560 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 10570 */ 687, 687, 687, 55, 34, 687, 687, 517, 653, 687, /* 10580 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 10590 */ 463, 747, 748, 749, 751, 750, 752, 687, 687, 687, /* 10600 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 10610 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 10620 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 10630 */ 55, 34, 687, 687, 687, 828, 517, 687, 687, 687, /* 10640 */ 687, 687, 687, 759, 687, 687, 457, 459, 461, 463, /* 10650 */ 687, 755, 756, 687, 687, 687, 687, 753, 754, 687, /* 10660 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 10670 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 10680 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 356, /* 10690 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 10700 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 10710 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 10720 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 10730 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 10740 */ 687, 687, 687, 55, 34, 687, 687, 517, 835, 687, /* 10750 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 10760 */ 463, 747, 748, 749, 751, 750, 752, 687, 687, 687, /* 10770 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 10780 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 10790 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 10800 */ 55, 34, 687, 687, 687, 363, 517, 687, 687, 687, /* 10810 */ 687, 687, 687, 732, 687, 687, 457, 459, 461, 463, /* 10820 */ 687, 755, 756, 687, 687, 687, 687, 753, 754, 687, /* 10830 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 10840 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 10850 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 94, /* 10860 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 10870 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 10880 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 10890 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 10900 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 10910 */ 687, 687, 687, 55, 34, 687, 687, 517, 65, 687, /* 10920 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 10930 */ 463, 747, 748, 749, 751, 750, 752, 687, 687, 687, /* 10940 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 10950 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 10960 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 10970 */ 55, 34, 687, 687, 687, 842, 517, 687, 687, 687, /* 10980 */ 687, 687, 687, 847, 687, 687, 457, 459, 461, 463, /* 10990 */ 687, 755, 756, 687, 687, 687, 687, 753, 754, 687, /* 11000 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 11010 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 11020 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 853, /* 11030 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 11040 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 11050 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 11060 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 11070 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 11080 */ 687, 687, 687, 55, 34, 687, 687, 517, 70, 687, /* 11090 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 11100 */ 463, 747, 748, 749, 751, 750, 752, 687, 687, 687, /* 11110 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 11120 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 11130 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 11140 */ 55, 34, 687, 687, 687, 558, 517, 687, 687, 687, /* 11150 */ 687, 687, 687, 815, 687, 687, 457, 459, 461, 463, /* 11160 */ 687, 755, 756, 687, 687, 687, 687, 753, 754, 687, /* 11170 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 11180 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 11190 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 544, /* 11200 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 11210 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 11220 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 11230 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 11240 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 11250 */ 687, 687, 687, 55, 34, 687, 687, 517, 867, 687, /* 11260 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 11270 */ 463, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11280 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 11290 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 11300 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 11310 */ 55, 34, 687, 687, 687, 538, 517, 687, 687, 687, /* 11320 */ 687, 687, 687, 687, 687, 687, 457, 459, 461, 463, /* 11330 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11340 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 11350 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 11360 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 532, /* 11370 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 11380 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 11390 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 11400 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 11410 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 11420 */ 687, 687, 687, 55, 34, 687, 687, 517, 82, 687, /* 11430 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 11440 */ 463, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11450 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 11460 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 11470 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 11480 */ 55, 34, 687, 687, 687, 85, 517, 687, 687, 687, /* 11490 */ 687, 687, 687, 687, 687, 687, 457, 459, 461, 463, /* 11500 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11510 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 11520 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 11530 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 525, /* 11540 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 11550 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 11560 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 11570 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 11580 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 11590 */ 687, 687, 687, 55, 34, 687, 687, 517, 90, 687, /* 11600 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 11610 */ 463, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11620 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 11630 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 11640 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 11650 */ 55, 34, 687, 687, 687, 860, 517, 687, 687, 687, /* 11660 */ 687, 687, 687, 687, 687, 687, 457, 459, 461, 463, /* 11670 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11680 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 11690 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 11700 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 712, /* 11710 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 11720 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 11730 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 11740 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 11750 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 11760 */ 687, 687, 687, 55, 34, 687, 687, 517, 349, 687, /* 11770 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 11780 */ 463, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11790 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 11800 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 11810 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 11820 */ 55, 34, 687, 687, 687, 707, 517, 687, 687, 687, /* 11830 */ 687, 687, 687, 687, 687, 687, 457, 459, 461, 463, /* 11840 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11850 */ 687, 687, 520, 35, 36, 37, 38, 39, 40, 41, /* 11860 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 11870 */ 52, 53, 54, 56, 55, 34, 687, 687, 687, 346, /* 11880 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 11890 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 11900 */ 687, 687, 687, 687, 687, 687, 520, 35, 36, 37, /* 11910 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 11920 */ 48, 49, 50, 51, 52, 53, 54, 56, 687, 687, /* 11930 */ 687, 687, 687, 55, 34, 687, 687, 517, 698, 687, /* 11940 */ 687, 687, 687, 687, 687, 687, 687, 457, 459, 461, /* 11950 */ 463, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 11960 */ 687, 687, 687, 687, 687, 520, 35, 36, 37, 38, /* 11970 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 11980 */ 49, 50, 51, 52, 53, 54, 56, 687, 687, 687, /* 11990 */ 55, 34, 687, 687, 687, 687, 517, 687, 687, 687, /* 12000 */ 687, 687, 687, 687, 687, 687, 457, 459, 461, 463, /* 12010 */ 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, /* 12020 */ 687, 687, 33, 35, 36, 37, 38, 39, 40, 41, /* 12030 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 12040 */ 52, 53, 54, 56, 687, 687, 687, 687, 687, 687, /* 12050 */ 687, 687, 687, 517, 687, 687, 687, 687, 687, 687, /* 12060 */ 687, 687, 687, 457, 459, 461, 463, 687, 687, 687, /* 12070 */ 687, 687, 687, 687, 165, 687, 687, 147, 145, 159, /* 12080 */ 149, 153, 155, 157, 101, 107, 113, 116, 119, 122, /* 12090 */ 110, 104, 133, 135, 143, 137, 139, 141, 687, 687, /* 12100 */ 687, 161, 163, 687, 687, 687, 687, 687, 151, 687, /* 12110 */ 130, 125, 165, 687, 471, 147, 145, 159, 149, 153, /* 12120 */ 155, 157, 101, 107, 113, 116, 119, 122, 110, 104, /* 12130 */ 133, 135, 143, 137, 139, 141, 687, 687, 687, 161, /* 12140 */ 163, 687, 687, 687, 687, 687, 151, 687, 130, 125, /* 12150 */ 165, 687, 467, 147, 145, 159, 149, 153, 155, 157, /* 12160 */ 101, 107, 113, 116, 119, 122, 110, 104, 133, 135, /* 12170 */ 143, 137, 139, 141, 687, 687, 687, 161, 163, 687, /* 12180 */ 687, 687, 687, 687, 151, 687, 130, 125, 165, 687, /* 12190 */ 687, 147, 145, 159, 149, 153, 155, 157, 101, 107, /* 12200 */ 113, 116, 119, 122, 110, 104, 133, 135, 143, 137, /* 12210 */ 139, 141, 687, 687, 687, 161, 163, 687, 687, 687, /* 12220 */ 687, 687, 151, 687, 130, 125, 687, 687, 477, 687, /* 12230 */ 687, 687, 687, 165, 167, 687, 147, 145, 159, 149, /* 12240 */ 153, 155, 157, 101, 107, 113, 116, 119, 122, 110, /* 12250 */ 104, 133, 135, 143, 137, 139, 141, 687, 687, 687, /* 12260 */ 161, 163, 687, 687, 687, 687, 687, 151, 687, 130, /* 12270 */ 125, 165, 687, 687, 147, 145, 159, 149, 153, 155, /* 12280 */ 157, 101, 107, 113, 116, 119, 122, 110, 104, 133, /* 12290 */ 135, 143, 137, 139, 141, 687, 687, 687, 161, 163, /* 12300 */ 687, 687, 687, 687, 687, 151, 687, 130, 125, 687, /* 12310 */ 687, 687, 687, 687, 687, 687, 362, 1382, 165, 687, /* 12320 */ 687, 147, 145, 159, 149, 153, 155, 157, 101, 107, /* 12330 */ 113, 116, 119, 122, 110, 104, 133, 135, 143, 137, /* 12340 */ 139, 141, 687, 687, 687, 161, 163, 687, 687, 687, /* 12350 */ 687, 687, 151, 687, 130, 125, 687, 687, 687, 687, /* 12360 */ 687, 687, 687, 531, 687, 165, 687, 687, 147, 145, /* 12370 */ 159, 149, 153, 155, 157, 101, 107, 113, 116, 119, /* 12380 */ 122, 110, 104, 133, 135, 143, 137, 139, 141, 687, /* 12390 */ 687, 687, 161, 163, 687, 687, 687, 687, 687, 151, /* 12400 */ 687, 130, 125, 165, 687, 474, 147, 145, 159, 149, /* 12410 */ 153, 155, 157, 101, 107, 113, 116, 119, 122, 110, /* 12420 */ 104, 133, 135, 143, 137, 139, 141, 687, 687, 687, /* 12430 */ 161, 163, 687, 687, 687, 687, 687, 151, 687, 130, /* 12440 */ 125, 687, 687, 687, 687, 687, 687, 687, 524, }; static YYCODETYPE yy_lookahead[] = { /* 0 */ 4, 155, 49, 203, 8, 205, 206, 11, 12, 56, /* 10 */ 28, 29, 30, 31, 32, 33, 63, 59, 22, 37, /* 20 */ 38, 164, 165, 166, 167, 29, 44, 56, 46, 47, /* 30 */ 34, 35, 36, 90, 91, 39, 40, 41, 42, 43, /* 40 */ 44, 9, 46, 49, 200, 49, 50, 214, 215, 53, /* 50 */ 54, 55, 56, 154, 210, 211, 212, 213, 7, 63, /* 60 */ 216, 162, 66, 219, 220, 221, 70, 16, 54, 73, /* 70 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 80 */ 152, 7, 154, 87, 88, 89, 54, 159, 92, 161, /* 90 */ 162, 200, 96, 97, 98, 99, 44, 101, 46, 47, /* 100 */ 104, 210, 211, 212, 213, 50, 55, 111, 217, 218, /* 110 */ 55, 115, 116, 117, 118, 119, 120, 121, 122, 123, /* 120 */ 124, 125, 126, 4, 50, 50, 94, 8, 7, 146, /* 130 */ 11, 12, 149, 150, 151, 55, 153, 154, 58, 200, /* 140 */ 60, 22, 159, 160, 112, 162, 214, 215, 29, 210, /* 150 */ 211, 212, 213, 34, 35, 36, 217, 218, 39, 40, /* 160 */ 41, 42, 43, 44, 49, 46, 7, 200, 49, 50, /* 170 */ 55, 50, 53, 54, 55, 56, 154, 210, 211, 212, /* 180 */ 213, 66, 63, 161, 162, 66, 219, 220, 221, 70, /* 190 */ 56, 23, 73, 74, 75, 76, 77, 78, 79, 80, /* 200 */ 81, 82, 83, 37, 38, 155, 87, 88, 89, 7, /* 210 */ 44, 92, 46, 47, 46, 96, 97, 98, 99, 203, /* 220 */ 101, 205, 206, 104, 64, 47, 49, 93, 50, 95, /* 230 */ 111, 72, 55, 55, 115, 116, 117, 118, 119, 120, /* 240 */ 121, 122, 123, 124, 125, 126, 4, 7, 9, 203, /* 250 */ 8, 205, 206, 11, 12, 131, 132, 133, 134, 135, /* 260 */ 136, 137, 138, 203, 22, 105, 106, 107, 108, 109, /* 270 */ 110, 29, 222, 223, 224, 225, 34, 35, 36, 214, /* 280 */ 215, 39, 40, 41, 42, 43, 44, 203, 46, 200, /* 290 */ 50, 49, 50, 54, 49, 53, 54, 55, 56, 210, /* 300 */ 211, 212, 213, 154, 102, 63, 217, 218, 66, 160, /* 310 */ 49, 162, 70, 214, 215, 73, 74, 75, 76, 77, /* 320 */ 78, 79, 80, 81, 82, 83, 214, 215, 50, 87, /* 330 */ 88, 89, 7, 55, 92, 46, 47, 200, 96, 97, /* 340 */ 98, 99, 64, 101, 201, 202, 104, 210, 211, 212, /* 350 */ 213, 112, 54, 111, 217, 218, 111, 115, 116, 117, /* 360 */ 118, 119, 120, 121, 122, 123, 124, 125, 126, 4, /* 370 */ 200, 165, 166, 8, 168, 50, 11, 12, 208, 209, /* 380 */ 210, 211, 212, 213, 148, 155, 150, 22, 152, 42, /* 390 */ 154, 44, 194, 195, 29, 159, 49, 161, 162, 34, /* 400 */ 35, 36, 214, 215, 39, 40, 41, 42, 43, 44, /* 410 */ 112, 46, 200, 49, 49, 50, 7, 7, 53, 54, /* 420 */ 55, 56, 210, 211, 212, 213, 49, 7, 63, 217, /* 430 */ 218, 66, 55, 214, 215, 70, 7, 7, 73, 74, /* 440 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 42, /* 450 */ 7, 44, 87, 88, 89, 45, 49, 92, 55, 50, /* 460 */ 200, 96, 97, 98, 99, 45, 101, 214, 215, 104, /* 470 */ 210, 211, 212, 213, 56, 45, 111, 217, 218, 50, /* 480 */ 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, /* 490 */ 125, 126, 4, 50, 150, 151, 8, 153, 154, 11, /* 500 */ 12, 200, 55, 159, 160, 58, 162, 60, 214, 215, /* 510 */ 22, 210, 211, 212, 213, 155, 44, 29, 217, 218, /* 520 */ 56, 49, 34, 35, 36, 90, 91, 39, 40, 41, /* 530 */ 42, 43, 44, 55, 46, 200, 58, 49, 50, 7, /* 540 */ 49, 53, 54, 55, 56, 210, 211, 212, 213, 7, /* 550 */ 49, 63, 217, 218, 66, 7, 55, 93, 70, 95, /* 560 */ 64, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 570 */ 82, 83, 214, 215, 50, 87, 88, 89, 144, 55, /* 580 */ 92, 147, 50, 200, 96, 97, 98, 99, 64, 101, /* 590 */ 145, 7, 104, 210, 211, 212, 213, 55, 50, 111, /* 600 */ 217, 218, 111, 115, 116, 117, 118, 119, 120, 121, /* 610 */ 122, 123, 124, 125, 126, 4, 149, 50, 151, 8, /* 620 */ 153, 154, 11, 12, 200, 55, 159, 160, 58, 162, /* 630 */ 60, 49, 49, 22, 210, 211, 212, 213, 44, 55, /* 640 */ 29, 217, 218, 49, 7, 34, 35, 36, 66, 66, /* 650 */ 39, 40, 41, 42, 43, 44, 23, 46, 200, 7, /* 660 */ 49, 50, 7, 7, 53, 54, 55, 56, 210, 211, /* 670 */ 212, 213, 49, 7, 63, 217, 218, 66, 55, 94, /* 680 */ 203, 70, 45, 206, 73, 74, 75, 76, 77, 78, /* 690 */ 79, 80, 81, 82, 83, 192, 193, 112, 87, 88, /* 700 */ 89, 47, 50, 92, 50, 50, 50, 96, 97, 98, /* 710 */ 99, 45, 101, 49, 151, 104, 153, 154, 47, 90, /* 720 */ 91, 50, 111, 160, 7, 162, 115, 116, 117, 118, /* 730 */ 119, 120, 121, 122, 123, 124, 125, 126, 4, 200, /* 740 */ 49, 47, 8, 204, 50, 11, 12, 200, 55, 210, /* 750 */ 211, 212, 213, 60, 63, 7, 22, 210, 211, 212, /* 760 */ 213, 50, 45, 29, 217, 218, 55, 44, 34, 35, /* 770 */ 36, 155, 49, 39, 40, 41, 42, 43, 44, 47, /* 780 */ 46, 200, 50, 49, 50, 55, 7, 53, 54, 55, /* 790 */ 56, 210, 211, 212, 213, 133, 7, 63, 217, 218, /* 800 */ 66, 139, 144, 144, 70, 147, 147, 73, 74, 75, /* 810 */ 76, 77, 78, 79, 80, 81, 82, 83, 49, 141, /* 820 */ 72, 87, 88, 89, 45, 203, 92, 64, 206, 7, /* 830 */ 96, 97, 98, 99, 45, 101, 55, 50, 104, 223, /* 840 */ 224, 225, 55, 165, 166, 111, 168, 7, 140, 115, /* 850 */ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, /* 860 */ 126, 4, 49, 203, 54, 8, 206, 45, 11, 12, /* 870 */ 200, 163, 164, 165, 166, 167, 157, 158, 52, 22, /* 880 */ 210, 211, 212, 213, 50, 45, 29, 217, 218, 55, /* 890 */ 7, 34, 35, 36, 141, 191, 39, 40, 41, 42, /* 900 */ 43, 44, 49, 46, 200, 7, 49, 50, 7, 7, /* 910 */ 53, 54, 55, 56, 210, 211, 212, 213, 165, 166, /* 920 */ 63, 168, 7, 66, 111, 145, 144, 70, 45, 147, /* 930 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, /* 940 */ 83, 49, 141, 45, 87, 88, 89, 45, 155, 92, /* 950 */ 162, 50, 200, 96, 97, 98, 99, 49, 101, 207, /* 960 */ 45, 104, 210, 211, 212, 213, 165, 166, 111, 168, /* 970 */ 7, 112, 115, 116, 117, 118, 119, 120, 121, 122, /* 980 */ 123, 124, 125, 126, 4, 200, 154, 133, 8, 204, /* 990 */ 7, 11, 12, 7, 162, 210, 211, 212, 213, 154, /* 1000 */ 200, 44, 22, 155, 204, 49, 49, 162, 45, 29, /* 1010 */ 210, 211, 212, 213, 34, 35, 36, 141, 225, 39, /* 1020 */ 40, 41, 42, 43, 44, 7, 46, 200, 45, 49, /* 1030 */ 50, 45, 7, 53, 54, 55, 56, 210, 211, 212, /* 1040 */ 213, 165, 166, 63, 168, 7, 66, 50, 221, 203, /* 1050 */ 70, 7, 55, 73, 74, 75, 76, 77, 78, 79, /* 1060 */ 80, 81, 82, 83, 55, 141, 191, 87, 88, 89, /* 1070 */ 45, 64, 92, 203, 56, 200, 96, 97, 98, 99, /* 1080 */ 72, 101, 155, 45, 104, 210, 211, 212, 213, 165, /* 1090 */ 166, 111, 168, 140, 50, 115, 116, 117, 118, 119, /* 1100 */ 120, 121, 122, 123, 124, 125, 126, 4, 50, 141, /* 1110 */ 49, 8, 49, 55, 11, 12, 163, 164, 165, 166, /* 1120 */ 167, 196, 197, 47, 55, 22, 50, 47, 199, 60, /* 1130 */ 50, 55, 29, 165, 166, 55, 168, 34, 35, 36, /* 1140 */ 165, 166, 39, 40, 41, 42, 43, 44, 54, 46, /* 1150 */ 200, 7, 49, 50, 204, 49, 53, 54, 55, 56, /* 1160 */ 210, 211, 212, 213, 47, 50, 63, 50, 144, 66, /* 1170 */ 55, 147, 55, 70, 198, 199, 73, 74, 75, 76, /* 1180 */ 77, 78, 79, 80, 81, 82, 83, 56, 50, 45, /* 1190 */ 87, 88, 89, 55, 49, 92, 214, 215, 200, 96, /* 1200 */ 97, 98, 99, 144, 101, 49, 147, 104, 210, 211, /* 1210 */ 212, 213, 90, 91, 111, 66, 218, 140, 115, 116, /* 1220 */ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, /* 1230 */ 4, 64, 192, 193, 8, 145, 54, 11, 12, 200, /* 1240 */ 163, 164, 165, 166, 167, 64, 54, 54, 22, 210, /* 1250 */ 211, 212, 213, 55, 112, 29, 47, 56, 97, 50, /* 1260 */ 34, 35, 36, 49, 55, 39, 40, 41, 42, 43, /* 1270 */ 44, 49, 46, 200, 203, 49, 50, 204, 155, 53, /* 1280 */ 54, 55, 56, 210, 211, 212, 213, 47, 155, 63, /* 1290 */ 50, 50, 66, 50, 94, 55, 70, 50, 23, 73, /* 1300 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 1310 */ 56, 55, 191, 87, 88, 89, 49, 145, 92, 195, /* 1320 */ 49, 200, 96, 97, 98, 99, 64, 101, 165, 72, /* 1330 */ 104, 210, 211, 212, 213, 203, 50, 111, 49, 193, /* 1340 */ 64, 115, 116, 117, 118, 119, 120, 121, 122, 123, /* 1350 */ 124, 125, 126, 4, 200, 56, 54, 8, 204, 155, /* 1360 */ 11, 12, 203, 200, 210, 211, 212, 213, 54, 49, /* 1370 */ 49, 22, 155, 210, 211, 212, 213, 49, 29, 55, /* 1380 */ 102, 94, 56, 34, 35, 36, 56, 54, 39, 40, /* 1390 */ 41, 42, 43, 44, 155, 46, 200, 49, 49, 50, /* 1400 */ 204, 64, 53, 54, 55, 56, 210, 211, 212, 213, /* 1410 */ 49, 64, 63, 42, 7, 66, 64, 165, 55, 70, /* 1420 */ 147, 156, 73, 74, 75, 76, 77, 78, 79, 80, /* 1430 */ 81, 82, 83, 50, 155, 191, 87, 88, 89, 50, /* 1440 */ 64, 92, 54, 155, 200, 96, 97, 98, 99, 156, /* 1450 */ 101, 50, 49, 104, 210, 211, 212, 213, 54, 50, /* 1460 */ 111, 55, 50, 140, 115, 116, 117, 118, 119, 120, /* 1470 */ 121, 122, 123, 124, 125, 126, 4, 55, 64, 16, /* 1480 */ 8, 49, 155, 11, 12, 200, 163, 164, 165, 166, /* 1490 */ 167, 50, 158, 50, 22, 210, 211, 212, 213, 145, /* 1500 */ 143, 29, 50, 49, 64, 55, 34, 35, 36, 50, /* 1510 */ 97, 39, 40, 41, 42, 43, 44, 64, 46, 200, /* 1520 */ 143, 49, 50, 204, 49, 53, 54, 55, 56, 210, /* 1530 */ 211, 212, 213, 50, 56, 63, 156, 155, 66, 145, /* 1540 */ 49, 155, 70, 156, 49, 73, 74, 75, 76, 77, /* 1550 */ 78, 79, 80, 81, 82, 83, 55, 50, 191, 87, /* 1560 */ 88, 89, 64, 94, 92, 155, 50, 200, 96, 97, /* 1570 */ 98, 99, 55, 101, 49, 215, 104, 210, 211, 212, /* 1580 */ 213, 155, 100, 111, 64, 59, 54, 115, 116, 117, /* 1590 */ 118, 119, 120, 121, 122, 123, 124, 125, 126, 4, /* 1600 */ 200, 55, 50, 8, 155, 203, 11, 12, 200, 209, /* 1610 */ 210, 211, 212, 213, 64, 49, 49, 22, 210, 211, /* 1620 */ 212, 213, 145, 50, 29, 145, 49, 202, 50, 34, /* 1630 */ 35, 36, 145, 49, 39, 40, 41, 42, 43, 44, /* 1640 */ 64, 46, 200, 55, 49, 50, 204, 145, 53, 54, /* 1650 */ 55, 56, 210, 211, 212, 213, 56, 54, 63, 155, /* 1660 */ 64, 66, 0, 56, 94, 70, 45, 49, 73, 74, /* 1670 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 50, /* 1680 */ 54, 191, 87, 88, 89, 155, 64, 92, 155, 49, /* 1690 */ 200, 96, 97, 98, 99, 54, 101, 54, 54, 104, /* 1700 */ 210, 211, 212, 213, 56, 23, 111, 50, 155, 140, /* 1710 */ 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, /* 1720 */ 125, 126, 4, 49, 56, 64, 8, 54, 94, 11, /* 1730 */ 12, 200, 163, 164, 165, 166, 167, 203, 203, 145, /* 1740 */ 22, 210, 211, 212, 213, 94, 49, 29, 197, 49, /* 1750 */ 226, 226, 34, 35, 36, 226, 226, 39, 40, 41, /* 1760 */ 42, 43, 44, 226, 46, 200, 226, 49, 50, 204, /* 1770 */ 226, 53, 54, 55, 56, 210, 211, 212, 213, 226, /* 1780 */ 226, 63, 226, 226, 66, 226, 226, 226, 70, 226, /* 1790 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 1800 */ 82, 83, 226, 226, 191, 87, 88, 89, 226, 226, /* 1810 */ 92, 226, 226, 200, 96, 97, 98, 99, 226, 101, /* 1820 */ 226, 226, 104, 210, 211, 212, 213, 226, 226, 111, /* 1830 */ 226, 226, 140, 115, 116, 117, 118, 119, 120, 121, /* 1840 */ 122, 123, 124, 125, 126, 4, 226, 226, 226, 8, /* 1850 */ 226, 226, 11, 12, 200, 163, 164, 165, 166, 167, /* 1860 */ 226, 226, 226, 22, 210, 211, 212, 213, 226, 226, /* 1870 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 1880 */ 39, 40, 41, 42, 43, 44, 226, 46, 200, 226, /* 1890 */ 49, 50, 204, 226, 53, 54, 55, 56, 210, 211, /* 1900 */ 212, 213, 226, 226, 63, 226, 226, 66, 226, 226, /* 1910 */ 226, 70, 226, 226, 73, 74, 75, 76, 77, 78, /* 1920 */ 79, 80, 81, 82, 83, 226, 226, 226, 87, 88, /* 1930 */ 89, 226, 226, 92, 226, 226, 200, 96, 97, 98, /* 1940 */ 99, 226, 101, 226, 226, 104, 210, 211, 212, 213, /* 1950 */ 226, 226, 111, 226, 226, 140, 115, 116, 117, 118, /* 1960 */ 119, 120, 121, 122, 123, 124, 125, 126, 4, 226, /* 1970 */ 226, 226, 8, 226, 226, 11, 12, 200, 163, 164, /* 1980 */ 165, 166, 167, 226, 226, 226, 22, 210, 211, 212, /* 1990 */ 213, 226, 226, 29, 226, 226, 226, 226, 34, 35, /* 2000 */ 36, 226, 226, 39, 40, 41, 42, 43, 44, 226, /* 2010 */ 46, 200, 226, 49, 50, 204, 226, 53, 54, 55, /* 2020 */ 56, 210, 211, 212, 213, 226, 226, 63, 226, 226, /* 2030 */ 66, 226, 226, 226, 70, 226, 226, 73, 74, 75, /* 2040 */ 76, 77, 78, 79, 80, 81, 82, 83, 226, 226, /* 2050 */ 226, 87, 88, 89, 226, 226, 92, 226, 226, 200, /* 2060 */ 96, 97, 98, 99, 226, 101, 226, 226, 104, 210, /* 2070 */ 211, 212, 213, 226, 226, 111, 226, 226, 140, 115, /* 2080 */ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, /* 2090 */ 126, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 2100 */ 200, 163, 164, 165, 166, 167, 226, 226, 226, 22, /* 2110 */ 210, 211, 212, 213, 226, 226, 29, 226, 226, 226, /* 2120 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 2130 */ 43, 44, 226, 46, 200, 226, 49, 50, 204, 226, /* 2140 */ 53, 54, 55, 56, 210, 211, 212, 213, 226, 226, /* 2150 */ 63, 226, 226, 66, 226, 226, 226, 70, 226, 226, /* 2160 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, /* 2170 */ 83, 226, 226, 226, 87, 88, 89, 226, 226, 92, /* 2180 */ 226, 226, 200, 96, 97, 98, 99, 226, 101, 226, /* 2190 */ 226, 104, 210, 211, 212, 213, 226, 226, 111, 226, /* 2200 */ 226, 226, 115, 116, 117, 118, 119, 120, 121, 122, /* 2210 */ 123, 124, 125, 126, 4, 200, 226, 226, 8, 204, /* 2220 */ 226, 11, 12, 200, 226, 210, 211, 212, 213, 226, /* 2230 */ 226, 226, 22, 210, 211, 212, 213, 226, 226, 29, /* 2240 */ 226, 226, 226, 226, 34, 35, 36, 226, 226, 39, /* 2250 */ 40, 41, 42, 43, 44, 226, 46, 200, 226, 49, /* 2260 */ 50, 204, 226, 53, 54, 55, 56, 210, 211, 212, /* 2270 */ 213, 226, 226, 63, 226, 226, 66, 226, 226, 226, /* 2280 */ 70, 226, 226, 73, 74, 75, 76, 77, 78, 79, /* 2290 */ 80, 81, 82, 83, 226, 226, 226, 87, 88, 89, /* 2300 */ 226, 226, 92, 226, 226, 200, 96, 97, 98, 99, /* 2310 */ 226, 101, 226, 226, 104, 210, 211, 212, 213, 226, /* 2320 */ 226, 111, 226, 226, 140, 115, 116, 117, 118, 119, /* 2330 */ 120, 121, 122, 123, 124, 125, 126, 4, 226, 226, /* 2340 */ 226, 8, 226, 226, 11, 12, 200, 163, 164, 165, /* 2350 */ 166, 167, 226, 226, 226, 22, 210, 211, 212, 213, /* 2360 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 2370 */ 226, 226, 39, 40, 41, 42, 43, 44, 226, 46, /* 2380 */ 200, 226, 49, 50, 204, 226, 53, 54, 55, 56, /* 2390 */ 210, 211, 212, 213, 226, 226, 63, 226, 226, 66, /* 2400 */ 226, 226, 226, 70, 226, 226, 73, 74, 75, 76, /* 2410 */ 77, 78, 79, 80, 81, 82, 83, 226, 226, 226, /* 2420 */ 87, 88, 89, 226, 226, 92, 226, 226, 200, 96, /* 2430 */ 97, 98, 99, 226, 101, 226, 226, 104, 210, 211, /* 2440 */ 212, 213, 226, 226, 111, 226, 226, 140, 115, 116, /* 2450 */ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, /* 2460 */ 4, 226, 226, 226, 8, 226, 226, 11, 12, 200, /* 2470 */ 163, 164, 165, 166, 167, 226, 226, 226, 22, 210, /* 2480 */ 211, 212, 213, 226, 226, 29, 226, 226, 226, 226, /* 2490 */ 34, 35, 36, 226, 226, 39, 40, 41, 42, 43, /* 2500 */ 44, 226, 46, 200, 226, 49, 50, 226, 226, 53, /* 2510 */ 54, 55, 56, 210, 211, 212, 213, 226, 226, 63, /* 2520 */ 226, 226, 66, 226, 226, 226, 70, 226, 226, 73, /* 2530 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 2540 */ 226, 226, 226, 87, 88, 89, 226, 226, 92, 226, /* 2550 */ 226, 200, 96, 97, 98, 99, 226, 101, 226, 226, /* 2560 */ 104, 210, 211, 212, 213, 226, 226, 111, 226, 226, /* 2570 */ 226, 115, 116, 117, 118, 119, 120, 121, 122, 123, /* 2580 */ 124, 125, 126, 4, 226, 226, 151, 8, 226, 154, /* 2590 */ 11, 12, 200, 226, 159, 160, 226, 162, 226, 226, /* 2600 */ 226, 22, 210, 211, 212, 213, 226, 226, 29, 226, /* 2610 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 2620 */ 41, 42, 43, 44, 226, 46, 200, 226, 49, 50, /* 2630 */ 226, 226, 53, 54, 55, 56, 210, 211, 212, 213, /* 2640 */ 226, 226, 63, 226, 226, 66, 226, 226, 226, 70, /* 2650 */ 226, 226, 73, 74, 75, 76, 77, 78, 79, 80, /* 2660 */ 81, 82, 83, 226, 226, 226, 87, 88, 89, 226, /* 2670 */ 226, 92, 226, 226, 200, 96, 97, 98, 99, 226, /* 2680 */ 101, 226, 226, 104, 210, 211, 212, 213, 226, 226, /* 2690 */ 111, 226, 226, 226, 115, 116, 117, 118, 119, 120, /* 2700 */ 121, 122, 123, 124, 125, 126, 4, 200, 226, 226, /* 2710 */ 8, 226, 226, 11, 12, 200, 226, 210, 211, 212, /* 2720 */ 213, 226, 226, 226, 22, 210, 211, 212, 213, 226, /* 2730 */ 226, 29, 226, 226, 226, 226, 34, 35, 36, 226, /* 2740 */ 226, 39, 40, 41, 42, 43, 44, 226, 46, 200, /* 2750 */ 226, 49, 50, 226, 226, 53, 54, 55, 56, 210, /* 2760 */ 211, 212, 213, 226, 226, 63, 226, 226, 66, 226, /* 2770 */ 226, 226, 70, 226, 226, 73, 74, 75, 76, 77, /* 2780 */ 78, 79, 80, 81, 82, 83, 226, 226, 226, 87, /* 2790 */ 88, 89, 226, 226, 92, 226, 226, 226, 96, 97, /* 2800 */ 98, 99, 226, 101, 226, 226, 104, 226, 226, 226, /* 2810 */ 226, 226, 226, 111, 226, 226, 226, 115, 116, 117, /* 2820 */ 118, 119, 120, 121, 122, 123, 124, 125, 126, 4, /* 2830 */ 200, 226, 226, 8, 226, 226, 11, 12, 200, 226, /* 2840 */ 210, 211, 212, 213, 226, 226, 226, 22, 210, 211, /* 2850 */ 212, 213, 226, 226, 29, 226, 226, 226, 226, 34, /* 2860 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 2870 */ 226, 46, 200, 226, 49, 50, 226, 226, 53, 54, /* 2880 */ 55, 56, 210, 211, 212, 213, 226, 226, 63, 226, /* 2890 */ 226, 66, 226, 226, 226, 70, 226, 226, 73, 74, /* 2900 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 226, /* 2910 */ 226, 226, 87, 88, 89, 226, 226, 92, 226, 226, /* 2920 */ 200, 96, 97, 98, 99, 226, 101, 226, 226, 104, /* 2930 */ 210, 211, 212, 213, 226, 226, 111, 226, 226, 226, /* 2940 */ 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, /* 2950 */ 125, 126, 4, 200, 226, 226, 8, 226, 226, 11, /* 2960 */ 12, 200, 226, 210, 211, 212, 213, 226, 226, 226, /* 2970 */ 22, 210, 211, 212, 213, 226, 226, 29, 226, 226, /* 2980 */ 226, 226, 34, 35, 36, 226, 226, 39, 40, 41, /* 2990 */ 42, 43, 44, 226, 46, 200, 226, 49, 50, 226, /* 3000 */ 226, 53, 54, 55, 56, 210, 211, 212, 213, 226, /* 3010 */ 226, 63, 226, 226, 66, 226, 226, 226, 70, 226, /* 3020 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 3030 */ 82, 83, 226, 226, 226, 87, 88, 89, 226, 226, /* 3040 */ 92, 226, 226, 200, 96, 97, 98, 99, 226, 101, /* 3050 */ 226, 226, 104, 210, 211, 212, 213, 226, 226, 111, /* 3060 */ 226, 226, 226, 115, 116, 117, 118, 119, 120, 121, /* 3070 */ 122, 123, 124, 125, 126, 4, 200, 226, 226, 8, /* 3080 */ 226, 226, 11, 12, 200, 226, 210, 211, 212, 213, /* 3090 */ 226, 226, 226, 22, 210, 211, 212, 213, 226, 226, /* 3100 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 3110 */ 39, 40, 41, 42, 43, 44, 226, 46, 200, 226, /* 3120 */ 49, 50, 226, 226, 53, 54, 55, 56, 210, 211, /* 3130 */ 212, 213, 226, 226, 63, 226, 226, 66, 226, 226, /* 3140 */ 226, 70, 226, 226, 73, 74, 75, 76, 77, 78, /* 3150 */ 79, 80, 81, 82, 83, 226, 226, 226, 87, 88, /* 3160 */ 89, 226, 226, 92, 226, 226, 200, 96, 97, 98, /* 3170 */ 99, 226, 101, 226, 226, 104, 210, 211, 212, 213, /* 3180 */ 226, 226, 111, 226, 226, 226, 115, 116, 117, 118, /* 3190 */ 119, 120, 121, 122, 123, 124, 125, 126, 4, 200, /* 3200 */ 226, 226, 8, 226, 226, 11, 12, 200, 226, 210, /* 3210 */ 211, 212, 213, 226, 226, 226, 22, 210, 211, 212, /* 3220 */ 213, 226, 226, 29, 226, 226, 226, 226, 34, 35, /* 3230 */ 36, 226, 226, 39, 40, 41, 42, 43, 44, 226, /* 3240 */ 46, 200, 226, 49, 50, 226, 226, 53, 54, 55, /* 3250 */ 56, 210, 211, 212, 213, 226, 226, 63, 226, 226, /* 3260 */ 66, 226, 226, 226, 70, 226, 226, 73, 74, 75, /* 3270 */ 76, 77, 78, 79, 80, 81, 82, 83, 226, 226, /* 3280 */ 226, 87, 88, 89, 226, 226, 92, 226, 226, 200, /* 3290 */ 96, 97, 98, 99, 226, 101, 226, 226, 104, 210, /* 3300 */ 211, 212, 213, 226, 226, 111, 226, 226, 226, 115, /* 3310 */ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, /* 3320 */ 126, 4, 200, 226, 226, 8, 226, 226, 11, 12, /* 3330 */ 200, 226, 210, 211, 212, 213, 226, 226, 226, 22, /* 3340 */ 210, 211, 212, 213, 226, 226, 29, 226, 226, 226, /* 3350 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 3360 */ 43, 44, 226, 46, 200, 226, 49, 50, 226, 226, /* 3370 */ 53, 54, 55, 56, 210, 211, 212, 213, 226, 226, /* 3380 */ 63, 226, 226, 66, 226, 226, 226, 70, 226, 226, /* 3390 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, /* 3400 */ 83, 226, 226, 226, 87, 88, 89, 226, 226, 92, /* 3410 */ 226, 226, 200, 96, 97, 98, 99, 226, 101, 226, /* 3420 */ 226, 104, 210, 211, 212, 213, 226, 226, 111, 226, /* 3430 */ 226, 226, 115, 116, 117, 118, 119, 120, 121, 122, /* 3440 */ 123, 124, 125, 126, 4, 200, 226, 226, 8, 226, /* 3450 */ 226, 11, 12, 200, 226, 210, 211, 212, 213, 226, /* 3460 */ 226, 226, 22, 210, 211, 212, 213, 226, 226, 29, /* 3470 */ 226, 226, 226, 226, 34, 35, 36, 226, 226, 39, /* 3480 */ 40, 41, 42, 43, 44, 226, 46, 200, 226, 49, /* 3490 */ 50, 226, 226, 53, 54, 55, 56, 210, 211, 212, /* 3500 */ 213, 226, 226, 63, 226, 226, 66, 226, 226, 226, /* 3510 */ 70, 226, 226, 73, 74, 75, 76, 77, 78, 79, /* 3520 */ 80, 81, 82, 83, 226, 226, 226, 87, 88, 89, /* 3530 */ 226, 226, 92, 226, 226, 200, 96, 97, 98, 99, /* 3540 */ 226, 101, 226, 226, 104, 210, 211, 212, 213, 226, /* 3550 */ 226, 111, 226, 226, 226, 115, 116, 117, 118, 119, /* 3560 */ 120, 121, 122, 123, 124, 125, 126, 4, 200, 226, /* 3570 */ 226, 8, 226, 226, 11, 12, 200, 226, 210, 211, /* 3580 */ 212, 213, 226, 226, 226, 22, 210, 211, 212, 213, /* 3590 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 3600 */ 226, 226, 39, 40, 41, 42, 43, 44, 226, 46, /* 3610 */ 200, 226, 49, 50, 226, 226, 53, 54, 55, 56, /* 3620 */ 210, 211, 212, 213, 226, 226, 63, 226, 226, 66, /* 3630 */ 226, 226, 226, 70, 226, 226, 73, 74, 75, 76, /* 3640 */ 77, 78, 79, 80, 81, 82, 83, 226, 226, 226, /* 3650 */ 87, 88, 89, 226, 226, 92, 226, 226, 200, 96, /* 3660 */ 97, 98, 99, 226, 101, 226, 226, 104, 210, 211, /* 3670 */ 212, 213, 226, 226, 111, 226, 226, 226, 115, 116, /* 3680 */ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, /* 3690 */ 4, 200, 226, 226, 8, 226, 226, 11, 12, 200, /* 3700 */ 226, 210, 211, 212, 213, 226, 226, 226, 22, 210, /* 3710 */ 211, 212, 213, 226, 226, 29, 226, 226, 226, 226, /* 3720 */ 34, 35, 36, 226, 226, 39, 40, 41, 42, 43, /* 3730 */ 44, 226, 46, 200, 226, 49, 50, 226, 226, 53, /* 3740 */ 54, 55, 56, 210, 211, 212, 213, 226, 226, 63, /* 3750 */ 226, 226, 66, 226, 226, 226, 70, 226, 226, 73, /* 3760 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 3770 */ 226, 226, 226, 87, 88, 89, 226, 226, 92, 226, /* 3780 */ 226, 226, 96, 97, 98, 99, 226, 101, 226, 226, /* 3790 */ 104, 226, 226, 226, 226, 226, 226, 111, 226, 226, /* 3800 */ 226, 115, 116, 117, 118, 119, 120, 121, 122, 123, /* 3810 */ 124, 125, 126, 4, 226, 226, 226, 8, 226, 226, /* 3820 */ 11, 12, 226, 226, 226, 226, 226, 226, 226, 226, /* 3830 */ 226, 22, 226, 226, 226, 226, 226, 226, 29, 226, /* 3840 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 3850 */ 41, 42, 43, 44, 226, 46, 226, 226, 49, 50, /* 3860 */ 226, 226, 53, 54, 55, 56, 226, 226, 226, 226, /* 3870 */ 226, 226, 63, 226, 226, 66, 226, 226, 226, 70, /* 3880 */ 226, 226, 73, 74, 75, 76, 77, 78, 79, 80, /* 3890 */ 81, 82, 83, 226, 226, 226, 87, 88, 89, 226, /* 3900 */ 226, 92, 226, 226, 226, 96, 97, 98, 99, 226, /* 3910 */ 101, 226, 226, 104, 226, 226, 226, 226, 226, 226, /* 3920 */ 111, 226, 226, 226, 115, 116, 117, 118, 119, 120, /* 3930 */ 121, 122, 123, 124, 125, 126, 4, 226, 226, 226, /* 3940 */ 8, 226, 226, 11, 12, 226, 226, 226, 226, 226, /* 3950 */ 226, 226, 226, 226, 22, 226, 226, 226, 226, 226, /* 3960 */ 226, 29, 226, 226, 226, 226, 34, 35, 36, 226, /* 3970 */ 226, 39, 40, 41, 42, 43, 44, 226, 46, 226, /* 3980 */ 226, 49, 50, 226, 226, 53, 54, 55, 56, 226, /* 3990 */ 226, 226, 226, 226, 226, 63, 226, 226, 66, 226, /* 4000 */ 226, 226, 70, 226, 226, 73, 74, 75, 76, 77, /* 4010 */ 78, 79, 80, 81, 82, 83, 226, 226, 226, 87, /* 4020 */ 88, 89, 226, 226, 92, 226, 226, 226, 96, 97, /* 4030 */ 98, 99, 226, 101, 226, 226, 104, 226, 226, 226, /* 4040 */ 226, 226, 226, 111, 226, 226, 226, 115, 116, 117, /* 4050 */ 118, 119, 120, 121, 122, 123, 124, 125, 126, 4, /* 4060 */ 226, 226, 226, 8, 226, 226, 11, 12, 226, 226, /* 4070 */ 226, 226, 226, 226, 226, 226, 226, 22, 226, 226, /* 4080 */ 226, 226, 226, 226, 29, 226, 226, 226, 226, 34, /* 4090 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 4100 */ 226, 46, 226, 226, 49, 50, 226, 226, 53, 54, /* 4110 */ 55, 56, 226, 226, 226, 226, 226, 226, 63, 226, /* 4120 */ 226, 66, 226, 226, 226, 70, 226, 226, 73, 74, /* 4130 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 226, /* 4140 */ 226, 226, 87, 88, 89, 226, 226, 92, 226, 226, /* 4150 */ 226, 96, 97, 98, 99, 226, 101, 226, 226, 104, /* 4160 */ 226, 226, 226, 226, 226, 226, 111, 226, 226, 226, /* 4170 */ 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, /* 4180 */ 125, 126, 4, 226, 226, 226, 8, 226, 226, 11, /* 4190 */ 12, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 4200 */ 22, 226, 226, 226, 226, 226, 226, 29, 226, 226, /* 4210 */ 226, 226, 34, 35, 36, 226, 226, 39, 40, 41, /* 4220 */ 42, 43, 44, 226, 46, 226, 226, 49, 50, 226, /* 4230 */ 226, 53, 54, 55, 56, 226, 226, 226, 226, 226, /* 4240 */ 226, 63, 226, 226, 66, 226, 226, 226, 70, 226, /* 4250 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 4260 */ 82, 83, 226, 226, 226, 87, 88, 89, 226, 226, /* 4270 */ 92, 226, 226, 226, 96, 97, 98, 99, 226, 101, /* 4280 */ 226, 226, 104, 226, 226, 226, 226, 226, 226, 111, /* 4290 */ 226, 226, 226, 115, 116, 117, 118, 119, 120, 121, /* 4300 */ 122, 123, 124, 125, 126, 4, 226, 226, 226, 8, /* 4310 */ 226, 226, 11, 12, 226, 226, 226, 226, 226, 226, /* 4320 */ 226, 226, 226, 22, 226, 226, 226, 226, 226, 226, /* 4330 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 4340 */ 39, 40, 41, 42, 43, 44, 226, 46, 226, 226, /* 4350 */ 49, 50, 226, 226, 53, 54, 55, 56, 226, 226, /* 4360 */ 226, 226, 226, 226, 63, 226, 226, 66, 226, 226, /* 4370 */ 226, 70, 226, 226, 73, 74, 75, 76, 77, 78, /* 4380 */ 79, 80, 81, 82, 83, 226, 226, 226, 87, 88, /* 4390 */ 89, 226, 226, 92, 226, 226, 226, 96, 97, 98, /* 4400 */ 99, 226, 101, 226, 226, 104, 226, 226, 226, 226, /* 4410 */ 226, 226, 111, 226, 226, 226, 115, 116, 117, 118, /* 4420 */ 119, 120, 121, 122, 123, 124, 125, 126, 4, 226, /* 4430 */ 226, 226, 8, 226, 226, 11, 12, 226, 226, 226, /* 4440 */ 226, 226, 226, 226, 226, 226, 22, 226, 226, 226, /* 4450 */ 226, 226, 226, 29, 226, 226, 226, 226, 34, 35, /* 4460 */ 36, 226, 226, 39, 40, 41, 42, 43, 44, 226, /* 4470 */ 46, 226, 226, 49, 50, 226, 226, 53, 54, 55, /* 4480 */ 56, 226, 226, 226, 226, 226, 226, 63, 226, 226, /* 4490 */ 66, 226, 226, 226, 70, 226, 226, 73, 74, 75, /* 4500 */ 76, 77, 78, 79, 80, 81, 82, 83, 226, 226, /* 4510 */ 226, 87, 88, 89, 226, 226, 92, 226, 226, 226, /* 4520 */ 96, 97, 98, 99, 226, 101, 226, 226, 104, 226, /* 4530 */ 226, 226, 226, 226, 226, 111, 226, 226, 226, 115, /* 4540 */ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, /* 4550 */ 126, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 4560 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 22, /* 4570 */ 226, 226, 226, 226, 226, 226, 29, 226, 226, 226, /* 4580 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 4590 */ 43, 44, 226, 46, 226, 226, 49, 50, 226, 226, /* 4600 */ 53, 54, 55, 56, 226, 226, 226, 226, 226, 226, /* 4610 */ 63, 226, 226, 66, 226, 226, 226, 70, 226, 226, /* 4620 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, /* 4630 */ 83, 226, 226, 226, 87, 88, 89, 226, 226, 92, /* 4640 */ 226, 226, 226, 96, 97, 98, 99, 226, 101, 226, /* 4650 */ 226, 104, 226, 226, 226, 226, 226, 226, 111, 226, /* 4660 */ 226, 226, 115, 116, 117, 118, 119, 120, 121, 122, /* 4670 */ 123, 124, 125, 126, 4, 226, 226, 226, 8, 226, /* 4680 */ 226, 11, 12, 226, 226, 226, 226, 226, 226, 226, /* 4690 */ 226, 226, 22, 226, 226, 226, 226, 226, 226, 29, /* 4700 */ 226, 226, 226, 226, 34, 35, 36, 226, 226, 39, /* 4710 */ 40, 41, 42, 43, 44, 226, 46, 226, 226, 49, /* 4720 */ 50, 226, 226, 53, 54, 55, 56, 226, 226, 226, /* 4730 */ 226, 226, 226, 63, 226, 226, 66, 226, 226, 226, /* 4740 */ 70, 226, 226, 73, 74, 75, 76, 77, 78, 79, /* 4750 */ 80, 81, 82, 83, 226, 226, 226, 87, 88, 89, /* 4760 */ 226, 226, 92, 226, 226, 226, 96, 97, 98, 99, /* 4770 */ 226, 101, 226, 226, 104, 226, 226, 226, 226, 226, /* 4780 */ 226, 111, 226, 226, 226, 115, 116, 117, 118, 119, /* 4790 */ 120, 121, 122, 123, 124, 125, 126, 4, 226, 226, /* 4800 */ 226, 8, 226, 226, 11, 12, 226, 226, 226, 226, /* 4810 */ 226, 226, 226, 226, 226, 22, 226, 226, 226, 226, /* 4820 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 4830 */ 226, 226, 39, 40, 41, 42, 43, 44, 226, 46, /* 4840 */ 226, 226, 49, 50, 226, 226, 53, 54, 55, 56, /* 4850 */ 226, 226, 226, 226, 226, 226, 63, 226, 226, 66, /* 4860 */ 226, 226, 226, 70, 226, 226, 73, 74, 75, 76, /* 4870 */ 77, 78, 79, 80, 81, 82, 83, 226, 226, 226, /* 4880 */ 87, 88, 89, 226, 226, 92, 226, 226, 226, 96, /* 4890 */ 97, 98, 99, 226, 101, 226, 226, 104, 226, 226, /* 4900 */ 226, 226, 226, 226, 111, 226, 226, 226, 115, 116, /* 4910 */ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, /* 4920 */ 4, 226, 226, 226, 8, 226, 226, 11, 12, 226, /* 4930 */ 226, 226, 226, 226, 226, 226, 226, 226, 22, 226, /* 4940 */ 226, 226, 226, 226, 226, 29, 226, 226, 226, 226, /* 4950 */ 34, 35, 36, 226, 226, 39, 40, 41, 42, 43, /* 4960 */ 44, 226, 46, 226, 226, 49, 50, 226, 226, 53, /* 4970 */ 54, 55, 56, 226, 226, 226, 226, 226, 226, 63, /* 4980 */ 226, 226, 66, 226, 226, 226, 70, 226, 226, 73, /* 4990 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 5000 */ 226, 226, 226, 87, 88, 89, 226, 226, 92, 226, /* 5010 */ 226, 226, 96, 97, 98, 99, 226, 101, 226, 226, /* 5020 */ 104, 226, 226, 226, 226, 226, 226, 111, 226, 226, /* 5030 */ 226, 115, 116, 117, 118, 119, 120, 121, 122, 123, /* 5040 */ 124, 125, 126, 4, 226, 226, 226, 8, 226, 226, /* 5050 */ 11, 12, 226, 226, 226, 226, 226, 226, 226, 226, /* 5060 */ 226, 22, 226, 226, 226, 226, 226, 226, 29, 226, /* 5070 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 5080 */ 41, 42, 43, 44, 226, 46, 226, 226, 49, 50, /* 5090 */ 226, 226, 53, 54, 55, 56, 226, 226, 226, 226, /* 5100 */ 226, 226, 63, 226, 226, 66, 226, 226, 226, 70, /* 5110 */ 226, 226, 73, 74, 75, 76, 77, 78, 79, 80, /* 5120 */ 81, 82, 83, 226, 226, 226, 87, 88, 89, 226, /* 5130 */ 226, 92, 226, 226, 226, 96, 97, 98, 99, 226, /* 5140 */ 101, 226, 226, 104, 226, 226, 226, 226, 226, 226, /* 5150 */ 111, 226, 226, 226, 115, 116, 117, 118, 119, 120, /* 5160 */ 121, 122, 123, 124, 125, 126, 4, 226, 226, 226, /* 5170 */ 8, 226, 226, 11, 12, 226, 226, 226, 226, 226, /* 5180 */ 226, 226, 226, 226, 22, 226, 226, 226, 226, 226, /* 5190 */ 226, 29, 226, 226, 226, 226, 34, 35, 36, 226, /* 5200 */ 226, 39, 40, 41, 42, 43, 44, 226, 46, 226, /* 5210 */ 226, 49, 50, 226, 226, 53, 54, 55, 56, 226, /* 5220 */ 226, 226, 226, 226, 226, 63, 226, 226, 66, 226, /* 5230 */ 226, 226, 70, 226, 226, 73, 74, 75, 76, 77, /* 5240 */ 78, 79, 80, 81, 82, 83, 226, 226, 226, 87, /* 5250 */ 88, 89, 226, 226, 92, 226, 226, 226, 96, 97, /* 5260 */ 98, 99, 226, 101, 226, 226, 104, 226, 226, 226, /* 5270 */ 226, 226, 226, 111, 226, 226, 226, 115, 116, 117, /* 5280 */ 118, 119, 120, 121, 122, 123, 124, 125, 126, 4, /* 5290 */ 226, 226, 226, 8, 226, 226, 11, 12, 226, 226, /* 5300 */ 226, 226, 226, 226, 226, 226, 226, 22, 226, 226, /* 5310 */ 226, 226, 226, 226, 29, 226, 226, 226, 226, 34, /* 5320 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 5330 */ 226, 46, 226, 226, 49, 50, 226, 226, 53, 54, /* 5340 */ 55, 56, 226, 226, 226, 226, 226, 226, 63, 226, /* 5350 */ 226, 66, 226, 226, 226, 70, 226, 226, 73, 74, /* 5360 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 226, /* 5370 */ 226, 226, 87, 88, 89, 226, 226, 92, 226, 226, /* 5380 */ 226, 96, 97, 98, 99, 226, 101, 226, 226, 104, /* 5390 */ 226, 226, 226, 226, 226, 226, 111, 226, 226, 226, /* 5400 */ 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, /* 5410 */ 125, 126, 4, 226, 226, 226, 8, 226, 226, 11, /* 5420 */ 12, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 5430 */ 22, 226, 226, 226, 226, 226, 226, 29, 226, 226, /* 5440 */ 226, 226, 34, 35, 36, 226, 226, 39, 40, 41, /* 5450 */ 42, 43, 44, 226, 46, 226, 226, 49, 50, 226, /* 5460 */ 226, 53, 54, 55, 56, 226, 226, 226, 226, 226, /* 5470 */ 226, 63, 226, 226, 66, 226, 226, 226, 70, 226, /* 5480 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 5490 */ 82, 83, 226, 226, 226, 87, 88, 89, 226, 226, /* 5500 */ 92, 226, 226, 226, 96, 97, 98, 99, 226, 101, /* 5510 */ 226, 226, 104, 226, 226, 226, 226, 226, 226, 111, /* 5520 */ 226, 226, 226, 115, 116, 117, 118, 119, 120, 121, /* 5530 */ 122, 123, 124, 125, 126, 4, 226, 226, 226, 8, /* 5540 */ 226, 226, 11, 12, 226, 226, 226, 226, 226, 226, /* 5550 */ 226, 226, 226, 22, 226, 226, 226, 226, 226, 226, /* 5560 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 5570 */ 39, 40, 41, 42, 43, 44, 226, 46, 226, 226, /* 5580 */ 49, 50, 226, 226, 53, 54, 55, 56, 226, 226, /* 5590 */ 226, 226, 226, 226, 63, 226, 226, 66, 226, 226, /* 5600 */ 226, 70, 226, 226, 73, 74, 75, 76, 77, 78, /* 5610 */ 79, 80, 81, 82, 83, 226, 226, 226, 87, 88, /* 5620 */ 89, 226, 226, 92, 226, 226, 226, 96, 97, 98, /* 5630 */ 99, 226, 101, 226, 226, 104, 226, 226, 226, 226, /* 5640 */ 226, 226, 111, 226, 226, 226, 115, 116, 117, 118, /* 5650 */ 119, 120, 121, 122, 123, 124, 125, 126, 4, 226, /* 5660 */ 226, 226, 8, 226, 226, 11, 12, 226, 226, 226, /* 5670 */ 226, 226, 226, 226, 226, 226, 22, 226, 226, 226, /* 5680 */ 226, 226, 226, 29, 226, 226, 226, 226, 34, 35, /* 5690 */ 36, 226, 226, 39, 40, 41, 42, 43, 44, 226, /* 5700 */ 46, 226, 226, 49, 50, 226, 226, 53, 54, 55, /* 5710 */ 56, 226, 226, 226, 226, 226, 226, 63, 226, 226, /* 5720 */ 66, 226, 226, 226, 70, 226, 226, 73, 74, 75, /* 5730 */ 76, 77, 78, 79, 80, 81, 82, 83, 226, 226, /* 5740 */ 226, 87, 88, 89, 226, 226, 92, 226, 226, 226, /* 5750 */ 96, 97, 98, 99, 226, 101, 226, 226, 104, 226, /* 5760 */ 226, 226, 226, 226, 226, 111, 226, 226, 226, 115, /* 5770 */ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, /* 5780 */ 126, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 5790 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 22, /* 5800 */ 226, 226, 226, 226, 226, 226, 29, 226, 226, 226, /* 5810 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 5820 */ 43, 44, 226, 46, 226, 226, 49, 50, 226, 226, /* 5830 */ 53, 54, 55, 56, 226, 226, 226, 226, 226, 226, /* 5840 */ 63, 226, 226, 66, 226, 226, 226, 70, 226, 226, /* 5850 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, /* 5860 */ 83, 226, 226, 226, 87, 88, 89, 226, 226, 92, /* 5870 */ 226, 226, 226, 96, 97, 98, 99, 226, 101, 226, /* 5880 */ 226, 104, 226, 226, 226, 226, 226, 226, 111, 226, /* 5890 */ 226, 226, 115, 116, 117, 118, 119, 120, 121, 122, /* 5900 */ 123, 124, 125, 126, 4, 226, 226, 226, 8, 226, /* 5910 */ 226, 11, 12, 226, 226, 226, 226, 226, 226, 226, /* 5920 */ 226, 226, 22, 226, 226, 226, 226, 226, 226, 29, /* 5930 */ 226, 226, 226, 226, 34, 35, 36, 226, 226, 39, /* 5940 */ 40, 41, 42, 43, 44, 226, 46, 226, 226, 49, /* 5950 */ 50, 226, 226, 53, 54, 55, 56, 226, 226, 226, /* 5960 */ 226, 226, 226, 63, 226, 226, 66, 226, 226, 226, /* 5970 */ 70, 226, 226, 73, 74, 75, 76, 77, 78, 79, /* 5980 */ 80, 81, 82, 83, 226, 226, 226, 87, 88, 89, /* 5990 */ 226, 226, 92, 226, 226, 226, 96, 97, 98, 99, /* 6000 */ 226, 101, 226, 226, 104, 226, 226, 226, 226, 226, /* 6010 */ 226, 111, 226, 226, 226, 115, 116, 117, 118, 119, /* 6020 */ 120, 121, 122, 123, 124, 125, 126, 4, 226, 226, /* 6030 */ 226, 8, 226, 226, 11, 12, 226, 226, 226, 226, /* 6040 */ 226, 226, 226, 226, 226, 22, 226, 226, 226, 226, /* 6050 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 6060 */ 226, 226, 39, 40, 41, 42, 43, 44, 226, 46, /* 6070 */ 226, 226, 49, 50, 226, 226, 53, 54, 55, 56, /* 6080 */ 226, 226, 226, 226, 226, 226, 63, 226, 226, 66, /* 6090 */ 226, 226, 226, 70, 226, 226, 73, 74, 75, 76, /* 6100 */ 77, 78, 79, 80, 81, 82, 83, 226, 226, 226, /* 6110 */ 87, 88, 89, 226, 226, 92, 226, 226, 226, 96, /* 6120 */ 97, 98, 99, 226, 101, 226, 226, 104, 226, 226, /* 6130 */ 226, 226, 226, 226, 111, 226, 226, 226, 115, 116, /* 6140 */ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, /* 6150 */ 4, 226, 226, 226, 8, 226, 226, 11, 12, 226, /* 6160 */ 226, 226, 226, 226, 226, 226, 226, 226, 22, 226, /* 6170 */ 226, 226, 226, 226, 226, 29, 226, 226, 226, 226, /* 6180 */ 34, 35, 36, 226, 226, 39, 40, 41, 42, 43, /* 6190 */ 44, 226, 46, 226, 226, 49, 50, 226, 226, 53, /* 6200 */ 54, 55, 56, 226, 226, 226, 226, 226, 226, 63, /* 6210 */ 226, 226, 66, 226, 226, 226, 70, 226, 226, 73, /* 6220 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 6230 */ 226, 226, 226, 87, 88, 89, 226, 226, 92, 226, /* 6240 */ 226, 226, 96, 97, 98, 99, 226, 101, 226, 226, /* 6250 */ 104, 226, 226, 226, 226, 226, 226, 111, 226, 226, /* 6260 */ 226, 115, 116, 117, 118, 119, 120, 121, 122, 123, /* 6270 */ 124, 125, 126, 4, 226, 226, 226, 8, 226, 226, /* 6280 */ 11, 12, 226, 226, 226, 226, 226, 226, 226, 226, /* 6290 */ 226, 22, 226, 226, 226, 226, 226, 226, 29, 226, /* 6300 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 6310 */ 41, 42, 43, 44, 226, 46, 226, 226, 49, 50, /* 6320 */ 226, 226, 53, 54, 55, 56, 226, 226, 226, 226, /* 6330 */ 226, 226, 63, 226, 226, 66, 226, 226, 226, 70, /* 6340 */ 226, 226, 73, 74, 75, 76, 77, 78, 79, 80, /* 6350 */ 81, 82, 83, 226, 226, 226, 87, 88, 89, 226, /* 6360 */ 226, 92, 226, 226, 226, 96, 97, 98, 99, 226, /* 6370 */ 101, 226, 226, 104, 226, 226, 226, 226, 226, 226, /* 6380 */ 111, 226, 226, 226, 115, 116, 117, 118, 119, 120, /* 6390 */ 121, 122, 123, 124, 125, 126, 4, 226, 226, 226, /* 6400 */ 8, 226, 226, 11, 12, 226, 226, 226, 226, 226, /* 6410 */ 226, 226, 226, 226, 22, 226, 226, 226, 226, 226, /* 6420 */ 226, 29, 226, 226, 226, 226, 34, 35, 36, 226, /* 6430 */ 226, 39, 40, 41, 42, 43, 44, 226, 46, 226, /* 6440 */ 226, 49, 50, 226, 226, 53, 54, 55, 56, 226, /* 6450 */ 226, 226, 226, 226, 226, 63, 226, 226, 66, 226, /* 6460 */ 226, 226, 70, 226, 226, 73, 74, 75, 76, 77, /* 6470 */ 78, 79, 80, 81, 82, 83, 226, 226, 226, 87, /* 6480 */ 88, 89, 226, 226, 92, 226, 226, 226, 96, 97, /* 6490 */ 98, 99, 226, 101, 226, 226, 104, 226, 226, 226, /* 6500 */ 226, 226, 226, 111, 226, 226, 226, 115, 116, 117, /* 6510 */ 118, 119, 120, 121, 122, 123, 124, 125, 126, 4, /* 6520 */ 226, 226, 226, 8, 226, 226, 11, 12, 226, 226, /* 6530 */ 226, 226, 226, 226, 226, 226, 226, 22, 226, 226, /* 6540 */ 226, 226, 226, 226, 29, 226, 226, 226, 226, 34, /* 6550 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 6560 */ 226, 46, 226, 226, 49, 50, 226, 226, 53, 54, /* 6570 */ 55, 56, 226, 226, 226, 226, 226, 226, 63, 226, /* 6580 */ 226, 66, 226, 226, 226, 70, 226, 226, 73, 74, /* 6590 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 226, /* 6600 */ 226, 226, 87, 88, 89, 226, 226, 92, 226, 226, /* 6610 */ 226, 96, 97, 98, 99, 226, 101, 226, 226, 104, /* 6620 */ 226, 226, 226, 226, 226, 226, 111, 226, 226, 226, /* 6630 */ 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, /* 6640 */ 125, 126, 4, 226, 226, 226, 8, 226, 226, 11, /* 6650 */ 12, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 6660 */ 22, 226, 226, 226, 226, 226, 226, 29, 226, 226, /* 6670 */ 226, 226, 34, 35, 36, 226, 226, 39, 40, 41, /* 6680 */ 42, 43, 44, 226, 46, 226, 226, 49, 50, 226, /* 6690 */ 226, 53, 54, 55, 56, 226, 226, 226, 226, 226, /* 6700 */ 226, 63, 226, 226, 66, 226, 226, 226, 70, 226, /* 6710 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 6720 */ 82, 83, 226, 226, 226, 87, 88, 89, 226, 226, /* 6730 */ 92, 226, 226, 226, 96, 97, 98, 99, 226, 101, /* 6740 */ 226, 226, 104, 226, 226, 226, 226, 226, 226, 111, /* 6750 */ 226, 226, 226, 115, 116, 117, 118, 119, 120, 121, /* 6760 */ 122, 123, 124, 125, 126, 4, 226, 226, 226, 8, /* 6770 */ 226, 226, 11, 12, 226, 226, 226, 226, 226, 226, /* 6780 */ 226, 226, 226, 22, 226, 226, 226, 226, 226, 226, /* 6790 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 6800 */ 39, 40, 41, 42, 43, 44, 226, 46, 226, 226, /* 6810 */ 49, 50, 226, 226, 53, 54, 55, 56, 226, 226, /* 6820 */ 226, 226, 226, 226, 63, 226, 226, 66, 226, 226, /* 6830 */ 226, 70, 226, 226, 73, 74, 75, 76, 77, 78, /* 6840 */ 79, 80, 81, 82, 83, 226, 226, 226, 87, 88, /* 6850 */ 89, 226, 226, 92, 226, 226, 226, 96, 97, 98, /* 6860 */ 99, 226, 101, 226, 226, 104, 226, 226, 226, 226, /* 6870 */ 226, 226, 111, 226, 226, 226, 115, 116, 117, 118, /* 6880 */ 119, 120, 121, 122, 123, 124, 125, 126, 4, 226, /* 6890 */ 226, 226, 8, 226, 226, 11, 12, 226, 226, 226, /* 6900 */ 226, 226, 226, 226, 226, 226, 22, 226, 226, 226, /* 6910 */ 226, 226, 226, 29, 226, 226, 226, 226, 34, 35, /* 6920 */ 36, 226, 226, 39, 40, 41, 42, 43, 44, 226, /* 6930 */ 46, 226, 226, 49, 50, 226, 226, 53, 54, 55, /* 6940 */ 226, 226, 226, 226, 226, 226, 226, 63, 226, 226, /* 6950 */ 66, 226, 226, 226, 70, 226, 226, 73, 74, 75, /* 6960 */ 76, 77, 78, 79, 80, 81, 82, 83, 226, 226, /* 6970 */ 226, 87, 88, 89, 226, 226, 92, 226, 226, 226, /* 6980 */ 96, 97, 98, 99, 226, 101, 226, 226, 104, 226, /* 6990 */ 226, 226, 226, 226, 226, 111, 226, 226, 226, 115, /* 7000 */ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, /* 7010 */ 126, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 7020 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 22, /* 7030 */ 226, 226, 226, 226, 226, 226, 29, 226, 226, 226, /* 7040 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 7050 */ 43, 44, 226, 46, 226, 226, 49, 226, 226, 226, /* 7060 */ 53, 54, 55, 226, 226, 226, 226, 226, 226, 226, /* 7070 */ 226, 226, 226, 66, 226, 226, 226, 70, 226, 226, /* 7080 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, /* 7090 */ 83, 84, 85, 86, 16, 17, 18, 19, 20, 21, /* 7100 */ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 7110 */ 32, 33, 226, 226, 226, 37, 38, 226, 111, 226, /* 7120 */ 226, 226, 44, 226, 46, 47, 119, 120, 121, 122, /* 7130 */ 123, 124, 125, 4, 226, 226, 226, 8, 226, 226, /* 7140 */ 11, 12, 226, 226, 226, 226, 226, 226, 226, 226, /* 7150 */ 226, 22, 226, 226, 226, 226, 226, 46, 29, 226, /* 7160 */ 49, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 7170 */ 41, 42, 43, 44, 226, 46, 226, 66, 49, 226, /* 7180 */ 226, 70, 53, 54, 55, 226, 226, 226, 226, 226, /* 7190 */ 226, 226, 226, 226, 226, 66, 226, 226, 226, 70, /* 7200 */ 226, 226, 226, 20, 21, 22, 23, 24, 25, 26, /* 7210 */ 27, 28, 29, 30, 31, 32, 33, 226, 226, 226, /* 7220 */ 37, 38, 111, 226, 226, 226, 226, 44, 226, 46, /* 7230 */ 47, 120, 103, 122, 123, 124, 125, 4, 226, 226, /* 7240 */ 111, 8, 226, 226, 11, 12, 226, 226, 119, 120, /* 7250 */ 121, 122, 123, 124, 125, 22, 226, 226, 226, 226, /* 7260 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 7270 */ 226, 226, 39, 40, 41, 42, 43, 44, 226, 46, /* 7280 */ 226, 226, 49, 50, 226, 226, 53, 54, 55, 226, /* 7290 */ 226, 226, 226, 226, 226, 226, 226, 48, 49, 66, /* 7300 */ 51, 226, 53, 70, 226, 226, 57, 226, 59, 226, /* 7310 */ 61, 62, 63, 226, 10, 226, 226, 13, 14, 15, /* 7320 */ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, /* 7330 */ 26, 27, 28, 29, 30, 31, 32, 33, 226, 226, /* 7340 */ 226, 37, 38, 226, 111, 226, 226, 226, 44, 226, /* 7350 */ 46, 47, 119, 120, 121, 122, 123, 124, 125, 4, /* 7360 */ 226, 226, 226, 8, 226, 226, 11, 12, 1, 2, /* 7370 */ 3, 4, 5, 6, 226, 126, 72, 22, 226, 226, /* 7380 */ 226, 226, 226, 226, 29, 226, 226, 226, 226, 34, /* 7390 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 7400 */ 226, 46, 226, 226, 49, 226, 226, 226, 53, 54, /* 7410 */ 55, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 7420 */ 226, 66, 226, 56, 226, 70, 226, 72, 61, 62, /* 7430 */ 63, 226, 65, 226, 67, 68, 10, 226, 226, 13, /* 7440 */ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, /* 7450 */ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, /* 7460 */ 226, 226, 226, 37, 38, 226, 111, 226, 226, 226, /* 7470 */ 44, 45, 46, 47, 119, 120, 121, 122, 123, 124, /* 7480 */ 125, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 7490 */ 1, 2, 3, 4, 5, 6, 226, 226, 226, 22, /* 7500 */ 226, 226, 226, 226, 226, 226, 29, 226, 226, 226, /* 7510 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 7520 */ 43, 44, 226, 46, 226, 226, 49, 226, 226, 226, /* 7530 */ 53, 54, 55, 226, 226, 226, 226, 226, 226, 226, /* 7540 */ 226, 226, 226, 66, 226, 56, 226, 70, 226, 72, /* 7550 */ 61, 62, 63, 226, 65, 226, 67, 68, 10, 226, /* 7560 */ 226, 13, 14, 15, 16, 17, 18, 19, 20, 21, /* 7570 */ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 7580 */ 32, 33, 226, 226, 226, 37, 38, 226, 111, 226, /* 7590 */ 226, 226, 44, 226, 46, 47, 119, 120, 121, 122, /* 7600 */ 123, 124, 125, 4, 226, 226, 226, 8, 226, 226, /* 7610 */ 11, 12, 1, 2, 3, 4, 5, 6, 226, 226, /* 7620 */ 72, 22, 226, 226, 226, 226, 226, 226, 29, 226, /* 7630 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 7640 */ 41, 42, 43, 44, 226, 46, 226, 226, 49, 226, /* 7650 */ 226, 226, 53, 54, 55, 226, 226, 226, 226, 226, /* 7660 */ 226, 226, 226, 226, 226, 66, 226, 56, 226, 70, /* 7670 */ 226, 72, 61, 62, 63, 226, 65, 226, 67, 68, /* 7680 */ 10, 226, 226, 13, 14, 15, 16, 17, 18, 19, /* 7690 */ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, /* 7700 */ 30, 31, 32, 33, 226, 226, 226, 37, 38, 226, /* 7710 */ 111, 226, 226, 226, 44, 226, 46, 47, 119, 120, /* 7720 */ 121, 122, 123, 124, 125, 4, 226, 226, 226, 8, /* 7730 */ 226, 226, 11, 12, 1, 2, 3, 4, 5, 6, /* 7740 */ 226, 226, 226, 22, 226, 226, 226, 226, 226, 226, /* 7750 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 7760 */ 39, 40, 41, 42, 43, 44, 226, 46, 226, 226, /* 7770 */ 49, 226, 226, 226, 53, 54, 55, 226, 226, 226, /* 7780 */ 226, 226, 226, 226, 226, 226, 226, 66, 226, 56, /* 7790 */ 226, 70, 226, 72, 61, 62, 63, 226, 65, 226, /* 7800 */ 67, 68, 226, 226, 226, 13, 14, 15, 16, 17, /* 7810 */ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, /* 7820 */ 28, 29, 30, 31, 32, 33, 226, 226, 226, 37, /* 7830 */ 38, 226, 111, 226, 226, 226, 44, 226, 46, 47, /* 7840 */ 119, 120, 121, 122, 123, 124, 125, 4, 226, 226, /* 7850 */ 226, 8, 226, 226, 11, 12, 226, 226, 226, 226, /* 7860 */ 226, 226, 226, 22, 226, 22, 226, 226, 226, 226, /* 7870 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 7880 */ 226, 226, 39, 40, 41, 42, 43, 44, 45, 46, /* 7890 */ 226, 226, 49, 226, 226, 226, 53, 54, 55, 226, /* 7900 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 66, /* 7910 */ 69, 70, 71, 70, 73, 74, 75, 76, 77, 78, /* 7920 */ 79, 80, 81, 82, 83, 84, 85, 86, 14, 15, /* 7930 */ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, /* 7940 */ 26, 27, 28, 29, 30, 31, 32, 33, 226, 226, /* 7950 */ 226, 37, 38, 226, 111, 226, 226, 226, 44, 226, /* 7960 */ 46, 47, 119, 120, 121, 122, 123, 124, 125, 4, /* 7970 */ 226, 226, 226, 8, 226, 226, 11, 12, 226, 226, /* 7980 */ 226, 226, 226, 226, 226, 226, 226, 22, 226, 226, /* 7990 */ 22, 226, 226, 226, 29, 226, 226, 226, 226, 34, /* 8000 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 8010 */ 22, 46, 44, 45, 49, 226, 226, 49, 53, 54, /* 8020 */ 55, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 8030 */ 226, 66, 44, 65, 226, 70, 226, 49, 226, 226, /* 8040 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 8050 */ 82, 83, 84, 85, 86, 226, 226, 226, 226, 94, /* 8060 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 8070 */ 82, 83, 84, 85, 86, 226, 111, 226, 1, 2, /* 8080 */ 3, 4, 5, 6, 119, 120, 121, 122, 123, 124, /* 8090 */ 125, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 8100 */ 1, 2, 3, 4, 5, 6, 226, 226, 226, 22, /* 8110 */ 226, 226, 226, 226, 226, 226, 29, 226, 226, 226, /* 8120 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 8130 */ 43, 44, 226, 46, 226, 226, 49, 226, 61, 62, /* 8140 */ 53, 54, 55, 226, 67, 68, 226, 226, 226, 226, /* 8150 */ 226, 226, 226, 66, 226, 56, 226, 70, 226, 72, /* 8160 */ 61, 62, 63, 226, 65, 226, 67, 68, 226, 226, /* 8170 */ 226, 226, 226, 15, 16, 17, 18, 19, 20, 21, /* 8180 */ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 8190 */ 32, 33, 226, 226, 226, 37, 38, 226, 111, 226, /* 8200 */ 226, 226, 44, 226, 46, 47, 119, 120, 121, 122, /* 8210 */ 123, 124, 125, 4, 226, 226, 226, 8, 226, 226, /* 8220 */ 11, 12, 226, 226, 226, 226, 226, 226, 226, 226, /* 8230 */ 226, 22, 226, 226, 22, 226, 226, 226, 29, 226, /* 8240 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 8250 */ 41, 42, 43, 44, 45, 46, 44, 45, 49, 226, /* 8260 */ 226, 49, 53, 54, 55, 226, 226, 226, 226, 226, /* 8270 */ 226, 226, 226, 226, 226, 66, 226, 65, 226, 70, /* 8280 */ 226, 226, 226, 226, 226, 73, 74, 75, 76, 77, /* 8290 */ 78, 79, 80, 81, 82, 83, 84, 85, 86, 226, /* 8300 */ 226, 226, 128, 129, 130, 131, 132, 133, 134, 135, /* 8310 */ 136, 137, 138, 226, 226, 226, 226, 226, 226, 226, /* 8320 */ 111, 226, 226, 226, 226, 226, 226, 226, 119, 120, /* 8330 */ 121, 122, 123, 124, 125, 4, 226, 226, 226, 8, /* 8340 */ 226, 226, 11, 12, 226, 226, 226, 226, 226, 226, /* 8350 */ 226, 226, 226, 22, 226, 226, 22, 226, 226, 226, /* 8360 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 8370 */ 39, 40, 41, 42, 43, 44, 45, 46, 44, 45, /* 8380 */ 49, 226, 226, 49, 53, 54, 55, 226, 226, 226, /* 8390 */ 226, 226, 226, 226, 226, 226, 226, 66, 226, 65, /* 8400 */ 226, 70, 226, 226, 226, 226, 226, 73, 74, 75, /* 8410 */ 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, /* 8420 */ 86, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 8430 */ 226, 31, 32, 33, 226, 226, 226, 37, 38, 226, /* 8440 */ 226, 226, 111, 226, 44, 226, 46, 47, 226, 226, /* 8450 */ 119, 120, 121, 122, 123, 124, 125, 4, 226, 226, /* 8460 */ 226, 8, 226, 226, 11, 12, 226, 226, 226, 226, /* 8470 */ 226, 226, 226, 226, 226, 22, 226, 226, 22, 226, /* 8480 */ 226, 226, 29, 226, 226, 46, 226, 34, 35, 36, /* 8490 */ 226, 46, 39, 40, 41, 42, 43, 44, 45, 46, /* 8500 */ 44, 45, 49, 64, 226, 49, 53, 54, 55, 64, /* 8510 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 66, /* 8520 */ 226, 65, 226, 70, 226, 226, 226, 226, 226, 73, /* 8530 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, /* 8540 */ 84, 85, 86, 226, 105, 106, 107, 108, 109, 110, /* 8550 */ 105, 106, 107, 108, 109, 110, 226, 226, 226, 226, /* 8560 */ 226, 226, 226, 226, 111, 226, 226, 226, 226, 226, /* 8570 */ 226, 226, 119, 120, 121, 122, 123, 124, 125, 4, /* 8580 */ 226, 226, 226, 8, 226, 226, 11, 12, 226, 226, /* 8590 */ 226, 226, 226, 226, 226, 226, 226, 22, 226, 226, /* 8600 */ 22, 226, 226, 226, 29, 226, 226, 226, 226, 34, /* 8610 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 8620 */ 45, 46, 44, 45, 49, 226, 226, 49, 53, 54, /* 8630 */ 55, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 8640 */ 226, 66, 226, 65, 226, 70, 226, 226, 226, 226, /* 8650 */ 226, 73, 74, 75, 76, 77, 78, 79, 80, 81, /* 8660 */ 82, 83, 84, 85, 86, 226, 226, 226, 226, 226, /* 8670 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 8680 */ 226, 226, 226, 226, 226, 226, 111, 226, 226, 226, /* 8690 */ 226, 226, 226, 226, 119, 120, 121, 122, 123, 124, /* 8700 */ 125, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 8710 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 22, /* 8720 */ 226, 226, 22, 226, 226, 226, 29, 226, 226, 226, /* 8730 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 8740 */ 43, 44, 226, 46, 44, 45, 49, 226, 226, 49, /* 8750 */ 53, 54, 55, 226, 226, 226, 226, 226, 226, 226, /* 8760 */ 226, 226, 226, 66, 226, 65, 226, 70, 226, 226, /* 8770 */ 226, 226, 226, 73, 74, 75, 76, 77, 78, 79, /* 8780 */ 80, 81, 82, 83, 84, 85, 86, 46, 226, 226, /* 8790 */ 49, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 8800 */ 103, 226, 226, 226, 226, 4, 226, 66, 111, 8, /* 8810 */ 226, 70, 11, 12, 226, 226, 119, 120, 121, 122, /* 8820 */ 123, 124, 125, 22, 226, 226, 226, 4, 226, 226, /* 8830 */ 29, 22, 226, 226, 226, 34, 35, 36, 226, 226, /* 8840 */ 39, 40, 41, 42, 43, 44, 45, 46, 226, 226, /* 8850 */ 49, 226, 111, 44, 53, 54, 55, 226, 49, 226, /* 8860 */ 226, 120, 226, 122, 123, 124, 125, 66, 226, 226, /* 8870 */ 226, 70, 49, 226, 65, 226, 226, 226, 55, 226, /* 8880 */ 226, 226, 73, 74, 75, 76, 77, 78, 79, 80, /* 8890 */ 81, 82, 83, 84, 85, 86, 73, 74, 75, 76, /* 8900 */ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, /* 8910 */ 226, 226, 111, 226, 226, 226, 226, 226, 226, 226, /* 8920 */ 119, 120, 121, 122, 123, 124, 125, 4, 226, 226, /* 8930 */ 226, 8, 226, 226, 11, 12, 226, 226, 226, 226, /* 8940 */ 226, 226, 226, 22, 226, 22, 226, 226, 226, 226, /* 8950 */ 226, 226, 29, 226, 226, 226, 226, 34, 35, 36, /* 8960 */ 226, 226, 39, 40, 41, 42, 43, 44, 45, 46, /* 8970 */ 0, 226, 49, 226, 226, 226, 53, 54, 55, 226, /* 8980 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 66, /* 8990 */ 226, 70, 71, 70, 73, 74, 75, 76, 77, 78, /* 9000 */ 79, 80, 81, 82, 83, 84, 85, 86, 226, 1, /* 9010 */ 2, 3, 4, 5, 6, 226, 226, 226, 48, 49, /* 9020 */ 226, 51, 226, 53, 226, 226, 226, 57, 226, 59, /* 9030 */ 226, 61, 62, 63, 111, 226, 226, 226, 226, 226, /* 9040 */ 226, 226, 119, 120, 121, 122, 123, 124, 125, 4, /* 9050 */ 226, 226, 226, 8, 226, 226, 11, 12, 1, 2, /* 9060 */ 3, 4, 5, 6, 56, 226, 226, 22, 226, 61, /* 9070 */ 62, 63, 226, 65, 29, 67, 68, 226, 226, 34, /* 9080 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 9090 */ 45, 46, 226, 226, 49, 226, 126, 226, 53, 54, /* 9100 */ 55, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9110 */ 226, 66, 226, 56, 226, 70, 226, 226, 61, 62, /* 9120 */ 63, 226, 226, 226, 67, 68, 1, 2, 3, 4, /* 9130 */ 5, 6, 226, 226, 226, 226, 226, 226, 226, 226, /* 9140 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9150 */ 226, 226, 226, 226, 226, 226, 111, 226, 226, 226, /* 9160 */ 226, 226, 226, 226, 119, 120, 121, 122, 123, 124, /* 9170 */ 125, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 9180 */ 226, 56, 226, 226, 226, 226, 61, 62, 63, 22, /* 9190 */ 226, 226, 67, 68, 226, 226, 29, 226, 226, 226, /* 9200 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 9210 */ 43, 44, 226, 46, 226, 226, 49, 226, 226, 226, /* 9220 */ 53, 54, 55, 226, 226, 226, 226, 226, 226, 226, /* 9230 */ 226, 226, 226, 66, 226, 226, 226, 70, 226, 72, /* 9240 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9250 */ 226, 226, 226, 46, 47, 226, 226, 226, 226, 226, /* 9260 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9270 */ 226, 64, 226, 226, 226, 226, 226, 226, 111, 226, /* 9280 */ 226, 226, 226, 226, 226, 226, 119, 120, 121, 122, /* 9290 */ 123, 124, 125, 4, 226, 226, 226, 8, 226, 226, /* 9300 */ 11, 12, 1, 2, 3, 4, 5, 6, 226, 226, /* 9310 */ 226, 22, 105, 106, 107, 108, 109, 110, 29, 112, /* 9320 */ 113, 114, 226, 34, 35, 36, 226, 226, 39, 40, /* 9330 */ 41, 42, 43, 44, 45, 46, 226, 226, 49, 226, /* 9340 */ 226, 226, 53, 54, 55, 226, 226, 226, 226, 226, /* 9350 */ 226, 226, 226, 226, 226, 66, 226, 56, 226, 70, /* 9360 */ 226, 226, 61, 62, 63, 226, 226, 226, 67, 68, /* 9370 */ 1, 2, 3, 4, 5, 6, 226, 226, 226, 226, /* 9380 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9390 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9400 */ 111, 226, 226, 226, 226, 226, 226, 226, 119, 120, /* 9410 */ 121, 122, 123, 124, 125, 4, 226, 226, 46, 8, /* 9420 */ 226, 49, 11, 12, 226, 56, 226, 226, 226, 226, /* 9430 */ 61, 62, 63, 22, 226, 226, 67, 68, 66, 226, /* 9440 */ 29, 226, 70, 226, 72, 34, 35, 36, 226, 226, /* 9450 */ 39, 40, 41, 42, 43, 44, 45, 46, 226, 226, /* 9460 */ 49, 226, 226, 226, 53, 54, 55, 226, 226, 226, /* 9470 */ 226, 226, 226, 226, 226, 226, 226, 66, 226, 226, /* 9480 */ 226, 70, 226, 111, 226, 226, 226, 226, 226, 226, /* 9490 */ 226, 226, 120, 226, 122, 123, 124, 125, 226, 1, /* 9500 */ 2, 3, 4, 5, 6, 226, 226, 226, 226, 226, /* 9510 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9520 */ 226, 226, 111, 226, 226, 226, 226, 226, 226, 226, /* 9530 */ 119, 120, 121, 122, 123, 124, 125, 4, 226, 226, /* 9540 */ 226, 8, 226, 226, 11, 12, 1, 2, 3, 4, /* 9550 */ 5, 6, 226, 226, 226, 22, 226, 226, 226, 61, /* 9560 */ 62, 226, 29, 65, 226, 67, 68, 34, 35, 36, /* 9570 */ 226, 226, 39, 40, 41, 42, 43, 44, 45, 46, /* 9580 */ 226, 226, 49, 226, 226, 226, 53, 54, 55, 226, /* 9590 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 66, /* 9600 */ 226, 56, 226, 70, 226, 226, 61, 62, 63, 226, /* 9610 */ 226, 226, 67, 68, 1, 2, 3, 4, 5, 6, /* 9620 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9630 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9640 */ 226, 226, 226, 226, 111, 226, 226, 226, 226, 226, /* 9650 */ 226, 226, 119, 120, 121, 122, 123, 124, 125, 4, /* 9660 */ 226, 226, 226, 8, 226, 226, 11, 12, 226, 56, /* 9670 */ 226, 226, 226, 226, 61, 62, 63, 22, 226, 226, /* 9680 */ 67, 68, 226, 226, 29, 226, 226, 226, 226, 34, /* 9690 */ 35, 36, 226, 226, 39, 40, 41, 42, 43, 44, /* 9700 */ 45, 46, 226, 226, 49, 226, 226, 226, 53, 54, /* 9710 */ 55, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9720 */ 226, 66, 226, 226, 226, 70, 226, 226, 226, 226, /* 9730 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9740 */ 226, 46, 226, 226, 226, 226, 226, 226, 226, 226, /* 9750 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 64, /* 9760 */ 226, 226, 226, 226, 226, 226, 111, 226, 226, 226, /* 9770 */ 226, 226, 226, 226, 119, 120, 121, 122, 123, 124, /* 9780 */ 125, 4, 226, 226, 226, 8, 226, 226, 11, 12, /* 9790 */ 1, 2, 3, 4, 5, 6, 226, 226, 226, 22, /* 9800 */ 105, 106, 107, 108, 109, 110, 29, 226, 113, 114, /* 9810 */ 226, 34, 35, 36, 226, 226, 39, 40, 41, 42, /* 9820 */ 43, 44, 45, 46, 226, 226, 49, 226, 226, 226, /* 9830 */ 53, 54, 55, 226, 226, 226, 226, 226, 49, 226, /* 9840 */ 226, 226, 53, 66, 226, 226, 226, 70, 226, 226, /* 9850 */ 61, 62, 226, 226, 226, 226, 67, 68, 1, 2, /* 9860 */ 3, 4, 5, 6, 226, 226, 226, 226, 226, 226, /* 9870 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 9880 */ 226, 226, 226, 226, 226, 226, 226, 226, 111, 226, /* 9890 */ 226, 226, 226, 226, 226, 226, 119, 120, 121, 122, /* 9900 */ 123, 124, 125, 4, 226, 226, 226, 8, 226, 226, /* 9910 */ 11, 12, 1, 2, 3, 4, 5, 6, 61, 62, /* 9920 */ 226, 22, 65, 226, 67, 68, 226, 226, 29, 226, /* 9930 */ 226, 226, 226, 34, 35, 36, 226, 226, 39, 40, /* 9940 */ 41, 42, 43, 44, 46, 46, 226, 226, 49, 226, /* 9950 */ 226, 226, 53, 54, 55, 226, 226, 226, 226, 226, /* 9960 */ 49, 226, 64, 226, 53, 66, 226, 226, 226, 70, /* 9970 */ 226, 72, 61, 62, 226, 226, 226, 226, 67, 68, /* 9980 */ 1, 2, 3, 4, 5, 6, 226, 226, 226, 226, /* 9990 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 10000 */ 226, 226, 226, 105, 106, 107, 108, 109, 110, 226, /* 10010 */ 111, 226, 226, 226, 226, 226, 226, 226, 119, 120, /* 10020 */ 121, 122, 123, 124, 125, 4, 226, 226, 226, 8, /* 10030 */ 226, 226, 11, 12, 226, 56, 226, 226, 226, 226, /* 10040 */ 61, 62, 63, 22, 226, 226, 67, 68, 226, 226, /* 10050 */ 29, 226, 226, 226, 226, 34, 35, 36, 226, 226, /* 10060 */ 39, 40, 41, 42, 43, 44, 226, 46, 226, 226, /* 10070 */ 49, 226, 226, 226, 53, 54, 55, 226, 226, 226, /* 10080 */ 226, 226, 226, 226, 226, 226, 226, 66, 226, 226, /* 10090 */ 226, 70, 226, 226, 226, 226, 226, 226, 226, 226, /* 10100 */ 226, 226, 10, 226, 226, 13, 14, 15, 16, 17, /* 10110 */ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, /* 10120 */ 28, 29, 30, 31, 32, 33, 226, 226, 226, 37, /* 10130 */ 38, 226, 111, 226, 226, 226, 44, 226, 46, 47, /* 10140 */ 119, 120, 121, 122, 123, 124, 125, 55, 137, 138, /* 10150 */ 226, 226, 226, 142, 46, 226, 226, 226, 226, 226, /* 10160 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 10170 */ 226, 226, 64, 226, 226, 226, 226, 226, 226, 226, /* 10180 */ 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, /* 10190 */ 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, /* 10200 */ 189, 190, 137, 138, 226, 226, 226, 142, 226, 226, /* 10210 */ 226, 200, 226, 105, 106, 107, 108, 109, 110, 226, /* 10220 */ 226, 210, 211, 212, 213, 226, 226, 226, 226, 226, /* 10230 */ 226, 226, 226, 226, 169, 170, 171, 172, 173, 174, /* 10240 */ 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, /* 10250 */ 185, 186, 187, 188, 189, 190, 4, 226, 226, 226, /* 10260 */ 8, 226, 226, 11, 12, 200, 1, 2, 3, 4, /* 10270 */ 5, 6, 226, 226, 22, 210, 211, 212, 213, 226, /* 10280 */ 226, 29, 226, 226, 226, 226, 34, 35, 36, 226, /* 10290 */ 226, 39, 40, 41, 42, 43, 44, 226, 46, 226, /* 10300 */ 226, 49, 226, 226, 226, 53, 54, 55, 226, 226, /* 10310 */ 226, 226, 226, 226, 226, 226, 226, 226, 66, 226, /* 10320 */ 226, 56, 70, 226, 226, 226, 61, 62, 63, 226, /* 10330 */ 226, 226, 67, 68, 226, 226, 226, 226, 226, 226, /* 10340 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 137, /* 10350 */ 138, 226, 226, 226, 142, 226, 226, 226, 226, 226, /* 10360 */ 226, 226, 226, 111, 226, 226, 226, 226, 226, 226, /* 10370 */ 226, 119, 120, 121, 122, 123, 124, 125, 226, 226, /* 10380 */ 226, 169, 170, 171, 172, 173, 174, 175, 176, 177, /* 10390 */ 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, /* 10400 */ 188, 189, 190, 137, 138, 226, 226, 226, 142, 226, /* 10410 */ 226, 226, 200, 226, 226, 226, 226, 226, 226, 226, /* 10420 */ 226, 226, 210, 211, 212, 213, 226, 226, 226, 226, /* 10430 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 10440 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 10450 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 10460 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 10470 */ 226, 226, 226, 226, 226, 226, 210, 211, 212, 213, /* 10480 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 10490 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 10500 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 10510 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 10520 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 10530 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 10540 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 10550 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 10560 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 10570 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 10580 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 10590 */ 213, 1, 2, 3, 4, 5, 6, 226, 226, 226, /* 10600 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 10610 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 10620 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 10630 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 10640 */ 226, 226, 226, 53, 226, 226, 210, 211, 212, 213, /* 10650 */ 226, 61, 62, 226, 226, 226, 226, 67, 68, 226, /* 10660 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 10670 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 10680 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 10690 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 10700 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 10710 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 10720 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 10730 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 10740 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 10750 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 10760 */ 213, 1, 2, 3, 4, 5, 6, 226, 226, 226, /* 10770 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 10780 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 10790 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 10800 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 10810 */ 226, 226, 226, 53, 226, 226, 210, 211, 212, 213, /* 10820 */ 226, 61, 62, 226, 226, 226, 226, 67, 68, 226, /* 10830 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 10840 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 10850 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 10860 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 10870 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 10880 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 10890 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 10900 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 10910 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 10920 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 10930 */ 213, 1, 2, 3, 4, 5, 6, 226, 226, 226, /* 10940 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 10950 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 10960 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 10970 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 10980 */ 226, 226, 226, 53, 226, 226, 210, 211, 212, 213, /* 10990 */ 226, 61, 62, 226, 226, 226, 226, 67, 68, 226, /* 11000 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 11010 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 11020 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 11030 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 11040 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 11050 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 11060 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 11070 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 11080 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 11090 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 11100 */ 213, 1, 2, 3, 4, 5, 6, 226, 226, 226, /* 11110 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 11120 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 11130 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 11140 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 11150 */ 226, 226, 226, 53, 226, 226, 210, 211, 212, 213, /* 11160 */ 226, 61, 62, 226, 226, 226, 226, 67, 68, 226, /* 11170 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 11180 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 11190 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 11200 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 11210 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 11220 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 11230 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 11240 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 11250 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 11260 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 11270 */ 213, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11280 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 11290 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 11300 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 11310 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 11320 */ 226, 226, 226, 226, 226, 226, 210, 211, 212, 213, /* 11330 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11340 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 11350 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 11360 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 11370 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 11380 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 11390 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 11400 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 11410 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 11420 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 11430 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 11440 */ 213, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11450 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 11460 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 11470 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 11480 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 11490 */ 226, 226, 226, 226, 226, 226, 210, 211, 212, 213, /* 11500 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11510 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 11520 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 11530 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 11540 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 11550 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 11560 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 11570 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 11580 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 11590 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 11600 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 11610 */ 213, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11620 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 11630 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 11640 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 11650 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 11660 */ 226, 226, 226, 226, 226, 226, 210, 211, 212, 213, /* 11670 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11680 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 11690 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 11700 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 11710 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 11720 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 11730 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 11740 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 11750 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 11760 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 11770 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 11780 */ 213, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11790 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 11800 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 11810 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 11820 */ 137, 138, 226, 226, 226, 142, 200, 226, 226, 226, /* 11830 */ 226, 226, 226, 226, 226, 226, 210, 211, 212, 213, /* 11840 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11850 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 11860 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 11870 */ 187, 188, 189, 190, 137, 138, 226, 226, 226, 142, /* 11880 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 11890 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 11900 */ 226, 226, 226, 226, 226, 226, 169, 170, 171, 172, /* 11910 */ 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, /* 11920 */ 183, 184, 185, 186, 187, 188, 189, 190, 226, 226, /* 11930 */ 226, 226, 226, 137, 138, 226, 226, 200, 142, 226, /* 11940 */ 226, 226, 226, 226, 226, 226, 226, 210, 211, 212, /* 11950 */ 213, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 11960 */ 226, 226, 226, 226, 226, 169, 170, 171, 172, 173, /* 11970 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, /* 11980 */ 184, 185, 186, 187, 188, 189, 190, 226, 226, 226, /* 11990 */ 137, 138, 226, 226, 226, 226, 200, 226, 226, 226, /* 12000 */ 226, 226, 226, 226, 226, 226, 210, 211, 212, 213, /* 12010 */ 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, /* 12020 */ 226, 226, 169, 170, 171, 172, 173, 174, 175, 176, /* 12030 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, /* 12040 */ 187, 188, 189, 190, 226, 226, 226, 226, 226, 226, /* 12050 */ 226, 226, 226, 200, 226, 226, 226, 226, 226, 226, /* 12060 */ 226, 226, 226, 210, 211, 212, 213, 226, 226, 226, /* 12070 */ 226, 226, 226, 226, 10, 226, 226, 13, 14, 15, /* 12080 */ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, /* 12090 */ 26, 27, 28, 29, 30, 31, 32, 33, 226, 226, /* 12100 */ 226, 37, 38, 226, 226, 226, 226, 226, 44, 226, /* 12110 */ 46, 47, 10, 226, 50, 13, 14, 15, 16, 17, /* 12120 */ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, /* 12130 */ 28, 29, 30, 31, 32, 33, 226, 226, 226, 37, /* 12140 */ 38, 226, 226, 226, 226, 226, 44, 226, 46, 47, /* 12150 */ 10, 226, 50, 13, 14, 15, 16, 17, 18, 19, /* 12160 */ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, /* 12170 */ 30, 31, 32, 33, 226, 226, 226, 37, 38, 226, /* 12180 */ 226, 226, 226, 226, 44, 226, 46, 47, 10, 226, /* 12190 */ 226, 13, 14, 15, 16, 17, 18, 19, 20, 21, /* 12200 */ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 12210 */ 32, 33, 226, 226, 226, 37, 38, 226, 226, 226, /* 12220 */ 226, 226, 44, 226, 46, 47, 226, 226, 50, 226, /* 12230 */ 226, 226, 226, 10, 94, 226, 13, 14, 15, 16, /* 12240 */ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, /* 12250 */ 27, 28, 29, 30, 31, 32, 33, 226, 226, 226, /* 12260 */ 37, 38, 226, 226, 226, 226, 226, 44, 226, 46, /* 12270 */ 47, 10, 226, 226, 13, 14, 15, 16, 17, 18, /* 12280 */ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, /* 12290 */ 29, 30, 31, 32, 33, 226, 226, 226, 37, 38, /* 12300 */ 226, 226, 226, 226, 226, 44, 226, 46, 47, 226, /* 12310 */ 226, 226, 226, 226, 226, 226, 55, 94, 10, 226, /* 12320 */ 226, 13, 14, 15, 16, 17, 18, 19, 20, 21, /* 12330 */ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 12340 */ 32, 33, 226, 226, 226, 37, 38, 226, 226, 226, /* 12350 */ 226, 226, 44, 226, 46, 47, 226, 226, 226, 226, /* 12360 */ 226, 226, 226, 55, 226, 10, 226, 226, 13, 14, /* 12370 */ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, /* 12380 */ 25, 26, 27, 28, 29, 30, 31, 32, 33, 226, /* 12390 */ 226, 226, 37, 38, 226, 226, 226, 226, 226, 44, /* 12400 */ 226, 46, 47, 10, 226, 50, 13, 14, 15, 16, /* 12410 */ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, /* 12420 */ 27, 28, 29, 30, 31, 32, 33, 226, 226, 226, /* 12430 */ 37, 38, 226, 226, 226, 226, 226, 44, 226, 46, /* 12440 */ 47, 226, 226, 226, 226, 226, 226, 226, 55, }; #define YY_SHIFT_USE_DFLT (-58) static short yy_shift_ofst[] = { /* 0 */ 7249, 1662, 8970, -58, -58, -58, -58, -58, -58, -58, /* 10 */ -58, 1271, 1241, -58, 956, 656, -58, 956, -58, 826, /* 20 */ 664, -58, -58, 1700, 1673, 7968, 1117, 7841, 711, 2210, /* 30 */ -58, -4, -58, -58, -58, -58, -58, -58, -58, -58, /* 40 */ -58, -58, -58, -58, -58, -58, -58, -58, -58, -58, /* 50 */ -58, -58, -58, -58, -58, -58, -58, -58, 1383, -58, /* 60 */ 1243, -58, 10021, 781, 5039, 4793, 629, 435, 1546, 4178, /* 70 */ 3932, -58, 10021, 403, 464, -58, 134, -58, -58, 10021, /* 80 */ 1287, 6884, 6884, 1324, 119, 2456, -58, 10021, 1406, 4424, /* 90 */ 3686, -58, 1517, 3071, 1718, 1161, 10021, 1578, -58, 10021, /* 100 */ 289, 10021, 10021, 52, 10021, 10021, 52, 10021, 10021, 52, /* 110 */ 10021, 10021, 52, 10021, 10021, 166, 10021, 10021, 7670, 10021, /* 120 */ 10021, 52, 10021, 10021, 166, 177, 1192, 8575, 10021, 7792, /* 130 */ 10021, 10021, 7792, 10021, 8400, 10021, 8400, 10021, 166, 10021, /* 140 */ 166, 10021, 166, 10021, 8400, 10021, 8158, 10021, 7914, 10021, /* 150 */ 7183, 10021, 7183, 10021, 7183, 10021, 7183, 10021, 7183, 10021, /* 160 */ 7078, 10021, 52, 10021, 52, 7965, 12140, 10021, 7670, 7007, /* 170 */ -58, -58, -58, -58, -58, -58, -58, -58, -58, -58, /* 180 */ -58, -58, -58, -58, 7426, -58, 1621, 10021, 289, 908, /* 190 */ 1275, 10021, -18, 239, 115, 1193, 9655, 7670, 32, 7843, /* 200 */ 1491, 1407, 10021, 166, -58, 10021, 52, -58, -58, -58, /* 210 */ -58, -58, -58, -58, -58, -58, 8087, 12223, -58, 748, /* 220 */ -58, 10021, 8823, 1388, 8209, -58, 410, -58, 10252, 1495, /* 230 */ 1478, 298, 8331, 430, -58, -58, 859, 769, 1641, 8453, /* 240 */ 883, -58, -58, -58, -58, -58, -58, 1404, 8212, 1144, /* 250 */ 8809, -58, 1337, 7111, -58, -58, -58, -58, -58, -58, /* 260 */ -58, -58, 1142, 1149, -58, -58, 9372, 1634, 1570, 585, /* 270 */ -58, 159, -58, 8741, -58, 1200, 7111, -58, -58, -58, /* 280 */ -58, 1432, 1440, 7111, -58, 7988, 1347, 7111, -58, 1567, /* 290 */ 1376, 7111, -58, 347, 1520, 7111, -58, 1525, 1498, 7111, /* 300 */ -58, 472, 1453, 7111, -58, 1320, 1262, 7111, -58, 594, /* 310 */ 1007, 7111, -58, 892, 763, 7111, -58, 1697, 1682, -58, /* 320 */ 407, 1576, 7111, -58, 261, 496, 7111, -58, 723, 1181, /* 330 */ 7111, -58, 1267, 1276, 7111, -58, 957, 1352, 7111, -58, /* 340 */ 1403, 1414, 7111, -58, 1450, 365, 734, 1501, 980, 1349, /* 350 */ 1482, 1482, -58, 1156, 51, 488, 5654, -58, 1145, 202, /* 360 */ 8697, 12261, 5408, 5162, -58, 377, 429, -58, 377, -58, /* 370 */ 9207, -58, -58, -58, -58, -58, -58, -58, 10021, -58, /* 380 */ 7670, 501, 9695, 10021, -58, 9167, 160, 10021, -58, 1257, /* 390 */ -58, 7548, 8445, 10021, -58, 9899, 160, 10021, -58, -58, /* 400 */ -58, -58, -58, 245, 418, 160, 10021, -58, -29, 160, /* 410 */ 10021, -58, 1618, 10108, 10021, -58, 7721, 160, 10021, -58, /* 420 */ 9898, 10021, -58, 7599, 160, 10021, -58, 7477, 160, 10021, /* 430 */ -58, 8439, 10021, -58, 7355, 160, 10021, -58, -58, -58, /* 440 */ 491, 1201, 160, 10021, -58, 1254, 160, 10021, -58, -58, /* 450 */ 10021, 901, -58, 10021, -58, 7670, -58, 1389, -58, 1409, /* 460 */ -58, 1443, -58, 1452, -58, 7233, 12102, -58, -58, 10021, /* 470 */ 12064, -58, 10021, 12355, -58, 10021, 12178, -58, 1289, 1044, /* 480 */ -58, 1289, -58, 1167, 10021, 7670, -58, 1289, 74, -58, /* 490 */ 1289, 121, -58, 1289, 240, -58, 1289, 325, -58, 1289, /* 500 */ 409, -58, 1289, 443, -58, 1289, 532, -58, 1289, 548, /* 510 */ -58, 1289, 652, -58, 1289, 655, -58, 7670, -58, -58, /* 520 */ -58, -58, 10021, 12393, 6884, 6269, -58, 1348, 1278, 7129, /* 530 */ 12308, 1472, 2702, -58, -58, 10021, 10092, 6884, 2948, -58, /* 540 */ -58, 1222, 1198, 3194, 3317, -58, -58, 1156, -58, -58, /* 550 */ -58, -58, -58, -58, -58, -58, 730, 3563, 3809, -58, /* 560 */ -58, 623, 14, 9777, -58, 717, -58, 1674, 1648, 1626, /* 570 */ 9533, -58, 779, -58, -58, 1532, 9411, -58, 789, -58, /* 580 */ 1584, 1600, 1603, 9289, -58, 822, -58, 1644, 10252, 840, /* 590 */ -58, -58, 1651, 10021, 7670, -58, -58, -58, 902, -58, /* 600 */ -58, 10021, 7670, 10021, 7670, -58, 915, -58, -58, 1106, /* 610 */ 1131, 1182, 9045, -58, 963, -58, 10021, 7670, 7304, -58, /* 620 */ 986, -58, -58, 813, 1299, 1302, 8923, 1025, -58, -58, /* 630 */ 1326, 1333, 8801, 1038, -58, -58, -18, -18, -18, -18, /* 640 */ -18, -18, -18, -18, 7670, 1413, 10021, 1483, -58, -58, /* 650 */ -58, 1469, 6884, 6884, -58, -58, -58, 10021, 1009, 6023, /* 660 */ 6392, -58, -58, 1422, 6761, 1841, -58, -58, -58, 1122, /* 670 */ -57, 1256, 1668, -58, 1588, 2087, 2333, -58, -58, -58, /* 680 */ -58, 1463, 8921, -58, 1371, -58, -58, -58, -58, -58, /* 690 */ 1328, 168, 1008, 633, -58, -58, 2579, -58, 242, -58, /* 700 */ -58, 420, 1240, 7841, 55, 611, -58, 857, -58, -58, /* 710 */ 1103, -58, 1226, -58, -58, 1475, 478, -58, -6, 542, /* 720 */ -58, -6, -58, -58, 7367, -58, 1330, -58, 8099, 9301, /* 730 */ -58, 10760, 1321, 1314, 8334, 654, 7841, 1286, -58, -58, /* 740 */ 637, 671, 7841, 1247, -58, -58, -58, -58, -58, -58, /* 750 */ -58, -58, -58, -58, -58, -58, -58, 8077, 10590, 853, /* 760 */ 810, 8578, 694, 7841, 567, -58, -58, 666, 732, 7841, /* 770 */ 75, -58, -58, -58, -58, -58, 9498, 582, 1661, 7111, /* 780 */ 1657, -58, 1622, 7111, 1629, -58, 583, 1596, 7111, 1573, /* 790 */ -58, 1550, 7111, 1552, -58, 9369, -58, -58, 1566, 80, /* 800 */ -58, 1577, 693, -58, -6, 584, -58, 7733, -58, 1607, /* 810 */ -58, 7611, 9545, -58, 11100, 1640, 1643, 8456, 1080, 6515, /* 820 */ -58, 6146, -58, -58, 7841, 787, 5900, -58, 5777, -58, /* 830 */ -58, 898, 1076, 5531, -58, 5285, -58, -58, 7841, 834, /* 840 */ 4916, -58, 4670, -58, -58, 8077, 10930, 1063, 1094, 8700, /* 850 */ 1209, 4301, -58, 4055, -58, -58, 7841, 997, 2825, -58, /* 860 */ 1964, -58, -58, 983, 178, 1595, -58, 3440, -58, -58, /* 870 */ 7841, 1058, 4547, -58, 6638, -58, -58, 9008, 9613, -58, /* 880 */ 9857, -58, 9857, 9789, 278, -58, 7111, 1115, -58, 1401, /* 890 */ -58, -47, 1412, 1018, 1441, 691, -58, -58, 1454, -58, /* 900 */ -58, 1459, -58, 9911, 524, -58, 7111, 1138, -58, 1507, /* 910 */ -58, 1516, -58, 7489, 9057, 10265, 8077, 9979, -58, 9125, /* 920 */ -6, 584, -58, -42, 364, 570, -58, 1061, 1069, -58, /* 930 */ -6, 584, -58, -6, 584, -58, 1526, 1361, 447, -58, /* 940 */ 1214, 1363, -58, -6, 584, -58, -58, }; #define YY_REDUCE_USE_DFLT (-201) static short yy_reduce_ofst[] = { /* 0 */ 8174, -201, 124, -201, -201, -201, -201, -201, -201, -201, /* 10 */ -201, -201, -201, -201, 662, -201, -201, 854, -201, -201, /* 20 */ -201, -201, -201, -201, -201, 924, -201, 1077, -201, 10011, /* 30 */ -201, 11853, -201, -201, -201, -201, -201, -201, -201, -201, /* 40 */ -201, -201, -201, -201, -201, -201, -201, -201, -201, -201, /* 50 */ -201, -201, -201, -201, -201, -201, -201, -201, -201, -201, /* 60 */ -201, -201, 1367, -201, 10776, 11853, 503, 1146, -201, 10946, /* 70 */ 11853, -201, 1613, -201, 198, -201, 1124, -201, -201, 1244, /* 80 */ -201, 11286, 11853, -201, 11343, 11853, -201, 1121, -201, 11456, /* 90 */ 11853, -201, -201, 10717, 11853, -201, 704, -201, -201, 3368, /* 100 */ -201, 1408, 1777, -201, 3253, 1900, -201, 2720, 2549, -201, /* 110 */ 2795, 2753, -201, 3212, 3089, -201, 2474, 2023, -201, 1531, /* 120 */ 3410, -201, 3164, 2843, -201, -201, -201, 424, 2303, -201, /* 130 */ 2999, 3041, -201, 1039, -201, 1285, -201, 2630, -201, 1736, /* 140 */ -201, 3533, -201, 2884, -201, 2966, -201, 1859, -201, 3287, /* 150 */ -201, 2392, -201, 2507, -201, 3491, -201, 2918, -201, 2351, /* 160 */ -201, 3335, -201, 2876, -201, 1982, -201, 3458, -201, 1163, /* 170 */ -201, -201, -201, -201, -201, -201, -201, -201, -201, -201, /* 180 */ -201, -201, -201, -201, -201, -201, -201, 3499, -201, -201, /* 190 */ -201, 2761, -201, -201, -201, -201, 383, -201, -201, 458, /* 200 */ -201, -201, 2638, -201, -201, 2672, -201, -201, -201, -201, /* 210 */ -201, -201, -201, -201, -201, -201, -156, -201, -201, -201, /* 220 */ -201, -33, 1252, -201, 301, -201, -201, -201, 998, -201, /* 230 */ -201, -201, 89, -201, -201, -201, -201, -201, -201, 137, /* 240 */ -201, -201, -201, -201, -201, -201, -201, -201, 678, -201, /* 250 */ 206, -201, -201, -154, -201, -201, -201, -201, -201, -201, /* 260 */ -201, -201, -201, -201, -201, -201, 50, -201, -201, -201, /* 270 */ -201, -201, -201, 616, -201, -201, 793, -201, -201, -201, /* 280 */ -201, -201, -201, 1410, -201, 975, -201, 1204, -201, -201, /* 290 */ -201, 360, -201, -201, -201, 1426, -201, -201, -201, 1382, /* 300 */ -201, -201, -201, 1239, -201, -201, -201, 1133, -201, -201, /* 310 */ -201, 848, -201, -201, -201, 230, -201, -201, -201, -201, /* 320 */ -201, -201, 1533, -201, -201, -201, 927, -201, -201, -201, /* 330 */ 1123, -201, -201, -201, 1217, -201, -201, -201, 1279, -201, /* 340 */ -201, -201, 1327, -201, -201, 11737, 11853, -201, 11626, 11853, /* 350 */ 925, 1551, -201, 976, -201, 10547, 11853, -201, -201, -201, /* 360 */ 2269, -201, 10663, 11853, -201, 143, -201, -201, 1425, -201, /* 370 */ 46, -201, -201, -201, -201, -201, -201, -201, 1319, -201, /* 380 */ -201, -201, 16, 1442, -201, 752, 1159, 1688, -201, -201, /* 390 */ -201, -201, 477, 1934, -201, 752, 870, 2057, -201, -201, /* 400 */ -201, -201, -201, -201, -201, 60, 785, -201, -201, 1535, /* 410 */ 950, -201, -201, -200, 539, -201, 752, 1402, 1154, -201, /* 420 */ 622, 1073, -201, 752, 1534, 800, -201, 752, 84, 1196, /* 430 */ -201, 660, 2180, -201, 752, 846, 2015, -201, -201, -201, /* 440 */ -201, -201, 1071, 1811, -201, -201, 1132, 1565, -201, -201, /* 450 */ 170, -201, -201, 1400, -201, -201, -201, -201, -201, -201, /* 460 */ -201, -201, -201, -201, -201, 3376, -201, -201, -201, 3122, /* 470 */ -201, -201, 3130, -201, -201, 2146, -201, -201, 982, -201, /* 480 */ -201, 1360, -201, -201, 3007, -201, -201, -167, -201, -201, /* 490 */ -68, -201, -201, 65, -201, -201, 99, -201, -201, 112, /* 500 */ -201, -201, 188, -201, -201, 219, -201, -201, 253, -201, /* 510 */ -201, 294, -201, -201, 358, -201, -201, -201, -201, -201, /* 520 */ -201, -201, 3245, -201, 11397, 11853, -201, -201, -201, 1654, /* 530 */ -201, 11227, 11853, -201, -201, 2228, -201, 11173, 11853, -201, /* 540 */ -201, -201, -201, 11057, 11853, -201, -201, 929, -201, -201, /* 550 */ -201, -201, -201, -201, -201, -201, -201, 11003, 11853, -201, /* 560 */ -201, -201, -201, 581, -201, -201, -201, -201, -201, -201, /* 570 */ 335, -201, -201, -201, -201, -201, 547, -201, -201, -201, /* 580 */ -201, -201, -201, 260, -201, -201, -201, -201, -109, -201, /* 590 */ -201, -201, -201, 827, -201, -201, -201, -201, -201, -201, /* 600 */ -201, 2515, -201, 2105, -201, -201, -201, -201, -201, -201, /* 610 */ -201, -201, 670, -201, -201, -201, 2426, -201, -201, -201, /* 620 */ -201, -201, -201, -201, -201, -201, -61, -201, -201, -201, /* 630 */ -201, -201, 212, -201, -201, -201, -201, -201, -201, -201, /* 640 */ -201, -201, -201, -201, -201, -201, 875, -201, -201, -201, /* 650 */ -201, -201, 10436, 11853, -201, -201, -201, 1490, -201, 10323, /* 660 */ 11853, -201, -201, -201, 10212, 11853, -201, -201, -201, 1040, /* 670 */ 1146, -201, -201, -201, -201, 10065, 11853, -201, -201, -201, /* 680 */ -201, -201, -143, -201, -201, -201, -201, -201, -201, -201, /* 690 */ -201, -201, -201, -201, -201, -201, 11796, -201, 11853, -201, /* 700 */ -201, -201, -201, 1323, -201, 11683, -201, 11853, -201, -201, /* 710 */ 11567, -201, 11853, -201, -201, -201, 1377, -201, 434, 1357, /* 720 */ -201, 1273, -201, -201, 236, -201, -201, -201, -72, 22, /* 730 */ -201, 788, -201, -201, 968, -201, 1692, -201, -201, -201, /* 740 */ -201, -201, 1815, -201, -201, -201, -201, -201, -201, -201, /* 750 */ -201, -201, -201, -201, -201, -201, -201, -101, 788, -201, /* 760 */ -201, 801, -201, 2307, -201, -201, -201, -201, -201, 708, /* 770 */ -201, -201, -201, -201, -201, -201, -101, -201, -201, 1553, /* 780 */ -201, -201, -201, 1530, -201, -201, -201, -201, 1504, -201, /* 790 */ -201, -201, 1449, -201, -201, 22, -201, -201, -201, 1480, /* 800 */ -201, -201, 1487, -201, 659, 1502, -201, -17, -201, -201, /* 810 */ -201, 344, 149, -201, 788, -201, -201, 876, -201, 10266, /* 820 */ -201, 11853, -201, -201, 953, -201, 10493, -201, 11853, -201, /* 830 */ -201, -201, -201, 10606, -201, 11853, -201, -201, 2184, -201, /* 840 */ 10833, -201, 11853, -201, -201, 832, 788, -201, -201, 753, /* 850 */ -201, 10887, -201, 11853, -201, -201, 1938, -201, 11513, -201, /* 860 */ 11853, -201, -201, -201, -201, 11116, -201, 11853, -201, -201, /* 870 */ 1569, -201, 10377, -201, 11853, -201, -201, 2435, 149, -201, /* 880 */ 832, -201, 845, 788, 1265, -201, 1288, 1293, -201, -201, /* 890 */ -201, 719, -201, -201, -201, 1334, -201, -201, -201, -201, /* 900 */ -201, -201, -201, 788, 1380, -201, 1386, 1387, -201, -201, /* 910 */ -201, -201, -201, 467, 563, 149, 845, 149, -201, 149, /* 920 */ 1024, 1594, -201, -201, -201, 780, -201, -201, 1090, -201, /* 930 */ 1059, 1172, -201, 782, 1394, -201, -201, -201, 445, -201, /* 940 */ -201, 1354, -201, 658, 1477, -201, -201, }; static YYACTIONTYPE yy_default[] = { /* 0 */ 1406, 1406, 1406, 949, 951, 952, 953, 954, 955, 956, /* 10 */ 957, 1406, 1406, 958, 1406, 1406, 959, 1406, 960, 962, /* 20 */ 1406, 963, 961, 1406, 1406, 1406, 1406, 1406, 1406, 1406, /* 30 */ 964, 1406, 968, 1138, 1140, 1141, 1142, 1143, 1144, 1145, /* 40 */ 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, /* 50 */ 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1406, 1164, /* 60 */ 1406, 1165, 1406, 1406, 1406, 1406, 1170, 1171, 1406, 1406, /* 70 */ 1406, 1173, 1406, 1406, 1406, 1181, 1406, 1182, 1183, 1406, /* 80 */ 1406, 1185, 1186, 1406, 1406, 1406, 1189, 1406, 1406, 1406, /* 90 */ 1406, 1191, 1406, 1406, 1406, 1406, 1406, 1406, 1193, 1406, /* 100 */ 1275, 1406, 1406, 1276, 1406, 1406, 1277, 1406, 1406, 1278, /* 110 */ 1406, 1406, 1279, 1406, 1406, 1280, 1406, 1406, 1281, 1406, /* 120 */ 1406, 1282, 1406, 1406, 1283, 1406, 1297, 1406, 1406, 1284, /* 130 */ 1406, 1406, 1285, 1406, 1303, 1406, 1304, 1406, 1305, 1406, /* 140 */ 1306, 1406, 1307, 1406, 1308, 1406, 1309, 1406, 1310, 1406, /* 150 */ 1311, 1406, 1312, 1406, 1313, 1406, 1314, 1406, 1315, 1406, /* 160 */ 1316, 1406, 1317, 1406, 1318, 1406, 1406, 1406, 1367, 1406, /* 170 */ 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, /* 180 */ 1134, 1135, 1136, 1137, 1406, 1294, 1406, 1406, 1295, 1406, /* 190 */ 1406, 1406, 1296, 1322, 1406, 1300, 1406, 1371, 1322, 1406, /* 200 */ 1406, 1406, 1406, 1319, 1320, 1406, 1321, 1323, 1324, 1325, /* 210 */ 1326, 1327, 1328, 1329, 1330, 1331, 1406, 1383, 1332, 1406, /* 220 */ 1333, 1406, 1406, 1334, 1406, 1335, 1406, 1336, 1406, 1406, /* 230 */ 1406, 1406, 1406, 1406, 1346, 1347, 1406, 1406, 1406, 1406, /* 240 */ 1406, 1350, 1351, 1364, 1365, 1366, 1370, 1406, 1406, 1406, /* 250 */ 1406, 1088, 1090, 1406, 1106, 1384, 1385, 1386, 1387, 1388, /* 260 */ 1389, 1390, 1406, 1406, 1391, 1392, 1406, 1384, 1386, 1406, /* 270 */ 1393, 1406, 1394, 1406, 1395, 1406, 1406, 1397, 1402, 1398, /* 280 */ 1396, 1406, 1091, 1406, 1107, 1406, 1092, 1406, 1108, 1406, /* 290 */ 1093, 1406, 1109, 1406, 1096, 1406, 1112, 1406, 1097, 1406, /* 300 */ 1113, 1406, 1100, 1406, 1116, 1406, 1101, 1406, 1117, 1406, /* 310 */ 1104, 1406, 1120, 1406, 1105, 1406, 1121, 1406, 1406, 1122, /* 320 */ 1406, 1094, 1406, 1110, 1406, 1095, 1406, 1111, 1406, 1098, /* 330 */ 1406, 1114, 1406, 1099, 1406, 1115, 1406, 1102, 1406, 1118, /* 340 */ 1406, 1103, 1406, 1119, 1406, 1406, 1406, 1406, 1406, 1406, /* 350 */ 1195, 1196, 1197, 1406, 1406, 1406, 1406, 1199, 1406, 1406, /* 360 */ 1406, 1406, 1406, 1406, 1206, 1406, 1406, 1212, 1406, 1213, /* 370 */ 1406, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1406, 1222, /* 380 */ 1274, 1406, 1406, 1406, 1223, 1406, 1406, 1406, 1226, 1406, /* 390 */ 1238, 1406, 1406, 1406, 1227, 1406, 1406, 1406, 1228, 1236, /* 400 */ 1237, 1239, 1240, 1406, 1406, 1406, 1406, 1224, 1406, 1406, /* 410 */ 1406, 1225, 1406, 1406, 1406, 1229, 1406, 1406, 1406, 1230, /* 420 */ 1406, 1406, 1231, 1406, 1406, 1406, 1232, 1406, 1406, 1406, /* 430 */ 1233, 1406, 1406, 1234, 1406, 1406, 1406, 1235, 1241, 1242, /* 440 */ 1406, 1406, 1406, 1406, 1243, 1406, 1406, 1406, 1244, 1214, /* 450 */ 1406, 1406, 1246, 1406, 1247, 1249, 1248, 1364, 1250, 1366, /* 460 */ 1251, 1365, 1252, 1320, 1253, 1406, 1406, 1254, 1255, 1406, /* 470 */ 1406, 1256, 1406, 1406, 1257, 1406, 1406, 1258, 1406, 1406, /* 480 */ 1259, 1406, 1270, 1272, 1406, 1273, 1271, 1406, 1406, 1260, /* 490 */ 1406, 1406, 1261, 1406, 1406, 1262, 1406, 1406, 1263, 1406, /* 500 */ 1406, 1264, 1406, 1406, 1265, 1406, 1406, 1266, 1406, 1406, /* 510 */ 1267, 1406, 1406, 1268, 1406, 1406, 1269, 1406, 1404, 1405, /* 520 */ 1139, 1207, 1406, 1406, 1406, 1406, 1208, 1406, 1406, 1406, /* 530 */ 1406, 1406, 1406, 1209, 1210, 1406, 1406, 1406, 1406, 1211, /* 540 */ 1200, 1406, 1406, 1406, 1406, 1202, 1201, 1406, 1203, 1205, /* 550 */ 1204, 1198, 1194, 1376, 1375, 1089, 1406, 1406, 1406, 1374, /* 560 */ 1373, 1406, 1406, 1406, 1352, 1406, 1353, 1406, 1406, 1406, /* 570 */ 1406, 1354, 1406, 1355, 1369, 1337, 1406, 1338, 1406, 1339, /* 580 */ 1406, 1406, 1340, 1406, 1341, 1406, 1342, 1406, 1406, 1406, /* 590 */ 1343, 1378, 1406, 1406, 1383, 1380, 1381, 1379, 1406, 1344, /* 600 */ 1345, 1406, 1372, 1406, 1377, 1348, 1406, 1349, 1301, 1406, /* 610 */ 1406, 1406, 1406, 1356, 1406, 1357, 1406, 1368, 1406, 1302, /* 620 */ 1406, 1358, 1359, 1406, 1406, 1298, 1406, 1406, 1360, 1361, /* 630 */ 1406, 1299, 1406, 1406, 1362, 1363, 1293, 1292, 1291, 1290, /* 640 */ 1289, 1288, 1287, 1286, 1403, 1406, 1406, 1406, 1192, 1190, /* 650 */ 1188, 1406, 1406, 1187, 1184, 1175, 1177, 1406, 1406, 1406, /* 660 */ 1406, 1180, 1179, 1406, 1406, 1406, 1172, 1174, 1178, 1166, /* 670 */ 1167, 1406, 1406, 1169, 1406, 1406, 1406, 1176, 1168, 965, /* 680 */ 1078, 1079, 1406, 1080, 1082, 1085, 1083, 1084, 1086, 1087, /* 690 */ 1406, 1406, 1406, 1406, 1123, 1081, 1406, 970, 1406, 974, /* 700 */ 971, 1406, 1406, 1406, 1406, 1406, 966, 1406, 969, 967, /* 710 */ 1406, 972, 1406, 975, 973, 1406, 1406, 976, 1406, 1406, /* 720 */ 977, 1406, 991, 993, 1406, 994, 1406, 995, 1406, 1406, /* 730 */ 1028, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1058, 1062, /* 740 */ 1406, 1406, 1406, 1406, 1059, 1063, 1066, 1068, 1069, 1070, /* 750 */ 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1406, 1406, 1406, /* 760 */ 1406, 1406, 1406, 1406, 1406, 1060, 1064, 1406, 1406, 1406, /* 770 */ 1406, 1061, 1065, 1067, 1024, 1029, 1406, 1406, 1406, 1406, /* 780 */ 1406, 1030, 1406, 1406, 1406, 1032, 1406, 1406, 1406, 1406, /* 790 */ 1031, 1406, 1406, 1406, 1033, 1406, 1025, 992, 1406, 1406, /* 800 */ 978, 1406, 1406, 979, 1406, 1406, 981, 1406, 989, 1406, /* 810 */ 990, 1406, 1406, 1026, 1406, 1406, 1406, 1406, 1406, 1406, /* 820 */ 1034, 1406, 1038, 1035, 1406, 1406, 1406, 1046, 1406, 1050, /* 830 */ 1047, 1406, 1406, 1406, 1036, 1406, 1039, 1037, 1406, 1406, /* 840 */ 1406, 1048, 1406, 1051, 1049, 1406, 1406, 1406, 1406, 1406, /* 850 */ 1406, 1406, 1040, 1406, 1044, 1041, 1406, 1406, 1406, 1052, /* 860 */ 1406, 1056, 1053, 1406, 1406, 1406, 1042, 1406, 1045, 1043, /* 870 */ 1406, 1406, 1406, 1054, 1406, 1057, 1055, 1406, 1406, 1027, /* 880 */ 1406, 1008, 1406, 1406, 1406, 1010, 1406, 1406, 1012, 1406, /* 890 */ 1016, 1406, 1406, 1406, 1406, 1406, 1020, 1022, 1406, 1023, /* 900 */ 1021, 1406, 1014, 1406, 1406, 1011, 1406, 1406, 1013, 1406, /* 910 */ 1017, 1406, 1015, 1406, 1406, 1406, 1406, 1406, 1009, 1406, /* 920 */ 1406, 1406, 980, 1406, 1406, 1406, 982, 1406, 1406, 983, /* 930 */ 1406, 1406, 985, 1406, 1406, 984, 1406, 1406, 1406, 986, /* 940 */ 1406, 1406, 987, 1406, 1406, 988, 950, }; #define YY_SZ_ACTTAB (sizeof(yy_action)/sizeof(yy_action[0])) /* The next table maps tokens into fallback tokens. If a construct ** like the following: ** ** %fallback ID X Y Z. ** ** appears in the grammer, then ID becomes a fallback token for X, Y, ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { }; #endif /* YYFALLBACK */ /* The following structure represents a single element of the ** parser's stack. Information stored includes: ** ** + The state number for the parser at this level of the stack. ** ** + The value of the token stored at this level of the stack. ** (In other words, the "major" token.) ** ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. */ struct yyStackEntry { int stateno; /* The state-number */ int major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This ** is the value of the token */ }; typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { int yyidx; /* Index of top element in stack */ int yyerrcnt; /* Shifts left before out of the error */ xx_ARG_SDECL /* A place to hold %extra_argument */ yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ }; typedef struct yyParser yyParser; #ifndef NDEBUG #include <stdio.h> static FILE *yyTraceFILE = 0; static char *yyTracePrompt = 0; #endif /* NDEBUG */ #ifndef NDEBUG /* ** Turn parser tracing on by giving a stream to which to write the trace ** and a prompt to preface each trace message. Tracing is turned off ** by making either argument NULL ** ** Inputs: ** <ul> ** <li> A FILE* to which trace output should be written. ** If NULL, then tracing is turned off. ** <li> A prefix string written at the beginning of every ** line of trace output. If NULL, then tracing is ** turned off. ** </ul> ** ** Outputs: ** None. */ void xx_Trace(FILE *TraceFILE, char *zTracePrompt){ yyTraceFILE = TraceFILE; yyTracePrompt = zTracePrompt; if( yyTraceFILE==0 ) yyTracePrompt = 0; else if( yyTracePrompt==0 ) yyTraceFILE = 0; } #endif /* NDEBUG */ #ifndef NDEBUG /* For tracing shifts, the names of all terminals and nonterminals ** are required. The following table supplies these names */ static const char *yyTokenName[] = { "$", "INTERNAL", "PUBLIC", "PROTECTED", "STATIC", "PRIVATE", "SCOPED", "COMMA", "REQUIRE", "DOUBLEARROW", "QUESTION", "LIKELY", "UNLIKELY", "OR", "AND", "INSTANCEOF", "BITWISE_OR", "BITWISE_XOR", "BITWISE_SHIFTLEFT", "BITWISE_SHIFTRIGHT", "EQUALS", "IDENTICAL", "LESS", "GREATER", "LESSEQUAL", "GREATEREQUAL", "NOTIDENTICAL", "NOTEQUALS", "ADD", "SUB", "CONCAT", "MUL", "DIV", "MOD", "ISSET", "FETCH", "EMPTY", "INCLUSIVE_RANGE", "EXCLUSIVE_RANGE", "TYPEOF", "CLONE", "NEW", "NOT", "BITWISE_NOT", "BITWISE_AND", "PARENTHESES_CLOSE", "SBRACKET_OPEN", "ARROW", "NAMESPACE", "IDENTIFIER", "DOTCOMMA", "USE", "AS", "FUNCTION", "PARENTHESES_OPEN", "BRACKET_OPEN", "BRACKET_CLOSE", "INTERFACE", "EXTENDS", "CLASS", "IMPLEMENTS", "ABSTRACT", "FINAL", "COMMENT", "ASSIGN", "CONST", "CONSTANT", "INLINE", "DEPRECATED", "VOID", "NULL", "THIS", "SBRACKET_CLOSE", "TYPE_INTEGER", "TYPE_UINTEGER", "TYPE_LONG", "TYPE_ULONG", "TYPE_CHAR", "TYPE_UCHAR", "TYPE_DOUBLE", "TYPE_BOOL", "TYPE_STRING", "TYPE_ARRAY", "TYPE_VAR", "TYPE_CALLABLE", "TYPE_RESOURCE", "TYPE_OBJECT", "BREAK", "CONTINUE", "IF", "ELSE", "ELSEIF", "SWITCH", "CASE", "COLON", "DEFAULT", "LOOP", "WHILE", "DO", "TRY", "CATCH", "FOR", "IN", "REVERSE", "LET", "ADDASSIGN", "SUBASSIGN", "MULASSIGN", "DIVASSIGN", "CONCATASSIGN", "MODASSIGN", "STRING", "DOUBLECOLON", "INCR", "DECR", "ECHO", "RETURN", "UNSET", "THROW", "PLUS", "INTEGER", "ISTRING", "CHAR", "DOUBLE", "TRUE", "FALSE", "CBLOCK", "error", "program", "xx_language", "xx_top_statement_list", "xx_top_statement", "xx_namespace_def", "xx_use_aliases", "xx_function_def", "xx_class_def", "xx_interface_def", "xx_comment", "xx_cblock", "xx_use_aliases_list", "xx_method_return_type", "xx_parameter_list", "xx_statement_list", "xx_interface_body", "xx_implements_list", "xx_class_body", "xx_class_definition", "xx_implements", "xx_interface_definition", "xx_class_properties_definition", "xx_class_consts_definition", "xx_class_methods_definition", "xx_interface_methods_definition", "xx_class_property_definition", "xx_visibility_list", "xx_literal_expr", "xx_class_property_shortcuts", "xx_class_property_shortcuts_list", "xx_class_property_shortcut", "xx_class_const_definition", "xx_class_method_definition", "xx_interface_method_definition", "xx_visibility", "xx_method_return_type_list", "xx_method_return_type_item", "xx_parameter_type", "xx_parameter_cast", "xx_parameter_cast_collection", "xx_parameter", "xx_statement", "xx_let_statement", "xx_if_statement", "xx_loop_statement", "xx_echo_statement", "xx_return_statement", "xx_require_statement", "xx_fetch_statement", "xx_fcall_statement", "xx_mcall_statement", "xx_scall_statement", "xx_unset_statement", "xx_throw_statement", "xx_declare_statement", "xx_break_statement", "xx_continue_statement", "xx_while_statement", "xx_do_while_statement", "xx_try_catch_statement", "xx_switch_statement", "xx_for_statement", "xx_empty_statement", "xx_eval_expr", "xx_elseif_statements", "xx_elseif_statement", "xx_case_clauses", "xx_case_clause", "xx_catch_statement_list", "xx_catch_statement", "xx_catch_classes_list", "xx_catch_class", "xx_common_expr", "xx_let_assignments", "xx_let_assignment", "xx_assignment_operator", "xx_assign_expr", "xx_array_offset_list", "xx_array_offset", "xx_index_expr", "xx_echo_expressions", "xx_echo_expression", "xx_mcall_expr", "xx_fcall_expr", "xx_scall_expr", "xx_fetch_expr", "xx_declare_variable_list", "xx_declare_variable", "xx_array_list", "xx_call_parameters", "xx_call_parameter", "xx_array_item", "xx_array_key", "xx_array_value", "xx_literal_array_list", "xx_literal_array_item", "xx_literal_array_key", "xx_literal_array_value", }; #endif /* NDEBUG */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. */ static const char *yyRuleName[] = { /* 0 */ "program ::= xx_language", /* 1 */ "xx_language ::= xx_top_statement_list", /* 2 */ "xx_top_statement_list ::= xx_top_statement_list xx_top_statement", /* 3 */ "xx_top_statement_list ::= xx_top_statement", /* 4 */ "xx_top_statement ::= xx_namespace_def", /* 5 */ "xx_top_statement ::= xx_use_aliases", /* 6 */ "xx_top_statement ::= xx_function_def", /* 7 */ "xx_top_statement ::= xx_class_def", /* 8 */ "xx_top_statement ::= xx_interface_def", /* 9 */ "xx_top_statement ::= xx_comment", /* 10 */ "xx_top_statement ::= xx_cblock", /* 11 */ "xx_namespace_def ::= NAMESPACE IDENTIFIER DOTCOMMA", /* 12 */ "xx_namespace_def ::= USE xx_use_aliases_list DOTCOMMA", /* 13 */ "xx_use_aliases_list ::= xx_use_aliases_list COMMA xx_use_aliases", /* 14 */ "xx_use_aliases_list ::= xx_use_aliases", /* 15 */ "xx_use_aliases ::= IDENTIFIER", /* 16 */ "xx_use_aliases ::= IDENTIFIER AS IDENTIFIER", /* 17 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN BRACKET_CLOSE", /* 18 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 19 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN BRACKET_CLOSE", /* 20 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 21 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 22 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 23 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 24 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE DOTCOMMA", /* 25 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 26 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE DOTCOMMA", /* 27 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 28 */ "xx_function_def ::= FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 29 */ "xx_interface_def ::= INTERFACE IDENTIFIER xx_interface_body", /* 30 */ "xx_interface_def ::= INTERFACE IDENTIFIER EXTENDS xx_implements_list xx_interface_body", /* 31 */ "xx_class_def ::= CLASS IDENTIFIER xx_class_body", /* 32 */ "xx_class_def ::= CLASS IDENTIFIER EXTENDS IDENTIFIER xx_class_body", /* 33 */ "xx_class_def ::= CLASS IDENTIFIER IMPLEMENTS xx_implements_list xx_class_body", /* 34 */ "xx_class_def ::= CLASS IDENTIFIER EXTENDS IDENTIFIER IMPLEMENTS xx_implements_list xx_class_body", /* 35 */ "xx_class_def ::= ABSTRACT CLASS IDENTIFIER xx_class_body", /* 36 */ "xx_class_def ::= ABSTRACT CLASS IDENTIFIER EXTENDS IDENTIFIER xx_class_body", /* 37 */ "xx_class_def ::= ABSTRACT CLASS IDENTIFIER IMPLEMENTS xx_implements_list xx_class_body", /* 38 */ "xx_class_def ::= ABSTRACT CLASS IDENTIFIER EXTENDS IDENTIFIER IMPLEMENTS xx_implements_list xx_class_body", /* 39 */ "xx_class_def ::= FINAL CLASS IDENTIFIER xx_class_body", /* 40 */ "xx_class_def ::= FINAL CLASS IDENTIFIER EXTENDS IDENTIFIER xx_class_body", /* 41 */ "xx_class_def ::= FINAL CLASS IDENTIFIER IMPLEMENTS xx_implements_list xx_class_body", /* 42 */ "xx_class_body ::= BRACKET_OPEN BRACKET_CLOSE", /* 43 */ "xx_class_body ::= BRACKET_OPEN xx_class_definition BRACKET_CLOSE", /* 44 */ "xx_implements_list ::= xx_implements_list COMMA xx_implements", /* 45 */ "xx_implements_list ::= xx_implements", /* 46 */ "xx_implements ::= IDENTIFIER", /* 47 */ "xx_interface_body ::= BRACKET_OPEN BRACKET_CLOSE", /* 48 */ "xx_interface_body ::= BRACKET_OPEN xx_interface_definition BRACKET_CLOSE", /* 49 */ "xx_class_definition ::= xx_class_properties_definition", /* 50 */ "xx_class_definition ::= xx_class_consts_definition", /* 51 */ "xx_class_definition ::= xx_class_methods_definition", /* 52 */ "xx_class_definition ::= xx_class_properties_definition xx_class_methods_definition", /* 53 */ "xx_class_definition ::= xx_class_properties_definition xx_class_consts_definition", /* 54 */ "xx_class_definition ::= xx_class_consts_definition xx_class_properties_definition", /* 55 */ "xx_class_definition ::= xx_class_consts_definition xx_class_methods_definition", /* 56 */ "xx_class_definition ::= xx_class_properties_definition xx_class_consts_definition xx_class_methods_definition", /* 57 */ "xx_class_definition ::= xx_class_consts_definition xx_class_properties_definition xx_class_methods_definition", /* 58 */ "xx_interface_definition ::= xx_class_consts_definition", /* 59 */ "xx_interface_definition ::= xx_interface_methods_definition", /* 60 */ "xx_interface_definition ::= xx_class_consts_definition xx_interface_methods_definition", /* 61 */ "xx_class_properties_definition ::= xx_class_properties_definition xx_class_property_definition", /* 62 */ "xx_class_properties_definition ::= xx_class_property_definition", /* 63 */ "xx_class_property_definition ::= COMMENT xx_visibility_list IDENTIFIER DOTCOMMA", /* 64 */ "xx_class_property_definition ::= xx_visibility_list IDENTIFIER DOTCOMMA", /* 65 */ "xx_class_property_definition ::= COMMENT xx_visibility_list IDENTIFIER ASSIGN xx_literal_expr DOTCOMMA", /* 66 */ "xx_class_property_definition ::= xx_visibility_list IDENTIFIER ASSIGN xx_literal_expr DOTCOMMA", /* 67 */ "xx_class_property_definition ::= COMMENT xx_visibility_list IDENTIFIER xx_class_property_shortcuts DOTCOMMA", /* 68 */ "xx_class_property_definition ::= xx_visibility_list IDENTIFIER xx_class_property_shortcuts DOTCOMMA", /* 69 */ "xx_class_property_definition ::= COMMENT xx_visibility_list IDENTIFIER ASSIGN xx_literal_expr xx_class_property_shortcuts DOTCOMMA", /* 70 */ "xx_class_property_definition ::= xx_visibility_list IDENTIFIER ASSIGN xx_literal_expr xx_class_property_shortcuts DOTCOMMA", /* 71 */ "xx_class_property_shortcuts ::= BRACKET_OPEN BRACKET_CLOSE", /* 72 */ "xx_class_property_shortcuts ::= BRACKET_OPEN xx_class_property_shortcuts_list BRACKET_CLOSE", /* 73 */ "xx_class_property_shortcuts_list ::= xx_class_property_shortcuts_list COMMA xx_class_property_shortcut", /* 74 */ "xx_class_property_shortcuts_list ::= xx_class_property_shortcut", /* 75 */ "xx_class_property_shortcut ::= IDENTIFIER", /* 76 */ "xx_class_property_shortcut ::= COMMENT IDENTIFIER", /* 77 */ "xx_class_consts_definition ::= xx_class_consts_definition xx_class_const_definition", /* 78 */ "xx_class_consts_definition ::= xx_class_const_definition", /* 79 */ "xx_class_methods_definition ::= xx_class_methods_definition xx_class_method_definition", /* 80 */ "xx_class_methods_definition ::= xx_class_method_definition", /* 81 */ "xx_interface_methods_definition ::= xx_interface_methods_definition xx_interface_method_definition", /* 82 */ "xx_interface_methods_definition ::= xx_interface_method_definition", /* 83 */ "xx_class_const_definition ::= COMMENT CONST CONSTANT ASSIGN xx_literal_expr DOTCOMMA", /* 84 */ "xx_class_const_definition ::= CONST CONSTANT ASSIGN xx_literal_expr DOTCOMMA", /* 85 */ "xx_class_const_definition ::= COMMENT CONST IDENTIFIER ASSIGN xx_literal_expr DOTCOMMA", /* 86 */ "xx_class_const_definition ::= CONST IDENTIFIER ASSIGN xx_literal_expr DOTCOMMA", /* 87 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 88 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE DOTCOMMA", /* 89 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 90 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE DOTCOMMA", /* 91 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 92 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 93 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 94 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE DOTCOMMA", /* 95 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 96 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE DOTCOMMA", /* 97 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 98 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 99 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN BRACKET_CLOSE", /* 100 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 101 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN BRACKET_CLOSE", /* 102 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 103 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 104 */ "xx_class_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 105 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN BRACKET_CLOSE", /* 106 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 107 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN BRACKET_CLOSE", /* 108 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 109 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 110 */ "xx_class_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 111 */ "xx_interface_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 112 */ "xx_interface_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 113 */ "xx_interface_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 114 */ "xx_interface_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE ARROW xx_method_return_type DOTCOMMA", /* 115 */ "xx_interface_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE DOTCOMMA", /* 116 */ "xx_interface_method_definition ::= xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE DOTCOMMA", /* 117 */ "xx_interface_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE DOTCOMMA", /* 118 */ "xx_interface_method_definition ::= COMMENT xx_visibility_list FUNCTION IDENTIFIER PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE DOTCOMMA", /* 119 */ "xx_visibility_list ::= xx_visibility_list xx_visibility", /* 120 */ "xx_visibility_list ::= xx_visibility", /* 121 */ "xx_visibility ::= INTERNAL", /* 122 */ "xx_visibility ::= PUBLIC", /* 123 */ "xx_visibility ::= PROTECTED", /* 124 */ "xx_visibility ::= PRIVATE", /* 125 */ "xx_visibility ::= STATIC", /* 126 */ "xx_visibility ::= SCOPED", /* 127 */ "xx_visibility ::= INLINE", /* 128 */ "xx_visibility ::= DEPRECATED", /* 129 */ "xx_visibility ::= ABSTRACT", /* 130 */ "xx_visibility ::= FINAL", /* 131 */ "xx_method_return_type ::= VOID", /* 132 */ "xx_method_return_type ::= xx_method_return_type_list", /* 133 */ "xx_method_return_type_list ::= xx_method_return_type_list BITWISE_OR xx_method_return_type_item", /* 134 */ "xx_method_return_type_list ::= xx_method_return_type_item", /* 135 */ "xx_method_return_type_item ::= xx_parameter_type", /* 136 */ "xx_method_return_type_item ::= NULL", /* 137 */ "xx_method_return_type_item ::= THIS", /* 138 */ "xx_method_return_type_item ::= xx_parameter_type NOT", /* 139 */ "xx_method_return_type_item ::= xx_parameter_cast", /* 140 */ "xx_method_return_type_item ::= xx_parameter_cast_collection", /* 141 */ "xx_parameter_list ::= xx_parameter_list COMMA xx_parameter", /* 142 */ "xx_parameter_list ::= xx_parameter", /* 143 */ "xx_parameter ::= IDENTIFIER", /* 144 */ "xx_parameter ::= BITWISE_AND IDENTIFIER", /* 145 */ "xx_parameter ::= CONST IDENTIFIER", /* 146 */ "xx_parameter ::= CONST BITWISE_AND IDENTIFIER", /* 147 */ "xx_parameter ::= xx_parameter_type IDENTIFIER", /* 148 */ "xx_parameter ::= xx_parameter_type BITWISE_AND IDENTIFIER", /* 149 */ "xx_parameter ::= CONST xx_parameter_type IDENTIFIER", /* 150 */ "xx_parameter ::= CONST xx_parameter_type BITWISE_AND IDENTIFIER", /* 151 */ "xx_parameter ::= xx_parameter_type NOT IDENTIFIER", /* 152 */ "xx_parameter ::= xx_parameter_type NOT BITWISE_AND IDENTIFIER", /* 153 */ "xx_parameter ::= CONST xx_parameter_type NOT IDENTIFIER", /* 154 */ "xx_parameter ::= CONST xx_parameter_type NOT BITWISE_AND IDENTIFIER", /* 155 */ "xx_parameter ::= xx_parameter_cast IDENTIFIER", /* 156 */ "xx_parameter ::= xx_parameter_cast BITWISE_AND IDENTIFIER", /* 157 */ "xx_parameter ::= CONST xx_parameter_cast IDENTIFIER", /* 158 */ "xx_parameter ::= CONST xx_parameter_cast BITWISE_AND IDENTIFIER", /* 159 */ "xx_parameter ::= IDENTIFIER ASSIGN xx_literal_expr", /* 160 */ "xx_parameter ::= BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 161 */ "xx_parameter ::= CONST IDENTIFIER ASSIGN xx_literal_expr", /* 162 */ "xx_parameter ::= CONST BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 163 */ "xx_parameter ::= xx_parameter_type IDENTIFIER ASSIGN xx_literal_expr", /* 164 */ "xx_parameter ::= xx_parameter_type BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 165 */ "xx_parameter ::= CONST xx_parameter_type IDENTIFIER ASSIGN xx_literal_expr", /* 166 */ "xx_parameter ::= CONST xx_parameter_type BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 167 */ "xx_parameter ::= xx_parameter_type NOT IDENTIFIER ASSIGN xx_literal_expr", /* 168 */ "xx_parameter ::= xx_parameter_type NOT BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 169 */ "xx_parameter ::= CONST xx_parameter_type NOT IDENTIFIER ASSIGN xx_literal_expr", /* 170 */ "xx_parameter ::= CONST xx_parameter_type NOT BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 171 */ "xx_parameter ::= xx_parameter_cast IDENTIFIER ASSIGN xx_literal_expr", /* 172 */ "xx_parameter ::= xx_parameter_cast BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 173 */ "xx_parameter ::= CONST xx_parameter_cast IDENTIFIER ASSIGN xx_literal_expr", /* 174 */ "xx_parameter ::= CONST xx_parameter_cast BITWISE_AND IDENTIFIER ASSIGN xx_literal_expr", /* 175 */ "xx_parameter_cast ::= LESS IDENTIFIER GREATER", /* 176 */ "xx_parameter_cast_collection ::= LESS IDENTIFIER SBRACKET_OPEN SBRACKET_CLOSE GREATER", /* 177 */ "xx_parameter_type ::= TYPE_INTEGER", /* 178 */ "xx_parameter_type ::= TYPE_UINTEGER", /* 179 */ "xx_parameter_type ::= TYPE_LONG", /* 180 */ "xx_parameter_type ::= TYPE_ULONG", /* 181 */ "xx_parameter_type ::= TYPE_CHAR", /* 182 */ "xx_parameter_type ::= TYPE_UCHAR", /* 183 */ "xx_parameter_type ::= TYPE_DOUBLE", /* 184 */ "xx_parameter_type ::= TYPE_BOOL", /* 185 */ "xx_parameter_type ::= TYPE_STRING", /* 186 */ "xx_parameter_type ::= TYPE_ARRAY", /* 187 */ "xx_parameter_type ::= TYPE_VAR", /* 188 */ "xx_parameter_type ::= TYPE_CALLABLE", /* 189 */ "xx_parameter_type ::= TYPE_RESOURCE", /* 190 */ "xx_parameter_type ::= TYPE_OBJECT", /* 191 */ "xx_statement_list ::= xx_statement_list xx_statement", /* 192 */ "xx_statement_list ::= xx_statement", /* 193 */ "xx_statement ::= xx_cblock", /* 194 */ "xx_statement ::= xx_let_statement", /* 195 */ "xx_statement ::= xx_if_statement", /* 196 */ "xx_statement ::= xx_loop_statement", /* 197 */ "xx_statement ::= xx_echo_statement", /* 198 */ "xx_statement ::= xx_return_statement", /* 199 */ "xx_statement ::= xx_require_statement", /* 200 */ "xx_statement ::= xx_fetch_statement", /* 201 */ "xx_statement ::= xx_fcall_statement", /* 202 */ "xx_statement ::= xx_mcall_statement", /* 203 */ "xx_statement ::= xx_scall_statement", /* 204 */ "xx_statement ::= xx_unset_statement", /* 205 */ "xx_statement ::= xx_throw_statement", /* 206 */ "xx_statement ::= xx_declare_statement", /* 207 */ "xx_statement ::= xx_break_statement", /* 208 */ "xx_statement ::= xx_continue_statement", /* 209 */ "xx_statement ::= xx_while_statement", /* 210 */ "xx_statement ::= xx_do_while_statement", /* 211 */ "xx_statement ::= xx_try_catch_statement", /* 212 */ "xx_statement ::= xx_switch_statement", /* 213 */ "xx_statement ::= xx_for_statement", /* 214 */ "xx_statement ::= xx_comment", /* 215 */ "xx_statement ::= xx_empty_statement", /* 216 */ "xx_empty_statement ::= DOTCOMMA", /* 217 */ "xx_break_statement ::= BREAK DOTCOMMA", /* 218 */ "xx_continue_statement ::= CONTINUE DOTCOMMA", /* 219 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN BRACKET_CLOSE", /* 220 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN BRACKET_CLOSE xx_elseif_statements", /* 221 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN BRACKET_CLOSE ELSE BRACKET_OPEN BRACKET_CLOSE", /* 222 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN BRACKET_CLOSE xx_elseif_statements ELSE BRACKET_OPEN BRACKET_CLOSE", /* 223 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 224 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE xx_elseif_statements", /* 225 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE ELSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 226 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE xx_elseif_statements ELSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 227 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE ELSE BRACKET_OPEN BRACKET_CLOSE", /* 228 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE xx_elseif_statements ELSE BRACKET_OPEN BRACKET_CLOSE", /* 229 */ "xx_if_statement ::= IF xx_eval_expr BRACKET_OPEN BRACKET_CLOSE ELSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 230 */ "xx_elseif_statements ::= xx_elseif_statements xx_elseif_statement", /* 231 */ "xx_elseif_statements ::= xx_elseif_statement", /* 232 */ "xx_elseif_statement ::= ELSEIF xx_eval_expr BRACKET_OPEN BRACKET_CLOSE", /* 233 */ "xx_elseif_statement ::= ELSEIF xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 234 */ "xx_switch_statement ::= SWITCH xx_eval_expr BRACKET_OPEN BRACKET_CLOSE", /* 235 */ "xx_switch_statement ::= SWITCH xx_eval_expr BRACKET_OPEN xx_case_clauses BRACKET_CLOSE", /* 236 */ "xx_case_clauses ::= xx_case_clauses xx_case_clause", /* 237 */ "xx_case_clauses ::= xx_case_clause", /* 238 */ "xx_case_clause ::= CASE xx_eval_expr COLON", /* 239 */ "xx_case_clause ::= CASE xx_eval_expr COLON xx_statement_list", /* 240 */ "xx_case_clause ::= DEFAULT COLON xx_statement_list", /* 241 */ "xx_loop_statement ::= LOOP BRACKET_OPEN BRACKET_CLOSE", /* 242 */ "xx_loop_statement ::= LOOP BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 243 */ "xx_while_statement ::= WHILE xx_eval_expr BRACKET_OPEN BRACKET_CLOSE", /* 244 */ "xx_while_statement ::= WHILE xx_eval_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 245 */ "xx_do_while_statement ::= DO BRACKET_OPEN BRACKET_CLOSE WHILE xx_eval_expr DOTCOMMA", /* 246 */ "xx_do_while_statement ::= DO BRACKET_OPEN xx_statement_list BRACKET_CLOSE WHILE xx_eval_expr DOTCOMMA", /* 247 */ "xx_try_catch_statement ::= TRY BRACKET_OPEN BRACKET_CLOSE", /* 248 */ "xx_try_catch_statement ::= TRY BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 249 */ "xx_try_catch_statement ::= TRY BRACKET_OPEN xx_statement_list BRACKET_CLOSE xx_catch_statement_list", /* 250 */ "xx_catch_statement_list ::= xx_catch_statement_list xx_catch_statement", /* 251 */ "xx_catch_statement_list ::= xx_catch_statement", /* 252 */ "xx_catch_statement ::= CATCH xx_catch_classes_list BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 253 */ "xx_catch_statement ::= CATCH xx_catch_classes_list BRACKET_OPEN BRACKET_CLOSE", /* 254 */ "xx_catch_statement ::= CATCH xx_catch_classes_list COMMA IDENTIFIER BRACKET_OPEN BRACKET_CLOSE", /* 255 */ "xx_catch_statement ::= CATCH xx_catch_classes_list COMMA IDENTIFIER BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 256 */ "xx_catch_classes_list ::= xx_catch_classes_list BITWISE_OR xx_catch_class", /* 257 */ "xx_catch_classes_list ::= xx_catch_class", /* 258 */ "xx_catch_class ::= IDENTIFIER", /* 259 */ "xx_for_statement ::= FOR IDENTIFIER IN xx_common_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 260 */ "xx_for_statement ::= FOR IDENTIFIER IN xx_common_expr BRACKET_OPEN BRACKET_CLOSE", /* 261 */ "xx_for_statement ::= FOR IDENTIFIER IN REVERSE xx_common_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 262 */ "xx_for_statement ::= FOR IDENTIFIER COMMA IDENTIFIER IN xx_common_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 263 */ "xx_for_statement ::= FOR IDENTIFIER COMMA IDENTIFIER IN xx_common_expr BRACKET_OPEN BRACKET_CLOSE", /* 264 */ "xx_for_statement ::= FOR IDENTIFIER COMMA IDENTIFIER IN REVERSE xx_common_expr BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 265 */ "xx_let_statement ::= LET xx_let_assignments DOTCOMMA", /* 266 */ "xx_let_assignments ::= xx_let_assignments COMMA xx_let_assignment", /* 267 */ "xx_let_assignments ::= xx_let_assignment", /* 268 */ "xx_assignment_operator ::= ASSIGN", /* 269 */ "xx_assignment_operator ::= ADDASSIGN", /* 270 */ "xx_assignment_operator ::= SUBASSIGN", /* 271 */ "xx_assignment_operator ::= MULASSIGN", /* 272 */ "xx_assignment_operator ::= DIVASSIGN", /* 273 */ "xx_assignment_operator ::= CONCATASSIGN", /* 274 */ "xx_assignment_operator ::= MODASSIGN", /* 275 */ "xx_let_assignment ::= IDENTIFIER xx_assignment_operator xx_assign_expr", /* 276 */ "xx_let_assignment ::= IDENTIFIER ARROW IDENTIFIER xx_assignment_operator xx_assign_expr", /* 277 */ "xx_let_assignment ::= IDENTIFIER ARROW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 278 */ "xx_let_assignment ::= IDENTIFIER ARROW BRACKET_OPEN STRING BRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 279 */ "xx_let_assignment ::= IDENTIFIER ARROW IDENTIFIER SBRACKET_OPEN SBRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 280 */ "xx_let_assignment ::= IDENTIFIER ARROW IDENTIFIER xx_array_offset_list xx_assignment_operator xx_assign_expr", /* 281 */ "xx_let_assignment ::= IDENTIFIER ARROW IDENTIFIER xx_array_offset_list SBRACKET_OPEN SBRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 282 */ "xx_let_assignment ::= IDENTIFIER DOUBLECOLON IDENTIFIER xx_assignment_operator xx_assign_expr", /* 283 */ "xx_let_assignment ::= IDENTIFIER DOUBLECOLON IDENTIFIER SBRACKET_OPEN SBRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 284 */ "xx_let_assignment ::= IDENTIFIER DOUBLECOLON IDENTIFIER xx_array_offset_list xx_assignment_operator xx_assign_expr", /* 285 */ "xx_let_assignment ::= IDENTIFIER DOUBLECOLON IDENTIFIER xx_array_offset_list SBRACKET_OPEN SBRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 286 */ "xx_let_assignment ::= IDENTIFIER SBRACKET_OPEN SBRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 287 */ "xx_let_assignment ::= IDENTIFIER xx_array_offset_list xx_assignment_operator xx_assign_expr", /* 288 */ "xx_let_assignment ::= IDENTIFIER xx_array_offset_list SBRACKET_OPEN SBRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 289 */ "xx_array_offset_list ::= xx_array_offset_list xx_array_offset", /* 290 */ "xx_array_offset_list ::= xx_array_offset", /* 291 */ "xx_array_offset ::= SBRACKET_OPEN xx_index_expr SBRACKET_CLOSE", /* 292 */ "xx_let_assignment ::= IDENTIFIER ARROW IDENTIFIER INCR", /* 293 */ "xx_let_assignment ::= IDENTIFIER ARROW IDENTIFIER DECR", /* 294 */ "xx_let_assignment ::= IDENTIFIER INCR", /* 295 */ "xx_let_assignment ::= IDENTIFIER DECR", /* 296 */ "xx_let_assignment ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 297 */ "xx_let_assignment ::= BRACKET_OPEN STRING BRACKET_CLOSE xx_assignment_operator xx_assign_expr", /* 298 */ "xx_index_expr ::= xx_common_expr", /* 299 */ "xx_echo_statement ::= ECHO xx_echo_expressions DOTCOMMA", /* 300 */ "xx_echo_expressions ::= xx_echo_expressions COMMA xx_echo_expression", /* 301 */ "xx_echo_expressions ::= xx_echo_expression", /* 302 */ "xx_echo_expression ::= xx_common_expr", /* 303 */ "xx_mcall_statement ::= xx_mcall_expr DOTCOMMA", /* 304 */ "xx_fcall_statement ::= xx_fcall_expr DOTCOMMA", /* 305 */ "xx_scall_statement ::= xx_scall_expr DOTCOMMA", /* 306 */ "xx_fetch_statement ::= xx_fetch_expr DOTCOMMA", /* 307 */ "xx_return_statement ::= RETURN xx_common_expr DOTCOMMA", /* 308 */ "xx_return_statement ::= RETURN DOTCOMMA", /* 309 */ "xx_require_statement ::= REQUIRE xx_common_expr DOTCOMMA", /* 310 */ "xx_unset_statement ::= UNSET xx_common_expr DOTCOMMA", /* 311 */ "xx_throw_statement ::= THROW xx_common_expr DOTCOMMA", /* 312 */ "xx_declare_statement ::= TYPE_INTEGER xx_declare_variable_list DOTCOMMA", /* 313 */ "xx_declare_statement ::= TYPE_UINTEGER xx_declare_variable_list DOTCOMMA", /* 314 */ "xx_declare_statement ::= TYPE_CHAR xx_declare_variable_list DOTCOMMA", /* 315 */ "xx_declare_statement ::= TYPE_UCHAR xx_declare_variable_list DOTCOMMA", /* 316 */ "xx_declare_statement ::= TYPE_LONG xx_declare_variable_list DOTCOMMA", /* 317 */ "xx_declare_statement ::= TYPE_ULONG xx_declare_variable_list DOTCOMMA", /* 318 */ "xx_declare_statement ::= TYPE_DOUBLE xx_declare_variable_list DOTCOMMA", /* 319 */ "xx_declare_statement ::= TYPE_STRING xx_declare_variable_list DOTCOMMA", /* 320 */ "xx_declare_statement ::= TYPE_BOOL xx_declare_variable_list DOTCOMMA", /* 321 */ "xx_declare_statement ::= TYPE_VAR xx_declare_variable_list DOTCOMMA", /* 322 */ "xx_declare_statement ::= TYPE_ARRAY xx_declare_variable_list DOTCOMMA", /* 323 */ "xx_declare_variable_list ::= xx_declare_variable_list COMMA xx_declare_variable", /* 324 */ "xx_declare_variable_list ::= xx_declare_variable", /* 325 */ "xx_declare_variable ::= IDENTIFIER", /* 326 */ "xx_declare_variable ::= IDENTIFIER ASSIGN xx_common_expr", /* 327 */ "xx_assign_expr ::= xx_common_expr", /* 328 */ "xx_common_expr ::= BITWISE_AND xx_common_expr", /* 329 */ "xx_common_expr ::= NOT xx_common_expr", /* 330 */ "xx_common_expr ::= BITWISE_NOT xx_common_expr", /* 331 */ "xx_common_expr ::= SUB xx_common_expr", /* 332 */ "xx_common_expr ::= PLUS xx_common_expr", /* 333 */ "xx_common_expr ::= ISSET xx_common_expr", /* 334 */ "xx_common_expr ::= REQUIRE xx_common_expr", /* 335 */ "xx_common_expr ::= CLONE xx_common_expr", /* 336 */ "xx_common_expr ::= EMPTY xx_common_expr", /* 337 */ "xx_common_expr ::= LIKELY xx_common_expr", /* 338 */ "xx_common_expr ::= UNLIKELY xx_common_expr", /* 339 */ "xx_common_expr ::= xx_common_expr EQUALS xx_common_expr", /* 340 */ "xx_common_expr ::= xx_common_expr NOTEQUALS xx_common_expr", /* 341 */ "xx_common_expr ::= xx_common_expr IDENTICAL xx_common_expr", /* 342 */ "xx_common_expr ::= xx_common_expr NOTIDENTICAL xx_common_expr", /* 343 */ "xx_common_expr ::= xx_common_expr LESS xx_common_expr", /* 344 */ "xx_common_expr ::= xx_common_expr GREATER xx_common_expr", /* 345 */ "xx_common_expr ::= xx_common_expr LESSEQUAL xx_common_expr", /* 346 */ "xx_common_expr ::= xx_common_expr GREATEREQUAL xx_common_expr", /* 347 */ "xx_common_expr ::= PARENTHESES_OPEN xx_common_expr PARENTHESES_CLOSE", /* 348 */ "xx_common_expr ::= PARENTHESES_OPEN xx_parameter_type PARENTHESES_CLOSE xx_common_expr", /* 349 */ "xx_common_expr ::= LESS IDENTIFIER GREATER xx_common_expr", /* 350 */ "xx_common_expr ::= xx_common_expr ARROW IDENTIFIER", /* 351 */ "xx_common_expr ::= xx_common_expr ARROW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE", /* 352 */ "xx_common_expr ::= xx_common_expr ARROW BRACKET_OPEN STRING BRACKET_CLOSE", /* 353 */ "xx_common_expr ::= IDENTIFIER DOUBLECOLON IDENTIFIER", /* 354 */ "xx_common_expr ::= IDENTIFIER DOUBLECOLON CONSTANT", /* 355 */ "xx_common_expr ::= xx_common_expr SBRACKET_OPEN xx_common_expr SBRACKET_CLOSE", /* 356 */ "xx_common_expr ::= xx_common_expr ADD xx_common_expr", /* 357 */ "xx_common_expr ::= xx_common_expr SUB xx_common_expr", /* 358 */ "xx_common_expr ::= xx_common_expr MUL xx_common_expr", /* 359 */ "xx_common_expr ::= xx_common_expr DIV xx_common_expr", /* 360 */ "xx_common_expr ::= xx_common_expr MOD xx_common_expr", /* 361 */ "xx_common_expr ::= xx_common_expr CONCAT xx_common_expr", /* 362 */ "xx_common_expr ::= xx_common_expr AND xx_common_expr", /* 363 */ "xx_common_expr ::= xx_common_expr OR xx_common_expr", /* 364 */ "xx_common_expr ::= xx_common_expr BITWISE_OR xx_common_expr", /* 365 */ "xx_common_expr ::= xx_common_expr BITWISE_AND xx_common_expr", /* 366 */ "xx_common_expr ::= xx_common_expr BITWISE_XOR xx_common_expr", /* 367 */ "xx_common_expr ::= xx_common_expr BITWISE_SHIFTLEFT xx_common_expr", /* 368 */ "xx_common_expr ::= xx_common_expr BITWISE_SHIFTRIGHT xx_common_expr", /* 369 */ "xx_common_expr ::= xx_common_expr INSTANCEOF xx_common_expr", /* 370 */ "xx_common_expr ::= xx_common_expr INCLUSIVE_RANGE xx_common_expr", /* 371 */ "xx_common_expr ::= xx_common_expr EXCLUSIVE_RANGE xx_common_expr", /* 372 */ "xx_fetch_expr ::= FETCH IDENTIFIER COMMA xx_common_expr", /* 373 */ "xx_common_expr ::= xx_fetch_expr", /* 374 */ "xx_common_expr ::= TYPEOF xx_common_expr", /* 375 */ "xx_common_expr ::= IDENTIFIER", /* 376 */ "xx_common_expr ::= INTEGER", /* 377 */ "xx_common_expr ::= STRING", /* 378 */ "xx_common_expr ::= ISTRING", /* 379 */ "xx_common_expr ::= CHAR", /* 380 */ "xx_common_expr ::= DOUBLE", /* 381 */ "xx_common_expr ::= NULL", /* 382 */ "xx_common_expr ::= TRUE", /* 383 */ "xx_common_expr ::= FALSE", /* 384 */ "xx_common_expr ::= CONSTANT", /* 385 */ "xx_common_expr ::= SBRACKET_OPEN SBRACKET_CLOSE", /* 386 */ "xx_common_expr ::= SBRACKET_OPEN xx_array_list SBRACKET_CLOSE", /* 387 */ "xx_common_expr ::= NEW STATIC", /* 388 */ "xx_common_expr ::= NEW STATIC PARENTHESES_OPEN PARENTHESES_CLOSE", /* 389 */ "xx_common_expr ::= NEW STATIC PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 390 */ "xx_common_expr ::= NEW IDENTIFIER", /* 391 */ "xx_common_expr ::= NEW IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", /* 392 */ "xx_common_expr ::= NEW IDENTIFIER PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 393 */ "xx_common_expr ::= NEW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE", /* 394 */ "xx_common_expr ::= NEW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN PARENTHESES_CLOSE", /* 395 */ "xx_common_expr ::= NEW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 396 */ "xx_common_expr ::= NEW xx_parameter_type PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 397 */ "xx_fcall_expr ::= IDENTIFIER PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 398 */ "xx_fcall_expr ::= IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", /* 399 */ "xx_fcall_expr ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 400 */ "xx_fcall_expr ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN PARENTHESES_CLOSE", /* 401 */ "xx_scall_expr ::= IDENTIFIER DOUBLECOLON IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", /* 402 */ "xx_scall_expr ::= IDENTIFIER DOUBLECOLON IDENTIFIER PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 403 */ "xx_scall_expr ::= STATIC DOUBLECOLON IDENTIFIER PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 404 */ "xx_scall_expr ::= STATIC DOUBLECOLON IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", /* 405 */ "xx_scall_expr ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE DOUBLECOLON IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", /* 406 */ "xx_scall_expr ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE DOUBLECOLON IDENTIFIER PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 407 */ "xx_scall_expr ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE DOUBLECOLON BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN PARENTHESES_CLOSE", /* 408 */ "xx_scall_expr ::= BRACKET_OPEN IDENTIFIER BRACKET_CLOSE DOUBLECOLON BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 409 */ "xx_scall_expr ::= IDENTIFIER DOUBLECOLON BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN PARENTHESES_CLOSE", /* 410 */ "xx_scall_expr ::= IDENTIFIER DOUBLECOLON BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 411 */ "xx_mcall_expr ::= xx_common_expr ARROW IDENTIFIER PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 412 */ "xx_mcall_expr ::= xx_common_expr ARROW IDENTIFIER PARENTHESES_OPEN PARENTHESES_CLOSE", /* 413 */ "xx_mcall_expr ::= xx_common_expr ARROW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 414 */ "xx_mcall_expr ::= xx_common_expr ARROW BRACKET_OPEN IDENTIFIER BRACKET_CLOSE PARENTHESES_OPEN PARENTHESES_CLOSE", /* 415 */ "xx_mcall_expr ::= xx_common_expr ARROW BRACKET_OPEN STRING BRACKET_CLOSE PARENTHESES_OPEN xx_call_parameters PARENTHESES_CLOSE", /* 416 */ "xx_mcall_expr ::= xx_common_expr ARROW BRACKET_OPEN STRING BRACKET_CLOSE PARENTHESES_OPEN PARENTHESES_CLOSE", /* 417 */ "xx_common_expr ::= xx_mcall_expr", /* 418 */ "xx_common_expr ::= xx_scall_expr", /* 419 */ "xx_common_expr ::= xx_fcall_expr", /* 420 */ "xx_common_expr ::= xx_common_expr QUESTION xx_common_expr COLON xx_common_expr", /* 421 */ "xx_common_expr ::= xx_common_expr QUESTION COLON xx_common_expr", /* 422 */ "xx_call_parameters ::= xx_call_parameters COMMA xx_call_parameter", /* 423 */ "xx_call_parameters ::= xx_call_parameter", /* 424 */ "xx_call_parameter ::= xx_common_expr", /* 425 */ "xx_call_parameter ::= IDENTIFIER COLON xx_common_expr", /* 426 */ "xx_common_expr ::= FUNCTION PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 427 */ "xx_common_expr ::= FUNCTION PARENTHESES_OPEN PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 428 */ "xx_common_expr ::= FUNCTION PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN BRACKET_CLOSE", /* 429 */ "xx_common_expr ::= FUNCTION PARENTHESES_OPEN xx_parameter_list PARENTHESES_CLOSE BRACKET_OPEN xx_statement_list BRACKET_CLOSE", /* 430 */ "xx_common_expr ::= IDENTIFIER DOUBLEARROW xx_common_expr", /* 431 */ "xx_array_list ::= xx_array_list COMMA xx_array_item", /* 432 */ "xx_array_list ::= xx_array_item", /* 433 */ "xx_array_item ::= xx_array_key COLON xx_array_value", /* 434 */ "xx_array_item ::= xx_array_value", /* 435 */ "xx_array_key ::= xx_common_expr", /* 436 */ "xx_array_value ::= xx_common_expr", /* 437 */ "xx_literal_expr ::= INTEGER", /* 438 */ "xx_literal_expr ::= CHAR", /* 439 */ "xx_literal_expr ::= STRING", /* 440 */ "xx_literal_expr ::= DOUBLE", /* 441 */ "xx_literal_expr ::= NULL", /* 442 */ "xx_literal_expr ::= FALSE", /* 443 */ "xx_literal_expr ::= TRUE", /* 444 */ "xx_literal_expr ::= IDENTIFIER DOUBLECOLON CONSTANT", /* 445 */ "xx_literal_expr ::= CONSTANT", /* 446 */ "xx_literal_expr ::= SBRACKET_OPEN SBRACKET_CLOSE", /* 447 */ "xx_literal_expr ::= SBRACKET_OPEN xx_literal_array_list SBRACKET_CLOSE", /* 448 */ "xx_literal_array_list ::= xx_literal_array_list COMMA xx_literal_array_item", /* 449 */ "xx_literal_array_list ::= xx_literal_array_item", /* 450 */ "xx_literal_array_item ::= xx_literal_array_key COLON xx_literal_array_value", /* 451 */ "xx_literal_array_item ::= xx_literal_array_value", /* 452 */ "xx_literal_array_key ::= IDENTIFIER", /* 453 */ "xx_literal_array_key ::= STRING", /* 454 */ "xx_literal_array_key ::= INTEGER", /* 455 */ "xx_literal_array_value ::= xx_literal_expr", /* 456 */ "xx_eval_expr ::= xx_common_expr", /* 457 */ "xx_comment ::= COMMENT", /* 458 */ "xx_cblock ::= CBLOCK", }; #endif /* NDEBUG */ /* ** This function returns the symbolic name associated with a token ** value. */ const char *xx_TokenName(int tokenType){ #ifndef NDEBUG if( tokenType>0 && tokenType<(sizeof(yyTokenName)/sizeof(yyTokenName[0])) ){ return yyTokenName[tokenType]; }else{ return "Unknown"; } #else return ""; #endif } /* ** This function allocates a new parser. ** The only argument is a pointer to a function which works like ** malloc. ** ** Inputs: ** A pointer to the function used to allocate memory. ** ** Outputs: ** A pointer to a parser. This pointer is used in subsequent calls ** to xx_ and xx_Free. */ void *xx_Alloc(void *(*mallocProc)(size_t)){ yyParser *pParser; pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); if( pParser ){ pParser->yyidx = -1; } return pParser; } /* The following function deletes the value associated with a ** symbol. The symbol can be either a terminal or nonterminal. ** "yymajor" is the symbol code, and "yypminor" is a pointer to ** the value. */ static void yy_destructor(YYCODETYPE yymajor, YYMINORTYPE *yypminor){ switch( yymajor ){ /* Here is inserted the actions which take place when a ** terminal or non-terminal is destroyed. This can happen ** when the symbol is popped from the stack during a ** reduce or during error processing or when a parser is ** being destroyed before it is finished parsing. ** ** Note: during a reduce, the only symbols destroyed are those ** which appear on the RHS of the rule, but which are not used ** inside the C code. */ case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: case 10: case 11: case 12: case 13: case 14: case 15: case 16: case 17: case 18: case 19: case 20: case 21: case 22: case 23: case 24: case 25: case 26: case 27: case 28: case 29: case 30: case 31: case 32: case 33: case 34: case 35: case 36: case 37: case 38: case 39: case 40: case 41: case 42: case 43: case 44: case 45: case 46: case 47: case 48: case 49: case 50: case 51: case 52: case 53: case 54: case 55: case 56: case 57: case 58: case 59: case 60: case 61: case 62: case 63: case 64: case 65: case 66: case 67: case 68: case 69: case 70: case 71: case 72: case 73: case 74: case 75: case 76: case 77: case 78: case 79: case 80: case 81: case 82: case 83: case 84: case 85: case 86: case 87: case 88: case 89: case 90: case 91: case 92: case 93: case 94: case 95: case 96: case 97: case 98: case 99: case 100: case 101: case 102: case 103: case 104: case 105: case 106: case 107: case 108: case 109: case 110: case 111: case 112: case 113: case 114: case 115: case 116: case 117: case 118: case 119: case 120: case 121: case 122: case 123: case 124: case 125: case 126: #line 83 "parser.php5.lemon" { if ((yypminor->yy0)) { if ((yypminor->yy0)->free_flag) { efree((yypminor->yy0)->token); } efree((yypminor->yy0)); } } #line 3715 "parser.php5.c" break; case 129: #line 96 "parser.php5.lemon" { //zval_ptr_dtor((yypminor->yy132)); //efree((yypminor->yy132)); } #line 3723 "parser.php5.c" break; default: break; /* If no destructor action specified: do nothing */ } } /* ** Pop the parser's stack once. ** ** If there is a destructor routine associated with the token which ** is popped from the stack, then call it. ** ** Return the major token number for the symbol popped. */ static int yy_pop_parser_stack(yyParser *pParser){ YYCODETYPE yymajor; yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; if( pParser->yyidx<0 ) return 0; #ifndef NDEBUG if( yyTraceFILE && pParser->yyidx>=0 ){ fprintf(yyTraceFILE,"%sPopping %s\n", yyTracePrompt, yyTokenName[yytos->major]); } #endif yymajor = yytos->major; yy_destructor( yymajor, &yytos->minor); pParser->yyidx--; return yymajor; } /* ** Deallocate and destroy a parser. Destructors are all called for ** all stack elements before shutting the parser down. ** ** Inputs: ** <ul> ** <li> A pointer to the parser. This should be a pointer ** obtained from xx_Alloc. ** <li> A pointer to a function used to reclaim memory obtained ** from malloc. ** </ul> */ void xx_Free( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ yyParser *pParser = (yyParser*)p; if( pParser==0 ) return; while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); (*freeProc)((void*)pParser); } /* ** Find the appropriate action for a parser given the terminal ** look-ahead token iLookAhead. ** ** If the look-ahead token is YYNOCODE, then check to see if the action is ** independent of the look-ahead. If it is, return the action, otherwise ** return YY_NO_ACTION. */ static int yy_find_shift_action( yyParser *pParser, /* The parser */ int iLookAhead /* The look-ahead token */ ){ int i; int stateno = pParser->yystack[pParser->yyidx].stateno; /* if( pParser->yyidx<0 ) return YY_NO_ACTION; */ i = yy_shift_ofst[stateno]; if( i==YY_SHIFT_USE_DFLT ){ return yy_default[stateno]; } if( iLookAhead==YYNOCODE ){ return YY_NO_ACTION; } i += iLookAhead; if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){ #ifdef YYFALLBACK int iFallback; /* Fallback token */ if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0]) && (iFallback = yyFallback[iLookAhead])!=0 ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE, "%sFALLBACK %s => %s\n", yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); } #endif return yy_find_shift_action(pParser, iFallback); } #endif return yy_default[stateno]; }else{ return yy_action[i]; } } /* ** Find the appropriate action for a parser given the non-terminal ** look-ahead token iLookAhead. ** ** If the look-ahead token is YYNOCODE, then check to see if the action is ** independent of the look-ahead. If it is, return the action, otherwise ** return YY_NO_ACTION. */ static int yy_find_reduce_action( yyParser *pParser, /* The parser */ int iLookAhead /* The look-ahead token */ ){ int i; int stateno = pParser->yystack[pParser->yyidx].stateno; i = yy_reduce_ofst[stateno]; if( i==YY_REDUCE_USE_DFLT ){ return yy_default[stateno]; } if( iLookAhead==YYNOCODE ){ return YY_NO_ACTION; } i += iLookAhead; if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){ return yy_default[stateno]; }else{ return yy_action[i]; } } /* ** Perform a shift action. */ static void yy_shift( yyParser *yypParser, /* The parser to be shifted */ int yyNewState, /* The new state to shift in */ int yyMajor, /* The major token to shift in */ YYMINORTYPE *yypMinor /* Pointer ot the minor token to shift in */ ){ yyStackEntry *yytos; yypParser->yyidx++; if( yypParser->yyidx>=YYSTACKDEPTH ){ xx_ARG_FETCH; yypParser->yyidx--; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); } #endif while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will execute if the parser ** stack every overflows */ xx_ARG_STORE; /* Suppress warning about unused %extra_argument var */ return; } yytos = &yypParser->yystack[yypParser->yyidx]; yytos->stateno = yyNewState; yytos->major = yyMajor; yytos->minor = *yypMinor; #ifndef NDEBUG if( yyTraceFILE && yypParser->yyidx>0 ){ int i; fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); for(i=1; i<=yypParser->yyidx; i++) fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); fprintf(yyTraceFILE,"\n"); } #endif } /* The following table contains information about every rule that ** is used during the reduce. */ static struct { YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ unsigned char nrhs; /* Number of right-hand side symbols in the rule */ } yyRuleInfo[] = { { 128, 1 }, { 129, 1 }, { 130, 2 }, { 130, 1 }, { 131, 1 }, { 131, 1 }, { 131, 1 }, { 131, 1 }, { 131, 1 }, { 131, 1 }, { 131, 1 }, { 132, 3 }, { 132, 3 }, { 139, 3 }, { 139, 1 }, { 133, 1 }, { 133, 3 }, { 134, 8 }, { 134, 7 }, { 134, 9 }, { 134, 8 }, { 134, 9 }, { 134, 10 }, { 134, 6 }, { 134, 5 }, { 134, 7 }, { 134, 6 }, { 134, 7 }, { 134, 8 }, { 136, 3 }, { 136, 5 }, { 135, 3 }, { 135, 5 }, { 135, 5 }, { 135, 7 }, { 135, 4 }, { 135, 6 }, { 135, 6 }, { 135, 8 }, { 135, 4 }, { 135, 6 }, { 135, 6 }, { 145, 2 }, { 145, 3 }, { 144, 3 }, { 144, 1 }, { 147, 1 }, { 143, 2 }, { 143, 3 }, { 146, 1 }, { 146, 1 }, { 146, 1 }, { 146, 2 }, { 146, 2 }, { 146, 2 }, { 146, 2 }, { 146, 3 }, { 146, 3 }, { 148, 1 }, { 148, 1 }, { 148, 2 }, { 149, 2 }, { 149, 1 }, { 153, 4 }, { 153, 3 }, { 153, 6 }, { 153, 5 }, { 153, 5 }, { 153, 4 }, { 153, 7 }, { 153, 6 }, { 156, 2 }, { 156, 3 }, { 157, 3 }, { 157, 1 }, { 158, 1 }, { 158, 2 }, { 150, 2 }, { 150, 1 }, { 151, 2 }, { 151, 1 }, { 152, 2 }, { 152, 1 }, { 159, 6 }, { 159, 5 }, { 159, 6 }, { 159, 5 }, { 160, 7 }, { 160, 6 }, { 160, 8 }, { 160, 7 }, { 160, 8 }, { 160, 9 }, { 160, 8 }, { 160, 7 }, { 160, 9 }, { 160, 8 }, { 160, 9 }, { 160, 10 }, { 160, 9 }, { 160, 8 }, { 160, 10 }, { 160, 9 }, { 160, 10 }, { 160, 11 }, { 160, 10 }, { 160, 9 }, { 160, 11 }, { 160, 10 }, { 160, 11 }, { 160, 12 }, { 161, 8 }, { 161, 9 }, { 161, 9 }, { 161, 10 }, { 161, 6 }, { 161, 7 }, { 161, 7 }, { 161, 8 }, { 154, 2 }, { 154, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 162, 1 }, { 140, 1 }, { 140, 1 }, { 163, 3 }, { 163, 1 }, { 164, 1 }, { 164, 1 }, { 164, 1 }, { 164, 2 }, { 164, 1 }, { 164, 1 }, { 141, 3 }, { 141, 1 }, { 168, 1 }, { 168, 2 }, { 168, 2 }, { 168, 3 }, { 168, 2 }, { 168, 3 }, { 168, 3 }, { 168, 4 }, { 168, 3 }, { 168, 4 }, { 168, 4 }, { 168, 5 }, { 168, 2 }, { 168, 3 }, { 168, 3 }, { 168, 4 }, { 168, 3 }, { 168, 4 }, { 168, 4 }, { 168, 5 }, { 168, 4 }, { 168, 5 }, { 168, 5 }, { 168, 6 }, { 168, 5 }, { 168, 6 }, { 168, 6 }, { 168, 7 }, { 168, 4 }, { 168, 5 }, { 168, 5 }, { 168, 6 }, { 166, 3 }, { 167, 5 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 165, 1 }, { 142, 2 }, { 142, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 169, 1 }, { 190, 1 }, { 183, 2 }, { 184, 2 }, { 171, 4 }, { 171, 5 }, { 171, 7 }, { 171, 8 }, { 171, 5 }, { 171, 6 }, { 171, 9 }, { 171, 10 }, { 171, 8 }, { 171, 9 }, { 171, 8 }, { 192, 2 }, { 192, 1 }, { 193, 4 }, { 193, 5 }, { 188, 4 }, { 188, 5 }, { 194, 2 }, { 194, 1 }, { 195, 3 }, { 195, 4 }, { 195, 3 }, { 172, 3 }, { 172, 4 }, { 185, 4 }, { 185, 5 }, { 186, 6 }, { 186, 7 }, { 187, 3 }, { 187, 4 }, { 187, 5 }, { 196, 2 }, { 196, 1 }, { 197, 5 }, { 197, 4 }, { 197, 6 }, { 197, 7 }, { 198, 3 }, { 198, 1 }, { 199, 1 }, { 189, 7 }, { 189, 6 }, { 189, 8 }, { 189, 9 }, { 189, 8 }, { 189, 10 }, { 170, 3 }, { 201, 3 }, { 201, 1 }, { 203, 1 }, { 203, 1 }, { 203, 1 }, { 203, 1 }, { 203, 1 }, { 203, 1 }, { 203, 1 }, { 202, 3 }, { 202, 5 }, { 202, 7 }, { 202, 7 }, { 202, 7 }, { 202, 6 }, { 202, 8 }, { 202, 5 }, { 202, 7 }, { 202, 6 }, { 202, 8 }, { 202, 5 }, { 202, 4 }, { 202, 6 }, { 205, 2 }, { 205, 1 }, { 206, 3 }, { 202, 4 }, { 202, 4 }, { 202, 2 }, { 202, 2 }, { 202, 5 }, { 202, 5 }, { 207, 1 }, { 173, 3 }, { 208, 3 }, { 208, 1 }, { 209, 1 }, { 178, 2 }, { 177, 2 }, { 179, 2 }, { 176, 2 }, { 174, 3 }, { 174, 2 }, { 175, 3 }, { 180, 3 }, { 181, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 182, 3 }, { 214, 3 }, { 214, 1 }, { 215, 1 }, { 215, 3 }, { 204, 1 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 2 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 4 }, { 200, 4 }, { 200, 3 }, { 200, 5 }, { 200, 5 }, { 200, 3 }, { 200, 3 }, { 200, 4 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 200, 3 }, { 213, 4 }, { 200, 1 }, { 200, 2 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 2 }, { 200, 3 }, { 200, 2 }, { 200, 4 }, { 200, 5 }, { 200, 2 }, { 200, 4 }, { 200, 5 }, { 200, 4 }, { 200, 6 }, { 200, 7 }, { 200, 5 }, { 211, 4 }, { 211, 3 }, { 211, 6 }, { 211, 5 }, { 212, 5 }, { 212, 6 }, { 212, 6 }, { 212, 5 }, { 212, 7 }, { 212, 8 }, { 212, 9 }, { 212, 10 }, { 212, 7 }, { 212, 8 }, { 210, 6 }, { 210, 5 }, { 210, 8 }, { 210, 7 }, { 210, 8 }, { 210, 7 }, { 200, 1 }, { 200, 1 }, { 200, 1 }, { 200, 5 }, { 200, 4 }, { 217, 3 }, { 217, 1 }, { 218, 1 }, { 218, 3 }, { 200, 5 }, { 200, 6 }, { 200, 6 }, { 200, 7 }, { 200, 3 }, { 216, 3 }, { 216, 1 }, { 219, 3 }, { 219, 1 }, { 220, 1 }, { 221, 1 }, { 155, 1 }, { 155, 1 }, { 155, 1 }, { 155, 1 }, { 155, 1 }, { 155, 1 }, { 155, 1 }, { 155, 3 }, { 155, 1 }, { 155, 2 }, { 155, 3 }, { 222, 3 }, { 222, 1 }, { 223, 3 }, { 223, 1 }, { 224, 1 }, { 224, 1 }, { 224, 1 }, { 225, 1 }, { 191, 1 }, { 137, 1 }, { 138, 1 }, }; static void yy_accept(yyParser*); /* Forward Declaration */ /* ** Perform a reduce action and the shift that must immediately ** follow the reduce. */ static void yy_reduce( yyParser *yypParser, /* The parser */ int yyruleno /* Number of the rule by which to reduce */ ){ int yygoto; /* The next state */ int yyact; /* The next action */ YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ yyStackEntry *yymsp; /* The top of the parser's stack */ int yysize; /* Amount to pop the stack */ xx_ARG_FETCH; yymsp = &yypParser->yystack[yypParser->yyidx]; #ifndef NDEBUG if( yyTraceFILE && yyruleno>=0 && yyruleno<sizeof(yyRuleName)/sizeof(yyRuleName[0]) ){ fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt, yyRuleName[yyruleno]); } #endif /* NDEBUG */ switch( yyruleno ){ /* Beginning here are the reduction cases. A typical example ** follows: ** case 0: ** #line <lineno> <grammarfile> ** { ... } // User supplied code ** #line <lineno> <thisfile> ** break; */ case 0: #line 92 "parser.php5.lemon" { status->ret = yymsp[0].minor.yy132; } #line 4399 "parser.php5.c" break; case 1: case 4: case 5: case 7: case 8: case 9: case 10: case 193: case 194: case 195: case 196: case 197: case 198: case 199: case 200: case 201: case 202: case 203: case 204: case 205: case 206: case 207: case 208: case 209: case 210: case 211: case 212: case 213: case 214: case 215: case 298: case 327: case 373: case 417: case 418: case 419: case 435: case 436: case 455: case 456: #line 101 "parser.php5.lemon" { yygotominor.yy132 = yymsp[0].minor.yy132; } #line 4445 "parser.php5.c" break; case 2: case 61: case 77: case 79: case 81: case 119: case 191: case 230: case 236: case 250: case 289: #line 105 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_list(yymsp[-1].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); } #line 4462 "parser.php5.c" break; case 3: case 14: case 45: case 62: case 74: case 78: case 80: case 82: case 120: case 134: case 142: case 192: case 231: case 237: case 251: case 257: case 267: case 290: case 301: case 324: case 423: case 432: case 449: #line 109 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_list(NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 4491 "parser.php5.c" break; case 6: #line 121 "parser.php5.lemon" { yygotominor.yy132 = yymsp[0].minor.yy132; } #line 4498 "parser.php5.c" break; case 11: #line 141 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_namespace(yymsp[-1].minor.yy0, status->scanner_state); yy_destructor(48,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 4507 "parser.php5.c" break; case 12: #line 145 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_use_aliases(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(51,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 4516 "parser.php5.c" break; case 13: case 44: case 73: case 141: case 266: case 300: case 323: case 422: case 431: case 448: #line 149 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_list(yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(7,&yymsp[-1].minor); } #line 4533 "parser.php5.c" break; case 15: #line 157 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_use_aliases_item(yymsp[0].minor.yy0, NULL, status->scanner_state); } #line 4540 "parser.php5.c" break; case 16: #line 161 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_use_aliases_item(yymsp[-2].minor.yy0, yymsp[0].minor.yy0, status->scanner_state); yy_destructor(52,&yymsp[-1].minor); } #line 4548 "parser.php5.c" break; case 17: #line 168 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-6].minor.yy0, NULL, NULL, NULL, yymsp[-2].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-4].minor); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 4561 "parser.php5.c" break; case 18: #line 173 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-5].minor.yy0, NULL, NULL, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(47,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 4573 "parser.php5.c" break; case 19: #line 178 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-7].minor.yy0, yymsp[-5].minor.yy132, NULL, NULL, yymsp[-2].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-8].minor); yy_destructor(54,&yymsp[-6].minor); yy_destructor(45,&yymsp[-4].minor); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 4586 "parser.php5.c" break; case 20: #line 183 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-6].minor.yy0, yymsp[-4].minor.yy132, NULL, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(47,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 4598 "parser.php5.c" break; case 21: #line 188 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-7].minor.yy0, NULL, yymsp[-1].minor.yy132, NULL, yymsp[-3].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-8].minor); yy_destructor(54,&yymsp[-6].minor); yy_destructor(45,&yymsp[-5].minor); yy_destructor(47,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 4611 "parser.php5.c" break; case 22: #line 193 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-8].minor.yy0, yymsp[-6].minor.yy132, yymsp[-1].minor.yy132, NULL, yymsp[-3].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-9].minor); yy_destructor(54,&yymsp[-7].minor); yy_destructor(45,&yymsp[-5].minor); yy_destructor(47,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 4624 "parser.php5.c" break; case 23: #line 198 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-4].minor.yy0, NULL, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 4636 "parser.php5.c" break; case 24: #line 203 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-3].minor.yy0, NULL, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 4647 "parser.php5.c" break; case 25: #line 208 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-5].minor.yy0, yymsp[-3].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 4659 "parser.php5.c" break; case 26: #line 213 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-4].minor.yy0, yymsp[-2].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 4670 "parser.php5.c" break; case 27: #line 218 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 4682 "parser.php5.c" break; case 28: #line 223 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_function(yymsp[-6].minor.yy0, yymsp[-4].minor.yy132, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 4694 "parser.php5.c" break; case 29: #line 227 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_interface(yymsp[-1].minor.yy0, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(57,&yymsp[-2].minor); } #line 4702 "parser.php5.c" break; case 30: #line 231 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_interface(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(57,&yymsp[-4].minor); yy_destructor(58,&yymsp[-2].minor); } #line 4711 "parser.php5.c" break; case 31: #line 235 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-1].minor.yy0, yymsp[0].minor.yy132, 0, 0, NULL, NULL, status->scanner_state); yy_destructor(59,&yymsp[-2].minor); } #line 4719 "parser.php5.c" break; case 32: #line 239 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, 0, 0, yymsp[-1].minor.yy0, NULL, status->scanner_state); yy_destructor(59,&yymsp[-4].minor); yy_destructor(58,&yymsp[-2].minor); } #line 4728 "parser.php5.c" break; case 33: #line 243 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, 0, 0, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(59,&yymsp[-4].minor); yy_destructor(60,&yymsp[-2].minor); } #line 4737 "parser.php5.c" break; case 34: #line 247 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-5].minor.yy0, yymsp[0].minor.yy132, 0, 0, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(59,&yymsp[-6].minor); yy_destructor(58,&yymsp[-4].minor); yy_destructor(60,&yymsp[-2].minor); } #line 4747 "parser.php5.c" break; case 35: #line 251 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-1].minor.yy0, yymsp[0].minor.yy132, 1, 0, NULL, NULL, status->scanner_state); yy_destructor(61,&yymsp[-3].minor); yy_destructor(59,&yymsp[-2].minor); } #line 4756 "parser.php5.c" break; case 36: #line 255 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, 1, 0, yymsp[-1].minor.yy0, NULL, status->scanner_state); yy_destructor(61,&yymsp[-5].minor); yy_destructor(59,&yymsp[-4].minor); yy_destructor(58,&yymsp[-2].minor); } #line 4766 "parser.php5.c" break; case 37: #line 259 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, 1, 0, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(61,&yymsp[-5].minor); yy_destructor(59,&yymsp[-4].minor); yy_destructor(60,&yymsp[-2].minor); } #line 4776 "parser.php5.c" break; case 38: #line 263 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-5].minor.yy0, yymsp[0].minor.yy132, 1, 0, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(61,&yymsp[-7].minor); yy_destructor(59,&yymsp[-6].minor); yy_destructor(58,&yymsp[-4].minor); yy_destructor(60,&yymsp[-2].minor); } #line 4787 "parser.php5.c" break; case 39: #line 267 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-1].minor.yy0, yymsp[0].minor.yy132, 0, 1, NULL, NULL, status->scanner_state); yy_destructor(62,&yymsp[-3].minor); yy_destructor(59,&yymsp[-2].minor); } #line 4796 "parser.php5.c" break; case 40: #line 271 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, 0, 1, yymsp[-1].minor.yy0, NULL, status->scanner_state); yy_destructor(62,&yymsp[-5].minor); yy_destructor(59,&yymsp[-4].minor); yy_destructor(58,&yymsp[-2].minor); } #line 4806 "parser.php5.c" break; case 41: #line 275 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class(yymsp[-3].minor.yy0, yymsp[0].minor.yy132, 0, 1, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(62,&yymsp[-5].minor); yy_destructor(59,&yymsp[-4].minor); yy_destructor(60,&yymsp[-2].minor); } #line 4816 "parser.php5.c" break; case 42: case 71: #line 279 "parser.php5.lemon" { yygotominor.yy132 = NULL; yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 4826 "parser.php5.c" break; case 43: case 72: #line 283 "parser.php5.lemon" { yygotominor.yy132 = yymsp[-1].minor.yy132; yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 4836 "parser.php5.c" break; case 46: case 258: case 375: case 452: #line 295 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_IDENTIFIER, yymsp[0].minor.yy0, status->scanner_state); } #line 4846 "parser.php5.c" break; case 47: #line 299 "parser.php5.lemon" { yygotominor.yy132 = NULL; yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 4855 "parser.php5.c" break; case 48: #line 303 "parser.php5.lemon" { yygotominor.yy132 = yymsp[-1].minor.yy132; yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 4864 "parser.php5.c" break; case 49: #line 307 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); } #line 4871 "parser.php5.c" break; case 50: #line 311 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(NULL, NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 4878 "parser.php5.c" break; case 51: #line 315 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(NULL, yymsp[0].minor.yy132, NULL, status->scanner_state); } #line 4885 "parser.php5.c" break; case 52: #line 319 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(yymsp[-1].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); } #line 4892 "parser.php5.c" break; case 53: #line 323 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(yymsp[-1].minor.yy132, NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 4899 "parser.php5.c" break; case 54: #line 327 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(yymsp[0].minor.yy132, NULL, yymsp[-1].minor.yy132, status->scanner_state); } #line 4906 "parser.php5.c" break; case 55: #line 331 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(NULL, yymsp[0].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); } #line 4913 "parser.php5.c" break; case 56: #line 335 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(yymsp[-2].minor.yy132, yymsp[0].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); } #line 4920 "parser.php5.c" break; case 57: #line 339 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_definition(yymsp[-1].minor.yy132, yymsp[0].minor.yy132, yymsp[-2].minor.yy132, status->scanner_state); } #line 4927 "parser.php5.c" break; case 58: #line 343 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_interface_definition(NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 4934 "parser.php5.c" break; case 59: #line 347 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_interface_definition(yymsp[0].minor.yy132, NULL, status->scanner_state); } #line 4941 "parser.php5.c" break; case 60: #line 351 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_interface_definition(yymsp[0].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); } #line 4948 "parser.php5.c" break; case 63: #line 364 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-2].minor.yy132, yymsp[-1].minor.yy0, NULL, yymsp[-3].minor.yy0, NULL, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 4956 "parser.php5.c" break; case 64: #line 368 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-2].minor.yy132, yymsp[-1].minor.yy0, NULL, NULL, NULL, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 4964 "parser.php5.c" break; case 65: #line 372 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-4].minor.yy132, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, yymsp[-5].minor.yy0, NULL, status->scanner_state); yy_destructor(64,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 4973 "parser.php5.c" break; case 66: #line 376 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-4].minor.yy132, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(64,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 4982 "parser.php5.c" break; case 67: #line 380 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-3].minor.yy132, yymsp[-2].minor.yy0, NULL, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 4990 "parser.php5.c" break; case 68: #line 384 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-3].minor.yy132, yymsp[-2].minor.yy0, NULL, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 4998 "parser.php5.c" break; case 69: #line 388 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-5].minor.yy132, yymsp[-4].minor.yy0, yymsp[-2].minor.yy132, yymsp[-6].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(64,&yymsp[-3].minor); yy_destructor(50,&yymsp[0].minor); } #line 5007 "parser.php5.c" break; case 70: #line 392 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_property(yymsp[-5].minor.yy132, yymsp[-4].minor.yy0, yymsp[-2].minor.yy132, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(64,&yymsp[-3].minor); yy_destructor(50,&yymsp[0].minor); } #line 5016 "parser.php5.c" break; case 75: #line 412 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_property_shortcut(NULL, yymsp[0].minor.yy0, status->scanner_state); } #line 5023 "parser.php5.c" break; case 76: #line 416 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_property_shortcut(yymsp[-1].minor.yy0, yymsp[0].minor.yy0, status->scanner_state); } #line 5030 "parser.php5.c" break; case 83: case 85: #line 445 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_const(yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, yymsp[-5].minor.yy0, status->scanner_state); yy_destructor(65,&yymsp[-4].minor); yy_destructor(64,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 5041 "parser.php5.c" break; case 84: case 86: #line 449 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_const(yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(65,&yymsp[-4].minor); yy_destructor(64,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 5052 "parser.php5.c" break; case 87: #line 464 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-6].minor.yy132, yymsp[-4].minor.yy0, NULL, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5064 "parser.php5.c" break; case 88: case 115: #line 469 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-5].minor.yy132, yymsp[-3].minor.yy0, NULL, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 5076 "parser.php5.c" break; case 89: #line 474 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-7].minor.yy132, yymsp[-5].minor.yy0, yymsp[-3].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5088 "parser.php5.c" break; case 90: case 116: #line 479 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-6].minor.yy132, yymsp[-4].minor.yy0, yymsp[-2].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 5100 "parser.php5.c" break; case 91: #line 484 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-7].minor.yy132, yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5112 "parser.php5.c" break; case 92: #line 488 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-8].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy132, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5124 "parser.php5.c" break; case 93: #line 492 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-6].minor.yy132, yymsp[-4].minor.yy0, NULL, NULL, yymsp[-7].minor.yy0, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5136 "parser.php5.c" break; case 94: case 117: #line 496 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-5].minor.yy132, yymsp[-3].minor.yy0, NULL, NULL, yymsp[-6].minor.yy0, NULL, status->scanner_state); yy_destructor(53,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 5148 "parser.php5.c" break; case 95: #line 500 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-7].minor.yy132, yymsp[-5].minor.yy0, yymsp[-3].minor.yy132, NULL, yymsp[-8].minor.yy0, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5160 "parser.php5.c" break; case 96: case 118: #line 504 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-6].minor.yy132, yymsp[-4].minor.yy0, yymsp[-2].minor.yy132, NULL, yymsp[-7].minor.yy0, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 5172 "parser.php5.c" break; case 97: #line 508 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-7].minor.yy132, yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy132, yymsp[-8].minor.yy0, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5184 "parser.php5.c" break; case 98: #line 512 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-8].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy132, yymsp[-1].minor.yy132, yymsp[-9].minor.yy0, NULL, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5196 "parser.php5.c" break; case 99: #line 516 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-8].minor.yy132, yymsp[-6].minor.yy0, NULL, NULL, NULL, yymsp[-2].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-4].minor); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5209 "parser.php5.c" break; case 100: case 111: #line 520 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-7].minor.yy132, yymsp[-5].minor.yy0, NULL, NULL, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(47,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 5222 "parser.php5.c" break; case 101: #line 524 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-9].minor.yy132, yymsp[-7].minor.yy0, yymsp[-5].minor.yy132, NULL, NULL, yymsp[-2].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-8].minor); yy_destructor(54,&yymsp[-6].minor); yy_destructor(45,&yymsp[-4].minor); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5235 "parser.php5.c" break; case 102: case 112: #line 528 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-8].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy132, NULL, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(47,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 5248 "parser.php5.c" break; case 103: #line 532 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-9].minor.yy132, yymsp[-7].minor.yy0, NULL, yymsp[-1].minor.yy132, NULL, yymsp[-3].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-8].minor); yy_destructor(54,&yymsp[-6].minor); yy_destructor(45,&yymsp[-5].minor); yy_destructor(47,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5261 "parser.php5.c" break; case 104: #line 536 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-10].minor.yy132, yymsp[-8].minor.yy0, yymsp[-6].minor.yy132, yymsp[-1].minor.yy132, NULL, yymsp[-3].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-9].minor); yy_destructor(54,&yymsp[-7].minor); yy_destructor(45,&yymsp[-5].minor); yy_destructor(47,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5274 "parser.php5.c" break; case 105: #line 540 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-8].minor.yy132, yymsp[-6].minor.yy0, NULL, NULL, yymsp[-9].minor.yy0, yymsp[-2].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-4].minor); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5287 "parser.php5.c" break; case 106: case 113: #line 544 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-7].minor.yy132, yymsp[-5].minor.yy0, NULL, NULL, yymsp[-8].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(47,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 5300 "parser.php5.c" break; case 107: #line 548 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-9].minor.yy132, yymsp[-7].minor.yy0, yymsp[-5].minor.yy132, NULL, yymsp[-10].minor.yy0, yymsp[-2].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-8].minor); yy_destructor(54,&yymsp[-6].minor); yy_destructor(45,&yymsp[-4].minor); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5313 "parser.php5.c" break; case 108: case 114: #line 552 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-8].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy132, NULL, yymsp[-9].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-7].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(47,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 5326 "parser.php5.c" break; case 109: #line 556 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-9].minor.yy132, yymsp[-7].minor.yy0, NULL, yymsp[-1].minor.yy132, yymsp[-10].minor.yy0, yymsp[-3].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-8].minor); yy_destructor(54,&yymsp[-6].minor); yy_destructor(45,&yymsp[-5].minor); yy_destructor(47,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5339 "parser.php5.c" break; case 110: #line 560 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_class_method(yymsp[-10].minor.yy132, yymsp[-8].minor.yy0, yymsp[-6].minor.yy132, yymsp[-1].minor.yy132, yymsp[-11].minor.yy0, yymsp[-3].minor.yy132, status->scanner_state); yy_destructor(53,&yymsp[-9].minor); yy_destructor(54,&yymsp[-7].minor); yy_destructor(45,&yymsp[-5].minor); yy_destructor(47,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5352 "parser.php5.c" break; case 121: #line 606 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("internal"); yy_destructor(1,&yymsp[0].minor); } #line 5360 "parser.php5.c" break; case 122: #line 610 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("public"); yy_destructor(2,&yymsp[0].minor); } #line 5368 "parser.php5.c" break; case 123: #line 614 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("protected"); yy_destructor(3,&yymsp[0].minor); } #line 5376 "parser.php5.c" break; case 124: #line 618 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("private"); yy_destructor(5,&yymsp[0].minor); } #line 5384 "parser.php5.c" break; case 125: #line 622 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("static"); yy_destructor(4,&yymsp[0].minor); } #line 5392 "parser.php5.c" break; case 126: #line 626 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("scoped"); yy_destructor(6,&yymsp[0].minor); } #line 5400 "parser.php5.c" break; case 127: #line 630 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("inline"); yy_destructor(67,&yymsp[0].minor); } #line 5408 "parser.php5.c" break; case 128: #line 634 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("deprecated"); yy_destructor(68,&yymsp[0].minor); } #line 5416 "parser.php5.c" break; case 129: #line 638 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("abstract"); yy_destructor(61,&yymsp[0].minor); } #line 5424 "parser.php5.c" break; case 130: #line 642 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("final"); yy_destructor(62,&yymsp[0].minor); } #line 5432 "parser.php5.c" break; case 131: #line 647 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type(1, NULL, status->scanner_state); yy_destructor(69,&yymsp[0].minor); } #line 5440 "parser.php5.c" break; case 132: #line 651 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type(0, yymsp[0].minor.yy132, status->scanner_state); } #line 5447 "parser.php5.c" break; case 133: case 256: #line 655 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_list(yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(16,&yymsp[-1].minor); } #line 5456 "parser.php5.c" break; case 135: #line 663 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type_item(yymsp[0].minor.yy132, NULL, 0, 0, status->scanner_state); } #line 5463 "parser.php5.c" break; case 136: #line 667 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type_item(xx_ret_type(XX_T_TYPE_NULL), NULL, 0, 0, status->scanner_state); yy_destructor(70,&yymsp[0].minor); } #line 5471 "parser.php5.c" break; case 137: #line 671 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type_item(xx_ret_type(XX_T_TYPE_THIS), NULL, 0, 0, status->scanner_state); yy_destructor(71,&yymsp[0].minor); } #line 5479 "parser.php5.c" break; case 138: #line 675 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type_item(yymsp[-1].minor.yy132, NULL, 1, 0, status->scanner_state); yy_destructor(42,&yymsp[0].minor); } #line 5487 "parser.php5.c" break; case 139: #line 679 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type_item(NULL, yymsp[0].minor.yy132, 0, 0, status->scanner_state); } #line 5494 "parser.php5.c" break; case 140: #line 683 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_type_item(NULL, yymsp[0].minor.yy132, 0, 1, status->scanner_state); } #line 5501 "parser.php5.c" break; case 143: #line 699 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, NULL, yymsp[0].minor.yy0, NULL, 0, 0, status->scanner_state); } #line 5508 "parser.php5.c" break; case 144: #line 704 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, NULL, yymsp[0].minor.yy0, NULL, 0, 1, status->scanner_state); yy_destructor(44,&yymsp[-1].minor); } #line 5516 "parser.php5.c" break; case 145: #line 709 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, NULL, yymsp[0].minor.yy0, NULL, 0, 0, status->scanner_state); yy_destructor(65,&yymsp[-1].minor); } #line 5524 "parser.php5.c" break; case 146: #line 714 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, NULL, yymsp[0].minor.yy0, NULL, 0, 1, status->scanner_state); yy_destructor(65,&yymsp[-2].minor); yy_destructor(44,&yymsp[-1].minor); } #line 5533 "parser.php5.c" break; case 147: #line 719 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-1].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 0, 0, status->scanner_state); } #line 5540 "parser.php5.c" break; case 148: #line 724 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-2].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 0, 1, status->scanner_state); yy_destructor(44,&yymsp[-1].minor); } #line 5548 "parser.php5.c" break; case 149: #line 729 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-1].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 0, 0, status->scanner_state); yy_destructor(65,&yymsp[-2].minor); } #line 5556 "parser.php5.c" break; case 150: #line 734 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-2].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 0, 1, status->scanner_state); yy_destructor(65,&yymsp[-3].minor); yy_destructor(44,&yymsp[-1].minor); } #line 5565 "parser.php5.c" break; case 151: #line 739 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-2].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 1, 0, status->scanner_state); yy_destructor(42,&yymsp[-1].minor); } #line 5573 "parser.php5.c" break; case 152: #line 744 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-3].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 1, 1, status->scanner_state); yy_destructor(42,&yymsp[-2].minor); yy_destructor(44,&yymsp[-1].minor); } #line 5582 "parser.php5.c" break; case 153: #line 749 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-2].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 1, 0, status->scanner_state); yy_destructor(65,&yymsp[-3].minor); yy_destructor(42,&yymsp[-1].minor); } #line 5591 "parser.php5.c" break; case 154: #line 754 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-3].minor.yy132, NULL, yymsp[0].minor.yy0, NULL, 1, 1, status->scanner_state); yy_destructor(65,&yymsp[-4].minor); yy_destructor(42,&yymsp[-2].minor); yy_destructor(44,&yymsp[-1].minor); } #line 5601 "parser.php5.c" break; case 155: #line 759 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, yymsp[-1].minor.yy132, yymsp[0].minor.yy0, NULL, 0, 0, status->scanner_state); } #line 5608 "parser.php5.c" break; case 156: #line 764 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, yymsp[-2].minor.yy132, yymsp[0].minor.yy0, NULL, 0, 1, status->scanner_state); yy_destructor(44,&yymsp[-1].minor); } #line 5616 "parser.php5.c" break; case 157: #line 769 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, yymsp[-1].minor.yy132, yymsp[0].minor.yy0, NULL, 0, 0, status->scanner_state); yy_destructor(65,&yymsp[-2].minor); } #line 5624 "parser.php5.c" break; case 158: #line 774 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, yymsp[-2].minor.yy132, yymsp[0].minor.yy0, NULL, 0, 1, status->scanner_state); yy_destructor(65,&yymsp[-3].minor); yy_destructor(44,&yymsp[-1].minor); } #line 5633 "parser.php5.c" break; case 159: #line 779 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 0, status->scanner_state); yy_destructor(64,&yymsp[-1].minor); } #line 5641 "parser.php5.c" break; case 160: #line 784 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 1, status->scanner_state); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5650 "parser.php5.c" break; case 161: #line 789 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 0, status->scanner_state); yy_destructor(65,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5659 "parser.php5.c" break; case 162: #line 794 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 1, status->scanner_state); yy_destructor(65,&yymsp[-4].minor); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5669 "parser.php5.c" break; case 163: #line 799 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-3].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 0, status->scanner_state); yy_destructor(64,&yymsp[-1].minor); } #line 5677 "parser.php5.c" break; case 164: #line 804 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-4].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 1, status->scanner_state); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5686 "parser.php5.c" break; case 165: #line 809 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-3].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 0, status->scanner_state); yy_destructor(65,&yymsp[-4].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5695 "parser.php5.c" break; case 166: #line 814 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-4].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 1, status->scanner_state); yy_destructor(65,&yymsp[-5].minor); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5705 "parser.php5.c" break; case 167: #line 819 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-4].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 1, 0, status->scanner_state); yy_destructor(42,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5714 "parser.php5.c" break; case 168: #line 824 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, yymsp[-5].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 1, 1, status->scanner_state); yy_destructor(42,&yymsp[-4].minor); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5724 "parser.php5.c" break; case 169: #line 829 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-4].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 1, 0, status->scanner_state); yy_destructor(65,&yymsp[-5].minor); yy_destructor(42,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5734 "parser.php5.c" break; case 170: #line 834 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, yymsp[-5].minor.yy132, NULL, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 1, 1, status->scanner_state); yy_destructor(65,&yymsp[-6].minor); yy_destructor(42,&yymsp[-4].minor); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5745 "parser.php5.c" break; case 171: #line 839 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, yymsp[-3].minor.yy132, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 0, status->scanner_state); yy_destructor(64,&yymsp[-1].minor); } #line 5753 "parser.php5.c" break; case 172: #line 844 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(0, NULL, yymsp[-4].minor.yy132, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 1, status->scanner_state); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5762 "parser.php5.c" break; case 173: #line 849 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, yymsp[-3].minor.yy132, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 0, status->scanner_state); yy_destructor(65,&yymsp[-4].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5771 "parser.php5.c" break; case 174: #line 854 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_parameter(1, NULL, yymsp[-4].minor.yy132, yymsp[-2].minor.yy0, yymsp[0].minor.yy132, 0, 1, status->scanner_state); yy_destructor(65,&yymsp[-5].minor); yy_destructor(44,&yymsp[-3].minor); yy_destructor(64,&yymsp[-1].minor); } #line 5781 "parser.php5.c" break; case 175: #line 859 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_IDENTIFIER, yymsp[-1].minor.yy0, status->scanner_state); yy_destructor(22,&yymsp[-2].minor); yy_destructor(23,&yymsp[0].minor); } #line 5790 "parser.php5.c" break; case 176: #line 863 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_IDENTIFIER, yymsp[-3].minor.yy0, status->scanner_state); yy_destructor(22,&yymsp[-4].minor); yy_destructor(46,&yymsp[-2].minor); yy_destructor(72,&yymsp[-1].minor); yy_destructor(23,&yymsp[0].minor); } #line 5801 "parser.php5.c" break; case 177: #line 867 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_INTEGER); yy_destructor(73,&yymsp[0].minor); } #line 5809 "parser.php5.c" break; case 178: #line 871 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_UINTEGER); yy_destructor(74,&yymsp[0].minor); } #line 5817 "parser.php5.c" break; case 179: #line 875 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_LONG); yy_destructor(75,&yymsp[0].minor); } #line 5825 "parser.php5.c" break; case 180: #line 879 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_ULONG); yy_destructor(76,&yymsp[0].minor); } #line 5833 "parser.php5.c" break; case 181: #line 883 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_CHAR); yy_destructor(77,&yymsp[0].minor); } #line 5841 "parser.php5.c" break; case 182: #line 887 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_UCHAR); yy_destructor(78,&yymsp[0].minor); } #line 5849 "parser.php5.c" break; case 183: #line 891 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_DOUBLE); yy_destructor(79,&yymsp[0].minor); } #line 5857 "parser.php5.c" break; case 184: #line 895 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_BOOL); yy_destructor(80,&yymsp[0].minor); } #line 5865 "parser.php5.c" break; case 185: #line 899 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_STRING); yy_destructor(81,&yymsp[0].minor); } #line 5873 "parser.php5.c" break; case 186: #line 903 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_ARRAY); yy_destructor(82,&yymsp[0].minor); } #line 5881 "parser.php5.c" break; case 187: #line 907 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_VAR); yy_destructor(83,&yymsp[0].minor); } #line 5889 "parser.php5.c" break; case 188: #line 911 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_CALLABLE); yy_destructor(84,&yymsp[0].minor); } #line 5897 "parser.php5.c" break; case 189: #line 915 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_RESOURCE); yy_destructor(85,&yymsp[0].minor); } #line 5905 "parser.php5.c" break; case 190: #line 919 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_type(XX_TYPE_OBJECT); yy_destructor(86,&yymsp[0].minor); } #line 5913 "parser.php5.c" break; case 216: #line 1025 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_empty_statement(status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 5921 "parser.php5.c" break; case 217: #line 1029 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_break_statement(status->scanner_state); yy_destructor(87,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 5930 "parser.php5.c" break; case 218: #line 1033 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_continue_statement(status->scanner_state); yy_destructor(88,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 5939 "parser.php5.c" break; case 219: #line 1038 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-2].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(89,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5949 "parser.php5.c" break; case 220: #line 1043 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-3].minor.yy132, NULL, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(89,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[-1].minor); } #line 5959 "parser.php5.c" break; case 221: #line 1048 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-5].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(89,&yymsp[-6].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(90,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5972 "parser.php5.c" break; case 222: #line 1053 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-6].minor.yy132, NULL, yymsp[-3].minor.yy132, NULL, status->scanner_state); yy_destructor(89,&yymsp[-7].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-4].minor); yy_destructor(90,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 5985 "parser.php5.c" break; case 223: #line 1058 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-3].minor.yy132, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(89,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 5995 "parser.php5.c" break; case 224: #line 1063 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-4].minor.yy132, yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(89,&yymsp[-5].minor); yy_destructor(55,&yymsp[-3].minor); yy_destructor(56,&yymsp[-1].minor); } #line 6005 "parser.php5.c" break; case 225: #line 1068 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-7].minor.yy132, yymsp[-5].minor.yy132, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(89,&yymsp[-8].minor); yy_destructor(55,&yymsp[-6].minor); yy_destructor(56,&yymsp[-4].minor); yy_destructor(90,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6018 "parser.php5.c" break; case 226: #line 1073 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-8].minor.yy132, yymsp[-6].minor.yy132, yymsp[-4].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(89,&yymsp[-9].minor); yy_destructor(55,&yymsp[-7].minor); yy_destructor(56,&yymsp[-5].minor); yy_destructor(90,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6031 "parser.php5.c" break; case 227: #line 1078 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-6].minor.yy132, yymsp[-4].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(89,&yymsp[-7].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(90,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6044 "parser.php5.c" break; case 228: #line 1083 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-7].minor.yy132, yymsp[-5].minor.yy132, yymsp[-3].minor.yy132, NULL, status->scanner_state); yy_destructor(89,&yymsp[-8].minor); yy_destructor(55,&yymsp[-6].minor); yy_destructor(56,&yymsp[-4].minor); yy_destructor(90,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6057 "parser.php5.c" break; case 229: #line 1088 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-6].minor.yy132, NULL, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(89,&yymsp[-7].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-4].minor); yy_destructor(90,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6070 "parser.php5.c" break; case 232: #line 1101 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-2].minor.yy132, NULL, NULL, NULL, status->scanner_state); yy_destructor(91,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6080 "parser.php5.c" break; case 233: #line 1106 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_if_statement(yymsp[-3].minor.yy132, yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(91,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6090 "parser.php5.c" break; case 234: #line 1110 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_switch_statement(yymsp[-2].minor.yy132, NULL, status->scanner_state); yy_destructor(92,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6100 "parser.php5.c" break; case 235: #line 1114 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_switch_statement(yymsp[-3].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(92,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6110 "parser.php5.c" break; case 238: #line 1126 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_case_clause(yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(93,&yymsp[-2].minor); yy_destructor(94,&yymsp[0].minor); } #line 6119 "parser.php5.c" break; case 239: #line 1130 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_case_clause(yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(93,&yymsp[-3].minor); yy_destructor(94,&yymsp[-1].minor); } #line 6128 "parser.php5.c" break; case 240: #line 1134 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_case_clause(NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(95,&yymsp[-2].minor); yy_destructor(94,&yymsp[-1].minor); } #line 6137 "parser.php5.c" break; case 241: #line 1138 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_loop_statement(NULL, status->scanner_state); yy_destructor(96,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6147 "parser.php5.c" break; case 242: #line 1142 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_loop_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(96,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6157 "parser.php5.c" break; case 243: #line 1146 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_while_statement(yymsp[-2].minor.yy132, NULL, status->scanner_state); yy_destructor(97,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6167 "parser.php5.c" break; case 244: #line 1150 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_while_statement(yymsp[-3].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(97,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6177 "parser.php5.c" break; case 245: #line 1154 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_do_while_statement(yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(98,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(97,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6189 "parser.php5.c" break; case 246: #line 1158 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_do_while_statement(yymsp[-1].minor.yy132, yymsp[-4].minor.yy132, status->scanner_state); yy_destructor(98,&yymsp[-6].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(97,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6201 "parser.php5.c" break; case 247: #line 1162 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_try_catch_statement(NULL, NULL, status->scanner_state); yy_destructor(99,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6211 "parser.php5.c" break; case 248: #line 1166 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_try_catch_statement(yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(99,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6221 "parser.php5.c" break; case 249: #line 1170 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_try_catch_statement(yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(99,&yymsp[-4].minor); yy_destructor(55,&yymsp[-3].minor); yy_destructor(56,&yymsp[-1].minor); } #line 6231 "parser.php5.c" break; case 252: #line 1182 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_catch_statement(yymsp[-3].minor.yy132, NULL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(100,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6241 "parser.php5.c" break; case 253: #line 1186 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_catch_statement(yymsp[-2].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(100,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6251 "parser.php5.c" break; case 254: #line 1190 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_catch_statement(yymsp[-4].minor.yy132, xx_ret_literal(XX_T_IDENTIFIER, yymsp[-2].minor.yy0, status->scanner_state), NULL, status->scanner_state); yy_destructor(100,&yymsp[-5].minor); yy_destructor(7,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6262 "parser.php5.c" break; case 255: #line 1194 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_catch_statement(yymsp[-5].minor.yy132, xx_ret_literal(XX_T_IDENTIFIER, yymsp[-3].minor.yy0, status->scanner_state), yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(100,&yymsp[-6].minor); yy_destructor(7,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6273 "parser.php5.c" break; case 259: #line 1210 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_for_statement(yymsp[-3].minor.yy132, NULL, yymsp[-5].minor.yy0, 0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(101,&yymsp[-6].minor); yy_destructor(102,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6284 "parser.php5.c" break; case 260: #line 1214 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_for_statement(yymsp[-2].minor.yy132, NULL, yymsp[-4].minor.yy0, 0, NULL, status->scanner_state); yy_destructor(101,&yymsp[-5].minor); yy_destructor(102,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6295 "parser.php5.c" break; case 261: #line 1218 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_for_statement(yymsp[-3].minor.yy132, NULL, yymsp[-6].minor.yy0, 1, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(101,&yymsp[-7].minor); yy_destructor(102,&yymsp[-5].minor); yy_destructor(103,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6307 "parser.php5.c" break; case 262: #line 1222 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_for_statement(yymsp[-3].minor.yy132, yymsp[-7].minor.yy0, yymsp[-5].minor.yy0, 0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(101,&yymsp[-8].minor); yy_destructor(7,&yymsp[-6].minor); yy_destructor(102,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6319 "parser.php5.c" break; case 263: #line 1226 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_for_statement(yymsp[-2].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy0, 0, NULL, status->scanner_state); yy_destructor(101,&yymsp[-7].minor); yy_destructor(7,&yymsp[-5].minor); yy_destructor(102,&yymsp[-3].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 6331 "parser.php5.c" break; case 264: #line 1230 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_for_statement(yymsp[-3].minor.yy132, yymsp[-8].minor.yy0, yymsp[-6].minor.yy0, 1, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(101,&yymsp[-9].minor); yy_destructor(7,&yymsp[-7].minor); yy_destructor(102,&yymsp[-5].minor); yy_destructor(103,&yymsp[-4].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6344 "parser.php5.c" break; case 265: #line 1234 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(104,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6353 "parser.php5.c" break; case 268: #line 1247 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("assign"); yy_destructor(64,&yymsp[0].minor); } #line 6361 "parser.php5.c" break; case 269: #line 1252 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("add-assign"); yy_destructor(105,&yymsp[0].minor); } #line 6369 "parser.php5.c" break; case 270: #line 1257 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("sub-assign"); yy_destructor(106,&yymsp[0].minor); } #line 6377 "parser.php5.c" break; case 271: #line 1262 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("mul-assign"); yy_destructor(107,&yymsp[0].minor); } #line 6385 "parser.php5.c" break; case 272: #line 1267 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("div-assign"); yy_destructor(108,&yymsp[0].minor); } #line 6393 "parser.php5.c" break; case 273: #line 1272 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("concat-assign"); yy_destructor(109,&yymsp[0].minor); } #line 6401 "parser.php5.c" break; case 274: #line 1277 "parser.php5.lemon" { yygotominor.yy132 = parser_get_string("mod-assign"); yy_destructor(110,&yymsp[0].minor); } #line 6409 "parser.php5.c" break; case 275: #line 1282 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("variable", yymsp[-1].minor.yy132, yymsp[-2].minor.yy0, NULL, NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 6416 "parser.php5.c" break; case 276: #line 1287 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("object-property", yymsp[-1].minor.yy132, yymsp[-4].minor.yy0, yymsp[-2].minor.yy0, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-3].minor); } #line 6424 "parser.php5.c" break; case 277: #line 1292 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("variable-dynamic-object-property", yymsp[-1].minor.yy132, yymsp[-6].minor.yy0, yymsp[-3].minor.yy0, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); } #line 6434 "parser.php5.c" break; case 278: #line 1297 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("string-dynamic-object-property", yymsp[-1].minor.yy132, yymsp[-6].minor.yy0, yymsp[-3].minor.yy0, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); } #line 6444 "parser.php5.c" break; case 279: #line 1302 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("object-property-append", yymsp[-1].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy0, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-5].minor); yy_destructor(46,&yymsp[-3].minor); yy_destructor(72,&yymsp[-2].minor); } #line 6454 "parser.php5.c" break; case 280: #line 1307 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("object-property-array-index", yymsp[-1].minor.yy132, yymsp[-5].minor.yy0, yymsp[-3].minor.yy0, yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-4].minor); } #line 6462 "parser.php5.c" break; case 281: #line 1311 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("object-property-array-index-append", yymsp[-1].minor.yy132, yymsp[-7].minor.yy0, yymsp[-5].minor.yy0, yymsp[-4].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-6].minor); yy_destructor(46,&yymsp[-3].minor); yy_destructor(72,&yymsp[-2].minor); } #line 6472 "parser.php5.c" break; case 282: #line 1316 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("static-property", yymsp[-1].minor.yy132, yymsp[-4].minor.yy0, yymsp[-2].minor.yy0, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(112,&yymsp[-3].minor); } #line 6480 "parser.php5.c" break; case 283: #line 1321 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("static-property-append", yymsp[-1].minor.yy132, yymsp[-6].minor.yy0, yymsp[-4].minor.yy0, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(112,&yymsp[-5].minor); yy_destructor(46,&yymsp[-3].minor); yy_destructor(72,&yymsp[-2].minor); } #line 6490 "parser.php5.c" break; case 284: #line 1326 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("static-property-array-index", yymsp[-1].minor.yy132, yymsp[-5].minor.yy0, yymsp[-3].minor.yy0, yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(112,&yymsp[-4].minor); } #line 6498 "parser.php5.c" break; case 285: #line 1331 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("static-property-array-index-append", yymsp[-1].minor.yy132, yymsp[-7].minor.yy0, yymsp[-5].minor.yy0, yymsp[-4].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(112,&yymsp[-6].minor); yy_destructor(46,&yymsp[-3].minor); yy_destructor(72,&yymsp[-2].minor); } #line 6508 "parser.php5.c" break; case 286: #line 1336 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("variable-append", yymsp[-1].minor.yy132, yymsp[-4].minor.yy0, NULL, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(46,&yymsp[-3].minor); yy_destructor(72,&yymsp[-2].minor); } #line 6517 "parser.php5.c" break; case 287: #line 1341 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("array-index", yymsp[-1].minor.yy132, yymsp[-3].minor.yy0, NULL, yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); } #line 6524 "parser.php5.c" break; case 288: #line 1346 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("array-index-append", yymsp[-1].minor.yy132, yymsp[-5].minor.yy0, NULL, yymsp[-4].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(46,&yymsp[-3].minor); yy_destructor(72,&yymsp[-2].minor); } #line 6533 "parser.php5.c" break; case 291: #line 1358 "parser.php5.lemon" { yygotominor.yy132 = yymsp[-1].minor.yy132; yy_destructor(46,&yymsp[-2].minor); yy_destructor(72,&yymsp[0].minor); } #line 6542 "parser.php5.c" break; case 292: #line 1363 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("object-property-incr", NULL, yymsp[-3].minor.yy0, yymsp[-1].minor.yy0, NULL, NULL, status->scanner_state); yy_destructor(47,&yymsp[-2].minor); yy_destructor(113,&yymsp[0].minor); } #line 6551 "parser.php5.c" break; case 293: #line 1368 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("object-property-decr", NULL, yymsp[-3].minor.yy0, yymsp[-1].minor.yy0, NULL, NULL, status->scanner_state); yy_destructor(47,&yymsp[-2].minor); yy_destructor(114,&yymsp[0].minor); } #line 6560 "parser.php5.c" break; case 294: #line 1373 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("incr", NULL, yymsp[-1].minor.yy0, NULL, NULL, NULL, status->scanner_state); yy_destructor(113,&yymsp[0].minor); } #line 6568 "parser.php5.c" break; case 295: #line 1378 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("decr", NULL, yymsp[-1].minor.yy0, NULL, NULL, NULL, status->scanner_state); yy_destructor(114,&yymsp[0].minor); } #line 6576 "parser.php5.c" break; case 296: #line 1383 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("dynamic-variable", yymsp[-1].minor.yy132, yymsp[-3].minor.yy0, NULL, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); } #line 6585 "parser.php5.c" break; case 297: #line 1388 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_let_assignment("dynamic-variable-string", yymsp[-1].minor.yy132, yymsp[-3].minor.yy0, NULL, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); } #line 6594 "parser.php5.c" break; case 299: #line 1396 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_echo_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(115,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6603 "parser.php5.c" break; case 302: #line 1408 "parser.php5.lemon" { yygotominor.yy132 = yymsp[0].minor.yy132;; } #line 6610 "parser.php5.c" break; case 303: #line 1413 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 6618 "parser.php5.c" break; case 304: #line 1418 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_fcall_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 6626 "parser.php5.c" break; case 305: #line 1423 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 6634 "parser.php5.c" break; case 306: #line 1428 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_fetch_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(50,&yymsp[0].minor); } #line 6642 "parser.php5.c" break; case 307: #line 1433 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(116,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6651 "parser.php5.c" break; case 308: #line 1438 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_return_statement(NULL, status->scanner_state); yy_destructor(116,&yymsp[-1].minor); yy_destructor(50,&yymsp[0].minor); } #line 6660 "parser.php5.c" break; case 309: #line 1443 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_require_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(8,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6669 "parser.php5.c" break; case 310: #line 1448 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_unset_statement(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(117,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6678 "parser.php5.c" break; case 311: #line 1453 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_throw_exception(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(118,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6687 "parser.php5.c" break; case 312: #line 1457 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_INTEGER, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(73,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6696 "parser.php5.c" break; case 313: #line 1461 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_UINTEGER, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(74,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6705 "parser.php5.c" break; case 314: #line 1465 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_CHAR, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(77,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6714 "parser.php5.c" break; case 315: #line 1469 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_UCHAR, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(78,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6723 "parser.php5.c" break; case 316: #line 1473 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_LONG, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(75,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6732 "parser.php5.c" break; case 317: #line 1477 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_ULONG, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(76,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6741 "parser.php5.c" break; case 318: #line 1481 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_DOUBLE, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(79,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6750 "parser.php5.c" break; case 319: #line 1485 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_STRING, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(81,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6759 "parser.php5.c" break; case 320: #line 1489 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_BOOL, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(80,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6768 "parser.php5.c" break; case 321: #line 1493 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_VAR, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(83,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6777 "parser.php5.c" break; case 322: #line 1497 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_statement(XX_T_TYPE_ARRAY, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(82,&yymsp[-2].minor); yy_destructor(50,&yymsp[0].minor); } #line 6786 "parser.php5.c" break; case 325: #line 1509 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_variable(yymsp[0].minor.yy0, NULL, status->scanner_state); } #line 6793 "parser.php5.c" break; case 326: #line 1513 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_declare_variable(yymsp[-2].minor.yy0, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(64,&yymsp[-1].minor); } #line 6801 "parser.php5.c" break; case 328: #line 1521 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("reference", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(44,&yymsp[-1].minor); } #line 6809 "parser.php5.c" break; case 329: #line 1525 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("not", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(42,&yymsp[-1].minor); } #line 6817 "parser.php5.c" break; case 330: #line 1530 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("bitwise_not", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(43,&yymsp[-1].minor); } #line 6825 "parser.php5.c" break; case 331: #line 1534 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("minus", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(29,&yymsp[-1].minor); } #line 6833 "parser.php5.c" break; case 332: #line 1538 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("plus", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(119,&yymsp[-1].minor); } #line 6841 "parser.php5.c" break; case 333: #line 1542 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("isset", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(34,&yymsp[-1].minor); } #line 6849 "parser.php5.c" break; case 334: #line 1546 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("require", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(8,&yymsp[-1].minor); } #line 6857 "parser.php5.c" break; case 335: #line 1550 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("clone", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(40,&yymsp[-1].minor); } #line 6865 "parser.php5.c" break; case 336: #line 1554 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("empty", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(36,&yymsp[-1].minor); } #line 6873 "parser.php5.c" break; case 337: #line 1558 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("likely", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(11,&yymsp[-1].minor); } #line 6881 "parser.php5.c" break; case 338: #line 1562 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("unlikely", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(12,&yymsp[-1].minor); } #line 6889 "parser.php5.c" break; case 339: #line 1566 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("equals", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(20,&yymsp[-1].minor); } #line 6897 "parser.php5.c" break; case 340: #line 1570 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("not-equals", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(27,&yymsp[-1].minor); } #line 6905 "parser.php5.c" break; case 341: #line 1574 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("identical", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(21,&yymsp[-1].minor); } #line 6913 "parser.php5.c" break; case 342: #line 1578 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("not-identical", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(26,&yymsp[-1].minor); } #line 6921 "parser.php5.c" break; case 343: #line 1582 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("less", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(22,&yymsp[-1].minor); } #line 6929 "parser.php5.c" break; case 344: #line 1586 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("greater", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(23,&yymsp[-1].minor); } #line 6937 "parser.php5.c" break; case 345: #line 1590 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("less-equal", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(24,&yymsp[-1].minor); } #line 6945 "parser.php5.c" break; case 346: #line 1594 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("greater-equal", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(25,&yymsp[-1].minor); } #line 6953 "parser.php5.c" break; case 347: #line 1598 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("list", yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 6962 "parser.php5.c" break; case 348: #line 1602 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("cast", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-1].minor); } #line 6971 "parser.php5.c" break; case 349: #line 1606 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("type-hint", xx_ret_literal(XX_T_IDENTIFIER, yymsp[-2].minor.yy0, status->scanner_state), yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(22,&yymsp[-3].minor); yy_destructor(23,&yymsp[-1].minor); } #line 6980 "parser.php5.c" break; case 350: #line 1610 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("property-access", yymsp[-2].minor.yy132, xx_ret_literal(XX_T_IDENTIFIER, yymsp[0].minor.yy0, status->scanner_state), NULL, status->scanner_state); yy_destructor(47,&yymsp[-1].minor); } #line 6988 "parser.php5.c" break; case 351: #line 1614 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("property-dynamic-access", yymsp[-4].minor.yy132, xx_ret_literal(XX_T_IDENTIFIER, yymsp[-1].minor.yy0, status->scanner_state), NULL, status->scanner_state); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 6998 "parser.php5.c" break; case 352: #line 1618 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("property-string-access", yymsp[-4].minor.yy132, xx_ret_literal(XX_T_STRING, yymsp[-1].minor.yy0, status->scanner_state), NULL, status->scanner_state); yy_destructor(47,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 7008 "parser.php5.c" break; case 353: #line 1622 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("static-property-access", xx_ret_literal(XX_T_IDENTIFIER, yymsp[-2].minor.yy0, status->scanner_state), xx_ret_literal(XX_T_IDENTIFIER, yymsp[0].minor.yy0, status->scanner_state), NULL, status->scanner_state); yy_destructor(112,&yymsp[-1].minor); } #line 7016 "parser.php5.c" break; case 354: case 444: #line 1626 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("static-constant-access", xx_ret_literal(XX_T_IDENTIFIER, yymsp[-2].minor.yy0, status->scanner_state), xx_ret_literal(XX_T_IDENTIFIER, yymsp[0].minor.yy0, status->scanner_state), NULL, status->scanner_state); yy_destructor(112,&yymsp[-1].minor); } #line 7025 "parser.php5.c" break; case 355: #line 1635 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("array-access", yymsp[-3].minor.yy132, yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(46,&yymsp[-2].minor); yy_destructor(72,&yymsp[0].minor); } #line 7034 "parser.php5.c" break; case 356: #line 1640 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("add", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(28,&yymsp[-1].minor); } #line 7042 "parser.php5.c" break; case 357: #line 1645 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("sub", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(29,&yymsp[-1].minor); } #line 7050 "parser.php5.c" break; case 358: #line 1650 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("mul", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(31,&yymsp[-1].minor); } #line 7058 "parser.php5.c" break; case 359: #line 1655 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("div", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(32,&yymsp[-1].minor); } #line 7066 "parser.php5.c" break; case 360: #line 1660 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("mod", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(33,&yymsp[-1].minor); } #line 7074 "parser.php5.c" break; case 361: #line 1665 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("concat", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(30,&yymsp[-1].minor); } #line 7082 "parser.php5.c" break; case 362: #line 1670 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("and", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(14,&yymsp[-1].minor); } #line 7090 "parser.php5.c" break; case 363: #line 1675 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("or", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(13,&yymsp[-1].minor); } #line 7098 "parser.php5.c" break; case 364: #line 1680 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("bitwise_or", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(16,&yymsp[-1].minor); } #line 7106 "parser.php5.c" break; case 365: #line 1685 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("bitwise_and", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(44,&yymsp[-1].minor); } #line 7114 "parser.php5.c" break; case 366: #line 1690 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("bitwise_xor", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(17,&yymsp[-1].minor); } #line 7122 "parser.php5.c" break; case 367: #line 1695 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("bitwise_shiftleft", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(18,&yymsp[-1].minor); } #line 7130 "parser.php5.c" break; case 368: #line 1700 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("bitwise_shiftright", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(19,&yymsp[-1].minor); } #line 7138 "parser.php5.c" break; case 369: #line 1705 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("instanceof", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(15,&yymsp[-1].minor); } #line 7146 "parser.php5.c" break; case 370: #line 1710 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("irange", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(37,&yymsp[-1].minor); } #line 7154 "parser.php5.c" break; case 371: #line 1715 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("erange", yymsp[-2].minor.yy132, yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(38,&yymsp[-1].minor); } #line 7162 "parser.php5.c" break; case 372: #line 1720 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("fetch", xx_ret_literal(XX_T_IDENTIFIER, yymsp[-2].minor.yy0, status->scanner_state), yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(35,&yymsp[-3].minor); yy_destructor(7,&yymsp[-1].minor); } #line 7171 "parser.php5.c" break; case 374: #line 1730 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("typeof", yymsp[0].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(39,&yymsp[-1].minor); } #line 7179 "parser.php5.c" break; case 376: case 437: case 454: #line 1740 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_INTEGER, yymsp[0].minor.yy0, status->scanner_state); } #line 7188 "parser.php5.c" break; case 377: case 439: case 453: #line 1745 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_STRING, yymsp[0].minor.yy0, status->scanner_state); } #line 7197 "parser.php5.c" break; case 378: #line 1750 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_ISTRING, yymsp[0].minor.yy0, status->scanner_state); } #line 7204 "parser.php5.c" break; case 379: case 438: #line 1755 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_CHAR, yymsp[0].minor.yy0, status->scanner_state); } #line 7212 "parser.php5.c" break; case 380: case 440: #line 1760 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_DOUBLE, yymsp[0].minor.yy0, status->scanner_state); } #line 7220 "parser.php5.c" break; case 381: case 441: #line 1765 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_NULL, NULL, status->scanner_state); yy_destructor(70,&yymsp[0].minor); } #line 7229 "parser.php5.c" break; case 382: case 443: #line 1770 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_TRUE, NULL, status->scanner_state); yy_destructor(124,&yymsp[0].minor); } #line 7238 "parser.php5.c" break; case 383: case 442: #line 1775 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_FALSE, NULL, status->scanner_state); yy_destructor(125,&yymsp[0].minor); } #line 7247 "parser.php5.c" break; case 384: case 445: #line 1780 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_literal(XX_T_CONSTANT, yymsp[0].minor.yy0, status->scanner_state); } #line 7255 "parser.php5.c" break; case 385: case 446: #line 1785 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("empty-array", NULL, NULL, NULL, status->scanner_state); yy_destructor(46,&yymsp[-1].minor); yy_destructor(72,&yymsp[0].minor); } #line 7265 "parser.php5.c" break; case 386: case 447: #line 1790 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("array", yymsp[-1].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(46,&yymsp[-2].minor); yy_destructor(72,&yymsp[0].minor); } #line 7275 "parser.php5.c" break; case 387: #line 1795 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_static_instance(NULL, status->scanner_state); yy_destructor(41,&yymsp[-1].minor); yy_destructor(4,&yymsp[0].minor); } #line 7284 "parser.php5.c" break; case 388: #line 1800 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_static_instance(NULL, status->scanner_state); yy_destructor(41,&yymsp[-3].minor); yy_destructor(4,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7295 "parser.php5.c" break; case 389: #line 1805 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_static_instance(yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(41,&yymsp[-4].minor); yy_destructor(4,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7306 "parser.php5.c" break; case 390: #line 1810 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance(0, yymsp[0].minor.yy0, NULL, status->scanner_state); yy_destructor(41,&yymsp[-1].minor); } #line 7314 "parser.php5.c" break; case 391: #line 1815 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance(0, yymsp[-2].minor.yy0, NULL, status->scanner_state); yy_destructor(41,&yymsp[-3].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7324 "parser.php5.c" break; case 392: #line 1820 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance(0, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(41,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7334 "parser.php5.c" break; case 393: #line 1825 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance(1, yymsp[-1].minor.yy0, NULL, status->scanner_state); yy_destructor(41,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 7344 "parser.php5.c" break; case 394: #line 1830 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance(1, yymsp[-3].minor.yy0, NULL, status->scanner_state); yy_destructor(41,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7356 "parser.php5.c" break; case 395: #line 1835 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance(1, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(41,&yymsp[-6].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7368 "parser.php5.c" break; case 396: #line 1840 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_new_instance_type(yymsp[-3].minor.yy132, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(41,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7378 "parser.php5.c" break; case 397: #line 1845 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_fcall(1, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7387 "parser.php5.c" break; case 398: #line 1850 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_fcall(1, yymsp[-2].minor.yy0, NULL, status->scanner_state); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7396 "parser.php5.c" break; case 399: #line 1855 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_fcall(2, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7407 "parser.php5.c" break; case 400: #line 1860 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_fcall(2, yymsp[-3].minor.yy0, NULL, status->scanner_state); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7418 "parser.php5.c" break; case 401: #line 1865 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(0, yymsp[-4].minor.yy0->token, 0, yymsp[-2].minor.yy0, NULL, status->scanner_state); efree(yymsp[-4].minor.yy0->token); efree(yymsp[-4].minor.yy0); yy_destructor(112,&yymsp[-3].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7430 "parser.php5.c" break; case 402: #line 1872 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(0, yymsp[-5].minor.yy0->token, 0, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); efree(yymsp[-5].minor.yy0->token); efree(yymsp[-5].minor.yy0); yy_destructor(112,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7442 "parser.php5.c" break; case 403: #line 1879 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(0, "static", 0, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(4,&yymsp[-5].minor); yy_destructor(112,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7453 "parser.php5.c" break; case 404: #line 1884 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(0, "static", 0, yymsp[-2].minor.yy0, NULL, status->scanner_state); yy_destructor(4,&yymsp[-4].minor); yy_destructor(112,&yymsp[-3].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7464 "parser.php5.c" break; case 405: #line 1889 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(1, yymsp[-5].minor.yy0->token, 0, yymsp[-2].minor.yy0, NULL, status->scanner_state); efree(yymsp[-5].minor.yy0->token); efree(yymsp[-5].minor.yy0); yy_destructor(55,&yymsp[-6].minor); yy_destructor(56,&yymsp[-4].minor); yy_destructor(112,&yymsp[-3].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7478 "parser.php5.c" break; case 406: #line 1896 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(1, yymsp[-6].minor.yy0->token, 0, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); efree(yymsp[-6].minor.yy0->token); efree(yymsp[-6].minor.yy0); yy_destructor(55,&yymsp[-7].minor); yy_destructor(56,&yymsp[-5].minor); yy_destructor(112,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7492 "parser.php5.c" break; case 407: #line 1903 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(1, yymsp[-7].minor.yy0->token, 1, yymsp[-3].minor.yy0, NULL, status->scanner_state); efree(yymsp[-7].minor.yy0->token); efree(yymsp[-7].minor.yy0); yy_destructor(55,&yymsp[-8].minor); yy_destructor(56,&yymsp[-6].minor); yy_destructor(112,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7508 "parser.php5.c" break; case 408: #line 1910 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(1, yymsp[-8].minor.yy0->token, 1, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); efree(yymsp[-8].minor.yy0->token); efree(yymsp[-8].minor.yy0); yy_destructor(55,&yymsp[-9].minor); yy_destructor(56,&yymsp[-7].minor); yy_destructor(112,&yymsp[-6].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7524 "parser.php5.c" break; case 409: #line 1917 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(0, yymsp[-6].minor.yy0->token, 1, yymsp[-3].minor.yy0, NULL, status->scanner_state); efree(yymsp[-6].minor.yy0->token); efree(yymsp[-6].minor.yy0); yy_destructor(112,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7538 "parser.php5.c" break; case 410: #line 1924 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_scall(0, yymsp[-7].minor.yy0->token, 1, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); efree(yymsp[-7].minor.yy0->token); efree(yymsp[-7].minor.yy0); yy_destructor(112,&yymsp[-6].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7552 "parser.php5.c" break; case 411: #line 1931 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall(1, yymsp[-5].minor.yy132, yymsp[-3].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-4].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7562 "parser.php5.c" break; case 412: #line 1936 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall(1, yymsp[-4].minor.yy132, yymsp[-2].minor.yy0, NULL, status->scanner_state); yy_destructor(47,&yymsp[-3].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7572 "parser.php5.c" break; case 413: #line 1941 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall(2, yymsp[-7].minor.yy132, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-6].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7584 "parser.php5.c" break; case 414: #line 1946 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall(2, yymsp[-6].minor.yy132, yymsp[-3].minor.yy0, NULL, status->scanner_state); yy_destructor(47,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7596 "parser.php5.c" break; case 415: #line 1951 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall(3, yymsp[-7].minor.yy132, yymsp[-4].minor.yy0, yymsp[-1].minor.yy132, status->scanner_state); yy_destructor(47,&yymsp[-6].minor); yy_destructor(55,&yymsp[-5].minor); yy_destructor(56,&yymsp[-3].minor); yy_destructor(54,&yymsp[-2].minor); yy_destructor(45,&yymsp[0].minor); } #line 7608 "parser.php5.c" break; case 416: #line 1956 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_mcall(3, yymsp[-6].minor.yy132, yymsp[-3].minor.yy0, NULL, status->scanner_state); yy_destructor(47,&yymsp[-5].minor); yy_destructor(55,&yymsp[-4].minor); yy_destructor(56,&yymsp[-2].minor); yy_destructor(54,&yymsp[-1].minor); yy_destructor(45,&yymsp[0].minor); } #line 7620 "parser.php5.c" break; case 420: #line 1976 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("ternary", yymsp[-4].minor.yy132, yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(10,&yymsp[-3].minor); yy_destructor(94,&yymsp[-1].minor); } #line 7629 "parser.php5.c" break; case 421: #line 1981 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("short-ternary", yymsp[-3].minor.yy132, NULL, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(10,&yymsp[-2].minor); yy_destructor(94,&yymsp[-1].minor); } #line 7638 "parser.php5.c" break; case 424: #line 1994 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_call_parameter(NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 7645 "parser.php5.c" break; case 425: #line 1999 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_call_parameter(yymsp[-2].minor.yy0, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(94,&yymsp[-1].minor); } #line 7653 "parser.php5.c" break; case 426: #line 2004 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("closure", NULL, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-4].minor); yy_destructor(54,&yymsp[-3].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 7665 "parser.php5.c" break; case 427: #line 2009 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("closure", NULL, yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 7677 "parser.php5.c" break; case 428: #line 2014 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("closure", yymsp[-3].minor.yy132, NULL, NULL, status->scanner_state); yy_destructor(53,&yymsp[-5].minor); yy_destructor(54,&yymsp[-4].minor); yy_destructor(45,&yymsp[-2].minor); yy_destructor(55,&yymsp[-1].minor); yy_destructor(56,&yymsp[0].minor); } #line 7689 "parser.php5.c" break; case 429: #line 2019 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("closure", yymsp[-4].minor.yy132, yymsp[-1].minor.yy132, NULL, status->scanner_state); yy_destructor(53,&yymsp[-6].minor); yy_destructor(54,&yymsp[-5].minor); yy_destructor(45,&yymsp[-3].minor); yy_destructor(55,&yymsp[-2].minor); yy_destructor(56,&yymsp[0].minor); } #line 7701 "parser.php5.c" break; case 430: #line 2024 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_expr("closure-arrow", xx_ret_literal(XX_T_IDENTIFIER, yymsp[-2].minor.yy0, status->scanner_state), yymsp[0].minor.yy132, NULL, status->scanner_state); yy_destructor(9,&yymsp[-1].minor); } #line 7709 "parser.php5.c" break; case 433: case 450: #line 2036 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_array_item(yymsp[-2].minor.yy132, yymsp[0].minor.yy132, status->scanner_state); yy_destructor(94,&yymsp[-1].minor); } #line 7718 "parser.php5.c" break; case 434: case 451: #line 2040 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_array_item(NULL, yymsp[0].minor.yy132, status->scanner_state); } #line 7726 "parser.php5.c" break; case 457: #line 2133 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_comment(yymsp[0].minor.yy0, status->scanner_state); } #line 7733 "parser.php5.c" break; case 458: #line 2137 "parser.php5.lemon" { yygotominor.yy132 = xx_ret_cblock(yymsp[0].minor.yy0, status->scanner_state); } #line 7740 "parser.php5.c" break; }; yygoto = yyRuleInfo[yyruleno].lhs; yysize = yyRuleInfo[yyruleno].nrhs; yypParser->yyidx -= yysize; yyact = yy_find_reduce_action(yypParser,yygoto); if( yyact < YYNSTATE ){ yy_shift(yypParser,yyact,yygoto,&yygotominor); }else if( yyact == YYNSTATE + YYNRULE + 1 ){ yy_accept(yypParser); } } /* ** The following code executes when the parse fails */ static void yy_parse_failed( yyParser *yypParser /* The parser */ ){ xx_ARG_FETCH; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); } #endif while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser fails */ xx_ARG_STORE; /* Suppress warning about unused %extra_argument variable */ } /* ** The following code executes when a syntax error first occurs. */ static void yy_syntax_error( yyParser *yypParser, /* The parser */ int yymajor, /* The major type of the error token */ YYMINORTYPE yyminor /* The minor type of the error token */ ){ xx_ARG_FETCH; #define TOKEN (yyminor.yy0) #line 62 "parser.php5.lemon" zval *syntax_error = parser_array_init(status->scanner_state); parser_add_str(syntax_error, "type", "error"); if (status->scanner_state->start_length) { parser_add_str(syntax_error, "message", "Syntax error"); } else { parser_add_str(syntax_error, "message", "Unexpected EOF"); } parser_add_str(syntax_error, "file", status->scanner_state->active_file); parser_add_int(syntax_error, "line", status->scanner_state->active_line); parser_add_int(syntax_error, "char", status->scanner_state->active_char); status->status = XX_PARSING_FAILED; status->ret = syntax_error; #line 7803 "parser.php5.c" xx_ARG_STORE; /* Suppress warning about unused %extra_argument variable */ } /* ** The following is executed when the parser accepts */ static void yy_accept( yyParser *yypParser /* The parser */ ){ xx_ARG_FETCH; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); } #endif while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser accepts */ xx_ARG_STORE; /* Suppress warning about unused %extra_argument variable */ } /* The main parser program. ** The first argument is a pointer to a structure obtained from ** "xx_Alloc" which describes the current state of the parser. ** The second argument is the major token number. The third is ** the minor token. The fourth optional argument is whatever the ** user wants (and specified in the grammar) and is available for ** use by the action routines. ** ** Inputs: ** <ul> ** <li> A pointer to the parser (an opaque structure.) ** <li> The major token number. ** <li> The minor token number. ** <li> An option argument of a grammar-specified type. ** </ul> ** ** Outputs: ** None. */ void xx_( void *yyp, /* The parser */ int yymajor, /* The major token code number */ xx_TOKENTYPE yyminor /* The value for the token */ xx_ARG_PDECL /* Optional %extra_argument parameter */ ){ YYMINORTYPE yyminorunion; int yyact; /* The parser action. */ int yyendofinput; /* True if we are at the end of input */ int yyerrorhit = 0; /* True if yymajor has invoked an error */ yyParser *yypParser; /* The parser */ /* (re)initialize the parser, if necessary */ yypParser = (yyParser*)yyp; if( yypParser->yyidx<0 ){ if( yymajor==0 ) return; yypParser->yyidx = 0; yypParser->yyerrcnt = -1; yypParser->yystack[0].stateno = 0; yypParser->yystack[0].major = 0; } yyminorunion.yy0 = yyminor; yyendofinput = (yymajor==0); xx_ARG_STORE; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); } #endif do{ yyact = yy_find_shift_action(yypParser,yymajor); if( yyact<YYNSTATE ){ yy_shift(yypParser,yyact,yymajor,&yyminorunion); yypParser->yyerrcnt--; if( yyendofinput && yypParser->yyidx>=0 ){ yymajor = 0; }else{ yymajor = YYNOCODE; } }else if( yyact < YYNSTATE + YYNRULE ){ yy_reduce(yypParser,yyact-YYNSTATE); }else if( yyact == YY_ERROR_ACTION ){ int yymx; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); } #endif #ifdef YYERRORSYMBOL /* A syntax error has occurred. ** The response to an error depends upon whether or not the ** grammar defines an error token "ERROR". ** ** This is what we do if the grammar does define ERROR: ** ** * Call the %syntax_error function. ** ** * Begin popping the stack until we enter a state where ** it is legal to shift the error symbol, then shift ** the error symbol. ** ** * Set the error count to three. ** ** * Begin accepting and shifting new tokens. No new error ** processing will occur until three tokens have been ** shifted successfully. ** */ if( yypParser->yyerrcnt<0 ){ yy_syntax_error(yypParser,yymajor,yyminorunion); } yymx = yypParser->yystack[yypParser->yyidx].major; if( yymx==YYERRORSYMBOL || yyerrorhit ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sDiscard input token %s\n", yyTracePrompt,yyTokenName[yymajor]); } #endif yy_destructor(yymajor,&yyminorunion); yymajor = YYNOCODE; }else{ while( yypParser->yyidx >= 0 && yymx != YYERRORSYMBOL && (yyact = yy_find_shift_action(yypParser,YYERRORSYMBOL)) >= YYNSTATE ){ yy_pop_parser_stack(yypParser); } if( yypParser->yyidx < 0 || yymajor==0 ){ yy_destructor(yymajor,&yyminorunion); yy_parse_failed(yypParser); yymajor = YYNOCODE; }else if( yymx!=YYERRORSYMBOL ){ YYMINORTYPE u2; u2.YYERRSYMDT = 0; yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); } } yypParser->yyerrcnt = 3; yyerrorhit = 1; #else /* YYERRORSYMBOL is not defined */ /* This is what we do if the grammar does not define ERROR: ** ** * Report an error message, and throw away the input token. ** ** * If the input token is $, then fail the parse. ** ** As before, subsequent error messages are suppressed until ** three input tokens have been successfully shifted. */ if( yypParser->yyerrcnt<=0 ){ yy_syntax_error(yypParser,yymajor,yyminorunion); } yypParser->yyerrcnt = 3; yy_destructor(yymajor,&yyminorunion); if( yyendofinput ){ yy_parse_failed(yypParser); } yymajor = YYNOCODE; #endif }else{ yy_accept(yypParser); yymajor = YYNOCODE; } }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); return; }
60d864c2452e8f406927bc787cf42b4199858e0e
943dd54918355e8028fdd759bae6d9dd837e11e0
/third-party/cmsis-atmel/CMSIS-Atmel/CMSIS/Device/ATMEL/same70/include/pio/same70n21.h
a0b37570332f551343f9d3ae32afb61360b1e65a
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
fieldkit/firmware
06e920ad01c2f48142413d3a3447188bc9753004
45c51ce8dc51df886875e97de17980c839882adf
refs/heads/main
2023-08-23T22:29:02.022772
2023-07-24T22:18:01
2023-07-24T22:18:01
183,808,180
11
1
BSD-3-Clause
2023-04-04T20:42:38
2019-04-27T18:27:51
C++
UTF-8
C
false
false
36,478
h
/* ---------------------------------------------------------------------------- */ /* Atmel Microcontroller Software Support */ /* SAM Software Package License */ /* ---------------------------------------------------------------------------- */ /* Copyright (c) 2015, Atmel Corporation */ /* */ /* All rights reserved. */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following condition is met: */ /* */ /* - Redistributions of source code must retain the above copyright notice, */ /* this list of conditions and the disclaimer below. */ /* */ /* Atmel's name may not be used to endorse or promote products derived from */ /* this software without specific prior written permission. */ /* */ /* DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR */ /* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE */ /* DISCLAIMED. IN NO EVENT SHALL ATMEL 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. */ /* ---------------------------------------------------------------------------- */ #ifndef _SAME70N21_PIO_ #define _SAME70N21_PIO_ #define PIO_PA0 (1u << 0) /**< \brief Pin Controlled by PA0 */ #define PIO_PA1 (1u << 1) /**< \brief Pin Controlled by PA1 */ #define PIO_PA2 (1u << 2) /**< \brief Pin Controlled by PA2 */ #define PIO_PA3 (1u << 3) /**< \brief Pin Controlled by PA3 */ #define PIO_PA4 (1u << 4) /**< \brief Pin Controlled by PA4 */ #define PIO_PA5 (1u << 5) /**< \brief Pin Controlled by PA5 */ #define PIO_PA7 (1u << 7) /**< \brief Pin Controlled by PA7 */ #define PIO_PA8 (1u << 8) /**< \brief Pin Controlled by PA8 */ #define PIO_PA9 (1u << 9) /**< \brief Pin Controlled by PA9 */ #define PIO_PA10 (1u << 10) /**< \brief Pin Controlled by PA10 */ #define PIO_PA11 (1u << 11) /**< \brief Pin Controlled by PA11 */ #define PIO_PA12 (1u << 12) /**< \brief Pin Controlled by PA12 */ #define PIO_PA13 (1u << 13) /**< \brief Pin Controlled by PA13 */ #define PIO_PA14 (1u << 14) /**< \brief Pin Controlled by PA14 */ #define PIO_PA15 (1u << 15) /**< \brief Pin Controlled by PA15 */ #define PIO_PA16 (1u << 16) /**< \brief Pin Controlled by PA16 */ #define PIO_PA17 (1u << 17) /**< \brief Pin Controlled by PA17 */ #define PIO_PA18 (1u << 18) /**< \brief Pin Controlled by PA18 */ #define PIO_PA19 (1u << 19) /**< \brief Pin Controlled by PA19 */ #define PIO_PA20 (1u << 20) /**< \brief Pin Controlled by PA20 */ #define PIO_PA21 (1u << 21) /**< \brief Pin Controlled by PA21 */ #define PIO_PA22 (1u << 22) /**< \brief Pin Controlled by PA22 */ #define PIO_PA23 (1u << 23) /**< \brief Pin Controlled by PA23 */ #define PIO_PA24 (1u << 24) /**< \brief Pin Controlled by PA24 */ #define PIO_PA25 (1u << 25) /**< \brief Pin Controlled by PA25 */ #define PIO_PA26 (1u << 26) /**< \brief Pin Controlled by PA26 */ #define PIO_PA27 (1u << 27) /**< \brief Pin Controlled by PA27 */ #define PIO_PA28 (1u << 28) /**< \brief Pin Controlled by PA28 */ #define PIO_PA30 (1u << 30) /**< \brief Pin Controlled by PA30 */ #define PIO_PA31 (1u << 31) /**< \brief Pin Controlled by PA31 */ #define PIO_PB0 (1u << 0) /**< \brief Pin Controlled by PB0 */ #define PIO_PB1 (1u << 1) /**< \brief Pin Controlled by PB1 */ #define PIO_PB2 (1u << 2) /**< \brief Pin Controlled by PB2 */ #define PIO_PB3 (1u << 3) /**< \brief Pin Controlled by PB3 */ #define PIO_PB4 (1u << 4) /**< \brief Pin Controlled by PB4 */ #define PIO_PB5 (1u << 5) /**< \brief Pin Controlled by PB5 */ #define PIO_PB6 (1u << 6) /**< \brief Pin Controlled by PB6 */ #define PIO_PB7 (1u << 7) /**< \brief Pin Controlled by PB7 */ #define PIO_PB8 (1u << 8) /**< \brief Pin Controlled by PB8 */ #define PIO_PB9 (1u << 9) /**< \brief Pin Controlled by PB9 */ #define PIO_PB12 (1u << 12) /**< \brief Pin Controlled by PB12 */ #define PIO_PB13 (1u << 13) /**< \brief Pin Controlled by PB13 */ #define PIO_PD0 (1u << 0) /**< \brief Pin Controlled by PD0 */ #define PIO_PD1 (1u << 1) /**< \brief Pin Controlled by PD1 */ #define PIO_PD2 (1u << 2) /**< \brief Pin Controlled by PD2 */ #define PIO_PD3 (1u << 3) /**< \brief Pin Controlled by PD3 */ #define PIO_PD4 (1u << 4) /**< \brief Pin Controlled by PD4 */ #define PIO_PD5 (1u << 5) /**< \brief Pin Controlled by PD5 */ #define PIO_PD6 (1u << 6) /**< \brief Pin Controlled by PD6 */ #define PIO_PD7 (1u << 7) /**< \brief Pin Controlled by PD7 */ #define PIO_PD8 (1u << 8) /**< \brief Pin Controlled by PD8 */ #define PIO_PD9 (1u << 9) /**< \brief Pin Controlled by PD9 */ #define PIO_PD10 (1u << 10) /**< \brief Pin Controlled by PD10 */ #define PIO_PD11 (1u << 11) /**< \brief Pin Controlled by PD11 */ #define PIO_PD12 (1u << 12) /**< \brief Pin Controlled by PD12 */ #define PIO_PD13 (1u << 13) /**< \brief Pin Controlled by PD13 */ #define PIO_PD14 (1u << 14) /**< \brief Pin Controlled by PD14 */ #define PIO_PD15 (1u << 15) /**< \brief Pin Controlled by PD15 */ #define PIO_PD16 (1u << 16) /**< \brief Pin Controlled by PD16 */ #define PIO_PD17 (1u << 17) /**< \brief Pin Controlled by PD17 */ #define PIO_PD18 (1u << 18) /**< \brief Pin Controlled by PD18 */ #define PIO_PD19 (1u << 19) /**< \brief Pin Controlled by PD19 */ #define PIO_PD20 (1u << 20) /**< \brief Pin Controlled by PD20 */ #define PIO_PD21 (1u << 21) /**< \brief Pin Controlled by PD21 */ #define PIO_PD22 (1u << 22) /**< \brief Pin Controlled by PD22 */ #define PIO_PD24 (1u << 24) /**< \brief Pin Controlled by PD24 */ #define PIO_PD25 (1u << 25) /**< \brief Pin Controlled by PD25 */ #define PIO_PD26 (1u << 26) /**< \brief Pin Controlled by PD26 */ #define PIO_PD27 (1u << 27) /**< \brief Pin Controlled by PD27 */ #define PIO_PD28 (1u << 28) /**< \brief Pin Controlled by PD28 */ #define PIO_PD30 (1u << 30) /**< \brief Pin Controlled by PD30 */ #define PIO_PD31 (1u << 31) /**< \brief Pin Controlled by PD31 */ /* ========== Pio definition for AFEC0 peripheral ========== */ #define PIO_PD30X1_AFE0_AD0 (1u << 30) /**< \brief Afec0 signal: AFE0_AD0 */ #define PIO_PA21X1_AFE0_AD1 (1u << 21) /**< \brief Afec0 signal: AFE0_AD1/PIODCEN2 */ #define PIO_PA21X1_PIODCEN2 (1u << 21) /**< \brief Afec0 signal: AFE0_AD1/PIODCEN2 */ #define PIO_PB0X1_AFE0_AD10 (1u << 0) /**< \brief Afec0 signal: AFE0_AD10/RTCOUT0 */ #define PIO_PB0X1_RTCOUT0 (1u << 0) /**< \brief Afec0 signal: AFE0_AD10/RTCOUT0 */ #define PIO_PB3X1_AFE0_AD2 (1u << 3) /**< \brief Afec0 signal: AFE0_AD2/WKUP12 */ #define PIO_PB3X1_WKUP12 (1u << 3) /**< \brief Afec0 signal: AFE0_AD2/WKUP12 */ #define PIO_PE5X1_AFE0_AD3 (1u << 5) /**< \brief Afec0 signal: AFE0_AD3 */ #define PIO_PE4X1_AFE0_AD4 (1u << 4) /**< \brief Afec0 signal: AFE0_AD4 */ #define PIO_PB2X1_AFE0_AD5 (1u << 2) /**< \brief Afec0 signal: AFE0_AD5 */ #define PIO_PA17X1_AFE0_AD6 (1u << 17) /**< \brief Afec0 signal: AFE0_AD6 */ #define PIO_PA18X1_AFE0_AD7 (1u << 18) /**< \brief Afec0 signal: AFE0_AD7 */ #define PIO_PA19X1_AFE0_AD8 (1u << 19) /**< \brief Afec0 signal: AFE0_AD8/WKUP9 */ #define PIO_PA19X1_WKUP9 (1u << 19) /**< \brief Afec0 signal: AFE0_AD8/WKUP9 */ #define PIO_PA20X1_AFE0_AD9 (1u << 20) /**< \brief Afec0 signal: AFE0_AD9/WKUP10 */ #define PIO_PA20X1_WKUP10 (1u << 20) /**< \brief Afec0 signal: AFE0_AD9/WKUP10 */ #define PIO_PA8B_AFE0_ADTRG (1u << 8) /**< \brief Afec0 signal: AFE0_ADTRG */ /* ========== Pio definition for AFEC1 peripheral ========== */ #define PIO_PB1X1_AFE1_AD0 (1u << 1) /**< \brief Afec1 signal: AFE1_AD0/RTCOUT1 */ #define PIO_PB1X1_RTCOUT1 (1u << 1) /**< \brief Afec1 signal: AFE1_AD0/RTCOUT1 */ #define PIO_PC13X1_AFE1_AD1 (1u << 13) /**< \brief Afec1 signal: AFE1_AD1 */ #define PIO_PE3X1_AFE1_AD10 (1u << 3) /**< \brief Afec1 signal: AFE1_AD10 */ #define PIO_PE0X1_AFE1_AD11 (1u << 0) /**< \brief Afec1 signal: AFE1_AD11 */ #define PIO_PC15X1_AFE1_AD2 (1u << 15) /**< \brief Afec1 signal: AFE1_AD2 */ #define PIO_PC12X1_AFE1_AD3 (1u << 12) /**< \brief Afec1 signal: AFE1_AD3 */ #define PIO_PC29X1_AFE1_AD4 (1u << 29) /**< \brief Afec1 signal: AFE1_AD4 */ #define PIO_PC30X1_AFE1_AD5 (1u << 30) /**< \brief Afec1 signal: AFE1_AD5 */ #define PIO_PC31X1_AFE1_AD6 (1u << 31) /**< \brief Afec1 signal: AFE1_AD6 */ #define PIO_PC26X1_AFE1_AD7 (1u << 26) /**< \brief Afec1 signal: AFE1_AD7 */ #define PIO_PC27X1_AFE1_AD8 (1u << 27) /**< \brief Afec1 signal: AFE1_AD8 */ #define PIO_PC0X1_AFE1_AD9 (1u << 0) /**< \brief Afec1 signal: AFE1_AD9 */ #define PIO_PD9C_AFE1_ADTRG (1u << 9) /**< \brief Afec1 signal: AFE1_ADTRG */ /* ========== Pio definition for ARM peripheral ========== */ #define PIO_PB7X1_SWCLK (1u << 7) /**< \brief Arm signal: SWCLK/TCK */ #define PIO_PB7X1_TCK (1u << 7) /**< \brief Arm signal: SWCLK/TCK */ #define PIO_PB6X1_SWDIO (1u << 6) /**< \brief Arm signal: SWDIO/TMS */ #define PIO_PB6X1_TMS (1u << 6) /**< \brief Arm signal: SWDIO/TMS */ #define PIO_PB4X1_TDI (1u << 4) /**< \brief Arm signal: TDI */ #define PIO_PB5X1_TDO (1u << 5) /**< \brief Arm signal: TDO/TRACESWO/WKUP13 */ #define PIO_PB5X1_TRACESWO (1u << 5) /**< \brief Arm signal: TDO/TRACESWO/WKUP13 */ #define PIO_PB5X1_WKUP13 (1u << 5) /**< \brief Arm signal: TDO/TRACESWO/WKUP13 */ /* ========== Pio definition for DACC peripheral ========== */ #define PIO_PB13X1_DAC0 (1u << 13) /**< \brief Dacc signal: DAC0 */ #define PIO_PD0X1_DAC1 (1u << 0) /**< \brief Dacc signal: DAC1 */ #define PIO_PA2C_DATRG (1u << 2) /**< \brief Dacc signal: DATRG */ /* ========== Pio definition for GMAC peripheral ========== */ #define PIO_PD13A_GCOL (1u << 13) /**< \brief Gmac signal: GCOL */ #define PIO_PD10A_GCRS (1u << 10) /**< \brief Gmac signal: GCRS */ #define PIO_PD8A_GMDC (1u << 8) /**< \brief Gmac signal: GMDC */ #define PIO_PD9A_GMDIO (1u << 9) /**< \brief Gmac signal: GMDIO */ #define PIO_PD5A_GRX0 (1u << 5) /**< \brief Gmac signal: GRX0 */ #define PIO_PD6A_GRX1 (1u << 6) /**< \brief Gmac signal: GRX1 */ #define PIO_PD11A_GRX2 (1u << 11) /**< \brief Gmac signal: GRX2 */ #define PIO_PD12A_GRX3 (1u << 12) /**< \brief Gmac signal: GRX3 */ #define PIO_PD14A_GRXCK (1u << 14) /**< \brief Gmac signal: GRXCK */ #define PIO_PD4A_GRXDV (1u << 4) /**< \brief Gmac signal: GRXDV */ #define PIO_PD7A_GRXER (1u << 7) /**< \brief Gmac signal: GRXER */ #define PIO_PB1B_GTSUCOMP (1u << 1) /**< \brief Gmac signal: GTSUCOMP */ #define PIO_PB12B_GTSUCOMP (1u << 12) /**< \brief Gmac signal: GTSUCOMP */ #define PIO_PD11C_GTSUCOMP (1u << 11) /**< \brief Gmac signal: GTSUCOMP */ #define PIO_PD20C_GTSUCOMP (1u << 20) /**< \brief Gmac signal: GTSUCOMP */ #define PIO_PD2A_GTX0 (1u << 2) /**< \brief Gmac signal: GTX0 */ #define PIO_PD3A_GTX1 (1u << 3) /**< \brief Gmac signal: GTX1 */ #define PIO_PD15A_GTX2 (1u << 15) /**< \brief Gmac signal: GTX2 */ #define PIO_PD16A_GTX3 (1u << 16) /**< \brief Gmac signal: GTX3 */ #define PIO_PD0A_GTXCK (1u << 0) /**< \brief Gmac signal: GTXCK */ #define PIO_PD1A_GTXEN (1u << 1) /**< \brief Gmac signal: GTXEN */ #define PIO_PD17A_GTXER (1u << 17) /**< \brief Gmac signal: GTXER */ /* ========== Pio definition for HSMCI peripheral ========== */ #define PIO_PA28C_MCCDA (1u << 28) /**< \brief Hsmci signal: MCCDA */ #define PIO_PA25D_MCCK (1u << 25) /**< \brief Hsmci signal: MCCK */ #define PIO_PA30C_MCDA0 (1u << 30) /**< \brief Hsmci signal: MCDA0 */ #define PIO_PA31C_MCDA1 (1u << 31) /**< \brief Hsmci signal: MCDA1 */ #define PIO_PA26C_MCDA2 (1u << 26) /**< \brief Hsmci signal: MCDA2 */ #define PIO_PA27C_MCDA3 (1u << 27) /**< \brief Hsmci signal: MCDA3 */ /* ========== Pio definition for ISI peripheral ========== */ #define PIO_PD22D_ISI_D0 (1u << 22) /**< \brief Isi signal: ISI_D0 */ #define PIO_PD21D_ISI_D1 (1u << 21) /**< \brief Isi signal: ISI_D1 */ #define PIO_PD30D_ISI_D10 (1u << 30) /**< \brief Isi signal: ISI_D10 */ #define PIO_PD31D_ISI_D11 (1u << 31) /**< \brief Isi signal: ISI_D11 */ #define PIO_PB3D_ISI_D2 (1u << 3) /**< \brief Isi signal: ISI_D2 */ #define PIO_PA9B_ISI_D3 (1u << 9) /**< \brief Isi signal: ISI_D3 */ #define PIO_PA5B_ISI_D4 (1u << 5) /**< \brief Isi signal: ISI_D4 */ #define PIO_PD11D_ISI_D5 (1u << 11) /**< \brief Isi signal: ISI_D5 */ #define PIO_PD12D_ISI_D6 (1u << 12) /**< \brief Isi signal: ISI_D6 */ #define PIO_PA27D_ISI_D7 (1u << 27) /**< \brief Isi signal: ISI_D7 */ #define PIO_PD27D_ISI_D8 (1u << 27) /**< \brief Isi signal: ISI_D8 */ #define PIO_PD28D_ISI_D9 (1u << 28) /**< \brief Isi signal: ISI_D9 */ #define PIO_PD24D_ISI_HSYNC (1u << 24) /**< \brief Isi signal: ISI_HSYNC */ #define PIO_PA24D_ISI_PCK (1u << 24) /**< \brief Isi signal: ISI_PCK */ #define PIO_PD25D_ISI_VSYNC (1u << 25) /**< \brief Isi signal: ISI_VSYNC */ /* ========== Pio definition for MCAN0 peripheral ========== */ #define PIO_PB3A_CANRX0 (1u << 3) /**< \brief Mcan0 signal: CANRX0 */ #define PIO_PB2A_CANTX0 (1u << 2) /**< \brief Mcan0 signal: CANTX0 */ /* ========== Pio definition for MCAN1 peripheral ========== */ #define PIO_PC12C_CANRX1 (1u << 12) /**< \brief Mcan1 signal: CANRX1 */ #define PIO_PD28B_CANRX1 (1u << 28) /**< \brief Mcan1 signal: CANRX1 */ #define PIO_PC14C_CANTX1 (1u << 14) /**< \brief Mcan1 signal: CANTX1 */ #define PIO_PD12B_CANTX1 (1u << 12) /**< \brief Mcan1 signal: CANTX1 */ /* ========== Pio definition for PIOA peripheral ========== */ #define PIO_PA21X1_AFE0_AD1 (1u << 21) /**< \brief Pioa signal: AFE0_AD1/PIODCEN2 */ #define PIO_PA21X1_PIODCEN2 (1u << 21) /**< \brief Pioa signal: AFE0_AD1/PIODCEN2 */ #define PIO_PA3X1_PIODC0 (1u << 3) /**< \brief Pioa signal: PIODC0 */ #define PIO_PA10X1_PIODC4 (1u << 10) /**< \brief Pioa signal: PIODC4 */ #define PIO_PA12X1_PIODC6 (1u << 12) /**< \brief Pioa signal: PIODC6 */ #define PIO_PA13X1_PIODC7 (1u << 13) /**< \brief Pioa signal: PIODC7 */ #define PIO_PA22X1_PIODCCLK (1u << 22) /**< \brief Pioa signal: PIODCCLK */ #define PIO_PA4X1_WKUP3 (1u << 4) /**< \brief Pioa signal: WKUP3/PIODC1 */ #define PIO_PA4X1_PIODC1 (1u << 4) /**< \brief Pioa signal: WKUP3/PIODC1 */ #define PIO_PA5X1_WKUP4 (1u << 5) /**< \brief Pioa signal: WKUP4/PIODC2 */ #define PIO_PA5X1_PIODC2 (1u << 5) /**< \brief Pioa signal: WKUP4/PIODC2 */ #define PIO_PA9X1_WKUP6 (1u << 9) /**< \brief Pioa signal: WKUP6/PIODC3 */ #define PIO_PA9X1_PIODC3 (1u << 9) /**< \brief Pioa signal: WKUP6/PIODC3 */ #define PIO_PA11X1_WKUP7 (1u << 11) /**< \brief Pioa signal: WKUP7/PIODC5 */ #define PIO_PA11X1_PIODC5 (1u << 11) /**< \brief Pioa signal: WKUP7/PIODC5 */ #define PIO_PA14X1_WKUP8 (1u << 14) /**< \brief Pioa signal: WKUP8/PIODCEN1 */ #define PIO_PA14X1_PIODCEN1 (1u << 14) /**< \brief Pioa signal: WKUP8/PIODCEN1 */ /* ========== Pio definition for PMC peripheral ========== */ #define PIO_PA6B_PCK0 (1u << 6) /**< \brief Pmc signal: PCK0 */ #define PIO_PB12D_PCK0 (1u << 12) /**< \brief Pmc signal: PCK0 */ #define PIO_PB13B_PCK0 (1u << 13) /**< \brief Pmc signal: PCK0 */ #define PIO_PA17B_PCK1 (1u << 17) /**< \brief Pmc signal: PCK1 */ #define PIO_PA21B_PCK1 (1u << 21) /**< \brief Pmc signal: PCK1 */ #define PIO_PA3C_PCK2 (1u << 3) /**< \brief Pmc signal: PCK2 */ #define PIO_PA18B_PCK2 (1u << 18) /**< \brief Pmc signal: PCK2 */ #define PIO_PA31B_PCK2 (1u << 31) /**< \brief Pmc signal: PCK2 */ #define PIO_PB3B_PCK2 (1u << 3) /**< \brief Pmc signal: PCK2 */ #define PIO_PD31C_PCK2 (1u << 31) /**< \brief Pmc signal: PCK2 */ /* ========== Pio definition for PWM0 peripheral ========== */ #define PIO_PA10B_PWMC0_PWMEXTRG0 (1u << 10) /**< \brief Pwm0 signal: PWMC0_PWMEXTRG0 */ #define PIO_PA22B_PWMC0_PWMEXTRG1 (1u << 22) /**< \brief Pwm0 signal: PWMC0_PWMEXTRG1 */ #define PIO_PA9C_PWMC0_PWMFI0 (1u << 9) /**< \brief Pwm0 signal: PWMC0_PWMFI0 */ #define PIO_PD8B_PWMC0_PWMFI1 (1u << 8) /**< \brief Pwm0 signal: PWMC0_PWMFI1 */ #define PIO_PD9B_PWMC0_PWMFI2 (1u << 9) /**< \brief Pwm0 signal: PWMC0_PWMFI2 */ #define PIO_PA0A_PWMC0_PWMH0 (1u << 0) /**< \brief Pwm0 signal: PWMC0_PWMH0 */ #define PIO_PA11B_PWMC0_PWMH0 (1u << 11) /**< \brief Pwm0 signal: PWMC0_PWMH0 */ #define PIO_PA23B_PWMC0_PWMH0 (1u << 23) /**< \brief Pwm0 signal: PWMC0_PWMH0 */ #define PIO_PB0A_PWMC0_PWMH0 (1u << 0) /**< \brief Pwm0 signal: PWMC0_PWMH0 */ #define PIO_PD11B_PWMC0_PWMH0 (1u << 11) /**< \brief Pwm0 signal: PWMC0_PWMH0 */ #define PIO_PD20A_PWMC0_PWMH0 (1u << 20) /**< \brief Pwm0 signal: PWMC0_PWMH0 */ #define PIO_PA2A_PWMC0_PWMH1 (1u << 2) /**< \brief Pwm0 signal: PWMC0_PWMH1 */ #define PIO_PA12B_PWMC0_PWMH1 (1u << 12) /**< \brief Pwm0 signal: PWMC0_PWMH1 */ #define PIO_PA24B_PWMC0_PWMH1 (1u << 24) /**< \brief Pwm0 signal: PWMC0_PWMH1 */ #define PIO_PB1A_PWMC0_PWMH1 (1u << 1) /**< \brief Pwm0 signal: PWMC0_PWMH1 */ #define PIO_PD21A_PWMC0_PWMH1 (1u << 21) /**< \brief Pwm0 signal: PWMC0_PWMH1 */ #define PIO_PA13B_PWMC0_PWMH2 (1u << 13) /**< \brief Pwm0 signal: PWMC0_PWMH2 */ #define PIO_PA25B_PWMC0_PWMH2 (1u << 25) /**< \brief Pwm0 signal: PWMC0_PWMH2 */ #define PIO_PB4B_PWMC0_PWMH2 (1u << 4) /**< \brief Pwm0 signal: PWMC0_PWMH2 */ #define PIO_PC19B_PWMC0_PWMH2 (1u << 19) /**< \brief Pwm0 signal: PWMC0_PWMH2 */ #define PIO_PD22A_PWMC0_PWMH2 (1u << 22) /**< \brief Pwm0 signal: PWMC0_PWMH2 */ #define PIO_PA7B_PWMC0_PWMH3 (1u << 7) /**< \brief Pwm0 signal: PWMC0_PWMH3 */ #define PIO_PA14B_PWMC0_PWMH3 (1u << 14) /**< \brief Pwm0 signal: PWMC0_PWMH3 */ #define PIO_PA17C_PWMC0_PWMH3 (1u << 17) /**< \brief Pwm0 signal: PWMC0_PWMH3 */ #define PIO_PC13B_PWMC0_PWMH3 (1u << 13) /**< \brief Pwm0 signal: PWMC0_PWMH3 */ #define PIO_PC21B_PWMC0_PWMH3 (1u << 21) /**< \brief Pwm0 signal: PWMC0_PWMH3 */ #define PIO_PD23A_PWMC0_PWMH3 (1u << 23) /**< \brief Pwm0 signal: PWMC0_PWMH3 */ #define PIO_PA1A_PWMC0_PWML0 (1u << 1) /**< \brief Pwm0 signal: PWMC0_PWML0 */ #define PIO_PA19B_PWMC0_PWML0 (1u << 19) /**< \brief Pwm0 signal: PWMC0_PWML0 */ #define PIO_PB5B_PWMC0_PWML0 (1u << 5) /**< \brief Pwm0 signal: PWMC0_PWML0 */ #define PIO_PC0B_PWMC0_PWML0 (1u << 0) /**< \brief Pwm0 signal: PWMC0_PWML0 */ #define PIO_PD10B_PWMC0_PWML0 (1u << 10) /**< \brief Pwm0 signal: PWMC0_PWML0 */ #define PIO_PD24A_PWMC0_PWML0 (1u << 24) /**< \brief Pwm0 signal: PWMC0_PWML0 */ #define PIO_PA20B_PWMC0_PWML1 (1u << 20) /**< \brief Pwm0 signal: PWMC0_PWML1 */ #define PIO_PB12A_PWMC0_PWML1 (1u << 12) /**< \brief Pwm0 signal: PWMC0_PWML1 */ #define PIO_PC1B_PWMC0_PWML1 (1u << 1) /**< \brief Pwm0 signal: PWMC0_PWML1 */ #define PIO_PC18B_PWMC0_PWML1 (1u << 18) /**< \brief Pwm0 signal: PWMC0_PWML1 */ #define PIO_PD25A_PWMC0_PWML1 (1u << 25) /**< \brief Pwm0 signal: PWMC0_PWML1 */ #define PIO_PA16C_PWMC0_PWML2 (1u << 16) /**< \brief Pwm0 signal: PWMC0_PWML2 */ #define PIO_PA30A_PWMC0_PWML2 (1u << 30) /**< \brief Pwm0 signal: PWMC0_PWML2 */ #define PIO_PB13A_PWMC0_PWML2 (1u << 13) /**< \brief Pwm0 signal: PWMC0_PWML2 */ #define PIO_PC2B_PWMC0_PWML2 (1u << 2) /**< \brief Pwm0 signal: PWMC0_PWML2 */ #define PIO_PC20B_PWMC0_PWML2 (1u << 20) /**< \brief Pwm0 signal: PWMC0_PWML2 */ #define PIO_PD26A_PWMC0_PWML2 (1u << 26) /**< \brief Pwm0 signal: PWMC0_PWML2 */ #define PIO_PA15C_PWMC0_PWML3 (1u << 15) /**< \brief Pwm0 signal: PWMC0_PWML3 */ #define PIO_PC3B_PWMC0_PWML3 (1u << 3) /**< \brief Pwm0 signal: PWMC0_PWML3 */ #define PIO_PC15B_PWMC0_PWML3 (1u << 15) /**< \brief Pwm0 signal: PWMC0_PWML3 */ #define PIO_PC22B_PWMC0_PWML3 (1u << 22) /**< \brief Pwm0 signal: PWMC0_PWML3 */ #define PIO_PD27A_PWMC0_PWML3 (1u << 27) /**< \brief Pwm0 signal: PWMC0_PWML3 */ /* ========== Pio definition for PWM1 peripheral ========== */ #define PIO_PA30B_PWMC1_PWMEXTRG0 (1u << 30) /**< \brief Pwm1 signal: PWMC1_PWMEXTRG0 */ #define PIO_PA18A_PWMC1_PWMEXTRG1 (1u << 18) /**< \brief Pwm1 signal: PWMC1_PWMEXTRG1 */ #define PIO_PA21C_PWMC1_PWMFI0 (1u << 21) /**< \brief Pwm1 signal: PWMC1_PWMFI0 */ #define PIO_PA26D_PWMC1_PWMFI1 (1u << 26) /**< \brief Pwm1 signal: PWMC1_PWMFI1 */ #define PIO_PA28D_PWMC1_PWMFI2 (1u << 28) /**< \brief Pwm1 signal: PWMC1_PWMFI2 */ #define PIO_PA12C_PWMC1_PWMH0 (1u << 12) /**< \brief Pwm1 signal: PWMC1_PWMH0 */ #define PIO_PD1B_PWMC1_PWMH0 (1u << 1) /**< \brief Pwm1 signal: PWMC1_PWMH0 */ #define PIO_PA14C_PWMC1_PWMH1 (1u << 14) /**< \brief Pwm1 signal: PWMC1_PWMH1 */ #define PIO_PD3B_PWMC1_PWMH1 (1u << 3) /**< \brief Pwm1 signal: PWMC1_PWMH1 */ #define PIO_PA31D_PWMC1_PWMH2 (1u << 31) /**< \brief Pwm1 signal: PWMC1_PWMH2 */ #define PIO_PD5B_PWMC1_PWMH2 (1u << 5) /**< \brief Pwm1 signal: PWMC1_PWMH2 */ #define PIO_PA8A_PWMC1_PWMH3 (1u << 8) /**< \brief Pwm1 signal: PWMC1_PWMH3 */ #define PIO_PD7B_PWMC1_PWMH3 (1u << 7) /**< \brief Pwm1 signal: PWMC1_PWMH3 */ #define PIO_PA11C_PWMC1_PWML0 (1u << 11) /**< \brief Pwm1 signal: PWMC1_PWML0 */ #define PIO_PD0B_PWMC1_PWML0 (1u << 0) /**< \brief Pwm1 signal: PWMC1_PWML0 */ #define PIO_PA13C_PWMC1_PWML1 (1u << 13) /**< \brief Pwm1 signal: PWMC1_PWML1 */ #define PIO_PD2B_PWMC1_PWML1 (1u << 2) /**< \brief Pwm1 signal: PWMC1_PWML1 */ #define PIO_PA23D_PWMC1_PWML2 (1u << 23) /**< \brief Pwm1 signal: PWMC1_PWML2 */ #define PIO_PD4B_PWMC1_PWML2 (1u << 4) /**< \brief Pwm1 signal: PWMC1_PWML2 */ #define PIO_PA5A_PWMC1_PWML3 (1u << 5) /**< \brief Pwm1 signal: PWMC1_PWML3 */ #define PIO_PD6B_PWMC1_PWML3 (1u << 6) /**< \brief Pwm1 signal: PWMC1_PWML3 */ /* ========== Pio definition for QSPI peripheral ========== */ #define PIO_PA11A_QCS (1u << 11) /**< \brief Qspi signal: QCS */ #define PIO_PA13A_QIO0 (1u << 13) /**< \brief Qspi signal: QIO0 */ #define PIO_PA12A_QIO1 (1u << 12) /**< \brief Qspi signal: QIO1 */ #define PIO_PA17A_QIO2 (1u << 17) /**< \brief Qspi signal: QIO2 */ #define PIO_PD31A_QIO3 (1u << 31) /**< \brief Qspi signal: QIO3 */ #define PIO_PA14A_QSCK (1u << 14) /**< \brief Qspi signal: QSCK */ /* ========== Pio definition for SPI0 peripheral ========== */ #define PIO_PD20B_SPI0_MISO (1u << 20) /**< \brief Spi0 signal: SPI0_MISO */ #define PIO_PD21B_SPI0_MOSI (1u << 21) /**< \brief Spi0 signal: SPI0_MOSI */ #define PIO_PB2D_SPI0_NPCS0 (1u << 2) /**< \brief Spi0 signal: SPI0_NPCS0 */ #define PIO_PA31A_SPI0_NPCS1 (1u << 31) /**< \brief Spi0 signal: SPI0_NPCS1 */ #define PIO_PD25B_SPI0_NPCS1 (1u << 25) /**< \brief Spi0 signal: SPI0_NPCS1 */ #define PIO_PD12C_SPI0_NPCS2 (1u << 12) /**< \brief Spi0 signal: SPI0_NPCS2 */ #define PIO_PD27B_SPI0_NPCS3 (1u << 27) /**< \brief Spi0 signal: SPI0_NPCS3 */ #define PIO_PD22B_SPI0_SPCK (1u << 22) /**< \brief Spi0 signal: SPI0_SPCK */ /* ========== Pio definition for SPI1 peripheral ========== */ #define PIO_PC26C_SPI1_MISO (1u << 26) /**< \brief Spi1 signal: SPI1_MISO */ #define PIO_PC27C_SPI1_MOSI (1u << 27) /**< \brief Spi1 signal: SPI1_MOSI */ #define PIO_PC25C_SPI1_NPCS0 (1u << 25) /**< \brief Spi1 signal: SPI1_NPCS0 */ #define PIO_PC28C_SPI1_NPCS1 (1u << 28) /**< \brief Spi1 signal: SPI1_NPCS1 */ #define PIO_PD0C_SPI1_NPCS1 (1u << 0) /**< \brief Spi1 signal: SPI1_NPCS1 */ #define PIO_PC29C_SPI1_NPCS2 (1u << 29) /**< \brief Spi1 signal: SPI1_NPCS2 */ #define PIO_PD1C_SPI1_NPCS2 (1u << 1) /**< \brief Spi1 signal: SPI1_NPCS2 */ #define PIO_PC30C_SPI1_NPCS3 (1u << 30) /**< \brief Spi1 signal: SPI1_NPCS3 */ #define PIO_PD2C_SPI1_NPCS3 (1u << 2) /**< \brief Spi1 signal: SPI1_NPCS3 */ #define PIO_PC24C_SPI1_SPCK (1u << 24) /**< \brief Spi1 signal: SPI1_SPCK */ /* ========== Pio definition for SSC peripheral ========== */ #define PIO_PA10C_RD (1u << 10) /**< \brief Ssc signal: RD */ #define PIO_PD24B_RF (1u << 24) /**< \brief Ssc signal: RF */ #define PIO_PA22A_RK (1u << 22) /**< \brief Ssc signal: RK */ #define PIO_PB5D_TD (1u << 5) /**< \brief Ssc signal: TD */ #define PIO_PD10C_TD (1u << 10) /**< \brief Ssc signal: TD */ #define PIO_PD26B_TD (1u << 26) /**< \brief Ssc signal: TD */ #define PIO_PB0D_TF (1u << 0) /**< \brief Ssc signal: TF */ #define PIO_PB1D_TK (1u << 1) /**< \brief Ssc signal: TK */ /* ========== Pio definition for TC0 peripheral ========== */ #define PIO_PA4B_TCLK0 (1u << 4) /**< \brief Tc0 signal: TCLK0 */ #define PIO_PA28B_TCLK1 (1u << 28) /**< \brief Tc0 signal: TCLK1 */ #define PIO_PA29B_TCLK2 (1u << 29) /**< \brief Tc0 signal: TCLK2 */ #define PIO_PA0B_TIOA0 (1u << 0) /**< \brief Tc0 signal: TIOA0 */ #define PIO_PA15B_TIOA1 (1u << 15) /**< \brief Tc0 signal: TIOA1 */ #define PIO_PA26B_TIOA2 (1u << 26) /**< \brief Tc0 signal: TIOA2 */ #define PIO_PA1B_TIOB0 (1u << 1) /**< \brief Tc0 signal: TIOB0 */ #define PIO_PA16B_TIOB1 (1u << 16) /**< \brief Tc0 signal: TIOB1 */ #define PIO_PA27B_TIOB2 (1u << 27) /**< \brief Tc0 signal: TIOB2 */ /* ========== Pio definition for TC3 peripheral ========== */ #define PIO_PE5B_TCLK10 (1u << 5) /**< \brief Tc3 signal: TCLK10 */ #define PIO_PD24C_TCLK11 (1u << 24) /**< \brief Tc3 signal: TCLK11 */ #define PIO_PE2B_TCLK9 (1u << 2) /**< \brief Tc3 signal: TCLK9 */ #define PIO_PE3B_TIOA10 (1u << 3) /**< \brief Tc3 signal: TIOA10 */ #define PIO_PD21C_TIOA11 (1u << 21) /**< \brief Tc3 signal: TIOA11 */ #define PIO_PE0B_TIOA9 (1u << 0) /**< \brief Tc3 signal: TIOA9 */ #define PIO_PE4B_TIOB10 (1u << 4) /**< \brief Tc3 signal: TIOB10 */ #define PIO_PD22C_TIOB11 (1u << 22) /**< \brief Tc3 signal: TIOB11 */ #define PIO_PE1B_TIOB9 (1u << 1) /**< \brief Tc3 signal: TIOB9 */ /* ========== Pio definition for TWIHS0 peripheral ========== */ #define PIO_PA4A_TWCK0 (1u << 4) /**< \brief Twihs0 signal: TWCK0 */ #define PIO_PA3A_TWD0 (1u << 3) /**< \brief Twihs0 signal: TWD0 */ /* ========== Pio definition for TWIHS1 peripheral ========== */ #define PIO_PB5A_TWCK1 (1u << 5) /**< \brief Twihs1 signal: TWCK1 */ #define PIO_PB4A_TWD1 (1u << 4) /**< \brief Twihs1 signal: TWD1 */ /* ========== Pio definition for TWIHS2 peripheral ========== */ #define PIO_PD28C_TWCK2 (1u << 28) /**< \brief Twihs2 signal: TWCK2 */ #define PIO_PD27C_TWD2 (1u << 27) /**< \brief Twihs2 signal: TWD2 */ /* ========== Pio definition for UART0 peripheral ========== */ #define PIO_PA9A_URXD0 (1u << 9) /**< \brief Uart0 signal: URXD0 */ #define PIO_PA10A_UTXD0 (1u << 10) /**< \brief Uart0 signal: UTXD0 */ /* ========== Pio definition for UART1 peripheral ========== */ #define PIO_PA5C_URXD1 (1u << 5) /**< \brief Uart1 signal: URXD1 */ #define PIO_PA4C_UTXD1 (1u << 4) /**< \brief Uart1 signal: UTXD1 */ #define PIO_PA6C_UTXD1 (1u << 6) /**< \brief Uart1 signal: UTXD1 */ #define PIO_PD26D_UTXD1 (1u << 26) /**< \brief Uart1 signal: UTXD1 */ /* ========== Pio definition for UART2 peripheral ========== */ #define PIO_PD25C_URXD2 (1u << 25) /**< \brief Uart2 signal: URXD2 */ #define PIO_PD26C_UTXD2 (1u << 26) /**< \brief Uart2 signal: UTXD2 */ /* ========== Pio definition for UART3 peripheral ========== */ #define PIO_PD28A_URXD3 (1u << 28) /**< \brief Uart3 signal: URXD3 */ #define PIO_PD30A_UTXD3 (1u << 30) /**< \brief Uart3 signal: UTXD3 */ #define PIO_PD31B_UTXD3 (1u << 31) /**< \brief Uart3 signal: UTXD3 */ /* ========== Pio definition for UART4 peripheral ========== */ #define PIO_PD18C_URXD4 (1u << 18) /**< \brief Uart4 signal: URXD4 */ #define PIO_PD3C_UTXD4 (1u << 3) /**< \brief Uart4 signal: UTXD4 */ #define PIO_PD19C_UTXD4 (1u << 19) /**< \brief Uart4 signal: UTXD4 */ /* ========== Pio definition for USART0 peripheral ========== */ #define PIO_PB2C_CTS0 (1u << 2) /**< \brief Usart0 signal: CTS0 */ #define PIO_PD0D_DCD0 (1u << 0) /**< \brief Usart0 signal: DCD0 */ #define PIO_PD2D_DSR0 (1u << 2) /**< \brief Usart0 signal: DSR0 */ #define PIO_PD1D_DTR0 (1u << 1) /**< \brief Usart0 signal: DTR0 */ #define PIO_PD3D_RI0 (1u << 3) /**< \brief Usart0 signal: RI0 */ #define PIO_PB3C_RTS0 (1u << 3) /**< \brief Usart0 signal: RTS0 */ #define PIO_PB0C_RXD0 (1u << 0) /**< \brief Usart0 signal: RXD0 */ #define PIO_PB13C_SCK0 (1u << 13) /**< \brief Usart0 signal: SCK0 */ #define PIO_PB1C_TXD0 (1u << 1) /**< \brief Usart0 signal: TXD0 */ /* ========== Pio definition for USART1 peripheral ========== */ #define PIO_PA25A_CTS1 (1u << 25) /**< \brief Usart1 signal: CTS1 */ #define PIO_PA26A_DCD1 (1u << 26) /**< \brief Usart1 signal: DCD1 */ #define PIO_PA28A_DSR1 (1u << 28) /**< \brief Usart1 signal: DSR1 */ #define PIO_PA27A_DTR1 (1u << 27) /**< \brief Usart1 signal: DTR1 */ #define PIO_PA3B_LONCOL1 (1u << 3) /**< \brief Usart1 signal: LONCOL1 */ #define PIO_PA29A_RI1 (1u << 29) /**< \brief Usart1 signal: RI1 */ #define PIO_PA24A_RTS1 (1u << 24) /**< \brief Usart1 signal: RTS1 */ #define PIO_PA21A_RXD1 (1u << 21) /**< \brief Usart1 signal: RXD1 */ #define PIO_PA23A_SCK1 (1u << 23) /**< \brief Usart1 signal: SCK1 */ #define PIO_PB4D_TXD1 (1u << 4) /**< \brief Usart1 signal: TXD1 */ /* ========== Pio definition for USART2 peripheral ========== */ #define PIO_PD19B_CTS2 (1u << 19) /**< \brief Usart2 signal: CTS2 */ #define PIO_PD4D_DCD2 (1u << 4) /**< \brief Usart2 signal: DCD2 */ #define PIO_PD6D_DSR2 (1u << 6) /**< \brief Usart2 signal: DSR2 */ #define PIO_PD5D_DTR2 (1u << 5) /**< \brief Usart2 signal: DTR2 */ #define PIO_PD7D_RI2 (1u << 7) /**< \brief Usart2 signal: RI2 */ #define PIO_PD18B_RTS2 (1u << 18) /**< \brief Usart2 signal: RTS2 */ #define PIO_PD15B_RXD2 (1u << 15) /**< \brief Usart2 signal: RXD2 */ #define PIO_PD17B_SCK2 (1u << 17) /**< \brief Usart2 signal: SCK2 */ #define PIO_PD16B_TXD2 (1u << 16) /**< \brief Usart2 signal: TXD2 */ /* ========== Pio indexes ========== */ #define PIO_PA0_IDX 0 #define PIO_PA1_IDX 1 #define PIO_PA2_IDX 2 #define PIO_PA3_IDX 3 #define PIO_PA4_IDX 4 #define PIO_PA5_IDX 5 #define PIO_PA7_IDX 7 #define PIO_PA8_IDX 8 #define PIO_PA9_IDX 9 #define PIO_PA10_IDX 10 #define PIO_PA11_IDX 11 #define PIO_PA12_IDX 12 #define PIO_PA13_IDX 13 #define PIO_PA14_IDX 14 #define PIO_PA15_IDX 15 #define PIO_PA16_IDX 16 #define PIO_PA17_IDX 17 #define PIO_PA18_IDX 18 #define PIO_PA19_IDX 19 #define PIO_PA20_IDX 20 #define PIO_PA21_IDX 21 #define PIO_PA22_IDX 22 #define PIO_PA23_IDX 23 #define PIO_PA24_IDX 24 #define PIO_PA25_IDX 25 #define PIO_PA26_IDX 26 #define PIO_PA27_IDX 27 #define PIO_PA28_IDX 28 #define PIO_PA30_IDX 30 #define PIO_PA31_IDX 31 #define PIO_PB0_IDX 32 #define PIO_PB1_IDX 33 #define PIO_PB2_IDX 34 #define PIO_PB3_IDX 35 #define PIO_PB4_IDX 36 #define PIO_PB5_IDX 37 #define PIO_PB6_IDX 38 #define PIO_PB7_IDX 39 #define PIO_PB8_IDX 40 #define PIO_PB9_IDX 41 #define PIO_PB12_IDX 44 #define PIO_PB13_IDX 45 #define PIO_PD0_IDX 96 #define PIO_PD1_IDX 97 #define PIO_PD2_IDX 98 #define PIO_PD3_IDX 99 #define PIO_PD4_IDX 100 #define PIO_PD5_IDX 101 #define PIO_PD6_IDX 102 #define PIO_PD7_IDX 103 #define PIO_PD8_IDX 104 #define PIO_PD9_IDX 105 #define PIO_PD10_IDX 106 #define PIO_PD11_IDX 107 #define PIO_PD12_IDX 108 #define PIO_PD13_IDX 109 #define PIO_PD14_IDX 110 #define PIO_PD15_IDX 111 #define PIO_PD16_IDX 112 #define PIO_PD17_IDX 113 #define PIO_PD18_IDX 114 #define PIO_PD19_IDX 115 #define PIO_PD20_IDX 116 #define PIO_PD21_IDX 117 #define PIO_PD22_IDX 118 #define PIO_PD24_IDX 120 #define PIO_PD25_IDX 121 #define PIO_PD26_IDX 122 #define PIO_PD27_IDX 123 #define PIO_PD28_IDX 124 #define PIO_PD30_IDX 126 #define PIO_PD31_IDX 127 #endif /* _SAME70N21_PIO_ */
d3b64b5945559533bbf796517365bfb59107a030
0aef26863f142bef75a0e4aaf7da76fc95e3d8ae
/crypto_stream/salsa208/ref/stream.c
d0f978371042690f962beeab0b6fd392b4c3e314
[]
no_license
jedisct1/supercop
94e5afadc56ef650d7029774a6b05cfe2af54738
7c27338ee73a2bd642ba3359faaec395914175a2
refs/heads/master
2023-08-02T20:12:39.321029
2023-05-30T03:03:48
2023-05-30T03:03:48
179,046,113
23
2
null
null
null
null
UTF-8
C
false
false
918
c
/* version 20140420 D. J. Bernstein Public domain. */ #include "crypto_core_salsa208.h" #include "crypto_stream.h" typedef unsigned int uint32; static const unsigned char sigma[16] = "expand 32-byte k"; int crypto_stream( unsigned char *c,unsigned long long clen, const unsigned char *n, const unsigned char *k ) { unsigned char in[16]; unsigned char block[64]; unsigned char kcopy[32]; int i; unsigned int u; if (!clen) return 0; for (i = 0;i < 32;++i) kcopy[i] = k[i]; for (i = 0;i < 8;++i) in[i] = n[i]; for (i = 8;i < 16;++i) in[i] = 0; while (clen >= 64) { crypto_core_salsa208(c,in,kcopy,sigma); u = 1; for (i = 8;i < 16;++i) { u += (unsigned int) in[i]; in[i] = u; u >>= 8; } clen -= 64; c += 64; } if (clen) { crypto_core_salsa208(block,in,kcopy,sigma); for (i = 0;i < clen;++i) c[i] = block[i]; } return 0; }
b0415c73932f9ee35347dcdb6034f40d5db357c8
83214753e9183327e98af0e6768e9be5385e5282
/d/taishan/daimiao/npc/gang1.c
7dc5b1a6101497c6d188721b4f54a59cb81de639
[]
no_license
MudRen/hymud
f5b3bb0e0232f23a48cb5f1db2e34f08be99614e
b9433df6cf48e936b07252b15b60806ff55bb2f3
refs/heads/main
2023-04-04T22:44:23.880558
2021-04-07T15:45:16
2021-04-07T15:45:16
318,484,633
1
5
null
null
null
null
GB18030
C
false
false
889
c
// Copyright (C) 1995, by Tie Yu and Daniel Yu. All rights reserved. // This software can not be used, copied, or modified in any form without // the written permission from authors. inherit NPC; void create() { set_name("王若钢", ({ "wang", "wang gang"}) ); set("gender", "男性" ); set("age", 32); set("long", "这是西方神教四大金钢之一。\n"); set("combat_exp", 35000); set("attitude", "friendly"); set_skill("unarmed", 50); set_skill("demon-strike",10); set_skill("demon-steps",30); set_skill("dodge", 40); map_skill("unarmed", "demon-strike"); map_skill("dodge","demon-steps"); set_skill("iron-cloth",100); create_family("西方神教", 8, "教众"); setup(); add_money("coin", 5); carry_object(__DIR__"obj/yellowrobe")->wear(); }
88c8c113cc7e97cee4333e76da945de6ea15d828
cf4605896cec9cea2c868d131e4a095c05a4fd1e
/C-advanced/Ch4-C/Ch4-4-swap-def.c
825cf2503d381ffa94953f0885f96f5824ef2b1c
[]
no_license
alice2100chen/ourProgramming
1e5a57a3acecb005f63802471d76dfb581f70c86
a94818371ef86cf1eafaca22cf6cb451b0c50556
refs/heads/master
2020-04-20T00:31:50.823679
2020-01-06T14:26:49
2020-01-06T14:26:49
168,523,623
1
0
null
null
null
null
UTF-8
C
false
false
438
c
#include <stdio.h> void swap(int a[], int i, int j){ int temp = a[i]; a[i] = a[j]; a[j] = temp; } void print_array(int arr[], int arr_len){ printf("["); for(int i=0; i<arr_len; ++i){ printf("%d%s", arr[i], i==arr_len-1? "":", ");} printf("]\n"); } int main(){ int num_visitors[] = {70, 10, 14, 7, 25, 30, 50}; print_array(num_visitors, 7); swap(num_visitors, 0, 6); print_array(num_visitors, 7); }
edd2719bb7d9bfa9568d6779ce3a3c9901b28877
35c04ea32351dc95bc18d46e5c70dda9c1e08668
/Examples/MCUXpresso/i.MX RT1064_EVK/MIMXRT1064_FreeRTOS/McuLib/src/McuButton.h
27512796370e9e4347f6a4c5e3e85af72e372070
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-3-Clause" ]
permissive
ErichStyger/mcuoneclipse
0f8e7a2056a26ed79d9d4a0afd64777ff0b2b2fe
04ad311b11860ae5f8285316010961a87fa06d0c
refs/heads/master
2023-08-28T22:54:08.501719
2023-08-25T15:11:44
2023-08-25T15:11:44
7,446,094
620
1,191
NOASSERTION
2020-10-16T03:13:28
2013-01-04T19:38:12
Batchfile
UTF-8
C
false
false
891
h
/* * McuButton.h * * Copyright (c) 2019-2021, Erich Styger * SPDX-License-Identifier: BSD-3-Clause */ #ifndef MCUBUTTON_H_ #define MCUBUTTON_H_ #include "McuButtonconfig.h" #include <stdint.h> #include <stdbool.h> #include "McuLib.h" #include "McuGPIO.h" #ifdef __cplusplus extern "C" { #endif typedef void *McuBtn_Handle_t; typedef struct { bool isLowActive; /* default: true */ McuGPIO_HwPin_t hw; } McuBtn_Config_t; void McuBtn_GetDefaultConfig(McuBtn_Config_t *config); McuBtn_Handle_t McuBtn_InitButton(McuBtn_Config_t *config); McuBtn_Handle_t McuBtn_DeinitButton(McuBtn_Handle_t button); void McuBtn_DisablePullResistor(McuBtn_Handle_t btn); void McuBtn_EnablePullResistor(McuBtn_Handle_t btn); bool McuBtn_IsOn(McuBtn_Handle_t btn); void McuBtn_Deinit(void); void McuBtn_Init(void); #ifdef __cplusplus } /* extern "C" */ #endif #endif /* MCUBUTTON_H_ */
577688b03d0d6e01ba120934fc9dfcd685187132
b7eaf2ccb909957599c9796a465cf9bb651a6dac
/AP4/Armazem-P04/Armazem/contentor.c
601f9dabcb3b939641abdd41f5bee0338a9a7b9d
[]
no_license
diogomartins96/MIEEC_PROG2
7c00bcbb8141aaeacc95d9519df350b62d171818
5a735315b66b1e8076a37e1f26e77f8261c48334
refs/heads/master
2020-04-07T16:54:54.412660
2018-11-21T13:01:43
2018-11-21T13:01:43
158,548,428
0
0
null
null
null
null
UTF-8
C
false
false
843
c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include "contentor.h" /* alinea a) */ /** * \brief cria um novo contentor * \param dest destino do contentor * \param val valor das mercadorias no contentor * \return apontador para o contentor; NULL se erro */ contentor* contentor_novo(char* dest, float val) { return NULL; } /** * \brief apaga contentor (liberta memoria correspondente) * \param contr apontador para o contentor * \remark se contr = NULL retorna sem fazer nada */ void contentor_apaga(contentor* contr) { } /** * \brief imprime dados do contentor * \param contr apontador para o contentor */ void contentor_imprime(contentor* contr) { if (contr == NULL) printf("Contentor nulo\n"); else printf("Destino: %s, valor da carga: %.2f K Euros\n", contr->destino, contr->valor); }
0575d66ff8b69e547ee8cf6f496e5bae09a40adb
86e7dc4cad2b2b06b05c149daa81533260c8ab67
/Games/Dinorun/source/src/gamestate.h
2685b8590938b5b45b385674cd8dfb89fb07a8bb
[ "MIT" ]
permissive
CiaranGruber/Ti-84-Calculator
ddd81199f6c35736bf7407e6d7e1d3e9d053df7f
96742a4a2b9e21aa9d675575dc7e4f26365430c0
refs/heads/master
2021-09-25T04:46:05.814396
2021-09-21T13:58:07
2021-09-21T13:58:07
173,281,430
1
1
null
null
null
null
UTF-8
C
false
false
961
h
#ifndef DINO_GAMESTATE_H #define DINO_GAMESTATE_H #include <usbdrvce.h> #include "dino.h" #include "clouds.h" #include "obstacle.h" #include "config.h" #include "hid/hid.h" #include "night.h" #include "sound.h" typedef struct Game { uint24_t frame; uint24_t distance; uint24_t score; uint24_t distance_to_score; uint24_t next_beep_score; bool distance_overrun; dino_t dino; cloud_t clouds[NUM_CLOUDS]; uint24_t distance_to_cloud_movement; obstacle_t obstacles[NUM_OBSTACLES]; uint24_t high_score; uint8_t day_stage; uint24_t distance_to_time_change; moon_t moon; star_t stars[MAX_NUM_STARS]; uint24_t star_movement_frame; #if USE_SOUND sound_player_t sound_player; #endif #if USE_USB struct { usb_device_t controller_dev; uint8_t controller_interface; hid_state_t hids[MAX_HID_DEVICES]; } usb; #endif } game_t; extern game_t game; #endif //DINO_GAMESTATE_H
3e70b8053ea366d08a20d4b05a5eaca951ef87ef
e9534e4aaef3a16db6c6cfe9ad0f9a399f84bb67
/PA4/emit.h
cd3344e9ff104d7ad73386e27563ffc8446fb1d1
[]
no_license
OmarElawady/Cool-Compiler
e65981a0ae507fd252f63b7ba53179ccdf7a02b0
0877ab2ea758fdc24fde7c9dae5730390128acb7
refs/heads/master
2022-04-07T11:36:35.921107
2020-02-25T16:44:52
2020-02-25T16:44:52
null
0
0
null
null
null
null
UTF-8
C
false
false
2,823
h
/////////////////////////////////////////////////////////////////////// // // Assembly Code Naming Conventions: // // Dispatch table <classname>_dispTab // Method entry point <classname>.<method> // Class init code <classname>_init // Abort method entry <classname>.<method>.Abort // Prototype object <classname>_protObj // Integer constant int_const<Symbol> // String constant str_const<Symbol> // /////////////////////////////////////////////////////////////////////// #include "stringtab.h" #define MAXINT 100000000 #define WORD_SIZE 4 #define LOG_WORD_SIZE 2 // for logical shifts // Global names #define CLASSNAMETAB "class_nameTab" #define CLASSOBJTAB "class_objTab" #define INTTAG "_int_tag" #define BOOLTAG "_bool_tag" #define STRINGTAG "_string_tag" #define HEAP_START "heap_start" // Naming conventions #define DISPTAB_SUFFIX "_dispTab" #define METHOD_SEP "." #define CLASSINIT_SUFFIX "_init" #define PROTOBJ_SUFFIX "_protObj" #define OBJECTPROTOBJ "Object" PROTOBJ_SUFFIX #define INTCONST_PREFIX "int_const" #define STRCONST_PREFIX "str_const" #define BOOLCONST_PREFIX "bool_const" #define EMPTYSLOT 0 #define LABEL ":\n" #define STRINGNAME (char *)"String" #define INTNAME (char *)"Int" #define BOOLNAME (char *)"Bool" #define MAINNAME (char *)"Main" // // information about object headers // #define DEFAULT_OBJFIELDS 3 #define TAG_OFFSET 0 #define SIZE_OFFSET 1 #define DISPTABLE_OFFSET 2 #define STRING_SLOTS 1 #define INT_SLOTS 1 #define BOOL_SLOTS 1 #define GLOBAL "\t.globl\t" #define ALIGN "\t.align\t2\n" #define WORD "\t.word\t" #define BYTE "\t.byte\t" // // register names // #define ZERO "$zero" // Zero register #define ACC "$a0" // Accumulator #define A1 "$a1" // For arguments to prim funcs #define SELF "$s0" // Ptr to self (callee saves) #define T1 "$t1" // Temporary 1 #define T2 "$t2" // Temporary 2 #define T3 "$t3" // Temporary 3 #define SP "$sp" // Stack pointer #define FP "$fp" // Frame pointer #define RA "$ra" // Return address // // Opcodes // #define JALR "\tjalr\t" #define JAL "\tjal\t" #define RET "\tjr\t" RA "\t" #define SW "\tsw\t" #define LW "\tlw\t" #define LI "\tli\t" #define LA "\tla\t" #define MOVE "\tmove\t" #define NEG "\tneg\t" #define ADD "\tadd\t" #define ADDI "\taddi\t" #define ADDU "\taddu\t" #define ADDIU "\taddiu\t" #define DIV "\tdiv\t" #define MUL "\tmul\t" #define SUB "\tsub\t" #define SLL "\tsll\t" #define BEQZ "\tbeqz\t" #define BRANCH "\tb\t" #define BEQ "\tbeq\t" #define BNE "\tbne\t" #define BNEZ "\tbnez\t" #define BLEQ "\tble\t" #define BLT "\tblt\t" #define BGT "\tbgt\t" #define FP_OFFSET 0 #define RA_OFFSET -1 #define SELF_OFFSET -2 #define INIT_OFFSET 0 #define METHODS_OFFSET 1 #define LOCALS_OFFSET -3
31887283987bbfc53b45161dd7872a8eee5a8beb
d7ef1300dc1b4d6174788605bf2f19ece12a1708
/other/old_scripts/scripts/old/doubleK0_HERAII_loopcoll2.C
bef386940cdb689b6de1fc2ca9fbaa8d5157476b
[]
no_license
libov/zeus
388a2d49eb83f098c06008cb23b6ab42ae42e0e5
a0ca857ede59c74cace29924503d78670e10fe7b
refs/heads/master
2021-01-01T05:51:48.516178
2014-12-03T09:14:02
2014-12-03T09:14:02
null
0
0
null
null
null
null
UTF-8
C
false
false
9,160
c
// macro runs through all ntuples and create a small tree easy to analyse. // variables are described below, "VARIABLES DEFINITION" // type path to ntuples and name of out root tree #ifndef __CINT__ #include <TChain.h> #include <TH1F.h> #include <TFile.h> #include <TROOT.h> #include <iostream> using namespace std; #include<Daughter.h> #include<Mother.h> #endif void doubleK0_HERAII() { Int_t goa=0, nevents=0, Nv0lite=0, Sincand=0, Tt1_id[50], Tt2_id[50], Tq1[50], Tq2[50], Trk_ntracks=0, Trk_id[300]; Float_t Tinvmass_k0[50], Tinvmass_lambda[50], Tinvmass_alambda[50], Tinvmass_ee[50], Tsecvtx_collin3[50], Tsecvtx_collin2[50], Tsecvtx[50][3], reso_mass=0, Tp1[50][3], Tp2[50][3], Tpk[50][3], corr=0, Siq2el[10], Siyel[10], Siyjb[10], Sizuhmom[4][10], Sicalpos[3][10], Sisrtpos[2][10], Sisrtene[10], Siecorr[3][10], Sith[10]; Int_t Trk_prim_vtx[300], Trk_sec_vtx[300], Runnr=0, year=0, k0_cand=0; const Int_t low_2004=47010, up_2004=51245, low_2005=52244, up_2005=57123, low_2006=58181, up_2006=59947, low_2006p=60005, up_2006p=61746, low_2007=61747, up_2007=62638; const Float_t corr_2004=1.005, corr_2005=1.009, corr_2006=1.0077, corr_2007=1.0065; TChain *myChain=new TChain("resonance"); // PATH to NTUPLES //myChain->Add("/data/zenith226a/libov/data/2004RTfit/*.root"); //myChain->Add("/data/zenith226a/libov/data/2005RTfit/*.root"); myChain->Add("/data/zenith226a/libov/data/2004RTfit/*.root"); myChain->Add("/data/zenith226a/libov/data/HERAII_oncemore/*.root"); // No rtfit; 2007a orange(not test003); only 2005 yet. myChain->Add("/data/zenith226a/libov/data/2006/*.root"); myChain->Add("/data/zenith226a/libov/data/2006pRTfit/*.root"); myChain->Add("/data/zenith226a/libov/data/2007/*.root"); // V0lite myChain->SetBranchAddress("Nv0lite",&Nv0lite); myChain->SetBranchAddress("Tinvmass_k0",Tinvmass_k0); myChain->SetBranchAddress("Tinvmass_lambda",Tinvmass_lambda); myChain->SetBranchAddress("Tinvmass_alambda",Tinvmass_alambda); myChain->SetBranchAddress("Tinvmass_ee",Tinvmass_ee); myChain->SetBranchAddress("Tsecvtx_collin3",Tsecvtx_collin3); myChain->SetBranchAddress("Tsecvtx_collin2",Tsecvtx_collin2); myChain->SetBranchAddress("Tpk",Tpk); myChain->SetBranchAddress("Tp1",Tp1); myChain->SetBranchAddress("Tp2",Tp2); myChain->SetBranchAddress("Tq1",Tq1); myChain->SetBranchAddress("Tq2",Tq2); myChain->SetBranchAddress("Tt1_id",Tt1_id); myChain->SetBranchAddress("Tt2_id",Tt2_id); // Tracking, Trk_vtx myChain->SetBranchAddress("Trk_ntracks",&Trk_ntracks); myChain->SetBranchAddress("Trk_id",Trk_id); myChain->SetBranchAddress("Trk_prim_vtx",Trk_prim_vtx); myChain->SetBranchAddress("Trk_sec_vtx",Trk_sec_vtx); //Sira, Si_kin myChain->SetBranchAddress("Sincand",&Sincand); myChain->SetBranchAddress("Siq2el",Siq2el); myChain->SetBranchAddress("Siyel",Siyel); myChain->SetBranchAddress("Siyjb",Siyjb); myChain->SetBranchAddress("Sizuhmom",Sizuhmom); myChain->SetBranchAddress("Siecorr",Siecorr); myChain->SetBranchAddress("Sith",Sith); myChain->SetBranchAddress("Sicalpos",Sicalpos); myChain->SetBranchAddress("Sisrtpos",Sisrtpos); myChain->SetBranchAddress("Sisrtene",Sisrtene); // Event myChain->SetBranchAddress("Runnr",&Runnr); nevents=myChain->GetEntries(); cout<<nevents<<" events in this chain"<<endl; //gStyle->SetOptFit(1111); Float_t histRangeLow=450, histRangeUp=542, histRange=histRangeUp-histRangeLow, bin_width=1.5; Int_t nbins=(Int_t)histRange/bin_width; bin_width=(Float_t)histRange/nbins; cout<<bin_width<<" "<<nbins<<endl; TH1F *hinv_base=new TH1F("hinv_base",">=2 K0s",nbins,histRangeLow,histRangeUp); TH1F *h=new TH1F("h","K0sK0s",300,0.8,5); TH1F *hdebug=new TH1F("hdebug","",20,0,20); // TREE VARIABLES DEFINITION // these variables are written to tree once and are further analysed in order to save time Int_t nv0=0, // number K0s candidates that passed soft selection id1[10], // id of the first track id2[10], // id of the second track runnr=0; // number of run Float_t p1[10][3], // momenta of 1st track p2[10][3], // momenta of 2bd track coll2[10], // collinearity angle 2D coll3[10]; // collinearity angle 3D TTree *tree = new TTree("resonance","K0sK0s in DIS"); tree->Branch("nv0",&nv0,"nv0/I"); tree->Branch("p1",p1,"p1[nv0][3]/F"); tree->Branch("p2",p2,"p2[nv0][3]/F"); tree->Branch("coll2",coll2,"coll2[nv0]/F"); tree->Branch("coll3",coll3,"coll3[nv0]/F"); tree->Branch("id1",id1,"id1[nv0]/I"); tree->Branch("id2",id2,"id2[nv0]/I"); tree->Branch("runnr",&runnr,"runnr/I"); Int_t err=0; for(Int_t i=0;i<nevents;i++) { if (goa==100000) { cout<<i<<" events processed"<<" Runnr:"<<Runnr<<endl; goa=0; } goa++; myChain->GetEntry(i); /*////////////////////////////////////////////////// year=0; if ((Runnr>=low_2004)&&(Runnr<=up_2004)) year=2004; if ((Runnr>=low_2005)&&(Runnr<=up_2005)) year=2005; if ((Runnr>=low_2006)&&(Runnr<=up_2006)) year=2006; if ((Runnr>=low_2006p)&&(Runnr<=up_2006p)) year=2006; if ((Runnr>=low_2007)&&(Runnr<=up_2007)) year=2007; switch (year) { case 2004: corr=corr_2004; break; case 2005: corr=corr_2005; break; case 2006: corr=corr_2006; break; case 2007: corr=corr_2007; break; case 0: {corr=1; err++;} break;\begin{itemize} } *//////////////////////////////////////////////////// //------DIS event selection------// hdebug->Fill(1); if (Siq2el[0]<1) continue; // Q^2>1 GeV^2 hdebug->Fill(2); // E-pz calculation float Empz_had = Sizuhmom[0][3] - Sizuhmom[0][2]; float Empz_e = Siecorr[0][2]*(1-TMath::Cos( Sith[0] )); float EminPz_Evt = Empz_e + Empz_had; if ((EminPz_Evt<38)||(EminPz_Evt>60)) continue; // 38 < E-pz < 60 GeV hdebug->Fill(3); // electron position calculation (box cut) float x_srtd=Sicalpos[0][0]; // position of electron in calorimeter float y_srtd=Sicalpos[0][1]; if (Sisrtene[0]>0) { x_srtd=Sisrtpos[0][0]; // position of electron in SRDT y_srtd=Sisrtpos[0][1]; } if (TMath::Abs(x_srtd)<12) // box cut: electron required to be outside 12x6 cm^2 box { if (TMath::Abs(y_srtd)<6) continue; } hdebug->Fill(4); if (Siyel[0]>0.95) continue; // y from electron method < 0.95 hdebug->Fill(5); if (Siyjb[0]<0.01) continue; // y from Jacquet-Blondel method > 0.01 hdebug->Fill(6); //------K0s selection------// Int_t cand_k0=0, list_k0[30]; if (Nv0lite<=1) continue; for(Int_t j=0;j<Nv0lite;j++) { Daughter t1(Tp1[j][0],Tp1[j][1],Tp1[j][2]); Daughter t2(Tp2[j][0],Tp2[j][1],Tp2[j][2]); Mother K0s_cand(t1,t2); Float_t p1=t1.GetP(); Float_t p2=t2.GetP(); Float_t mass_pi_p=0; if (p1>p2) //first track proton(antiproton); second track pion_minus(pion_plus) { mass_pi_p=K0s_cand.GetMass_m(6,4); } if (p1<p2) //first track pion_minus(pion_plus); first track proton(antiproton); { mass_pi_p=K0s_cand.GetMass_m(4,6); } //if (Tsecvtx_collin2[j]>0.1) continue; if (mass_pi_p<1.116) continue; if (Tinvmass_ee[j]<0.05) continue; //if ((K0s_cand.GetPt_m())<0.3) continue; Int_t take1=1, take2=1; for (Int_t n=0; n<Trk_ntracks; n++) { unsigned int idx=Trk_id[n]; if (idx == Tt1_id[j]) { take1=Trk_prim_vtx[n]; continue; } if (idx == Tt2_id[j]) { take2=Trk_prim_vtx[n]; continue; } } if ((take1==1)||(take2==1)) continue; //if (Tsecvtx_collin3[j]>0.2) continue; //if (TMath::Abs(K0s_cand.GetEta_m())>2.25) continue; //if ((K0s_cand.GetMass_m(4,4)<0.45)||(K0s_cand.GetMass_m(4,4)>0.9504)) continue; list_k0[cand_k0]=j; cand_k0++; } //end k0 selection if (cand_k0<2) continue; nv0=cand_k0; Int_t id=0; for(Int_t k=0;k<cand_k0;k++) { id=list_k0[k]; p1[k][0]=Tp1[id][0]; p1[k][1]=Tp1[id][1]; p1[k][2]=Tp1[id][2]; p2[k][0]=Tp2[id][0]; p2[k][1]=Tp2[id][1]; p2[k][2]=Tp2[id][2]; coll2[k]=Tsecvtx_collin2[id]; coll3[k]=Tsecvtx_collin3[id]; id1[k]=Tt1_id[id]; id2[k]=Tt2_id[id]; } runnr=Runnr; tree->Fill(); /* //------K0s combining------// for(Int_t k=0;k<cand_k0-1;k++) { for(Int_t l=k+1;l<cand_k0;l++) { Int_t k01=list_k0[k], k02=list_k0[l]; Int_t id1=Tt1_id[k01], id2=Tt2_id[k01], id3=Tt1_id[k02], id4=Tt2_id[k02]; if ((id1==id3)||(id1==id4)||(id2==id3)||(id2==id4)) continue; Daughter K0s_cand1(corr*Tpk[k01][0],corr*Tpk[k01][1],corr*Tpk[k01][2]); Daughter K0s_cand2(corr*Tpk[k02][0],corr*Tpk[k02][1],corr*Tpk[k02][2]); Mother K0sK0s(K0s_cand1,K0s_cand2); reso_mass=K0sK0s.GetMass_m(5,5); h2->Fill(reso_mass); } } */ } tree->Print(); // CHOOSE OUT ROOT TREE NAME TFile *f2 =new TFile("/data/zenith226a/libov/results/mostrecent/HERAII_all_05oncemore.root","recreate"); tree->Write(); f2->Close(); cout<<"Yo!"<<endl; } #ifndef __CINT__ int main(int argc, char **argv) { doubleK0_HERAII(); return 0; } #endif
092c41f0b15d4b3c827187c51e52e5773eb75ffc
f51653669ae778df4f6f32474d0667c968f47f4b
/app/src/lib/log.c
5bc41c59dcbd2ea50ea01afd101d299d3b32173d
[ "Apache-2.0" ]
permissive
seclorum/pinetime-hermes-firmware
bd903dbd4adcba7c08d4a3a0e4c22199db41ac7b
9d3dbf2c892564b6136fb0507dc8e37605520c52
refs/heads/main
2023-01-21T06:32:19.744596
2020-11-19T19:57:42
2020-11-19T19:57:42
314,354,873
0
0
Apache-2.0
2020-11-19T19:53:13
2020-11-19T19:53:13
null
UTF-8
C
false
false
65
c
#include <logging/log.h> LOG_MODULE_REGISTER(app, LOG_LEVEL_INF);
4d0bc9d3d565d072dfa6058c368983f5a63d4b77
39b2abd0fb1f7649e88f2bac8f7c222e31369041
/projects/02.3_simh/4.x+realcons/src/sim_video.c
d7301bc99c3fc5e90417df307fba90106442d5bc
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
slcasner/BlinkenBone
760c616bb7d1ab642e62d10f9834f2195ea38dbf
b73d579657717a2422f87c4cd4bc658fccc743a0
refs/heads/master
2020-03-29T23:37:31.869099
2018-09-28T22:05:06
2018-09-28T22:05:06
150,480,894
0
0
MIT
2018-09-28T20:37:32
2018-09-26T19:40:45
C
UTF-8
C
false
false
79,882
c
/* sim_video.c: Bitmap video output Copyright (c) 2011-2013, Matt Burke Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the author shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the author. 08-Nov-2013 MB Added globals for current mouse status 11-Jun-2013 MB First version */ #include "sim_video.h" #include "scp.h" t_bool vid_active = FALSE; int32 vid_cursor_x; int32 vid_cursor_y; t_bool vid_mouse_b1 = FALSE; t_bool vid_mouse_b2 = FALSE; t_bool vid_mouse_b3 = FALSE; static VID_QUIT_CALLBACK vid_quit_callback = NULL; t_stat vid_register_quit_callback (VID_QUIT_CALLBACK callback) { vid_quit_callback = callback; return SCPE_OK; } t_stat vid_show (FILE* st, DEVICE *dptr, UNIT* uptr, int32 val, CONST char* desc) { return vid_show_video (st, uptr, val, desc); } #if defined(USE_SIM_VIDEO) && defined(HAVE_LIBSDL) char vid_release_key[64] = "Ctrl-Right-Shift"; #include <SDL.h> #include <SDL_thread.h> static const char *key_names[] = {"F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "BACKQUOTE", "MINUS", "EQUALS", "LEFT_BRACKET", "RIGHT_BRACKET", "SEMICOLON", "SINGLE_QUOTE", "BACKSLASH", "LEFT_BACKSLASH", "COMMA", "PERIOD", "SLASH", "PRINT", "SCRL_LOCK", "PAUSE", "ESC", "BACKSPACE", "TAB", "ENTER", "SPACE", "INSERT", "DELETE", "HOME", "END", "PAGE_UP", "PAGE_DOWN", "UP", "DOWN", "LEFT", "RIGHT", "CAPS_LOCK", "NUM_LOCK", "ALT_L", "ALT_R", "CTRL_L", "CTRL_R", "SHIFT_L", "SHIFT_R", "WIN_L", "WIN_R", "MENU", "KP_ADD", "KP_SUBTRACT", "KP_END", "KP_DOWN", "KP_PAGE_DOWN", "KP_LEFT", "KP_RIGHT", "KP_HOME", "KP_UP", "KP_PAGE_UP", "KP_INSERT", "KP_DELETE", "KP_5", "KP_ENTER", "KP_MULTIPLY", "KP_DIVIDE" }; const char *vid_key_name (int32 key) { static char tmp_key_name[40]; if (key < sizeof(key_names)/sizeof(key_names[0])) sprintf (tmp_key_name, "SIM_KEY_%s", key_names[key]); else sprintf (tmp_key_name, "UNKNOWN KEY: %d", key); return tmp_key_name; } #if defined(HAVE_LIBPNG) /* From: https://github.com/driedfruit/SDL_SavePNG */ /* * Save an SDL_Surface as a PNG file. * * Returns 0 success or -1 on failure, the error message is then retrievable * via SDL_GetError(). */ #define SDL_SavePNG(surface, file) \ SDL_SavePNG_RW(surface, SDL_RWFromFile(file, "wb"), 1) /* * SDL_SavePNG -- libpng-based SDL_Surface writer. * * This code is free software, available under zlib/libpng license. * http://www.libpng.org/pub/png/src/libpng-LICENSE.txt */ #include <SDL.h> #include <png.h> #define SUCCESS 0 #define ERROR -1 #define USE_ROW_POINTERS #if SDL_BYTEORDER == SDL_BIG_ENDIAN #define rmask 0xFF000000 #define gmask 0x00FF0000 #define bmask 0x0000FF00 #define amask 0x000000FF #else #define rmask 0x000000FF #define gmask 0x0000FF00 #define bmask 0x00FF0000 #define amask 0xFF000000 #endif /* libpng callbacks */ static void png_error_SDL(png_structp ctx, png_const_charp str) { SDL_SetError("libpng: %s\n", str); } static void png_write_SDL(png_structp png_ptr, png_bytep data, png_size_t length) { SDL_RWops *rw = (SDL_RWops*)png_get_io_ptr(png_ptr); SDL_RWwrite(rw, data, sizeof(png_byte), length); } static SDL_Surface *SDL_PNGFormatAlpha(SDL_Surface *src) { SDL_Surface *surf; SDL_Rect rect = { 0 }; /* NO-OP for images < 32bpp and 32bpp images that already have Alpha channel */ if (src->format->BitsPerPixel <= 24 || src->format->Amask) { src->refcount++; return src; } /* Convert 32bpp alpha-less image to 24bpp alpha-less image */ rect.w = src->w; rect.h = src->h; surf = SDL_CreateRGBSurface(src->flags, src->w, src->h, 24, src->format->Rmask, src->format->Gmask, src->format->Bmask, 0); SDL_LowerBlit(src, &rect, surf, &rect); return surf; } static int SDL_SavePNG_RW(SDL_Surface *surface, SDL_RWops *dst, int freedst) { png_structp png_ptr; png_infop info_ptr; png_colorp pal_ptr; SDL_Palette *pal; int i, colortype; #ifdef USE_ROW_POINTERS png_bytep *row_pointers; #endif /* Initialize and do basic error checking */ if (!dst) { SDL_SetError("Argument 2 to SDL_SavePNG_RW can't be NULL, expecting SDL_RWops*\n"); return (ERROR); } if (!surface) { SDL_SetError("Argument 1 to SDL_SavePNG_RW can't be NULL, expecting SDL_Surface*\n"); if (freedst) SDL_RWclose(dst); return (ERROR); } png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, png_error_SDL, NULL); /* err_ptr, err_fn, warn_fn */ if (!png_ptr) { SDL_SetError("Unable to png_create_write_struct on %s\n", PNG_LIBPNG_VER_STRING); if (freedst) SDL_RWclose(dst); return (ERROR); } info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { SDL_SetError("Unable to png_create_info_struct\n"); png_destroy_write_struct(&png_ptr, NULL); if (freedst) SDL_RWclose(dst); return (ERROR); } if (setjmp(png_jmpbuf(png_ptr))) /* All other errors, see also "png_error_SDL" */ { png_destroy_write_struct(&png_ptr, &info_ptr); if (freedst) SDL_RWclose(dst); return (ERROR); } /* Setup our RWops writer */ png_set_write_fn(png_ptr, dst, png_write_SDL, NULL); /* w_ptr, write_fn, flush_fn */ /* Prepare chunks */ colortype = PNG_COLOR_MASK_COLOR; if (surface->format->BytesPerPixel > 0 && surface->format->BytesPerPixel <= 8 && (pal = surface->format->palette)) { colortype |= PNG_COLOR_MASK_PALETTE; pal_ptr = (png_colorp)malloc(pal->ncolors * sizeof(png_color)); for (i = 0; i < pal->ncolors; i++) { pal_ptr[i].red = pal->colors[i].r; pal_ptr[i].green = pal->colors[i].g; pal_ptr[i].blue = pal->colors[i].b; } png_set_PLTE(png_ptr, info_ptr, pal_ptr, pal->ncolors); free(pal_ptr); } else if (surface->format->BytesPerPixel > 3 || surface->format->Amask) colortype |= PNG_COLOR_MASK_ALPHA; png_set_IHDR(png_ptr, info_ptr, surface->w, surface->h, 8, colortype, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); // png_set_packing(png_ptr); /* Allow BGR surfaces */ if (surface->format->Rmask == bmask && surface->format->Gmask == gmask && surface->format->Bmask == rmask) png_set_bgr(png_ptr); /* Write everything */ png_write_info(png_ptr, info_ptr); #ifdef USE_ROW_POINTERS row_pointers = (png_bytep*) malloc(sizeof(png_bytep)*surface->h); for (i = 0; i < surface->h; i++) row_pointers[i] = (png_bytep)(Uint8*)surface->pixels + i * surface->pitch; png_write_image(png_ptr, row_pointers); free(row_pointers); #else for (i = 0; i < surface->h; i++) png_write_row(png_ptr, (png_bytep)(Uint8*)surface->pixels + i * surface->pitch); #endif png_write_end(png_ptr, info_ptr); /* Done */ png_destroy_write_struct(&png_ptr, &info_ptr); if (freedst) SDL_RWclose(dst); return (SUCCESS); } #endif /* defined(HAVE_LIBPNG) */ /* Some platforms (OS X), require that ALL input event processing be performed by the main thread of the process. To satisfy this requirement, we leverage the SDL_MAIN functionality which does: #defines main SDL_main and we define the main() entry point here. Locally, we run the application's SDL_main in a separate thread, and while that thread is running, the main thread performs event handling and dispatch. */ #define EVENT_REDRAW 1 /* redraw event for SDL */ #define EVENT_CLOSE 2 /* close event for SDL */ #define EVENT_CURSOR 3 /* new cursor for SDL */ #define EVENT_WARP 4 /* warp mouse position for SDL */ #define EVENT_DRAW 5 /* draw/blit region for SDL */ #define EVENT_SHOW 6 /* show SDL capabilities */ #define EVENT_OPEN 7 /* vid_open request */ #define EVENT_EXIT 8 /* program exit */ #define EVENT_SCREENSHOT 9 /* produce screenshot of video window */ #define EVENT_BEEP 10 /* audio beep */ #define MAX_EVENTS 20 /* max events in queue */ typedef struct { SIM_KEY_EVENT events[MAX_EVENTS]; SDL_sem *sem; int32 head; int32 tail; int32 count; } KEY_EVENT_QUEUE; typedef struct { SIM_MOUSE_EVENT events[MAX_EVENTS]; SDL_sem *sem; int32 head; int32 tail; int32 count; } MOUSE_EVENT_QUEUE; int vid_thread (void* arg); int vid_video_events (void); void vid_show_video_event (void); void vid_screenshot_event (void); void vid_beep_event (void); /* libSDL and libSDL2 have significantly different APIs. The consequence is that this code has significant #ifdef sections. The current structure is to implement the API differences in each routine that has a difference. This allows the decision and flow logic to exist once and thus to allow logic changes to be implemented in one place. */ t_bool vid_mouse_captured; int32 vid_flags; /* Open Flags */ int32 vid_width; int32 vid_height; t_bool vid_ready; char vid_title[128]; static void vid_beep_setup (int duration_ms, int tone_frequency); static void vid_beep_cleanup (void); #if SDL_MAJOR_VERSION == 1 /* Some platforms that use X11 display technology have libSDL environments which need to call XInitThreads when libSDL is used in multi-threaded programs. This routine attempts to locate the X11 shareable library and if it is found loads it and calls the XInitThreads routine to meet this requirement. */ #ifdef HAVE_DLOPEN #include <dlfcn.h> #endif static void _XInitThreads (void) { #ifdef HAVE_DLOPEN static void *hLib = NULL; /* handle to Library */ #define __STR_QUOTE(tok) #tok #define __STR(tok) __STR_QUOTE(tok) static const char* lib_name = "libX11." __STR(HAVE_DLOPEN); typedef int (*_func)(); _func _func_ptr = NULL; if (!hLib) hLib = dlopen(lib_name, RTLD_NOW); if (hLib) _func_ptr = (_func)((size_t)dlsym(hLib, "XInitThreads")); if (_func_ptr) _func_ptr(); #endif } t_bool vid_key_state[SDLK_LAST]; SDL_Surface *vid_image; /* video buffer */ SDL_Surface *vid_window; /* window handle */ #else t_bool vid_key_state[SDL_NUM_SCANCODES]; SDL_Texture *vid_texture; /* video buffer in GPU */ SDL_Renderer *vid_renderer; SDL_Window *vid_window; /* window handle */ uint32 vid_windowID; #endif SDL_Thread *vid_thread_handle = NULL; /* event thread handle */ SDL_Cursor *vid_cursor = NULL; /* current cursor */ t_bool vid_cursor_visible = FALSE; /* cursor visibility state */ uint32 vid_mono_palette[2]; /* Monochrome Color Map */ SDL_Color vid_colors[256]; KEY_EVENT_QUEUE vid_key_events; /* keyboard events */ MOUSE_EVENT_QUEUE vid_mouse_events; /* mouse events */ DEVICE *vid_dev; #if defined (SDL_MAIN_AVAILABLE) #if defined (main) #undef main #endif static int main_argc; static char **main_argv; static SDL_Thread *vid_main_thread_handle; int main_thread (void *arg) { SDL_Event user_event; int stat; stat = SDL_main (main_argc, main_argv); user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_EXIT; user_event.user.data1 = NULL; user_event.user.data2 = NULL; while (SDL_PushEvent (&user_event) < 0) sim_os_ms_sleep (10); return stat; } int main (int argc, char *argv[]) { SDL_Event event; int status; main_argc = argc; main_argv = argv; #if SDL_MAJOR_VERSION == 1 _XInitThreads(); SDL_Init (SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE); vid_main_thread_handle = SDL_CreateThread (main_thread , NULL); #else SDL_SetHint (SDL_HINT_RENDER_DRIVER, "software"); SDL_Init (SDL_INIT_VIDEO); vid_main_thread_handle = SDL_CreateThread (main_thread , "simh-main", NULL); #endif sim_os_set_thread_priority (PRIORITY_ABOVE_NORMAL); vid_beep_setup (400, 660); while (1) { int status = SDL_WaitEvent (&event); if (status == 1) { if (event.type == SDL_USEREVENT) { if (event.user.code == EVENT_EXIT) break; if (event.user.code == EVENT_OPEN) vid_video_events (); else { if (event.user.code == EVENT_SHOW) vid_show_video_event (); else { if (event.user.code == EVENT_SCREENSHOT) vid_screenshot_event (); else { if (event.user.code == EVENT_BEEP) vid_beep_event (); else { sim_printf ("main(): Unexpected User event: %d\n", event.user.code); break; } } } } } else { // sim_printf ("main(): Ignoring unexpected event: %d\n", event.type); } } else { if (status < 0) sim_printf ("main() - ` error: %s\n", SDL_GetError()); } } SDL_WaitThread (vid_main_thread_handle, &status); vid_beep_cleanup (); SDL_Quit (); return status; } static t_stat vid_create_window () { int wait_count = 0; SDL_Event user_event; vid_ready = FALSE; user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_OPEN; user_event.user.data1 = NULL; user_event.user.data2 = NULL; SDL_PushEvent (&user_event); while ((!vid_ready) && (++wait_count < 20)) sim_os_ms_sleep (100); if (!vid_ready) { vid_close (); return SCPE_OPENERR; } return SCPE_OK; } #else static int vid_create_window () { int wait_count = 0; #if SDL_MAJOR_VERSION == 1 vid_thread_handle = SDL_CreateThread (vid_thread, NULL); #else vid_thread_handle = SDL_CreateThread (vid_thread, "vid-thread", NULL); #endif if (vid_thread_handle == NULL) { vid_close (); return SCPE_OPENERR; } while ((!vid_ready) && (++wait_count < 20)) sim_os_ms_sleep (100); if (!vid_ready) { vid_close (); return SCPE_OPENERR; } return SCPE_OK; } #endif t_stat vid_open (DEVICE *dptr, const char *title, uint32 width, uint32 height, int flags) { if (!vid_active) { int wait_count = 0; t_stat stat; if ((strlen(sim_name) + 7 + (dptr ? strlen (dptr->name) : 0) + (title ? strlen (title) : 0)) < sizeof (vid_title)) sprintf (vid_title, "%s%s%s%s%s", sim_name, dptr ? " - " : "", dptr ? dptr->name : "", title ? " - " : "", title ? title : ""); else sprintf (vid_title, "%s", sim_name); vid_flags = flags; vid_active = TRUE; vid_width = width; vid_height = height; vid_mouse_captured = FALSE; vid_cursor_visible = (vid_flags & SIM_VID_INPUTCAPTURED); vid_key_events.head = 0; vid_key_events.tail = 0; vid_key_events.count = 0; vid_key_events.sem = SDL_CreateSemaphore (1); vid_mouse_events.head = 0; vid_mouse_events.tail = 0; vid_mouse_events.count = 0; vid_mouse_events.sem = SDL_CreateSemaphore (1); vid_dev = dptr; stat = vid_create_window (); if (stat != SCPE_OK) return stat; sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE, vid_dev, "vid_open() - Success\n"); } return SCPE_OK; } t_stat vid_close (void) { if (vid_active) { SDL_Event user_event; int status; vid_active = FALSE; if (vid_ready) { sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE, vid_dev, "vid_close()\n"); user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_CLOSE; user_event.user.data1 = NULL; user_event.user.data2 = NULL; while (SDL_PushEvent (&user_event) < 0) sim_os_ms_sleep (10); if (vid_thread_handle) { SDL_WaitThread (vid_thread_handle, &status); vid_thread_handle = NULL; } vid_dev = NULL; } while (vid_ready) sim_os_ms_sleep (10); if (vid_mouse_events.sem) { SDL_DestroySemaphore(vid_mouse_events.sem); vid_mouse_events.sem = NULL; } if (vid_key_events.sem) { SDL_DestroySemaphore(vid_key_events.sem); vid_key_events.sem = NULL; } } return SCPE_OK; } t_stat vid_poll_kb (SIM_KEY_EVENT *ev) { if (SDL_SemTryWait (vid_key_events.sem) == 0) { /* get lock */ if (vid_key_events.count > 0) { /* events in queue? */ *ev = vid_key_events.events[vid_key_events.head++]; vid_key_events.count--; if (vid_key_events.head == MAX_EVENTS) vid_key_events.head = 0; SDL_SemPost (vid_key_events.sem); return SCPE_OK; } SDL_SemPost (vid_key_events.sem); } return SCPE_EOF; } t_stat vid_poll_mouse (SIM_MOUSE_EVENT *ev) { t_stat stat = SCPE_EOF; SIM_MOUSE_EVENT *nev; if (SDL_SemTryWait (vid_mouse_events.sem) == 0) { if (vid_mouse_events.count > 0) { stat = SCPE_OK; *ev = vid_mouse_events.events[vid_mouse_events.head++]; vid_mouse_events.count--; if (vid_mouse_events.head == MAX_EVENTS) vid_mouse_events.head = 0; nev = &vid_mouse_events.events[vid_mouse_events.head]; if ((vid_mouse_events.count > 0) && (0 == (ev->x_rel + nev->x_rel)) && (0 == (ev->y_rel + nev->y_rel)) && (ev->b1_state == nev->b1_state) && (ev->b2_state == nev->b2_state) && (ev->b3_state == nev->b3_state)) { if ((++vid_mouse_events.head) == MAX_EVENTS) vid_mouse_events.head = 0; vid_mouse_events.count--; stat = SCPE_EOF; sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "vid_poll_mouse: ignoring bouncing events\n"); } } if (SDL_SemPost (vid_mouse_events.sem)) sim_printf ("%s: vid_poll_mouse(): SDL_SemPost error: %s\n", sim_dname(vid_dev), SDL_GetError()); } return stat; } void vid_draw (int32 x, int32 y, int32 w, int32 h, uint32 *buf) { #if SDL_MAJOR_VERSION == 1 int32 i; uint32* pixels; sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "vid_draw(%d, %d, %d, %d)\n", x, y, w, h); pixels = (uint32 *)vid_image->pixels; for (i = 0; i < h; i++) memcpy (pixels + ((i + y) * vid_width) + x, buf + w*i, w*sizeof(*pixels)); #else SDL_Event user_event; SDL_Rect *vid_dst; uint32 *vid_data; sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "vid_draw(%d, %d, %d, %d)\n", x, y, w, h); vid_dst = (SDL_Rect *)malloc (sizeof(*vid_dst)); if (!vid_dst) { sim_printf ("%s: vid_draw() memory allocation error\n", vid_dev ? sim_dname(vid_dev) : "Video Device"); return; } vid_dst->x = x; vid_dst->y = y; vid_dst->w = w; vid_dst->h = h; vid_data = (uint32 *)malloc (w*h*sizeof(*buf)); if (!vid_data) { sim_printf ("%s: vid_draw() memory allocation error\n", vid_dev ? sim_dname(vid_dev) : "Video Device"); free (vid_dst); return; } memcpy (vid_data, buf, w*h*sizeof(*buf)); user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_DRAW; user_event.user.data1 = (void *)vid_dst; user_event.user.data2 = (void *)vid_data; if (SDL_PushEvent (&user_event) < 0) { sim_printf ("%s: vid_draw() SDL_PushEvent error: %s\n", vid_dev ? sim_dname(vid_dev) : "Video Device", SDL_GetError()); free (vid_dst); free (vid_data); } #endif } t_stat vid_set_cursor (t_bool visible, uint32 width, uint32 height, uint8 *data, uint8 *mask, uint32 hot_x, uint32 hot_y) { SDL_Cursor *cursor = SDL_CreateCursor (data, mask, width, height, hot_x, hot_y); SDL_Event user_event; sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "vid_set_cursor(%s, %d, %d) Setting New Cursor\n", visible ? "visible" : "invisible", width, height); if (sim_deb) { uint32 i, j; for (i=0; i<height; i++) { sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "Cursor: "); for (j=0; j<width; j++) { int byte = (j + i*width) >> 3; int bit = 7 - ((j + i*width) & 0x7); static char mode[] = "TWIB"; sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "%c", mode[(((data[byte]>>bit)&1)<<1)|(mask[byte]>>bit)&1]); } sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "\n"); } } user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_CURSOR; user_event.user.data1 = cursor; user_event.user.data2 = (void *)((size_t)visible); if (SDL_PushEvent (&user_event) < 0) { sim_printf ("%s: vid_set_cursor() SDL_PushEvent error: %s\n", vid_dev ? sim_dname(vid_dev) : "Video Device", SDL_GetError()); SDL_FreeCursor (cursor); } return SCPE_OK; } void vid_set_cursor_position (int32 x, int32 y) { int32 x_delta = vid_cursor_x - x; int32 y_delta = vid_cursor_y - y; if (vid_flags & SIM_VID_INPUTCAPTURED) return; if ((x_delta) || (y_delta)) { sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "vid_set_cursor_position(%d, %d) - Cursor position changed\n", x, y); /* Any queued mouse motion events need to have their relative positions adjusted since they were queued based on different info. */ if (SDL_SemWait (vid_mouse_events.sem) == 0) { int32 i; SIM_MOUSE_EVENT *ev; for (i=0; i<vid_mouse_events.count; i++) { ev = &vid_mouse_events.events[(vid_mouse_events.head + i)%MAX_EVENTS]; sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "Pending Mouse Motion Event Adjusted from: (%d, %d) to (%d, %d)\n", ev->x_rel, ev->y_rel, ev->x_rel + x_delta, ev->y_rel + y_delta); ev->x_rel += x_delta; ev->y_rel += y_delta; } if (SDL_SemPost (vid_mouse_events.sem)) sim_printf ("%s: vid_set_cursor_position(): SDL_SemPost error: %s\n", vid_dev ? sim_dname(vid_dev) : "Video Device", SDL_GetError()); } else { sim_printf ("%s: vid_set_cursor_position(): SDL_SemWait error: %s\n", vid_dev ? sim_dname(vid_dev) : "Video Device", SDL_GetError()); } vid_cursor_x = x; vid_cursor_y = y; if (vid_cursor_visible) { SDL_Event user_event; user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_WARP; user_event.user.data1 = NULL; user_event.user.data2 = NULL; if (SDL_PushEvent (&user_event) < 0) sim_printf ("%s: vid_set_cursor_position() SDL_PushEvent error: %s\n", sim_dname(vid_dev), SDL_GetError()); sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "vid_set_cursor_position() - Warp Queued\n"); } else { sim_debug (SIM_VID_DBG_CURSOR, vid_dev, "vid_set_cursor_position() - Warp Skipped\n"); } } } void vid_refresh (void) { SDL_Event user_event; sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "vid_refresh() - Queueing Refresh Event\n"); user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_REDRAW; user_event.user.data1 = NULL; user_event.user.data2 = NULL; if (SDL_PushEvent (&user_event) < 0) sim_printf ("%s: vid_refresh() SDL_PushEvent error: %s\n", sim_dname(vid_dev), SDL_GetError()); } int vid_map_key (int key) { switch (key) { case SDLK_BACKSPACE: return SIM_KEY_BACKSPACE; case SDLK_TAB: return SIM_KEY_TAB; case SDLK_RETURN: return SIM_KEY_ENTER; case SDLK_ESCAPE: return SIM_KEY_ESC; case SDLK_SPACE: return SIM_KEY_SPACE; case SDLK_QUOTE: return SIM_KEY_SINGLE_QUOTE; case SDLK_COMMA: return SIM_KEY_COMMA; case SDLK_MINUS: return SIM_KEY_MINUS; case SDLK_PERIOD: return SIM_KEY_PERIOD; case SDLK_SLASH: return SIM_KEY_SLASH; case SDLK_0: return SIM_KEY_0; case SDLK_1: return SIM_KEY_1; case SDLK_2: return SIM_KEY_2; case SDLK_3: return SIM_KEY_3; case SDLK_4: return SIM_KEY_4; case SDLK_5: return SIM_KEY_5; case SDLK_6: return SIM_KEY_6; case SDLK_7: return SIM_KEY_7; case SDLK_8: return SIM_KEY_8; case SDLK_9: return SIM_KEY_9; case SDLK_SEMICOLON: return SIM_KEY_SEMICOLON; case SDLK_EQUALS: return SIM_KEY_EQUALS; case SDLK_LEFTBRACKET: return SIM_KEY_LEFT_BRACKET; case SDLK_BACKSLASH: return SIM_KEY_BACKSLASH; case SDLK_RIGHTBRACKET: return SIM_KEY_RIGHT_BRACKET; case SDLK_BACKQUOTE: return SIM_KEY_BACKQUOTE; case SDLK_a: return SIM_KEY_A; case SDLK_b: return SIM_KEY_B; case SDLK_c: return SIM_KEY_C; case SDLK_d: return SIM_KEY_D; case SDLK_e: return SIM_KEY_E; case SDLK_f: return SIM_KEY_F; case SDLK_g: return SIM_KEY_G; case SDLK_h: return SIM_KEY_H; case SDLK_i: return SIM_KEY_I; case SDLK_j: return SIM_KEY_J; case SDLK_k: return SIM_KEY_K; case SDLK_l: return SIM_KEY_L; case SDLK_m: return SIM_KEY_M; case SDLK_n: return SIM_KEY_N; case SDLK_o: return SIM_KEY_O; case SDLK_p: return SIM_KEY_P; case SDLK_q: return SIM_KEY_Q; case SDLK_r: return SIM_KEY_R; case SDLK_s: return SIM_KEY_S; case SDLK_t: return SIM_KEY_T; case SDLK_u: return SIM_KEY_U; case SDLK_v: return SIM_KEY_V; case SDLK_w: return SIM_KEY_W; case SDLK_x: return SIM_KEY_X; case SDLK_y: return SIM_KEY_Y; case SDLK_z: return SIM_KEY_Z; case SDLK_DELETE: return SIM_KEY_DELETE; #if SDL_MAJOR_VERSION == 1 case SDLK_KP0: return SIM_KEY_KP_INSERT; case SDLK_KP1: return SIM_KEY_KP_END; case SDLK_KP2: return SIM_KEY_KP_DOWN; case SDLK_KP3: return SIM_KEY_KP_PAGE_DOWN; case SDLK_KP4: return SIM_KEY_KP_LEFT; case SDLK_KP5: return SIM_KEY_KP_5; case SDLK_KP6: return SIM_KEY_KP_RIGHT; case SDLK_KP7: return SIM_KEY_KP_HOME; case SDLK_KP8: return SIM_KEY_KP_UP; case SDLK_KP9: return SIM_KEY_KP_PAGE_UP; #else case SDLK_KP_0: return SIM_KEY_KP_INSERT; case SDLK_KP_1: return SIM_KEY_KP_END; case SDLK_KP_2: return SIM_KEY_KP_DOWN; case SDLK_KP_3: return SIM_KEY_KP_PAGE_DOWN; case SDLK_KP_4: return SIM_KEY_KP_LEFT; case SDLK_KP_5: return SIM_KEY_KP_5; case SDLK_KP_6: return SIM_KEY_KP_RIGHT; case SDLK_KP_7: return SIM_KEY_KP_HOME; case SDLK_KP_8: return SIM_KEY_KP_UP; case SDLK_KP_9: return SIM_KEY_KP_PAGE_UP; #endif case SDLK_KP_PERIOD: return SIM_KEY_KP_DELETE; case SDLK_KP_DIVIDE: return SIM_KEY_KP_DIVIDE; case SDLK_KP_MULTIPLY: return SIM_KEY_KP_MULTIPLY; case SDLK_KP_MINUS: return SIM_KEY_KP_SUBTRACT; case SDLK_KP_PLUS: return SIM_KEY_KP_ADD; case SDLK_KP_ENTER: return SIM_KEY_KP_ENTER; case SDLK_UP: return SIM_KEY_UP; case SDLK_DOWN: return SIM_KEY_DOWN; case SDLK_RIGHT: return SIM_KEY_RIGHT; case SDLK_LEFT: return SIM_KEY_LEFT; case SDLK_INSERT: return SIM_KEY_INSERT; case SDLK_HOME: return SIM_KEY_HOME; case SDLK_END: return SIM_KEY_END; case SDLK_PAGEUP: return SIM_KEY_PAGE_UP; case SDLK_PAGEDOWN: return SIM_KEY_PAGE_DOWN; case SDLK_F1: return SIM_KEY_F1; case SDLK_F2: return SIM_KEY_F2; case SDLK_F3: return SIM_KEY_F3; case SDLK_F4: return SIM_KEY_F4; case SDLK_F5: return SIM_KEY_F5; case SDLK_F6: return SIM_KEY_F6; case SDLK_F7: return SIM_KEY_F7; case SDLK_F8: return SIM_KEY_F8; case SDLK_F9: return SIM_KEY_F9; case SDLK_F10: return SIM_KEY_F10; case SDLK_F11: return SIM_KEY_F11; case SDLK_F12: return SIM_KEY_F12; #if SDL_MAJOR_VERSION != 1 case SDLK_NUMLOCKCLEAR: return SIM_KEY_NUM_LOCK; #endif case SDLK_CAPSLOCK: return SIM_KEY_CAPS_LOCK; #if SDL_MAJOR_VERSION == 1 case SDLK_SCROLLOCK: return SIM_KEY_SCRL_LOCK; #else case SDLK_SCROLLLOCK: return SIM_KEY_SCRL_LOCK; #endif case SDLK_RSHIFT: return SIM_KEY_SHIFT_R; case SDLK_LSHIFT: return SIM_KEY_SHIFT_L; case SDLK_RCTRL: return SIM_KEY_CTRL_R; case SDLK_LCTRL: return SIM_KEY_CTRL_L; case SDLK_RALT: return SIM_KEY_ALT_R; case SDLK_LALT: return SIM_KEY_ALT_L; #if SDL_MAJOR_VERSION == 1 case SDLK_RMETA: return SIM_KEY_ALT_R; case SDLK_LMETA: return SIM_KEY_WIN_L; #else case SDLK_LGUI: return SIM_KEY_WIN_L; case SDLK_RGUI: return SIM_KEY_WIN_R; #endif #if SDL_MAJOR_VERSION == 1 case SDLK_PRINT: return SIM_KEY_PRINT; #else case SDLK_PRINTSCREEN: return SIM_KEY_PRINT; #endif case SDLK_PAUSE: return SIM_KEY_PAUSE; case SDLK_MENU: return SIM_KEY_MENU; default: return SIM_KEY_UNKNOWN; } } void vid_key (SDL_KeyboardEvent *event) { SIM_KEY_EVENT ev; if (vid_mouse_captured) { static const Uint8 *KeyStates = NULL; static int numkeys; if (!KeyStates) #if SDL_MAJOR_VERSION == 1 KeyStates = SDL_GetKeyState(&numkeys); if ((vid_flags & SIM_VID_INPUTCAPTURED) && (event->state == SDL_PRESSED) && KeyStates[SDLK_RSHIFT] && (KeyStates[SDLK_LCTRL] || KeyStates[SDLK_RCTRL])) { #else KeyStates = SDL_GetKeyboardState(&numkeys); if ((vid_flags & SIM_VID_INPUTCAPTURED) && (event->state == SDL_PRESSED) && KeyStates[SDL_SCANCODE_RSHIFT] && (KeyStates[SDL_SCANCODE_LCTRL] || KeyStates[SDL_SCANCODE_RCTRL])) { #endif sim_debug (SIM_VID_DBG_KEY, vid_dev, "vid_key() - Cursor Release\n"); #if SDL_MAJOR_VERSION == 1 if (SDL_WM_GrabInput (SDL_GRAB_OFF) < 0) /* relese cursor */ sim_printf ("%s: vid_key(): SDL_WM_GrabInput error: %s\n", sim_dname(vid_dev), SDL_GetError()); if (SDL_ShowCursor (SDL_ENABLE) < 0) /* show cursor */ sim_printf ("%s: vid_key(): SDL_ShowCursor error: %s\n", sim_dname(vid_dev), SDL_GetError()); #else if (SDL_SetRelativeMouseMode(SDL_FALSE) < 0) /* release cursor, show cursor */ sim_printf ("%s: vid_key(): SDL_SetRelativeMouseMode error: %s\n", sim_dname(vid_dev), SDL_GetError()); #endif vid_mouse_captured = FALSE; return; } } if (!sim_is_running) return; if (SDL_SemWait (vid_key_events.sem) == 0) { if (vid_key_events.count < MAX_EVENTS) { ev.key = vid_map_key (event->keysym.sym); sim_debug (SIM_VID_DBG_KEY, vid_dev, "Keyboard Event: State: %s, Keysym(scancode,sym): (%d,%d) - %s\n", (event->state == SDL_PRESSED) ? "PRESSED" : "RELEASED", event->keysym.scancode, event->keysym.sym, vid_key_name(ev.key)); if (event->state == SDL_PRESSED) { #if SDL_MAJOR_VERSION == 1 if (!vid_key_state[event->keysym.sym]) { /* Key was not down before */ vid_key_state[event->keysym.sym] = TRUE; #else if (!vid_key_state[event->keysym.scancode]) {/* Key was not down before */ vid_key_state[event->keysym.scancode] = TRUE; #endif ev.state = SIM_KEYPRESS_DOWN; } else ev.state = SIM_KEYPRESS_REPEAT; } else { #if SDL_MAJOR_VERSION == 1 vid_key_state[event->keysym.sym] = FALSE; #else vid_key_state[event->keysym.scancode] = FALSE; #endif ev.state = SIM_KEYPRESS_UP; } vid_key_events.events[vid_key_events.tail++] = ev; vid_key_events.count++; if (vid_key_events.tail == MAX_EVENTS) vid_key_events.tail = 0; } else { sim_debug (SIM_VID_DBG_KEY, vid_dev, "Keyboard Event DISCARDED: State: %s, Keysym: Scancode: %d, Keysym: %d\n", (event->state == SDL_PRESSED) ? "PRESSED" : "RELEASED", event->keysym.scancode, event->keysym.sym); } if (SDL_SemPost (vid_key_events.sem)) sim_printf ("%s: vid_key(): SDL_SemPost error: %s\n", sim_dname(vid_dev), SDL_GetError()); } } void vid_mouse_move (SDL_MouseMotionEvent *event) { SDL_Event dummy_event; SDL_MouseMotionEvent *dev = (SDL_MouseMotionEvent *)&dummy_event; SIM_MOUSE_EVENT ev; if ((!vid_mouse_captured) && (vid_flags & SIM_VID_INPUTCAPTURED)) return; if (!sim_is_running) return; if (!vid_cursor_visible) return; sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Move Event: pos:(%d,%d) rel:(%d,%d) buttons:(%d,%d,%d)\n", event->x, event->y, event->xrel, event->yrel, (event->state & SDL_BUTTON(SDL_BUTTON_LEFT)) ? 1 : 0, (event->state & SDL_BUTTON(SDL_BUTTON_MIDDLE)) ? 1 : 0, (event->state & SDL_BUTTON(SDL_BUTTON_RIGHT)) ? 1 : 0); #if SDL_MAJOR_VERSION == 1 while (SDL_PeepEvents (&dummy_event, 1, SDL_GETEVENT, SDL_MOUSEMOTIONMASK)) { #else while (SDL_PeepEvents (&dummy_event, 1, SDL_GETEVENT, SDL_MOUSEMOTION, SDL_MOUSEMOTION)) { #endif /* Coalesce motion activity to avoid thrashing */ event->xrel += dev->xrel; event->yrel += dev->yrel; event->x = dev->x; event->y = dev->y; event->state = dev->state; sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Move Event: Additional Event Coalesced:pos:(%d,%d) rel:(%d,%d) buttons:(%d,%d,%d)\n", dev->x, dev->y, dev->xrel, dev->yrel, (dev->state & SDL_BUTTON(SDL_BUTTON_LEFT)) ? 1 : 0, (dev->state & SDL_BUTTON(SDL_BUTTON_MIDDLE)) ? 1 : 0, (dev->state & SDL_BUTTON(SDL_BUTTON_RIGHT)) ? 1 : 0); }; if (SDL_SemWait (vid_mouse_events.sem) == 0) { if (!vid_mouse_captured) { event->xrel = (event->x - vid_cursor_x); event->yrel = (event->y - vid_cursor_y); } vid_mouse_b1 = (event->state & SDL_BUTTON(SDL_BUTTON_LEFT)) ? TRUE : FALSE; vid_mouse_b2 = (event->state & SDL_BUTTON(SDL_BUTTON_MIDDLE)) ? TRUE : FALSE; vid_mouse_b3 = (event->state & SDL_BUTTON(SDL_BUTTON_RIGHT)) ? TRUE : FALSE; sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Move Event: pos:(%d,%d) rel:(%d,%d) buttons:(%d,%d,%d) - Count: %d vid_cursor:(%d,%d)\n", event->x, event->y, event->xrel, event->yrel, (event->state & SDL_BUTTON(SDL_BUTTON_LEFT)) ? 1 : 0, (event->state & SDL_BUTTON(SDL_BUTTON_MIDDLE)) ? 1 : 0, (event->state & SDL_BUTTON(SDL_BUTTON_RIGHT)) ? 1 : 0, vid_mouse_events.count, vid_cursor_x, vid_cursor_y); if (vid_mouse_events.count < MAX_EVENTS) { SIM_MOUSE_EVENT *tail = &vid_mouse_events.events[(vid_mouse_events.tail+MAX_EVENTS-1)%MAX_EVENTS]; ev.x_rel = event->xrel; ev.y_rel = event->yrel; ev.b1_state = vid_mouse_b1; ev.b2_state = vid_mouse_b2; ev.b3_state = vid_mouse_b3; ev.x_pos = event->x; ev.y_pos = event->y; if ((vid_mouse_events.count > 0) && /* Is there a tail event? */ (ev.b1_state == tail->b1_state) && /* With the same button state? */ (ev.b2_state == tail->b2_state) && (ev.b3_state == tail->b3_state)) { /* Merge the motion */ tail->x_rel += ev.x_rel; tail->y_rel += ev.y_rel; tail->x_pos = ev.x_pos; tail->y_pos = ev.y_pos; sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Move Event: Coalesced into pending event: (%d,%d)\n", tail->x_rel, tail->y_rel); } else { /* Add a new event */ vid_mouse_events.events[vid_mouse_events.tail++] = ev; vid_mouse_events.count++; if (vid_mouse_events.tail == MAX_EVENTS) vid_mouse_events.tail = 0; } } else { sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Move Event Discarded: Count: %d\n", vid_mouse_events.count); } if (SDL_SemPost (vid_mouse_events.sem)) sim_printf ("%s: vid_mouse_move(): SDL_SemPost error: %s\n", sim_dname(vid_dev), SDL_GetError()); } } void vid_mouse_button (SDL_MouseButtonEvent *event) { SDL_Event dummy_event; SIM_MOUSE_EVENT ev; t_bool state; if ((!vid_mouse_captured) && (vid_flags & SIM_VID_INPUTCAPTURED)) { if ((event->state == SDL_PRESSED) && (event->button == SDL_BUTTON_LEFT)) { /* left click and cursor not captured? */ sim_debug (SIM_VID_DBG_KEY, vid_dev, "vid_mouse_button() - Cursor Captured\n"); #if SDL_MAJOR_VERSION == 1 SDL_WM_GrabInput (SDL_GRAB_ON); /* lock cursor to window */ SDL_ShowCursor (SDL_DISABLE); /* hide cursor */ SDL_WarpMouse (vid_width/2, vid_height/2); /* back to center */ SDL_PumpEvents (); while (SDL_PeepEvents (&dummy_event, 1, SDL_GETEVENT, SDL_MOUSEMOTIONMASK)) {}; #else if (SDL_SetRelativeMouseMode (SDL_TRUE) < 0) /* lock cursor to window, hide cursor */ sim_printf ("%s: vid_mouse_button(): SDL_SetRelativeMouseMode error: %s\n", sim_dname(vid_dev), SDL_GetError()); SDL_WarpMouseInWindow (NULL, vid_width/2, vid_height/2);/* back to center */ SDL_PumpEvents (); while (SDL_PeepEvents (&dummy_event, 1, SDL_GETEVENT, SDL_MOUSEMOTION, SDL_MOUSEMOTION)) {}; #endif vid_mouse_captured = TRUE; } return; } if (!sim_is_running) return; state = (event->state == SDL_PRESSED) ? TRUE : FALSE; if (SDL_SemWait (vid_mouse_events.sem) == 0) { switch (event->button) { case SDL_BUTTON_LEFT: vid_mouse_b1 = state; break; case SDL_BUTTON_MIDDLE: vid_mouse_b2 = state; break; case SDL_BUTTON_RIGHT: vid_mouse_b3 = state; break; } sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Button Event: State: %d, Button: %d, (%d,%d)\n", event->state, event->button, event->x, event->y); if (vid_mouse_events.count < MAX_EVENTS) { ev.x_rel = 0; ev.y_rel = 0; ev.x_pos = event->x; ev.y_pos = event->y; ev.b1_state = vid_mouse_b1; ev.b2_state = vid_mouse_b2; ev.b3_state = vid_mouse_b3; vid_mouse_events.events[vid_mouse_events.tail++] = ev; vid_mouse_events.count++; if (vid_mouse_events.tail == MAX_EVENTS) vid_mouse_events.tail = 0; } else { sim_debug (SIM_VID_DBG_MOUSE, vid_dev, "Mouse Button Event Discarded: Count: %d\n", vid_mouse_events.count); } if (SDL_SemPost (vid_mouse_events.sem)) sim_printf ("%s: Mouse Button Event: SDL_SemPost error: %s\n", sim_dname(vid_dev), SDL_GetError()); } } void vid_update (void) { SDL_Rect vid_dst; vid_dst.x = 0; vid_dst.y = 0; vid_dst.w = vid_width; vid_dst.h = vid_height; sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "Video Update Event: \n"); if (sim_deb) fflush (sim_deb); #if SDL_MAJOR_VERSION == 1 if (SDL_BlitSurface (vid_image, NULL, vid_window, &vid_dst) < 0) sim_printf ("%s: vid_update(): SDL_BlitSurface error: %s\n", sim_dname(vid_dev), SDL_GetError()); SDL_UpdateRects (vid_window, 1, &vid_dst); #else if (SDL_RenderClear (vid_renderer)) sim_printf ("%s: Video Update Event: SDL_RenderClear error: %s\n", sim_dname(vid_dev), SDL_GetError()); if (SDL_RenderCopy (vid_renderer, vid_texture, NULL, NULL)) sim_printf ("%s: Video Update Event: SDL_RenderCopy error: %s\n", sim_dname(vid_dev), SDL_GetError()); SDL_RenderPresent (vid_renderer); #endif } void vid_update_cursor (SDL_Cursor *cursor, t_bool visible) { if (!cursor) return; sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "Cursor Update Event: Previously %s, Now %s, New Cursor object at: %p, Old Cursor object at: %p\n", SDL_ShowCursor(-1) ? "visible" : "invisible", visible ? "visible" : "invisible", cursor, vid_cursor); SDL_SetCursor (cursor); #if SDL_MAJOR_VERSION == 1 if (visible) SDL_WarpMouse (vid_cursor_x, vid_cursor_y);/* sync position */ #else if ((vid_window == SDL_GetMouseFocus ()) && visible) SDL_WarpMouseInWindow (NULL, vid_cursor_x, vid_cursor_y);/* sync position */ #endif if ((vid_cursor != cursor) && (vid_cursor)) SDL_FreeCursor (vid_cursor); vid_cursor = cursor; SDL_ShowCursor (visible); vid_cursor_visible = visible; } void vid_warp_position (void) { sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "Mouse Warp Event: Warp to: (%d,%d)\n", vid_cursor_x, vid_cursor_y); SDL_PumpEvents (); #if SDL_MAJOR_VERSION == 1 SDL_WarpMouse (vid_cursor_x, vid_cursor_y); #else SDL_WarpMouseInWindow (NULL, vid_cursor_x, vid_cursor_y); #endif SDL_PumpEvents (); } void vid_draw_region (SDL_UserEvent *event) { SDL_Rect *vid_dst = (SDL_Rect *)event->data1; uint32 *buf = (uint32 *)event->data2; sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "Draw Region Event: (%d,%d,%d,%d)\n", vid_dst->x, vid_dst->x, vid_dst->w, vid_dst->h); #if SDL_MAJOR_VERSION == 1 if (1) { int32 i; uint32* pixels; pixels = (uint32 *)vid_image->pixels; for (i = 0; i < vid_dst->h; i++) memcpy (pixels + ((i + vid_dst->y) * vid_width) + vid_dst->x, buf + vid_dst->w*i, vid_dst->w*sizeof(*pixels)); } #else if (SDL_UpdateTexture(vid_texture, vid_dst, buf, vid_dst->w*sizeof(*buf))) sim_printf ("%s: vid_draw() - SDL_UpdateTexture error: %s\n", sim_dname(vid_dev), SDL_GetError()); #endif free (vid_dst); free (buf); event->data1 = NULL; } int vid_video_events (void) { SDL_Event event; #if SDL_MAJOR_VERSION == 1 static const char *eventtypes[] = { "NOEVENT", /**< Unused (do not remove) */ "ACTIVEEVENT", /**< Application loses/gains visibility */ "KEYDOWN", /**< Keys pressed */ "KEYUP", /**< Keys released */ "MOUSEMOTION", /**< Mouse moved */ "MOUSEBUTTONDOWN", /**< Mouse button pressed */ "MOUSEBUTTONUP", /**< Mouse button released */ "JOYAXISMOTION", /**< Joystick axis motion */ "JOYBALLMOTION", /**< Joystick trackball motion */ "JOYHATMOTION", /**< Joystick hat position change */ "JOYBUTTONDOWN", /**< Joystick button pressed */ "JOYBUTTONUP", /**< Joystick button released */ "QUIT", /**< User-requested quit */ "SYSWMEVENT", /**< System specific event */ "EVENT_RESERVEDA", /**< Reserved for future use.. */ "EVENT_RESERVEDB", /**< Reserved for future use.. */ "VIDEORESIZE", /**< User resized video mode */ "VIDEOEXPOSE", /**< Screen needs to be redrawn */ "EVENT_RESERVED2", /**< Reserved for future use.. */ "EVENT_RESERVED3", /**< Reserved for future use.. */ "EVENT_RESERVED4", /**< Reserved for future use.. */ "EVENT_RESERVED5", /**< Reserved for future use.. */ "EVENT_RESERVED6", /**< Reserved for future use.. */ "EVENT_RESERVED7", /**< Reserved for future use.. */ "USEREVENT", /** Events SDL_USEREVENT(24) through SDL_MAXEVENTS-1(31) are for your use */ "", "", "", "", "", "", "" }; #else static const char *eventtypes[SDL_LASTEVENT]; #endif static const char *windoweventtypes[256]; static t_bool initialized = FALSE; if (!initialized) { initialized = TRUE; #if SDL_MAJOR_VERSION != 1 eventtypes[SDL_QUIT] = "QUIT"; /**< User-requested quit */ /* These application events have special meaning on iOS, see README-ios.txt for details */ eventtypes[SDL_APP_TERMINATING] = "APP_TERMINATING"; /**< The application is being terminated by the OS Called on iOS in applicationWillTerminate() Called on Android in onDestroy() */ eventtypes[SDL_APP_LOWMEMORY] = "APP_LOWMEMORY"; /**< The application is low on memory, free memory if possible. Called on iOS in applicationDidReceiveMemoryWarning() Called on Android in onLowMemory() */ eventtypes[SDL_APP_WILLENTERBACKGROUND] = "APP_WILLENTERBACKGROUND"; /**< The application is about to enter the background Called on iOS in applicationWillResignActive() Called on Android in onPause() */ eventtypes[SDL_APP_DIDENTERBACKGROUND] = "APP_DIDENTERBACKGROUND"; /**< The application did enter the background and may not get CPU for some time Called on iOS in applicationDidEnterBackground() Called on Android in onPause() */ eventtypes[SDL_APP_WILLENTERFOREGROUND] = "APP_WILLENTERFOREGROUND"; /**< The application is about to enter the foreground Called on iOS in applicationWillEnterForeground() Called on Android in onResume() */ eventtypes[SDL_APP_DIDENTERFOREGROUND] = "APP_DIDENTERFOREGROUND"; /**< The application is now interactive Called on iOS in applicationDidBecomeActive() Called on Android in onResume() */ /* Window events */ eventtypes[SDL_WINDOWEVENT] = "WINDOWEVENT"; /**< Window state change */ eventtypes[SDL_SYSWMEVENT] = "SYSWMEVENT"; /**< System specific event */ windoweventtypes[SDL_WINDOWEVENT_NONE] = "NONE"; /**< Never used */ windoweventtypes[SDL_WINDOWEVENT_SHOWN] = "SHOWN"; /**< Window has been shown */ windoweventtypes[SDL_WINDOWEVENT_HIDDEN] = "HIDDEN"; /**< Window has been hidden */ windoweventtypes[SDL_WINDOWEVENT_EXPOSED] = "EXPOSED"; /**< Window has been exposed and should be redrawn */ windoweventtypes[SDL_WINDOWEVENT_MOVED] = "MOVED"; /**< Window has been moved to data1, data2 */ windoweventtypes[SDL_WINDOWEVENT_RESIZED] = "RESIZED"; /**< Window has been resized to data1xdata2 */ windoweventtypes[SDL_WINDOWEVENT_SIZE_CHANGED] = "SIZE_CHANGED";/**< The window size has changed, either as a result of an API call or through the system or user changing the window size. */ windoweventtypes[SDL_WINDOWEVENT_MINIMIZED] = "MINIMIZED"; /**< Window has been minimized */ windoweventtypes[SDL_WINDOWEVENT_MAXIMIZED] = "MAXIMIZED"; /**< Window has been maximized */ windoweventtypes[SDL_WINDOWEVENT_RESTORED] = "RESTORED"; /**< Window has been restored to normal size and position */ windoweventtypes[SDL_WINDOWEVENT_ENTER] = "ENTER"; /**< Window has gained mouse focus */ windoweventtypes[SDL_WINDOWEVENT_LEAVE] = "LEAVE"; /**< Window has lost mouse focus */ windoweventtypes[SDL_WINDOWEVENT_FOCUS_GAINED] = "FOCUS_GAINED";/**< Window has gained keyboard focus */ windoweventtypes[SDL_WINDOWEVENT_FOCUS_LOST] = "FOCUS_LOST"; /**< Window has lost keyboard focus */ windoweventtypes[SDL_WINDOWEVENT_CLOSE] = "CLOSE"; /**< The window manager requests that the window be closed */ /* Keyboard events */ eventtypes[SDL_KEYDOWN] = "KEYDOWN"; /**< Key pressed */ eventtypes[SDL_KEYUP] = "KEYUP"; /**< Key released */ eventtypes[SDL_TEXTEDITING] = "TEXTEDITING"; /**< Keyboard text editing (composition) */ eventtypes[SDL_TEXTINPUT] = "TEXTINPUT"; /**< Keyboard text input */ /* Mouse events */ eventtypes[SDL_MOUSEMOTION] = "MOUSEMOTION"; /**< Mouse moved */ eventtypes[SDL_MOUSEBUTTONDOWN] = "MOUSEBUTTONDOWN"; /**< Mouse button pressed */ eventtypes[SDL_MOUSEBUTTONUP] = "MOUSEBUTTONUP"; /**< Mouse button released */ eventtypes[SDL_MOUSEWHEEL] = "MOUSEWHEEL"; /**< Mouse wheel motion */ /* Joystick events */ eventtypes[SDL_JOYAXISMOTION] = "JOYAXISMOTION"; /**< Joystick axis motion */ eventtypes[SDL_JOYBALLMOTION] = "JOYBALLMOTION"; /**< Joystick trackball motion */ eventtypes[SDL_JOYHATMOTION] = "JOYHATMOTION"; /**< Joystick hat position change */ eventtypes[SDL_JOYBUTTONDOWN] = "JOYBUTTONDOWN"; /**< Joystick button pressed */ eventtypes[SDL_JOYBUTTONUP] = "JOYBUTTONUP"; /**< Joystick button released */ eventtypes[SDL_JOYDEVICEADDED] = "JOYDEVICEADDED"; /**< A new joystick has been inserted into the system */ eventtypes[SDL_JOYDEVICEREMOVED] = "JOYDEVICEREMOVED"; /**< An opened joystick has been removed */ /* Game controller events */ eventtypes[SDL_CONTROLLERAXISMOTION] = "CONTROLLERAXISMOTION"; /**< Game controller axis motion */ eventtypes[SDL_CONTROLLERBUTTONDOWN] = "CONTROLLERBUTTONDOWN"; /**< Game controller button pressed */ eventtypes[SDL_CONTROLLERBUTTONUP] = "CONTROLLERBUTTONUP"; /**< Game controller button released */ eventtypes[SDL_CONTROLLERDEVICEADDED] = "CONTROLLERDEVICEADDED"; /**< A new Game controller has been inserted into the system */ eventtypes[SDL_CONTROLLERDEVICEREMOVED] = "CONTROLLERDEVICEREMOVED"; /**< An opened Game controller has been removed */ eventtypes[SDL_CONTROLLERDEVICEREMAPPED] = "CONTROLLERDEVICEREMAPPED"; /**< The controller mapping was updated */ /* Touch events */ eventtypes[SDL_FINGERDOWN] = "FINGERDOWN"; eventtypes[SDL_FINGERUP] = "FINGERUP"; eventtypes[SDL_FINGERMOTION] = "FINGERMOTION"; /* Gesture events */ eventtypes[SDL_DOLLARGESTURE] = "DOLLARGESTURE"; eventtypes[SDL_DOLLARRECORD] = "DOLLARRECORD"; eventtypes[SDL_MULTIGESTURE] = "MULTIGESTURE"; /* Clipboard events */ eventtypes[SDL_CLIPBOARDUPDATE] = "CLIPBOARDUPDATE"; /**< The clipboard changed */ /* Drag and drop events */ eventtypes[SDL_DROPFILE] = "DROPFILE"; /**< The system requests a file open */ #if (SDL_MINOR_VERSION > 0) || (SDL_PATCHLEVEL >= 3) /* Render events */ eventtypes[SDL_RENDER_TARGETS_RESET] = "RENDER_TARGETS_RESET"; /**< The render targets have been reset */ #endif #if (SDL_MINOR_VERSION > 0) || (SDL_PATCHLEVEL >= 4) /* Render events */ eventtypes[SDL_RENDER_DEVICE_RESET] = "RENDER_DEVICE_RESET"; /**< The render device has been reset */ #endif /** Events ::SDL_USEREVENT through ::SDL_LASTEVENT are for your use, * and should be allocated with SDL_RegisterEvents() */ eventtypes[SDL_USEREVENT] = "USEREVENT"; #endif /* SDL_MAJOR_VERSION != 1 */ } sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE, vid_dev, "vid_thread() - Starting\n"); vid_mono_palette[0] = sim_end ? 0xFF000000 : 0x000000FF; /* Black */ vid_mono_palette[1] = 0xFFFFFFFF; /* White */ memset (&vid_key_state, 0, sizeof(vid_key_state)); #if SDL_MAJOR_VERSION == 1 vid_window = SDL_SetVideoMode (vid_width, vid_height, 8, 0); SDL_EnableKeyRepeat (SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL); if (sim_end) vid_image = SDL_CreateRGBSurface (SDL_SWSURFACE, vid_width, vid_height, 32, 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000); else vid_image = SDL_CreateRGBSurface (SDL_SWSURFACE, vid_width, vid_height, 32, 0xff000000, 0x00ff0000, 0x0000ff00, 0x000000ff); #else SDL_CreateWindowAndRenderer (vid_width, vid_height, SDL_WINDOW_SHOWN, &vid_window, &vid_renderer); if ((vid_window == NULL) || (vid_renderer == NULL)) { sim_printf ("%s: Error Creating Video Window: %s\n", sim_dname(vid_dev), SDL_GetError()); SDL_Quit (); return 0; } SDL_SetRenderDrawColor (vid_renderer, 0, 0, 0, 255); SDL_RenderClear (vid_renderer); SDL_RenderPresent (vid_renderer); vid_texture = SDL_CreateTexture (vid_renderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING, vid_width, vid_height); if (!vid_texture) { sim_printf ("%s: Error configuring Video environment: %s\n", sim_dname(vid_dev), SDL_GetError()); SDL_DestroyRenderer(vid_renderer); vid_renderer = NULL; SDL_DestroyWindow(vid_window); vid_window = NULL; SDL_Quit (); return 0; } SDL_StopTextInput (); vid_windowID = SDL_GetWindowID (vid_window); #endif if (vid_flags & SIM_VID_INPUTCAPTURED) { char title[150]; memset (title, 0, sizeof(title)); strncpy (title, vid_title, sizeof(title)-1); strncat (title, " ReleaseKey=", sizeof(title)-(1+strlen(title))); strncat (title, vid_release_key, sizeof(title)-(1+strlen(title))); #if SDL_MAJOR_VERSION == 1 SDL_WM_SetCaption (title, title); #else SDL_SetWindowTitle (vid_window, title); #endif } else #if SDL_MAJOR_VERSION == 1 SDL_WM_SetCaption (vid_title, sim_name); #else SDL_SetWindowTitle (vid_window, vid_title); #endif vid_ready = TRUE; sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE|SIM_VID_DBG_CURSOR, vid_dev, "vid_thread() - Started\n"); while (vid_active) { int status = SDL_WaitEvent (&event); if (status == 1) { switch (event.type) { case SDL_KEYDOWN: case SDL_KEYUP: vid_key ((SDL_KeyboardEvent*)&event); break; case SDL_MOUSEBUTTONDOWN: case SDL_MOUSEBUTTONUP: vid_mouse_button ((SDL_MouseButtonEvent*)&event); break; case SDL_MOUSEMOTION: vid_mouse_move ((SDL_MouseMotionEvent*)&event); break; #if SDL_MAJOR_VERSION != 1 case SDL_WINDOWEVENT: if (event.window.windowID == vid_windowID) { sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE|SIM_VID_DBG_CURSOR, vid_dev, "vid_thread() - Window Event: %d - %s\n", event.window.event, windoweventtypes[event.window.event]); switch (event.window.event) { case SDL_WINDOWEVENT_ENTER: if (vid_flags & SIM_VID_INPUTCAPTURED) SDL_WarpMouseInWindow (NULL, vid_width/2, vid_height/2); /* center position */ break; case SDL_WINDOWEVENT_EXPOSED: vid_update (); break; } } break; #endif case SDL_USEREVENT: /* There are 6 user events generated */ /* EVENT_REDRAW to update the display */ /* EVENT_DRAW to update a region in the display texture */ /* EVENT_SHOW to display the current SDL video capabilities */ /* EVENT_CURSOR to change the current cursor */ /* EVENT_WARP to warp the cursor position */ /* EVENT_CLOSE to wake up this thread and let */ /* it notice vid_active has changed */ while (vid_active && event.user.code) { if (event.user.code == EVENT_REDRAW) { vid_update (); event.user.code = 0; /* Mark as done */ #if SDL_MAJOR_VERSION == 1 if (0) while (SDL_PeepEvents (&event, 1, SDL_GETEVENT, SDL_EVENTMASK(SDL_USEREVENT))) { #else if (0) while (SDL_PeepEvents (&event, 1, SDL_GETEVENT, SDL_USEREVENT, SDL_USEREVENT)) { #endif if (event.user.code == EVENT_REDRAW) { /* Only do a single video update between waiting for events */ sim_debug (SIM_VID_DBG_VIDEO, vid_dev, "vid_thread() - Ignored extra REDRAW Event\n"); event.user.code = 0; /* Mark as done */ continue; } break; } } if (event.user.code == EVENT_CURSOR) { vid_update_cursor ((SDL_Cursor *)(event.user.data1), (t_bool)((size_t)event.user.data2)); event.user.data1 = NULL; event.user.code = 0; /* Mark as done */ } if (event.user.code == EVENT_WARP) { vid_warp_position (); event.user.code = 0; /* Mark as done */ } if (event.user.code == EVENT_CLOSE) { event.user.code = 0; /* Mark as done */ } if (event.user.code == EVENT_DRAW) { vid_draw_region ((SDL_UserEvent*)&event); event.user.code = 0; /* Mark as done */ } if (event.user.code == EVENT_SHOW) { vid_show_video_event (); event.user.code = 0; /* Mark as done */ } if (event.user.code == EVENT_SCREENSHOT) { vid_screenshot_event (); event.user.code = 0; /* Mark as done */ } if (event.user.code == EVENT_BEEP) { vid_beep_event (); event.user.code = 0; /* Mark as done */ } if (event.user.code != 0) { sim_printf ("vid_thread(): Unexpected user event code: %d\n", event.user.code); } } break; case SDL_QUIT: sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE|SIM_VID_DBG_CURSOR, vid_dev, "vid_thread() - QUIT Event - %s\n", vid_quit_callback ? "Signaled" : "Ignored"); if (vid_quit_callback) vid_quit_callback (); break; default: sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE|SIM_VID_DBG_CURSOR, vid_dev, "vid_thread() - Ignored Event: Type: %s(%d)\n", eventtypes[event.type], event.type); break; } } else { if (status < 0) sim_printf ("%s: vid_thread() - SDL_WaitEvent error: %s\n", sim_dname(vid_dev), SDL_GetError()); } } vid_ready = FALSE; if (vid_cursor) { SDL_FreeCursor (vid_cursor); vid_cursor = NULL; } #if SDL_MAJOR_VERSION != 1 SDL_DestroyTexture(vid_texture); vid_texture = NULL; SDL_DestroyRenderer(vid_renderer); vid_renderer = NULL; SDL_DestroyWindow(vid_window); #endif /* SDL_MAJOR_VERSION != 1 */ vid_window = NULL; sim_debug (SIM_VID_DBG_VIDEO|SIM_VID_DBG_KEY|SIM_VID_DBG_MOUSE|SIM_VID_DBG_CURSOR, vid_dev, "vid_thread() - Exiting\n"); return 0; } int vid_thread (void *arg) { #if SDL_MAJOR_VERSION == 1 _XInitThreads(); SDL_Init (SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE); #else SDL_SetHint (SDL_HINT_RENDER_DRIVER, "software"); SDL_Init (SDL_INIT_VIDEO); #endif vid_beep_setup (400, 660); vid_video_events (); vid_beep_cleanup (); SDL_Quit (); return 0; } const char *vid_version(void) { static char SDLVersion[80]; SDL_version compiled, running; #if SDL_MAJOR_VERSION == 1 const SDL_version *ver = SDL_Linked_Version(); running.major = ver->major; running.minor = ver->minor; running.patch = ver->patch; #else SDL_GetVersion(&running); #endif SDL_VERSION(&compiled); if ((compiled.major == running.major) && (compiled.minor == running.minor) && (compiled.patch == running.patch)) sprintf(SDLVersion, "SDL Version %d.%d.%d", compiled.major, compiled.minor, compiled.patch); else sprintf(SDLVersion, "SDL Version (Compiled: %d.%d.%d, Runtime: %d.%d.%d)", compiled.major, compiled.minor, compiled.patch, running.major, running.minor, running.patch); return (const char *)SDLVersion; } t_stat vid_set_release_key (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { return SCPE_NOFNC; } t_stat vid_show_release_key (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { if (vid_flags & SIM_VID_INPUTCAPTURED) fprintf (st, "ReleaseKey=%s", vid_release_key); return SCPE_OK; } static t_stat _vid_show_video (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { int i; fprintf (st, "Video support using SDL: %s\n", vid_version()); #if defined (SDL_MAIN_AVAILABLE) fprintf (st, " SDL Events being processed on the main process thread\n"); #endif if (!vid_active) { #if !defined (SDL_MAIN_AVAILABLE) SDL_Init(SDL_INIT_VIDEO); #endif } else { fprintf (st, " Currently Active Video Window: (%d by %d pixels)\n", vid_width, vid_height); fprintf (st, " "); vid_show_release_key (st, uptr, val, desc); fprintf (st, "\n"); #if SDL_MAJOR_VERSION != 1 fprintf (st, " SDL Video Driver: %s\n", SDL_GetCurrentVideoDriver()); #endif } #if SDL_MAJOR_VERSION == 1 if (1) { char driver_name[64]; const SDL_VideoInfo *info = SDL_GetVideoInfo(); fprintf (st, " Video Driver: %s\n", SDL_VideoDriverName(driver_name, sizeof(driver_name))); fprintf (st, " hardware surfaces available: %s\n", info->hw_available ? "Yes" : "No"); fprintf (st, " window manager available: %s\n", info->wm_available ? "Yes" : "No"); fprintf (st, " hardware to hardware blits accelerated: %s\n", info->blit_hw ? "Yes" : "No"); fprintf (st, " hardware to hardware colorkey blits accelerated: %s\n", info->blit_hw_CC ? "Yes" : "No"); fprintf (st, " hardware to hardware alpha blits accelerated: %s\n", info->blit_hw_A ? "Yes" : "No"); fprintf (st, " software to hardware blits accelerated: %s\n", info->blit_sw ? "Yes" : "No"); fprintf (st, " software to hardware colorkey blits accelerated: %s\n", info->blit_sw_CC ? "Yes" : "No"); fprintf (st, " software to hardware alpha blits accelerated: %s\n", info->blit_sw_A ? "Yes" : "No"); fprintf (st, " color fills accelerated: %s\n", info->blit_fill ? "Yes" : "No"); fprintf (st, " Video Memory: %dKb\n", info->video_mem); } #else for (i = 0; i < SDL_GetNumVideoDisplays(); ++i) { SDL_DisplayMode display; if (SDL_GetCurrentDisplayMode(i, &display)) { fprintf (st, "Could not get display mode for video display #%d: %s", i, SDL_GetError()); } else { fprintf (st, " Display %s(#%d): current display mode is %dx%dpx @ %dhz. \n", SDL_GetDisplayName(i), i, display.w, display.h, display.refresh_rate); } } fprintf (st, " Available SDL Renderers:\n"); for (i = 0; i < SDL_GetNumRenderDrivers(); ++i) { SDL_RendererInfo info; if (SDL_GetRenderDriverInfo (i, &info)) { fprintf (st, "Could not get render driver info for driver #%d: %s", i, SDL_GetError()); } else { uint32 j, k; static struct {uint32 format; const char *name;} PixelFormats[] = { {SDL_PIXELFORMAT_INDEX1LSB, "Index1LSB"}, {SDL_PIXELFORMAT_INDEX1MSB, "Index1MSB"}, {SDL_PIXELFORMAT_INDEX4LSB, "Index4LSB"}, {SDL_PIXELFORMAT_INDEX4MSB, "Index4MSB"}, {SDL_PIXELFORMAT_INDEX8, "Index8"}, {SDL_PIXELFORMAT_RGB332, "RGB332"}, {SDL_PIXELFORMAT_RGB444, "RGB444"}, {SDL_PIXELFORMAT_RGB555, "RGB555"}, {SDL_PIXELFORMAT_BGR555, "BGR555"}, {SDL_PIXELFORMAT_ARGB4444, "ARGB4444"}, {SDL_PIXELFORMAT_RGBA4444, "RGBA4444"}, {SDL_PIXELFORMAT_ABGR4444, "ABGR4444"}, {SDL_PIXELFORMAT_BGRA4444, "BGRA4444"}, {SDL_PIXELFORMAT_ARGB1555, "ARGB1555"}, {SDL_PIXELFORMAT_RGBA5551, "RGBA5551"}, {SDL_PIXELFORMAT_ABGR1555, "ABGR1555"}, {SDL_PIXELFORMAT_BGRA5551, "BGRA5551"}, {SDL_PIXELFORMAT_RGB565, "RGB565"}, {SDL_PIXELFORMAT_BGR565, "BGR565"}, {SDL_PIXELFORMAT_RGB24, "RGB24"}, {SDL_PIXELFORMAT_BGR24, "BGR24"}, {SDL_PIXELFORMAT_RGB888, "RGB888"}, {SDL_PIXELFORMAT_RGBX8888, "RGBX8888"}, {SDL_PIXELFORMAT_BGR888, "BGR888"}, {SDL_PIXELFORMAT_BGRX8888, "BGRX8888"}, {SDL_PIXELFORMAT_ARGB8888, "ARGB8888"}, {SDL_PIXELFORMAT_RGBA8888, "RGBA8888"}, {SDL_PIXELFORMAT_ABGR8888, "ABGR8888"}, {SDL_PIXELFORMAT_BGRA8888, "BGRA8888"}, {SDL_PIXELFORMAT_ARGB2101010, "ARGB2101010"}, {SDL_PIXELFORMAT_YV12, "YV12"}, {SDL_PIXELFORMAT_IYUV, "IYUV"}, {SDL_PIXELFORMAT_YUY2, "YUY2"}, {SDL_PIXELFORMAT_UYVY, "UYVY"}, {SDL_PIXELFORMAT_YVYU, "YVYU"}, {SDL_PIXELFORMAT_UNKNOWN, "Unknown"}}; fprintf (st, " Render #%d - %s\n", i, info.name); fprintf (st, " Flags: 0x%X - ", info.flags); if (info.flags & SDL_RENDERER_SOFTWARE) fprintf (st, "Software|"); if (info.flags & SDL_RENDERER_ACCELERATED) fprintf (st, "Accelerated|"); if (info.flags & SDL_RENDERER_PRESENTVSYNC) fprintf (st, "PresentVSync|"); if (info.flags & SDL_RENDERER_TARGETTEXTURE) fprintf (st, "TargetTexture|"); fprintf (st, "\n"); if ((info.max_texture_height != 0) || (info.max_texture_width != 0)) fprintf (st, " Max Texture: %d by %d\n", info.max_texture_height, info.max_texture_width); fprintf (st, " Pixel Formats:\n"); for (j=0; j<info.num_texture_formats; j++) { for (k=0; 1; k++) { if (PixelFormats[k].format == info.texture_formats[j]) { fprintf (st, " %s\n", PixelFormats[k].name); break; } if (PixelFormats[k].format == SDL_PIXELFORMAT_UNKNOWN) { fprintf (st, " %s - 0x%X\n", PixelFormats[k].name, info.texture_formats[j]); break; } } } } } if (vid_active) { SDL_RendererInfo info; SDL_GetRendererInfo (vid_renderer, &info); fprintf (st, " Currently Active Renderer: %s\n", info.name); } if (1) { static const char *hints[] = { #if defined (SDL_HINT_FRAMEBUFFER_ACCELERATION) SDL_HINT_FRAMEBUFFER_ACCELERATION , #endif #if defined (SDL_HINT_RENDER_DRIVER) SDL_HINT_RENDER_DRIVER , #endif #if defined (SDL_HINT_RENDER_OPENGL_SHADERS) SDL_HINT_RENDER_OPENGL_SHADERS , #endif #if defined (SDL_HINT_RENDER_DIRECT3D_THREADSAFE) SDL_HINT_RENDER_DIRECT3D_THREADSAFE , #endif #if defined (SDL_HINT_RENDER_DIRECT3D11_DEBUG) SDL_HINT_RENDER_DIRECT3D11_DEBUG , #endif #if defined (SDL_HINT_RENDER_SCALE_QUALITY) SDL_HINT_RENDER_SCALE_QUALITY , #endif #if defined (SDL_HINT_RENDER_VSYNC) SDL_HINT_RENDER_VSYNC , #endif #if defined (SDL_HINT_VIDEO_ALLOW_SCREENSAVER) SDL_HINT_VIDEO_ALLOW_SCREENSAVER , #endif #if defined (SDL_HINT_VIDEO_X11_XVIDMODE) SDL_HINT_VIDEO_X11_XVIDMODE , #endif #if defined (SDL_HINT_VIDEO_X11_XINERAMA) SDL_HINT_VIDEO_X11_XINERAMA , #endif #if defined (SDL_HINT_VIDEO_X11_XRANDR) SDL_HINT_VIDEO_X11_XRANDR , #endif #if defined (SDL_HINT_GRAB_KEYBOARD) SDL_HINT_GRAB_KEYBOARD , #endif #if defined (SDL_HINT_MOUSE_RELATIVE_MODE_WARP) SDL_HINT_MOUSE_RELATIVE_MODE_WARP , #endif #if defined (SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS) SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS , #endif #if defined (SDL_HINT_IDLE_TIMER_DISABLED) SDL_HINT_IDLE_TIMER_DISABLED , #endif #if defined (SDL_HINT_ORIENTATIONS) SDL_HINT_ORIENTATIONS , #endif #if defined (SDL_HINT_ACCELEROMETER_AS_JOYSTICK) SDL_HINT_ACCELEROMETER_AS_JOYSTICK , #endif #if defined (SDL_HINT_XINPUT_ENABLED) SDL_HINT_XINPUT_ENABLED , #endif #if defined (SDL_HINT_GAMECONTROLLERCONFIG) SDL_HINT_GAMECONTROLLERCONFIG , #endif #if defined (SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS) SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS , #endif #if defined (SDL_HINT_ALLOW_TOPMOST) SDL_HINT_ALLOW_TOPMOST , #endif #if defined (SDL_HINT_TIMER_RESOLUTION) SDL_HINT_TIMER_RESOLUTION , #endif #if defined (SDL_HINT_VIDEO_HIGHDPI_DISABLED) SDL_HINT_VIDEO_HIGHDPI_DISABLED , #endif #if defined (SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK) SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK , #endif #if defined (SDL_HINT_VIDEO_WIN_D3DCOMPILER) SDL_HINT_VIDEO_WIN_D3DCOMPILER , #endif #if defined (SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT) SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT , #endif #if defined (SDL_HINT_WINRT_PRIVACY_POLICY_URL) SDL_HINT_WINRT_PRIVACY_POLICY_URL , #endif #if defined (SDL_HINT_WINRT_PRIVACY_POLICY_LABEL) SDL_HINT_WINRT_PRIVACY_POLICY_LABEL , #endif #if defined (SDL_HINT_WINRT_HANDLE_BACK_BUTTON) SDL_HINT_WINRT_HANDLE_BACK_BUTTON , #endif #if defined (SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES) SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES, #endif NULL}; fprintf (st, " Currently Active SDL Hints:\n"); for (i=0; hints[i]; i++) { if (SDL_GetHint (hints[i])) fprintf (st, " %s = %s\n", hints[i], SDL_GetHint (hints[i])); } } #endif /* SDL_MAJOR_VERSION != 1 */ #if !defined (SDL_MAIN_AVAILABLE) if (!vid_active) SDL_Quit(); #endif return SCPE_OK; } static t_stat _show_stat; static FILE *_show_st; static UNIT *_show_uptr; static int32 _show_val; static CONST void *_show_desc; void vid_show_video_event (void) { _show_stat = _vid_show_video (_show_st, _show_uptr, _show_val, _show_desc); } t_stat vid_show_video (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { SDL_Event user_event; _show_stat = -1; _show_st = st; _show_uptr = uptr; _show_val = val; _show_desc = desc; user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_SHOW; user_event.user.data1 = NULL; user_event.user.data2 = NULL; #if defined (SDL_MAIN_AVAILABLE) while (SDL_PushEvent (&user_event) < 0) sim_os_ms_sleep (10); #else vid_show_video_event (); #endif while (_show_stat == -1) SDL_Delay (20); return _show_stat; } static t_stat _vid_screenshot (const char *filename) { int stat; char *fullname = NULL; if (!vid_active) { sim_printf ("No video display is active\n"); return SCPE_UDIS | SCPE_NOMESSAGE; } fullname = (char *)malloc (strlen(filename) + 5); if (!filename) return SCPE_MEM; #if SDL_MAJOR_VERSION == 1 #if defined(HAVE_LIBPNG) if (!match_ext (filename, "bmp")) { sprintf (fullname, "%s%s", filename, match_ext (filename, "png") ? "" : ".png"); stat = SDL_SavePNG(vid_image, fullname); } else { sprintf (fullname, "%s", filename); stat = SDL_SaveBMP(vid_image, fullname); } #else sprintf (fullname, "%s%s", filename, match_ext (filename, "bmp") ? "" : ".bmp"); stat = SDL_SaveBMP(vid_image, fullname); #endif /* defined(HAVE_LIBPNG) */ #else /* SDL_MAJOR_VERSION != 1 */ if (1) { SDL_Surface *sshot = sim_end ? SDL_CreateRGBSurface(0, vid_width, vid_height, 32, 0x00ff0000, 0x0000ff00, 0x000000ff, 0xff000000) : SDL_CreateRGBSurface(0, vid_width, vid_height, 32, 0x0000ff00, 0x000ff000, 0xff000000, 0x000000ff) ; SDL_RenderReadPixels(vid_renderer, NULL, SDL_PIXELFORMAT_ARGB8888, sshot->pixels, sshot->pitch); #if defined(HAVE_LIBPNG) if (!match_ext (filename, "bmp")) { sprintf (fullname, "%s%s", filename, match_ext (filename, "png") ? "" : ".png"); stat = SDL_SavePNG(sshot, fullname); } else { sprintf (fullname, "%s", filename); stat = SDL_SaveBMP(sshot, fullname); } #else sprintf (fullname, "%s%s", filename, match_ext (filename, "bmp") ? "" : ".bmp"); stat = SDL_SaveBMP(sshot, fullname); #endif /* defined(HAVE_LIBPNG) */ SDL_FreeSurface(sshot); } #endif if (stat) { sim_printf ("Error saving screenshot to %s: %s\n", fullname, SDL_GetError()); free (fullname); return SCPE_IOERR | SCPE_NOMESSAGE; } else { if (!sim_quiet) sim_printf ("Screenshot saved to %s\n", fullname); free (fullname); return SCPE_OK; } } static t_stat _screenshot_stat; static const char *_screenshot_filename; void vid_screenshot_event (void) { _screenshot_stat = _vid_screenshot (_screenshot_filename); } t_stat vid_screenshot (const char *filename) { SDL_Event user_event; _screenshot_stat = -1; _screenshot_filename = filename; user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_SCREENSHOT; user_event.user.data1 = NULL; user_event.user.data2 = NULL; #if defined (SDL_MAIN_AVAILABLE) while (SDL_PushEvent (&user_event) < 0) sim_os_ms_sleep (10); #else vid_screenshot_event (); #endif while (_screenshot_stat == -1) SDL_Delay (20); return _screenshot_stat; } #include <SDL_audio.h> #include <math.h> const int AMPLITUDE = 20000; const int SAMPLE_FREQUENCY = 11025; static int16 *vid_beep_data; static int vid_beep_offset; static int vid_beep_duration; static int vid_beep_samples; static void vid_audio_callback(void *ctx, Uint8 *stream, int length) { int16 *data = (int16 *)stream; int i, sum, remnant = ((vid_beep_samples - vid_beep_offset) * sizeof (*vid_beep_data)); if (length > remnant) { memset (stream + remnant, 0, length - remnant); length = remnant; if (remnant == 0) { SDL_PauseAudio(1); return; } } memcpy (stream, &vid_beep_data[vid_beep_offset], length); for (i=sum=0; i<length; i++) sum += stream[i]; vid_beep_offset += length / sizeof(*vid_beep_data); } static void vid_beep_setup (int duration_ms, int tone_frequency) { if (!vid_beep_data) { int i; SDL_AudioSpec desiredSpec; memset (&desiredSpec, 0, sizeof(desiredSpec)); desiredSpec.freq = SAMPLE_FREQUENCY; desiredSpec.format = AUDIO_S16SYS; desiredSpec.channels = 1; desiredSpec.samples = 2048; desiredSpec.callback = vid_audio_callback; SDL_OpenAudio(&desiredSpec, NULL); vid_beep_samples = (int)((SAMPLE_FREQUENCY * duration_ms) / 1000.0); vid_beep_duration = duration_ms; vid_beep_data = (int16 *)malloc (sizeof(*vid_beep_data) * vid_beep_samples); for (i=0; i<vid_beep_samples; i++) vid_beep_data[i] = (int16)(AMPLITUDE * sin(((double)(i * M_PI * tone_frequency)) / SAMPLE_FREQUENCY)); } } static void vid_beep_cleanup (void) { SDL_CloseAudio(); free (vid_beep_data); vid_beep_data = NULL; } void vid_beep_event (void) { vid_beep_offset = 0; /* reset to beginning of sample set */ SDL_PauseAudio (0); /* Play sound */ } void vid_beep (void) { SDL_Event user_event; user_event.type = SDL_USEREVENT; user_event.user.code = EVENT_BEEP; user_event.user.data1 = NULL; user_event.user.data2 = NULL; #if defined (SDL_MAIN_AVAILABLE) while (SDL_PushEvent (&user_event) < 0) sim_os_ms_sleep (10); #else vid_beep_event (); #endif SDL_Delay (vid_beep_duration + 100);/* Wait for sound to finnish */ } #else /* !(defined(USE_SIM_VIDEO) && defined(HAVE_LIBSDL)) */ /* Non-implemented versions */ uint32 vid_mono_palette[2]; /* Monochrome Color Map */ t_stat vid_open (DEVICE *dptr, const char *title, uint32 width, uint32 height, int flags) { return SCPE_NOFNC; } t_stat vid_close (void) { return SCPE_OK; } t_stat vid_poll_kb (SIM_KEY_EVENT *ev) { return SCPE_EOF; } t_stat vid_poll_mouse (SIM_MOUSE_EVENT *ev) { return SCPE_EOF; } void vid_draw (int32 x, int32 y, int32 w, int32 h, uint32 *buf) { return; } t_stat vid_set_cursor (t_bool visible, uint32 width, uint32 height, uint8 *data, uint8 *mask, uint32 hot_x, uint32 hot_y) { return SCPE_NOFNC; } void vid_set_cursor_position (int32 x, int32 y) { return; } void vid_refresh (void) { return; } void vid_beep (void) { return; } const char *vid_version (void) { return "No Video Support"; } t_stat vid_set_release_key (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { return SCPE_NOFNC; } t_stat vid_show_release_key (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { fprintf (st, "no release key"); return SCPE_OK; } t_stat vid_show_video (FILE* st, UNIT* uptr, int32 val, CONST void* desc) { fprintf (st, "video support unavailable"); return SCPE_OK; } t_stat vid_screenshot (const char *filename) { sim_printf ("video support unavailable\n"); return SCPE_NOFNC|SCPE_NOMESSAGE; } #endif /* defined(USE_SIM_VIDEO) */
e3ecd50b58c2119cf6f023ead88fe50a68ffea88
bb2cae071699ae4491af7086f95caec7ec249a62
/18600_fcs/cachelab-handout/msim.c
19eed8bfd1d426887cf6ddc8e8bcd3d4d8a65762
[]
no_license
Kshitij-Khode/study_resources
f90f0a34bb5d5a807255f9b8c09163b43f749fe1
57eda7a8fc5968f6443518caa1508ef97cd7c4db
refs/heads/master
2020-03-16T15:08:36.222627
2018-06-07T16:19:42
2018-06-07T16:19:42
132,729,670
0
0
null
null
null
null
UTF-8
C
false
false
4,372
c
/* * msim.c - A cache simulator that implements LRU and MSI protocol for * cache coherency. * * Name: Kshitij Khode * Andrew ID: kkhode * */ #include <stdio.h> #include "cache.h" #include "msim.h" #include "trace-stream.h" int nextTraces(trace_entry_t** trace_entries, cache_config_t* config); /* * Inputs: Config for the type of run specified through command line args * Outputs: No of misses, hits, evictions and invalidations * * Description: * Does all the following steps for all the number of cores specified in args * 1. Resets the counter for counting misses, hits, evictions and invalidations * 2. Initializes the cache struct (including mallocing and initializing default values). * 3. Attempts accessing cache for directives provided by a line provided in the trace file * and records the outcome in terms of hit, miss or eviction. * 4. Allows rest of the cores to snoop and update their own state for tag matching lines * 5. Frees malloc'd memory provided to cache struct */ sim_results_t runSimulator(cache_config_t* config) { sim_results_t results; trace_entry_t* trace_entries[config->num_cores]; cache_t caches[config->num_cores]; op_t op; int core; for (core = 0; core < config->num_cores; core++) { results.cores[core].hits = 0; results.cores[core].misses = 0; results.cores[core].evictions = 0; results.cores[core].invalidations = 0; cacheInit(&caches[core], config->set_bits, config->associativity, config->block_bits); } if (config->verbosity) { printf("Running trace simulation:\n"); } while (nextTraces(trace_entries, config)) { for (core = 0; core < config->num_cores; core++) { /* Quickly add ugly statement to deal with reverting to default function proto */ switch (trace_entries[core]->op) { case 'L': op = OP_READ; break; case 'S': op = OP_WRITE; break; } if (config->verbosity) { printf(" C%d: ", core); switch (trace_entries[core]->op) { case 'L': printf("L "); break; case 'S': printf("S "); break; } printf("%llx, %d\t", trace_entries[core]->addr, trace_entries[core]->size); } switch(msimCacheAccess(&caches[core], trace_entries[core]->addr, op)) { case CACHE_HIT: results.cores[core].hits++; break; case CACHE_MISS: results.cores[core].misses++; break; case CACHE_EVICT: results.cores[core].misses++; results.cores[core].evictions++; break; } int rest_core; for (rest_core = 0; rest_core < config->num_cores; rest_core++) { if (rest_core != core && cacheBus(&caches[rest_core], trace_entries[core]->addr, op) == TRSN_S2I) { results.cores[core].invalidations++; } } } } for (core = 0; core < config->num_cores; core++) { cacheDestroy(&caches[core]); } return results; } /* * Inputs: Config for the type of run specified through command line args & trace entry struct * used to figure out content of a single line provided in the trace. * Outputs: If next line was successfully fetched for any trace pertaining to any core. * * Description: Gets next line content for trace pertaining to every core and returns true if * that action was successfull. */ int nextTraces(trace_entry_t** trace_entries, cache_config_t* config) { int core, rc = 0; for (core = 0; core < config->num_cores; core++) { if ((trace_entries[core] = traceStreamNext(&config->core_traces[core]))) { rc |= 1; } else rc |= 0; } return rc; }
9b53cd5e236e9ff9c986ebde96ac5b8ce53fd4c9
d0c2f752148842d77e7df2dab9302ba28f4dc486
/kernel/kthread-access-userspace/kthread-user.c
c2a2e9d31fa5062764c4bc2583e9126d8df7e697
[]
no_license
razvand/snippets
e094b07322805cf59f42f94429af44e35381d688
904e95f28e21834cac1c7214cebe45de668c9a5e
refs/heads/master
2022-01-01T00:44:39.697578
2021-12-24T18:55:48
2021-12-24T18:56:00
3,681,468
14
3
null
2021-04-24T10:52:02
2012-03-10T18:40:43
C
UTF-8
C
false
false
1,190
c
/* * Test whether user space data is accessible from kernel thread. */ #include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/kthread.h> #include <asm/uaccess.h> MODULE_DESCRIPTION("Access user space data from kernel thread"); MODULE_AUTHOR("So2rul Esforever"); MODULE_LICENSE("GPL"); #define BUSYBOX_TEXT_START_ADDRESS 0x08048000 static unsigned char buffer[64]; static int access_userspace_data(void *data) { size_t i; pr_alert("Thread will read from address 0x%08x\n", BUSYBOX_TEXT_START_ADDRESS); if (copy_from_user(buffer, (void *) BUSYBOX_TEXT_START_ADDRESS, 64) != 0) { pr_alert("Unable to read from address 0x%08x\n", BUSYBOX_TEXT_START_ADDRESS); return -1; } pr_alert("Data has been read. Dumping hex:\n"); for (i = 0; i < 64; i++) printk("\\x%02x", buffer[i]); pr_alert("\n"); return 0; } static int kthread_user_init(void) { struct task_struct *thread; thread = kthread_run(access_userspace_data, NULL, "access_user_thread"); pr_alert("Thread has been created.\n"); return 0; } static void kthread_user_exit(void) { } module_init(kthread_user_init); module_exit(kthread_user_exit);
339317b9719b0cafed759cf3a9f6bfd121b10a06
ac362bb8969d647cd219430bc71c831d894e531c
/sys/dev/isa/tcom.c
65723400d7a7aff9d5d85e44ee867e9a39428328
[]
no_license
noud/mouse-bsd-4.0.1
efb3b16fcc872ab227e6bb651cf1e836796a0804
4c0a1e08df407a759afac2d6a98507df94f5f814
refs/heads/master
2023-02-24T23:42:54.060718
2020-08-16T20:10:53
2020-08-16T20:10:53
334,536,412
0
0
null
null
null
null
UTF-8
C
false
false
8,329
c
/* $NetBSD: tcom.c,v 1.13 2006/11/16 01:33:00 christos Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Eric S. Hvozda. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the NetBSD * Foundation, Inc. and its contributors. * 4. Neither the name of The NetBSD Foundation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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. */ /* * Copyright (c) 1998 Jukka Marin. All rights reserved. * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. * Copyright (c) 1995 Charles Hannum. All rights reserved. * * This code is derived from public-domain software written by * Roland McGrath. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Charles Hannum. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. */ /* * NOTE: This driver has been tested in TCOM "UNIX mode" with base address * set to 0x100 or 0x200 and baud rate jumpers to "normal". This code * does NOT know about the 2x and 4x baud rates available on TCOM cards. */ #include <sys/cdefs.h> __KERNEL_RCSID(0, "$NetBSD: tcom.c,v 1.13 2006/11/16 01:33:00 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> #include <sys/termios.h> #include <machine/bus.h> #include <machine/intr.h> #include <dev/ic/comreg.h> #include <dev/ic/comvar.h> #include <dev/isa/isavar.h> #include <dev/isa/com_multi.h> #define NSLAVES 8 /* TCOM cards have 4 or 8 UARTs */ #define STATUS_OFFSET 0x40 /* offset from board base address */ #define STATUS_SIZE 8 /* 8 bytes reserved for irq status */ struct tcom_softc { struct device sc_dev; void *sc_ih; bus_space_tag_t sc_iot; int sc_iobase; int sc_alive; /* mask of slave units attached */ void *sc_slaves[NSLAVES]; /* com device unit numbers */ bus_space_handle_t sc_slaveioh[NSLAVES]; bus_space_handle_t sc_statusioh; }; int tcomprobe(struct device *, struct cfdata *, void *); void tcomattach(struct device *, struct device *, void *); int tcomintr(void *); CFATTACH_DECL(tcom, sizeof(struct tcom_softc), tcomprobe, tcomattach, NULL, NULL); int tcomprobe(struct device *parent, struct cfdata *self, void *aux) { struct isa_attach_args *ia = aux; bus_space_tag_t iot = ia->ia_iot; bus_space_handle_t ioh; int i, iobase, rv = 1; /* * Do the normal com probe for the first UART and assume * its presence, and the ability to map the other UARTS, * means there is a multiport board there. * XXX Needs more robustness. */ if (ia->ia_nio < 1) return (0); if (ia->ia_nirq < 1) return (1); if (ISA_DIRECT_CONFIG(ia)) return (0); /* Disallow wildcarded i/o address. */ if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT) return (0); if (ia->ia_irq[0].ir_irq == ISA_UNKNOWN_IRQ) return (0); /* if the first port is in use as console, then it. */ if (com_is_console(iot, ia->ia_io[0].ir_addr, 0)) goto checkmappings; if (bus_space_map(iot, ia->ia_io[0].ir_addr, COM_NPORTS, 0, &ioh)) { rv = 0; goto out; } rv = comprobe1(iot, ioh); bus_space_unmap(iot, ioh, COM_NPORTS); if (rv == 0) goto out; checkmappings: for (i = 1, iobase = ia->ia_io[0].ir_addr; i < NSLAVES; i++) { iobase += COM_NPORTS; if (com_is_console(iot, iobase, 0)) continue; if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) { rv = 0; goto out; } bus_space_unmap(iot, ioh, COM_NPORTS); } out: if (rv) { ia->ia_nio = 1; ia->ia_io[0].ir_size = NSLAVES * COM_NPORTS; ia->ia_nirq = 1; ia->ia_niomem = 0; ia->ia_ndrq = 0; } return (rv); } void tcomattach(struct device *parent, struct device *self, void *aux) { struct tcom_softc *sc = (void *)self; struct isa_attach_args *ia = aux; struct commulti_attach_args ca; bus_space_tag_t iot = ia->ia_iot; int i, iobase; printf("\n"); sc->sc_iot = ia->ia_iot; sc->sc_iobase = ia->ia_io[0].ir_addr; for (i = 0; i < NSLAVES; i++) { iobase = sc->sc_iobase + i * COM_NPORTS; if (!com_is_console(iot, iobase, &sc->sc_slaveioh[i]) && bus_space_map(iot, iobase, COM_NPORTS, 0, &sc->sc_slaveioh[i])) { printf("%s: can't map i/o space for slave %d\n", sc->sc_dev.dv_xname, i); return; } } if (bus_space_map(iot, sc->sc_iobase + STATUS_OFFSET, STATUS_SIZE, 0, &sc->sc_statusioh)) { printf("%s: can't map status space\n", sc->sc_dev.dv_xname); return; } for (i = 0; i < NSLAVES; i++) { ca.ca_slave = i; ca.ca_iot = sc->sc_iot; ca.ca_ioh = sc->sc_slaveioh[i]; ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS; ca.ca_noien = 0; sc->sc_slaves[i] = config_found(self, &ca, commultiprint); if (sc->sc_slaves[i] != NULL) sc->sc_alive |= 1 << i; } sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq, IST_EDGE, IPL_SERIAL, tcomintr, sc); } int tcomintr(arg) void *arg; { struct tcom_softc *sc = arg; bus_space_tag_t iot = sc->sc_iot; int alive = sc->sc_alive; int bits; bits = ~bus_space_read_1(iot, sc->sc_statusioh, 0) & alive; if (bits == 0) return (0); for (;;) { #define TRY(n) \ if (bits & (1 << (n))) \ comintr(sc->sc_slaves[n]); TRY(0); TRY(1); TRY(2); TRY(3); TRY(4); TRY(5); TRY(6); TRY(7); #undef TRY bits = ~bus_space_read_1(iot, sc->sc_statusioh, 0) & alive; if (bits == 0) return (1); } }
e972afd0a6568bde2ffad62aa7c3fa7c7c7c1cf1
9dbdaebe138aa2bf902434682d0c93e8cb6609b9
/keyboard.c
d3562f5272cfc9b1211adc258d25fff2d798f6fd
[]
no_license
mlaux/keyboard
2ee5a548e8a3d9403af8e33d345b3a4e7832bb34
32a0622fe12ca91cd4081e4e38fdcfe1cd0b686b
refs/heads/master
2021-09-24T07:28:53.546016
2021-09-15T05:34:38
2021-09-15T05:34:38
29,496,811
0
2
null
null
null
null
UTF-8
C
false
false
11,786
c
/* A MIDI keyboard application for Windows. Controlled with the first 2 rows of the computer keyboard. Should compile on any Windows version down to Windows 3.0 or 3.1. Doesn't use any fancy APIs. */ #include <windows.h> #include <string.h> // for borland #include <mmsystem.h> // for win 3.1 /* I think these keys were added in win2k */ #ifndef VK_OEM_COMMA #define VK_OEM_COMMA 188 #endif #ifndef VK_OEM_PERIOD #define VK_OEM_PERIOD 190 #endif /* The keys used to control the keyboard. */ static const char *keys = "Q2W3ER5T6Y7UI9O0P"; /* Note value assigned to each key. */ static unsigned char values[256]; /* MIDI octave to play in. */ static unsigned char octave = 5; /* Handle to the MIDI device. */ static HMIDIOUT hMidi; /* Handle to the window. */ static HWND hWnd; /* Handle to the drop-down list. */ static HWND hDropDown; /* for painting background of pressed keys */ static HBRUSH hRedBrush; /* All the MIDI instruments. */ static char *patches[] = { "Acoustic Grand Piano", "Bright Acoustic Piano", "Electric Grand Piano", "Honky-tonk Piano", "Rhodes Piano", "Chorused Piano", "Harpsichord", "Clavinet", "Celesta", "Glockenspiel", "Music Box", "Vibraphone", "Marimba", "Xylophone", "Tubular Bells", "Dulcimer", "Hammond Organ", "Percussive Organ", "Rock Organ", "Church Organ", "Reed Organ", "Accordion", "Harmonica", "Tango Accordion", "Acoustic Guitar (nylon)", "Acoustic Guitar (steel)", "Electric Guitar (jazz)", "Electric Guitar (clean)", "Electric Guitar (muted)", "Overdriven Guitar", "Distortion Guitar", "Guitar Harmonics", "Acoustic Bass", "Electric Bass (finger)", "Electric Bass (pick)", "Fretless Bass", "Slap Bass 1", "Slap Bass 2", "Synth Bass 1", "Synth Bass 2", "Violin", "Viola", "Cello", "Contrabass", "Tremolo Strings", "Pizzicato Strings", "Orchestral Harp", "Timpani", "String Ensemble 1", "String Ensemble 2", "SynthStrings 1", "SynthStrings 2", "Choir Aahs", "Voice Oohs", "Synth Voice", "Orchestra Hit", "Trumpet", "Trombone", "Tuba", "Muted Trumpet", "French Horn", "Brass Section", "Synth Brass 1", "Synth Brass 2", "Soprano Sax", "Alto Sax", "Tenor Sax", "Baritone Sax", "Oboe", "English Horn", "Bassoon", "Clarinet", "Piccolo", "Flute", "Recorder", "Pan Flute", "Bottle Blow", "Shakuhachi", "Whistle", "Ocarina", "Lead 1 (square)", "Lead 2 (sawtooth)", "Lead 3 (calliope lead)", "Lead 4 (chiff lead)", "Lead 5 (charang)", "Lead 6 (voice)", "Lead 7 (fifths)", "Lead 8 (bass + lead)", "Pad 1 (new age)", "Pad 2 (warm)", "Pad 3 (polysynth)", "Pad 4 (choir)", "Pad 5 (bowed)", "Pad 6 (metallic)", "Pad 7 (halo)", "Pad 8 (sweep)", "FX 1 (rain)", "FX 2 (soundtrack)", "FX 3 (crystal)", "FX 4 (atmosphere)", "FX 5 (brightness)", "FX 6 (goblins)", "FX 7 (echoes)", "FX 8 (sci-fi)", "Sitar", "Banjo", "Shamisen", "Koto", "Kalimba", "Bagpipe", "Fiddle", "Shanai", "Tinkle Bell", "Agogo", "Steel Drums", "Woodblock", "Taiko Drum", "Melodic Tom", "Synth Drum", "Reverse Cymbal", "Guitar Fret Noise", "Breath Noise", "Seashore", "Bird Tweet", "Telephone Ring", "Helicopter", "Applause", "Gunshot" }; void initGDIObjects(void) { LOGBRUSH redBrushDesc = { BS_SOLID, RGB(255, 0, 0), 0 }; hRedBrush = CreateBrushIndirect(&redBrushDesc); } void destroyGDIObjects(void) { DeleteObject(hRedBrush); } /* Sets the key notes based on the octave */ void setKeyValues(void) { int k, len = strlen(keys); for(k = 0; k < len; k++) { values[keys[k]] = k + (octave * 12); } /* Force a redraw of the window */ InvalidateRect(hWnd, NULL, FALSE); } void populateList(void) { int k; /* Add all the instruments to the list box. */ for(k = 0; k < 128; k++) SendMessage(hDropDown, CB_ADDSTRING, (WPARAM) 0, (LPARAM) (LPCSTR) patches[k]); /* Set the highlighted item to the first one. */ SendMessage(hDropDown, CB_SETCURSEL, (WPARAM) 0, (LPARAM) 0); } /* Sends a message to the MIDI output. */ void sendMIDIMessage(int status, int channel, int data1, int data2) { DWORD message = ((DWORD) data2) << 16 | (data1 << 8) | status | channel; midiOutShortMsg(hMidi, message); } /* Called when a key is pressed down */ void onKeyDown(unsigned char key) { if (key == VK_ESCAPE) { /* exit */ PostQuitMessage(0); } else if (key == VK_OEM_COMMA) { /* octave down */ if (octave > 1) octave--; setKeyValues(); } else if (key == VK_OEM_PERIOD) { /* octave up */ if (octave < 10) octave++; setKeyValues(); } else if (values[key] != 0) { /* some note key */ sendMIDIMessage(0x90, 0, values[key], 127); /* Force a redraw of the window */ InvalidateRect(hWnd, NULL, FALSE); } } /* Called when a key is released */ void onKeyUp(unsigned char key) { if (values[key] != 0) { /* end the note by sending a velocity of 0 */ sendMIDIMessage(0x90, 0, values[key], 0); /* Force a redraw of the window */ InvalidateRect(hWnd, NULL, FALSE); } } /* Returns 1 if the key (0 to 11) is an accidental */ int isAccidental(int key) { int pos = key % 12; return pos == 1 || pos == 3 || pos == 6 || pos == 8 || pos == 10; } /* Draws the keyboard on the window. */ void drawKeyboard(HDC hdc) { static const char *octaves = "0123456789"; int k, x = 0, y, len = strlen(keys); /* Draw the octave */ TextOut(hdc, 200, 165, "Octave: ", 8); TextOut(hdc, 260, 165, &octaves[octave - 1], 1); TextOut(hdc, 280, 165, "(< and > to change)", 19); for (k = 0; k < len; k++) { if (GetAsyncKeyState(keys[k]) & 0x80000000) { /* Set the background of the note to red */ SelectObject(hdc, hRedBrush); /* Set the text foreground color to white */ SetTextColor(hdc, RGB(255, 255, 255)); /* Set the text background color to red */ SetBkColor(hdc, RGB(255, 0, 0)); } else if (isAccidental(k)) { /* Set the background of the note to black */ SelectObject(hdc, GetStockObject(BLACK_BRUSH)); /* Set the text foreground color to white */ SetTextColor(hdc, RGB(255, 255, 255)); /* Set the text background color to black */ SetBkColor(hdc, RGB(0, 0, 0)); } else { /* Set the background of the note to white */ SelectObject(hdc, GetStockObject(WHITE_BRUSH)); /* Set the text foreground color to black */ SetTextColor(hdc, RGB(0, 0, 0)); /* Set the text background color to white */ SetBkColor(hdc, RGB(255, 255, 255)); } /* If the note is a white key, draw it lower */ if (!isAccidental(k)) y = 80; else y = 0; /* Draw the actual key */ Rectangle(hdc, x, y, x + 59, y + 79); /* Set the text font to something less ugly than SYSTEM_FONT */ /* only works on win95+ */ #ifdef DEFAULT_GUI_FONT SelectObject(hdc, GetStockObject(DEFAULT_GUI_FONT)); #else SelectObject(hdc, GetStockObject(SYSTEM_FONT)); #endif /* Draw the letter which controls this key */ TextOut(hdc, x + 10, y + 10, &keys[k], 1); /* Increment the position for the next key. If there are 2 white keys in a row (E to F or B to C), make the gap bigger so they don't run into each other, otherwise only offset a bit so the keys overlap. */ if (!isAccidental(k) && !isAccidental(k + 1)) x += 60; else x += 30; } } /* Called when the window receives a message */ LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { PAINTSTRUCT ps; int notifCode; switch (msg) { case WM_COMMAND: #ifdef WIN32 notifCode = HIWORD(wParam); #else notifCode = HIWORD(lParam); #endif if (notifCode == CBN_SELCHANGE) { /* New item selected from the listbox */ /* Send the MIDI message to change the instrument. The 'patch number' that the instrument is changed to is queried from the dropdown list. */ int patch = (int) SendMessage(hDropDown, CB_GETCURSEL, 0, 0); sendMIDIMessage(0xC0, 0, patch, 0); /* Set the focus back to the main window so we can still get key events */ SetFocus(hWnd); } else if (notifCode == CBN_SELENDCANCEL) { /* The user clicked out of the combo box without selecting anything. Set the focus back to the main window so we can still get key events */ SetFocus(hWnd); } break; case WM_DESTROY: /* Window is being closed */ PostQuitMessage(0); break; case WM_KEYDOWN: /* Key press */ /* Only call the function if it's not a 'held down' key event. Otherwise, the notes would repeat and it'd sound bad. */ if (((lParam >> 30) & 0x01) == 0) onKeyDown((unsigned char) wParam); break; case WM_KEYUP: /* Key release */ onKeyUp((unsigned char) wParam); break; case WM_PAINT: /* Window is being redrawn */ BeginPaint(hWnd, &ps); /* draw the keyboard */ drawKeyboard(ps.hdc); EndPaint(hWnd, &ps); break; default: /* Make Windows handle all messages that we don't. */ return DefWindowProc(hWnd, msg, wParam, lParam); } return 0; } /* Main entry point. */ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { WNDCLASS wc; MSG msg; RECT rct; initGDIObjects(); /* Create and register the window type */ wc.style = 0; wc.lpfnWndProc = WndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hInstance; wc.hIcon = LoadIcon(NULL, IDI_APPLICATION); wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = (HBRUSH) (COLOR_WINDOW + 1); wc.lpszMenuName = NULL; wc.lpszClassName = "MidiKeyboard"; RegisterClass(&wc); /* Calculate the width/height of the window based on the width/height of the canvas area */ rct.left = 0; rct.top = 0; rct.right = 600; rct.bottom = 185; AdjustWindowRect(&rct, WS_OVERLAPPEDWINDOW, FALSE); /* Actually create/show the window */ hWnd = CreateWindow("MidiKeyboard", "Keyboard", WS_OVERLAPPED | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU, CW_USEDEFAULT, CW_USEDEFAULT, rct.right - rct.left, rct.bottom - rct.top, 0, 0, hInstance, 0); hDropDown = CreateWindow("COMBOBOX", NULL, CBS_DROPDOWNLIST | WS_VISIBLE | WS_VSCROLL | WS_CHILD, 0, 160, 200, 200, hWnd, 0, hInstance, 0); populateList(); ShowWindow(hWnd, nCmdShow); UpdateWindow(hWnd); /* Set up the MIDI stuff */ midiOutOpen(&hMidi, (UINT) MIDIMAPPER, 0, 0, 0); /* switch to first instrument */ sendMIDIMessage(0xC0, 0, 0, 0); setKeyValues(); /* Message loop */ while (GetMessage(&msg, NULL, 0, 0) > 0) { TranslateMessage(&msg); DispatchMessage(&msg); } /* Release the MIDI resources. */ midiOutClose(hMidi); destroyGDIObjects(); return msg.wParam; }
93f015f173dea432bcabd8204b1bc4c5d8f0d075
e368d28ab359f703b784b23280a98caa58d4fa72
/component/common/audio/mp3/mp3_codec_table_4_3_value.c
e25c0e371091216ee9331880909e6ff3af0eda22
[ "MIT" ]
permissive
Seeed-Studio/seeed-ambd-sdk
93b3f853142026b0bb15f320129f7e893c981ae1
3cc64f293f756ffb3cd379fffb972b7401cb0951
refs/heads/AT
2022-11-25T06:55:17.361575
2020-07-31T05:45:10
2020-07-31T05:45:10
255,220,669
12
7
null
2020-07-31T05:45:11
2020-04-13T03:18:22
C
UTF-8
C
false
false
367,308
c
SDRAM_DATA_SECTION static const uint32_t table_4_3_value[TABLE_4_3_SIZE] = { 0,0,0,0,1073741824,1276901417,1518500250,1805811301,1352829926,1608794974,1913190429,1137589835,1161452763,1381207890,1642542250,1953322930, 1704458901,2026954652,1205234447,1433273380,1147545432,1364669193,1622874314,1929933681,1463338785,1740212895,2069473556,1230516338,1797244940,2137296470,1270844085,1511296828, 1073741824,1276901417,1518500250,1805811301,1256328562,1494034864,1776716890,2112884368,1445816646,1719375443,2044693510,1215782035,1641736552,1952364788,1160883049,1380530381, 1843691338,1096265429,1303686648,1550353437,2051340197,1219734179,1450516564,1724964618,1132193366,1346412406,1601163213,1904114686,1241285180,1476145168,1755442337,2087584517, 1352829926,1608794974,1913190429,1137589835,1466724186,1744238838,2074261236,1233363110,1582874800,1882365975,1119261505,1331033745,1701197332,2023075971,1202928169,1430530738, 1821614827,1083138656,1288076197,1531789378,1944056807,1155943093,1374655751,1634750400,2068458440,1229912747,1462620990,1739359287,1097379924,1305012013,1551929571,1845565688, 1161452763,1381207890,1642542250,1953322930,1226421930,1458469685,1734422526,2062587608,1292263347,1536768767,1827536352,1086659616,1358954496,1616078356,1921851879,1142739964, 1426474254,1696373333,2017339237,1199517087,1494802767,1777630086,2113970346,1256974288,1563921327,1859826370,1105859376,1315095838,1633812274,1942941181,1155279738,1373866884, 1704458901,2026954652,1205234447,1433273380,1775845377,2111847958,1255712309,1493302012,1847956676,1098801614,1306702697,1553940145,1920778511,1142101736,1358195510,1615175765, 1994297280,1185816257,1410181130,1676997434,2068500013,1229937467,1462650386,1739394246,2143374328,1274458001,1515594522,1802355789,1109454194,1319370821,1569005168,1865872110, 1147545432,1364669193,1622874314,1929933681,1185955452,1410346661,1677194284,1994531376,1224679047,1456397036,1731957717,2059656440,1263711219,1502814373,1787157545,2125300468, 1303047165,1549592959,1842786973,1095727690,1342682263,1596727301,1898839467,1129056702,1382612066,1644212106,1955308735,1162633530,1422832284,1692042276,2012188714,1196454567, 1463338785,1740212895,2069473556,1230516338,1504127577,1788719216,2127157618,1264815487,1545194805,1837556656,1092617725,1299348772,1586536745,1886720786,1121850891,1334113062, 1628149793,1936207319,1151275760,1369105325,1670030463,1986012108,1180889865,1404322629,1712175375,2036131139,1210690818,1439762135,1754581259,2086560517,1240676306,1475421091, 1797244940,2137296470,1270844085,1511296828,1840163341,1094167669,1301191977,1547386757,1883333472,1119836782,1331717869,1583688365,1926752432,1145653850,1362419710,1620199213, 1970417401,1171617196,1393295506,1656916929,2014325637,1197725190,1424343318,1693839208,2058474476,1223976246,1455561261,1730963807,2102861321,1250368822,1486947500,1768288547, 1073741824,1276901417,1518500250,1805811301,1096169499,1303572567,1550217772,1843530004,1118712486,1330380848,1582098370,1881442639,1141369619,1357324871,1614140395,1919547242, 1164139758,1384403283,1646342234,1957841898,1187021793,1411614761,1678702318,1996324740,1210014639,1438958018,1711219114,2034993945,1233117240,1466431795,1743891125,2073847733, 1256328562,1494034864,1776716890,2112884368,1279647595,1521766025,1809694984,1076051075,1303073354,1549624104,1842824010,1095749712,1326604876,1577607957,1876102607,1115537284, 1350241217,1605716462,1909529442,1135412999,1373981457,1633948524,1943103210,1155376082,1397824693,1662303071,1976822639,1175425774,1421770044,1690779052,2010686479,1195561333, 1445816646,1719375443,2044693510,1215782035,1469963653,1748091235,2078842535,1236087167,1494210238,1776925446,2113132384,1256476033,1518555589,1805877111,1073780954,1276947951, 1542998910,1834945283,1091064993,1297502252,1567539424,1864129036,1108417756,1318138282,1592176366,1893427462,1125838705,1338855398,1616908986,1922839671,1143327309,1359652971, 1641736552,1952364788,1160883049,1380530381,1666658341,1982001957,1178505415,1401487024,1691673647,2011750337,1196193907,1422522305,1716781775,2041609102,1213948035,1443635641, 1741982045,2071577442,1231767317,1464826457,1767273788,2101654562,1249651279,1486094193,1792656346,2131839681,1267599458,1507438295,1818129074,1081066015,1285611397,1528858220, 1843691338,1096265429,1303686648,1550353437,1869342516,1111517710,1321824769,1571923421,1895081995,1126822496,1340025330,1593567657,1920909174,1142179429,1358287903,1615285639, 1946823461,1157588156,1376612071,1637076870,1972824274,1173048332,1394997422,1658940860,1998911042,1188559616,1413443553,1680877129,2025083200,1204121675,1431950063,1702885204, 2051340197,1219734179,1450516564,1724964618,2077681487,1235396803,1469142669,1747114914,2104106534,1251109230,1487827998,1769335642,2130614810,1266871146,1506572180,1791626356, 1078602898,1282682241,1525374847,1813986621,1091939491,1298542212,1544235637,1836416007,1105316931,1314450759,1563154194,1858914090,1118734971,1330407587,1582130168,1881480453, 1132193366,1346412406,1601163213,1904114686,1145691876,1362464931,1620252989,1926816383,1159230264,1378564878,1639399161,1949585147,1172808296,1394711970,1658601399,1972420584, 1186425743,1410905934,1677859376,1995322308,1200082376,1427146500,1697172772,2018289936,1213777973,1443433402,1716541272,2041323093,1227512314,1459766377,1735964562,2064421409, 1241285180,1476145168,1755442337,2087584517,1255096358,1492569519,1774974292,2110812057,1268945636,1509039179,1794560128,2134103673,1282832806,1525553900,1814199552,1078729508, 1296757661,1542113437,1833892272,1090438869,1310720000,1558717550,1853638000,1102179749,1324719622,1575365999,1873436455,1113951981,1338756329,1592058551,1893287357,1125755398, 1352829926,1608794974,1913190429,1137589835,1366940222,1625575038,1933145401,1149455132,1381087026,1642398517,1953152002,1161351129,1395270150,1659265190,1973209969,1173277667, 1409489410,1676174835,1993319040,1185234592,1423744623,1693127236,2013478955,1197221750,1438035608,1710122177,2033689461,1209238988,1452362188,1727159448,2053950304,1221286158, 1466724186,1744238838,2074261236,1233363110,1481121428,1761360141,2094622011,1245469699,1495553743,1778523152,2115032387,1257605781,1510020961,1795727671,2135492123,1269771213, 1524522915,1812973497,1078000491,1281965854,1539059438,1830260434,1088279365,1294189564,1553630368,1847588287,1098582568,1306442207,1568235542,1864956864,1108909986,1318723645, 1582874800,1882365975,1119261505,1331033745,1597547986,1899815431,1129637014,1343372374,1612254941,1917305047,1140036402,1355739401,1626995513,1934834640,1150459560,1368134695, 1641769549,1952404028,1160906381,1380558128,1656576896,1970013032,1171376757,1393009574,1671417408,1987661473,1181870583,1405488907,1686290935,2005349178,1192387755,1417996002, 1701197332,2023075971,1202928169,1430530738,1716136454,2040841682,1213491724,1443092992,1731108159,2058646140,1224078319,1455682646,1746112306,2076489178,1234687852,1468299579, 1761148755,2094370630,1245320227,1480943675,1776217367,2112290331,1255975345,1493614817,1791318007,2130248119,1266653110,1506312890,1806450538,1074121916,1277353425,1519037782, 1821614827,1083138656,1288076197,1531789378,1836810741,1092174201,1298821331,1544567568,1852038150,1101228472,1309588735,1557372241,1867296923,1110301393,1320378316,1570203288, 1882586932,1119392887,1331189986,1583060602,1897908050,1128502878,1342023652,1595944076,1913260152,1137631293,1352879227,1608853603,1928643112,1146778055,1363756623,1621789079, 1944056807,1155943093,1374655751,1634750400,1959501116,1165126334,1385576527,1647737464,1974975917,1174327706,1396518863,1660750169,1990481090,1183547137,1407482677,1673788414, 2006016518,1192784558,1418467883,1686852099,2021582083,1202039898,1429474399,1699941127,2037177668,1211313089,1440502143,1713055398,2052803158,1220604061,1451551034,1726194817, 2068458440,1229912747,1462620990,1739359287,2084143400,1239239080,1473711931,1752548714,2099857927,1248582994,1484823780,1765763003,2115601909,1257944421,1495956456,1779002061, 2131375237,1267323298,1507109884,1792265797,2147177802,1276719560,1518283985,1805554117,1081504748,1286133142,1529478683,1818866932,1089435107,1295563980,1540693904,1832204152, 1097379924,1305012013,1551929571,1845565688,1105339146,1314477177,1563185612,1858951452,1113312723,1323959411,1574461952,1872361356,1121300602,1333458654,1585758519,1885795313, 1129302732,1342974844,1597075240,1899253239,1137319064,1352507923,1608412045,1912735047,1145349546,1362057829,1619768861,1926240654,1153394129,1371624504,1631145619,1939769976, 1161452763,1381207890,1642542250,1953322930,1169525401,1390807928,1653958683,1966899434,1177611993,1400424560,1665394851,1980499407,1185712491,1410057731,1676850686,1994122767, 1193826849,1419707382,1688326120,2007769435,1201955018,1429373459,1699821087,2021439331,1210096952,1439055905,1711335521,2035132378,1218252604,1448754665,1722869356,2048848496, 1226421930,1458469685,1734422526,2062587608,1234604882,1468200909,1745994968,2076349638,1242801415,1477948286,1757586617,2090134510,1251011486,1487711760,1769197410,2103942148, 1259235049,1497491280,1780827285,2117772477,1267472060,1507286792,1792476178,2131625424,1275722476,1517098245,1804144027,2145500914,1283986253,1526925587,1815830772,1079699437, 1292263347,1536768767,1827536352,1086659616,1300553717,1546627734,1839260706,1093630959,1308857320,1556502438,1851003773,1100613429,1317174114,1566392828,1862765496,1107606991, 1325504057,1576298855,1874545814,1114611610,1333847107,1586220470,1886344669,1121627251,1342203224,1596157624,1898162003,1128653880,1350572367,1606110269,1909997759,1135691462, 1358954496,1616078356,1921851879,1142739964,1367349570,1626061837,1933724306,1149799352,1375757550,1636060667,1945614985,1156869592,1384178395,1646074796,1957523860,1163950651, 1392612068,1656104180,1969450874,1171042496,1401058529,1666148771,1981395973,1178145094,1409517739,1676208524,1993359103,1185258414,1417989660,1686283393,2005340209,1192382422, 1426474254,1696373333,2017339237,1199517087,1434971484,1706478299,2029356134,1206662377,1443481311,1716598246,2041390848,1213818260,1452003699,1726733130,2053443324,1220984706, 1460538611,1736882908,2065513512,1228161683,1469086010,1747047536,2077601360,1235349160,1477645860,1757226970,2089706815,1242547107,1486218124,1767421168,2101829828,1249755493, 1494802767,1777630086,2113970346,1256974288,1503399753,1787853683,2126128321,1264203463,1512009047,1798091917,2138303701,1271442988,1520630614,1808344745,1075248219,1278692832, 1529264419,1818612127,1081353241,1285952968,1537910426,1828894021,1087466891,1293223365,1546568603,1839190387,1093589147,1300503994,1555238915,1849501183,1099719983,1307794828, 1563921327,1859826370,1105859376,1315095838,1572615807,1870165907,1112007302,1322406995,1581322321,1880519755,1118163737,1329728271,1590040836,1890887875,1124328657,1337059639, 1598771318,1901270227,1130502041,1344401070,1607513735,1911666772,1136683863,1351752538,1616268055,1922077471,1142874102,1359114014,1625034246,1932502287,1149072735,1366485472, 1633812274,1942941181,1155279738,1373866884,1642602109,1953394115,1161495090,1381258225,1651403719,1963861052,1167718768,1388659467,1660217071,1974341954,1173950749,1396070584, 1669042137,1984836784,1180191013,1403491550,1677878883,1995345505,1186439536,1410922338,1686727279,2005868082,1192696297,1418362923,1695587295,2016404476,1198961275,1425813278, 1704458901,2026954652,1205234447,1433273380,1713342066,2037518575,1211515793,1440743201,1722236759,2048096208,1217805291,1448222717,1731142952,2058687516,1224102921,1455711903, 1740060615,2069292464,1230408661,1463210734,1748989718,2079911017,1236722490,1470719184,1757930232,2090543140,1243044388,1478237231,1766882128,2101188798,1249374334,1485764848, 1775845377,2111847958,1255712309,1493302012,1784819951,2122520584,1262058290,1500848698,1793805820,2133206644,1268412260,1508404884,1802802957,2143906104,1274774196,1515970544, 1811811333,1077309464,1281144080,1523545655,1820830921,1082672543,1287521892,1531130194,1829861693,1088042272,1293907612,1538724138,1838903620,1093418634,1300301220,1546327462, 1847956676,1098801614,1306702697,1553940145,1857020833,1104191194,1313112024,1561562162,1866096065,1109587359,1319529182,1569193491,1875182343,1114990092,1325954151,1576834110, 1884279642,1120399379,1332386913,1584483997,1893387935,1125815202,1338827448,1592143127,1902507195,1131237546,1345275739,1599811480,1911637396,1136666396,1351731766,1607489033, 1920778511,1142101736,1358195510,1615175765,1929930516,1147543550,1364666955,1622871652,1939093383,1152991824,1371146080,1630576675,1948267088,1158446541,1377632869,1638290810, 1957451604,1163907687,1384127303,1646014037,1966646906,1169375247,1390629364,1653746334,1975852970,1174849205,1397139034,1661487680,1985069770,1180329547,1403656295,1669238053, 1994297280,1185816257,1410181130,1676997434,2003535477,1191309322,1416713522,1684765800,2012784335,1196808726,1423253452,1692543132,2022043830,1202314455,1429800904,1700329409, 2031313938,1207826494,1436355861,1708124609,2040594635,1213344829,1442918304,1715928713,2049885895,1218869446,1449488217,1723741701,2059187696,1224400330,1456065584,1731563552, 2068500013,1229937467,1462650386,1739394246,2077822823,1235480843,1469242609,1747233764,2087156103,1241030444,1475842234,1755082085,2096499828,1246586256,1482449245,1762939190, 2105853975,1252148265,1489063626,1770805059,2115218522,1257716458,1495685361,1778679673,2124593445,1263290821,1502314432,1786563012,2133978721,1268871339,1508950825,1794455057, 2143374328,1274458001,1515594522,1802355789,1076390122,1280050791,1522245508,1810265189,1081098222,1285649697,1528903767,1818183238,1085811453,1291254706,1535569283,1826109917, 1090529805,1296865803,1542242040,1834045207,1095253266,1302482977,1548922023,1841989090,1099981825,1308106213,1555609215,1849941547,1104715471,1313735499,1562303602,1857902560, 1109454194,1319370821,1569005168,1865872110,1114197982,1325012168,1575713898,1873850178,1118946825,1330659526,1582429776,1881836748,1123700712,1336312882,1589152787,1889831801, 1128459632,1341972223,1595882916,1897835318,1133223574,1347637538,1602620148,1905847283,1137992529,1353308812,1609364469,1913867677,1142766485,1358986035,1616115862,1921896482, 1147545432,1364669193,1622874314,1929933681,1152329360,1370358274,1629639810,1937979257,1157118259,1376053266,1636412335,1946033191,1161912117,1381754156,1643191874,1954095468, 1166710925,1387460933,1649978413,1962166069,1171514673,1393173584,1656771938,1970244977,1176323350,1398892097,1663572435,1978332176,1181136946,1404616460,1670379888,1986427648, 1185955452,1410346661,1677194284,1994531376,1190778857,1416082689,1684015609,2002643344,1195607152,1421824531,1690843849,2010763536,1200440326,1427572176,1697678989,2018891933, 1205278369,1433325612,1704521016,2027028520,1210121273,1439084828,1711369917,2035173281,1214969027,1444849811,1718225676,2043326199,1219821621,1450620551,1725088281,2051487257, 1224679047,1456397036,1731957717,2059656440,1229541293,1462179254,1738833972,2067833732,1234408351,1467967194,1745717032,2076019115,1239280212,1473760846,1752606883,2084212575, 1244156865,1479560196,1759503513,2092414096,1249038302,1485365236,1766406906,2100623661,1253924513,1491175952,1773317052,2108841255,1258815488,1496992335,1780233936,2117066863, 1263711219,1502814373,1787157545,2125300468,1268611696,1508642055,1794087866,2133542055,1273516910,1514475371,1801024886,2141791609,1278426852,1520314309,1807968593,1075024557, 1283341513,1526158858,1814918973,1079157278,1288260884,1532009009,1821876014,1083293959,1293184955,1537864750,1828839702,1087434593,1298113718,1543726070,1835810026,1091579172, 1303047165,1549592959,1842786973,1095727690,1307985285,1555465407,1849770529,1099880137,1312928070,1561343403,1856760684,1104036508,1317875512,1567226936,1863757423,1108196794, 1322827602,1573115996,1870760735,1112360988,1327784330,1579010573,1877770608,1116529084,1332745689,1584910656,1884787029,1120701073,1337711670,1590816235,1891809986,1124876948, 1342682263,1596727301,1898839467,1129056702,1347657461,1602643842,1905875459,1133240328,1352637256,1608565848,1912917952,1137427819,1357621637,1614493311,1919966932,1141619168, 1362610598,1620426218,1927022388,1145814367,1367604130,1626364562,1934084308,1150013410,1372602224,1632308331,1941152681,1154216289,1377604872,1638257515,1948227493,1158422998, 1382612066,1644212106,1955308735,1162633530,1387623797,1650172092,1962396393,1166847877,1392640058,1656137465,1969490457,1171066032,1397660840,1662108215,1976590915,1175287990, 1402686135,1668084332,1983697756,1179513742,1407715935,1674065806,1990810967,1183743283,1412750232,1680052627,1997930538,1187976606,1417789018,1686044787,2005056457,1192213702, 1422832284,1692042276,2012188714,1196454567,1427880024,1698045084,2019327295,1200699194,1432932229,1704053202,2026472192,1204947575,1437988891,1710066620,2033623392,1209199703, 1443050002,1716085330,2040780884,1213455574,1448115555,1722109321,2047944658,1217715179,1453185541,1728138585,2055114701,1221978512,1458259954,1734173113,2062291004,1226245568, 1463338785,1740212895,2069473556,1230516338,1468422026,1746257922,2076662345,1234790818,1473509671,1752308185,2083857361,1239069000,1478601711,1758363675,2091058593,1243350878, 1483698138,1764424383,2098266030,1247636446,1488798946,1770490300,2105479661,1251925697,1493904127,1776561417,2112699477,1256218625,1499013673,1782637725,2119925466,1260515224, 1504127577,1788719216,2127157618,1264815487,1509245831,1794805880,2134395923,1269119409,1514368428,1800897709,2141640369,1273426982,1519495361,1806994694,1074445474,1277738202, 1524626622,1813096827,1078073823,1282053061,1529762204,1819204098,1081705228,1286371554,1534902100,1825316499,1085339684,1290693674,1540046303,1831434021,1088977184,1295019416, 1545194805,1837556656,1092617725,1299348772,1550347599,1843684396,1096261301,1303681739,1555504679,1849817231,1099907906,1308018308,1560666036,1855955154,1103557537,1312358475, 1565831664,1862098156,1107210188,1316702233,1571001556,1868246228,1110865854,1321049577,1576175705,1874399363,1114524529,1325400500,1581354104,1880557551,1118186210,1329754997, 1586536745,1886720786,1121850891,1334113062,1591723623,1892889057,1125518567,1338474688,1596914729,1899062358,1129189234,1342839871,1602110058,1905240679,1132862886,1347208604, 1607309601,1911424014,1136539519,1351580882,1612513354,1917612353,1140219127,1355956699,1617721308,1923805689,1143901707,1360336048,1622933456,1930004014,1147587252,1364718926, 1628149793,1936207319,1151275760,1369105325,1633370312,1942415596,1154967224,1373495240,1638595005,1948628839,1158661640,1377888666,1643823866,1954847038,1162359003,1382285596, 1649056889,1961070185,1166059309,1386686026,1654294067,1967298274,1169762553,1391089950,1659535392,1973531296,1173468730,1395497362,1664780860,1979769243,1177177835,1399908257, 1670030463,1986012108,1180889865,1404322629,1675284194,1992259883,1184604814,1408740473,1680542048,1998512560,1188322678,1413161783,1685804017,2004770131,1192043452,1417586555, 1691070095,2011032589,1195767132,1422014781,1696340277,2017299927,1199493713,1426446458,1701614555,2023572136,1203223191,1430881579,1706892923,2029849209,1206955561,1435320140, 1712175375,2036131139,1210690818,1439762135,1717461905,2042417917,1214428959,1444207559,1722752506,2048709537,1218169979,1448656407,1728047172,2055005992,1221913873,1453108672, 1733345896,2061307273,1225660637,1457564351,1738648674,2067613373,1229410267,1462023437,1743955497,2073924286,1233162758,1466485926,1749266361,2080240003,1236918106,1470951812, 1754581259,2086560517,1240676306,1475421091,1759900185,2092885822,1244437355,1479893757,1765223133,2099215909,1248201247,1484369804,1770550096,2105550772,1251967979,1488849229, 1775881069,2111890403,1255737547,1493332025,1781216047,2118234796,1259509945,1497818188,1786555021,2124583943,1263285171,1502307713,1791897988,2130937837,1267063218,1506800594, 1797244940,2137296470,1270844085,1511296828,1802595872,2143659837,1274627765,1515796407,1807950779,1075013965,1278414256,1520299329,1813309653,1078200370,1282203552,1524805587, 1818672489,1081389132,1285995650,1529315177,1824039282,1084580246,1289790546,1533828094,1829410025,1087773709,1293588235,1538344332,1834784714,1090969518,1297388713,1542863888, 1840163341,1094167669,1301191977,1547386757,1845545901,1097368158,1304998021,1551912932,1850932388,1100570983,1308806843,1556442410,1856322798,1103776139,1312618438,1560975186, 1861717123,1106983624,1316432802,1565511255,1867115359,1110193435,1320249932,1570050612,1872517499,1113405567,1324069822,1574593253,1877923539,1116620017,1327892469,1579139172, 1883333472,1119836782,1331717869,1583688365,1888747293,1123055859,1335546019,1588240828,1894164996,1126277245,1339376913,1592796555,1899586575,1129500935,1343210549,1597355542, 1905012026,1132726928,1347046922,1601917784,1910441343,1135955219,1350886029,1606483277,1915874520,1139185805,1354727865,1611052016,1921311551,1142418683,1358572427,1615623996, 1926752432,1145653850,1362419710,1620199213,1932197156,1148891303,1366269712,1624777662,1937645719,1152131038,1370122428,1629359339,1943098115,1155373052,1373977854,1633944239, 1948554338,1158617342,1377835986,1638532358,1954014384,1161863904,1381696821,1643123691,1959478246,1165112736,1385560356,1647718233,1964945921,1168363835,1389426585,1652315981, 1970417401,1171617196,1393295506,1656916929,1975892682,1174872818,1397167114,1661521073,1981371759,1178130697,1401041407,1666128409,1986854626,1181390829,1404918380,1670738933, 1992341279,1184653212,1408798029,1675352640,1997831712,1187917843,1412680351,1679969525,2003325919,1191184718,1416565342,1684589584,2008823896,1194453835,1420452999,1689212813, 2014325637,1197725190,1424343318,1693839208,2019831138,1200998780,1428236295,1698468764,2025340393,1204274603,1432131926,1703101476,2030853397,1207552655,1436030209,1707737342, 2036370145,1210832933,1439931139,1712376355,2041890632,1214115434,1443834712,1717018513,2047414853,1217400155,1447740926,1721663810,2052942802,1220687094,1451649777,1726312243, 2058474476,1223976246,1455561261,1730963807,2064009868,1227267610,1459475374,1735618499,2069548974,1230561182,1463392113,1740276313,2075091788,1233856959,1467311475,1744937246, 2080638307,1237154939,1471233456,1749601294,2086188524,1240455118,1475158052,1754268452,2091742436,1243757494,1479085261,1758938716,2097300036,1247062063,1483015078,1763612082, 2102861321,1250368822,1486947500,1768288547,2108426285,1253677770,1490882524,1772968105,2113994924,1256988902,1494820146,1777650753,2119567232,1260302216,1498760363,1782336487, 2125143205,1263617710,1502703171,1787025303,2130722837,1266935379,1506648567,1791717196,2136306125,1270255222,1510596548,1796412163,2141893064,1273577236,1514547110,1801110199, 1073741824,1276901417,1518500250,1805811301,1076538936,1280227763,1522455964,1810515465,1079337867,1283556271,1526414250,1815222687,1082138613,1286886938,1530375103,1819932962, 1084941173,1290219762,1534338521,1824646286,1087745544,1293554740,1538304500,1829362657,1090551723,1296891868,1542273037,1834082069,1093359709,1300231145,1546244129,1838804519, 1096169499,1303572567,1550217772,1843530004,1098981090,1306916132,1554193962,1848258518,1101794481,1310261836,1558172698,1852990059,1104609669,1313609678,1562153975,1857724622, 1107426652,1316959654,1566137790,1862462204,1110245427,1320311762,1570124141,1867202800,1113065993,1323665998,1574113023,1871946407,1115888347,1327022361,1578104434,1876693021, 1118712486,1330380848,1582098370,1881442639,1121538409,1333741456,1586094829,1886195255,1124366113,1337104182,1590093806,1890950868,1127195596,1340469023,1594095300,1895709472, 1130026856,1343835977,1598099306,1900471065,1132859891,1347205042,1602105821,1905235642,1135694697,1350576214,1606114844,1910003199,1138531274,1353949492,1610126369,1914773734, 1141369619,1357324871,1614140395,1919547242,1144209729,1360702351,1618156917,1924323719,1147051603,1364081928,1622175934,1929103162,1149895238,1367463599,1626197441,1933885567, 1152740633,1370847362,1630221436,1938670931,1155587784,1374233215,1634247916,1943459250,1158436690,1377621154,1638276878,1948250520,1161287349,1381011178,1642308318,1953044737, 1164139758,1384403283,1646342234,1957841898,1166993915,1387797467,1650378622,1962642000,1169849819,1391193728,1654417480,1967445038,1172707467,1394592063,1658458804,1972251010, 1175566857,1397992470,1662502592,1977059911,1178427986,1401394946,1666548840,1981871738,1181290853,1404799488,1670597546,1986686488,1184155456,1408206094,1674648706,1991504156, 1187021793,1411614761,1678702318,1996324740,1189889860,1415025488,1682758378,2001148236,1192759657,1418438271,1686816884,2005974640,1195631182,1421853108,1690877833,2010803949, 1198504431,1425269997,1694941221,2015636160,1201379404,1428688935,1699007046,2020471268,1204256097,1432109919,1703075305,2025309270,1207134510,1435532948,1707145995,2030150164, 1210014639,1438958018,1711219114,2034993945,1212896484,1442385128,1715294657,2039840610,1215780041,1445814275,1719372623,2044690156,1218665309,1449245456,1723453008,2049542579, 1221552285,1452678669,1727535809,2054397876,1224440969,1456113912,1731621025,2059256043,1227331357,1459551182,1735708651,2064117077,1230223448,1462990478,1739798685,2068980975, 1233117240,1466431795,1743891125,2073847733,1236012730,1469875133,1747985967,2078717348,1238909918,1473320489,1752083208,2083589817,1241808799,1476767860,1756182846,2088465136, 1244709374,1480217244,1760284878,2093343302,1247611640,1483668639,1764389302,2098224311,1250515594,1487122042,1768496113,2103108161,1253421235,1490577451,1772605310,2107994847, 1256328562,1494034864,1776716890,2112884368,1259237571,1497494278,1780830851,2117776718,1262148261,1500955692,1784947188,2122671896,1265060630,1504419102,1789065900,2127569898, 1267974676,1507884507,1793186984,2132470720,1270890398,1511351904,1797310437,2137374360,1273807793,1514821290,1801436257,2142280814,1276726859,1518292665,1805564440,2147190078, 1279647595,1521766025,1809694984,1076051075,1282569998,1525241367,1813827886,1078508514,1285494067,1528718691,1817963144,1080967353,1288419800,1532197993,1822100755,1083427591, 1291347195,1535679272,1826240716,1085889227,1294276249,1539162524,1830383025,1088352258,1297206962,1542647749,1834527679,1090816684,1300139331,1546134943,1838674675,1093282503, 1303073354,1549624104,1842824010,1095749712,1306009030,1553115231,1846975683,1098218312,1308946357,1556608320,1851129690,1100688299,1311885332,1560103371,1855286029,1103159673, 1314825954,1563600380,1859444696,1105632431,1317768221,1567099345,1863605691,1108106574,1320712132,1570600264,1867769009,1110582097,1323657684,1574103136,1871934649,1113059002, 1326604876,1577607957,1876102607,1115537284,1329553705,1581114726,1880272882,1118016945,1332504170,1584623440,1884445470,1120497980,1335456270,1588134098,1888620369,1122980390, 1338410002,1591646697,1892797577,1125464173,1341365364,1595161235,1896977090,1127949326,1344322356,1598677710,1901158907,1130435850,1347280974,1602196120,1905343025,1132923741, 1350241217,1605716462,1909529442,1135412999,1353203084,1609238735,1913718154,1137903622,1356166572,1612762937,1917909159,1140395609,1359131680,1616289064,1922102455,1142888958, 1362098406,1619817116,1926298040,1145383667,1365066749,1623347090,1930495910,1147879736,1368036706,1626878984,1934696063,1150377162,1371008276,1630412796,1938898498,1152875944, 1373981457,1633948524,1943103210,1155376082,1376956247,1637486166,1947310199,1157877572,1379932645,1641025719,1951519461,1160380414,1382910648,1644567182,1955730994,1162884607, 1385890256,1648110553,1959944796,1165390148,1388871466,1651655829,1964160864,1167897037,1391854277,1655203009,1968379195,1170405272,1394838686,1658752090,1972599787,1172914851, 1397824693,1662303071,1976822639,1175425774,1400812296,1665855949,1981047747,1177938038,1403801492,1669410722,1985275108,1180451642,1406792280,1672967389,1989504722,1182966585, 1409784659,1676525947,1993736584,1185482866,1412778626,1680086394,1997970694,1188000482,1415774181,1683648729,2002207048,1190519433,1418771321,1687212949,2006445643,1193039718, 1421770044,1690779052,2010686479,1195561333,1424770350,1694347037,2014929552,1198084280,1427772236,1697916901,2019174860,1200608555,1430775700,1701488643,2023422400,1203134157, 1433780742,1705062260,2027672171,1205661086,1436787359,1708637750,2031924169,1208189340,1439795550,1712215112,2036178394,1210718917,1442805313,1715794344,2040434841,1213249815, 1445816646,1719375443,2044693510,1215782035,1448829548,1722958407,2048954397,1218315573,1451844018,1726543236,2053217500,1220850430,1454860052,1730129926,2057482818,1223386603, 1457877651,1733718476,2061750347,1225924091,1460896812,1737308884,2066020085,1228462893,1463917534,1740901147,2070292031,1231003007,1466939815,1744495265,2074566182,1233544432, 1469963653,1748091235,2078842535,1236087167,1472989048,1751689056,2083121088,1238631210,1476015996,1755288725,2087401840,1241176560,1479044497,1758890240,2091684788,1243723216, 1482074550,1762493599,2095969929,1246271176,1485106151,1766098802,2100257261,1248820439,1488139301,1769705845,2104546782,1251371004,1491173997,1773314727,2108838491,1253922869, 1494210238,1776925446,2113132384,1256476033,1497248022,1780538001,2117428459,1259030494,1500287348,1784152388,2121726715,1261586253,1503328213,1787768608,2126027148,1264143306, 1506370618,1791386656,2130329757,1266701652,1509414559,1795006533,2134634540,1269261292,1512460035,1798628235,2138941495,1271822222,1515507046,1802251762,2143250618,1274384442, 1518555589,1805877111,1073780954,1276947951,1521605662,1809504280,1075937682,1279512747,1524657265,1813133267,1078095491,1282078829,1527710395,1816764072,1080254380,1284646195, 1530765052,1820396691,1082414349,1287214845,1533821233,1824031124,1084575395,1289784777,1536878938,1827667368,1086737519,1292355990,1539938164,1831305421,1088900718,1294928482, 1542998910,1834945283,1091064993,1297502252,1546061175,1838586950,1093230341,1300077300,1549124957,1842230421,1095396762,1302653623,1552190255,1845875695,1097564255,1305231221, 1555257066,1849522769,1099732818,1307810092,1558325390,1853171642,1101902451,1310390235,1561395226,1856822312,1104073152,1312971648,1564466571,1860474777,1106244921,1315554331, 1567539424,1864129036,1108417756,1318138282,1570613784,1867785087,1110591657,1320723500,1573689649,1871442927,1112766622,1323309984,1576767017,1875102556,1114942650,1325897733, 1579845888,1878763971,1117119741,1328486744,1582926260,1882427171,1119297893,1331077018,1586008131,1886092154,1121477105,1333668552,1589091500,1889758918,1123657376,1336261346, 1592176366,1893427462,1125838705,1338855398,1595262726,1897097784,1128021091,1341450708,1598350580,1900769882,1130204534,1344047273,1601439926,1904443754,1132389031,1346645093, 1604530762,1908119399,1134574583,1349244166,1607623088,1911796815,1136761187,1351844492,1610716902,1915476000,1138948844,1354446069,1613812202,1919156952,1141137551,1357048895, 1616908986,1922839671,1143327309,1359652971,1620007255,1926524154,1145518115,1362258293,1623107005,1930210399,1147709970,1364864862,1626208236,1933898405,1149902871,1367472676, 1629310946,1937588170,1152096819,1370081734,1632415135,1941279693,1154291811,1372692035,1635520799,1944972971,1156487848,1375303577,1638627939,1948668003,1158684927,1377916360, 1641736552,1952364788,1160883049,1380530381,1644846637,1956063324,1163082211,1383145641,1647958193,1959763609,1165282414,1385762137,1651071219,1963465641,1167483655,1388379870, 1654185713,1967169419,1169685935,1390998836,1657301673,1970874942,1171889252,1393619036,1660419099,1974582207,1174093605,1396240468,1663537989,1978291212,1176298993,1398863131, 1666658341,1982001957,1178505415,1401487024,1669780154,1985714440,1180712870,1404112146,1672903428,1989428659,1182921358,1406738495,1676028159,1993144612,1185130877,1409366071, 1679154348,1996862298,1187341426,1411994872,1682281993,2000581715,1189553005,1414624897,1685411091,2004302862,1191765612,1417256145,1688541643,2008025736,1193979246,1419888615, 1691673647,2011750337,1196193907,1422522305,1694807101,2015476663,1198409594,1425157216,1697942004,2019204712,1200626305,1427793344,1701078354,2022934482,1202844040,1430430690, 1704216151,2026665972,1205062797,1433069252,1707355393,2030399181,1207282576,1435709030,1710496079,2034134107,1209503376,1438350021,1713638207,2037870748,1211725196,1440992225, 1716781775,2041609102,1213948035,1443635641,1719926784,2045349169,1216171892,1446280267,1723073231,2049090946,1218396766,1448926103,1726221115,2052834432,1220622656,1451573148, 1729370435,2056579626,1222849562,1454221399,1732521189,2060326525,1225077481,1456870857,1735673376,2064075129,1227306414,1459521520,1738826996,2067825435,1229536360,1462173387, 1741982045,2071577442,1231767317,1464826457,1745138524,2075331150,1233999285,1467480729,1748296431,2079086555,1236232262,1470136202,1751455765,2082843657,1238466248,1472792874, 1754616524,2086602454,1240701242,1475450745,1757778707,2090362945,1242937243,1478109813,1760942313,2094125127,1245174251,1480770078,1764107340,2097889000,1247412263,1483431538, 1767273788,2101654562,1249651279,1486094193,1770441654,2105421812,1251891299,1488758040,1773610939,2109190747,1254132322,1491423080,1776781639,2112961367,1256374346,1494089311, 1779953755,2116733670,1258617371,1496756732,1783127285,2120507654,1260861395,1499425342,1786302228,2124283319,1263106418,1502095140,1789478581,2128060661,1265352440,1504766124, 1792656346,2131839681,1267599458,1507438295,1795835518,2135620376,1269847473,1510111650,1799016099,2139402745,1272096483,1512786189,1802198086,2143186787,1274346488,1515461910, 1805381478,2146972499,1276597486,1518138813,1808566274,1075379941,1278849477,1520816897,1811752473,1077274466,1281102459,1523496160,1814940073,1079169824,1283356433,1526176601, 1818129074,1081066015,1285611397,1528858220,1821319473,1082963038,1287867350,1531541016,1824511270,1084860892,1290124292,1534224987,1827704464,1086759576,1292382220,1536910132, 1830899053,1088659090,1294641136,1539596450,1834095036,1090559433,1296901037,1542283941,1837292412,1092460604,1299161924,1544972603,1840491180,1094362603,1301423794,1547662436, 1843691338,1096265429,1303686648,1550353437,1846892886,1098169080,1305950484,1553045607,1850095821,1100073557,1308215301,1555738944,1853300143,1101978858,1310481099,1558433447, 1856505851,1103884984,1312747877,1561129115,1859712944,1105791932,1315015634,1563825948,1862921420,1107699703,1317284369,1566523944,1866131277,1109608296,1319554081,1569223102, 1869342516,1111517710,1321824769,1571923421,1872555134,1113427945,1324096434,1574624900,1875769131,1115338999,1326369073,1577327538,1878984506,1117250872,1328642686,1580031335, 1882201256,1119163563,1330917272,1582736289,1885419381,1121077071,1333192830,1585442399,1888638880,1122991397,1335469360,1588149664,1891859752,1124906539,1337746860,1590858084, 1895081995,1126822496,1340025330,1593567657,1898305609,1128739268,1342304769,1596278382,1901530592,1130656854,1344585176,1598990258,1904756942,1132575254,1346866550,1601703285, 1907984660,1134494466,1349148891,1604417461,1911213743,1136414491,1351432198,1607132785,1914444190,1138335326,1353716469,1609849257,1917676001,1140256972,1356001705,1612566875, 1920909174,1142179429,1358287903,1615285639,1924143708,1144102694,1360575064,1618005547,1927379602,1146026768,1362863187,1620726599,1930616855,1147951650,1365152270,1623448793, 1933855466,1149877340,1367442314,1626172129,1937095433,1151803836,1369733316,1628896605,1940336755,1153731137,1372025277,1631622222,1943579432,1155659244,1374318196,1634348977, 1946823461,1157588156,1376612071,1637076870,1950068843,1159517871,1378906902,1639805899,1953315575,1161448390,1381202689,1642536065,1956563657,1163379711,1383499430,1645267366, 1959813088,1165311834,1385797124,1647999800,1963063866,1167244758,1388095772,1650733368,1966315991,1169178483,1390395371,1653468068,1969569460,1171113008,1392695921,1656203899, 1972824274,1173048332,1394997422,1658940860,1976080431,1174984454,1397299873,1661678951,1979337930,1176921375,1399603273,1664418170,1982596770,1178859092,1401907620,1667158517, 1985856949,1180797607,1404212915,1669899990,1989118467,1182736917,1406519157,1672642588,1992381323,1184677022,1408826344,1675386312,1995645514,1186617922,1411134476,1678131159, 1998911042,1188559616,1413443553,1680877129,2002177903,1190502104,1415753572,1683624221,2005446098,1192445384,1418064535,1686372434,2008715624,1194389456,1420376439,1689121768, 2011986482,1196334320,1422689285,1691872220,2015258669,1198279974,1425003071,1694623791,2018532186,1200226419,1427317797,1697376479,2021807030,1202173652,1429633461,1700130284, 2025083200,1204121675,1431950063,1702885204,2028360697,1206070486,1434267603,1705641239,2031639517,1208020085,1436586080,1708398387,2034919662,1209970470,1438905492,1711156649, 2038201128,1211921642,1441225839,1713916022,2041483916,1213873599,1443547121,1716676507,2044768024,1215826342,1445869336,1719438102,2048053452,1217779868,1448192484,1722200806, 2051340197,1219734179,1450516564,1724964618,2054628260,1221689273,1452841575,1727729538,2057917638,1223645149,1455167517,1730495565,2061208332,1225601807,1457494389,1733262697, 2064500339,1227559246,1459822190,1736030934,2067793659,1229517466,1462150919,1738800276,2071088291,1231476466,1464480575,1741570720,2074384234,1233436245,1466811159,1744342266, 2077681487,1235396803,1469142669,1747114914,2080980048,1237358140,1471475104,1749888663,2084279917,1239320254,1473808463,1752663511,2087581093,1241283144,1476142747,1755439457, 2090883574,1243246811,1478477954,1758216502,2094187360,1245211254,1480814083,1760994644,2097492449,1247176472,1483151134,1763773881,2100798841,1249142464,1485489106,1766554214, 2104106534,1251109230,1487827998,1769335642,2107415527,1253076770,1490167810,1772118162,2110725821,1255045082,1492508541,1774901776,2114037412,1257014166,1494850190,1777686481, 2117350301,1258984021,1497192756,1780472278,2120664486,1260954648,1499536239,1783259164,2123979967,1262926044,1501880638,1786047140,2127296742,1264898211,1504225952,1788836204, 2130614810,1266871146,1506572180,1791626356,2133934171,1268844849,1508919323,1794417595,2137254823,1270819321,1511267378,1797209919,2140576765,1272794560,1513616346,1800003328, 2143899997,1274770565,1515966226,1802797822,2147224517,1276747336,1518317016,1805593399,1075275162,1278724873,1520668717,1808390058,1076938709,1280703175,1523021328,1811187799, 1078602898,1282682241,1525374847,1813986621,1080267730,1284662071,1527729275,1816786523,1081933203,1286642663,1530084610,1819587504,1083599318,1288624018,1532440851,1822389564, 1085266073,1290606136,1534797999,1825192701,1086933468,1292589014,1537156052,1827996914,1088601503,1294572653,1539515010,1830802204,1090270178,1296557053,1541874872,1833608568, 1091939491,1298542212,1544235637,1836416007,1093609442,1300528130,1546597305,1839224519,1095280031,1302514806,1548959875,1842034104,1096951257,1304502240,1551323346,1844844760, 1098623121,1306490432,1553687717,1847656488,1100295620,1308479380,1556052988,1850469285,1101968755,1310469084,1558419159,1853283152,1103642526,1312459544,1560786228,1856098087, 1105316931,1314450759,1563154194,1858914090,1106991971,1316442728,1565523058,1861731160,1108667644,1318435451,1567892819,1864549296,1110343951,1320428927,1570263475,1867368497, 1112020891,1322423156,1572635026,1870188762,1113698464,1324418137,1575007472,1873010092,1115376668,1326413870,1577380811,1875832484,1117055504,1328410353,1579755044,1878655938, 1118734971,1330407587,1582130168,1881480453,1120415068,1332405571,1584506185,1884306029,1122095796,1334404304,1586883093,1887132664,1123777153,1336403786,1589260891,1889960359, 1125459139,1338404016,1591639578,1892789111,1127141754,1340404993,1594019155,1895618921,1128824997,1342406718,1596399620,1898449787,1130508868,1344409189,1598780973,1901281709, 1132193366,1346412406,1601163213,1904114686,1133878491,1348416369,1603546340,1906948717,1135564242,1350421076,1605930352,1909783801,1137250619,1352426528,1608315249,1912619938, 1138937622,1354432723,1610701031,1915457126,1140625249,1356439662,1613087697,1918295366,1142313501,1358447343,1615475245,1921134656,1144002377,1360455766,1617863676,1923974995, 1145691876,1362464931,1620252989,1926816383,1147381999,1364474836,1622643184,1929658819,1149072744,1366485482,1625034258,1932502302,1150764111,1368496868,1627426213,1935346831, 1152456100,1370508994,1629819047,1938192406,1154148710,1372521858,1632212759,1941039026,1155841941,1374535460,1634607349,1943886690,1157535793,1376549801,1637002817,1946735397, 1159230264,1378564878,1639399161,1949585147,1160925355,1380580692,1641796382,1952435938,1162621064,1382597242,1644194477,1955287771,1164317393,1384614528,1646593448,1958140643, 1166014339,1386632548,1648993292,1960994556,1167711903,1388651303,1651394010,1963849507,1169410084,1390670792,1653795601,1966705495,1171108882,1392691015,1656198064,1969562522, 1172808296,1394711970,1658601399,1972420584,1174508326,1396733658,1661005604,1975279682,1176208972,1398756078,1663410680,1978139816,1177910232,1400779229,1665816625,1981000983, 1179612107,1402803110,1668223440,1983863184,1181314596,1404827722,1670631123,1986726418,1183017698,1406853064,1673039674,1989590683,1184721414,1408879135,1675449091,1992455980, 1186425743,1410905934,1677859376,1995322308,1188130683,1412933462,1680270526,1998189665,1189836236,1414961717,1682682542,2001058051,1191542400,1416990700,1685095422,2003927465, 1193249175,1419020409,1687509167,2006797907,1194956561,1421050844,1689923774,2009669376,1196664556,1423082005,1692339245,2012541871,1198373162,1425113890,1694755578,2015415391, 1200082376,1427146500,1697172772,2018289936,1201792200,1429179834,1699590828,2021165505,1203502631,1431213892,1702009743,2024042097,1205213671,1433248673,1704429519,2026919711, 1206925318,1435284176,1706850154,2029798347,1208637572,1437320401,1709271647,2032678004,1210350433,1439357347,1711693998,2035558681,1212063900,1441395014,1714117207,2038440378, 1213777973,1443433402,1716541272,2041323093,1215492652,1445472510,1718966193,2044206827,1217207935,1447512337,1721391970,2047091578,1218923823,1449552882,1723818601,2049977346, 1220640314,1451594147,1726246087,2052864129,1222357410,1453636129,1728674427,2055751928,1224075109,1455678828,1731103620,2058640741,1225793410,1457722245,1733533665,2061530569, 1227512314,1459766377,1735964562,2064421409,1229231820,1461811226,1738396311,2067313261,1230951927,1463856790,1740828910,2070206126,1232672636,1465903069,1743262359,2073100001, 1234393945,1467950062,1745696658,2075994886,1236115854,1469997769,1748131806,2078890781,1237838364,1472046189,1750567802,2081787685,1239561472,1474095322,1753004646,2084685597, 1241285180,1476145168,1755442337,2087584517,1243009487,1478195726,1757880874,2090484443,1244734391,1480246994,1760320258,2093385375,1246459894,1482298974,1762760487,2096287313, 1248185993,1484351664,1765201560,2099190255,1249912690,1486405064,1767643478,2102094201,1251639983,1488459174,1770086240,2104999151,1253367873,1490513992,1772529844,2107905103, 1255096358,1492569519,1774974292,2110812057,1256825438,1494625754,1777419581,2113720012,1258555114,1496682696,1779865711,2116628967,1260285384,1498740345,1782312682,2119538923, 1262016248,1500798701,1784760493,2122449877,1263747705,1502857763,1787209144,2125361830,1265479756,1504917530,1789658634,2128274781,1267212400,1506978002,1792108962,2131188729, 1268945636,1509039179,1794560128,2134103673,1270679464,1511101060,1797012132,2137019613,1272413884,1513163644,1799464972,2139936548,1274148895,1515226932,1801918648,2142854477, 1275884497,1517290922,1804373160,2145773400,1277620690,1519355614,1806828507,1074346658,1279357472,1521421009,1809284688,1075807112,1281094844,1523487104,1811741703,1077268062, 1282832806,1525553900,1814199552,1078729508,1284571356,1527621396,1816658233,1080191448,1286310494,1529689592,1819117747,1081653884,1288050221,1531758487,1821578092,1083116814, 1289790535,1533828082,1824039268,1084580238,1291531437,1535898374,1826501274,1086044156,1293272925,1537969365,1828964111,1087508567,1295015000,1540041052,1831427777,1088973471, 1296757661,1542113437,1833892272,1090438869,1298500908,1544186518,1836357595,1091904759,1300244740,1546260296,1838823745,1093371141,1301989157,1548334769,1841290723,1094838014, 1303734158,1550409937,1843758528,1096305380,1305479743,1552485799,1846227158,1097773236,1307225912,1554562356,1848696614,1099241584,1308972665,1556639606,1851166895,1100710421, 1310720000,1558717550,1853638000,1102179749,1312467918,1560796186,1856109930,1103649567,1314216418,1562875515,1858582682,1105119875,1315965500,1564955535,1861056257,1106590671, 1317715163,1567036247,1863530655,1108061957,1319465407,1569117650,1866005874,1109533731,1321216232,1571199743,1868481914,1111005993,1322967637,1573282527,1870958775,1112478743, 1324719622,1575365999,1873436455,1113951981,1326472186,1577450161,1875914955,1115425706,1328225329,1579535012,1878394275,1116899918,1329979051,1581620551,1880874412,1118374617, 1331733352,1583706777,1883355368,1119849802,1333488230,1585793691,1885837140,1121325472,1335243686,1587881292,1888319730,1122801629,1336999719,1589969578,1890803135,1124278271, 1338756329,1592058551,1893287357,1125755398,1340513515,1594148210,1895772393,1127233009,1342271277,1596238553,1898258245,1128711105,1344029615,1598329581,1900744910,1130189685, 1345788528,1600421293,1903232389,1131668749,1347548016,1602513689,1905720681,1133148296,1349308079,1604606768,1908209785,1134628327,1351068716,1606700530,1910699701,1136108840, 1352829926,1608794974,1913190429,1137589835,1354591710,1610890100,1915681968,1139071313,1356354067,1612985907,1918174317,1140553273,1358116997,1615082396,1920667476,1142035714, 1359880499,1617179565,1923161444,1143518637,1361644572,1619277414,1925656222,1145002040,1363409218,1621375943,1928151807,1146485924,1365174434,1623475151,1930648200,1147970288, 1366940222,1625575038,1933145401,1149455132,1368706580,1627675603,1935643408,1150940456,1370473507,1629776846,1938142221,1152426260,1372241005,1631878767,1940641840,1153912542, 1374009072,1633981364,1943142264,1155399303,1375777708,1636084639,1945643493,1156886543,1377546912,1638188589,1948145526,1158374260,1379316685,1640293216,1950648363,1159862456, 1381087026,1642398517,1953152002,1161351129,1382857934,1644504494,1955656445,1162840279,1384629409,1646611145,1958161689,1164329906,1386401451,1648718470,1960667735,1165820010, 1388174059,1650826468,1963174582,1167310590,1389947234,1652935140,1965682229,1168801646,1391720974,1655044484,1968190676,1170293178,1393495279,1657154501,1970699923,1171785185, 1395270150,1659265190,1973209969,1173277667,1397045585,1661376550,1975720814,1174770624,1398821584,1663488581,1978232456,1176264056,1400598148,1665601283,1980744896,1177757962, 1402375275,1667714654,1983258133,1179252341,1404152965,1669828696,1985772166,1180747194,1405931217,1671943407,1988286995,1182242521,1407710033,1674058787,1990802620,1183738320, 1409489410,1676174835,1993319040,1185234592,1411269349,1678291551,1995836254,1186731337,1413049850,1680408935,1998354262,1188228553,1414830911,1682526986,2000873063,1189726242, 1416612534,1684645704,2003392658,1191224401,1418394716,1686765089,2005913045,1192723032,1420177459,1688885139,2008434224,1194222134,1421960761,1691005855,2010956194,1195721707, 1423744623,1693127236,2013478955,1197221750,1425529044,1695249281,2016002507,1198722263,1427314023,1697371991,2018526849,1200223245,1429099560,1699495365,2021051980,1201724697, 1430885655,1701619402,2023577900,1203226618,1432672308,1703744102,2026104609,1204729008,1434459518,1705869465,2028632105,1206231867,1436247285,1707995490,2031160389,1207735193, 1438035608,1710122177,2033689461,1209238988,1439824488,1712249525,2036219318,1210743250,1441613923,1714377535,2038749962,1212247980,1443403914,1716506204,2041281391,1213753177, 1445194460,1718635534,2043813606,1215258841,1446985561,1720765524,2046346604,1216764971,1448777216,1722896173,2048880387,1218271567,1450569425,1725027481,2051414954,1219778630, 1452362188,1727159448,2053950304,1221286158,1454155504,1729292072,2056486436,1222794151,1455949374,1731425354,2059023351,1224302609,1457743796,1733559294,2061561047,1225811532, 1459538771,1735693891,2064099524,1227320920,1461334297,1737829144,2066638782,1228830772,1463130375,1739965053,2069178821,1230341088,1464927005,1742101618,2071719639,1231851867, 1466724186,1744238838,2074261236,1233363110,1468521917,1746376713,2076803612,1234874816,1470320199,1748515242,2079346766,1236386985,1472119031,1750654426,2081890699,1237899616, 1473918412,1752794263,2084435408,1239412709,1475718343,1754934753,2086980895,1240926265,1477518823,1757075897,2089527158,1242440282,1479319851,1759217693,2092074197,1243954760, 1481121428,1761360141,2094622011,1245469699,1482923553,1763503240,2097170601,1246985100,1484726226,1765646991,2099719965,1248500961,1486529445,1767791393,2102270102,1250017282, 1488333212,1769936445,2104821014,1251534063,1490137526,1772082148,2107372699,1253051304,1491942386,1774228500,2109925156,1254569004,1493747792,1776375502,2112478386,1256087163, 1495553743,1778523152,2115032387,1257605781,1497360240,1780671451,2117587159,1259124858,1499167282,1782820398,2120142703,1260644393,1500974869,1784969993,2122699016,1262164387, 1502783000,1787120236,2125256100,1263684837,1504591675,1789271125,2127813952,1265205746,1506400894,1791422661,2130372574,1266727111,1508210656,1793574843,2132931965,1268248934, 1510020961,1795727671,2135492123,1269771213,1511831809,1797881144,2138053049,1271293949,1513643200,1800035263,2140614742,1272817141,1515455132,1802190026,2143177201,1274340788, 1517267606,1804345433,2145740427,1275864891,1519080622,1806501484,1074152209,1277389450,1520894179,1808658179,1075434587,1278914463,1522708277,1810815517,1076717348,1280439931, 1524522915,1812973497,1078000491,1281965854,1526338093,1815132120,1079284016,1283492231,1528153811,1817291385,1080567922,1285019062,1529970069,1819451291,1081852211,1286546346, 1531786865,1821611839,1083136880,1288074084,1533604201,1823773027,1084421930,1289602275,1535422075,1825934856,1085707361,1291130919,1537240488,1828097325,1086993173,1292660015, 1539059438,1830260434,1088279365,1294189564,1540878926,1832424182,1089565938,1295719565,1542698951,1834588569,1090852890,1297250018,1544519513,1836753595,1092140222,1298780922, 1546340612,1838919258,1093427933,1300312278,1548162247,1841085560,1094716023,1301844084,1549984418,1843252499,1096004493,1303376341,1551807125,1845420075,1097293341,1304909049, 1553630368,1847588287,1098582568,1306442207,1555454145,1849757136,1099872174,1307975815,1557278457,1851926621,1101162157,1309509872,1559103303,1854096741,1102452518,1311044379, 1560928684,1856267497,1103743257,1312579335,1562754598,1858438888,1105034374,1314114740,1564581046,1860610912,1106325868,1315650593,1566408028,1862783571,1107617738,1317186895, 1568235542,1864956864,1108909986,1318723645,1570063588,1867130790,1110202610,1320260843,1571892167,1869305349,1111495611,1321798488,1573721278,1871480541,1112788987,1323336581, 1575550920,1873656364,1114082740,1324875121,1577381094,1875832820,1115376868,1326414107,1579211799,1878009907,1116671372,1327953541,1581043034,1880187626,1117966251,1329493420, 1582874800,1882365975,1119261505,1331033745,1584707096,1884544954,1120557134,1332574516,1586539922,1886724564,1121853138,1334115733,1588373277,1888904803,1123149515,1335657395, 1590207162,1891085671,1124446268,1337199502,1592041575,1893267169,1125743394,1338742054,1593876517,1895449295,1127040894,1340285050,1595711987,1897632049,1128338767,1341828490, 1597547986,1899815431,1129637014,1343372374,1599384511,1901999441,1130935634,1344916702,1601221565,1904184077,1132234626,1346461474,1603059145,1906369341,1133533992,1348006688, 1604897252,1908555231,1134833730,1349552346,1606735885,1910741747,1136133840,1351098446,1608575045,1912928888,1137434322,1352644989,1610414730,1915116655,1138735176,1354191974, 1612254941,1917305047,1140036402,1355739401,1614095678,1919494064,1141337999,1357287269,1615936939,1921683705,1142639967,1358835579,1617778725,1923873970,1143942307,1360384330, 1619621035,1926064858,1145245017,1361933522,1621463869,1928256370,1146548097,1363483155,1623307227,1930448504,1147851548,1365033228,1625151109,1932641261,1149155369,1366583741, 1626995513,1934834640,1150459560,1368134695,1628840441,1937028641,1151764121,1369686088,1630685891,1939223264,1153069051,1371237920,1632531863,1941418507,1154374351,1372790191, 1634378357,1943614371,1155680020,1374342902,1636225373,1945810856,1156986057,1375896051,1638072911,1948007960,1158292463,1377449639,1639920969,1950205685,1159599238,1379003664, 1641769549,1952404028,1160906381,1380558128,1643618648,1954602991,1162213892,1382113029,1645468268,1956802572,1163521771,1383668368,1647318408,1959002772,1164830017,1385224144, 1649169068,1961203589,1166138631,1386780357,1651020247,1963405024,1167447612,1388337007,1652871945,1965607077,1168756960,1389894093,1654724161,1967809746,1170066675,1391451615, 1656576896,1970013032,1171376757,1393009574,1658430150,1972216934,1172687205,1394567968,1660283921,1974421452,1173998019,1396126797,1662138210,1976626585,1175309199,1397686062, 1663993016,1978832334,1176620745,1399245762,1665848339,1981038697,1177932657,1400805897,1667704179,1983245675,1179244934,1402366466,1669560535,1985453267,1180557576,1403927469, 1671417408,1987661473,1181870583,1405488907,1673274796,1989870293,1183183955,1407050778,1675132700,1992079725,1184497692,1408613083,1676991119,1994289771,1185811792,1410175821, 1678850053,1996500429,1187126257,1411738992,1680709502,1998711699,1188441086,1413302596,1682569466,2000923580,1189756279,1414866632,1684429943,2003136073,1191071835,1416431101, 1686290935,2005349178,1192387755,1417996002,1688152440,2007562893,1193704038,1419561335,1690014458,2009777218,1195020684,1421127100,1691876990,2011992154,1196337692,1422693296, 1693740034,2014207699,1197655063,1424259923,1695603590,2016423854,1198972797,1425826981,1697467659,2018640617,1200290892,1427394469,1699332240,2020857990,1201609350,1428962389, 1701197332,2023075971,1202928169,1430530738,1703062935,2025294560,1204247350,1432099517,1704929050,2027513757,1205566893,1433668726,1706795675,2029733561,1206886796,1435238365, 1708662811,2031953972,1208207061,1436808433,1710530457,2034174990,1209527686,1438378930,1712398613,2036396615,1210848672,1439949855,1714267279,2038618845,1212170018,1441521210, 1716136454,2040841682,1213491724,1443092992,1718006138,2043065123,1214813791,1444665203,1719876331,2045289170,1216136217,1446237842,1721747033,2047513822,1217459003,1447810908, 1723618243,2049739078,1218782148,1449384402,1725489961,2051964938,1220105652,1450958322,1727362186,2054191402,1221429515,1452532670,1729234919,2056418469,1222753738,1454107445, 1731108159,2058646140,1224078319,1455682646,1732981907,2060874413,1225403258,1457258273,1734856160,2063103289,1226728555,1458834326,1736730920,2065332767,1228054211,1460410805, 1738606186,2067562847,1229380224,1461987710,1740481958,2069793528,1230706595,1463565040,1742358236,2072024811,1232033324,1465142795,1744235019,2074256694,1233360410,1466720974, 1746112306,2076489178,1234687852,1468299579,1747990099,2078722262,1236015652,1469878608,1749868396,2080955946,1237343809,1471458061,1751747197,2083190230,1238672322,1473037938, 1753626502,2085425113,1240001191,1474618239,1755506310,2087660594,1241330416,1476198963,1757386622,2089896675,1242659998,1477780111,1759267437,2092133353,1243989935,1479361681, 1761148755,2094370630,1245320227,1480943675,1763030575,2096608504,1246650875,1482526091,1764912898,2098846976,1247981878,1484108929,1766795723,2101086044,1249313237,1485692190, 1768679049,2103325710,1250644949,1487275872,1770562877,2105565971,1251977017,1488859976,1772447206,2107806829,1253309439,1490444502,1774332037,2110048282,1254642215,1492029449, 1776217367,2112290331,1255975345,1493614817,1778103199,2114532975,1257308829,1495200606,1779989530,2116776214,1258642667,1496786815,1781876361,2119020047,1259976858,1498373445, 1783763692,2121264474,1261311403,1499960494,1785651522,2123509495,1262646300,1501547964,1787539852,2125755110,1263981551,1503135853,1789428680,2128001318,1265317154,1504724162, 1791318007,2130248119,1266653110,1506312890,1793207832,2132495512,1267989418,1507902038,1795098155,2134743498,1269326078,1509491603,1796988976,2136992076,1270663091,1511081588, 1798880294,2139241245,1272000455,1512671991,1800772110,2141491006,1273338170,1514262812,1802664423,2143741357,1274676237,1515854051,1804557232,2145992300,1276014656,1517445707, 1806450538,1074121916,1277353425,1519037782,1808344340,1075247978,1278692545,1520630273,1810238638,1076374334,1280032016,1522223181,1812133432,1077500985,1281371838,1523816507, 1814028721,1078627931,1282712010,1525410249,1815924505,1079755171,1284052532,1527004407,1817820784,1080882705,1285393404,1528598981,1819717558,1082010534,1286734625,1530193972, 1821614827,1083138656,1288076197,1531789378,1823512589,1084267073,1289418117,1533385199,1825410846,1085395783,1290760387,1534981436,1827309596,1086524786,1292103006,1536578088, 1829208839,1087654083,1293445974,1538175155,1831108575,1088783673,1294789291,1539772637,1833008805,1089913556,1296132956,1541370533,1834909527,1091043732,1297476969,1542968843, 1836810741,1092174201,1298821331,1544567568,1838712447,1093304962,1300166040,1546166706,1840614646,1094436016,1301511097,1547766257,1842517335,1095567362,1302856502,1549366222, 1844420517,1096699001,1304202255,1550966601,1846324189,1097830931,1305548354,1552567392,1848228352,1098963153,1306894801,1554168596,1850133006,1100095667,1308241594,1555770212, 1852038150,1101228472,1309588735,1557372241,1853943784,1102361569,1310936221,1558974682,1855849907,1103494957,1312284054,1560577534,1857756521,1104628636,1313632234,1562180799, 1859663624,1105762606,1314980759,1563784475,1861571215,1106896867,1316329630,1565388562,1863479296,1108031419,1317678847,1566993060,1865387865,1109166261,1319028409,1568597969, 1867296923,1110301393,1320378316,1570203288,1869206468,1111436816,1321728569,1571809018,1871116502,1112572528,1323079167,1573415159,1873027022,1113708531,1324430109,1575021709, 1874938031,1114844823,1325781396,1576628669,1876849526,1115981405,1327133027,1578236038,1878761508,1117118276,1328485003,1579843817,1880673977,1118255437,1329837322,1581452005, 1882586932,1119392887,1331189986,1583060602,1884500373,1120530626,1332542993,1584669608,1886414300,1121668654,1333896344,1586279022,1888328712,1122806970,1335250038,1587888845, 1890243610,1123945575,1336604075,1589499076,1892158993,1125084469,1337958455,1591109714,1894074861,1126223651,1339313178,1592720761,1895991213,1127363120,1340668244,1594332215, 1897908050,1128502878,1342023652,1595944076,1899825371,1129642924,1343379403,1597556344,1901743176,1130783258,1344735496,1599169019,1903661464,1131923879,1346091930,1600782101, 1905580236,1133064787,1347448707,1602395589,1907499491,1134205983,1348805825,1604009484,1909419228,1135347466,1350163285,1605623784,1911339449,1136489236,1351521085,1607238491, 1913260152,1137631293,1352879227,1608853603,1915181337,1138773636,1354237710,1610469120,1917103003,1139916266,1355596534,1612085043,1919025152,1141059182,1356955698,1613701371, 1920947782,1142202385,1358315203,1615318104,1922870893,1143345874,1359675048,1616935241,1924794485,1144489648,1361035233,1618552783,1926718558,1145633709,1362395758,1620170729, 1928643112,1146778055,1363756623,1621789079,1930568145,1147922687,1365117827,1623407833,1932493659,1149067604,1366479371,1625026990,1934419652,1150212807,1367841254,1626646551, 1936346125,1151358295,1369203476,1628266515,1938273077,1152504067,1370566037,1629886882,1940200508,1153650125,1371928936,1631507652,1942128418,1154796467,1373292175,1633128825, 1944056807,1155943093,1374655751,1634750400,1945985674,1157090005,1376019666,1636372377,1947915019,1158237200,1377383919,1637994757,1949844842,1159384680,1378748510,1639617538, 1951775142,1160532443,1380113438,1641240721,1953705920,1161680490,1381478705,1642864305,1955637175,1162828822,1382844308,1644488290,1957568907,1163977436,1384210249,1646112677, 1959501116,1165126334,1385576527,1647737464,1961433801,1166275516,1386943141,1649362652,1963366962,1167424980,1388310093,1650988240,1965300599,1168574728,1389677381,1652614229, 1967234712,1169724758,1391045005,1654240617,1969169301,1170875071,1392412966,1655867406,1971104364,1172025667,1393781262,1657494594,1973039903,1173176546,1395149895,1659122182, 1974975917,1174327706,1396518863,1660750169,1976912405,1175479149,1397888167,1662378555,1978849367,1176630874,1399257807,1664007339,1980786804,1177782880,1400627781,1665636523, 1982724714,1178935169,1401998091,1667266105,1984663099,1180087739,1403368735,1668896085,1986601956,1181240590,1404739715,1670526463,1988541287,1182393723,1406111029,1672157240, 1990481090,1183547137,1407482677,1673788414,1992421367,1184700833,1408854659,1675419985,1994362116,1185854809,1410226976,1677051954,1996303337,1187009066,1411599627,1678684320, 1998245030,1188163604,1412972611,1680317082,2000187195,1189318422,1414345929,1681950242,2002129831,1190473520,1415719581,1683583798,2004072939,1191628899,1417093565,1685217750, 2006016518,1192784558,1418467883,1686852099,2007960568,1193940497,1419842534,1688486844,2009905089,1195096716,1421217518,1690121984,2011850080,1196253214,1422592834,1691757520, 2013795541,1197409993,1423968483,1693393451,2015741472,1198567050,1425344464,1695029778,2017687873,1199724387,1426720777,1696666499,2019634743,1200882003,1428097422,1698303616, 2021582083,1202039898,1429474399,1699941127,2023529891,1203198072,1430851708,1701579032,2025478169,1204356525,1432229349,1703217332,2027426915,1205515256,1433607320,1704856025, 2029376130,1206674266,1434985623,1706495113,2031325813,1207833555,1436364257,1708134594,2033275963,1208993121,1437743222,1709774469,2035226582,1210152966,1439122517,1711414737, 2037177668,1211313089,1440502143,1713055398,2039129221,1212473489,1441882100,1714696452,2041081241,1213634167,1443262387,1716337899,2043033728,1214795123,1444643003,1717979738, 2044986682,1215956356,1446023950,1719621970,2046940102,1217117867,1447405227,1721264594,2048893988,1218279654,1448786833,1722907610,2050848340,1219441719,1450168769,1724551018, 2052803158,1220604061,1451551034,1726194817,2054758442,1221766679,1452933628,1727839008,2056714190,1222929574,1454316551,1729483590,2058670404,1224092746,1455699803,1731128563, 2060627082,1225256194,1457083383,1732773927,2062584225,1226419918,1458467293,1734419681,2064541833,1227583918,1459851530,1736065826,2066499904,1228748195,1461236096,1737712362, 2068458440,1229912747,1462620990,1739359287,2070417439,1231077575,1464006211,1741006603,2072376902,1232242678,1465391761,1742654308,2074336828,1233408057,1466777638,1744302403, 2076297217,1234573712,1468163842,1745950887,2078258069,1235739641,1469550374,1747599760,2080219384,1236905846,1470937233,1749249023,2082181161,1238072326,1472324419,1750898674, 2084143400,1239239080,1473711931,1752548714,2086106101,1240406109,1475099771,1754199142,2088069264,1241573413,1476487936,1755849959,2090032889,1242740991,1477876429,1757501164, 2091996975,1243908843,1479265247,1759152757,2093961522,1245076970,1480654391,1760804737,2095926529,1246245371,1482043862,1762457105,2097891998,1247414045,1483433658,1764109861, 2099857927,1248582994,1484823780,1765763003,2101824316,1249752216,1486214227,1767416533,2103791165,1250921711,1487604999,1769070449,2105758474,1252091480,1488996097,1770724752, 2107726243,1253261522,1490387519,1772379442,2109694471,1254431838,1491779267,1774034518,2111663158,1255602426,1493171339,1775689980,2113632304,1256773287,1494563735,1777345828, 2115601909,1257944421,1495956456,1779002061,2117571973,1259115828,1497349501,1780658681,2119542494,1260287507,1498742871,1782315685,2121513474,1261459459,1500136564,1783973075, 2123484912,1262631683,1501530581,1785630850,2125456807,1263804179,1502924921,1787289010,2127429160,1264976947,1504319586,1788947554,2129401970,1266149987,1505714573,1790606483, 2131375237,1267323298,1507109884,1792265797,2133348961,1268496882,1508505517,1793925494,2135323142,1269670737,1509901474,1795585575,2137297779,1270844863,1511297753,1797246041, 2139272872,1272019260,1512694355,1798906889,2141248421,1273193929,1514091279,1800568122,2143224426,1274368868,1515488525,1802229737,2145200887,1275544079,1516886094,1803891736, 2147177802,1276719560,1518283985,1805554117,1074577587,1277895312,1519682197,1807216881,1075566500,1279071334,1521080731,1808880028,1076555640,1280247627,1522479587,1810543557, 1077545008,1281424190,1523878764,1812207468,1078534602,1282601023,1525278262,1813871762,1079524424,1283778126,1526678082,1815536437,1080514473,1284955499,1528078222,1817201494, 1081504748,1286133142,1529478683,1818866932,1082495251,1287311054,1530879465,1820532752,1083485980,1288489236,1532280567,1822198953,1084476935,1289667687,1533681990,1823865534, 1085468117,1290846408,1535083733,1825532497,1086459525,1292025398,1536485796,1827199840,1087451160,1293204656,1537888179,1828867564,1088443020,1294384184,1539290881,1830535668, 1089435107,1295563980,1540693904,1832204152,1090427419,1296744046,1542097245,1833873016,1091419958,1297924379,1543500906,1835542260,1092412722,1299104981,1544904887,1837211883, 1093405711,1300285851,1546309186,1838881886,1094398926,1301466990,1547713804,1840552268,1095392367,1302648396,1549118741,1842223029,1096386033,1303830071,1550523997,1843894169, 1097379924,1305012013,1551929571,1845565688,1098374040,1306194223,1553335464,1847237585,1099368381,1307376701,1554741674,1848909861,1100362947,1308559445,1556148203,1850582515, 1101357738,1309742458,1557555050,1852255547,1102352753,1310925737,1558962214,1853928957,1103347993,1312109284,1560369696,1855602744,1104343458,1313293097,1561777495,1857276909, 1105339146,1314477177,1563185612,1858951452,1106335060,1315661524,1564594046,1860626371,1107331197,1316846138,1566002797,1862301668,1108327558,1318031018,1567411864,1863977341, 1109324144,1319216165,1568821249,1865653392,1110320953,1320401577,1570230950,1867329818,1111317986,1321587256,1571640968,1869006621,1112315243,1322773201,1573051302,1870683800, 1113312723,1323959411,1574461952,1872361356,1114310427,1325145888,1575872918,1874039287,1115308354,1326332630,1577284200,1875717593,1116306504,1327519637,1578695798,1877396276, 1117304878,1328706910,1580107712,1879075333,1118303475,1329894449,1581519941,1880754766,1119302294,1331082252,1582932485,1882434574,1120301337,1332270321,1584345344,1884114756, 1121300602,1333458654,1585758519,1885795313,1122300090,1334647252,1587172008,1887476245,1123299801,1335836115,1588585813,1889157551,1124299734,1337025243,1589999931,1890839231, 1125299889,1338214635,1591414365,1892521285,1126300267,1339404291,1592829112,1894203714,1127300867,1340594211,1594244174,1895886515,1128301689,1341784396,1595659550,1897569690, 1129302732,1342974844,1597075240,1899253239,1130303998,1344165557,1598491244,1900937161,1131305486,1345356533,1599907561,1902621455,1132307195,1346547773,1601324192,1904306123, 1133309126,1347739276,1602741137,1905991163,1134311279,1348931043,1604158394,1907676576,1135313652,1350123073,1605575965,1909362361,1136316247,1351315366,1606993848,1911048518, 1137319064,1352507923,1608412045,1912735047,1138322101,1353700742,1609830554,1914421948,1139325360,1354893824,1611249375,1916109221,1140328839,1356087169,1612668509,1917796866, 1141332539,1357280776,1614087956,1919484881,1142336460,1358474646,1615507714,1921173268,1143340601,1359668778,1616927785,1922862026,1144344963,1360863172,1618348167,1924551155, 1145349546,1362057829,1619768861,1926240654,1146354348,1363252747,1621189867,1927930524,1147359371,1364447928,1622611184,1929620765,1148364614,1365643370,1624032812,1931311375, 1149370078,1366839074,1625454752,1933002356,1150375761,1368035039,1626877003,1934693707,1151381664,1369231266,1628299564,1936385427,1152387786,1370427755,1629722436,1938077517, 1153394129,1371624504,1631145619,1939769976,1154400690,1372821515,1632569113,1941462805,1155407472,1374018786,1633992917,1943156002,1156414473,1375216319,1635417031,1944849569, 1157421692,1376414112,1636841455,1946543504,1158429132,1377612166,1638266189,1948237808,1159436790,1378810480,1639691233,1949932481,1160444667,1380009055,1641116587,1951627521, 1161452763,1381207890,1642542250,1953322930,1162461078,1382406985,1643968222,1955018707,1163469612,1383606340,1645394504,1956714852,1164478364,1384805956,1646821095,1958411364, 1165487335,1386005831,1648247995,1960108243,1166496524,1387205966,1649675204,1961805491,1167505931,1388406360,1651102722,1963503105,1168515557,1389607014,1652530548,1965201086, 1169525401,1390807928,1653958683,1966899434,1170535463,1392009100,1655387126,1968598149,1171545742,1393210532,1656815878,1970297230,1172556240,1394412223,1658244937,1971996678, 1173566955,1395614173,1659674305,1973696492,1174577889,1396816382,1661103980,1975396672,1175589039,1398018850,1662533963,1977097218,1176600407,1399221576,1663964253,1978798129, 1177611993,1400424560,1665394851,1980499407,1178623796,1401627804,1666825757,1982201049,1179635816,1402831305,1668256969,1983903057,1180648053,1404035064,1669688488,1985605430, 1181660507,1405239082,1671120315,1987308168,1182673178,1406443358,1672552448,1989011271,1183686065,1407647891,1673984887,1990714739,1184699170,1408852682,1675417634,1992418571, 1185712491,1410057731,1676850686,1994122767,1186726029,1411263037,1678284045,1995827327,1187739783,1412468601,1679717710,1997532252,1188753754,1413674422,1681151681,1999237540, 1189767941,1414880500,1682585958,2000943192,1190782344,1416086835,1684020540,2002649208,1191796963,1417293428,1685455428,2004355587,1192811798,1418500277,1686890622,2006062329, 1193826849,1419707382,1688326120,2007769435,1194842115,1420914745,1689761925,2009476903,1195857598,1422122364,1691198034,2011184734,1196873296,1423330239,1692634448,2012892928, 1197889210,1424538371,1694071167,2014601485,1198905339,1425746759,1695508190,2016310403,1199921683,1426955403,1696945518,2018019684,1200938243,1428164303,1698383151,2019729327, 1201955018,1429373459,1699821087,2021439331,1202972008,1430582871,1701259328,2023149698,1203989213,1431792538,1702697873,2024860426,1205006632,1433002461,1704136722,2026571515, 1206024267,1434212639,1705575875,2028282966,1207042116,1435423073,1707015331,2029994777,1208060180,1436633762,1708455091,2031706950,1209078459,1437844706,1709895154,2033419484, 1210096952,1439055905,1711335521,2035132378,1211115659,1440267359,1712776191,2036845632,1212134581,1441479068,1714217163,2038559247,1213153716,1442691031,1715658439,2040273222, 1214173066,1443903249,1717100017,2041987558,1215192630,1445115722,1718541898,2043702253,1216212408,1446328449,1719984082,2045417308,1217232399,1447541430,1721426567,2047132722, 1218252604,1448754665,1722869356,2048848496,1219273023,1449968154,1724312446,2050564629,1220293656,1451181898,1725755838,2052281121,1221314502,1452395895,1727199532,2053997972, 1222335561,1453610146,1728643528,2055715183,1223356833,1454824650,1730087825,2057432751,1224378319,1456039408,1731532424,2059150679,1225400018,1457254420,1732977324,2060868964, 1226421930,1458469685,1734422526,2062587608,1227444054,1459685203,1735868029,2064306610,1228466392,1460900974,1737313832,2066025970,1229488942,1462116998,1738759937,2067745688, 1230511705,1463333275,1740206342,2069465763,1231534681,1464549805,1741653048,2071186196,1232557869,1465766587,1743100054,2072906987,1233581269,1466983622,1744547361,2074628134, 1234604882,1468200909,1745994968,2076349638,1235628707,1469418449,1747442875,2078071500,1236652744,1470636241,1748891082,2079793718,1237676993,1471854286,1750339589,2081516293, 1238701454,1473072582,1751788395,2083239224,1239726127,1474291130,1753237502,2084962511,1240751011,1475509930,1754686908,2086686155,1241776108,1476728982,1756136613,2088410155, 1242801415,1477948286,1757586617,2090134510,1243826935,1479167841,1759036921,2091859222,1244852666,1480387647,1760487523,2093584288,1245878608,1481607705,1761938424,2095309711, 1246904761,1482828014,1763389625,2097035488,1247931126,1484048574,1764841123,2098761621,1248957702,1485269385,1766292921,2100488108,1249984488,1486490447,1767745016,2102214951, 1251011486,1487711760,1769197410,2103942148,1252038695,1488933324,1770650102,2105669700,1253066114,1490155138,1772103093,2107397606,1254093743,1491377203,1773556380,2109125867, 1255121584,1492599518,1775009966,2110854481,1256149635,1493822083,1776463850,2112583450,1257177896,1495044899,1777918031,2114312772,1258206367,1496267964,1779372509,2116042448, 1259235049,1497491280,1780827285,2117772477,1260263941,1498714845,1782282357,2119502860,1261293043,1499938661,1783737727,2121233597,1262322355,1501162726,1785193394,2122964686, 1263351876,1502387040,1786649358,2124696128,1264381608,1503611604,1788105618,2126427923,1265411549,1504836418,1789562175,2128160071,1266441700,1506061480,1791019028,2129892571, 1267472060,1507286792,1792476178,2131625424,1268502630,1508512353,1793933623,2133358629,1269533409,1509738163,1795391365,2135092186,1270564398,1510964222,1796849403,2136826095, 1271595595,1512190529,1798307737,2138560356,1272627002,1513417086,1799766366,2140294968,1273658618,1514643890,1801225291,2142029932,1274690442,1515870944,1802684512,2143765247, 1275722476,1517098245,1804144027,2145500914,1276754718,1518325795,1805603838,2147236932,1277787169,1519553593,1807063945,1074486650,1278819829,1520781639,1808524346,1075355010, 1279852697,1522009933,1809985042,1076223545,1280885773,1523238475,1811446033,1077092255,1281919058,1524467265,1812907318,1077961141,1282952551,1525696302,1814368898,1078830201, 1283986253,1526925587,1815830772,1079699437,1285020162,1528155120,1817292941,1080568848,1286054280,1529384899,1818755404,1081438433,1287088605,1530614927,1820218161,1082308194, 1288123138,1531845201,1821681212,1083178129,1289157879,1533075722,1823144556,1084048239,1290192828,1534306490,1824608195,1084918524,1291227984,1535537505,1826072127,1085788983, 1292263347,1536768767,1827536352,1086659616,1293298919,1538000276,1829000871,1087530424,1294334697,1539232031,1830465683,1088401407,1295370683,1540464032,1831930788,1089272564, 1296406876,1541696280,1833396186,1090143894,1297443276,1542928775,1834861877,1091015399,1298479883,1544161515,1836327860,1091887079,1299516697,1545394502,1837794137,1092758932, 1300553717,1546627734,1839260706,1093630959,1301590945,1547861212,1840727567,1094503160,1302628379,1549094937,1842194720,1095375534,1303666020,1550328907,1843662166,1096248083, 1304703867,1551563122,1845129904,1097120805,1305741921,1552797583,1846597934,1097993701,1306780181,1554032289,1848066255,1098866770,1307818648,1555267241,1849534869,1099740013, 1308857320,1556502438,1851003773,1100613429,1309896199,1557737880,1852472970,1101487018,1310935284,1558973567,1853942457,1102360781,1311974574,1560209498,1855412236,1103234716, 1313014071,1561445675,1856882306,1104108825,1314053773,1562682096,1858352668,1104983107,1315093681,1563918762,1859823320,1105857562,1316133795,1565155673,1861294262,1106732190, 1317174114,1566392828,1862765496,1107606991,1318214638,1567630227,1864237020,1108481964,1319255368,1568867871,1865708834,1109357110,1320296304,1570105758,1867180939,1110232429, 1321337444,1571343890,1868653334,1111107920,1322378790,1572582266,1870126019,1111983584,1323420340,1573820885,1871598994,1112859420,1324462096,1575059748,1873072259,1113735429, 1325504057,1576298855,1874545814,1114611610,1326546222,1577538205,1876019658,1115487963,1327588592,1578777799,1877493792,1116364488,1328631167,1580017637,1878968215,1117241185, 1329673946,1581257717,1880442928,1118118055,1330716930,1582498041,1881917930,1118995096,1331760118,1583738608,1883393220,1119872309,1332803510,1584979417,1884868800,1120749694, 1333847107,1586220470,1886344669,1121627251,1334890908,1587461766,1887820826,1122504979,1335934913,1588703304,1889297272,1123382879,1336979122,1589945084,1890774007,1124260951, 1338023535,1591187108,1892251030,1125139194,1339068152,1592429373,1893728341,1126017608,1340112972,1593671881,1895205940,1126896194,1341157996,1594914632,1896683828,1127774951, 1342203224,1596157624,1898162003,1128653880,1343248656,1597400858,1899640466,1129532979,1344294290,1598644335,1901119217,1130412250,1345340129,1599888053,1902598256,1131291691, 1346386170,1601132013,1904077582,1132171304,1347432415,1602376215,1905557195,1133051087,1348478863,1603620658,1907037096,1133931042,1349525514,1604865343,1908517284,1134811167, 1350572367,1606110269,1909997759,1135691462,1351619424,1607355436,1911478521,1136571929,1352666684,1608600844,1912959569,1137452565,1353714146,1609846494,1914440905,1138333373, 1354761811,1611092385,1915922527,1139214350,1355809679,1612338516,1917404435,1140095498,1356857749,1613584889,1918886630,1140976817,1357906021,1614831502,1920369112,1141858305, 1358954496,1616078356,1921851879,1142739964,1360003173,1617325450,1923334932,1143621793,1361052052,1618572785,1924818272,1144503792,1362101134,1619820360,1926301897,1145385961, 1363150417,1621068175,1927785808,1146268299,1364199903,1622316231,1929270004,1147150808,1365249590,1623564526,1930754486,1148033486,1366299479,1624813062,1932239254,1148916334, 1367349570,1626061837,1933724306,1149799352,1368399863,1627310853,1935209644,1150682539,1369450357,1628560108,1936695267,1151565896,1370501052,1629809602,1938181175,1152449422, 1371551949,1631059337,1939667368,1153333117,1372603047,1632309310,1941153845,1154216982,1373654347,1633559523,1942640608,1155101016,1374705848,1634809975,1944127654,1155985219, 1375757550,1636060667,1945614985,1156869592,1376809453,1637311597,1947102601,1157754133,1377861556,1638562766,1948590500,1158638844,1378913861,1639814175,1950078684,1159523723, 1379966367,1641065822,1951567152,1160408771,1381019073,1642317708,1953055903,1161293988,1382071980,1643569832,1954544938,1162179374,1383125087,1644822195,1956034257,1163064928, 1384178395,1646074796,1957523860,1163950651,1385231904,1647327636,1959013745,1164836542,1386285613,1648580714,1960503915,1165722602,1387339522,1649834030,1961994367,1166608830, 1388393631,1651087584,1963485103,1167495227,1389447940,1652341376,1964976121,1168381792,1390502450,1653595406,1966467423,1169268525,1391557159,1654849674,1967959007,1170155427, 1392612068,1656104180,1969450874,1171042496,1393667177,1657358923,1970943023,1171929733,1394722486,1658613904,1972435455,1172817139,1395777994,1659869122,1973928170,1173704712, 1396833702,1661124577,1975421166,1174592453,1397889610,1662380270,1976914445,1175480362,1398945717,1663636200,1978408006,1176368438,1400002023,1664892367,1979901849,1177256683, 1401058529,1666148771,1981395973,1178145094,1402115234,1667405412,1982890379,1179033674,1403172138,1668662290,1984385067,1179922420,1404229241,1669919404,1985880037,1180811335, 1405286543,1671176755,1987375288,1181700416,1406344043,1672434343,1988870820,1182589665,1407401743,1673692167,1990366633,1183479081,1408459642,1674950227,1991862727,1184368664, 1409517739,1676208524,1993359103,1185258414,1410576035,1677467057,1994855759,1186148331,1411634529,1678725826,1996352696,1187038415,1412693222,1679984831,1997849914,1187928666, 1413752113,1681244072,1999347412,1188819084,1414811203,1682503548,2000845191,1189709668,1415870490,1683763261,2002343250,1190600420,1416929976,1685023209,2003841589,1191491338, 1417989660,1686283393,2005340209,1192382422,1419049542,1687543812,2006839108,1193273673,1420109622,1688804467,2008338288,1194165090,1421169900,1690065357,2009837747,1195056674, 1422230375,1691326482,2011337486,1195948424,1423291049,1692587842,2012837504,1196840341,1424351920,1693849437,2014337803,1197732423,1425412988,1695111268,2015838380,1198624672, 1426474254,1696373333,2017339237,1199517087,1427535718,1697635633,2018840373,1200409668,1428597379,1698898167,2020341788,1201302415,1429659237,1700160936,2021843482,1202195327, 1430721292,1701423940,2023345455,1203088406,1431783545,1702687178,2024847707,1203981650,1432845994,1703950651,2026350238,1204875060,1433908641,1705214358,2027853047,1205768636, 1434971484,1706478299,2029356134,1206662377,1436034524,1707742474,2030859500,1207556284,1437097761,1709006883,2032363144,1208450356,1438161195,1710271526,2033867067,1209344593, 1439224825,1711536402,2035371267,1210238996,1440288652,1712801513,2036875746,1211133565,1441352675,1714066857,2038380502,1212028298,1442416895,1715332435,2039885536,1212923197, 1443481311,1716598246,2041390848,1213818260,1444545924,1717864290,2042896437,1214713489,1445610732,1719130568,2044402303,1215608883,1446675737,1720397079,2045908448,1216504441, 1447740938,1721663824,2047414869,1217400165,1448806334,1722930801,2048921567,1218296053,1449871927,1724198011,2050428543,1219192106,1450937715,1725465454,2051935795,1220088324, 1452003699,1726733130,2053443324,1220984706,1453069879,1728001039,2054951130,1221881253,1454136255,1729269180,2056459213,1222777964,1455202826,1730537554,2057967572,1223674840, 1456269592,1731806160,2059476208,1224571880,1457336554,1733074999,2060985120,1225469084,1458403711,1734344070,2062494308,1226366453,1459471064,1735613373,2064003772,1227263986, 1460538611,1736882908,2065513512,1228161683,1461606354,1738152676,2067023529,1229059544,1462674292,1739422675,2068533821,1229957569,1463742425,1740692906,2070044389,1230855758, 1464810752,1741963369,2071555232,1231754110,1465879275,1743234063,2073066351,1232652627,1466947992,1744504989,2074577745,1233551308,1468016904,1745776147,2076089415,1234450152, 1469086010,1747047536,2077601360,1235349160,1470155311,1748319156,2079113580,1236248331,1471224807,1749591008,2080626075,1237147666,1472294497,1750863091,2082138845,1238047164, 1473364381,1752135405,2083651890,1238946826,1474434459,1753407950,2085165209,1239846652,1475504732,1754680726,2086678804,1240746640,1476575199,1755953732,2088192672,1241646792, 1477645860,1757226970,2089706815,1242547107,1478716715,1758500438,2091221233,1243447585,1479787763,1759774137,2092735925,1244348226,1480859006,1761048066,2094250890,1245249030, 1481930442,1762322226,2095766130,1246149997,1483002072,1763596616,2097281644,1247051127,1484073896,1764871237,2098797432,1247952419,1485145913,1766146087,2100313493,1248853875, 1486218124,1767421168,2101829828,1249755493,1487290528,1768696478,2103346436,1250657274,1488363126,1769972019,2104863318,1251559217,1489435917,1771247789,2106380473,1252461323, 1490508901,1772523789,2107897902,1253363591,1491582078,1773800019,2109415604,1254266022,1492655448,1775076479,2110933578,1255168615,1493729011,1776353168,2112451826,1256071371, 1494802767,1777630086,2113970346,1256974288,1495876716,1778907234,2115489140,1257877368,1496950858,1780184611,2117008205,1258780610,1498025192,1781462217,2118527544,1259684014, 1499099720,1782740053,2120047155,1260587580,1500174439,1784018117,2121567038,1261491308,1501249352,1785296410,2123087193,1262395198,1502324456,1786574932,2124607621,1263299250, 1503399753,1787853683,2126128321,1264203463,1504475243,1789132663,2127649292,1265107838,1505550924,1790411871,2129170536,1266012375,1506626798,1791691308,2130692051,1266917074, 1507702864,1792970973,2132213838,1267821934,1508779122,1794250867,2133735897,1268726955,1509855572,1795530989,2135258227,1269632138,1510932214,1796811339,2136780828,1270537482, 1512009047,1798091917,2138303701,1271442988,1513086073,1799372723,2139826845,1272348654,1514163290,1800653757,2141350260,1273254482,1515240698,1801935020,2142873946,1274160472, 1516318299,1803216509,2144397903,1275066622,1517396090,1804498227,2145922131,1275972933,1518474074,1805780172,2147446629,1276879405,1519552248,1807062345,1074485699,1277786038, 1520630614,1808344745,1075248219,1278692832,1521709171,1809627373,1076010874,1279599787,1522787919,1810910228,1076773664,1280506902,1523866858,1812193310,1077536589,1281414179, 1524945989,1813476620,1078299650,1282321615,1526025310,1814760156,1079062845,1283229213,1527104822,1816043920,1079826175,1284136971,1528184525,1817327910,1080589640,1285044889, 1529264419,1818612127,1081353241,1285952968,1530344503,1819896571,1082116976,1286861207,1531424778,1821181242,1082880845,1287769606,1532505243,1822466139,1083644850,1288678165, 1533585899,1823751263,1084408989,1289586885,1534666746,1825036613,1085173263,1290495765,1535747782,1826322190,1085937671,1291404805,1536829009,1827607992,1086702214,1292314005, 1537910426,1828894021,1087466891,1293223365,1538992034,1830180276,1088231703,1294132884,1540073831,1831466758,1088996650,1295042564,1541155819,1832753465,1089761730,1295952403, 1542237996,1834040398,1090526945,1296862402,1543320363,1835327556,1091292294,1297772561,1544402920,1836614941,1092057778,1298682879,1545485667,1837902551,1092823395,1299593357, 1546568603,1839190387,1093589147,1300503994,1547651729,1840478448,1094355033,1301414791,1548735045,1841766735,1095121052,1302325747,1549818550,1843055246,1095887206,1303236863, 1550902244,1844343984,1096653494,1304148138,1551986128,1845632946,1097419915,1305059572,1553070201,1846922133,1098186471,1305971165,1554154463,1848211546,1098953160,1306882917, 1555238915,1849501183,1099719983,1307794828,1556323555,1850791045,1100486940,1308706899,1557408385,1852081132,1101254030,1309619128,1558493403,1853371444,1102021254,1310531516, 1559578611,1854661980,1102788611,1311444063,1560664007,1855952741,1103556102,1312356769,1561749592,1857243726,1104323727,1313269633,1562835365,1858534936,1105091485,1314182656, 1563921327,1859826370,1105859376,1315095838,1565007478,1861118028,1106627400,1316009178,1566093817,1862409910,1107395558,1316922677,1567180345,1863702017,1108163849,1317836334, 1568267061,1864994347,1108932274,1318750150,1569353965,1866286902,1109700831,1319664124,1570441058,1867579680,1110469521,1320578256,1571528339,1868872682,1111238345,1321492546, 1572615807,1870165907,1112007302,1322406995,1573703464,1871459356,1112776391,1323321602,1574791309,1872753029,1113545613,1324236366,1575879342,1874046925,1114314969,1325151289, 1576967562,1875341045,1115084457,1326066370,1578055970,1876635388,1115854078,1326981609,1579144566,1877929954,1116623831,1327897005,1580233350,1879224743,1117393718,1328812559, 1581322321,1880519755,1118163737,1329728271,1582411480,1881814991,1118933888,1330644141,1583500826,1883110449,1119704172,1331560168,1584590360,1884406130,1120474589,1332476353, 1585680080,1885702034,1121245138,1333392695,1586769988,1886998160,1122015819,1334309195,1587860084,1888294509,1122786633,1335225852,1588950366,1889591081,1123557579,1336142667, 1590040836,1890887875,1124328657,1337059639,1591131492,1892184891,1125099868,1337976768,1592222336,1893482130,1125871211,1338894054,1593313366,1894779591,1126642686,1339811498, 1594404583,1896077274,1127414293,1340729098,1595495987,1897375179,1128186032,1341646856,1596587577,1898673307,1128957903,1342564770,1597679354,1899971656,1129729906,1343482842, 1598771318,1901270227,1130502041,1344401070,1599863468,1902569019,1131274307,1345319455,1600955805,1903868034,1132046706,1346237997,1602048328,1905167270,1132819236,1347156696, 1603141037,1906466727,1133591898,1348075551,1604233932,1907766406,1134364692,1348994563,1605327014,1909066307,1135137618,1349913731,1606420282,1910366429,1135910675,1350833056, 1607513735,1911666772,1136683863,1351752538,1608607375,1912967336,1137457183,1352672175,1609701201,1914268121,1138230635,1353591969,1610795212,1915569127,1139004218,1354511920, 1611889410,1916870354,1139777932,1355432026,1612983793,1918171802,1140551778,1356352289,1614078361,1919473471,1141325755,1357272708,1615173116,1920775361,1142099863,1358193283, 1616268055,1922077471,1142874102,1359114014,1617363181,1923379802,1143648473,1360034901,1618458491,1924682353,1144422974,1360955944,1619553987,1925985125,1145197607,1361877142, 1620649669,1927288117,1145972371,1362798497,1621745535,1928591329,1146747265,1363720007,1622841587,1929894762,1147522291,1364641673,1623937824,1931198414,1148297447,1365563495, 1625034246,1932502287,1149072735,1366485472,1626130852,1933806380,1149848153,1367407605,1627227644,1935110692,1150623702,1368329893,1628324621,1936415224,1151399381,1369252336, 1629421782,1937719977,1152175191,1370174935,1630519128,1939024948,1152951132,1371097690,1631616659,1940330140,1153727204,1372020599,1632714374,1941635551,1154503406,1372943664, 1633812274,1942941181,1155279738,1373866884,1634910358,1944247031,1156056201,1374790260,1636008627,1945553100,1156832794,1375713790,1637107080,1946859388,1157609518,1376637475, 1638205718,1948165895,1158386372,1377561315,1639304539,1949472622,1159163356,1378485311,1640403545,1950779567,1159940471,1379409461,1641502735,1952086732,1160717715,1380333765, 1642602109,1953394115,1161495090,1381258225,1643701667,1954701717,1162272595,1382182839,1644801409,1956009538,1163050230,1383107608,1645901334,1957317577,1163827995,1384032532, 1647001444,1958625835,1164605890,1384957610,1648101737,1959934312,1165383914,1385882843,1649202214,1961243007,1166162069,1386808230,1650302874,1962551920,1166940354,1387733771, 1651403719,1963861052,1167718768,1388659467,1652504746,1965170402,1168497312,1389585317,1653605957,1966479970,1169275986,1390511322,1654707351,1967789756,1170054789,1391437480, 1655808929,1969099759,1170833722,1392363793,1656910690,1970409981,1171612785,1393290260,1658012634,1971720421,1172391977,1394216880,1659114761,1973031079,1173171298,1395143655, 1660217071,1974341954,1173950749,1396070584,1661319565,1975653047,1174730330,1396997667,1662422241,1976964357,1175510040,1397924903,1663525100,1978275885,1176289879,1398852293, 1664628142,1979587630,1177069847,1399779837,1665731367,1980899593,1177849945,1400707535,1666834774,1982211773,1178630172,1401635386,1667938364,1983524170,1179410528,1402563391, 1669042137,1984836784,1180191013,1403491550,1670146092,1986149615,1180971627,1404419861,1671250229,1987462663,1181752370,1405348327,1672354549,1988775929,1182533242,1406276945, 1673459051,1990089411,1183314243,1407205717,1674563736,1991403109,1184095373,1408134643,1675668603,1992717025,1184876632,1409063721,1676773652,1994031157,1185658020,1409992953, 1677878883,1995345505,1186439536,1410922338,1678984296,1996660071,1187221181,1411851876,1680089891,1997974852,1188002955,1412781566,1681195668,1999289850,1188784857,1413711410, 1682301627,2000605064,1189566888,1414641407,1683407767,2001920494,1190349048,1415571557,1684514090,2003236141,1191131336,1416501859,1685620594,2004552003,1191913752,1417432315, 1686727279,2005868082,1192696297,1418362923,1687834146,2007184376,1193478970,1419293683,1688941195,2008500886,1194261772,1420224597,1690048425,2009817612,1195044702,1421155662, 1691155837,2011134554,1195827760,1422086881,1692263430,2012451711,1196610947,1423018252,1693371204,2013769084,1197394261,1423949775,1694479159,2015086672,1198177704,1424881451, 1695587295,2016404476,1198961275,1425813278,1696695613,2017722495,1199744974,1426745259,1697804111,2019040729,1200528800,1427677391,1698912791,2020359179,1201312755,1428609676, 1700021651,2021677844,1202096838,1429542113,1701130693,2022996723,1202881048,1430474701,1702239915,2024315818,1203665387,1431407442,1703349318,2025635128,1204449853,1432340335, 1704458901,2026954652,1205234447,1433273380,1705568665,2028274392,1206019169,1434206576,1706678610,2029594346,1206804018,1435139925,1707788735,2030914514,1207588995,1436073425, 1708899040,2032234898,1208374100,1437007077,1710009526,2033555495,1209159332,1437940881,1711120192,2034876307,1209944691,1438874836,1712231039,2036197334,1210730179,1439808943, 1713342066,2037518575,1211515793,1440743201,1714453272,2038840030,1212301535,1441677611,1715564659,2040161699,1213087404,1442612172,1716676226,2041483582,1213873401,1443546885, 1717787973,2042805680,1214659525,1444481749,1718899900,2044127991,1215445776,1445416764,1720012007,2045450516,1216232154,1446351931,1721124293,2046773255,1217018659,1447287248, 1722236759,2048096208,1217805291,1448222717,1723349405,2049419374,1218592051,1449158337,1724462231,2050742754,1219378937,1450094108,1725575236,2052066348,1220165951,1451030030, 1726688420,2053390155,1220953091,1451966103,1727801784,2054714175,1221740358,1452902327,1728915328,2056038409,1222527752,1453838701,1730029050,2057362856,1223315273,1454775227, 1731142952,2058687516,1224102921,1455711903,1732257034,2060012389,1224890695,1456648730,1733371294,2061337476,1225678596,1457585707,1734485733,2062662775,1226466624,1458522836, 1735600352,2063988287,1227254778,1459460114,1736715149,2065314012,1228043059,1460397543,1737830126,2066639950,1228831467,1461335123,1738945281,2067966101,1229620000,1462272853, 1740060615,2069292464,1230408661,1463210734,1741176128,2070619040,1231197447,1464148764,1742291820,2071945828,1231986360,1465086945,1743407690,2073272829,1232775400,1466025277, 1744523739,2074600042,1233564565,1466963758,1745639966,2075927468,1234353857,1467902390,1746756372,2077255105,1235143275,1468841171,1747872956,2078582955,1235932820,1469780103, 1748989718,2079911017,1236722490,1470719184,1750106659,2081239291,1237512286,1471658416,1751223778,2082567777,1238302209,1472597797,1752341075,2083896475,1239092257,1473537329, 1753458551,2085225384,1239882432,1474477010,1754576204,2086554506,1240672732,1475416840,1755694036,2087883839,1241463158,1476356821,1756812045,2089213384,1242253710,1477296951, 1757930232,2090543140,1243044388,1478237231,1759048597,2091873108,1243835192,1479177660,1760167140,2093203287,1244626121,1480118239,1761285861,2094533677,1245417176,1481058967, 1762404759,2095864279,1246208356,1481999844,1763523835,2097195092,1246999663,1482940871,1764643089,2098526117,1247791094,1483882048,1765762520,2099857352,1248582652,1484823373, 1766882128,2101188798,1249374334,1485764848,1768001914,2102520456,1250166143,1486706472,1769121877,2103852324,1250958076,1487648245,1770242018,2105184403,1251750135,1488590167, 1771362335,2106516693,1252542319,1489532238,1772482830,2107849193,1253334629,1490474458,1773603502,2109181904,1254127064,1491416827,1774724351,2110514826,1254919624,1492359345, 1775845377,2111847958,1255712309,1493302012,1776966580,2113181300,1256505119,1494244827,1778087960,2114514853,1257298054,1495187792,1779209517,2115848616,1258091114,1496130905, 1780331250,2117182590,1258884300,1497074166,1781453160,2118516773,1259677610,1498017577,1782575247,2119851167,1260471045,1498961135,1783697511,2121185771,1261264605,1499904843, 1784819951,2122520584,1262058290,1500848698,1785942567,2123855608,1262852100,1501792703,1787065360,2125190841,1263646035,1502736855,1788188330,2126526285,1264440094,1503681156, 1789311475,2127861937,1265234278,1504625605,1790434797,2129197800,1266028586,1505570203,1791558295,2130533872,1266823020,1506514948,1792681970,2131870153,1267617577,1507459842, 1793805820,2133206644,1268412260,1508404884,1794929847,2134543345,1269207066,1509350074,1796054049,2135880254,1270001998,1510295412,1797178428,2137217373,1270797053,1511240897, 1798302982,2138554701,1271592233,1512186531,1799427712,2139892238,1272387537,1513132313,1800552618,2141229984,1273182966,1514078242,1801677700,2142567939,1273978519,1515024319, 1802802957,2143906104,1274774196,1515970544,1803928390,2145244476,1275569997,1516916917,1805053999,2146583058,1276365923,1517863437,1806179783,1073960924,1277161972,1518810105, 1807305742,1074630424,1277958146,1519756920,1808431877,1075300028,1278754444,1520703883,1809558187,1075969736,1279550865,1521650993,1810684673,1076639548,1280347411,1522598250, 1811811333,1077309464,1281144080,1523545655,1812938169,1077979485,1281940873,1524493208,1814065180,1078649610,1282737791,1525440907,1815192367,1079319839,1283534832,1526388754, 1816319728,1079990172,1284331996,1527336748,1817447264,1080660609,1285129285,1528284889,1818574975,1081331150,1285926697,1529233177,1819702861,1082001795,1286724232,1530181612, 1820830921,1082672543,1287521892,1531130194,1821959157,1083343396,1288319675,1532078924,1823087567,1084014353,1289117581,1533027800,1824216151,1084685413,1289915611,1533976822, 1825344911,1085356578,1290713764,1534925992,1826473845,1086027846,1291512041,1535875308,1827602953,1086699218,1292310441,1536824772,1828732236,1087370693,1293108965,1537774381, 1829861693,1088042272,1293907612,1538724138,1830991324,1088713955,1294706382,1539674041,1832121130,1089385742,1295505275,1540624090,1833251110,1090057632,1296304291,1541574286, 1834381264,1090729625,1297103431,1542524629,1835511592,1091401722,1297902693,1543475118,1836642094,1092073923,1298702079,1544425753,1837772770,1092746227,1299501588,1545376534, 1838903620,1093418634,1300301220,1546327462,1840034644,1094091145,1301100974,1547278536,1841165842,1094763760,1301900852,1548229756,1842297214,1095436477,1302700853,1549181123, 1843428759,1096109298,1303500976,1550132635,1844560478,1096782222,1304301222,1551084293,1845692370,1097455249,1305101591,1552036098,1846824437,1098128380,1305902083,1552988048, 1847956676,1098801614,1306702697,1553940145,1849089089,1099474951,1307503434,1554892387,1850221676,1100148391,1308304294,1555844775,1851354436,1100821934,1309105276,1556797308, 1852487369,1101495580,1309906381,1557749988,1853620475,1102169329,1310707608,1558702813,1854753755,1102843181,1311508957,1559655784,1855887208,1103517136,1312310430,1560608900, 1857020833,1104191194,1313112024,1561562162,1858154632,1104865355,1313913741,1562515569,1859288604,1105539618,1314715580,1563469122,1860422749,1106213985,1315517542,1564422820, 1861557067,1106888454,1316319625,1565376664,1862691557,1107563026,1317121831,1566330653,1863826220,1108237701,1317924159,1567284787,1864961056,1108912479,1318726609,1568239067, 1866096065,1109587359,1319529182,1569193491,1867231246,1110262342,1320331876,1570148061,1868366600,1110937427,1321134692,1571102776,1869502126,1111612615,1321937631,1572057636, 1870637825,1112287905,1322740691,1573012641,1871773696,1112963298,1323543873,1573967791,1872909739,1113638794,1324347177,1574923086,1874045955,1114314392,1325150603,1575878526, 1875182343,1114990092,1325954151,1576834110,1876318904,1115665895,1326757820,1577789840,1877455636,1116341800,1327561612,1578745714,1878592540,1117017808,1328365524,1579701733, 1879729617,1117693917,1329169559,1580657897,1880866865,1118370129,1329973715,1581614205,1882004286,1119046444,1330777993,1582570657,1883141878,1119722860,1331582392,1583527255, 1884279642,1120399379,1332386913,1584483997,1885417578,1121075999,1333191555,1585440883,1886555686,1121752722,1333996319,1586397913,1887693965,1122429547,1334801204,1587355088, 1888832416,1123106474,1335606210,1588312408,1889971039,1123783503,1336411338,1589269871,1891109833,1124460634,1337216587,1590227479,1892248798,1125137867,1338021957,1591185231, 1893387935,1125815202,1338827448,1592143127,1894527243,1126492639,1339633061,1593101167,1895666723,1127170177,1340438795,1594059352,1896806374,1127847818,1341244649,1595017680, 1897946196,1128525560,1342050625,1595976152,1899086189,1129203404,1342856722,1596934768,1900226353,1129881350,1343662940,1597893528,1901366688,1130559397,1344469279,1598852432, 1902507195,1131237546,1345275739,1599811480,1903647872,1131915797,1346082319,1600770672,1904788720,1132594149,1346889021,1601730007,1905929739,1133272603,1347695843,1602689486, 1907070929,1133951159,1348502786,1603649108,1908212290,1134629816,1349309850,1604608874,1909353821,1135308575,1350117035,1605568784,1910495523,1135987435,1350924340,1606528837, 1911637396,1136666396,1351731766,1607489033,1912779439,1137345459,1352539312,1608449373,1913921652,1138024623,1353346979,1609409857,1915064036,1138703889,1354154766,1610370483, 1916206591,1139383256,1354962674,1611331253,1917349315,1140062724,1355770703,1612292166,1918492211,1140742293,1356578852,1613253223,1919635276,1141421964,1357387121,1614214422, 1920778511,1142101736,1358195510,1615175765,1921921917,1142781609,1359004020,1616137250,1923065493,1143461583,1359812650,1617098879,1924209238,1144141658,1360621401,1618060651, 1925353154,1144821835,1361430271,1619022565,1926497240,1145502112,1362239262,1619984623,1927641495,1146182491,1363048373,1620946823,1928785921,1146862970,1363857604,1621909166, 1929930516,1147543550,1364666955,1622871652,1931075281,1148224232,1365476426,1623834281,1932220215,1148905014,1366286017,1624797052,1933365319,1149585897,1367095728,1625759966, 1934510593,1150266881,1367905559,1626723023,1935656036,1150947965,1368715509,1627686222,1936801649,1151629151,1369525580,1628649564,1937947431,1152310437,1370335770,1629613048, 1939093383,1152991824,1371146080,1630576675,1940239504,1153673311,1371956510,1631540444,1941385794,1154354900,1372767060,1632504355,1942532254,1155036589,1373577729,1633468409, 1943678882,1155718378,1374388518,1634432604,1944825680,1156400268,1375199427,1635396943,1945972647,1157082259,1376010455,1636361423,1947119783,1157764350,1376821602,1637326045, 1948267088,1158446541,1377632869,1638290810,1949414561,1159128833,1378444256,1639255717,1950562204,1159811226,1379255762,1640220765,1951710016,1160493718,1380067387,1641185956, 1952857996,1161176312,1380879132,1642151288,1954006145,1161859005,1381690996,1643116763,1955154463,1162541799,1382502979,1644082379,1956302949,1163224693,1383315081,1645048137, 1957451604,1163907687,1384127303,1646014037,1958600427,1164590782,1384939644,1646980078,1959749419,1165273977,1385752104,1647946261,1960898580,1165957271,1386564683,1648912586, 1962047908,1166640666,1387377381,1649879053,1963197406,1167324161,1388190198,1650845661,1964347071,1168007757,1389003134,1651812410,1965496905,1168691452,1389816190,1652779301, 1966646906,1169375247,1390629364,1653746334,1967797076,1170059142,1391442657,1654713507,1968947414,1170743137,1392256069,1655680823,1970097921,1171427232,1393069599,1656648279, 1971248595,1172111427,1393883249,1657615877,1972399437,1172795722,1394697017,1658583616,1973550447,1173480116,1395510904,1659551496,1974701624,1174164611,1396324909,1660519517, 1975852970,1174849205,1397139034,1661487680,1977004483,1175533899,1397953277,1662455983,1978156164,1176218693,1398767638,1663424427,1979308013,1176903586,1399582118,1664393013, 1980460029,1177588579,1400396717,1665361739,1981612213,1178273672,1401211434,1666330607,1982764565,1178958864,1402026269,1667299615,1983917083,1179644156,1402841223,1668268764, 1985069770,1180329547,1403656295,1669238053,1986222623,1181015038,1404471486,1670207484,1987375644,1181700628,1405286795,1671177055,1988528832,1182386318,1406102222,1672146767, 1989682188,1183072107,1406917767,1673116619,1990835710,1183757996,1407733431,1674086612,1991989400,1184443984,1408549213,1675056745,1993143256,1185130071,1409365112,1676027019, 1994297280,1185816257,1410181130,1676997434,1995451471,1186502543,1410997267,1677967989,1996605828,1187188929,1411813521,1678938684,1997760353,1187875413,1412629893,1679909519, 1998915044,1188561996,1413446383,1680880495,2000069902,1189248679,1414262991,1681851611,2001224927,1189935461,1415079717,1682822867,2002380119,1190622342,1415896560,1683794264, 2003535477,1191309322,1416713522,1684765800,2004691002,1191996401,1417530601,1685737477,2005846693,1192683579,1418347799,1686709294,2007002551,1193370857,1419165113,1687681250, 2008158575,1194058233,1419982546,1688653347,2009314765,1194745708,1420800096,1689625583,2010471122,1195433282,1421617764,1690597960,2011627646,1196120954,1422435549,1691570476, 2012784335,1196808726,1423253452,1692543132,2013941191,1197496597,1424071473,1693515928,2015098213,1198184566,1424889611,1694488863,2016255401,1198872634,1425707866,1695461939, 2017412755,1199560801,1426526239,1696435154,2018570275,1200249066,1427344730,1697408508,2019727961,1200937431,1428163337,1698382002,2020885813,1201625894,1428982062,1699355636, 2022043830,1202314455,1429800904,1700329409,2023202014,1203003115,1430619864,1701303321,2024360363,1203691874,1431438941,1702277373,2025518879,1204380731,1432258134,1703251564, 2026677559,1205069687,1433077445,1704225895,2027836406,1205758741,1433896874,1705200364,2028995418,1206447894,1434716419,1706174973,2030154595,1207137145,1435536081,1707149722, 2031313938,1207826494,1436355861,1708124609,2032473447,1208515942,1437175757,1709099636,2033633121,1209205488,1437995770,1710074801,2034792960,1209895133,1438815900,1711050106, 2035952964,1210584876,1439636147,1712025549,2037113134,1211274717,1440456511,1713001132,2038273469,1211964656,1441276992,1713976854,2039433969,1212654693,1442097590,1714952714, 2040594635,1213344829,1442918304,1715928713,2041755465,1214035063,1443739135,1716904851,2042916460,1214725395,1444560082,1717881128,2044077621,1215415825,1445381147,1718857544, 2045238946,1216106353,1446202328,1719834098,2046400436,1216796979,1447023625,1720810791,2047562091,1217487703,1447845039,1721787622,2048723911,1218178526,1448666570,1722764592, 2049885895,1218869446,1449488217,1723741701,2051048044,1219560464,1450309981,1724718948,2052210358,1220251580,1451131861,1725696334,2053372837,1220942793,1451953857,1726673857, 2054535480,1221634105,1452775970,1727651520,2055698287,1222325515,1453598199,1728629320,2056861259,1223017022,1454420544,1729607259,2058024395,1223708627,1455243006,1730585337, 2059187696,1224400330,1456065584,1731563552,2060351161,1225092130,1456888278,1732541905,2061514790,1225784028,1457711088,1733520397,2062678584,1226476024,1458534014,1734499027, 2063842542,1227168117,1459357056,1735477795,2065006663,1227860308,1460180215,1736456701,2066170949,1228552597,1461003489,1737435745,2067335399,1229244983,1461826880,1738414926, 2068500013,1229937467,1462650386,1739394246,2069664791,1230630048,1463474009,1740373704,2070829733,1231322726,1464297747,1741353299,2071994839,1232015502,1465121601,1742333032, 2073160108,1232708376,1465945571,1743312903,2074325541,1233401346,1466769657,1744292912,2075491138,1234094414,1467593858,1745273058,2076656899,1234787580,1468418176,1746253342, 2077822823,1235480843,1469242609,1747233764,2078988911,1236174203,1470067157,1748214323,2080155163,1236867660,1470891821,1749195019,2081321578,1237561214,1471716601,1750175854, 2082488156,1238254866,1472541497,1751156825,2083654898,1238948615,1473366508,1752137934,2084821803,1239642461,1474191634,1753119180,2085988871,1240336404,1475016876,1754100564, 2087156103,1241030444,1475842234,1755082085,2088323498,1241724581,1476667706,1756063743,2089491056,1242418815,1477493295,1757045538,2090658777,1243113146,1478318998,1758027471, 2091826661,1243807574,1479144817,1759009540,2092994708,1244502099,1479970751,1759991747,2094162918,1245196721,1480796801,1760974091,2095331292,1245891440,1481622965,1761956572, 2096499828,1246586256,1482449245,1762939190,2097668527,1247281168,1483275640,1763921944,2098837388,1247976178,1484102150,1764904836,2100006413,1248671284,1484928775,1765887865, 2101175600,1249366487,1485755515,1766871030,2102344950,1250061786,1486582371,1767854332,2103514462,1250757183,1487409341,1768837771,2104684138,1251452676,1488236426,1769821347, 2105853975,1252148265,1489063626,1770805059,2107023975,1252843951,1489890941,1771788908,2108194138,1253539734,1490718371,1772772893,2109364463,1254235614,1491545916,1773757015, 2110534950,1254931590,1492373575,1774741274,2111705600,1255627662,1493201349,1775725669,2112876412,1256323831,1494029238,1776710200,2114047386,1257020096,1494857242,1777694868, 2115218522,1257716458,1495685361,1778679673,2116389820,1258412916,1496513594,1779664613,2117561281,1259109471,1497341941,1780649690,2118732903,1259806122,1498170404,1781634903, 2119904688,1260502869,1498998980,1782620253,2121076634,1261199713,1499827672,1783605738,2122248743,1261896652,1500656477,1784591360,2123421013,1262593688,1501485398,1785577118, 2124593445,1263290821,1502314432,1786563012,2125766039,1263988049,1503143581,1787549042,2126938794,1264685374,1503972845,1788535208,2128111712,1265382794,1504802222,1789521510, 2129284790,1266080311,1505631714,1790507947,2130458031,1266777924,1506461321,1791494521,2131631433,1267475633,1507291041,1792481231,2132804996,1268173438,1508120876,1793468076, 2133978721,1268871339,1508950825,1794455057,2135152608,1269569336,1509780888,1795442174,2136326656,1270267429,1510611065,1796429426,2137500865,1270965618,1511441356,1797416815, 2138675235,1271663903,1512271761,1798404338,2139849767,1272362284,1513102281,1799391998,2141024459,1273060760,1513932914,1800379793,2142199313,1273759333,1514763661,1801367723, 2143374328,1274458001,1515594522,1802355789,2144549504,1275156765,1516425497,1803343991,2145724842,1275855624,1517256586,1804332327,2146900340,1276554580,1518087789,1805320799, 1074037999,1277253631,1518919105,1806309407,1074625909,1277952777,1519750535,1807298150,1075213900,1278652020,1520582079,1808287028,1075801970,1279351358,1521413737,1809276041, 1076390122,1280050791,1522245508,1810265189,1076978353,1280750320,1523077393,1811254473,1077566665,1281449945,1523909392,1812243891,1078155057,1282149665,1524741504,1813233445, 1078743529,1282849480,1525573730,1814223134,1079332082,1283549391,1526406069,1815212957,1079920715,1284249398,1527238522,1816202916,1080509428,1284949500,1528071088,1817193010, 1081098222,1285649697,1528903767,1818183238,1081687095,1286349990,1529736560,1819173601,1082276049,1287050378,1530569466,1820164100,1082865083,1287750861,1531402486,1821154732, 1083454197,1288451439,1532235619,1822145500,1084043391,1289152113,1533068865,1823136402,1084632665,1289852882,1533902225,1824127439,1085222019,1290553746,1534735697,1825118611, 1085811453,1291254706,1535569283,1826109917,1086400967,1291955760,1536402982,1827101358,1086990561,1292656910,1537236794,1828092933,1087580236,1293358154,1538070719,1829084643, 1088169990,1294059494,1538904757,1830076487,1088759824,1294760929,1539738909,1831068465,1089349737,1295462459,1540573173,1832060578,1089939731,1296164083,1541407550,1833052826, 1090529805,1296865803,1542242040,1834045207,1091119958,1297567618,1543076643,1835037723,1091710192,1298269527,1543911359,1836030373,1092300505,1298971532,1544746188,1837023157, 1092890897,1299673631,1545581129,1838016076,1093481370,1300375825,1546416184,1839009128,1094071922,1301078114,1547251351,1840002315,1094662554,1301780498,1548086630,1840995635, 1095253266,1302482977,1548922023,1841989090,1095844057,1303185550,1549757528,1842982679,1096434928,1303888218,1550593146,1843976401,1097025879,1304590980,1551428876,1844970258, 1097616909,1305293838,1552264719,1845964248,1098208019,1305996789,1553100674,1846958372,1098799208,1306699836,1553936742,1847952630,1099390477,1307402977,1554772923,1848947022, 1099981825,1308106213,1555609215,1849941547,1100573253,1308809543,1556445621,1850936206,1101164760,1309512968,1557282138,1851930999,1101756347,1310216487,1558118768,1852925925, 1102348013,1310920100,1558955511,1853920985,1102939759,1311623808,1559792365,1854916179,1103531584,1312327611,1560629332,1855911505,1104123488,1313031508,1561466411,1856906966, 1104715471,1313735499,1562303602,1857902560,1105307534,1314439584,1563140906,1858898287,1105899677,1315143764,1563978321,1859894147,1106491898,1315848038,1564815849,1860890141, 1107084199,1316552406,1565653489,1861886269,1107676579,1317256869,1566491241,1862882529,1108269038,1317961426,1567329105,1863878923,1108861577,1318666076,1568167080,1864875450, 1109454194,1319370821,1569005168,1865872110,1110046891,1320075661,1569843368,1866868903,1110639667,1320780594,1570681680,1867865829,1111232522,1321485621,1571520103,1868862888, 1111825456,1322190743,1572358639,1869860080,1112418469,1322895958,1573197286,1870857405,1113011561,1323601267,1574036045,1871854864,1113604732,1324306671,1574874915,1872852455, 1114197982,1325012168,1575713898,1873850178,1114791311,1325717759,1576552992,1874848035,1115384720,1326423445,1577392198,1875846025,1115978207,1327129224,1578231515,1876844147, 1116571773,1327835096,1579070944,1877842402,1117165417,1328541063,1579910485,1878840790,1117759141,1329247124,1580750137,1879839310,1118352944,1329953278,1581589901,1880837963, 1118946825,1330659526,1582429776,1881836748,1119540785,1331365868,1583269762,1882835666,1120134824,1332072303,1584109860,1883834717,1120728942,1332778832,1584950070,1884833900, 1121323139,1333485455,1585790391,1885833215,1121917414,1334192171,1586630823,1886832663,1122511768,1334898981,1587471366,1887832243,1123106201,1335605885,1588312021,1888831956, 1123700712,1336312882,1589152787,1889831801,1124295302,1337019972,1589993664,1890831778,1124889970,1337727156,1590834652,1891831887,1125484718,1338434434,1591675752,1892832129, 1126079543,1339141805,1592516963,1893832503,1126674448,1339849270,1593358284,1894833008,1127269431,1340556827,1594199717,1895833646,1127864492,1341264479,1595041261,1896834416, 1128459632,1341972223,1595882916,1897835318,1129054850,1342680061,1596724682,1898836352,1129650147,1343387992,1597566559,1899837518,1130245522,1344096017,1598408546,1900838816, 1130840976,1344804135,1599250645,1901840246,1131436508,1345512346,1600092855,1902841807,1132032119,1346220650,1600935175,1903843501,1132627807,1346929047,1601777606,1904845326, 1133223574,1347637538,1602620148,1905847283,1133819420,1348346121,1603462801,1906849371,1134415344,1349054798,1604305564,1907851592,1135011346,1349763568,1605148438,1908853944, 1135607426,1350472431,1605991423,1909856427,1136203584,1351181387,1606834519,1910859042,1136799821,1351890436,1607677725,1911861789,1137396136,1352599578,1608521041,1912864667, 1137992529,1353308812,1609364469,1913867677,1138589000,1354018140,1610208006,1914870818,1139185550,1354727561,1611051654,1915874090,1139782177,1355437075,1611895413,1916877494, 1140378883,1356146681,1612739282,1917881029,1140975666,1356856380,1613583262,1918884695,1141572528,1357566172,1614427351,1919888493,1142169468,1358276057,1615271552,1920892422, 1142766485,1358986035,1616115862,1921896482,1143363581,1359696105,1616960283,1922900673,1143960755,1360406269,1617804814,1923904995,1144558006,1361116524,1618649455,1924909449, 1145155336,1361826873,1619494207,1925914033,1145752743,1362537314,1620339068,1926918749,1146350228,1363247848,1621184040,1927923595,1146947791,1363958474,1622029122,1928928573, 1147545432,1364669193,1622874314,1929933681,1148143151,1365380005,1623719616,1930938920,1148740948,1366090909,1624565028,1931944290,1149338822,1366801905,1625410550,1932949791, 1149936775,1367512994,1626256182,1933955423,1150534804,1368224175,1627101924,1934961185,1151132912,1368935449,1627947776,1935967078,1151731097,1369646816,1628793738,1936973102, 1152329360,1370358274,1629639810,1937979257,1152927701,1371069825,1630485991,1938985542,1153526119,1371781469,1631332283,1939991957,1154124615,1372493204,1632178684,1940998504, 1154723189,1373205032,1633025194,1942005180,1155321840,1373916952,1633871815,1943011987,1155920569,1374628965,1634718545,1944018925,1156519375,1375341069,1635565385,1945025993, 1157118259,1376053266,1636412335,1946033191,1157717220,1376765555,1637259394,1947040520,1158316259,1377477936,1638106562,1948047979,1158915375,1378190409,1638953841,1949055568, 1159514568,1378902975,1639801228,1950063288,1160113839,1379615632,1640648726,1951071138,1160713188,1380328381,1641496332,1952079118,1161312614,1381041223,1642344048,1953087228, 1161912117,1381754156,1643191874,1954095468,1162511697,1382467182,1644039809,1955103838,1163111355,1383180299,1644887853,1956112338,1163711090,1383893508,1645736007,1957120969, 1164310903,1384606810,1646584270,1958129729,1164910792,1385320203,1647432642,1959138619,1165510759,1386033688,1648281123,1960147639,1166110804,1386747264,1649129714,1961156789, 1166710925,1387460933,1649978413,1962166069,1167311123,1388174693,1650827222,1963175478,1167911399,1388888546,1651676140,1964185018,1168511752,1389602489,1652525167,1965194687, 1169112182,1390316525,1653374304,1966204486,1169712689,1391030652,1654223549,1967214414,1170313273,1391744871,1655072903,1968224472,1170913934,1392459182,1655922366,1969234660, 1171514673,1393173584,1656771938,1970244977,1172115488,1393888078,1657621620,1971255424,1172716380,1394602663,1658471410,1972266000,1173317349,1395317340,1659321308,1973276706, 1173918396,1396032108,1660171316,1974287541,1174519519,1396746968,1661021433,1975298506,1175120719,1397461920,1661871658,1976309600,1175721996,1398176963,1662721992,1977320823, 1176323350,1398892097,1663572435,1978332176,1176924780,1399607323,1664422986,1979343658,1177526288,1400322640,1665273646,1980355269,1178127872,1401038048,1666124415,1981367009, 1178729534,1401753548,1666975293,1982378879,1179331272,1402469139,1667826279,1983390877,1179933086,1403184821,1668677373,1984403005,1180534978,1403900595,1669528577,1985415262, 1181136946,1404616460,1670379888,1986427648,1181738991,1405332416,1671231308,1987440163,1182341113,1406048464,1672082837,1988452806,1182943311,1406764602,1672934474,1989465579, 1183545586,1407480832,1673786219,1990478481,1184147938,1408197153,1674638073,1991491512,1184750366,1408913564,1675490035,1992504671,1185352871,1409630067,1676342106,1993517959, 1185955452,1410346661,1677194284,1994531376,1186558110,1411063347,1678046571,1995544922,1187160844,1411780123,1678898967,1996558596,1187763655,1412496990,1679751470,1997572400, 1188366543,1413213948,1680604082,1998586331,1188969507,1413930997,1681456801,1999600392,1189572547,1414648137,1682309629,2000614581,1190175664,1415365367,1683162565,2001628898, 1190778857,1416082689,1684015609,2002643344,1191382127,1416800102,1684868761,2003657919,1191985473,1417517605,1685722022,2004672622,1192588895,1418235199,1686575390,2005687453, 1193192394,1418952884,1687428866,2006702413,1193795969,1419670660,1688282450,2007717501,1194399620,1420388526,1689136142,2008732718,1195003348,1421106484,1689989941,2009748063, 1195607152,1421824531,1690843849,2010763536,1196211032,1422542670,1691697864,2011779137,1196814988,1423260899,1692551988,2012794866,1197419021,1423979219,1693406219,2013810724, 1198023129,1424697629,1694260557,2014826710,1198627314,1425416130,1695115004,2015842823,1199231575,1426134722,1695969558,2016859065,1199835912,1426853404,1696824220,2017875435, 1200440326,1427572176,1697678989,2018891933,1201044815,1428291039,1698533866,2019908559,1201649380,1429009993,1699388851,2020925313,1202254022,1429729037,1700243943,2021942195, 1202858739,1430448171,1701099143,2022959204,1203463533,1431167396,1701954450,2023976342,1204068402,1431886711,1702809865,2024993607,1204673348,1432606117,1703665387,2026011000, 1205278369,1433325612,1704521016,2027028520,1205883467,1434045199,1705376753,2028046169,1206488640,1434764875,1706232598,2029063945,1207093889,1435484642,1707088549,2030081849, 1207699214,1436204499,1707944608,2031099880,1208304615,1436924446,1708800775,2032118039,1208910092,1437644483,1709657048,2033136326,1209515645,1438364610,1710513429,2034154740, 1210121273,1439084828,1711369917,2035173281,1210726977,1439805136,1712226512,2036191950,1211332757,1440525534,1713083214,2037210747,1211938613,1441246022,1713940023,2038229670, 1212544544,1441966600,1714796940,2039248722,1213150552,1442687268,1715653963,2040267900,1213756634,1443408026,1716511094,2041287206,1214362793,1444128874,1717368331,2042306639, 1214969027,1444849811,1718225676,2043326199,1215575337,1445570839,1719083127,2044345886,1216181722,1446291957,1719940686,2045365701,1216788183,1447013165,1720798351,2046385643, 1217394720,1447734463,1721656123,2047405712,1218001332,1448455850,1722514003,2048425908,1218608020,1449177327,1723371989,2049446231,1219214783,1449898894,1724230081,2050466680, 1219821621,1450620551,1725088281,2051487257,1220428536,1451342298,1725946587,2052507961,1221035525,1452064134,1726805000,2053528792,1221642590,1452786060,1727663520,2054549750, 1222249731,1453508076,1728522146,2055570834,1222856947,1454230182,1729380879,2056592046,1223464238,1454952377,1730239718,2057613384,1224071605,1455674662,1731098665,2058634849, 1224679047,1456397036,1731957717,2059656440,1225286564,1457119500,1732816877,2060678159,1225894157,1457842053,1733676142,2061700004,1226501825,1458564696,1734535515,2062721975, 1227109568,1459287429,1735394993,2063744074,1227717386,1460010251,1736254579,2064766298,1228325280,1460733163,1737114270,2065788650,1228933249,1461456164,1737974068,2066811127, 1229541293,1462179254,1738833972,2067833732,1230149413,1462902434,1739693983,2068856463,1230757607,1463625703,1740554100,2069879320,1231365877,1464349062,1741414323,2070902303, 1231974221,1465072510,1742274653,2071925413,1232582641,1465796047,1743135088,2072948649,1233191136,1466519673,1743995630,2073972012,1233799706,1467243389,1744856278,2074995500, 1234408351,1467967194,1745717032,2076019115,1235017072,1468691089,1746577892,2077042857,1235625867,1469415072,1747438859,2078066724,1236234737,1470139145,1748299931,2079090717, 1236843682,1470863307,1749161110,2080114837,1237452702,1471587558,1750022394,2081139083,1238061797,1472311898,1750883785,2082163454,1238670967,1473036327,1751745281,2083187952, 1239280212,1473760846,1752606883,2084212575,1239889532,1474485453,1753468592,2085237325,1240498926,1475210149,1754330406,2086262201,1241108396,1475934935,1755192326,2087287202, 1241717940,1476659809,1756054352,2088312329,1242327559,1477384773,1756916483,2089337582,1242937253,1478109825,1757778721,2090362961,1243547022,1478834966,1758641064,2091388466, 1244156865,1479560196,1759503513,2092414096,1244766783,1480285515,1760366067,2093439852,1245376776,1481010923,1761228727,2094465734,1245986844,1481736420,1762091493,2095491741, 1246596986,1482462006,1762954365,2096517874,1247207203,1483187680,1763817342,2097544133,1247817495,1483913443,1764680425,2098570517,1248427861,1484639295,1765543613,2099597026, 1249038302,1485365236,1766406906,2100623661,1249648817,1486091265,1767270306,2101650422,1250259407,1486817383,1768133810,2102677308,1250870072,1487543590,1768997421,2103704319, 1251480811,1488269885,1769861136,2104731456,1252091625,1488996269,1770724957,2105758718,1252702513,1489722741,1771588883,2106786105,1253313476,1490449302,1772452915,2107813617, 1253924513,1491175952,1773317052,2108841255,1254535624,1491902690,1774181294,2109869018,1255146810,1492629517,1775045642,2110896906,1255758071,1493356432,1775910094,2111924920, 1256369405,1494083436,1776774652,2112953058,1256980814,1494810528,1777639315,2113981322,1257592298,1495537709,1778504084,2115009710,1258203856,1496264977,1779368957,2116038224, 1258815488,1496992335,1780233936,2117066863,1259427194,1497719781,1781099019,2118095626,1260038975,1498447315,1781964208,2119124515,1260650830,1499174937,1782829502,2120153528, 1261262760,1499902648,1783694900,2121182666,1261874763,1500630447,1784560404,2122211930,1262486841,1501358334,1785426013,2123241318,1263098993,1502086309,1786291726,2124270830, 1263711219,1502814373,1787157545,2125300468,1264323519,1503542525,1788023468,2126330230,1264935894,1504270765,1788889496,2127360117,1265548342,1504999093,1789755629,2128390128, 1266160865,1505727509,1790621867,2129420265,1266773461,1506456013,1791488210,2130450525,1267386132,1507184606,1792354657,2131480911,1267998877,1507913286,1793221209,2132511421, 1268611696,1508642055,1794087866,2133542055,1269224589,1509370912,1794954627,2134572814,1269837556,1510099856,1795821493,2135603697,1270450597,1510828889,1796688464,2136634705, 1271063711,1511558009,1797555539,2137665837,1271676900,1512287218,1798422719,2138697094,1272290163,1513016514,1799290004,2139728474,1272903500,1513745898,1800157393,2140759979, 1273516910,1514475371,1801024886,2141791609,1274130394,1515204931,1801892484,2142823363,1274743953,1515934578,1802760186,2143855240,1275357585,1516664314,1803627993,2144887242, 1275971291,1517394137,1804495904,2145919369,1276585070,1518124049,1805363920,2146951619,1277198924,1518854048,1806232040,1073991997,1277812851,1519584134,1807100264,1074508246, 1278426852,1520314309,1807968593,1075024557,1279040927,1521044571,1808837026,1075540930,1279655075,1521774920,1809705563,1076057366,1280269297,1522505358,1810574204,1076573863, 1280883593,1523235883,1811442949,1077090422,1281497963,1523966495,1812311799,1077607043,1282112406,1524697195,1813180753,1078123726,1282726923,1525427983,1814049811,1078640471, 1283341513,1526158858,1814918973,1079157278,1283956177,1526889821,1815788239,1079674147,1284570914,1527620871,1816657609,1080191077,1285185726,1528352009,1817527083,1080708070, 1285800610,1529083234,1818396661,1081225124,1286415568,1529814547,1819266344,1081742240,1287030600,1530545947,1820136130,1082259418,1287645705,1531277434,1821006020,1082776658, 1288260884,1532009009,1821876014,1083293959,1288876136,1532740671,1822746111,1083811322,1289491461,1533472420,1823616313,1084328747,1290106860,1534204257,1824486618,1084846234, 1290722332,1534936181,1825357028,1085363782,1291337878,1535668192,1826227541,1085881393,1291953497,1536400291,1827098158,1086399064,1292569189,1537132477,1827968878,1086916798, 1293184955,1537864750,1828839702,1087434593,1293800794,1538597110,1829710630,1087952450,1294416706,1539329557,1830581662,1088470368,1295032692,1540062092,1831452797,1088988348, 1295648751,1540794713,1832324036,1089506390,1296264883,1541527422,1833195378,1090024493,1296881088,1542260217,1834066824,1090542658,1297497367,1542993100,1834938373,1091060885, 1298113718,1543726070,1835810026,1091579172,1298730143,1544459127,1836681783,1092097522,1299346641,1545192271,1837553642,1092615933,1299963213,1545925502,1838425606,1093134405, 1300579857,1546658819,1839297672,1093652939,1301196574,1547392224,1840169842,1094171535,1301813365,1548125716,1841042116,1094690192,1302430228,1548859294,1841914493,1095208910, 1303047165,1549592959,1842786973,1095727690,1303664174,1550326712,1843659556,1096246531,1304281257,1551060551,1844532243,1096765433,1304898413,1551794477,1845405033,1097284397, 1305515641,1552528489,1846277926,1097803423,1306132943,1553262589,1847150922,1098322509,1306750317,1553996775,1848024021,1098841657,1307367765,1554731048,1848897224,1099360867, 1307985285,1555465407,1849770529,1099880137,1308602878,1556199853,1850643938,1100399469,1309220544,1556934386,1851517450,1100918862,1309838283,1557669006,1852391065,1101438317, 1310456095,1558403712,1853264783,1101957833,1311073980,1559138505,1854138603,1102477410,1311691937,1559873384,1855012527,1102997048,1312309967,1560608350,1855886554,1103516747, 1312928070,1561343403,1856760684,1104036508,1313546246,1562078542,1857634916,1104556330,1314164495,1562813767,1858509252,1105076213,1314782816,1563549079,1859383690,1105596157, 1315401210,1564284478,1860258231,1106116162,1316019676,1565019963,1861132875,1106636228,1316638216,1565755534,1862007622,1107156356,1317256828,1566491192,1862882471,1107676544, 1317875512,1567226936,1863757423,1108196794,1318494270,1567962766,1864632478,1108717105,1319113099,1568698683,1865507635,1109237477,1319732002,1569434686,1866382896,1109757909, 1320350977,1570170776,1867258258,1110278403,1320970024,1570906951,1868133724,1110798958,1321589144,1571643213,1869009292,1111319574,1322208337,1572379562,1869884962,1111840251, 1322827602,1573115996,1870760735,1112360988,1323446939,1573852517,1871636611,1112881787,1324066349,1574589124,1872512589,1113402647,1324685832,1575325816,1873388669,1113923567, 1325305387,1576062596,1874264852,1114444549,1325925014,1576799461,1875141138,1114965591,1326544714,1577536412,1876017525,1115486695,1327164486,1578273449,1876894016,1116007859, 1327784330,1579010573,1877770608,1116529084,1328404247,1579747782,1878647303,1117050369,1329024236,1580485078,1879524100,1117571716,1329644298,1581222459,1880400999,1118093124, 1330264432,1581959927,1881278001,1118614592,1330884638,1582697480,1882155104,1119136121,1331504916,1583435120,1883032310,1119657711,1332125266,1584172845,1883909619,1120179361, 1332745689,1584910656,1884787029,1120701073,1333366184,1585648553,1885664541,1121222845,1333986751,1586386536,1886542156,1121744677,1334607391,1587124605,1887419872,1122266571, 1335228102,1587862759,1888297691,1122788525,1335848886,1588601000,1889175612,1123310540,1336469742,1589339326,1890053635,1123832615,1337090670,1590077738,1890931759,1124354751, 1337711670,1590816235,1891809986,1124876948,1338332742,1591554819,1892688314,1125399205,1338953886,1592293488,1893566745,1125921523,1339575102,1593032243,1894445277,1126443901, 1340196390,1593771083,1895323912,1126966340,1340817751,1594510009,1896202648,1127488840,1341439183,1595249021,1897081486,1128011400,1342060687,1595988118,1897960425,1128534021, 1342682263,1596727301,1898839467,1129056702,1343303911,1597466569,1899718610,1129579444,1343925632,1598205923,1900597855,1130102246,1344547423,1598945362,1901477202,1130625109, 1345169287,1599684887,1902356650,1131148032,1345791223,1600424498,1903236200,1131671015,1346413231,1601164194,1904115851,1132194059,1347035310,1601903975,1904995605,1132717164, 1347657461,1602643842,1905875459,1133240328,1348279685,1603383794,1906755416,1133763553,1348901979,1604123831,1907635474,1134286839,1349524346,1604863954,1908515633,1134810185, 1350146785,1605604162,1909395894,1135333591,1350769295,1606344456,1910276256,1135857058,1351391877,1607084835,1911156720,1136380585,1352014530,1607825299,1912037285,1136904172, 1352637256,1608565848,1912917952,1137427819,1353260053,1609306483,1913798720,1137951527,1353882921,1610047203,1914679589,1138475295,1354505862,1610788008,1915560560,1138999123, 1355128874,1611528898,1916441632,1139523012,1355751957,1612269874,1917322805,1140046961,1356375112,1613010934,1918204079,1140570970,1356998339,1613752080,1919085455,1141095039, 1357621637,1614493311,1919966932,1141619168,1358245007,1615234626,1920848510,1142143358,1358868449,1615976027,1921730189,1142667607,1359491961,1616717513,1922611970,1143191917, 1360115546,1617459084,1923493851,1143716287,1360739202,1618200740,1924375834,1144240717,1361362929,1618942481,1925257918,1144765207,1361986728,1619684307,1926140102,1145289757, 1362610598,1620426218,1927022388,1145814367,1363234540,1621168214,1927904775,1146339038,1363858553,1621910295,1928787263,1146863768,1364482637,1622652461,1929669851,1147388558, 1365106793,1623394711,1930552541,1147913409,1365731020,1624137046,1931435331,1148438319,1366355319,1624879467,1932318223,1148963290,1366979689,1625621972,1933201215,1149488320, 1367604130,1626364562,1934084308,1150013410,1368228642,1627107236,1934967502,1150538560,1368853226,1627849996,1935850797,1151063771,1369477881,1628592840,1936734192,1151589041, 1370102607,1629335768,1937617689,1152114371,1370727404,1630078782,1938501286,1152639761,1371352273,1630821880,1939384983,1153165210,1371977213,1631565063,1940268782,1153690720, 1372602224,1632308331,1941152681,1154216289,1373227306,1633051683,1942036680,1154741919,1373852459,1633795119,1942920780,1155267608,1374477683,1634538641,1943804981,1155793357, 1375102979,1635282246,1944689283,1156319166,1375728346,1636025937,1945573684,1156845034,1376353783,1636769712,1946458187,1157370962,1376979292,1637513571,1947342790,1157896951, 1377604872,1638257515,1948227493,1158422998,1378230523,1639001544,1949112297,1158949106,1378856244,1639745656,1949997201,1159475273,1379482037,1640489854,1950882206,1160001500, 1380107901,1641234135,1951767311,1160527787,1380733836,1641978501,1952652517,1161054133,1381359841,1642722952,1953537822,1161580539,1381985918,1643467487,1954423228,1162107004, 1382612066,1644212106,1955308735,1162633530,1383238284,1644956809,1956194341,1163160115,1383864573,1645701597,1957080048,1163686759,1384490934,1646446469,1957965855,1164213463, 1385117365,1647191425,1958851763,1164740227,1385743867,1647936466,1959737770,1165267050,1386370439,1648681590,1960623878,1165793933,1386997083,1649426799,1961510085,1166320875, 1387623797,1650172092,1962396393,1166847877,1388250582,1650917470,1963282801,1167374938,1388877438,1651662931,1964169309,1167902059,1389504364,1652408477,1965055917,1168429239, 1390131362,1653154106,1965942625,1168956479,1390758430,1653899820,1966829433,1169483778,1391385568,1654645618,1967716341,1170011137,1392012778,1655391500,1968603349,1170538555, 1392640058,1656137465,1969490457,1171066032,1393267408,1656883515,1970377665,1171593569,1393894830,1657629649,1971264973,1172121166,1394522322,1658375867,1972152380,1172648821, 1395149884,1659122169,1973039888,1173176536,1395777517,1659868554,1973927495,1173704311,1396405221,1660615024,1974815202,1174232144,1397032995,1661361578,1975703009,1174760038, 1397660840,1662108215,1976590915,1175287990,1398288755,1662854936,1977478921,1175816002,1398916741,1663601741,1978367027,1176344073,1399544797,1664348630,1979255233,1176872203, 1400172924,1665095603,1980143538,1177400392,1400801121,1665842660,1981031943,1177928641,1401429388,1666589800,1981920448,1178456949,1402057726,1667337024,1982809052,1178985316, 1402686135,1668084332,1983697756,1179513742,1403314614,1668831723,1984586559,1180042228,1403943163,1669579198,1985475462,1180570773,1404571782,1670326757,1986364464,1181099377, 1405200472,1671074400,1987253566,1181628040,1405829232,1671822126,1988142767,1182156762,1406458063,1672569935,1989032068,1182685543,1407086964,1673317829,1989921468,1183214384, 1407715935,1674065806,1990810967,1183743283,1408344976,1674813866,1991700566,1184272242,1408974088,1675562010,1992590264,1184801260,1409603270,1676310238,1993480061,1185330336, 1410232522,1677058549,1994369958,1185859472,1410861844,1677806943,1995259954,1186388667,1411491236,1678555421,1996150050,1186917921,1412120699,1679303982,1997040244,1187447234, 1412750232,1680052627,1997930538,1187976606,1413379835,1680801356,1998820931,1188506036,1414009508,1681550167,1999711423,1189035526,1414639251,1682299062,2000602014,1189565075, 1415269064,1683048041,2001492705,1190094683,1415898947,1683797102,2002383494,1190624349,1416528901,1684546247,2003274383,1191154075,1417158924,1685295476,2004165371,1191683859, 1417789018,1686044787,2005056457,1192213702,1418419181,1686794182,2005947643,1192743605,1419049415,1687543660,2006838928,1193273566,1419679718,1688293222,2007730311,1193803586, 1420310091,1689042866,2008621794,1194333664,1420940535,1689792594,2009513376,1194863802,1421571048,1690542405,2010405056,1195393998,1422201631,1691292299,2011296835,1195924253, 1422832284,1692042276,2012188714,1196454567,1423463007,1692792336,2013080691,1196984940,1424093800,1693542480,2013972766,1197515372,1424724663,1694292706,2014864941,1198045862, 1425355596,1695043016,2015757214,1198576411,1425986598,1695793408,2016649587,1199107018,1426617670,1696543884,2017542058,1199637685,1427248812,1697294442,2018434627,1200168410, 1427880024,1698045084,2019327295,1200699194,1428511306,1698795809,2020220062,1201230036,1429142657,1699546616,2021112928,1201760937,1429774078,1700297506,2022005892,1202291897, 1430405569,1701048480,2022898955,1202822915,1431037129,1701799536,2023792117,1203353992,1431668759,1702550675,2024685376,1203885128,1432300459,1703301897,2025578735,1204416322, 1432932229,1704053202,2026472192,1204947575,1433564068,1704804589,2027365747,1205478886,1434195977,1705556060,2028259401,1206010256,1434827955,1706307613,2029153154,1206541684, 1435460003,1707059249,2030047005,1207073171,1436092121,1707810968,2030940954,1207604716,1436724308,1708562769,2031835002,1208136320,1437356565,1709314653,2032729148,1208667983, 1437988891,1710066620,2033623392,1209199703,1438621287,1710818670,2034517735,1209731483,1439253752,1711570802,2035412175,1210263321,1439886287,1712323017,2036306715,1210795217, 1440518891,1713075314,2037201352,1211327171,1441151564,1713827694,2038096088,1211859184,1441784308,1714580157,2038990922,1212391256,1442417120,1715332702,2039885854,1212923386, 1443050002,1716085330,2040780884,1213455574,1443682953,1716838040,2041676012,1213987820,1444315974,1717590833,2042571239,1214520125,1444949064,1718343708,2043466564,1215052488, 1445582224,1719096666,2044361986,1215584910,1446215453,1719849706,2045257507,1216117390,1446848751,1720602829,2046153126,1216649928,1447482118,1721356034,2047048843,1217182524, 1448115555,1722109321,2047944658,1217715179,1448749061,1722862691,2048840570,1218247892,1449382636,1723616143,2049736581,1218780663,1450016281,1724369678,2050632690,1219313492, 1450649994,1725123295,2051528896,1219846380,1451283777,1725876994,2052425201,1220379326,1451917630,1726630775,2053321603,1220912330,1452551551,1727384639,2054218103,1221445392, 1453185541,1728138585,2055114701,1221978512,1453819601,1728892614,2056011397,1222511691,1454453730,1729646724,2056908191,1223044928,1455087928,1730400917,2057805082,1223578222, 1455722195,1731155192,2058702071,1224111575,1456356531,1731909549,2059599158,1224644986,1456990936,1732663988,2060496342,1225178455,1457625411,1733418509,2061393625,1225711983, 1458259954,1734173113,2062291004,1226245568,1458894566,1734927798,2063188482,1226779211,1459529248,1735682566,2064086057,1227312912,1460163998,1736437416,2064983730,1227846672, 1460798818,1737192347,2065881500,1228380489,1461433706,1737947361,2066779368,1228914364,1462068663,1738702457,2067677333,1229448298,1462703690,1739457635,2068575396,1229982289, 1463338785,1740212895,2069473556,1230516338,1463973949,1740968236,2070371814,1231050446,1464609182,1741723660,2071270169,1231584611,1465244484,1742479166,2072168621,1232118834, 1465879855,1743234753,2073067171,1232653115,1466515294,1743990422,2073965819,1233187454,1467150803,1744746174,2074864563,1233721851,1467786380,1745502007,2075763406,1234256305, 1468422026,1746257922,2076662345,1234790818,1469057741,1747013918,2077561382,1235325388,1469693525,1747769997,2078460516,1235860017,1470329377,1748526157,2079359747,1236394703, 1470965299,1749282399,2080259075,1236929447,1471601289,1750038723,2081158501,1237464248,1472237347,1750795128,2082058024,1237999108,1472873475,1751551616,2082957644,1238534025, 1473509671,1752308185,2083857361,1239069000,1474145936,1753064835,2084757175,1239604033,1474782269,1753821567,2085657086,1240139123,1475418671,1754578381,2086557095,1240674271, 1476055142,1755335277,2087457200,1241209477,1476691681,1756092254,2088357403,1241744741,1477328289,1756849312,2089257702,1242280062,1477964966,1757606453,2090158099,1242815441, 1478601711,1758363675,2091058593,1243350878,1479238524,1759120978,2091959183,1243886372,1479875406,1759878363,2092859870,1244421924,1480512357,1760635829,2093760655,1244957534, 1481149376,1761393377,2094661536,1245493201,1481786464,1762151006,2095562514,1246028926,1482423620,1762908717,2096463589,1246564708,1483060845,1763666509,2097364761,1247100548, 1483698138,1764424383,2098266030,1247636446,1484335500,1765182338,2099167395,1248172401,1484972930,1765940374,2100068857,1248708414,1485610428,1766698491,2100970416,1249244484, 1486247995,1767456691,2101872072,1249780611,1486885630,1768214971,2102773824,1250316796,1487523334,1768973332,2103675673,1250853039,1488161106,1769731775,2104577619,1251389339, 1488798946,1770490300,2105479661,1251925697,1489436855,1771248905,2106381800,1252462112,1490074832,1772007592,2107284036,1252998584,1490712877,1772766360,2108186368,1253535114, 1491350990,1773525209,2109088797,1254071702,1491989172,1774284139,2109991322,1254608346,1492627422,1775043150,2110893944,1255145049,1493265740,1775802243,2111796662,1255681808, 1493904127,1776561417,2112699477,1256218625,1494542582,1777320672,2113602388,1256755499,1495181104,1778080008,2114505396,1257292431,1495819695,1778839425,2115408500,1257829420, 1496458355,1779598923,2116311701,1258366466,1497097082,1780358502,2117214998,1258903570,1497735877,1781118162,2118118391,1259440730,1498374741,1781877903,2119021880,1259977948, 1499013673,1782637725,2119925466,1260515224,1499652673,1783397628,2120829148,1261052556,1500291740,1784157612,2121732927,1261589946,1500930876,1784917677,2122636802,1262127394, 1501570080,1785677823,2123540773,1262664898,1502209352,1786438050,2124444840,1263202459,1502848692,1787198358,2125349003,1263740078,1503488100,1787958746,2126253263,1264277754, 1504127577,1788719216,2127157618,1264815487,1504767121,1789479766,2128062070,1265353277,1505406733,1790240397,2128966618,1265891125,1506046412,1791001109,2129871262,1266429029, 1506686160,1791761902,2130776002,1266966991,1507325976,1792522775,2131680838,1267505010,1507965860,1793283730,2132585770,1268043086,1508605811,1794044764,2133490799,1268581219, 1509245831,1794805880,2134395923,1269119409,1509885918,1795567077,2135301143,1269657656,1510526073,1796328354,2136206459,1270195960,1511166296,1797089711,2137111871,1270734321, 1511806587,1797851150,2138017379,1271272739,1512446945,1798612669,2138922983,1271811215,1513087372,1799374268,2139828682,1272349747,1513727866,1800135948,2140734478,1272888336, 1514368428,1800897709,2141640369,1273426982,1515009058,1801659551,2142546356,1273965686,1515649755,1802421472,2143452439,1274504446,1516290520,1803183475,2144358618,1275043263, 1516931353,1803945558,2145264892,1275582137,1517572253,1804707721,2146171263,1276121068,1518213221,1805469965,2147077728,1276660056,1518854257,1806232289,1073992145,1277199100, 1519495361,1806994694,1074445474,1277738202,1520136532,1807757179,1074898850,1278277360,1520777771,1808519745,1075352274,1278816576,1521419077,1809282391,1075805746,1279355848, 1522060451,1810045118,1076259266,1279895177,1522701892,1810807924,1076712834,1280434563,1523343401,1811570811,1077166449,1280974005,1523984978,1812333779,1077620112,1281513505, 1524626622,1813096827,1078073823,1282053061,1525268334,1813859955,1078527582,1282592674,1525910113,1814623163,1078981388,1283132344,1526551959,1815386451,1079435242,1283672070, 1527193873,1816149820,1079889144,1284211854,1527835855,1816913269,1080343094,1284751694,1528477904,1817676799,1080797091,1285291590,1529120020,1818440408,1081251136,1285831544, 1529762204,1819204098,1081705228,1286371554,1530404456,1819967867,1082159368,1286911621,1531046774,1820731717,1082613556,1287451744,1531689160,1821495647,1083067792,1287991924, 1532331614,1822259657,1083522075,1288532161,1532974134,1823023748,1083976406,1289072454,1533616722,1823787918,1084430784,1289612804,1534259378,1824552168,1084885210,1290153211, 1534902100,1825316499,1085339684,1290693674,1535544890,1826080909,1085794205,1291234194,1536187748,1826845399,1086248773,1291774770,1536830672,1827609970,1086703390,1292315403, 1537473664,1828374620,1087158054,1292856092,1538116723,1829139350,1087612765,1293396838,1538759849,1829904161,1088067524,1293937641,1539403042,1830669051,1088522330,1294478500, 1540046303,1831434021,1088977184,1295019416,1540689631,1832199071,1089432086,1295560388,1541333026,1832964201,1089887035,1296101416,1541976488,1833729411,1090342031,1296642501, 1542620017,1834494700,1090797075,1297183642,1543263613,1835260069,1091252166,1297724840,1543907277,1836025519,1091707305,1298266095,1544551007,1836791048,1092162491,1298807405, 1545194805,1837556656,1092617725,1299348772,1545838670,1838322345,1093073006,1299890196,1546482602,1839088113,1093528335,1300431676,1547126600,1839853961,1093983710,1300973212, 1547770666,1840619889,1094439134,1301514805,1548414799,1841385896,1094894604,1302056454,1549058999,1842151983,1095350122,1302598159,1549703266,1842918150,1095805688,1303139921, 1550347599,1843684396,1096261301,1303681739,1550992000,1844450722,1096716961,1304223613,1551636468,1845217127,1097172668,1304765543,1552281002,1845983612,1097628423,1305307530, 1552925604,1846750177,1098084225,1305849573,1553570272,1847516821,1098540075,1306391673,1554215008,1848283545,1098995971,1306933828,1554859810,1849050348,1099451915,1307476040, 1555504679,1849817231,1099907906,1308018308,1556149615,1850584194,1100363945,1308560632,1556794617,1851351235,1100820031,1309103013,1557439687,1852118357,1101276164,1309645450, 1558084823,1852885557,1101732344,1310187942,1558730026,1853652837,1102188572,1310730491,1559375296,1854420197,1102644846,1311273096,1560020633,1855187636,1103101168,1311815758, 1560666036,1855955154,1103557537,1312358475,1561311506,1856722752,1104013953,1312901249,1561957043,1857490429,1104470417,1313444078,1562602646,1858258185,1104926928,1313986964, 1563248317,1859026021,1105383485,1314529906,1563894054,1859793936,1105840090,1315072903,1564539857,1860561930,1106296742,1315615957,1565185727,1861330003,1106753442,1316159067, 1565831664,1862098156,1107210188,1316702233,1566477668,1862866388,1107666981,1317245455,1567123738,1863634699,1108123822,1317788733,1567769874,1864403089,1108580710,1318332067, 1568416078,1865171559,1109037644,1318875457,1569062347,1865940107,1109494626,1319418903,1569708684,1866708735,1109951655,1319962405,1570355087,1867477442,1110408731,1320505963, 1571001556,1868246228,1110865854,1321049577,1571648092,1869015093,1111323024,1321593247,1572294695,1869784038,1111780241,1322136972,1572941364,1870553061,1112237505,1322680754, 1573588099,1871322163,1112694816,1323224591,1574234901,1872091345,1113152174,1323768485,1574881769,1872860605,1113609578,1324312434,1575528704,1873629944,1114067030,1324856439, 1576175705,1874399363,1114524529,1325400500,1576822773,1875168860,1114982075,1325944617,1577469907,1875938437,1115439668,1326488790,1578117107,1876708092,1115897308,1327033018, 1578764374,1877477826,1116354994,1327577302,1579411707,1878247639,1116812728,1328121642,1580059106,1879017531,1117270508,1328666038,1580706572,1879787502,1117728336,1329210490, 1581354104,1880557551,1118186210,1329754997,1582001702,1881327680,1118644131,1330299560,1582649367,1882097887,1119102099,1330844179,1583297097,1882868173,1119560114,1331388853, 1583944894,1883638538,1120018176,1331933584,1584592758,1884408982,1120476284,1332478370,1585240687,1885179504,1120934440,1333023211,1585888683,1885950106,1121392642,1333568109, 1586536745,1886720786,1121850891,1334113062,1587184873,1887491544,1122309187,1334658070,1587833068,1888262381,1122767530,1335203135,1588481328,1889033297,1123225919,1335748255, 1589129655,1889804292,1123684355,1336293430,1589778048,1890575365,1124142838,1336838661,1590426506,1891346517,1124601368,1337383948,1591075031,1892117748,1125059944,1337929290, 1591723623,1892889057,1125518567,1338474688,1592372280,1893660445,1125977237,1339020142,1593021003,1894431911,1126435954,1339565651,1593669792,1895203456,1126894717,1340111215, 1594318648,1895975079,1127353527,1340656835,1594967569,1896746781,1127812384,1341202511,1595616556,1897518562,1128271287,1341748242,1596265610,1898290420,1128730237,1342294029, 1596914729,1899062358,1129189234,1342839871,1597563914,1899834374,1129648277,1343385769,1598213166,1900606468,1130107367,1343931722,1598862483,1901378640,1130566504,1344477730, 1599511866,1902150891,1131025687,1345023794,1600161315,1902923221,1131484917,1345569914,1600810830,1903695629,1131944193,1346116088,1601460411,1904468115,1132403516,1346662319, 1602110058,1905240679,1132862886,1347208604,1602759770,1906013322,1133322302,1347754945,1603409549,1906786043,1133781765,1348301342,1604059393,1907558843,1134241274,1348847793, 1604709303,1908331721,1134700830,1349394300,1605359279,1909104677,1135160432,1349940863,1606009321,1909877711,1135620081,1350487481,1606659428,1910650823,1136079777,1351034154, 1607309601,1911424014,1136539519,1351580882,1607959840,1912197283,1136999307,1352127666,1608610145,1912970630,1137459142,1352674505,1609260516,1913744055,1137919023,1353221399, 1609910952,1914517558,1138378951,1353768348,1610561454,1915291140,1138838925,1354315353,1611212021,1916064800,1139298946,1354862413,1611862655,1916838537,1139759013,1355409528, 1612513354,1917612353,1140219127,1355956699,1613164118,1918386247,1140679287,1356503924,1613814948,1919160219,1141139494,1357051205,1614465844,1919934269,1141599747,1357598541, 1615116806,1920708397,1142060046,1358145932,1615767833,1921482603,1142520391,1358693379,1616418926,1922256887,1142980783,1359240880,1617070084,1923031249,1143441222,1359788437, 1617721308,1923805689,1143901707,1360336048,1618372597,1924580207,1144362238,1360883715,1619023952,1925354803,1144822815,1361431437,1619675372,1926129477,1145283439,1361979214, 1620326858,1926904228,1145744109,1362527046,1620978409,1927679058,1146204825,1363074934,1621630026,1928453965,1146665588,1363622876,1622281709,1929228950,1147126397,1364170873, 1622933456,1930004014,1147587252,1364718926,1623585270,1930779154,1148048154,1365267033,1624237148,1931554373,1148509102,1365815196,1624889092,1932329670,1148970096,1366363413, 1625541102,1933105044,1149431136,1366911685,1626193177,1933880496,1149892223,1367460013,1626845317,1934656026,1150353356,1368008395,1627497522,1935431633,1150814535,1368556832, 1628149793,1936207319,1151275760,1369105325,1628802130,1936983082,1151737031,1369653872,1629454531,1937758922,1152198349,1370202474,1630106998,1938534840,1152659712,1370751131, 1630759530,1939310836,1153121122,1371299843,1631412128,1940086910,1153582579,1371848610,1632064791,1940863061,1154044081,1372397432,1632717519,1941639290,1154505629,1372946309, 1633370312,1942415596,1154967224,1373495240,1634023170,1943191980,1155428864,1374044226,1634676094,1943968442,1155890551,1374593268,1635329083,1944744981,1156352284,1375142364, 1635982137,1945521597,1156814063,1375691514,1636635256,1946298291,1157275888,1376240720,1637288441,1947075063,1157737759,1376789981,1637941690,1947851912,1158199676,1377339296, 1638595005,1948628839,1158661640,1377888666,1639248385,1949405843,1159123649,1378438091,1639901830,1950182924,1159585704,1378987570,1640555340,1950960083,1160047806,1379537104, 1641208915,1951737319,1160509953,1380086693,1641862555,1952514633,1160972147,1380636337,1642516261,1953292024,1161434386,1381186036,1643170031,1954069492,1161896671,1381735789, 1643823866,1954847038,1162359003,1382285596,1644477767,1955624661,1162821380,1382835459,1645131732,1956402361,1163283804,1383385376,1645785762,1957180139,1163746273,1383935348, 1646439858,1957957993,1164208788,1384485374,1647094018,1958735926,1164671350,1385035456,1647748244,1959513935,1165133957,1385585591,1648402534,1960292022,1165596610,1386135782, 1649056889,1961070185,1166059309,1386686026,1649711309,1961848426,1166522054,1387236326,1650365794,1962626745,1166984844,1387786680,1651020344,1963405140,1167447681,1388337089, 1651674959,1964183613,1167910564,1388887552,1652329638,1964962162,1168373492,1389438070,1652984383,1965740789,1168836466,1389988642,1653639192,1966519493,1169299487,1390539269, 1654294067,1967298274,1169762553,1391089950,1654949006,1968077132,1170225664,1391640686,1655604009,1968856068,1170688822,1392191477,1656259078,1969635080,1171152025,1392742321, 1656914211,1970414169,1171615275,1393293221,1657569409,1971193335,1172078570,1393844174,1658224672,1971972579,1172541911,1394395183,1658880000,1972751899,1173005297,1394946245, 1659535392,1973531296,1173468730,1395497362,1660190849,1974310770,1173932208,1396048534,1660846371,1975090322,1174395732,1396599760,1661501958,1975869950,1174859301,1397151040, 1662157609,1976649655,1175322917,1397702375,1662813325,1977429437,1175786578,1398253764,1663469105,1978209295,1176250284,1398805207,1664124950,1978989231,1176714037,1399356705, 1664780860,1979769243,1177177835,1399908257,1665436834,1980549333,1177641679,1400459864,1666092873,1981329499,1178105569,1401011525,1666748977,1982109742,1178569504,1401563240, 1667405145,1982890062,1179033485,1402115009,1668061377,1983670458,1179497511,1402666833,1668717675,1984450932,1179961584,1403218711,1669374036,1985231482,1180425701,1403770643, 1670030463,1986012108,1180889865,1404322629,1670686953,1986792812,1181354074,1404874670,1671343509,1987573592,1181818329,1405426765,1672000128,1988354449,1182282629,1405978914, 1672656813,1989135383,1182746975,1406531118,1673313561,1989916393,1183211366,1407083375,1673970374,1990697480,1183675803,1407635687,1674627252,1991478643,1184140286,1408188053, 1675284194,1992259883,1184604814,1408740473,1675941200,1993041200,1185069388,1409292948,1676598271,1993822593,1185534007,1409845476,1677255406,1994604063,1185998672,1410398059, 1677912606,1995385609,1186463382,1410950695,1678569870,1996167232,1186928138,1411503386,1679227198,1996948932,1187392939,1412056131,1679884591,1997730708,1187857786,1412608930, 1680542048,1998512560,1188322678,1413161783,1681199569,1999294489,1188787616,1413714691,1681857154,2000076494,1189252599,1414267652,1682514804,2000858576,1189717627,1414820667, 1683172518,2001640734,1190182701,1415373737,1683830296,2002422969,1190647821,1415926860,1684488139,2003205280,1191112986,1416480038,1685146046,2003987668,1191578196,1417033269, 1685804017,2004770131,1192043452,1417586555,1686462052,2005552672,1192508753,1418139894,1687120152,2006335288,1192974100,1418693287,1687778315,2007117981,1193439492,1419246735, 1688436543,2007900750,1193904929,1419800236,1689094835,2008683595,1194370412,1420353792,1689753191,2009466517,1194835940,1420907401,1690411611,2010249515,1195301513,1421461064, 1691070095,2011032589,1195767132,1422014781,1691728644,2011815740,1196232796,1422568552,1692387256,2012598967,1196698505,1423122377,1693045933,2013382270,1197164260,1423676256, 1693704674,2014165649,1197630060,1424230189,1694363479,2014949104,1198095905,1424784175,1695022347,2015732636,1198561796,1425338216,1695681280,2016516243,1199027732,1425892310, 1696340277,2017299927,1199493713,1426446458,1696999338,2018083687,1199959739,1427000660,1697658463,2018867523,1200425811,1427554916,1698317652,2019651435,1200891928,1428109225, 1698976904,2020435423,1201358090,1428663588,1699636221,2021219487,1201824298,1429218006,1700295602,2022003627,1202290550,1429772476,1700955046,2022787844,1202756848,1430327001, 1701614555,2023572136,1203223191,1430881579,1702274128,2024356504,1203689579,1431436212,1702933764,2025140948,1204156012,1431990897,1703593464,2025925469,1204622491,1432545637, 1704253228,2026710065,1205089015,1433100430,1704913056,2027494737,1205555583,1433655277,1705572948,2028279485,1206022197,1434210178,1706232904,2029064309,1206488857,1434765132, 1706892923,2029849209,1206955561,1435320140,1707553007,2030634185,1207422310,1435875202,1708213154,2031419236,1207889105,1436430317,1708873365,2032204364,1208355944,1436985486, 1709533639,2032989567,1208822829,1437540709,1710193978,2033774846,1209289759,1438095985,1710854380,2034560201,1209756734,1438651315,1711514846,2035345632,1210223754,1439206698, 1712175375,2036131139,1210690818,1439762135,1712835969,2036916721,1211157929,1440317626,1713496626,2037702379,1211625084,1440873170,1714157346,2038488113,1212092284,1441428768, 1714818131,2039273922,1212559529,1441984419,1715478979,2040059807,1213026819,1442540124,1716139891,2040845768,1213494154,1443095882,1716800866,2041631805,1213961534,1443651694, 1717461905,2042417917,1214428959,1444207559,1718123008,2043204105,1214896430,1444763478,1718784174,2043990369,1215363945,1445319450,1719445404,2044776708,1215831505,1445875476, 1720106697,2045563123,1216299110,1446431555,1720768054,2046349613,1216766760,1446987688,1721429474,2047136179,1217234455,1447543874,1722090958,2047922820,1217702194,1448100114, 1722752506,2048709537,1218169979,1448656407,1723414117,2049496330,1218637809,1449212753,1724075791,2050283198,1219105683,1449769153,1724737530,2051070142,1219573603,1450325606, 1725399331,2051857161,1220041567,1450882112,1726061196,2052644255,1220509576,1451438672,1726723125,2053431425,1220977631,1451995286,1727385116,2054218671,1221445730,1452551952, 1728047172,2055005992,1221913873,1453108672,1728709290,2055793388,1222382062,1453665445,1729371473,2056580860,1222850296,1454222272,1730033718,2057368407,1223318574,1454779152, 1730696027,2058156029,1223786897,1455336085,1731358399,2058943727,1224255265,1455893072,1732020835,2059731500,1224723678,1456450111,1732683334,2060519349,1225192135,1457007204, 1733345896,2061307273,1225660637,1457564351,1734008522,2062095272,1226129185,1458121550,1734671211,2062883346,1226597776,1458678803,1735333963,2063671496,1227066413,1459236109, 1735996779,2064459721,1227535094,1459793468,1736659658,2065248021,1228003821,1460350881,1737322600,2066036397,1228472591,1460908346,1737985605,2066824847,1228941407,1461465865, 1738648674,2067613373,1229410267,1462023437,1739311805,2068401974,1229879172,1462581062,1739975000,2069190650,1230348122,1463138740,1740638259,2069979402,1230817116,1463696472, 1741301580,2070768228,1231286155,1464254257,1741964965,2071557130,1231755239,1464812094,1742628412,2072346107,1232224367,1465369985,1743291923,2073135159,1232693540,1465927929, 1743955497,2073924286,1233162758,1466485926,1744619134,2074713488,1233632021,1467043976,1745282835,2075502765,1234101327,1467602079,1745946598,2076292117,1234570679,1468160236, 1746610425,2077081544,1235040075,1468718445,1747274314,2077871046,1235509516,1469276707,1747938267,2078660623,1235979001,1469835023,1748602282,2079450275,1236448531,1470393391, 1749266361,2080240003,1236918106,1470951812,1749930503,2081029805,1237387725,1471510287,1750594708,2081819682,1237857389,1472068814,1751258975,2082609634,1238327097,1472627395, 1751923306,2083399661,1238796850,1473186028,1752587700,2084189762,1239266647,1473744714,1753252157,2084979939,1239736489,1474303454,1753916676,2085770191,1240206375,1474862246, 1754581259,2086560517,1240676306,1475421091,1755245905,2087350918,1241146282,1475979989,1755910613,2088141394,1241616302,1476538940,1756575384,2088931945,1242086366,1477097944, 1757240219,2089722571,1242556475,1477657001,1757905116,2090513271,1243026628,1478216110,1758570076,2091304047,1243496826,1478775273,1759235099,2092094897,1243967068,1479334488, 1759900185,2092885822,1244437355,1479893757,1760565333,2093676821,1244907686,1480453078,1761230545,2094467895,1245378062,1481012452,1761895819,2095259044,1245848482,1481571878, 1762561156,2096050268,1246318946,1482131358,1763226556,2096841566,1246789455,1482690890,1763892019,2097632939,1247260008,1483250476,1764557544,2098424387,1247730605,1483810114, 1765223133,2099215909,1248201247,1484369804,1765888784,2100007506,1248671934,1484929548,1766554497,2100799177,1249142664,1485489344,1767220274,2101590923,1249613439,1486049193, 1767886113,2102382744,1250084259,1486609095,1768552015,2103174639,1250555122,1487169049,1769217979,2103966609,1251026030,1487729056,1769884006,2104758653,1251496983,1488289116, 1770550096,2105550772,1251967979,1488849229,1771216249,2106342965,1252439020,1489409394,1771882464,2107135233,1252910106,1489969612,1772548742,2107927575,1253381235,1490529883, 1773215082,2108719992,1253852409,1491090206,1773881485,2109512483,1254323627,1491650582,1774547951,2110305049,1254794889,1492211010,1775214479,2111097689,1255266196,1492771491, 1775881069,2111890403,1255737547,1493332025,1776547723,2112683192,1256208942,1493892612,1777214439,2113476055,1256680381,1494453251,1777881217,2114268993,1257151865,1495013942, 1778548058,2115062005,1257623392,1495574686,1779214961,2115855091,1258094964,1496135483,1779881927,2116648252,1258566580,1496696332,1780548956,2117441487,1259038241,1497257234, 1781216047,2118234796,1259509945,1497818188,1781883200,2119028179,1259981694,1498379195,1782550416,2119821637,1260453487,1498940255,1783217694,2120615169,1260925324,1499501366, 1783885035,2121408775,1261397205,1500062531,1784552438,2122202456,1261869130,1500623748,1785219903,2122996211,1262341099,1501185017,1785887431,2123790040,1262813113,1501746339, 1786555021,2124583943,1263285171,1502307713,1787222674,2125377920,1263757272,1502869140,1787890389,2126171971,1264229418,1503430619,1788558166,2126966097,1264701608,1503992151, 1789226006,2127760297,1265173842,1504553735,1789893908,2128554570,1265646120,1505115371,1790561872,2129348918,1266118442,1505677060,1791229899,2130143340,1266590808,1506238801, 1791897988,2130937837,1267063218,1506800594,1792566139,2131732407,1267535673,1507362440,1793234353,2132527051,1268008171,1507924339,1793902628,2133321769,1268480713,1508486289, 1794570966,2134116561,1268953300,1509048292,1795239366,2134911428,1269425930,1509610348,1795907829,2135706368,1269898604,1510172455,1796576353,2136501382,1270371322,1510734615, 1797244940,2137296470,1270844085,1511296828,1797913589,2138091632,1271316891,1511859092,1798582300,2138886869,1271789741,1512421409,1799251074,2139682179,1272262635,1512983778, 1799919909,2140477562,1272735573,1513546199,1800588807,2141273020,1273208555,1514108673,1801257767,2142068552,1273681581,1514671199,1801926788,2142864158,1274154651,1515233777, 1802595872,2143659837,1274627765,1515796407,1803265018,2144455590,1275100923,1516359090,1803934227,2145251417,1275574124,1516921825,1804603497,2146047318,1276047370,1517484611, 1805272829,2146843293,1276520659,1518047451,1805942223,1073819671,1276993993,1518610342,1806611680,1074217732,1277467370,1519173285,1807281198,1074615830,1277940791,1519736281, 1807950779,1075013965,1278414256,1520299329,1808620421,1075412137,1278887764,1520862429,1809290125,1075810345,1279361317,1521425581,1809959892,1076208591,1279834913,1521988785, 1810629720,1076606873,1280308553,1522552041,1811299610,1077005192,1280782237,1523115349,1811969563,1077403548,1281255965,1523678710,1812639577,1077801941,1281729737,1524242122, 1813309653,1078200370,1282203552,1524805587,1813979791,1078598837,1282677411,1525369103,1814649991,1078997340,1283151314,1525932672,1815320253,1079395880,1283625261,1526496293, 1815990576,1079794457,1284099251,1527059966,1816660962,1080193071,1284573285,1527623690,1817331409,1080591721,1285047363,1528187467,1818001918,1080990408,1285521485,1528751296, 1818672489,1081389132,1285995650,1529315177,1819343122,1081787893,1286469859,1529879110,1820013817,1082186690,1286944112,1530443094,1820684573,1082585524,1287418408,1531007131, 1821355392,1082984395,1287892748,1531571220,1822026272,1083383303,1288367132,1532135360,1822697213,1083782247,1288841560,1532699553,1823368217,1084181228,1289316031,1533263797, 1824039282,1084580246,1289790546,1533828094,1824710409,1084979301,1290265104,1534392442,1825381598,1085378392,1290739706,1534956842,1826052848,1085777520,1291214352,1535521294, 1826724160,1086176684,1291689041,1536085798,1827395534,1086575886,1292163774,1536650354,1828066970,1086975123,1292638551,1537214962,1828738467,1087374398,1293113371,1537779621, 1829410025,1087773709,1293588235,1538344332,1830081646,1088173057,1294063142,1538909096,1830753328,1088572442,1294538093,1539473911,1831425072,1088971863,1295013087,1540038777, 1832096877,1089371321,1295488125,1540603696,1832768744,1089770815,1295963207,1541168666,1833440672,1090170346,1296438332,1541733689,1834112662,1090569914,1296913501,1542298763, 1834784714,1090969518,1297388713,1542863888,1835456827,1091369159,1297863969,1543429066,1836129001,1091768836,1298339268,1543994295,1836801237,1092168550,1298814611,1544559576, 1837473535,1092568301,1299289997,1545124909,1838145894,1092968088,1299765427,1545690293,1838818315,1093367912,1300240900,1546255729,1839490797,1093767772,1300716416,1546821217, 1840163341,1094167669,1301191977,1547386757,1840835946,1094567602,1301667580,1547952348,1841508612,1094967572,1302143227,1548517991,1842181340,1095367578,1302618918,1549083685, 1842854129,1095767621,1303094652,1549649431,1843526980,1096167701,1303570429,1550215229,1844199892,1096567817,1304046250,1550781078,1844872866,1096967969,1304522114,1551346979, 1845545901,1097368158,1304998021,1551912932,1846218997,1097768384,1305473972,1552478936,1846892155,1098168645,1305949967,1553044992,1847565374,1098568944,1306426004,1553611100, 1848238654,1098969279,1306902085,1554177259,1848911996,1099369650,1307378210,1554743469,1849585399,1099770058,1307854378,1555309731,1850258863,1100170502,1308330589,1555876045, 1850932388,1100570983,1308806843,1556442410,1851605975,1100971500,1309283141,1557008827,1852279623,1101372053,1309759482,1557575295,1852953333,1101772643,1310235867,1558141815, 1853627103,1102173270,1310712294,1558708386,1854300935,1102573933,1311188766,1559275009,1854974828,1102974632,1311665280,1559841683,1855648782,1103375367,1312141837,1560408409, 1856322798,1103776139,1312618438,1560975186,1856996874,1104176948,1313095083,1561542015,1857671012,1104577793,1313571770,1562108895,1858345211,1104978674,1314048501,1562675826, 1859019471,1105379591,1314525275,1563242809,1859693793,1105780545,1315002092,1563809844,1860368175,1106181535,1315478952,1564376929,1861042619,1106582562,1315955856,1564944067, 1861717123,1106983624,1316432802,1565511255,1862391689,1107384724,1316909792,1566078495,1863066316,1107785859,1317386826,1566645786,1863741004,1108187031,1317863902,1567213129, 1864415753,1108588239,1318341022,1567780523,1865090563,1108989484,1318818184,1568347968,1865765434,1109390764,1319295390,1568915465,1866440366,1109792081,1319772639,1569483013, 1867115359,1110193435,1320249932,1570050612,1867790413,1110594824,1320727267,1570618263,1868465528,1110996250,1321204645,1571185965,1869140704,1111397712,1321682067,1571753718, 1869815941,1111799211,1322159532,1572321522,1870491239,1112200745,1322637040,1572889378,1871166598,1112602316,1323114591,1573457285,1871842018,1113003923,1323592185,1574025243, 1872517499,1113405567,1324069822,1574593253,1873193041,1113807246,1324547502,1575161313,1873868644,1114208962,1325025225,1575729425,1874544308,1114610714,1325502991,1576297588, 1875220032,1115012502,1325980801,1576865803,1875895817,1115414327,1326458653,1577434068,1876571664,1115816187,1326936549,1578002385,1877247571,1116218084,1327414487,1578570753, 1877923539,1116620017,1327892469,1579139172,1878599568,1117021986,1328370493,1579707642,1879275657,1117423991,1328848561,1580276163,1879951808,1117826033,1329326672,1580844736, 1880628019,1118228110,1329804825,1581413360,1881304291,1118630224,1330283022,1581982034,1881980624,1119032374,1330761261,1582550760,1882657017,1119434560,1331239544,1583119537, 1883333472,1119836782,1331717869,1583688365,1884009987,1120239041,1332196238,1584257244,1884686563,1120641335,1332674649,1584826174,1885363199,1121043665,1333153103,1585395156, 1886039897,1121446032,1333631600,1585964188,1886716655,1121848435,1334110141,1586533271,1887393473,1122250874,1334588724,1587102406,1888070353,1122653348,1335067350,1587671591, 1888747293,1123055859,1335546019,1588240828,1889424293,1123458406,1336024730,1588810115,1890101355,1123860989,1336503485,1589379454,1890778477,1124263609,1336982282,1589948843, 1891455659,1124666264,1337461123,1590518283,1892132902,1125068955,1337940006,1591087775,1892810206,1125471682,1338418932,1591657317,1893487571,1125874446,1338897901,1592226910, 1894164996,1126277245,1339376913,1592796555,1894842481,1126680080,1339855968,1593366250,1895520027,1127082952,1340335065,1593935996,1896197634,1127485859,1340814205,1594505793, 1896875301,1127888802,1341293389,1595075641,1897553029,1128291782,1341772614,1595645540,1898230817,1128694797,1342251883,1596215490,1898908666,1129097848,1342731195,1596785490, 1899586575,1129500935,1343210549,1597355542,1900264545,1129904059,1343689946,1597925644,1900942575,1130307218,1344169386,1598495797,1901620666,1130710413,1344648868,1599066001, 1902298817,1131113644,1345128394,1599636256,1902977029,1131516911,1345607962,1600206562,1903655301,1131920214,1346087572,1600776918,1904333633,1132323553,1346567226,1601347326, 1905012026,1132726928,1347046922,1601917784,1905690480,1133130339,1347526661,1602488293,1906368993,1133533785,1348006443,1603058853,1907047567,1133937268,1348486267,1603629463, 1907726202,1134340786,1348966134,1604200124,1908404897,1134744341,1349446044,1604770836,1909083652,1135147931,1349925996,1605341599,1909762467,1135551557,1350405991,1605912413, 1910441343,1135955219,1350886029,1606483277,1911120279,1136358917,1351366109,1607054192,1911799275,1136762650,1351846232,1607625157,1912478332,1137166420,1352326398,1608196174, 1913157449,1137570225,1352806606,1608767241,1913836626,1137974067,1353286857,1609338359,1914515864,1138377944,1353767150,1609909527,1915195162,1138781856,1354247486,1610480746, 1915874520,1139185805,1354727865,1611052016,1916553938,1139589790,1355208286,1611623336,1917233416,1139993810,1355688750,1612194707,1917912955,1140397866,1356169256,1612766129, 1918592554,1140801958,1356649805,1613337601,1919272213,1141206086,1357130397,1613909124,1919951932,1141610249,1357611031,1614480697,1920631712,1142014448,1358091707,1615052321, 1921311551,1142418683,1358572427,1615623996,1921991451,1142822954,1359053188,1616195721,1922671411,1143227261,1359533992,1616767497,1923351431,1143631603,1360014839,1617339323, 1924031511,1144035981,1360495728,1617911200,1924711651,1144440395,1360976660,1618483128,1925391851,1144844844,1361457634,1619055106,1926072111,1145249329,1361938651,1619627134, 1926752432,1145653850,1362419710,1620199213,1927432812,1146058407,1362900812,1620771342,1928113253,1146462999,1363381956,1621343522,1928793753,1146867627,1363863142,1621915753, 1929474314,1147272291,1364344371,1622488034,1930154935,1147676991,1364825643,1623060365,1930835615,1148081726,1365306957,1623632747,1931516356,1148486496,1365788313,1624205180, 1932197156,1148891303,1366269712,1624777662,1932878017,1149296145,1366751153,1625350195,1933558937,1149701023,1367232636,1625922779,1934239918,1150105936,1367714162,1626495413, 1934920958,1150510885,1368195731,1627068098,1935602059,1150915870,1368677341,1627640832,1936283219,1151320890,1369158994,1628213618,1936964439,1151725946,1369640690,1628786453, 1937645719,1152131038,1370122428,1629359339,1938327059,1152536165,1370604208,1629932276,1939008459,1152941328,1371086030,1630505262,1939689919,1153346526,1371567895,1631078299, 1940371438,1153751760,1372049802,1631651387,1941053018,1154157030,1372531751,1632224524,1941734657,1154562335,1373013743,1632797712,1942416356,1154967675,1373495777,1633370951, 1943098115,1155373052,1373977854,1633944239,1943779934,1155778464,1374459972,1634517578,1944461812,1156183911,1374942133,1635090967,1945143750,1156589394,1375424336,1635664407, 1945825749,1156994912,1375906582,1636237897,1946507806,1157400466,1376388870,1636811437,1947189924,1157806056,1376871199,1637385027,1947872101,1158211681,1377353572,1637958667, 1948554338,1158617342,1377835986,1638532358,1949236635,1159023038,1378318443,1639106099,1949918992,1159428769,1378800942,1639679890,1950601408,1159834536,1379283483,1640253731, 1951283884,1160240339,1379766066,1640827623,1951966419,1160646177,1380248692,1641401565,1952649015,1161052051,1380731359,1641975557,1953331669,1161457960,1381214069,1642549599, 1954014384,1161863904,1381696821,1643123691,1954697158,1162269884,1382179616,1643697833,1955379992,1162675899,1382662452,1644272026,1956062885,1163081950,1383145331,1644846268, 1956745838,1163488037,1383628251,1645420561,1957428851,1163894158,1384111214,1645994904,1958111923,1164300316,1384594219,1646569297,1958795055,1164706508,1385077266,1647143740, 1959478246,1165112736,1385560356,1647718233,1960161497,1165519000,1386043487,1648292776,1960844808,1165925298,1386526660,1648867370,1961528178,1166331633,1387009876,1649442013, 1962211607,1166738002,1387493134,1650016707,1962895096,1167144407,1387976433,1650591450,1963578645,1167550848,1388459775,1651166244,1964262253,1167957323,1388943159,1651741087, 1964945921,1168363835,1389426585,1652315981,1965629648,1168770381,1389910053,1652890924,1966313434,1169176963,1390393563,1653465918,1966997280,1169583580,1390877115,1654040961, 1967681185,1169990233,1391360709,1654616055,1968365150,1170396921,1391844345,1655191199,1969049174,1170803644,1392328024,1655766392,1969733258,1171210402,1392811744,1656341635, 1970417401,1171617196,1393295506,1656916929,1971101603,1172024025,1393779310,1657492272,1971785865,1172430890,1394263156,1658067666,1972470186,1172837790,1394747044,1658643109, 1973154567,1173244725,1395230974,1659218602,1973839007,1173651695,1395714946,1659794145,1974523506,1174058701,1396198961,1660369738,1975208064,1174465742,1396683016,1660945381, 1975892682,1174872818,1397167114,1661521073,1976577359,1175279929,1397651254,1662096816,1977262096,1175687076,1398135436,1662672608,1977946891,1176094258,1398619660,1663248451, 1978631746,1176501475,1399103925,1663824343,1979316661,1176908728,1399588233,1664400285,1980001634,1177316016,1400072582,1664976276,1980686667,1177723339,1400556974,1665552318, 1981371759,1178130697,1401041407,1666128409,1982056910,1178538090,1401525882,1666704551,1982742121,1178945519,1402010399,1667280742,1983427390,1179352982,1402494958,1667856983, 1984112719,1179760481,1402979558,1668433273,1984798107,1180168016,1403464201,1669009613,1985483555,1180575585,1403948885,1669586004,1986169061,1180983189,1404433612,1670162443, 1986854626,1181390829,1404918380,1670738933,1987540251,1181798504,1405403189,1671315472,1988225935,1182206214,1405888041,1671892061,1988911678,1182613959,1406372935,1672468700, 1989597480,1183021740,1406857870,1673045389,1990283341,1183429555,1407342847,1673622127,1990969261,1183837406,1407827866,1674198915,1991655241,1184245291,1408312926,1674775752, 1992341279,1184653212,1408798029,1675352640,1993027377,1185061168,1409283173,1675929576,1993713533,1185469159,1409768359,1676506563,1994399749,1185877186,1410253587,1677083599, 1995086023,1186285247,1410738856,1677660685,1995772357,1186693343,1411224167,1678237820,1996458749,1187101475,1411709520,1678815006,1997145201,1187509641,1412194915,1679392240, 1997831712,1187917843,1412680351,1679969525,1998518281,1188326080,1413165829,1680546859,1999204910,1188734352,1413651349,1681124242,1999891597,1189142658,1414136910,1681701675, 2000578344,1189551000,1414622513,1682279158,2001265149,1189959377,1415108158,1682856690,2001952014,1190367789,1415593844,1683434272,2002638937,1190776236,1416079573,1684011903, 2003325919,1191184718,1416565342,1684589584,2004012960,1191593235,1417051154,1685167314,2004700060,1192001787,1417537007,1685745094,2005387219,1192410375,1418022901,1686322924, 2006074437,1192818997,1418508838,1686900803,2006761713,1193227654,1418994816,1687478731,2007449049,1193636346,1419480835,1688056709,2008136443,1194045073,1419966896,1688634736, 2008823896,1194453835,1420452999,1689212813,2009511408,1194862632,1420939143,1689790939,2010198979,1195271464,1421425329,1690369115,2010886608,1195680331,1421911557,1690947340, 2011574297,1196089233,1422397826,1691525615,2012262044,1196498170,1422884137,1692103939,2012949849,1196907142,1423370489,1692682313,2013637714,1197316148,1423856883,1693260735, 2014325637,1197725190,1424343318,1693839208,2015013620,1198134267,1424829795,1694417729,2015701660,1198543378,1425316313,1694996300,2016389760,1198952525,1425802873,1695574921, 2017077918,1199361706,1426289474,1696153591,2017766135,1199770922,1426776117,1696732310,2018454411,1200180173,1427262801,1697311078,2019142745,1200589459,1427749527,1697889896, 2019831138,1200998780,1428236295,1698468764,2020519590,1201408136,1428723104,1699047680,2021208100,1201817527,1429209954,1699626646,2021896669,1202226952,1429696846,1700205661, 2022585297,1202636413,1430183779,1700784726,2023273983,1203045908,1430670754,1701363839,2023962728,1203455438,1431157770,1701943002,2024651531,1203865003,1431644827,1702522215, 2025340393,1204274603,1432131926,1703101476,2026029314,1204684238,1432619067,1703680787,2026718293,1205093907,1433106248,1704260147,2027407331,1205503611,1433593472,1704839557, 2028096427,1205913350,1434080736,1705419015,2028785582,1206323124,1434568042,1705998523,2029474795,1206732933,1435055390,1706578080,2030164067,1207142776,1435542779,1707157686, 2030853397,1207552655,1436030209,1707737342,2031542786,1207962568,1436517680,1708317046,2032232233,1208372516,1437005193,1708896800,2032921739,1208782498,1437492747,1709476603, 2033611304,1209192516,1437980343,1710056455,2034300926,1209602568,1438467980,1710636356,2034990607,1210012655,1438955658,1711216307,2035680347,1210422776,1439443378,1711796306, 2036370145,1210832933,1439931139,1712376355,2037060002,1211243124,1440418941,1712956453,2037749917,1211653350,1440906784,1713536600,2038439890,1212063610,1441394669,1714116796, 2039129922,1212473906,1441882595,1714697041,2039820012,1212884236,1442370563,1715277336,2040510160,1213294600,1442858571,1715857679,2041200367,1213705000,1443346621,1716438071, 2041890632,1214115434,1443834712,1717018513,2042580956,1214525903,1444322845,1717599003,2043271337,1214936406,1444811018,1718179543,2043961778,1215346944,1445299233,1718760132, 2044652276,1215757517,1445787490,1719340769,2045342833,1216168125,1446275787,1719921456,2046033448,1216578767,1446764126,1720502192,2046724121,1216989444,1447252505,1721082977, 2047414853,1217400155,1447740926,1721663810,2048105643,1217810901,1448229389,1722244693,2048796491,1218221682,1448717892,1722825625,2049487397,1218632497,1449206436,1723406605, 2050178362,1219043347,1449695022,1723987635,2050869385,1219454232,1450183649,1724568714,2051560466,1219865151,1450672317,1725149841,2052251605,1220276105,1451161027,1725731018, 2052942802,1220687094,1451649777,1726312243,2053634058,1221098117,1452138568,1726893518,2054325372,1221509174,1452627401,1727474841,2055016744,1221920267,1453116275,1728056213, 2055708174,1222331393,1453605190,1728637634,2056399662,1222742555,1454094146,1729219104,2057091208,1223153751,1454583143,1729800623,2057782813,1223564981,1455072181,1730382191, 2058474476,1223976246,1455561261,1730963807,2059166196,1224387546,1456050381,1731545473,2059857975,1224798880,1456539543,1732127187,2060549812,1225210249,1457028745,1732708950, 2061241707,1225621652,1457517989,1733290763,2061933660,1226033090,1458007274,1733872623,2062625671,1226444562,1458496599,1734454533,2063317741,1226856069,1458985966,1735036492, 2064009868,1227267610,1459475374,1735618499,2064702053,1227679186,1459964823,1736200555,2065394296,1228090796,1460454313,1736782660,2066086597,1228502441,1460943844,1737364813, 2066778957,1228914120,1461433416,1737947016,2067471374,1229325834,1461923028,1738529267,2068163849,1229737582,1462412682,1739111567,2068856382,1230149365,1462902377,1739693916, 2069548974,1230561182,1463392113,1740276313,2070241623,1230973034,1463881890,1740858759,2070934330,1231384920,1464371708,1741441254,2071627095,1231796840,1464861567,1742023798, 2072319918,1232208795,1465351467,1742606390,2073012798,1232620785,1465841407,1743189031,2073705737,1233032809,1466331389,1743771721,2074398734,1233444867,1466821412,1744354459, 2075091788,1233856959,1467311475,1744937246,2075784901,1234269087,1467801580,1745520082,2076478071,1234681248,1468291725,1746102966,2077171299,1235093444,1468781911,1746685899, 2077864585,1235505674,1469272138,1747268881,2078557929,1235917939,1469762406,1747851911,2079251330,1236330238,1470252715,1748434990,2079944790,1236742571,1470743065,1749018118, 2080638307,1237154939,1471233456,1749601294,2081331882,1237567341,1471723888,1750184518,2082025515,1237979778,1472214360,1750767792,2082719205,1238392249,1472704873,1751351114, 2083412954,1238804754,1473195427,1751934484,2084106760,1239217293,1473686022,1752517903,2084800623,1239629867,1474176658,1753101371,2085494545,1240042476,1474667335,1753684887, 2086188524,1240455118,1475158052,1754268452,2086882561,1240867795,1475648811,1754852065,2087576656,1241280506,1476139610,1755435727,2088270808,1241693252,1476630450,1756019437, 2088965019,1242106032,1477121330,1756603196,2089659286,1242518846,1477612252,1757187003,2090353612,1242931694,1478103214,1757770859,2091047995,1243344577,1478594217,1758354763, 2091742436,1243757494,1479085261,1758938716,2092436934,1244170445,1479576345,1759522717,2093131490,1244583430,1480067471,1760106767,2093826104,1244996450,1480558637,1760690865, 2094520775,1245409504,1481049843,1761275012,2095215504,1245822592,1481541091,1761859207,2095910291,1246235715,1482032379,1762443450,2096605135,1246648872,1482523708,1763027742, 2097300036,1247062063,1483015078,1763612082,2097994995,1247475288,1483506488,1764196471,2098690012,1247888547,1483997939,1764780908,2099385087,1248301841,1484489431,1765365394, 2100080218,1248715169,1484980963,1765949927,2100775408,1249128531,1485472537,1766534510,2101470655,1249541927,1485964150,1767119140,2102165959,1249955358,1486455805,1767703819, 2102861321,1250368822,1486947500,1768288547,2103556740,1250782321,1487439236,1768873322,2104252217,1251195854,1487931012,1769458146,2104947752,1251609421,1488422829,1770043019, 2105643343,1252023023,1488914687,1770627939,2106338993,1252436658,1489406585,1771212908,2107034699,1252850328,1489898524,1771797925,2107730463,1253264032,1490390504,1772382991, 2108426285,1253677770,1490882524,1772968105,2109122164,1254091542,1491374584,1773553267,2109818100,1254505348,1491866686,1774138477,2110514094,1254919189,1492358828,1774723736, 2111210145,1255333063,1492851010,1775309043,2111906254,1255746972,1493343233,1775894398,2112602420,1256160914,1493835497,1776479802,2113298643,1256574891,1494327801,1777065253, 2113994924,1256988902,1494820146,1777650753,2114691261,1257402947,1495312531,1778236301,2115387657,1257817026,1495804957,1778821897,2116084109,1258231139,1496297423,1779407542, 2116780619,1258645287,1496789930,1779993235,2117477186,1259059468,1497282477,1780578975,2118173811,1259473683,1497775065,1781164764,2118870493,1259887933,1498267694,1781750602, 2119567232,1260302216,1498760363,1782336487,2120264028,1260716534,1499253072,1782922420,2120960881,1261130885,1499745822,1783508402,2121657792,1261545271,1500238612,1784094432, 2122354760,1261959691,1500731443,1784680510,2123051786,1262374144,1501224314,1785266636,2123748868,1262788632,1501717226,1785852810,2124446008,1263203154,1502210178,1786439032, 2125143205,1263617710,1502703171,1787025303,2125840459,1264032299,1503196204,1787611621,2126537770,1264446923,1503689277,1788197988,2127235138,1264861581,1504182391,1788784402, 2127932564,1265276273,1504675546,1789370865,2128630046,1265690998,1505168740,1789957375,2129327586,1266105758,1505661976,1790543934,2130025183,1266520552,1506155251,1791130541, 2130722837,1266935379,1506648567,1791717196,2131420549,1267350241,1507141923,1792303899,2132118317,1267765136,1507635320,1792890650,2132816142,1268180066,1508128757,1793477448, 2133514025,1268595029,1508622235,1794064295,2134211964,1269010026,1509115753,1794651190,2134909961,1269425058,1509609311,1795238133,2135608015,1269840123,1510102909,1795825124, 2136306125,1270255222,1510596548,1796412163,2137004293,1270670355,1511090227,1796999250,2137702518,1271085522,1511583947,1797586384,2138400800,1271500723,1512077706,1798173567, 2139099139,1271915958,1512571507,1798760798,2139797535,1272331226,1513065347,1799348076,2140495987,1272746529,1513559228,1799935403,2141194497,1273161865,1514053149,1800522777, 2141893064,1273577236,1514547110,1801110199,2142591688,1273992640,1515041112,1801697669,2143290368,1274408078,1515535154,1802285188,2143989106,1274823550,1516029236,1802872754, 2144687901,1275239055,1516523358,1803460367,2145386752,1275654595,1517017521,1804048029,2146085660,1276070168,1517511724,1804635739,2146784626,1276485776,1518005967,1805223496, 1073741824,1276901417,1518500250,1805811301,1074091364,1277317092,1518994574,1806399155,1074440932,1277732800,1519488937,1806987055,1074790528,1278148543,1519983341,1807575004, 1075140153,1278564319,1520477786,1808163001,1075489806,1278980130,1520972270,1808751045,1075839488,1279395974,1521466795,1809339137,1076189198,1279811851,1521961359,1809927277, 1076538936,1280227763,1522455964,1810515465,1076888703,1280643708,1522950610,1811103701,1077238499,1281059687,1523445295,1811691984,1077588323,1281475700,1523940020,1812280315, 1077938175,1281891747,1524434786,1812868694,1078288055,1282307827,1524929592,1813457120,1078637964,1282723941,1525424438,1814045595,1078987901,1283140089,1525919324,1814634117, 1079337867,1283556271,1526414250,1815222687,1079687861,1283972486,1526909216,1815811304,1080037884,1284388736,1527404223,1816399969,1080387934,1284805018,1527899269,1816988682, 1080738013,1285221335,1528394356,1817577443,1081088121,1285637685,1528889483,1818166251,1081438257,1286054069,1529384649,1818755107,1081788421,1286470487,1529879856,1819344010, 1082138613,1286886938,1530375103,1819932962,1082488834,1287303424,1530870390,1820521960,1082839083,1287719942,1531365718,1821111007,1083189361,1288136495,1531861085,1821700101, 1083539667,1288553081,1532356492,1822289243,1083890001,1288969701,1532851939,1822878432,1084240363,1289386354,1533347427,1823467669,1084590754,1289803041,1533842954,1824056954, 1084941173,1290219762,1534338521,1824646286,1085291620,1290636517,1534834129,1825235666,1085642096,1291053305,1535329776,1825825094,1085992600,1291470127,1535825463,1826414569, 1086343132,1291886982,1536321191,1827004091,1086693693,1292303871,1536816958,1827593661,1087044281,1292720794,1537312766,1828183279,1087394898,1293137750,1537808613,1828772944, 1087745544,1293554740,1538304500,1829362657,1088096217,1293971763,1538800428,1829952417,1088446919,1294388820,1539296395,1830542225,1088797649,1294805911,1539792402,1831132080, 1089148407,1295223035,1540288449,1831721983,1089499194,1295640193,1540784536,1832311933,1089850009,1296057385,1541280663,1832901931,1090200852,1296474610,1541776830,1833491976, 1090551723,1296891868,1542273037,1834082069,1090902623,1297309161,1542769284,1834672209,1091253550,1297726486,1543265571,1835262397,1091604506,1298143846,1543761897,1835852632, 1091955490,1298561238,1544258264,1836442915,1092306503,1298978665,1544754670,1837033245,1092657543,1299396125,1545251117,1837623622,1093008612,1299813618,1545747603,1838214047, 1093359709,1300231145,1546244129,1838804519,1093710834,1300648705,1546740695,1839395039,1094061987,1301066299,1547237300,1839985606,1094413169,1301483927,1547733946,1840576221, 1094764378,1301901588,1548230631,1841166883,1095115616,1302319282,1548727357,1841757592,1095466882,1302737010,1549224122,1842348348,1095818176,1303154772,1549720927,1842939152, 1096169499,1303572567,1550217772,1843530004,1096520849,1303990395,1550714656,1844120902,1096872228,1304408257,1551211581,1844711848,1097223634,1304826153,1551708545,1845302842, 1097575069,1305244082,1552205549,1845893882,1097926532,1305662044,1552702592,1846484970,1098278023,1306080040,1553199676,1847076106,1098629543,1306498069,1553696799,1847667288, 1098981090,1306916132,1554193962,1848258518,1099332666,1307334228,1554691165,1848849795,1099684269,1307752357,1555188408,1849441120,1100035901,1308170520,1555685690,1850032491, 1100387561,1308588717,1556183012,1850623910,1100739249,1309006946,1556680374,1851215377,1101090965,1309425209,1557177776,1851806890,1101442709,1309843506,1557675217,1852398451, 1101794481,1310261836,1558172698,1852990059,1102146281,1310680199,1558670219,1853581714,1102498110,1311098596,1559167779,1854173416,1102849966,1311517026,1559665379,1854765166, 1103201851,1311935490,1560163019,1855356963,1103553763,1312353987,1560660699,1855948807,1103905704,1312772517,1561158418,1856540698,1104257672,1313191081,1561656177,1857132636, 1104609669,1313609678,1562153975,1857724622,1104961694,1314028308,1562651813,1858316655,1105313747,1314446972,1563149691,1858908734,1105665827,1314865669,1563647609,1859500861, 1106017936,1315284399,1564145566,1860093036,1106370073,1315703163,1564643562,1860685257,1106722238,1316121960,1565141599,1861277525,1107074431,1316540790,1565639675,1861869841, 1107426652,1316959654,1566137790,1862462204,1107778901,1317378551,1566635946,1863054613,1108131178,1317797481,1567134141,1863647070,1108483483,1318216445,1567632375,1864239574, 1108835816,1318635441,1568130649,1864832125,1109188177,1319054472,1568628963,1865424723,1109540566,1319473535,1569127316,1866017368,1109892982,1319892632,1569625709,1866610061, 1110245427,1320311762,1570124141,1867202800,1110597900,1320730925,1570622613,1867795586,1110950401,1321150121,1571121124,1868388419,1111302930,1321569351,1571619675,1868981300, 1111655487,1321988614,1572118266,1869574227,1112008071,1322407910,1572616896,1870167202,1112360684,1322827240,1573115565,1870760223,1112713324,1323246602,1573614275,1871353292, 1113065993,1323665998,1574113023,1871946407,1113418689,1324085428,1574611811,1872539569,1113771414,1324504890,1575110639,1873132779,1114124166,1324924385,1575609506,1873726035, 1114476946,1325343914,1576108413,1874319338,1114829755,1325763476,1576607359,1874912689,1115182591,1326183071,1577106344,1875506086,1115535455,1326602700,1577605369,1876099530, 1115888347,1327022361,1578104434,1876693021,1116241267,1327442056,1578603538,1877286559,1116594214,1327861784,1579102681,1877880144,1116947190,1328281545,1579601864,1878473776, 1117300193,1328701339,1580101087,1879067455,1117653225,1329121167,1580600348,1879661180,1118006284,1329541028,1581099650,1880254953,1118359371,1329960921,1581598990,1880848772, 1118712486,1330380848,1582098370,1881442639,1119065629,1330800808,1582597790,1882036552,1119418800,1331220801,1583097249,1882630512,1119771998,1331640828,1583596747,1883224519, 1120125225,1332060887,1584096284,1883818572,1120478479,1332480980,1584595861,1884412673,1120831761,1332901105,1585095478,1885006820,1121185071,1333321264,1585595134,1885601014, 1121538409,1333741456,1586094829,1886195255,1121891775,1334161681,1586594563,1886789543,1122245168,1334581939,1587094337,1887383878,1122598589,1335002230,1587594150,1887978259, 1122952039,1335422554,1588094003,1888572687,1123305515,1335842911,1588593895,1889167162,1123659020,1336263302,1589093826,1889761684,1124012553,1336683725,1589593796,1890356253, 1124366113,1337104182,1590093806,1890950868,1124719701,1337524671,1590593855,1891545530,1125073317,1337945194,1591093944,1892140239,1125426961,1338365749,1591594072,1892734994, 1125780632,1338786338,1592094239,1893329796,1126134332,1339206960,1592594445,1893924645,1126488059,1339627615,1593094691,1894519541,1126841814,1340048302,1593594976,1895114483, 1127195596,1340469023,1594095300,1895709472,1127549407,1340889777,1594595663,1896304508,1127903245,1341310564,1595096066,1896899590,1128257111,1341731383,1595596508,1897494720, 1128611004,1342152236,1596096989,1898089895,1128964926,1342573122,1596597509,1898685118,1129318875,1342994041,1597098069,1899280387,1129672852,1343414993,1597598668,1899875703, 1130026856,1343835977,1598099306,1900471065,1130380888,1344256995,1598599983,1901066474,1130734948,1344678046,1599100700,1901661930,1131089036,1345099130,1599601455,1902257432, 1131443152,1345520246,1600102250,1902852981,1131797295,1345941396,1600603084,1903448576,1132151466,1346362578,1601103957,1904044218,1132505664,1346783794,1601604870,1904639907, 1132859891,1347205042,1602105821,1905235642,1133214144,1347626323,1602606812,1905831424,1133568426,1348047638,1603107842,1906427252,1133922735,1348468985,1603608911,1907023127, 1134277072,1348890365,1604110019,1907619048,1134631437,1349311778,1604611167,1908215016,1134985830,1349733224,1605112353,1908811031,1135340250,1350154703,1605613579,1909407092, 1135694697,1350576214,1606114844,1910003199,1136049173,1350997759,1606616147,1910599354,1136403676,1351419337,1607117490,1911195554,1136758206,1351840947,1607618872,1911791801, 1137112765,1352262590,1608120294,1912388095,1137467350,1352684266,1608621754,1912984435,1137821964,1353105975,1609123253,1913580821,1138176605,1353527717,1609624791,1914177255, 1138531274,1353949492,1610126369,1914773734,1138885970,1354371299,1610627985,1915370260,1139240695,1354793140,1611129641,1915966832,1139595446,1355215013,1611631336,1916563451, 1139950226,1355636919,1612133069,1917160116,1140305032,1356058858,1612634842,1917756828,1140659867,1356480830,1613136654,1918353586,1141014729,1356902834,1613638505,1918950391, 1141369619,1357324871,1614140395,1919547242,1141724536,1357746942,1614642323,1920144139,1142079481,1358169045,1615144291,1920741083,1142434453,1358591180,1615646298,1921338073, 1142789453,1359013349,1616148344,1921935109,1143144481,1359435550,1616650429,1922532192,1143499536,1359857784,1617152553,1923129322,1143854619,1360280051,1617654715,1923726497, 1144209729,1360702351,1618156917,1924323719,1144564867,1361124683,1618659158,1924920987,1144920032,1361547049,1619161438,1925518302,1145275225,1361969447,1619663756,1926115663, 1145630446,1362391877,1620166114,1926713070,1145985694,1362814341,1620668510,1927310524,1146340969,1363236837,1621170946,1927908024,1146696272,1363659366,1621673420,1928505570, 1147051603,1364081928,1622175934,1929103162,1147406961,1364504522,1622678486,1929700801,1147762347,1364927149,1623181077,1930298486,1148117760,1365349809,1623683707,1930896217, 1148473201,1365772502,1624186376,1931493995,1148828669,1366195227,1624689084,1932091819,1149184164,1366617985,1625191831,1932689689,1149539688,1367040775,1625694617,1933287605, 1149895238,1367463599,1626197441,1933885567,1150250816,1367886455,1626700305,1934483576,1150606422,1368309344,1627203207,1935081631,1150962055,1368732265,1627706148,1935679732, 1151317716,1369155219,1628209128,1936277880,1151673404,1369578206,1628712147,1936876073,1152029119,1370001225,1629215205,1937474313,1152384862,1370424277,1629718301,1938072599, 1152740633,1370847362,1630221436,1938670931,1153096430,1371270479,1630724611,1939269310,1153452256,1371693629,1631227824,1939867734,1153808108,1372116812,1631731075,1940466205, 1154163989,1372540027,1632234366,1941064721,1154519896,1372963275,1632737695,1941663284,1154875831,1373386556,1633241064,1942261893,1155231794,1373809869,1633744471,1942860549, 1155587784,1374233215,1634247916,1943459250,1155943801,1374656593,1634751401,1944057997,1156299846,1375080004,1635254924,1944656791,1156655918,1375503447,1635758486,1945255630, 1157012018,1375926924,1636262087,1945854516,1157368145,1376350432,1636765727,1946453448,1157724299,1376773974,1637269405,1947052426,1158080481,1377197547,1637773122,1947651450, 1158436690,1377621154,1638276878,1948250520,1158792926,1378044793,1638780673,1948849636,1159149190,1378468465,1639284506,1949448798,1159505482,1378892169,1639788378,1950048006, 1159861800,1379315905,1640292288,1950647260,1160218146,1379739675,1640796238,1951246560,1160574520,1380163476,1641300226,1951845907,1160930920,1380587311,1641804253,1952445299, 1161287349,1381011178,1642308318,1953044737,1161643804,1381435077,1642812422,1953644221,1162000287,1381859009,1643316565,1954243752,1162356797,1382282973,1643820747,1954843328, 1162713335,1382706970,1644324967,1955442950,1163069899,1383131000,1644829226,1956042618,1163426492,1383555061,1645333523,1956642332,1163783111,1383979156,1645837859,1957242092, 1164139758,1384403283,1646342234,1957841898,1164496432,1384827442,1646846647,1958441750,1164853133,1385251634,1647351099,1959041648,1165209862,1385675858,1647855590,1959641592, 1165566618,1386100115,1648360119,1960241582,1165923402,1386524405,1648864687,1960841618,1166280212,1386948726,1649369294,1961441699,1166637050,1387373081,1649873939,1962041827, 1166993915,1387797467,1650378622,1962642000,1167350808,1388221886,1650883345,1963242219,1167707728,1388646338,1651388105,1963842484,1168064675,1389070822,1651892905,1964442795, 1168421649,1389495338,1652397743,1965043152,1168778651,1389919887,1652902619,1965643555,1169135680,1390344469,1653407534,1966244004,1169492736,1390769082,1653912488,1966844498, 1169849819,1391193728,1654417480,1967445038,1170206930,1391618407,1654922511,1968045625,1170564068,1392043118,1655427580,1968646257,1170921233,1392467861,1655932688,1969246934, 1171278425,1392892637,1656437834,1969847658,1171635645,1393317445,1656943019,1970448427,1171992892,1393742285,1657448242,1971049242,1172350166,1394167158,1657953504,1971650103, 1172707467,1394592063,1658458804,1972251010,1173064795,1395017001,1658964143,1972851963,1173422151,1395441971,1659469520,1973452961,1173779534,1395866973,1659974936,1974054005, 1174136944,1396292008,1660480390,1974655095,1174494381,1396717075,1660985883,1975256230,1174851846,1397142174,1661491414,1975857411,1175209338,1397567306,1661996984,1976458638, 1175566857,1397992470,1662502592,1977059911,1175924403,1398417666,1663008239,1977661230,1176281976,1398842895,1663513924,1978262594,1176639576,1399268156,1664019647,1978864004, 1176997204,1399693449,1664525409,1979465459,1177354859,1400118775,1665031209,1980066960,1177712541,1400544133,1665537048,1980668507,1178070250,1400969523,1666042925,1981270100, 1178427986,1401394946,1666548840,1981871738,1178785750,1401820400,1667054794,1982473422,1179143540,1402245888,1667560786,1983075152,1179501358,1402671407,1668066817,1983676927, 1179859203,1403096959,1668572886,1984278748,1180217075,1403522542,1669078994,1984880615,1180574974,1403948159,1669585139,1985482527,1180932900,1404373807,1670091323,1986084485, 1181290853,1404799488,1670597546,1986686488,1181648834,1405225201,1671103807,1987288537,1182006841,1405650946,1671610106,1987890632,1182364876,1406076723,1672116444,1988492772, 1182722938,1406502533,1672622819,1989094958,1183081027,1406928375,1673129234,1989697189,1183439143,1407354249,1673635686,1990299466,1183797286,1407780155,1674142177,1990901788, 1184155456,1408206094,1674648706,1991504156,1184513654,1408632065,1675155274,1992106570,1184871878,1409058068,1675661879,1992709029,1185230129,1409484103,1676168523,1993311534, 1185588408,1409910170,1676675206,1993914084,1185946713,1410336270,1677181926,1994516680,1186305046,1410762401,1677688685,1995119321,1186663406,1411188565,1678195482,1995722008, 1187021793,1411614761,1678702318,1996324740,1187380206,1412040990,1679209192,1996927518,1187738647,1412467250,1679716104,1997530342,1188097115,1412893543,1680223054,1998133210, 1188455610,1413319867,1680730042,1998736125,1188814132,1413746224,1681237069,1999339084,1189172681,1414172613,1681744134,1999942089,1189531257,1414599035,1682251237,2000545140, 1189889860,1415025488,1682758378,2001148236,1190248490,1415451973,1683265558,2001751378,1190607148,1415878491,1683772776,2002354565,1190965832,1416305041,1684280031,2002957797, 1191324543,1416731623,1684787326,2003561075,1191683281,1417158237,1685294658,2004164398,1192042046,1417584883,1685802029,2004767767,1192400838,1418011561,1686309437,2005371181, 1192759657,1418438271,1686816884,2005974640,1193118504,1418865013,1687324369,2006578145,1193477377,1419291788,1687831892,2007181695,1193836277,1419718594,1688339454,2007785291, 1194195204,1420145433,1688847053,2008388932,1194554158,1420572304,1689354691,2008992618,1194913139,1420999206,1689862367,2009596350,1195272147,1421426141,1690370081,2010200127, 1195631182,1421853108,1690877833,2010803949,1195990244,1422280107,1691385623,2011407817,1196349332,1422707138,1691893451,2012011730,1196708448,1423134201,1692401318,2012615688, 1197067591,1423561296,1692909222,2013219692,1197426761,1423988423,1693417165,2013823741,1197785957,1424415583,1693925145,2014427835,1198145181,1424842774,1694433164,2015031975, 1198504431,1425269997,1694941221,2015636160,1198863709,1425697252,1695449316,2016240390,1199223013,1426124539,1695957449,2016844665,1199582344,1426551859,1696465620,2017448986, 1199941702,1426979210,1696973829,2018053352,1200301087,1427406593,1697482076,2018657763,1200660499,1427834008,1697990362,2019262219,1201019938,1428261455,1698498685,2019866721, 1201379404,1428688935,1699007046,2020471268,1201738896,1429116446,1699515446,2021075860,1202098416,1429543989,1700023883,2021680497,1202457962,1429971564,1700532358,2022285180, 1202817535,1430399171,1701040872,2022889908,1203177136,1430826810,1701549423,2023494681,1203536763,1431254481,1702058013,2024099499,1203896417,1431682184,1702566640,2024704362, 1204256097,1432109919,1703075305,2025309270,1204615805,1432537686,1703584009,2025914224,1204975539,1432965485,1704092750,2026519223,1205335301,1433393315,1704601529,2027124267, 1205695089,1433821178,1705110347,2027729356,1206054904,1434249073,1705619202,2028334490,1206414746,1434676999,1706128095,2028939670,1206774614,1435104958,1706637026,2029544894, 1207134510,1435532948,1707145995,2030150164,1207494432,1435960970,1707655002,2030755479,1207854381,1436389024,1708164047,2031360839,1208214357,1436817110,1708673130,2031966244, 1208574360,1437245228,1709182251,2032571694,1208934390,1437673378,1709691410,2033177189,1209294446,1438101559,1710200607,2033782729,1209654529,1438529773,1710709841,2034388315, 1210014639,1438958018,1711219114,2034993945,1210374776,1439386296,1711728424,2035599621,1210734940,1439814605,1712237772,2036205341,1211095130,1440242946,1712747158,2036811107, 1211455347,1440671318,1713256582,2037416917,1211815591,1441099723,1713766044,2038022773,1212175862,1441528160,1714275544,2038628674,1212536159,1441956628,1714785081,2039234620, 1212896484,1442385128,1715294657,2039840610,1213256835,1442813660,1715804270,2040446646,1213617212,1443242224,1716313921,2041052727,1213977617,1443670820,1716823610,2041658853, 1214338048,1444099447,1717333337,2042265023,1214698506,1444528106,1717843102,2042871239,1215058991,1444956797,1718352904,2043477500,1215419503,1445385520,1718862744,2044083805, 1215780041,1445814275,1719372623,2044690156,1216140606,1446243061,1719882538,2045296552,1216501197,1446671879,1720392492,2045902992,1216861816,1447100729,1720902484,2046509478, 1217222461,1447529611,1721412513,2047116008,1217583133,1447958525,1721922580,2047722583,1217943831,1448387470,1722432685,2048329204,1218304557,1448816447,1722942827,2048935869, 1218665309,1449245456,1723453008,2049542579,1219026087,1449674497,1723963226,2050149334,1219386893,1450103569,1724473482,2050756134,1219747725,1450532673,1724983775,2051362979, 1220108584,1450961809,1725494107,2051969868,1220469469,1451390976,1726004476,2052576803,1220830381,1451820176,1726514882,2053183782,1221191320,1452249407,1727025327,2053790807, 1221552285,1452678669,1727535809,2054397876,1221913278,1453107964,1728046329,2055004990,1222274296,1453537290,1728556887,2055612149,1222635342,1453966648,1729067482,2056219352, 1222996414,1454396037,1729578115,2056826601,1223357513,1454825458,1730088786,2057433894,1223718638,1455254911,1730599495,2058041232,1224079790,1455684396,1731110241,2058648615, 1224440969,1456113912,1731621025,2059256043,1224802174,1456543460,1732131846,2059863516,1225163406,1456973040,1732642705,2060471033,1225524665,1457402651,1733153602,2061078595, 1225885950,1457832294,1733664537,2061686202,1226247262,1458261969,1734175509,2062293854,1226608600,1458691675,1734686519,2062901550,1226969966,1459121413,1735197566,2063509291, 1227331357,1459551182,1735708651,2064117077,1227692776,1459980984,1736219774,2064724908,1228054220,1460410817,1736730934,2065332783,1228415692,1460840681,1737242132,2065940704, 1228777190,1461270577,1737753367,2066548668,1229138715,1461700505,1738264640,2067156678,1229500266,1462130464,1738775951,2067764732,1229861844,1462560455,1739287299,2068372831, 1230223448,1462990478,1739798685,2068980975,1230585079,1463420532,1740310109,2069589164,1230946737,1463850618,1740821570,2070197397,1231308421,1464280735,1741333068,2070805674, 1231670132,1464710884,1741844604,2071413997,1232031869,1465141064,1742356178,2072022364,1232393633,1465571276,1742867789,2072630776,1232755423,1466001520,1743379438,2073239232, 1233117240,1466431795,1743891125,2073847733,1233479083,1466862102,1744402849,2074456279,1233840953,1467292441,1744914610,2075064869,1234202850,1467722810,1745426409,2075673504, 1234564773,1468153212,1745938246,2076282184,1234926723,1468583645,1746450120,2076890908,1235288699,1469014109,1746962031,2077499677,1235650701,1469444606,1747473980,2078108490, 1236012730,1469875133,1747985967,2078717348,1236374786,1470305692,1748497991,2079326251,1236736868,1470736283,1749010052,2079935198,1237098977,1471166905,1749522151,2080544190, 1237461112,1471597559,1750034287,2081153226,1237823274,1472028244,1750546461,2081762307,1238185462,1472458961,1751058673,2082371432,1238547676,1472889709,1751570922,2082980602, 1238909918,1473320489,1752083208,2083589817,1239272185,1473751300,1752595532,2084199076,1239634479,1474182143,1753107893,2084808380,1239996800,1474613017,1753620292,2085417728, 1240359147,1475043923,1754132728,2086027120,1240721520,1475474860,1754645201,2086636557,1241083920,1475905828,1755157712,2087246039,1241446347,1476336828,1755670260,2087855565, 1241808799,1476767860,1756182846,2088465136,1242171279,1477198923,1756695469,2089074751,1242533785,1477630017,1757208130,2089684411,1242896317,1478061143,1757720828,2090294115, 1243258875,1478492300,1758233563,2090903863,1243621460,1478923489,1758746336,2091513656,1243984072,1479354709,1759259146,2092123493,1244346710,1479785961,1759771993,2092733375, 1244709374,1480217244,1760284878,2093343302,1245072065,1480648558,1760797800,2093953272,1245434782,1481079904,1761310760,2094563288,1245797526,1481511281,1761823757,2095173347, 1246160296,1481942690,1762336791,2095783451,1246523092,1482374130,1762849863,2096393599,1246885915,1482805602,1763362972,2097003792,1247248764,1483237105,1763876118,2097614029, 1247611640,1483668639,1764389302,2098224311,1247974542,1484100204,1764902522,2098834637,1248337470,1484531801,1765415781,2099445007,1248700425,1484963430,1765929076,2100055422, 1249063406,1485395089,1766442409,2100665881,1249426413,1485826781,1766955779,2101276384,1249789447,1486258503,1767469186,2101886932,1250152508,1486690257,1767982631,2102497524, 1250515594,1487122042,1768496113,2103108161,1250878707,1487553858,1769009632,2103718841,1251241846,1487985706,1769523189,2104329566,1251605012,1488417585,1770036783,2104940336, 1251968204,1488849496,1770550414,2105551150,1252331422,1489281438,1771064082,2106162007,1252694667,1489713411,1771577788,2106772910,1253057938,1490145415,1772091530,2107383856, 1253421235,1490577451,1772605310,2107994847,1253784559,1491009518,1773119128,2108605882,1254147909,1491441617,1773632982,2109216962,1254511285,1491873746,1774146874,2109828085, 1254874688,1492305907,1774660803,2110439253,1255238117,1492738100,1775174769,2111050466,1255601572,1493170323,1775688772,2111661722,1255965054,1493602578,1776202813,2112273023, 1256328562,1494034864,1776716890,2112884368,1256692096,1494467182,1777231005,2113495757,1257055656,1494899530,1777745157,2114107190,1257419243,1495331910,1778259347,2114718668, 1257782856,1495764321,1778773573,2115330189,1258146495,1496196764,1779287837,2115941755,1258510161,1496629237,1779802138,2116553365,1258873853,1497061742,1780316476,2117165020, 1259237571,1497494278,1780830851,2117776718,1259601315,1497926846,1781345263,2118388461,1259965086,1498359445,1781859712,2119000248,1260328883,1498792074,1782374199,2119612079, 1260692706,1499224735,1782888722,2120223954,1261056555,1499657428,1783403283,2120835873,1261420431,1500090151,1783917881,2121447837,1261784333,1500522906,1784432516,2122059844, 1262148261,1500955692,1784947188,2122671896,1262512215,1501388509,1785461897,2123283992,1262876196,1501821357,1785976644,2123896132,1263240203,1502254237,1786491427,2124508316, 1263604236,1502687148,1787006248,2125120544,1263968295,1503120089,1787521105,2125732816,1264332380,1503553062,1788036000,2126345133,1264696492,1503986067,1788550931,2126957493, 1265060630,1504419102,1789065900,2127569898,1265424794,1504852169,1789580906,2128182346,1265788984,1505285266,1790095949,2128794839,1266153201,1505718395,1790611029,2129407376, 1266517444,1506151555,1791126146,2130019956,1266881713,1506584746,1791641300,2130632581,1267246008,1507017969,1792156491,2131245250,1267610329,1507451222,1792671719,2131857963, 1267974676,1507884507,1793186984,2132470720,1268339050,1508317823,1793702286,2133083521,1268703450,1508751169,1794217625,2133696366,1269067876,1509184547,1794733002,2134309255, 1269432328,1509617956,1795248415,2134922188,1269796806,1510051397,1795763865,2135535165,1270161311,1510484868,1796279352,2136148186,1270525841,1510918370,1796794876,2136761251, 1270890398,1511351904,1797310437,2137374360,1271254981,1511785468,1797826035,2137987513,1271619590,1512219064,1798341670,2138600709,1271984225,1512652691,1798857342,2139213950, 1272348886,1513086348,1799373051,2139827235,1272713574,1513520037,1799888797,2140440564,1273078287,1513953757,1800404580,2141053936,1273443027,1514387508,1800920400,2141667353, 1273807793,1514821290,1801436257,2142280814,1274172585,1515255104,1801952150,2142894318,1274537403,1515688948,1802468081,2143507866,1274902247,1516122823,1802984048,2144121459, 1275267117,1516556729,1803500053,2144735095,1275632014,1516990667,1804016094,2145348775,1275996936,1517424635,1804532172,2145962499,1276361885,1517858634,1805048288,2146576267, 1276726859,1518292665,1805564440,2147190078,1277091860,1518726726,1806080629,1073901967,1277456887,1519160819,1806596854,1074208917,1277821940,1519594942,1807113117,1074515888, 1278187018,1520029097,1807629417,1074822882,1278552124,1520463282,1808145753,1075129897,1278917255,1520897499,1808662127,1075436935,1279282412,1521331746,1809178537,1075743994, 1279647595,1521766025,1809694984,1076051075,1280012804,1522200334,1810211468,1076358179,1280378040,1522634674,1810727988,1076665304,1280743301,1523069046,1811244546,1076972451, 1281108588,1523503448,1811761140,1077279619,1281473902,1523937882,1812277772,1077586810,1281839241,1524372346,1812794440,1077894023,1282204607,1524806841,1813311145,1078201257, 1282569998,1525241367,1813827886,1078508514,1282935416,1525675925,1814344665,1078815792,1283300859,1526110513,1814861480,1079123092,1283666329,1526545132,1815378332,1079430414, 1284031825,1526979782,1815895221,1079737758,1284397346,1527414463,1816412147,1080045124,1284762894,1527849175,1816929109,1080352512,1285128468,1528283917,1817446108,1080659922, 1285494067,1528718691,1817963144,1080967353,1285859693,1529153496,1818480217,1081274806,1286225345,1529588331,1818997326,1081582281,1286591022,1530023198,1819514473,1081889778, 1286956726,1530458095,1820031656,1082197297,1287322455,1530893023,1820548875,1082504838,1287688211,1531327982,1821066132,1082812401,1288053992,1531762972,1821583425,1083119985, 1288419800,1532197993,1822100755,1083427591,1288785633,1532633045,1822618122,1083735219,1289151493,1533068128,1823135525,1084042869,1289517378,1533503241,1823652965,1084350541, 1289883290,1533938386,1824170442,1084658234,1290249227,1534373561,1824687956,1084965950,1290615190,1534808767,1825205506,1085273687,1290981179,1535244004,1825723093,1085581446, 1291347195,1535679272,1826240716,1085889227,1291713236,1536114570,1826758377,1086197029,1292079303,1536549900,1827276074,1086504854,1292445396,1536985260,1827793807,1086812700, 1292811515,1537420651,1828311577,1087120568,1293177659,1537856073,1828829384,1087428458,1293543830,1538291526,1829347228,1087736370,1293910027,1538727010,1829865108,1088044303, 1294276249,1539162524,1830383025,1088352258,1294642498,1539598070,1830900979,1088660235,1295008772,1540033646,1831418969,1088968234,1295375072,1540469253,1831936996,1089276255, 1295741398,1540904890,1832455059,1089584297,1296107750,1541340559,1832973159,1089892361,1296474128,1541776258,1833491296,1090200447,1296840532,1542211988,1834009469,1090508555, 1297206962,1542647749,1834527679,1090816684,1297573418,1543083540,1835045925,1091124835,1297939899,1543519363,1835564208,1091433008,1298306406,1543955216,1836082528,1091741203, 1298672940,1544391100,1836600884,1092049419,1299039499,1544827014,1837119277,1092357658,1299406083,1545262960,1837637706,1092665918,1299772694,1545698936,1838156172,1092974199, 1300139331,1546134943,1838674675,1093282503,1300505993,1546570980,1839193214,1093590828,1300872682,1547007049,1839711789,1093899175,1301239396,1547443148,1840230402,1094207543, 1301606136,1547879278,1840749050,1094515934,1301972902,1548315438,1841267735,1094824346,1302339693,1548751630,1841786457,1095132780,1302706511,1549187852,1842305216,1095441235, 1303073354,1549624104,1842824010,1095749712,1303440223,1550060388,1843342842,1096058211,1303807118,1550496702,1843861709,1096366732,1304174039,1550933047,1844380614,1096675274, 1304540986,1551369422,1844899555,1096983838,1304907958,1551805828,1845418532,1097292424,1305274956,1552242265,1845937546,1097601032,1305641980,1552678733,1846456596,1097909661, 1306009030,1553115231,1846975683,1098218312,1306376106,1553551760,1847494806,1098526984,1306743207,1553988319,1848013966,1098835678,1307110334,1554424909,1848533162,1099144394, 1307477487,1554861530,1849052395,1099453132,1307844666,1555298182,1849571664,1099761891,1308211870,1555734864,1850090969,1100070672,1308579101,1556171577,1850610311,1100379475, 1308946357,1556608320,1851129690,1100688299,1309313638,1557045094,1851649105,1100997145,1309680946,1557481899,1852168556,1101306013,1310048279,1557918735,1852688044,1101614902, 1310415638,1558355601,1853207568,1101923813,1310783023,1558792497,1853727128,1102232745,1311150434,1559229424,1854246725,1102541699,1311517870,1559666382,1854766359,1102850675, 1311885332,1560103371,1855286029,1103159673,1312252820,1560540390,1855805735,1103468692,1312620333,1560977439,1856325477,1103777733,1312987872,1561414520,1856845256,1104086795, 1313355437,1561851630,1857365072,1104395879,1313723028,1562288772,1857884923,1104704985,1314090644,1562725944,1858404811,1105014112,1314458286,1563163146,1858924736,1105323261, 1314825954,1563600380,1859444696,1105632431,1315193648,1564037643,1859964694,1105941624,1315561367,1564474938,1860484727,1106250837,1315929112,1564912262,1861004797,1106560073, 1316296882,1565349618,1861524903,1106869330,1316664678,1565787004,1862045045,1107178608,1317032500,1566224420,1862565224,1107487908,1317400348,1566661867,1863085439,1107797230, 1317768221,1567099345,1863605691,1108106574,1318136120,1567536853,1864125979,1108415938,1318504045,1567974392,1864646303,1108725325,1318871995,1568411961,1865166663,1109034733, 1319239971,1568849560,1865687060,1109344163,1319607973,1569287191,1866207493,1109653614,1319976000,1569724851,1866727962,1109963087,1320344053,1570162543,1867248467,1110272581, 1320712132,1570600264,1867769009,1110582097,1321080236,1571038016,1868289587,1110891635,1321448366,1571475799,1868810201,1111201194,1321816522,1571913612,1869330852,1111510775, 1322184703,1572351456,1869851539,1111820377,1322552910,1572789330,1870372262,1112130001,1322921142,1573227235,1870893021,1112439646,1323289400,1573665170,1871413817,1112749313, 1323657684,1574103136,1871934649,1113059002,1324025993,1574541132,1872455517,1113368712,1324394328,1574979158,1872976421,1113678443,1324762689,1575417215,1873497362,1113988196, 1325131075,1575855303,1874018338,1114297971,1325499487,1576293421,1874539351,1114607767,1325867924,1576731569,1875060400,1114917585,1326236387,1577169748,1875581486,1115227424, 1326604876,1577607957,1876102607,1115537284,1326973390,1578046197,1876623765,1115847167,1327341930,1578484467,1877144959,1116157070,1327710495,1578922767,1877666189,1116466996, 1328079086,1579361098,1878187455,1116776942,1328447702,1579799459,1878708757,1117086911,1328816344,1580237851,1879230096,1117396900,1329185012,1580676273,1879751471,1117706912, 1329553705,1581114726,1880272882,1118016945,1329922424,1581553209,1880794329,1118326999,1330291168,1581991722,1881315812,1118637075,1330659938,1582430266,1881837331,1118947172, 1331028733,1582868840,1882358887,1119257291,1331397554,1583307445,1882880478,1119567431,1331766401,1583746079,1883402106,1119877592,1332135273,1584184745,1883923770,1120187776, 1332504170,1584623440,1884445470,1120497980,1332873094,1585062166,1884967206,1120808206,1333242042,1585500923,1885488978,1121118454,1333611016,1585939709,1886010786,1121428723, 1333980016,1586378526,1886532631,1121739014,1334349041,1586817374,1887054511,1122049326,1334718092,1587256252,1887576428,1122359659,1335087168,1587695160,1888098380,1122670014, 1335456270,1588134098,1888620369,1122980390,1335825397,1588573067,1889142394,1123290788,1336194550,1589012066,1889664455,1123601207,1336563728,1589451095,1890186552,1123911648, 1336932932,1589890155,1890708684,1124222110,1337302161,1590329245,1891230853,1124532594,1337671416,1590768365,1891753059,1124843099,1338040696,1591207516,1892275300,1125153625, 1338410002,1591646697,1892797577,1125464173,1338779333,1592085908,1893319890,1125774742,1339148690,1592525150,1893842239,1126085333,1339518072,1592964422,1894364624,1126395945, 1339887479,1593403724,1894887045,1126706578,1340256912,1593843056,1895409503,1127017233,1340626371,1594282419,1895931996,1127327910,1340995855,1594721812,1896454525,1127638607, 1341365364,1595161235,1896977090,1127949326,1341734899,1595600689,1897499692,1128260067,1342104460,1596040172,1898022329,1128570829,1342474045,1596479686,1898545002,1128881612, 1342843656,1596919231,1899067711,1129192417,1343213293,1597358805,1899590456,1129503243,1343582955,1597798410,1900113237,1129814091,1343952643,1598238045,1900636054,1130124959, 1344322356,1598677710,1901158907,1130435850,1344692094,1599117406,1901681796,1130746761,1345061858,1599557131,1902204721,1131057694,1345431647,1599996887,1902727682,1131368649, 1345801461,1600436673,1903250679,1131679625,1346171301,1600876490,1903773712,1131990622,1346541167,1601316336,1904296780,1132301640,1346911058,1601756213,1904819885,1132612680, 1347280974,1602196120,1905343025,1132923741,1347650915,1602636057,1905866202,1133234824,1348020882,1603076024,1906389414,1133545928,1348390875,1603516022,1906912662,1133857053, 1348760892,1603956050,1907435946,1134168199,1349130935,1604396107,1907959266,1134479367,1349501004,1604836196,1908482622,1134790557,1349871098,1605276314,1909006014,1135101767, 1350241217,1605716462,1909529442,1135412999,1350611362,1606156641,1910052905,1135724252,1350981532,1606596850,1910576404,1136035527,1351351727,1607037088,1911099940,1136346823, 1351721948,1607477358,1911623511,1136658140,1352092194,1607917657,1912147118,1136969479,1352462465,1608357986,1912670761,1137280839,1352832762,1608798346,1913194439,1137592220, 1353203084,1609238735,1913718154,1137903622,1353573431,1609679155,1914241904,1138215046,1353943804,1610119605,1914765690,1138526491,1354314202,1610560085,1915289512,1138837957, 1354684625,1611000595,1915813370,1139149445,1355055074,1611441135,1916337263,1139460954,1355425548,1611881706,1916861193,1139772484,1355796047,1612322306,1917385158,1140084036, 1356166572,1612762937,1917909159,1140395609,1356537122,1613203597,1918433196,1140707203,1356907697,1613644288,1918957268,1141018818,1357278298,1614085009,1919481377,1141330455, 1357648924,1614525760,1920005521,1141642113,1358019575,1614966541,1920529701,1141953792,1358390251,1615407352,1921053916,1142265493,1358760953,1615848193,1921578168,1142577215, 1359131680,1616289064,1922102455,1142888958,1359502432,1616729966,1922626778,1143200722,1359873210,1617170897,1923151137,1143512508,1360244013,1617611858,1923675531,1143824314, 1360614841,1618052850,1924199961,1144136142,1360985695,1618493871,1924724427,1144447992,1361356573,1618934923,1925248929,1144759862,1361727477,1619376005,1925773466,1145071754, 1362098406,1619817116,1926298040,1145383667,1362469361,1620258258,1926822648,1145695601,1362840341,1620699430,1927347293,1146007557,1363211345,1621140631,1927871973,1146319534, 1363582376,1621581863,1928396689,1146631532,1363953431,1622023125,1928921441,1146943551,1364324512,1622464417,1929446228,1147255591,1364695618,1622905738,1929971051,1147567653, 1365066749,1623347090,1930495910,1147879736,1365437905,1623788472,1931020804,1148191840,1365809087,1624229884,1931545734,1148503965,1366180294,1624671326,1932070700,1148816112, 1366551526,1625112797,1932595701,1149128279,1366922783,1625554299,1933120738,1149440468,1367294065,1625995831,1933645811,1149752678,1367665373,1626437393,1934170919,1150064909, 1368036706,1626878984,1934696063,1150377162,1368408064,1627320606,1935221243,1150689436,1368779447,1627762258,1935746458,1151001730,1369150856,1628203939,1936271709,1151314047, 1369522289,1628645651,1936796996,1151626384,1369893748,1629087392,1937322318,1151938742,1370265232,1629529164,1937847675,1152251122,1370636741,1629970965,1938373069,1152563522, 1371008276,1630412796,1938898498,1152875944,1371379835,1630854658,1939423962,1153188387,1371751420,1631296549,1939949462,1153500852,1372123030,1631738470,1940474998,1153813337, 1372494665,1632180421,1941000569,1154125844,1372866325,1632622402,1941526176,1154438371,1373238011,1633064413,1942051819,1154750920,1373609721,1633506453,1942577497,1155063490, 1373981457,1633948524,1943103210,1155376082,1374353217,1634390625,1943628960,1155688694,1374725003,1634832755,1944154744,1156001327,1375096815,1635274916,1944680565,1156313982, 1375468651,1635717106,1945206420,1156626658,1375840512,1636159326,1945732312,1156939355,1376212399,1636601576,1946258239,1157252073,1376584310,1637043856,1946784201,1157564812, 1376956247,1637486166,1947310199,1157877572,1377328209,1637928506,1947836233,1158190353,1377700196,1638370875,1948362302,1158503156,1378072208,1638813274,1948888406,1158815979, 1378444245,1639255704,1949414546,1159128824,1378816307,1639698163,1949940722,1159441690,1379188395,1640140652,1950466933,1159754577,1379560507,1640583171,1950993179,1160067485, 1379932645,1641025719,1951519461,1160380414,1380304807,1641468298,1952045779,1160693364,1380676995,1641910906,1952572132,1161006336,1381049208,1642353544,1953098520,1161319328, 1381421446,1642796212,1953624944,1161632342,1381793709,1643238910,1954151403,1161945376,1382165997,1643681638,1954677898,1162258432,1382538310,1644124395,1955204429,1162571509, 1382910648,1644567182,1955730994,1162884607,1383283011,1645009999,1956257595,1163197726,1383655400,1645452846,1956784232,1163510866,1384027813,1645895723,1957310904,1163824027, 1384400252,1646338629,1957837612,1164137209,1384772715,1646781566,1958364355,1164450412,1385145204,1647224532,1958891133,1164763636,1385517717,1647667527,1959417947,1165076882, 1385890256,1648110553,1959944796,1165390148,1386262820,1648553608,1960471680,1165703436,1386635408,1648996693,1960998600,1166016744,1387008022,1649439808,1961525556,1166330074, 1387380661,1649882953,1962052547,1166643424,1387753325,1650326127,1962579573,1166956796,1388126013,1650769332,1963106634,1167270189,1388498727,1651212565,1963633731,1167583602, 1388871466,1651655829,1964160864,1167897037,1389244230,1652099123,1964688031,1168210493,1389617019,1652542446,1965215234,1168523970,1389989832,1652985799,1965742473,1168837467, 1390362671,1653429181,1966269746,1169150986,1390735535,1653872594,1966797056,1169464526,1391108424,1654316036,1967324400,1169778087,1391481338,1654759507,1967851780,1170091669, 1391854277,1655203009,1968379195,1170405272,1392227240,1655646540,1968906645,1170718896,1392600229,1656090101,1969434131,1171032541,1392973243,1656533692,1969961652,1171346207, 1393346282,1656977312,1970489209,1171659893,1393719345,1657420962,1971016800,1171973601,1394092434,1657864642,1971544427,1172287330,1394465548,1658308351,1972072090,1172601080, 1394838686,1658752090,1972599787,1172914851,1395211850,1659195859,1973127520,1173228643,1395585038,1659639657,1973655289,1173542456,1395958252,1660083485,1974183092,1173856290, 1396331490,1660527343,1974710931,1174170145,1396704754,1660971230,1975238805,1174484020,1397078042,1661415148,1975766714,1174797917,1397451355,1661859094,1976294659,1175111835, 1397824693,1662303071,1976822639,1175425774,1398198056,1662747077,1977350654,1175739733,1398571444,1663191112,1977878704,1176053714,1398944857,1663635178,1978406790,1176367716, 1399318295,1664079273,1978934911,1176681738,1399691758,1664523397,1979463067,1176995782,1400065245,1664967551,1979991258,1177309846,1400438758,1665411735,1980519485,1177623931, 1400812296,1665855949,1981047747,1177938038,1401185858,1666300192,1981576044,1178252165,1401559445,1666744464,1982104376,1178566313,1401933057,1667188767,1982632743,1178880482, 1402306694,1667633099,1983161146,1179194672,1402680356,1668077460,1983689584,1179508884,1403054043,1668521851,1984218057,1179823115,1403427755,1668966272,1984746565,1180137368, 1403801492,1669410722,1985275108,1180451642,1404175253,1669855202,1985803687,1180765937,1404549040,1670299711,1986332301,1181080252,1404922851,1670744250,1986860950,1181394589, 1405296687,1671188819,1987389634,1181708946,1405670548,1671633417,1987918353,1182023325,1406044434,1672078045,1988447108,1182337724,1406418344,1672522702,1988975897,1182652144, 1406792280,1672967389,1989504722,1182966585,1407166240,1673412105,1990033582,1183281047,1407540226,1673856851,1990562477,1183595530,1407914236,1674301626,1991091407,1183910034, 1408288271,1674746431,1991620372,1184224558,1408662330,1675191266,1992149373,1184539104,1409036415,1675636130,1992678408,1184853670,1409410524,1676081024,1993207479,1185168258, 1409784659,1676525947,1993736584,1185482866,1410158818,1676970899,1994265725,1185797495,1410533002,1677415882,1994794901,1186112145,1410907210,1677860893,1995324112,1186426816, 1411281444,1678305934,1995853358,1186741507,1411655702,1678751005,1996382640,1187056220,1412029985,1679196105,1996911956,1187370953,1412404293,1679641235,1997441307,1187685707, 1412778626,1680086394,1997970694,1188000482,1413152984,1680531583,1998500115,1188315278,1413527366,1680976801,1999029572,1188630095,1413901773,1681422049,1999559064,1188944933, 1414276205,1681867326,2000088590,1189259791,1414650662,1682312632,2000618152,1189574670,1415025143,1682757968,2001147749,1189889571,1415399650,1683203334,2001677381,1190204492, 1415774181,1683648729,2002207048,1190519433,1416148737,1684094153,2002736750,1190834396,1416523317,1684539607,2003266486,1191149379,1416897922,1684985091,2003796258,1191464384, 1417272553,1685430603,2004326065,1191779409,1417647207,1685876146,2004855907,1192094455,1418021887,1686321717,2005385784,1192409522,1418396591,1686767318,2005915696,1192724609, 1418771321,1687212949,2006445643,1193039718,1419146074,1687658609,2006975625,1193354847,1419520853,1688104298,2007505642,1193669997,1419895656,1688550017,2008035694,1193985168, 1420270485,1688995765,2008565781,1194300359,1420645337,1689441543,2009095903,1194615572,1421020215,1689887350,2009626060,1194930805,1421395117,1690333187,2010156252,1195246059, 1421770044,1690779052,2010686479,1195561333,1422144996,1691224948,2011216741,1195876629,1422519972,1691670872,2011747038,1196191945,1422894973,1692116826,2012277369,1196507282, 1423269999,1692562810,2012807736,1196822640,1423645050,1693008823,2013338138,1197138019,1424020125,1693454865,2013868574,1197453418,1424395225,1693900936,2014399045,1197768839, 1424770350,1694347037,2014929552,1198084280,1425145499,1694793167,2015460093,1198399741,1425520673,1695239327,2015990669,1198715224,1425895872,1695685516,2016521281,1199030727, 1426271095,1696131734,2017051927,1199346251,1426646343,1696577982,2017582608,1199661796,1427021616,1697024259,2018113323,1199977362,1427396914,1697470566,2018644074,1200292948, 1427772236,1697916901,2019174860,1200608555,1428147582,1698363266,2019705680,1200924183,1428522954,1698809661,2020236536,1201239831,1428898350,1699256084,2020767426,1201555500, 1429273771,1699702538,2021298351,1201871190,1429649216,1700149020,2021829311,1202186901,1430024686,1700595532,2022360306,1202502632,1430400181,1701042073,2022891336,1202818385, 1430775700,1701488643,2023422400,1203134157,1431151244,1701935242,2023953500,1203449951,1431526813,1702381871,2024484634,1203765765,1431902406,1702828530,2025015803,1204081600, 1432278024,1703275217,2025547007,1204397456,1432653667,1703721934,2026078246,1204713333,1433029334,1704168680,2026609519,1205029230,1433405026,1704615455,2027140828,1205345148, 1433780742,1705062260,2027672171,1205661086,1434156483,1705509094,2028203549,1205977045,1434532249,1705955957,2028734962,1206293025,1434908039,1706402849,2029266409,1206609026, 1435283854,1706849771,2029797892,1206925047,1435659693,1707296722,2030329409,1207241090,1436035557,1707743702,2030860961,1207557152,1436411446,1708190711,2031392548,1207873236, 1436787359,1708637750,2031924169,1208189340,1437163297,1709084818,2032455826,1208505465,1437539259,1709531915,2032987517,1208821610,1437915246,1709979042,2033519243,1209137776, 1438291258,1710426197,2034051004,1209453963,1438667294,1710873382,2034582799,1209770170,1439043355,1711320596,2035114629,1210086398,1439419440,1711767840,2035646494,1210402647, 1439795550,1712215112,2036178394,1210718917,1440171684,1712662414,2036710328,1211035207,1440547843,1713109745,2037242297,1211351517,1440924027,1713557105,2037774301,1211667849, 1441300235,1714004494,2038306340,1211984201,1441676468,1714451913,2038838413,1212300574,1442052725,1714899360,2039370521,1212616967,1442429006,1715346837,2039902664,1212933381, 1442805313,1715794344,2040434841,1213249815,1443181644,1716241879,2040967053,1213566271,1443557999,1716689443,2041499300,1213882747,1443934379,1717137037,2042031582,1214199243, 1444310783,1717584660,2042563898,1214515760,1444687212,1718032312,2043096249,1214832298,1445063666,1718479993,2043628634,1215148856,1445440144,1718927703,2044161055,1215465435, 1445816646,1719375443,2044693510,1215782035,1446193173,1719823211,2045225999,1216098655,1446569725,1720271009,2045758523,1216415296,1446946301,1720718836,2046291082,1216731957, 1447322901,1721166692,2046823676,1217048639,1447699526,1721614577,2047356304,1217365342,1448076176,1722062491,2047888967,1217682065,1448452850,1722510435,2048421665,1217998809, 1448829548,1722958407,2048954397,1218315573,1449206271,1723406409,2049487163,1218632358,1449583019,1723854440,2050019965,1218949164,1449959791,1724302500,2050552801,1219265990, 1450336587,1724750589,2051085672,1219582837,1450713408,1725198707,2051618577,1219899704,1451090253,1725646854,2052151517,1220216592,1451467123,1726095030,2052684491,1220533501, 1451844018,1726543236,2053217500,1220850430,1452220936,1726991470,2053750544,1221167380,1452597880,1727439734,2054283622,1221484350,1452974847,1727888026,2054816735,1221801341, 1453351839,1728336348,2055349882,1222118352,1453728856,1728784699,2055883064,1222435384,1454105897,1729233079,2056416281,1222752436,1454482963,1729681488,2056949532,1223069509, 1454860052,1730129926,2057482818,1223386603,1455237167,1730578393,2058016138,1223703717,1455614306,1731026889,2058549493,1224020852,1455991469,1731475414,2059082882,1224338007, 1456368656,1731923968,2059616306,1224655183,1456745869,1732372552,2060149764,1224972379,1457123105,1732821164,2060683257,1225289596,1457500366,1733269805,2061216785,1225606833, 1457877651,1733718476,2061750347,1225924091,1458254961,1734167175,2062283943,1226241369,1458632295,1734615904,2062817574,1226558668,1459009654,1735064661,2063351240,1226875988, 1459387037,1735513448,2063884940,1227193328,1459764444,1735962263,2064418675,1227510688,1460141876,1736411108,2064952444,1227828069,1460519332,1736859981,2065486247,1228145471, 1460896812,1737308884,2066020085,1228462893,1461274317,1737757815,2066553958,1228780335,1461651847,1738206776,2067087865,1229097798,1462029400,1738655765,2067621806,1229415282, 1462406978,1739104784,2068155782,1229732786,1462784581,1739553831,2068689793,1230050310,1463162208,1740002908,2069223838,1230367855,1463539859,1740452013,2069757917,1230685421, 1463917534,1740901147,2070292031,1231003007,1464295234,1741350311,2070826179,1231320613,1464672958,1741799503,2071360362,1231638240,1465050707,1742248724,2071894579,1231955888, 1465428480,1742697975,2072428831,1232273556,1465806277,1743147254,2072963117,1232591244,1466184099,1743596562,2073497437,1232908953,1466561945,1744045899,2074031792,1233226682, 1466939815,1744495265,2074566182,1233544432,1467317710,1744944660,2075100605,1233862202,1467695629,1745394084,2075635064,1234179993,1468073572,1745843537,2076169556,1234497804, 1468451540,1746293019,2076704083,1234815636,1468829532,1746742530,2077238644,1235133488,1469207548,1747192069,2077773240,1235451360,1469585589,1747641638,2078307870,1235769253, 1469963653,1748091235,2078842535,1236087167,1470341743,1748540862,2079377234,1236405101,1470719856,1748990517,2079911967,1236723055,1471097994,1749440201,2080446735,1237041030, 1471476156,1749889914,2080981537,1237359025,1471854343,1750339656,2081516373,1237677040,1472232553,1750789427,2082051244,1237995077,1472610788,1751239227,2082586149,1238313133, 1472989048,1751689056,2083121088,1238631210,1473367331,1752138913,2083656062,1238949307,1473745639,1752588800,2084191070,1239267425,1474123971,1753038715,2084726113,1239585563, 1474502328,1753488659,2085261190,1239903722,1474880708,1753938632,2085796301,1240221901,1475259113,1754388634,2086331446,1240540100,1475637543,1754838665,2086866626,1240858320, 1476015996,1755288725,2087401840,1241176560,1476394474,1755738813,2087937088,1241494821,1476772976,1756188930,2088472371,1241813102,1477151502,1756639076,2089007688,1242131403, 1477530053,1757089251,2089543039,1242449725,1477908628,1757539455,2090078425,1242768067,1478287227,1757989688,2090613845,1243086430,1478665850,1758439949,2091149299,1243404813, 1479044497,1758890240,2091684788,1243723216,1479423169,1759340559,2092220310,1244041640,1479801865,1759790907,2092755867,1244360084,1480180585,1760241284,2093291459,1244678548, 1480559330,1760691689,2093827084,1244997033,1480938098,1761142123,2094362744,1245315538,1481316891,1761592587,2094898438,1245634064,1481695708,1762043079,2095434166,1245952610, 1482074550,1762493599,2095969929,1246271176,1482453415,1762944149,2096505725,1246589763,1482832305,1763394727,2097041556,1246908370,1483211219,1763845335,2097577422,1247226997, 1483590157,1764295970,2098113321,1247545645,1483969119,1764746635,2098649255,1247864313,1484348106,1765197329,2099185223,1248183001,1484727117,1765648051,2099721225,1248501710, 1485106151,1766098802,2100257261,1248820439,1485485211,1766549582,2100793331,1249139188,1485864294,1767000390,2101329436,1249457958,1486243401,1767451227,2101865575,1249776748, 1486622533,1767902093,2102401748,1250095559,1487001689,1768352988,2102937955,1250414390,1487380869,1768803912,2103474197,1250733241,1487760073,1769254864,2104010473,1251052112, 1488139301,1769705845,2104546782,1251371004,1488518554,1770156855,2105083126,1251689916,1488897830,1770607893,2105619505,1252008848,1489277131,1771058960,2106155917,1252327801, 1489656456,1771510056,2106692363,1252646774,1490035805,1771961181,2107228844,1252965767,1490415178,1772412334,2107765359,1253284781,1490794576,1772863516,2108301908,1253603815, 1491173997,1773314727,2108838491,1253922869,1491553443,1773765967,2109375108,1254241943,1491932913,1774217235,2109911759,1254561038,1492312407,1774668532,2110448445,1254880153, 1492691925,1775119857,2110985164,1255199289,1493071467,1775571212,2111521918,1255518444,1493451033,1776022594,2112058706,1255837620,1493830624,1776474006,2112595528,1256156816, 1494210238,1776925446,2113132384,1256476033,1494589877,1777376915,2113669274,1256795270,1494969539,1777828413,2114206198,1257114527,1495349226,1778279939,2114743156,1257433804, 1495728937,1778731494,2115280149,1257753102,1496108672,1779183078,2115817175,1258072419,1496488431,1779634690,2116354236,1258391757,1496868215,1780086331,2116891330,1258711116, 1497248022,1780538001,2117428459,1259030494,1497627853,1780989699,2117965622,1259349893,1498007709,1781441426,2118502819,1259669313,1498387589,1781893181,2119040049,1259988752, 1498767492,1782344966,2119577314,1260308212,1499147420,1782796778,2120114613,1260627691,1499527372,1783248620,2120651946,1260947192,1499907348,1783700490,2121189313,1261266712, 1500287348,1784152388,2121726715,1261586253,1500667372,1784604316,2122264150,1261905813,1501047420,1785056272,2122801619,1262225394,1501427492,1785508256,2123339122,1262544996, 1501807588,1785960269,2123876659,1262864617,1502187708,1786412311,2124414230,1263184259,1502567853,1786864381,2124951836,1263503921,1502948021,1787316480,2125489475,1263823603, 1503328213,1787768608,2126027148,1264143306,1503708430,1788220764,2126564855,1264463028,1504088670,1788672948,2127102597,1264782771,1504468935,1789125162,2127640372,1265102534, 1504849223,1789577403,2128178181,1265422317,1505229536,1790029674,2128716024,1265742121,1505609872,1790481973,2129253901,1266061945,1505990233,1790934300,2129791812,1266381788, 1506370618,1791386656,2130329757,1266701652,1506751026,1791839041,2130867736,1267021537,1507131459,1792291454,2131405749,1267341441,1507511916,1792743896,2131943796,1267661366, 1507892396,1793196366,2132481877,1267981311,1508272901,1793648865,2133019992,1268301276,1508653430,1794101392,2133558141,1268621261,1509033982,1794553948,2134096324,1268941266, 1509414559,1795006533,2134634540,1269261292,1509795159,1795459146,2135172791,1269581337,1510175784,1795911787,2135711075,1269901403,1510556433,1796364457,2136249394,1270221489, 1510937105,1796817156,2136787746,1270541596,1511317802,1797269883,2137326132,1270861722,1511698522,1797722639,2137864553,1271181868,1512079267,1798175423,2138403007,1271502035, 1512460035,1798628235,2138941495,1271822222,1512840828,1799081076,2139480017,1272142429,1513221644,1799533946,2140018572,1272462656,1513602485,1799986844,2140557162,1272782903, 1513983349,1800439771,2141095785,1273103171,1514364237,1800892726,2141634443,1273423459,1514745150,1801345709,2142173134,1273743766,1515126086,1801798721,2142711859,1274064094, 1515507046,1802251762,2143250618,1274384442,1515888030,1802704831,2143789411,1274704810,1516269038,1803157928,2144328238,1275025199,1516650070,1803611054,2144867098,1275345607, 1517031126,1804064209,2145405993,1275666036,1517412206,1804517391,2145944921,1275986484,1517793309,1804970603,2146483883,1276306953,1518174437,1805423842,2147022879,1276627442, 1518555589,1805877111,1073780954,1276947951,1518936764,1806330407,1074050486,1277268480,1519317964,1806783732,1074320035,1277589029,1519699187,1807237086,1074589600,1277909599, 1520080434,1807690468,1074859183,1278230188,1520461705,1808143878,1075128782,1278550798,1520843000,1808597317,1075398399,1278871427,1521224319,1809050784,1075668032,1279192077, 1521605662,1809504280,1075937682,1279512747,1521987029,1809957804,1076207349,1279833437,1522368420,1810411356,1076477033,1280154147,1522749834,1810864937,1076746734,1280474877, 1523131273,1811318546,1077016451,1280795627,1523512735,1811772184,1077286186,1281116397,1523894221,1812225850,1077555937,1281437188,1524275731,1812679545,1077825706,1281757998, 1524657265,1813133267,1078095491,1282078829,1525038823,1813587019,1078365293,1282399679,1525420404,1814040798,1078635112,1282720550,1525802010,1814494606,1078904948,1283041441, 1526183639,1814948443,1079174801,1283362351,1526565293,1815402307,1079444670,1283683282,1526946970,1815856201,1079714557,1284004233,1527328671,1816310122,1079984460,1284325204, 1527710395,1816764072,1080254380,1284646195,1528092144,1817218050,1080524317,1284967206,1528473917,1817672057,1080794271,1285288237,1528855713,1818126092,1081064242,1285609288, 1529237533,1818580155,1081334230,1285930360,1529619377,1819034247,1081604234,1286251451,1530001245,1819488366,1081874256,1286572562,1530383137,1819942515,1082144294,1286893694, 1530765052,1820396691,1082414349,1287214845,1531146991,1820850896,1082684421,1287536016,1531528955,1821305130,1082954509,1287857208,1531910942,1821759391,1083224615,1288178419, 1532292952,1822213681,1083494737,1288499651,1532674987,1822667999,1083764877,1288820902,1533057045,1823122346,1084035033,1289142174,1533439127,1823576721,1084305206,1289463465, 1533821233,1824031124,1084575395,1289784777,1534203363,1824485555,1084845602,1290106108,1534585517,1824940015,1085115825,1290427460,1534967694,1825394503,1085386066,1290748832, 1535349895,1825849020,1085656323,1291070223,1535732120,1826303564,1085926596,1291391635,1536114369,1826758137,1086196887,1291713066,1536496642,1827212738,1086467195,1292034518, 1536878938,1827667368,1086737519,1292355990,1537261258,1828122026,1087007860,1292677481,1537643602,1828576712,1087278218,1292998993,1538025970,1829031426,1087548593,1293320524, 1538408361,1829486169,1087818984,1293642076,1538790776,1829940939,1088089393,1293963647,1539173215,1830395738,1088359818,1294285239,1539555678,1830850566,1088630260,1294606850, 1539938164,1831305421,1088900718,1294928482,1540320674,1831760305,1089171194,1295250133,1540703208,1832215217,1089441686,1295571805,1541085766,1832670158,1089712195,1295893496, 1541468347,1833125126,1089982721,1296215207,1541850952,1833580123,1090253264,1296536939,1542233581,1834035148,1090523824,1296858690,1542616234,1834490201,1090794400,1297180461, 1542998910,1834945283,1091064993,1297502252,1543381610,1835400392,1091335603,1297824064,1543764334,1835855530,1091606229,1298145895,1544147082,1836310696,1091876873,1298467746, 1544529853,1836765891,1092147533,1298789617,1544912648,1837221113,1092418210,1299111508,1545295467,1837676364,1092688903,1299433418,1545678309,1838131643,1092959614,1299755349, 1546061175,1838586950,1093230341,1300077300,1546444065,1839042285,1093501085,1300399271,1546826978,1839497648,1093771846,1300721261,1547209916,1839953040,1094042623,1301043272, 1547592877,1840408460,1094313418,1301365302,1547975861,1840863908,1094584229,1301687353,1548358869,1841319384,1094855056,1302009423,1548741901,1841774888,1095125901,1302331513, 1549124957,1842230421,1095396762,1302653623,1549508036,1842685982,1095667640,1302975753,1549891139,1843141570,1095938535,1303297903,1550274266,1843597187,1096209446,1303620073, 1550657416,1844052833,1096480374,1303942263,1551040590,1844508506,1096751319,1304264472,1551423788,1844964207,1097022281,1304586702,1551807010,1845419937,1097293260,1304908952, 1552190255,1845875695,1097564255,1305231221,1552573523,1846331480,1097835267,1305553510,1552956816,1846787294,1098106295,1305875819,1553340132,1847243137,1098377341,1306198148, 1553723471,1847699007,1098648403,1306520497,1554106835,1848154905,1098919481,1306842866,1554490221,1848610832,1099190577,1307165255,1554873632,1849066786,1099461689,1307487663, 1555257066,1849522769,1099732818,1307810092,1555640524,1849978780,1100003964,1308132540,1556024006,1850434818,1100275126,1308455008,1556407511,1850890885,1100546305,1308777496, 1556791039,1851346981,1100817501,1309100004,1557174592,1851803104,1101088713,1309422532,1557558168,1852259255,1101359942,1309745080,1557941767,1852715434,1101631188,1310067647, 1558325390,1853171642,1101902451,1310390235,1558709037,1853627877,1102173730,1310712842,1559092708,1854084141,1102445026,1311035469,1559476402,1854540433,1102716339,1311358116, 1559860119,1854996752,1102987668,1311680783,1560243861,1855453100,1103259014,1312003469,1560627625,1855909476,1103530377,1312326176,1561011414,1856365880,1103801756,1312648902, 1561395226,1856822312,1104073152,1312971648,1561779061,1857278772,1104344565,1313294414,1562162921,1857735260,1104615994,1313617200,1562546803,1858191776,1104887441,1313940006, 1562930710,1858648320,1105158903,1314262831,1563314640,1859104892,1105430383,1314585676,1563698593,1859561493,1105701879,1314908541,1564082570,1860018121,1105973392,1315231426, 1564466571,1860474777,1106244921,1315554331,1564850595,1860931461,1106516467,1315877256,1565234643,1861388174,1106788030,1316200200,1565618714,1861844914,1107059609,1316523164, 1566002809,1862301682,1107331206,1316846148,1566386927,1862758479,1107602818,1317169152,1566771069,1863215303,1107874448,1317492176,1567155235,1863672156,1108146094,1317815219, 1567539424,1864129036,1108417756,1318138282,1567923637,1864585944,1108689436,1318461365,1568307873,1865042881,1108961132,1318784468,1568692132,1865499845,1109232844,1319107591, 1569076416,1865956837,1109504574,1319430733,1569460722,1866413858,1109776320,1319753895,1569845053,1866870906,1110048082,1320077077,1570229406,1867327982,1110319861,1320400279, 1570613784,1867785087,1110591657,1320723500,1570998185,1868242219,1110863470,1321046742,1571382609,1868699379,1111135299,1321370003,1571767057,1869156567,1111407144,1321693284, 1572151528,1869613783,1111679007,1322016584,1572536023,1870071027,1111950886,1322339905,1572920541,1870528299,1112222781,1322663245,1573305083,1870985599,1112494693,1322986605, 1573689649,1871442927,1112766622,1323309984,1574074238,1871900283,1113038567,1323633384,1574458850,1872357667,1113310530,1323956803,1574843486,1872815078,1113582508,1324280242, 1575228145,1873272518,1113854503,1324603700,1575612828,1873729986,1114126515,1324927179,1575997534,1874187481,1114398544,1325250677,1576382264,1874645004,1114670589,1325574195, 1576767017,1875102556,1114942650,1325897733,1577151794,1875560135,1115214729,1326221290,1577536594,1876017742,1115486823,1326544867,1577921418,1876475377,1115758935,1326868464, 1578306265,1876933040,1116031063,1327192081,1578691136,1877390731,1116303208,1327515717,1579076030,1877848450,1116575369,1327839373,1579460947,1878306197,1116847547,1328163049, 1579845888,1878763971,1117119741,1328486744,1580230853,1879221774,1117391952,1328810459,1580615841,1879679604,1117664179,1329134194,1581000852,1880137462,1117936424,1329457949, 1581385887,1880595348,1118208684,1329781723,1581770945,1881053262,1118480961,1330105517,1582156027,1881511204,1118753255,1330429331,1582541132,1881969174,1119025566,1330753165, 1582926260,1882427171,1119297893,1331077018,1583311412,1882885197,1119570236,1331400891,1583696587,1883343250,1119842596,1331724783,1584081786,1883801331,1120114973,1332048695, 1584467008,1884259440,1120387366,1332372627,1584852254,1884717577,1120659776,1332696579,1585237523,1885175741,1120932202,1333020550,1585622815,1885633934,1121204645,1333344541, 1586008131,1886092154,1121477105,1333668552,1586393471,1886550402,1121749581,1333992583,1586778833,1887008678,1122022073,1334316633,1587164219,1887466982,1122294582,1334640702, 1587549629,1887925314,1122567108,1334964792,1587935061,1888383673,1122839650,1335288901,1588320518,1888842060,1123112209,1335613030,1588705997,1889300476,1123384784,1335937178, 1589091500,1889758918,1123657376,1336261346,1589477027,1890217389,1123929984,1336585534,1589862576,1890675888,1124202609,1336909741,1590248149,1891134414,1124475250,1337233968, 1590633746,1891592968,1124747908,1337558215,1591019366,1892051550,1125020583,1337882481,1591405009,1892510160,1125293274,1338206767,1591790676,1892968797,1125565981,1338531073, 1592176366,1893427462,1125838705,1338855398,1592562079,1893886155,1126111445,1339179743,1592947816,1894344876,1126384202,1339504108,1593333576,1894803625,1126656976,1339828492, 1593719359,1895262401,1126929766,1340152896,1594105166,1895721205,1127202573,1340477319,1594490996,1896180037,1127475396,1340801763,1594876849,1896638897,1127748235,1341126225, 1595262726,1897097784,1128021091,1341450708,1595648626,1897556699,1128293964,1341775210,1596034549,1898015642,1128566853,1342099731,1596420496,1898474613,1128839759,1342424273, 1596806466,1898933611,1129112681,1342748833,1597192460,1899392637,1129385619,1343073414,1597578476,1899851691,1129658574,1343398014,1597964516,1900310773,1129931546,1343722634, 1598350580,1900769882,1130204534,1344047273,1598736667,1901229019,1130477538,1344371932,1599122777,1901688184,1130750559,1344696610,1599508910,1902147376,1131023597,1345021308, 1599895066,1902606596,1131296651,1345346026,1600281246,1903065844,1131569721,1345670763,1600667450,1903525120,1131842808,1345995520,1601053676,1903984423,1132115911,1346320297, 1601439926,1904443754,1132389031,1346645093,1601826199,1904903113,1132662168,1346969909,1602212495,1905362499,1132935320,1347294744,1602598815,1905821913,1133208490,1347619599, 1602985158,1906281355,1133481675,1347944473,1603371524,1906740824,1133754877,1348269367,1603757914,1907200322,1134028096,1348594280,1604144326,1907659846,1134301331,1348919214, 1604530762,1908119399,1134574583,1349244166,1604917222,1908578979,1134847851,1349569139,1605303704,1909038587,1135121135,1349894130,1605690210,1909498222,1135394436,1350219142, 1606076739,1909957886,1135667753,1350544173,1606463292,1910417576,1135941087,1350869223,1606849867,1910877295,1136214437,1351194293,1607236466,1911337041,1136487804,1351519383, 1607623088,1911796815,1136761187,1351844492,1608009734,1912256616,1137034587,1352169621,1608396402,1912716445,1137308003,1352494769,1608783094,1913176302,1137581435,1352819937, 1609169809,1913636186,1137854884,1353145124,1609556547,1914096098,1138128349,1353470331,1609943309,1914556038,1138401831,1353795557,1610330094,1915016005,1138675329,1354120803, 1610716902,1915476000,1138948844,1354446069,1611103733,1915936022,1139222375,1354771354,1611490587,1916396072,1139495922,1355096658,1611877465,1916856150,1139769486,1355421982, 1612264366,1917316255,1140043066,1355747326,1612651290,1917776388,1140316663,1356072689,1613038237,1918236549,1140590276,1356398071,1613425208,1918696737,1140863905,1356723474, 1613812202,1919156952,1141137551,1357048895,1614199219,1919617196,1141411214,1357374336,1614586259,1920077467,1141684892,1357699797,1614973322,1920537765,1141958587,1358025277, 1615360409,1920998091,1142232299,1358350777,1615747518,1921458445,1142506027,1358676296,1616134651,1921918826,1142779771,1359001835,1616521807,1922379235,1143053532,1359327393, 1616908986,1922839671,1143327309,1359652971,1617296189,1923300135,1143601102,1359978568,1617683415,1923760626,1143874912,1360304184,1618070663,1924221145,1144148738,1360629820, 1618457935,1924681692,1144422581,1360955476,1618845230,1925142266,1144696440,1361281151,1619232549,1925602868,1144970315,1361606846,1619619890,1926063497,1145244207,1361932560, 1620007255,1926524154,1145518115,1362258293,1620394643,1926984838,1145792040,1362584046,1620782053,1927445550,1146065981,1362909819,1621169488,1927906289,1146339938,1363235611, 1621556945,1928367056,1146613912,1363561422,1621944425,1928827851,1146887902,1363887253,1622331929,1929288672,1147161908,1364213103,1622719455,1929749522,1147435931,1364538973, 1623107005,1930210399,1147709970,1364864862,1623494578,1930671303,1147984025,1365190771,1623882174,1931132235,1148258097,1365516699,1624269793,1931593195,1148532185,1365842647, 1624657436,1932054182,1148806290,1366168614,1625045101,1932515196,1149080411,1366494600,1625432790,1932976238,1149354548,1366820606,1625820501,1933437308,1149628702,1367146631, 1626208236,1933898405,1149902871,1367472676,1626595994,1934359529,1150177058,1367798740,1626983775,1934820681,1150451260,1368124824,1627371579,1935281861,1150725479,1368450927, 1627759406,1935743068,1150999714,1368777050,1628147257,1936204302,1151273966,1369103192,1628535130,1936665564,1151548234,1369429353,1628923027,1937126853,1151822518,1369755534, 1629310946,1937588170,1152096819,1370081734,1629698889,1938049514,1152371136,1370407954,1630086855,1938510886,1152645469,1370734193,1630474844,1938972285,1152919819,1371060451, 1630862856,1939433712,1153194185,1371386729,1631250891,1939895166,1153468567,1371713027,1631638949,1940356647,1153742965,1372039343,1632027030,1940818156,1154017380,1372365679, 1632415135,1941279693,1154291811,1372692035,1632803262,1941741256,1154566259,1373018410,1633191412,1942202848,1154840723,1373344804,1633579586,1942664466,1155115203,1373671218, 1633967782,1943126112,1155389699,1373997651,1634356002,1943587786,1155664212,1374324103,1634744245,1944049487,1155938741,1374650575,1635132510,1944511215,1156213286,1374977066, 1635520799,1944972971,1156487848,1375303577,1635909111,1945434754,1156762426,1375630107,1636297446,1945896565,1157037020,1375956656,1636685804,1946358403,1157311630,1376283225, 1637074185,1946820268,1157586257,1376609813,1637462589,1947282161,1157860900,1376936421,1637851016,1947744081,1158135560,1377263048,1638239466,1948206029,1158410235,1377589694, 1638627939,1948668003,1158684927,1377916360,1639016435,1949130006,1158959635,1378243044,1639404954,1949592035,1159234360,1378569749,1639793496,1950054093,1159509101,1378896473, 1640182061,1950516177,1159783858,1379223216,1640570649,1950978289,1160058631,1379549978,1640959260,1951440428,1160333421,1379876760,1641347895,1951902594,1160608227,1380203561, 1641736552,1952364788,1160883049,1380530381,1642125232,1952827010,1161157887,1380857221,1642513935,1953289258,1161432742,1381184080,1642902661,1953751534,1161707613,1381510959, 1643291411,1954213837,1161982500,1381837856,1643680183,1954676168,1162257403,1382164773,1644068978,1955138526,1162532323,1382491710,1644457796,1955600911,1162807259,1382818666, 1644846637,1956063324,1163082211,1383145641,1645235501,1956525764,1163357180,1383472635,1645624388,1956988231,1163632164,1383799649,1646013299,1957450726,1163907165,1384126682, 1646402232,1957913248,1164182183,1384453735,1646791188,1958375797,1164457216,1384780806,1647180167,1958838374,1164732266,1385107897,1647569169,1959300978,1165007332,1385435008, 1647958193,1959763609,1165282414,1385762137,1648347241,1960226267,1165557512,1386089286,1648736312,1960688953,1165832627,1386416455,1649125406,1961151666,1166107758,1386743642, 1649514523,1961614407,1166382905,1387070849,1649903662,1962077174,1166658068,1387398075,1650292825,1962539969,1166933248,1387725321,1650682011,1963002792,1167208443,1388052585, 1651071219,1963465641,1167483655,1388379870,1651460451,1963928518,1167758884,1388707173,1651849705,1964391422,1168034128,1389034495,1652238982,1964854354,1168309389,1389361837, 1652628283,1965317312,1168584665,1389689199,1653017606,1965780298,1168859958,1390016579,1653406952,1966243311,1169135268,1390343979,1653796321,1966706352,1169410593,1390671398, 1654185713,1967169419,1169685935,1390998836,1654575128,1967632514,1169961293,1391326294,1654964566,1968095636,1170236667,1391653771,1655354026,1968558786,1170512057,1391981267, 1655743510,1969021963,1170787464,1392308782,1656133016,1969485167,1171062886,1392636317,1656522546,1969948398,1171338325,1392963871,1656912098,1970411656,1171613780,1393291444, 1657301673,1970874942,1171889252,1393619036,1657691271,1971338255,1172164739,1393946648,1658080892,1971801595,1172440243,1394274279,1658470536,1972264962,1172715763,1394601929, 1658860203,1972728356,1172991299,1394929598,1659249893,1973191778,1173266851,1395257287,1659639605,1973655227,1173542419,1395584995,1660029341,1974118703,1173818004,1395912722, 1660419099,1974582207,1174093605,1396240468,1660808880,1975045737,1174369222,1396568234,1661198684,1975509295,1174644855,1396896019,1661588511,1975972880,1174920504,1397223823, 1661978361,1976436492,1175196169,1397551646,1662368234,1976900131,1175471851,1397879489,1662758129,1977363798,1175747549,1398207350,1663148048,1977827491,1176023263,1398535231, 1663537989,1978291212,1176298993,1398863131,1663927953,1978754960,1176574739,1399191051,1664317940,1979218736,1176850501,1399518989,1664707950,1979682538,1177126280,1399846947, 1665097982,1980146368,1177402075,1400174924,1665488038,1980610224,1177677885,1400502920,1665878116,1981074108,1177953712,1400830936,1666268217,1981538019,1178229556,1401158971, 1666658341,1982001957,1178505415,1401487024,1667048488,1982465923,1178781290,1401815097,1667438657,1982929915,1179057182,1402143190,1667828850,1983393935,1179333090,1402471301, 1668219065,1983857982,1179609013,1402799432,1668609303,1984322056,1179884953,1403127582,1668999564,1984786157,1180160910,1403455751,1669389848,1985250285,1180436882,1403783939, 1669780154,1985714440,1180712870,1404112146,1670170484,1986178623,1180988875,1404440373,1670560836,1986642832,1181264895,1404768618,1670951211,1987107069,1181540932,1405096883, 1671341609,1987571333,1181816985,1405425167,1671732029,1988035623,1182093054,1405753471,1672122473,1988499941,1182369139,1406081793,1672512939,1988964287,1182645241,1406410135, 1672903428,1989428659,1182921358,1406738495,1673293939,1989893058,1183197491,1407066875,1673684474,1990357485,1183473641,1407395274,1674075031,1990821938,1183749807,1407723693, 1674465611,1991286419,1184025989,1408052130,1674856214,1991750926,1184302186,1408380586,1675246840,1992215461,1184578401,1408709062,1675637488,1992680023,1184854631,1409037557, 1676028159,1993144612,1185130877,1409366071,1676418853,1993609228,1185407139,1409694604,1676809570,1994073871,1185683418,1410023156,1677200309,1994538541,1185959712,1410351728, 1677591072,1995003238,1186236023,1410680318,1677981857,1995467963,1186512349,1411008928,1678372664,1995932714,1186788692,1411337557,1678763495,1996397492,1187065051,1411666205, 1679154348,1996862298,1187341426,1411994872,1679545224,1997327130,1187617817,1412323558,1679936123,1997791990,1187894224,1412652263,1680327044,1998256876,1188170648,1412980988, 1680717988,1998721790,1188447087,1413309731,1681108955,1999186731,1188723542,1413638494,1681499945,1999651698,1189000014,1413967276,1681890957,2000116693,1189276501,1414296077, 1682281993,2000581715,1189553005,1414624897,1682673050,2001046764,1189829524,1414953736,1683064131,2001511840,1190106060,1415282594,1683455234,2001976942,1190382612,1415611472, 1683846360,2002442072,1190659180,1415940368,1684237509,2002907229,1190935764,1416269284,1684628680,2003372413,1191212364,1416598218,1685019875,2003837624,1191488980,1416927172, 1685411091,2004302862,1191765612,1417256145,1685802331,2004768126,1192042260,1417585137,1686193593,2005233418,1192318924,1417914148,1686584878,2005698737,1192595604,1418243178, 1686976186,2006164083,1192872301,1418572227,1687367516,2006629456,1193149013,1418901296,1687758869,2007094856,1193425741,1419230383,1688150245,2007560282,1193702486,1419559489, 1688541643,2008025736,1193979246,1419888615,1688933064,2008491217,1194256023,1420217759,1689324508,2008956725,1194532815,1420546923,1689715975,2009422259,1194809624,1420876106, 1690107464,2009887821,1195086449,1421205308,1690498975,2010353410,1195363289,1421534528,1690890510,2010819025,1195640146,1421863768,1691282067,2011284668,1195917019,1422193027, 1691673647,2011750337,1196193907,1422522305,1692065249,2012216034,1196470812,1422851603,1692456874,2012681757,1196747733,1423180919,1692848522,2013147507,1197024670,1423510254, 1693240193,2013613284,1197301622,1423839608,1693631886,2014079089,1197578591,1424168981,1694023601,2014544920,1197855576,1424498374,1694415340,2015010778,1198132577,1424827785, 1694807101,2015476663,1198409594,1425157216,1695198884,2015942575,1198686627,1425486665,1695590691,2016408514,1198963676,1425816134,1695982520,2016874479,1199240740,1426145621, 1696374371,2017340472,1199517821,1426475128,1696766245,2017806492,1199794918,1426804653,1697158142,2018272538,1200072031,1427134198,1697550062,2018738611,1200349160,1427463762, 1697942004,2019204712,1200626305,1427793344,1698333968,2019670839,1200903466,1428122946,1698725956,2020136993,1201180643,1428452567,1699117966,2020603174,1201457836,1428782206, 1699509998,2021069382,1201735044,1429111865,1699902053,2021535617,1202012269,1429441543,1700294131,2022001878,1202289510,1429771240,1700686231,2022468167,1202566767,1430100955, 1701078354,2022934482,1202844040,1430430690,1701470500,2023400824,1203121328,1430760444,1701862668,2023867194,1203398633,1431090217,1702254859,2024333590,1203675954,1431420009, 1702647072,2024800012,1203953291,1431749819,1703039308,2025266462,1204230643,1432079649,1703431566,2025732939,1204508012,1432409498,1703823848,2026199442,1204785397,1432739366, 1704216151,2026665972,1205062797,1433069252,1704608477,2027132530,1205340214,1433399158,1705000826,2027599114,1205617646,1433729083,1705393198,2028065724,1205895095,1434059026, 1705785592,2028532362,1206172559,1434388989,1706178008,2028999027,1206450039,1434718971,1706570447,2029465718,1206727536,1435048971,1706962909,2029932436,1207005048,1435378991, 1707355393,2030399181,1207282576,1435709030,1707747900,2030865953,1207560121,1436039087,1708140429,2031332752,1207837681,1436369164,1708532981,2031799577,1208115257,1436699259, 1708925555,2032266430,1208392849,1437029374,1709318152,2032733309,1208670457,1437359507,1709710772,2033200215,1208948081,1437689659,1710103414,2033667147,1209225721,1438019831, 1710496079,2034134107,1209503376,1438350021,1710888766,2034601093,1209781048,1438680230,1711281475,2035068106,1210058736,1439010458,1711674208,2035535146,1210336439,1439340705, 1712066962,2036002213,1210614159,1439670971,1712459740,2036469307,1210891894,1440001256,1712852539,2036936427,1211169646,1440331560,1713245362,2037403574,1211447413,1440661883, 1713638207,2037870748,1211725196,1440992225,1714031074,2038337948,1212002995,1441322586,1714423964,2038805176,1212280811,1441652965,1714816876,2039272430,1212558642,1441983364, 1715209811,2039739711,1212836488,1442313781,1715602768,2040207019,1213114351,1442644218,1715995748,2040674353,1213392230,1442974673,1716388751,2041141714,1213670125,1443305148, 1716781775,2041609102,1213948035,1443635641,1717174823,2042076517,1214225962,1443966153,1717567893,2042543958,1214503904,1444296684,1717960985,2043011427,1214781862,1444627234, 1718354100,2043478922,1215059836,1444957803,1718747237,2043946443,1215337827,1445288390,1719140397,2044413992,1215615832,1445618997,1719533579,2044881567,1215893854,1445949623, 1719926784,2045349169,1216171892,1446280267,1720320011,2045816797,1216449946,1446610931,1720713261,2046284453,1216728015,1446941613,1721106533,2046752135,1217006101,1447272314, 1721499828,2047219844,1217284202,1447603034,1721893145,2047687579,1217562319,1447933773,1722286484,2048155341,1217840452,1448264531,1722679846,2048623130,1218118601,1448595308, 1723073231,2049090946,1218396766,1448926103,1723466638,2049558788,1218674947,1449256918,1723860067,2050026657,1218953143,1449587751,1724253519,2050494553,1219231356,1449918603, 1724646993,2050962475,1219509584,1450249474,1725040490,2051430425,1219787828,1450580364,1725434009,2051898400,1220066088,1450911273,1725827551,2052366403,1220344364,1451242201, 1726221115,2052834432,1220622656,1451573148,1726614701,2053302488,1220900964,1451904113,1727008310,2053770570,1221179287,1452235097,1727401942,2054238680,1221457627,1452566101, 1727795596,2054706815,1221735982,1452897123,1728189272,2055174978,1222014353,1453228163,1728582970,2055643167,1222292740,1453559223,1728976691,2056111383,1222571143,1453890302, 1729370435,2056579626,1222849562,1454221399,1729764201,2057047895,1223127996,1454552516,1730157989,2057516190,1223406446,1454883651,1730551800,2057984513,1223684913,1455214805, 1730945633,2058452862,1223963395,1455545978,1731339488,2058921238,1224241893,1455877169,1731733366,2059389640,1224520406,1456208380,1732127266,2059858069,1224798936,1456539609, 1732521189,2060326525,1225077481,1456870857,1732915134,2060795007,1225356043,1457202124,1733309102,2061263516,1225634620,1457533410,1733703091,2061732052,1225913212,1457864715, 1734097104,2062200614,1226191821,1458196038,1734491138,2062669203,1226470446,1458527380,1734885195,2063137818,1226749086,1458858742,1735279275,2063606460,1227027742,1459190121, 1735673376,2064075129,1227306414,1459521520,1736067500,2064543824,1227585102,1459852938,1736461647,2065012546,1227863806,1460184374,1736855816,2065481294,1228142525,1460515829, 1737250007,2065950069,1228421261,1460847303,1737644221,2066418871,1228700012,1461178796,1738038457,2066887699,1228978779,1461510308,1738432715,2067356554,1229257561,1461841838, 1738826996,2067825435,1229536360,1462173387,1739221299,2068294343,1229815174,1462504955,1739615624,2068763277,1230094004,1462836542,1740009972,2069232238,1230372850,1463168148, 1740404342,2069701226,1230651712,1463499772,1740798734,2070170240,1230930590,1463831415,1741193149,2070639281,1231209483,1464163077,1741587586,2071108349,1231488392,1464494758, 1741982045,2071577442,1231767317,1464826457,1742376527,2072046563,1232046258,1465158176,1742771031,2072515710,1232325214,1465489913,1743165558,2072984884,1232604186,1465821669, 1743560106,2073454084,1232883175,1466153443,1743954677,2073923310,1233162178,1466485236,1744349271,2074392564,1233441198,1466817049,1744743886,2074861843,1233720233,1467148880, 1745138524,2075331150,1233999285,1467480729,1745533185,2075800483,1234278352,1467812598,1745927867,2076269842,1234557434,1468144485,1746322572,2076739228,1234836533,1468476391, 1746717299,2077208640,1235115647,1468808315,1747112049,2077678079,1235394777,1469140259,1747506821,2078147545,1235673923,1469472221,1747901615,2078617037,1235953085,1469804202, 1748296431,2079086555,1236232262,1470136202,1748691270,2079556100,1236511455,1470468220,1749086131,2080025672,1236790664,1470800257,1749481014,2080495270,1237069889,1471132313, 1749875920,2080964894,1237349129,1471464388,1750270848,2081434545,1237628385,1471796481,1750665798,2081904223,1237907657,1472128594,1751060770,2082373927,1238186945,1472460724, 1751455765,2082843657,1238466248,1472792874,1751850782,2083313414,1238745567,1473125042,1752245821,2083783198,1239024902,1473457229,1752640882,2084253007,1239304253,1473789435, 1753035966,2084722844,1239583619,1474121660,1753431072,2085192707,1239863001,1474453903,1753826200,2085662596,1240142399,1474786165,1754221351,2086132512,1240421813,1475118446, 1754616524,2086602454,1240701242,1475450745,1755011719,2087072423,1240980687,1475783063,1755406936,2087542418,1241260148,1476115400,1755802176,2088012440,1241539625,1476447755, 1756197437,2088482488,1241819117,1476780130,1756592721,2088952562,1242098625,1477112522,1756988028,2089422663,1242378149,1477444934,1757383356,2089892791,1242657688,1477777364, 1757778707,2090362945,1242937243,1478109813,1758174080,2090833125,1243216814,1478442281,1758569475,2091303332,1243496401,1478774767,1758964892,2091773565,1243776003,1479107273, 1759360332,2092243825,1244055621,1479439796,1759755794,2092714111,1244335255,1479772339,1760151278,2093184423,1244614904,1480104900,1760546784,2093654762,1244894570,1480437480, 1760942313,2094125127,1245174251,1480770078,1761337863,2094595519,1245453947,1481102695,1761733436,2095065937,1245733659,1481435331,1762129031,2095536382,1246013387,1481767986, 1762524649,2096006853,1246293131,1482100659,1762920288,2096477350,1246572891,1482433351,1763315950,2096947874,1246852666,1482766061,1763711634,2097418424,1247132456,1483098790, 1764107340,2097889000,1247412263,1483431538,1764503068,2098359603,1247692085,1483764305,1764898819,2098830233,1247971923,1484097090,1765294592,2099300888,1248251776,1484429894, 1765690386,2099771570,1248531646,1484762716,1766086203,2100242279,1248811531,1485095558,1766482043,2100713014,1249091431,1485428417,1766877904,2101183775,1249371347,1485761296, 1767273788,2101654562,1249651279,1486094193,1767669693,2102125376,1249931227,1486427109,1768065621,2102596217,1250211190,1486760043,1768461571,2103067083,1250491169,1487092996, 1768857544,2103537976,1250771164,1487425968,1769253538,2104008896,1251051174,1487758958,1769649555,2104479841,1251331200,1488091967,1770045593,2104950814,1251611242,1488424994, 1770441654,2105421812,1251891299,1488758040,1770837737,2105892837,1252171372,1489091105,1771233842,2106363888,1252451461,1489424189,1771629970,2106834965,1252731565,1489757291, 1772026119,2107306069,1253011685,1490090411,1772422291,2107777199,1253291821,1490423551,1772818485,2108248356,1253571972,1490756709,1773214701,2108719538,1253852139,1491089885, 1773610939,2109190747,1254132322,1491423080,1774007199,2109661983,1254412520,1491756294,1774403481,2110133245,1254692734,1492089526,1774799785,2110604533,1254972964,1492422777, 1775196112,2111075847,1255253209,1492756047,1775592461,2111547188,1255533470,1493089335,1775988831,2112018554,1255813746,1493422642,1776385224,2112489948,1256094038,1493755967, 1776781639,2112961367,1256374346,1494089311,1777178076,2113432813,1256654669,1494422674,1777574536,2113904285,1256935008,1494756055,1777971017,2114375784,1257215363,1495089455, 1778367520,2114847308,1257495733,1495422873,1778764046,2115318859,1257776119,1495756310,1779160594,2115790437,1258056521,1496089765,1779557163,2116262040,1258336938,1496423239, 1779953755,2116733670,1258617371,1496756732,1780350369,2117205326,1258897819,1497090243,1780747005,2117677009,1259178283,1497423773,1781143663,2118148717,1259458763,1497757322, 1781540344,2118620452,1259739258,1498090888,1781937046,2119092213,1260019769,1498424474,1782333770,2119564001,1260300295,1498758078,1782730517,2120035814,1260580837,1499091701, 1783127285,2120507654,1260861395,1499425342,1783524076,2120979521,1261141968,1499759002,1783920888,2121451413,1261422557,1500092680,1784317723,2121923332,1261703162,1500426377, 1784714580,2122395277,1261983782,1500760092,1785111459,2122867248,1262264418,1501093826,1785508360,2123339245,1262545069,1501427579,1785905283,2123811269,1262825736,1501761350, 1786302228,2124283319,1263106418,1502095140,1786699195,2124755395,1263387116,1502428948,1787096184,2125227497,1263667830,1502762775,1787493195,2125699625,1263948559,1503096620, 1787890228,2126171780,1264229304,1503430484,1788287283,2126643961,1264510065,1503764366,1788684361,2127116168,1264790841,1504098267,1789081460,2127588402,1265071633,1504432186, 1789478581,2128060661,1265352440,1504766124,1789875725,2128532947,1265633263,1505100081,1790272890,2129005259,1265914101,1505434056,1790670078,2129477597,1266194955,1505768049, 1791067287,2129949962,1266475824,1506102061,1791464519,2130422352,1266756710,1506436092,1791861772,2130894769,1267037610,1506770141,1792259048,2131367212,1267318526,1507104209, 1792656346,2131839681,1267599458,1507438295,1793053665,2132312176,1267880406,1507772399,1793451007,2132784698,1268161369,1508106522,1793848370,2133257245,1268442347,1508440664, 1794245756,2133729819,1268723341,1508774824,1794643164,2134202419,1269004351,1509109003,1795040593,2134675045,1269285376,1509443200,1795438045,2135147697,1269566417,1509777416, 1795835518,2135620376,1269847473,1510111650,1796233014,2136093081,1270128545,1510445902,1796630532,2136565811,1270409632,1510780174,1797028071,2137038568,1270690735,1511114463, 1797425633,2137511351,1270971854,1511448771,1797823216,2137984161,1271252988,1511783098,1798220822,2138456996,1271534137,1512117443,1798618450,2138929857,1271815302,1512451807, 1799016099,2139402745,1272096483,1512786189,1799413771,2139875659,1272377679,1513120589,1799811464,2140348599,1272658891,1513455008,1800209179,2140821565,1272940118,1513789446, 1800606917,2141294557,1273221361,1514123902,1801004676,2141767575,1273502619,1514458376,1801402457,2142240619,1273783893,1514792869,1801800261,2142713690,1274065183,1515127380, 1802198086,2143186787,1274346488,1515461910,1802595933,2143659909,1274627808,1515796458,1802993802,2144133058,1274909144,1516131025,1803391693,2144606233,1275190496,1516465610, 1803789607,2145079434,1275471863,1516800214,1804187542,2145552661,1275753245,1517134836,1804585498,2146025914,1276034643,1517469477,1804983477,2146499194,1276316057,1517804136, 1805381478,2146972499,1276597486,1518138813,1805779501,2147445831,1276878930,1518473509,1806177546,1073959594,1277160391,1518808223,1806575612,1074196286,1277441866,1519142956, 1806973701,1074432991,1277723357,1519477707,1807371811,1074669709,1278004864,1519812477,1807769944,1074906440,1278286386,1520147265,1808168098,1075143184,1278567924,1520482072, 1808566274,1075379941,1278849477,1520816897,1808964472,1075616711,1279131045,1521151740,1809362692,1075853494,1279412629,1521486602,1809760934,1076090290,1279694229,1521821482, 1810159198,1076327099,1279975844,1522156381,1810557484,1076563921,1280257475,1522491298,1810955792,1076800756,1280539121,1522826234,1811354121,1077037605,1280820782,1523161188, 1811752473,1077274466,1281102459,1523496160,1812150846,1077511340,1281384152,1523831151,1812549242,1077748227,1281665860,1524166160,1812947659,1077985128,1281947584,1524501187, 1813346098,1078222041,1282229323,1524836233,1813744559,1078458967,1282511077,1525171298,1814143042,1078695906,1282792847,1525506381,1814541547,1078932859,1283074632,1525841482, 1814940073,1079169824,1283356433,1526176601,1815338622,1079406803,1283638250,1526511739,1815737192,1079643794,1283920081,1526846896,1816135784,1079880798,1284201929,1527182071, 1816534398,1080117816,1284483791,1527517264,1816933034,1080354846,1284765670,1527852475,1817331692,1080591889,1285047563,1528187705,1817730372,1080828946,1285329472,1528522954, 1818129074,1081066015,1285611397,1528858220,1818527797,1081303098,1285893337,1529193506,1818926542,1081540193,1286175293,1529528809,1819325310,1081777301,1286457264,1529864131, 1819724099,1082014423,1286739250,1530199471,1820122909,1082251557,1287021252,1530534830,1820521742,1082488704,1287303269,1530870207,1820920597,1082725865,1287585302,1531205602, 1821319473,1082963038,1287867350,1531541016,1821718371,1083200224,1288149414,1531876448,1822117291,1083437424,1288431493,1532211898,1822516233,1083674636,1288713587,1532547367, 1822915197,1083911861,1288995697,1532882854,1823314183,1084149099,1289277823,1533218360,1823713190,1084386351,1289559964,1533553884,1824112219,1084623615,1289842120,1533889426, 1824511270,1084860892,1290124292,1534224987,1824910343,1085098182,1290406479,1534560566,1825309438,1085335485,1290688681,1534896163,1825708554,1085572801,1290970899,1535231779, 1826107693,1085810130,1291253133,1535567413,1826506853,1086047472,1291535381,1535903065,1826906035,1086284827,1291817646,1536238736,1827305238,1086522195,1292099925,1536574425, 1827704464,1086759576,1292382220,1536910132,1828103711,1086996970,1292664531,1537245858,1828502980,1087234377,1292946857,1537581602,1828902271,1087471797,1293229198,1537917364, 1829301584,1087709230,1293511555,1538253145,1829700919,1087946675,1293793927,1538588944,1830100275,1088184134,1294076315,1538924761,1830499653,1088421606,1294358718,1539260596, 1830899053,1088659090,1294641136,1539596450,1831298475,1088896588,1294923570,1539932323,1831697918,1089134098,1295206019,1540268213,1832097383,1089371622,1295488484,1540604122, 1832496870,1089609158,1295770964,1540940049,1832896379,1089846708,1296053459,1541275995,1833295910,1090084270,1296335970,1541611959,1833695462,1090321845,1296618496,1541947941, 1834095036,1090559433,1296901037,1542283941,1834494632,1090797034,1297183594,1542619960,1834894250,1091034648,1297466167,1542955997,1835293889,1091272275,1297748754,1543292052, 1835693550,1091509915,1298031358,1543628126,1836093233,1091747568,1298313976,1543964218,1836492938,1091985234,1298596610,1544300328,1836892664,1092222913,1298879259,1544636456, 1837292412,1092460604,1299161924,1544972603,1837692182,1092698309,1299444604,1545308768,1838091974,1092936027,1299727299,1545644952,1838491787,1093173757,1300010010,1545981153, 1838891622,1093411500,1300292736,1546317373,1839291479,1093649257,1300575477,1546653611,1839691358,1093887026,1300858234,1546989868,1840091258,1094124808,1301141006,1547326143, 1840491180,1094362603,1301423794,1547662436,1840891124,1094600411,1301706597,1547998747,1841291089,1094838232,1301989415,1548335076,1841691076,1095076066,1302272249,1548671424, 1842091085,1095313913,1302555098,1549007790,1842491116,1095551772,1302837962,1549344175,1842891168,1095789645,1303120842,1549680577,1843291242,1096027530,1303403737,1550016998, 1843691338,1096265429,1303686648,1550353437,1844091456,1096503340,1303969573,1550689894,1844491595,1096741264,1304252515,1551026370,1844891756,1096979201,1304535471,1551362864, 1845291938,1097217151,1304818443,1551699376,1845692143,1097455114,1305101430,1552035906,1846092369,1097693090,1305384432,1552372455,1846492616,1097931079,1305667450,1552709022, 1846892886,1098169080,1305950484,1553045607,1847293177,1098407095,1306233532,1553382210,1847693489,1098645122,1306516596,1553718832,1848093824,1098883162,1306799675,1554055471, 1848494180,1099121215,1307082770,1554392129,1848894558,1099359281,1307365879,1554728806,1849294957,1099597360,1307649005,1555065500,1849695378,1099835452,1307932145,1555402213, 1850095821,1100073557,1308215301,1555738944,1850496286,1100311675,1308498472,1556075693,1850896772,1100549805,1308781659,1556412460,1851297280,1100787948,1309064860,1556749246, 1851697809,1101026105,1309348077,1557086050,1852098360,1101264274,1309631310,1557422872,1852498933,1101502456,1309914558,1557759712,1852899527,1101740651,1310197821,1558096570, 1853300143,1101978858,1310481099,1558433447,1853700781,1102217079,1310764393,1558770342,1854101441,1102455313,1311047702,1559107255,1854502122,1102693559,1311331026,1559444186, 1854902824,1102931818,1311614366,1559781136,1855303549,1103170090,1311897720,1560118103,1855704295,1103408375,1312181091,1560455089,1856105062,1103646673,1312464476,1560792093, 1856505851,1103884984,1312747877,1561129115,1856906662,1104123307,1313031293,1561466156,1857307495,1104361644,1313314724,1561803214,1857708349,1104599993,1313598171,1562140291, 1858109225,1104838355,1313881633,1562477386,1858510122,1105076730,1314165110,1562814499,1858911041,1105315118,1314448603,1563151631,1859311982,1105553519,1314732111,1563488780, 1859712944,1105791932,1315015634,1563825948,1860113928,1106030359,1315299172,1564163134,1860514933,1106268798,1315582726,1564500338,1860915960,1106507250,1315866295,1564837560, 1861317009,1106745715,1316149879,1565174800,1861718079,1106984193,1316433478,1565512059,1862119171,1107222684,1316717093,1565849336,1862520285,1107461187,1317000723,1566186631, 1862921420,1107699703,1317284369,1566523944,1863322576,1107938233,1317568029,1566861275,1863723755,1108176775,1317851705,1567198624,1864124954,1108415330,1318135396,1567535992, 1864526176,1108653897,1318419103,1567873377,1864927419,1108892478,1318702824,1568210781,1865328683,1109131071,1318986561,1568548203,1865729970,1109369677,1319270313,1568885643, 1866131277,1109608296,1319554081,1569223102,1866532607,1109846928,1319837864,1569560578,1866933958,1110085573,1320121662,1569898073,1867335330,1110324230,1320405475,1570235585, 1867736724,1110562901,1320689303,1570573116,1868138140,1110801584,1320973147,1570910665,1868539577,1111040280,1321257006,1571248232,1868941036,1111278989,1321540880,1571585817, 1869342516,1111517710,1321824769,1571923421,1869744018,1111756445,1322108674,1572261042,1870145541,1111995192,1322392594,1572598682,1870547086,1112233952,1322676529,1572936339, 1870948653,1112472725,1322960480,1573274015,1871350241,1112711511,1323244445,1573611709,1871751851,1112950309,1323528426,1573949421,1872153482,1113189120,1323812422,1574287152, 1872555134,1113427945,1324096434,1574624900,1872956809,1113666782,1324380460,1574962666,1873358505,1113905631,1324664502,1575300451,1873760222,1114144494,1324948559,1575638254, 1874161961,1114383369,1325232631,1575976074,1874563721,1114622257,1325516719,1576313913,1874965503,1114861158,1325800822,1576651770,1875367306,1115100072,1326084940,1576989645, 1875769131,1115338999,1326369073,1577327538,1876170978,1115577938,1326653221,1577665450,1876572846,1115816890,1326937385,1578003379,1876974735,1116055855,1327221563,1578341326, 1877376646,1116294833,1327505757,1578679292,1877778579,1116533823,1327789967,1579017276,1878180533,1116772827,1328074191,1579355277,1878582509,1117011843,1328358431,1579693297, 1878984506,1117250872,1328642686,1580031335,1879386524,1117489913,1328926956,1580369391,1879788564,1117728968,1329211241,1580707465,1880190626,1117968035,1329495541,1581045557, 1880592709,1118207115,1329779857,1581383667,1880994813,1118446208,1330064188,1581721796,1881396939,1118685313,1330348534,1582059942,1881799087,1118924432,1330632895,1582398106, 1882201256,1119163563,1330917272,1582736289,1882603446,1119402707,1331201663,1583074489,1883005658,1119641863,1331486070,1583412708,1883407892,1119881033,1331770492,1583750945, 1883810147,1120120215,1332054929,1584089199,1884212423,1120359410,1332339382,1584427472,1884614721,1120598618,1332623849,1584765763,1885017040,1120837838,1332908332,1585104072, 1885419381,1121077071,1333192830,1585442399,1885821744,1121316318,1333477343,1585780744,1886224127,1121555576,1333761871,1586119107,1886626533,1121794848,1334046415,1586457488, 1887028959,1122034132,1334330973,1586795887,1887431407,1122273429,1334615547,1587134304,1887833877,1122512739,1334900136,1587472740,1888236368,1122752062,1335184740,1587811193, 1888638880,1122991397,1335469360,1588149664,1889041414,1123230745,1335753994,1588488154,1889443970,1123470106,1336038644,1588826661,1889846547,1123709480,1336323308,1589165186, 1890249145,1123948866,1336607988,1589503730,1890651764,1124188265,1336892684,1589842291,1891054406,1124427677,1337177394,1590180871,1891457068,1124667102,1337462119,1590519468, 1891859752,1124906539,1337746860,1590858084,1892262458,1125145989,1338031616,1591196717,1892665184,1125385452,1338316386,1591535369,1893067933,1125624927,1338601172,1591874038, 1893470702,1125864416,1338885974,1592212726,1893873494,1126103917,1339170790,1592551432,1894276306,1126343430,1339455621,1592890155,1894679140,1126582957,1339740468,1593228897, 1895081995,1126822496,1340025330,1593567657,1895484872,1127062048,1340310207,1593906434,1895887770,1127301613,1340595099,1594245230,1896290690,1127541190,1340880006,1594584043, 1896693631,1127780780,1341164928,1594922875,1897096593,1128020383,1341449866,1595261725,1897499577,1128259999,1341734818,1595600592,1897902582,1128499627,1342019786,1595939478, 1898305609,1128739268,1342304769,1596278382,1898708657,1128978922,1342589767,1596617303,1899111726,1129218589,1342874780,1596956243,1899514817,1129458268,1343159808,1597295200, 1899917929,1129697960,1343444851,1597634176,1900321063,1129937664,1343729910,1597973169,1900724218,1130177382,1344014983,1598312181,1901127394,1130417112,1344300072,1598651210, 1901530592,1130656854,1344585176,1598990258,1901933811,1130896610,1344870295,1599329323,1902337051,1131136378,1345155429,1599668407,1902740313,1131376159,1345440578,1600007508, 1903143596,1131615953,1345725742,1600346628,1903546900,1131855759,1346010922,1600685765,1903950226,1132095578,1346296116,1601024920,1904353574,1132335410,1346581326,1601364093, 1904756942,1132575254,1346866550,1601703285,1905160332,1132815111,1347151790,1602042494,1905563743,1133054981,1347437045,1602381721,1905967176,1133294863,1347722315,1602720966, 1906370630,1133534759,1348007600,1603060229,1906774105,1133774666,1348292900,1603399510,1907177602,1134014587,1348578215,1603738809,1907581120,1134254520,1348863546,1604078126, 1907984660,1134494466,1349148891,1604417461,1908388220,1134734425,1349434252,1604756813,1908791802,1134974396,1349719627,1605096184,1909195406,1135214380,1350005018,1605435573, 1909599030,1135454377,1350290424,1605774979,1910002677,1135694386,1350575845,1606114404,1910406344,1135934408,1350861281,1606453846,1910810033,1136174443,1351146732,1606793307, 1911213743,1136414491,1351432198,1607132785,1911617474,1136654551,1351717679,1607472281,1912021227,1136894623,1352003175,1607811795,1912425001,1137134709,1352288686,1608151327, 1912828796,1137374807,1352574213,1608490878,1913232613,1137614918,1352859754,1608830445,1913636450,1137855041,1353145311,1609170031,1914040310,1138095177,1353430882,1609509635, 1914444190,1138335326,1353716469,1609849257,1914848092,1138575488,1354002071,1610188896,1915252015,1138815662,1354287688,1610528554,1915655960,1139055849,1354573319,1610868229, 1916059925,1139296048,1354858966,1611207923,1916463912,1139536260,1355144628,1611547634,1916867921,1139776485,1355430305,1611887363,1917271950,1140016722,1355715997,1612227110, 1917676001,1140256972,1356001705,1612566875,1918080073,1140497235,1356287427,1612906658,1918484167,1140737511,1356573164,1613246459,1918888281,1140977799,1356858916,1613586277, 1919292417,1141218099,1357144683,1613926114,1919696575,1141458413,1357430466,1614265968,1920100753,1141698739,1357716263,1614605840,1920504953,1141939077,1358002076,1614945731, 1920909174,1142179429,1358287903,1615285639,1921313417,1142419793,1358573746,1615625565,1921717680,1142660169,1358859603,1615965508,1922121965,1142900558,1359145476,1616305470, 1922526271,1143140960,1359431363,1616645450,1922930599,1143381375,1359717266,1616985447,1923334947,1143621802,1360003184,1617325463,1923739317,1143862242,1360289116,1617665496, 1924143708,1144102694,1360575064,1618005547,1924548121,1144343159,1360861027,1618345616,1924952554,1144583637,1361147005,1618685703,1925357009,1144824127,1361432998,1619025807, 1925761486,1145064630,1361719005,1619365930,1926165983,1145305146,1362005028,1619706070,1926570502,1145545674,1362291066,1620046228,1926975041,1145786215,1362577119,1620386405, 1927379602,1146026768,1362863187,1620726599,1927784185,1146267334,1363149270,1621066810,1928188788,1146507913,1363435368,1621407040,1928593413,1146748504,1363721481,1621747288, 1928998059,1146989108,1364007609,1622087553,1929402726,1147229725,1364293751,1622427836,1929807415,1147470354,1364579909,1622768137,1930212124,1147710996,1364866082,1623108456, 1930616855,1147951650,1365152270,1623448793,1931021607,1148192317,1365438473,1623789147,1931426381,1148432997,1365724691,1624129520,1931831175,1148673689,1366010924,1624469910, 1932235991,1148914394,1366297172,1624810318,1932640828,1149155112,1366583435,1625150744,1933045686,1149395842,1366869713,1625491188,1933450565,1149636584,1367156006,1625831649, 1933855466,1149877340,1367442314,1626172129,1934260387,1150118108,1367728637,1626512626,1934665330,1150358888,1368014974,1626853141,1935070294,1150599681,1368301327,1627193674, 1935475280,1150840487,1368587695,1627534225,1935880286,1151081305,1368874078,1627874793,1936285314,1151322136,1369160476,1628215379,1936690363,1151562979,1369446889,1628555983, 1937095433,1151803836,1369733316,1628896605,1937500524,1152044704,1370019759,1629237245,1937905636,1152285585,1370306217,1629577903,1938310770,1152526479,1370592689,1629918578, 1938715925,1152767386,1370879177,1630259271,1939121100,1153008305,1371165680,1630599982,1939526297,1153249236,1371452197,1630940711,1939931516,1153490181,1371738730,1631281457, 1940336755,1153731137,1372025277,1631622222,1940742016,1153972107,1372311840,1631963004,1941147297,1154213089,1372598417,1632303804,1941552600,1154454083,1372885010,1632644621, 1941957924,1154695090,1373171617,1632985457,1942363269,1154936110,1373458239,1633326310,1942768635,1155177142,1373744876,1633667181,1943174023,1155418187,1374031529,1634008070, 1943579432,1155659244,1374318196,1634348977,1943984861,1155900314,1374604878,1634689901,1944390312,1156141397,1374891575,1635030843,1944795784,1156382492,1375178287,1635371803, 1945201277,1156623600,1375465014,1635712781,1945606792,1156864720,1375751756,1636053776,1946012327,1157105853,1376038513,1636394790,1946417883,1157346998,1376325284,1636735821, 1946823461,1157588156,1376612071,1637076870,1947229060,1157829326,1376898873,1637417936,1947634680,1158070509,1377185689,1637759020,1948040321,1158311705,1377472521,1638100123, 1948445983,1158552913,1377759367,1638441242,1948851666,1158794134,1378046229,1638782380,1949257371,1159035367,1378333105,1639123535,1949663096,1159276613,1378619996,1639464708, 1950068843,1159517871,1378906902,1639805899,1950474610,1159759142,1379193824,1640147108,1950880399,1160000426,1379480760,1640488334,1951286209,1160241722,1379767710,1640829578, 1951692040,1160483030,1380054676,1641170840,1952097892,1160724351,1380341657,1641512120,1952503765,1160965685,1380628653,1641853417,1952909660,1161207031,1380915663,1642194732, 1953315575,1161448390,1381202689,1642536065,1953721512,1161689761,1381489729,1642877415,1954127469,1161931145,1381776785,1643218784,1954533448,1162172541,1382063855,1643560170, 1954939447,1162413950,1382350940,1643901573,1955345468,1162655372,1382638040,1644242995,1955751510,1162896806,1382925155,1644584434,1956157573,1163138252,1383212285,1644925891, 1956563657,1163379711,1383499430,1645267366,1956969762,1163621183,1383786589,1645608858,1957375888,1163862667,1384073764,1645950368,1957782036,1164104163,1384360954,1646291896, 1958188204,1164345672,1384648158,1646633441,1958594393,1164587194,1384935377,1646975004,1959000604,1164828728,1385222611,1647316585,1959406835,1165070275,1385509860,1647658184, 1959813088,1165311834,1385797124,1647999800,1960219361,1165553406,1386084403,1648341434,1960625656,1165794990,1386371697,1648683086,1961031972,1166036587,1386659005,1649024755, 1961438309,1166278196,1386946329,1649366442,1961844666,1166519818,1387233667,1649708147,1962251045,1166761452,1387521020,1650049870,1962657445,1167003099,1387808389,1650391610, 1963063866,1167244758,1388095772,1650733368,1963470308,1167486430,1388383169,1651075143,1963876771,1167728115,1388670582,1651416937,1964283255,1167969811,1388958010,1651758748, 1964689760,1168211521,1389245452,1652100576,1965096286,1168453243,1389532910,1652442423,1965502833,1168694977,1389820382,1652784287,1965909401,1168936724,1390107869,1653126168, 1966315991,1169178483,1390395371,1653468068,1966722601,1169420255,1390682888,1653809985,1967129232,1169662039,1390970419,1654151919,1967535884,1169903836,1391257966,1654493872, 1967942557,1170145646,1391545527,1654835842,1968349252,1170387467,1391833104,1655177830,1968755967,1170629302,1392120695,1655519835,1969162703,1170871149,1392408301,1655861858, 1969569460,1171113008,1392695921,1656203899,1969976239,1171354880,1392983557,1656545957,1970383038,1171596764,1393271208,1656888033,1970789858,1171838661,1393558873,1657230127, 1971196699,1172080570,1393846553,1657572238,1971603562,1172322492,1394134248,1657914367,1972010445,1172564426,1394421958,1658256514,1972417349,1172806373,1394709683,1658598678, 1972824274,1173048332,1394997422,1658940860,1973231220,1173290303,1395285177,1659283060,1973638188,1173532288,1395572946,1659625277,1974045176,1173774284,1395860730,1659967512, 1974452185,1174016293,1396148529,1660309764,1974859215,1174258315,1396436343,1660652035,1975266266,1174500349,1396724171,1660994322,1975673338,1174742395,1397012015,1661336628, 1976080431,1174984454,1397299873,1661678951,1976487545,1175226526,1397587746,1662021292,1976894680,1175468610,1397875634,1662363650,1977301836,1175710706,1398163537,1662706026, 1977709013,1175952815,1398451454,1663048419,1978116211,1176194936,1398739387,1663390831,1978523430,1176437070,1399027334,1663733259,1978930669,1176679216,1399315296,1664075706, 1979337930,1176921375,1399603273,1664418170,1979745212,1177163546,1399891264,1664760652,1980152514,1177405729,1400179271,1665103151,1980559838,1177647925,1400467292,1665445668, 1980967182,1177890134,1400755328,1665788202,1981374548,1178132355,1401043379,1666130754,1981781934,1178374588,1401331444,1666473324,1982189341,1178616834,1401619525,1666815912, 1982596770,1178859092,1401907620,1667158517,1983004219,1179101363,1402195730,1667501139,1983411689,1179343646,1402483855,1667843779,1983819180,1179585942,1402771995,1668186437, 1984226692,1179828250,1403060149,1668529112,1984634225,1180070570,1403348319,1668871805,1985041779,1180312903,1403636503,1669214516,1985449353,1180555249,1403924701,1669557244, 1985856949,1180797607,1404212915,1669899990,1986264566,1181039977,1404501144,1670242753,1986672203,1181282360,1404789387,1670585534,1987079861,1181524755,1405077645,1670928332, 1987487541,1181767162,1405365918,1671271148,1987895241,1182009582,1405654205,1671613982,1988302962,1182252015,1405942508,1671956833,1988710704,1182494460,1406230825,1672299702, 1989118467,1182736917,1406519157,1672642588,1989526251,1182979386,1406807503,1672985492,1989934056,1183221869,1407095865,1673328414,1990341881,1183464363,1407384241,1673671353, 1990749728,1183706870,1407672632,1674014310,1991157595,1183949390,1407961038,1674357284,1991565483,1184191921,1408249458,1674700276,1991973392,1184434466,1408537894,1675043285, 1992381323,1184677022,1408826344,1675386312,1992789273,1184919591,1409114809,1675729356,1993197245,1185162173,1409403288,1676072418,1993605238,1185404767,1409691783,1676415498, 1994013251,1185647373,1409980292,1676758595,1994421286,1185889992,1410268816,1677101710,1994829341,1186132623,1410557354,1677444842,1995237417,1186375266,1410845908,1677787992, 1995645514,1186617922,1411134476,1678131159,1996053632,1186860591,1411423059,1678474344,1996461771,1187103271,1411711657,1678817546,1996869931,1187345965,1412000269,1679160766, 1997278111,1187588670,1412288896,1679504004,1997686312,1187831388,1412577538,1679847259,1998094535,1188074119,1412866195,1680190532,1998502778,1188316861,1413154866,1680533822, 1998911042,1188559616,1413443553,1680877129,1999319326,1188802384,1413732253,1681220454,1999727632,1189045164,1414020969,1681563797,2000135958,1189287956,1414309699,1681907157, 2000544306,1189530761,1414598445,1682250535,2000952674,1189773578,1414887204,1682593930,2001361063,1190016408,1415175979,1682937343,2001769472,1190259250,1415464768,1683280774, 2002177903,1190502104,1415753572,1683624221,2002586355,1190744971,1416042391,1683967687,2002994827,1190987850,1416331225,1684311170,2003403320,1191230741,1416620073,1684654670, 2003811834,1191473645,1416908936,1684998188,2004220369,1191716561,1417197814,1685341723,2004628924,1191959490,1417486706,1685685276,2005037500,1192202431,1417775613,1686028847, 2005446098,1192445384,1418064535,1686372434,2005854716,1192688350,1418353472,1686716040,2006263354,1192931328,1418642423,1687059663,2006672014,1193174318,1418931389,1687403303, 2007080695,1193417321,1419220369,1687746961,2007489396,1193660336,1419509365,1688090637,2007898118,1193903364,1419798375,1688434329,2008306861,1194146404,1420087400,1688778040, 2008715624,1194389456,1420376439,1689121768,2009124409,1194632521,1420665494,1689465513,2009533214,1194875598,1420954563,1689809276,2009942040,1195118687,1421243646,1690153056, 2010350887,1195361789,1421532745,1690496854,2010759754,1195604903,1421821858,1690840669,2011168643,1195848030,1422110985,1691184502,2011577552,1196091169,1422400128,1691528352, 2011986482,1196334320,1422689285,1691872220,2012395433,1196577483,1422978457,1692216105,2012804404,1196820659,1423267643,1692560008,2013213396,1197063848,1423556845,1692903928, 2013622409,1197307048,1423846060,1693247866,2014031443,1197550261,1424135291,1693591821,2014440498,1197793486,1424424536,1693935793,2014849573,1198036724,1424713796,1694279783, 2015258669,1198279974,1425003071,1694623791,2015667786,1198523236,1425292360,1694967816,2016076924,1198766511,1425581664,1695311858,2016486082,1199009798,1425870983,1695655918, 2016895262,1199253098,1426160316,1695999995,2017304461,1199496409,1426449664,1696344090,2017713682,1199739733,1426739027,1696688202,2018122924,1199983070,1427028404,1697032332, 2018532186,1200226419,1427317797,1697376479,2018941469,1200469780,1427607203,1697720644,2019350772,1200713153,1427896625,1698064826,2019760097,1200956539,1428186061,1698409025, 2020169442,1201199937,1428475511,1698753242,2020578808,1201443347,1428764977,1699097476,2020988194,1201686770,1429054457,1699441728,2021397602,1201930205,1429343952,1699785997, 2021807030,1202173652,1429633461,1700130284,2022216479,1202417112,1429922985,1700474588,2022625948,1202660584,1430212524,1700818909,2023035438,1202904069,1430502077,1701163248, 2023444949,1203147565,1430791645,1701507604,2023854481,1203391074,1431081228,1701851978,2024264033,1203634596,1431370825,1702196369,2024673607,1203878129,1431660437,1702540778, 2025083200,1204121675,1431950063,1702885204,2025492815,1204365233,1432239705,1703229647,2025902450,1204608804,1432529361,1703574108,2026312106,1204852387,1432819031,1703918586, 2026721783,1205095982,1433108716,1704263082,2027131480,1205339590,1433398416,1704607595,2027541198,1205583210,1433688131,1704952126,2027950937,1205826842,1433977860,1705296673, 2028360697,1206070486,1434267603,1705641239,2028770477,1206314143,1434557362,1705985821,2029180278,1206557812,1434847135,1706330421,2029590099,1206801493,1435136922,1706675039, 2029999942,1207045187,1435426725,1707019674,2030409805,1207288893,1435716541,1707364326,2030819688,1207532611,1436006373,1707708996,2031229592,1207776342,1436296219,1708053683, 2031639517,1208020085,1436586080,1708398387,2032049463,1208263840,1436875955,1708743109,2032459429,1208507607,1437165845,1709087848,2032869417,1208751387,1437455750,1709432605, 2033279424,1208995179,1437745669,1709777379,2033689453,1209238983,1438035603,1710122170,2034099502,1209482800,1438325551,1710466979,2034509571,1209726629,1438615514,1710811805, 2034919662,1209970470,1438905492,1711156649,2035329773,1210214324,1439195484,1711501510,2035739904,1210458189,1439485491,1711846388,2036150057,1210702067,1439775513,1712191284, 2036560230,1210945958,1440065549,1712536197,2036970423,1211189860,1440355599,1712881127,2037380638,1211433775,1440645665,1713226075,2037790873,1211677702,1440935745,1713571040, 2038201128,1211921642,1441225839,1713916022,2038611405,1212165593,1441515948,1714261022,2039021701,1212409557,1441806072,1714606039,2039432019,1212653534,1442096210,1714951074, 2039842357,1212897522,1442386363,1715296126,2040252716,1213141523,1442676531,1715641195,2040663095,1213385536,1442966713,1715986282,2041073495,1213629562,1443256910,1716331386, 2041483916,1213873599,1443547121,1716676507,2041894358,1214117649,1443837347,1717021646,2042304819,1214361711,1444127587,1717366802,2042715302,1214605786,1444417842,1717711975, 2043125805,1214849872,1444708112,1718057166,2043536329,1215093971,1444998396,1718402374,2043946874,1215338082,1445288695,1718747599,2044357439,1215582206,1445579008,1719092842, 2044768024,1215826342,1445869336,1719438102,2045178631,1216070489,1446159678,1719783379,2045589258,1216314650,1446450036,1720128674,2045999905,1216558822,1446740407,1720473986, 2046410573,1216803007,1447030793,1720819315,2046821262,1217047204,1447321194,1721164662,2047231971,1217291413,1447611609,1721510026,2047642701,1217535635,1447902039,1721855407, 2048053452,1217779868,1448192484,1722200806,2048464223,1218024114,1448482943,1722546222,2048875014,1218268372,1448773417,1722891655,2049285827,1218512643,1449063905,1723237106, 2049696660,1218756926,1449354407,1723582573,2050107513,1219001221,1449644925,1723928059,2050518387,1219245528,1449935457,1724273561,2050929282,1219489847,1450226003,1724619081, 2051340197,1219734179,1450516564,1724964618,2051751133,1219978523,1450807139,1725310173,2052162089,1220222879,1451097729,1725655744,2052573066,1220467247,1451388334,1726001333, 2052984064,1220711628,1451678953,1726346940,2053395082,1220956021,1451969587,1726692563,2053806121,1221200426,1452260235,1727038204,2054217180,1221444843,1452550898,1727383863, 2054628260,1221689273,1452841575,1727729538,2055039360,1221933714,1453132267,1728075231,2055450481,1222178168,1453422973,1728420941,2055861622,1222422634,1453713694,1728766669, 2056272784,1222667113,1454004430,1729112413,2056683967,1222911603,1454295180,1729458175,2057095170,1223156106,1454585944,1729803954,2057506394,1223400621,1454876723,1730149751, 2057917638,1223645149,1455167517,1730495565,2058328903,1223889688,1455458325,1730841396,2058740188,1224134240,1455749148,1731187244,2059151494,1224378804,1456039985,1731533110, 2059562821,1224623380,1456330837,1731878993,2059974168,1224867968,1456621703,1732224893,2060385535,1225112569,1456912584,1732570810,2060796923,1225357182,1457203479,1732916745, 2061208332,1225601807,1457494389,1733262697,2061619761,1225846444,1457785313,1733608666,2062031210,1226091093,1458076252,1733954653,2062442681,1226335755,1458367205,1734300657, 2062854171,1226580429,1458658173,1734646678,2063265682,1226825115,1458949155,1734992716,2063677214,1227069813,1459240152,1735338772,2064088766,1227314523,1459531164,1735684844, 2064500339,1227559246,1459822190,1736030934,2064911932,1227803981,1460113230,1736377042,2065323546,1228048728,1460404285,1736723166,2065735180,1228293487,1460695354,1737069308, 2066146835,1228538259,1460986438,1737415467,2066558510,1228783042,1461277536,1737761643,2066970206,1229027838,1461568649,1738107837,2067381923,1229272646,1461859777,1738454048, 2067793659,1229517466,1462150919,1738800276,2068205417,1229762298,1462442075,1739146521,2068617194,1230007143,1462733246,1739492783,2069028993,1230252000,1463024431,1739839063, 2069440811,1230496869,1463315631,1740185360,2069852651,1230741750,1463606845,1740531674,2070264510,1230986643,1463898074,1740878005,2070676391,1231231548,1464189318,1741224354, 2071088291,1231476466,1464480575,1741570720,2071500213,1231721396,1464771848,1741917103,2071912154,1231966338,1465063134,1742263503,2072324116,1232211292,1465354436,1742609921, 2072736099,1232456258,1465645751,1742956355,2073148102,1232701237,1465937081,1743302807,2073560126,1232946227,1466228426,1743649277,2073972170,1233191230,1466519785,1743995763, 2074384234,1233436245,1466811159,1744342266,2074796319,1233681273,1467102547,1744688787,2075208425,1233926312,1467393949,1745035325,2075620551,1234171363,1467685366,1745381880, 2076032697,1234416427,1467976798,1745728453,2076444864,1234661503,1468268244,1746075042,2076857051,1234906591,1468559704,1746421649,2077269259,1235151691,1468851179,1746768273, 2077681487,1235396803,1469142669,1747114914,2078093736,1235641928,1469434172,1747461573,2078506005,1235887065,1469725691,1747808248,2078918294,1236132213,1470017223,1748154941, 2079330604,1236377374,1470308770,1748501651,2079742934,1236622547,1470600332,1748848378,2080155285,1236867733,1470891908,1749195123,2080567657,1237112930,1471183499,1749541884, 2080980048,1237358140,1471475104,1749888663,2081392460,1237603361,1471766723,1750235459,2081804893,1237848595,1472058357,1750582272,2082217346,1238093841,1472350005,1750929102, 2082629819,1238339100,1472641668,1751275949,2083042313,1238584370,1472933345,1751622814,2083454827,1238829652,1473225037,1751969696,2083867362,1239074947,1473516743,1752316595, 2084279917,1239320254,1473808463,1752663511,2084692493,1239565572,1474100198,1753010444,2085105089,1239810903,1474391948,1753357394,2085517705,1240056247,1474683711,1753704362, 2085930342,1240301602,1474975490,1754051347,2086342999,1240546969,1475267282,1754398349,2086755676,1240792349,1475559089,1754745368,2087168374,1241037740,1475850911,1755092404, 2087581093,1241283144,1476142747,1755439457,2087993831,1241528560,1476434597,1755786528,2088406591,1241773988,1476726462,1756133616,2088819370,1242019429,1477018341,1756480721, 2089232170,1242264881,1477310235,1756827843,2089644991,1242510345,1477602143,1757174982,2090057831,1242755822,1477894066,1757522138,2090470692,1243001311,1478186002,1757869311, 2090883574,1243246811,1478477954,1758216502,2091296476,1243492324,1478769919,1758563710,2091709398,1243737849,1479061900,1758910935,2092122341,1243983387,1479353894,1759258177, 2092535304,1244228936,1479645903,1759605436,2092948287,1244474497,1479937927,1759952712,2093361291,1244720071,1480229964,1760300005,2093774315,1244965656,1480522016,1760647316, 2094187360,1245211254,1480814083,1760994644,2094600424,1245456864,1481106164,1761341988,2095013510,1245702486,1481398259,1761689350,2095426615,1245948120,1481690369,1762036729, 2095839741,1246193766,1481982493,1762384125,2096252888,1246439424,1482274632,1762731539,2096666054,1246685095,1482566785,1763078969,2097079241,1246930777,1482858952,1763426417, 2097492449,1247176472,1483151134,1763773881,2097905677,1247422179,1483443330,1764121363,2098318925,1247667897,1483735541,1764468862,2098732193,1247913628,1484027766,1764816378, 2099145482,1248159371,1484320005,1765163911,2099558791,1248405126,1484612259,1765511461,2099972121,1248650894,1484904527,1765859028,2100385470,1248896673,1485196809,1766206613, 2100798841,1249142464,1485489106,1766554214,2101212231,1249388268,1485781417,1766901833,2101625642,1249634083,1486073743,1767249468,2102039073,1249879911,1486366083,1767597121, 2102452525,1250125751,1486658437,1767944791,2102865996,1250371602,1486950806,1768292478,2103279489,1250617466,1487243189,1768640182,2103693001,1250863342,1487535587,1768987903, 2104106534,1251109230,1487827998,1769335642,2104520087,1251355131,1488120425,1769683397,2104933660,1251601043,1488412865,1770031169,2105347254,1251846967,1488705320,1770378959, 2105760868,1252092903,1488997789,1770726765,2106174502,1252338852,1489290273,1771074589,2106588157,1252584812,1489582771,1771422430,2107001832,1252830785,1489875283,1771770288, 2107415527,1253076770,1490167810,1772118162,2107829243,1253322767,1490460351,1772466054,2108242979,1253568775,1490752907,1772813963,2108656735,1253814796,1491045477,1773161890, 2109070512,1254060829,1491338061,1773509833,2109484308,1254306874,1491630659,1773857793,2109898125,1254552931,1491923272,1774205770,2110311963,1254799001,1492215899,1774553765, 2110725821,1255045082,1492508541,1774901776,2111139698,1255291175,1492801197,1775249805,2111553597,1255537280,1493093867,1775597850,2111967515,1255783398,1493386552,1775945913, 2112381454,1256029527,1493679251,1776293992,2112795413,1256275669,1493971964,1776642089,2113209392,1256521823,1494264691,1776990203,2113623392,1256767988,1494557433,1777338334, 2114037412,1257014166,1494850190,1777686481,2114451452,1257260356,1495142960,1778034646,2114865513,1257506557,1495435745,1778382828,2115279593,1257752771,1495728545,1778731027, 2115693694,1257998997,1496021358,1779079243,2116107816,1258245235,1496314186,1779427476,2116521957,1258491485,1496607028,1779775727,2116936119,1258737747,1496899885,1780123994, 2117350301,1258984021,1497192756,1780472278,2117764503,1259230308,1497485641,1780820579,2118178726,1259476606,1497778541,1781168897,2118592969,1259722916,1498071455,1781517233, 2119007232,1259969238,1498364383,1781865585,2119421515,1260215573,1498657325,1782213954,2119835818,1260461919,1498950282,1782562341,2120250142,1260708277,1499243253,1782910744, 2120664486,1260954648,1499536239,1783259164,2121078850,1261201030,1499829239,1783607602,2121493235,1261447425,1500122253,1783956056,2121907640,1261693831,1500415281,1784304528, 2122322065,1261940250,1500708324,1784653016,2122736510,1262186680,1501001381,1785001522,2123150975,1262433123,1501294452,1785350044,2123565461,1262679578,1501587538,1785698584, 2123979967,1262926044,1501880638,1786047140,2124394493,1263172523,1502173752,1786395714,2124809039,1263419014,1502466880,1786744304,2125223606,1263665516,1502760023,1787092912, 2125638193,1263912031,1503053180,1787441536,2126052800,1264158558,1503346352,1787790178,2126467427,1264405097,1503639537,1788138836,2126882074,1264651648,1503932737,1788487512, 2127296742,1264898211,1504225952,1788836204,2127711430,1265144785,1504519180,1789184914,2128126138,1265391372,1504812423,1789533640,2128540866,1265637971,1505105680,1789882384, 2128955614,1265884582,1505398952,1790231144,2129370383,1266131205,1505692237,1790579922,2129785172,1266377840,1505985537,1790928716,2130199981,1266624487,1506278852,1791277528, 2130614810,1266871146,1506572180,1791626356,2131029660,1267117817,1506865523,1791975202,2131444529,1267364500,1507158880,1792324064,2131859419,1267611195,1507452252,1792672943, 2132274329,1267857902,1507745637,1793021840,2132689259,1268104621,1508039037,1793370753,2133104210,1268351351,1508332452,1793719683,2133519180,1268598094,1508625880,1794068630, 2133934171,1268844849,1508919323,1794417595,2134349182,1269091616,1509212780,1794766576,2134764213,1269338395,1509506251,1795115574,2135179264,1269585186,1509799737,1795464589, 2135594335,1269831989,1510093236,1795813621,2136009427,1270078804,1510386751,1796162670,2136424539,1270325631,1510680279,1796511736,2136839671,1270572470,1510973821,1796860819, 2137254823,1270819321,1511267378,1797209919,2137669995,1271066184,1511560949,1797559036,2138085187,1271313059,1511854535,1797908170,2138500400,1271559946,1512148134,1798257320, 2138915633,1271806844,1512441748,1798606488,2139330886,1272053755,1512735376,1798955673,2139746159,1272300678,1513029019,1799304874,2140161452,1272547613,1513322675,1799654093, 2140576765,1272794560,1513616346,1800003328,2140992099,1273041518,1513910031,1800352581,2141407452,1273288489,1514203731,1800701850,2141822826,1273535472,1514497444,1801051136, 2142238220,1273782467,1514791172,1801400440,2142653634,1274029473,1515084914,1801749760,2143069068,1274276492,1515378671,1802099097,2143484522,1274523522,1515672441,1802448451, 2143899997,1274770565,1515966226,1802797822,2144315491,1275017620,1516260025,1803147210,2144731006,1275264686,1516553838,1803496615,2145146541,1275511765,1516847666,1803846036, 2145562096,1275758855,1517141507,1804195475,2145977671,1276005957,1517435363,1804544931,2146393266,1276253072,1517729233,1804894403,2146808881,1276500198,1518023118,1805243892, 2147224517,1276747336,1518317016,1805593399,1073820086,1276994487,1518610929,1805942922,1074027924,1277241649,1518904856,1806292462,1074235772,1277488823,1519198798,1806642019, 1074443630,1277736009,1519492753,1806991593,1074651498,1277983207,1519786723,1807341184,1074859376,1278230417,1520080707,1807690792,1075067264,1278477639,1520374705,1808040417, 1075275162,1278724873,1520668717,1808390058,1075483070,1278972119,1520962744,1808739717,1075690988,1279219377,1521256785,1809089392,1075898917,1279466647,1521550840,1809439084, 1076106855,1279713928,1521844909,1809788794,1076314803,1279961222,1522138992,1810138520,1076522762,1280208528,1522433090,1810488263,1076730730,1280455845,1522727202,1810838023, 1076938709,1280703175,1523021328,1811187799,1077146697,1280950516,1523315468,1811537593,1077354696,1281197870,1523609622,1811887404,1077562705,1281445235,1523903791,1812237231, 1077770723,1281692612,1524197974,1812587075,1077978752,1281940002,1524492171,1812936936,1078186791,1282187403,1524786382,1813286814,1078394839,1282434816,1525080608,1813636709, 1078602898,1282682241,1525374847,1813986621,1078810967,1282929678,1525669101,1814336550,1079019046,1283177127,1525963369,1814686496,1079227135,1283424588,1526257651,1815036458, 1079435234,1283672060,1526551947,1815386437,1079643343,1283919545,1526846258,1815736433,1079851462,1284167042,1527140583,1816086447,1080059591,1284414550,1527434922,1816436476, 1080267730,1284662071,1527729275,1816786523,1080475879,1284909603,1528023642,1817136587,1080684038,1285157147,1528318023,1817486667,1080892207,1285404703,1528612419,1817836765, 1081100386,1285652272,1528906829,1818186879,1081308576,1285899852,1529201253,1818537010,1081516775,1286147444,1529495691,1818887158,1081724984,1286395047,1529790143,1819237323, 1081933203,1286642663,1530084610,1819587504,1082141432,1286890291,1530379090,1819937703,1082349672,1287137931,1530673585,1820287918,1082557921,1287385582,1530968094,1820638150, 1082766180,1287633246,1531262617,1820988399,1082974450,1287880921,1531557154,1821338665,1083182729,1288128608,1531851706,1821688948,1083391018,1288376307,1532146272,1822039247, 1083599318,1288624018,1532440851,1822389564,1083807627,1288871741,1532735445,1822739897,1084015947,1289119476,1533030053,1823090247,1084224276,1289367223,1533324676,1823440614, 1084432615,1289614982,1533619312,1823790998,1084640965,1289862752,1533913963,1824141398,1084849324,1290110535,1534208627,1824491815,1085057694,1290358329,1534503306,1824842250, 1085266073,1290606136,1534797999,1825192701,1085474462,1290853954,1535092706,1825543169,1085682862,1291101784,1535387428,1825893653,1085891271,1291349626,1535682163,1826244155, 1086099691,1291597480,1535976913,1826594673,1086308120,1291845345,1536271676,1826945208,1086516560,1292093223,1536566454,1827295760,1086725009,1292341113,1536861246,1827646329, 1086933468,1292589014,1537156052,1827996914,1087141938,1292836927,1537450873,1828347517,1087350417,1293084853,1537745707,1828698136,1087558907,1293332790,1538040556,1829048772, 1087767406,1293580739,1538335418,1829399425,1087975915,1293828699,1538630295,1829750094,1088184435,1294076672,1538925186,1830100781,1088392964,1294324657,1539220091,1830451484, 1088601503,1294572653,1539515010,1830802204,1088810053,1294820662,1539809944,1831152941,1089018612,1295068682,1540104891,1831503694,1089227181,1295316714,1540399852,1831854465, 1089435761,1295564758,1540694828,1832205252,1089644350,1295812814,1540989818,1832556056,1089852949,1296060882,1541284822,1832906876,1090061559,1296308961,1541579840,1833257714, 1090270178,1296557053,1541874872,1833608568,1090478807,1296805156,1542169918,1833959439,1090687446,1297053271,1542464979,1834310327,1090896095,1297301398,1542760053,1834661232, 1091104754,1297549537,1543055142,1835012153,1091313424,1297797688,1543350244,1835363092,1091522103,1298045851,1543645361,1835714047,1091730792,1298294025,1543940492,1836065018, 1091939491,1298542212,1544235637,1836416007,1092148200,1298790410,1544530796,1836767012,1092356919,1299038620,1544825970,1837118034,1092565648,1299286842,1545121157,1837469073, 1092774387,1299535076,1545416358,1837820129,1092983136,1299783321,1545711574,1838171201,1093191894,1300031579,1546006803,1838522291,1093400663,1300279848,1546302047,1838873396, 1093609442,1300528130,1546597305,1839224519,1093818231,1300776423,1546892577,1839575659,1094027030,1301024728,1547187863,1839926815,1094235838,1301273044,1547483163,1840277988, 1094444657,1301521373,1547778477,1840629177,1094653486,1301769713,1548073805,1840980384,1094862324,1302018066,1548369148,1841331607,1095071173,1302266430,1548664504,1841682847, 1095280031,1302514806,1548959875,1842034104,1095488900,1302763194,1549255259,1842385377,1095697778,1303011593,1549550658,1842736667,1095906666,1303260005,1549846071,1843087974, 1096115565,1303508428,1550141497,1843439298,1096324473,1303756864,1550436938,1843790638,1096533391,1304005311,1550732393,1844141996,1096742319,1304253769,1551027862,1844493370, 1096951257,1304502240,1551323346,1844844760,1097160206,1304750723,1551618843,1845196168,1097369164,1304999217,1551914354,1845547592,1097578132,1305247723,1552209879,1845899032, 1097787109,1305496241,1552505419,1846250490,1097996097,1305744771,1552800972,1846601964,1098205095,1305993313,1553096540,1846953455,1098414103,1306241866,1553392121,1847304963, 1098623121,1306490432,1553687717,1847656488,1098832148,1306739009,1553983327,1848008029,1099041186,1306987598,1554278950,1848359587,1099250233,1307236199,1554574588,1848711161, 1099459291,1307484811,1554870240,1849062753,1099668358,1307733436,1555165906,1849414361,1099877435,1307982072,1555461586,1849765985,1100086523,1308230720,1555757280,1850117627, 1100295620,1308479380,1556052988,1850469285,1100504727,1308728051,1556348710,1850820960,1100713844,1308976735,1556644447,1851172651,1100922971,1309225430,1556940197,1851524360, 1101132108,1309474137,1557235961,1851876085,1101341255,1309722856,1557531740,1852227826,1101550412,1309971587,1557827532,1852579585,1101759578,1310220330,1558123338,1852931360, 1101968755,1310469084,1558419159,1853283152,1102177942,1310717850,1558714993,1853634960,1102387138,1310966628,1559010842,1853986785,1102596345,1311215418,1559306704,1854338627, 1102805561,1311464220,1559602581,1854690486,1103014787,1311713033,1559898472,1855042361,1103224023,1311961858,1560194376,1855394253,1103433270,1312210695,1560490295,1855746162, 1103642526,1312459544,1560786228,1856098087,1103851792,1312708404,1561082174,1856450029,1104061067,1312957277,1561378135,1856801988,1104270353,1313206161,1561674110,1857153963, 1104479649,1313455057,1561970099,1857505955,1104688955,1313703965,1562266102,1857857964,1104898270,1313952884,1562562119,1858209989,1105107596,1314201816,1562858150,1858562031, 1105316931,1314450759,1563154194,1858914090,1105526276,1314699714,1563450253,1859266165,1105735631,1314948680,1563746326,1859618257,1105944997,1315197659,1564042413,1859970366, 1106154372,1315446649,1564338514,1860322492,1106363756,1315695651,1564634629,1860674634,1106573151,1315944665,1564930758,1861026792,1106782556,1316193690,1565226901,1861378968, 1106991971,1316442728,1565523058,1861731160,1107201395,1316691777,1565819229,1862083368,1107410830,1316940838,1566115414,1862435594,1107620274,1317189911,1566411614,1862787836, 1107829728,1317438995,1566707827,1863140094,1108039192,1317688091,1567004054,1863492370,1108248667,1317937199,1567300295,1863844662,1108458150,1318186319,1567596550,1864196970, 1108667644,1318435451,1567892819,1864549296,1108877148,1318684594,1568189102,1864901638,1109086662,1318933749,1568485399,1865253996,1109296185,1319182916,1568781710,1865606371, 1109505719,1319432095,1569078035,1865958763,1109715262,1319681285,1569374374,1866311172,1109924815,1319930487,1569670727,1866663597,1110134378,1320179701,1569967094,1867016038, 1110343951,1320428927,1570263475,1867368497,1110553534,1320678164,1570559870,1867720972,1110763127,1320927414,1570856279,1868073463,1110972730,1321176675,1571152702,1868425972, 1111182342,1321425947,1571449139,1868778497,1111391965,1321675232,1571745590,1869131038,1111601597,1321924528,1572042054,1869483596,1111811239,1322173836,1572338533,1869836171, 1112020891,1322423156,1572635026,1870188762,1112230553,1322672487,1572931533,1870541370,1112440225,1322921831,1573228054,1870893995,1112649907,1323171186,1573524588,1871246636, 1112859598,1323420552,1573821137,1871599294,1113069300,1323669931,1574117700,1871951968,1113279011,1323919321,1574414276,1872304660,1113488733,1324168723,1574710867,1872657367, 1113698464,1324418137,1575007472,1873010092,1113908205,1324667562,1575304090,1873362832,1114117956,1324917000,1575600723,1873715590,1114327716,1325166449,1575897369,1874068364, 1114537487,1325415909,1576194030,1874421155,1114747267,1325665382,1576490704,1874773962,1114957058,1325914866,1576787392,1875126786,1115166858,1326164362,1577084095,1875479626, 1115376668,1326413870,1577380811,1875832484,1115586488,1326663389,1577677541,1876185357,1115796318,1326912920,1577974285,1876538248,1116006157,1327162463,1578271044,1876891154, 1116216007,1327412017,1578567816,1877244078,1116425866,1327661584,1578864602,1877597018,1116635736,1327911162,1579161402,1877949975,1116845615,1328160752,1579458216,1878302948, 1117055504,1328410353,1579755044,1878655938,1117265403,1328659966,1580051885,1879008944,1117475311,1328909591,1580348741,1879361967,1117685230,1329159228,1580645611,1879715007, 1117895158,1329408876,1580942494,1880068063,1118105097,1329658536,1581239392,1880421135,1118315045,1329908208,1581536304,1880774225,1118525003,1330157892,1581833229,1881127331, 1118734971,1330407587,1582130168,1881480453,1118944948,1330657294,1582427122,1881833592,1119154936,1330907013,1582724089,1882186748,1119364933,1331156743,1583021070,1882539920, 1119574941,1331406485,1583318065,1882893108,1119784958,1331656239,1583615074,1883246314,1119994985,1331906005,1583912097,1883599536,1120205022,1332155782,1584209134,1883952774, 1120415068,1332405571,1584506185,1884306029,1120625125,1332655372,1584803250,1884659300,1120835191,1332905184,1585100328,1885012588,1121045267,1333155008,1585397421,1885365893, 1121255353,1333404844,1585694527,1885719214,1121465449,1333654691,1585991648,1886072552,1121675555,1333904550,1586288782,1886425906,1121885670,1334154421,1586585930,1886779277, 1122095796,1334404304,1586883093,1887132664,1122305931,1334654198,1587180269,1887486068,1122516076,1334904104,1587477459,1887839489,1122726231,1335154022,1587774663,1888192926, 1122936396,1335403951,1588071880,1888546379,1123146570,1335653892,1588369112,1888899849,1123356755,1335903845,1588666358,1889253336,1123566949,1336153810,1588963617,1889606839, 1123777153,1336403786,1589260891,1889960359,1123987367,1336653774,1589558178,1890313895,1124197590,1336903773,1589855479,1890667448,1124407824,1337153784,1590152794,1891021017, 1124618067,1337403807,1590450123,1891374603,1124828321,1337653842,1590747466,1891728205,1125038584,1337903888,1591044823,1892081824,1125248856,1338153946,1591342194,1892435459, 1125459139,1338404016,1591639578,1892789111,1125669432,1338654097,1591936977,1893142780,1125879734,1338904190,1592234389,1893496464,1126090046,1339154295,1592531816,1893850166, 1126300368,1339404411,1592829256,1894203884,1126510700,1339654539,1593126710,1894557618,1126721041,1339904679,1593424178,1894911369,1126931393,1340154830,1593721659,1895265137, 1127141754,1340404993,1594019155,1895618921,1127352125,1340655168,1594316665,1895972721,1127562506,1340905355,1594614188,1896326538,1127772897,1341155553,1594911726,1896680372, 1127983297,1341405762,1595209277,1897034222,1128193707,1341655984,1595506842,1897388088,1128404127,1341906217,1595804421,1897741971,1128614557,1342156462,1596102014,1898095871, 1128824997,1342406718,1596399620,1898449787,1129035447,1342656986,1596697241,1898803720,1129245906,1342907266,1596994875,1899157669,1129456375,1343157557,1597292524,1899511634, 1129666854,1343407860,1597590186,1899865616,1129877343,1343658175,1597887862,1900219614,1130087841,1343908502,1598185552,1900573629,1130298350,1344158840,1598483256,1900927661, 1130508868,1344409189,1598780973,1901281709,1130719396,1344659551,1599078705,1901635773,1130929934,1344909924,1599376450,1901989854,1131140481,1345160308,1599674209,1902343952, 1131351039,1345410705,1599971983,1902698065,1131561606,1345661113,1600269769,1903052196,1131772183,1345911532,1600567570,1903406343,1131982769,1346161963,1600865385,1903760506, 1132193366,1346412406,1601163213,1904114686,1132403972,1346662861,1601461056,1904468882,1132614588,1346913327,1601758912,1904823095,1132825214,1347163805,1602056782,1905177324, 1133035850,1347414295,1602354666,1905531569,1133246496,1347664796,1602652564,1905885832,1133457151,1347915308,1602950475,1906240110,1133667816,1348165833,1603248401,1906594405, 1133878491,1348416369,1603546340,1906948717,1134089176,1348666917,1603844293,1907303045,1134299870,1348917476,1604142260,1907657389,1134510574,1349168047,1604440241,1908011750, 1134721288,1349418629,1604738235,1908366127,1134932012,1349669224,1605036244,1908720521,1135142746,1349919830,1605334266,1909074931,1135353489,1350170447,1605632302,1909429358, 1135564242,1350421076,1605930352,1909783801,1135775005,1350671717,1606228416,1910138260,1135985778,1350922369,1606526493,1910492736,1136196560,1351173033,1606824585,1910847229, 1136407352,1351423709,1607122690,1911201738,1136618154,1351674396,1607420809,1911556263,1136828966,1351925095,1607718942,1911910805,1137039788,1352175806,1608017089,1912265363, 1137250619,1352426528,1608315249,1912619938,1137461460,1352677262,1608613424,1912974529,1137672311,1352928007,1608911612,1913329136,1137883172,1353178764,1609209814,1913683760, 1138094042,1353429533,1609508030,1914038401,1138304922,1353680313,1609806259,1914393057,1138515812,1353931105,1610104503,1914747731,1138726712,1354181908,1610402760,1915102420, 1138937622,1354432723,1610701031,1915457126,1139148541,1354683550,1610999316,1915811849,1139359470,1354934388,1611297615,1916166588,1139570409,1355185238,1611595927,1916521343, 1139781357,1355436100,1611894253,1916876115,1139992315,1355686973,1612192594,1917230903,1140203284,1355937857,1612490947,1917585708,1140414261,1356188754,1612789315,1917940529, 1140625249,1356439662,1613087697,1918295366,1140836246,1356690581,1613386092,1918650220,1141047253,1356941512,1613684501,1919005090,1141258270,1357192455,1613982924,1919359977, 1141469297,1357443409,1614281361,1919714880,1141680333,1357694375,1614579811,1920069799,1141891379,1357945353,1614878275,1920424735,1142102435,1358196342,1615176753,1920779687, 1142313501,1358447343,1615475245,1921134656,1142524576,1358698355,1615773751,1921489641,1142735661,1358949379,1616072270,1921844642,1142946756,1359200414,1616370804,1922199660, 1143157861,1359451462,1616669351,1922554694,1143368975,1359702520,1616967911,1922909745,1143580099,1359953591,1617266486,1923264812,1143791233,1360204672,1617565074,1923619895, 1144002377,1360455766,1617863676,1923974995,1144213530,1360706871,1618162292,1924330111,1144424693,1360957988,1618460922,1924685244,1144635866,1361209116,1618759566,1925040393, 1144847048,1361460256,1619058223,1925395558,1145058241,1361711407,1619356894,1925750740,1145269443,1361962570,1619655579,1926105938,1145480655,1362213745,1619954277,1926461152, 1145691876,1362464931,1620252989,1926816383,1145903107,1362716128,1620551716,1927171630,1146114348,1362967338,1620850455,1927526894,1146325599,1363218558,1621149209,1927882174, 1146536859,1363469791,1621447976,1928237470,1146748130,1363721035,1621746758,1928592783,1146959410,1363972290,1622045552,1928948112,1147170699,1364223558,1622344361,1929303457, 1147381999,1364474836,1622643184,1929658819,1147593308,1364726127,1622942020,1930014197,1147804626,1364977428,1623240870,1930369592,1148015955,1365228742,1623539733,1930725003, 1148227293,1365480067,1623838611,1931080430,1148438641,1365731403,1624137502,1931435873,1148649999,1365982752,1624436407,1931791333,1148861367,1366234111,1624735326,1932146809, 1149072744,1366485482,1625034258,1932502302,1149284131,1366736865,1625333204,1932857811,1149495527,1366988260,1625632164,1933213336,1149706934,1367239666,1625931138,1933568878, 1149918350,1367491083,1626230126,1933924436,1150129775,1367742512,1626529127,1934280010,1150341211,1367993953,1626828142,1934635601,1150552656,1368245405,1627127170,1934991208, 1150764111,1368496868,1627426213,1935346831,1150975576,1368748344,1627725269,1935702471,1151187050,1368999831,1628024339,1936058127,1151398534,1369251329,1628323423,1936413800, 1151610028,1369502839,1628622520,1936769488,1151821531,1369754360,1628921631,1937125193,1152033044,1370005893,1629220756,1937480915,1152244567,1370257438,1629519894,1937836652, 1152456100,1370508994,1629819047,1938192406,1152667642,1370760561,1630118213,1938548177,1152879194,1371012141,1630417392,1938903963,1153090756,1371263731,1630716586,1939259766, 1153302327,1371515334,1631015793,1939615586,1153513909,1371766947,1631315014,1939971421,1153725499,1372018573,1631614249,1940327273,1153937100,1372270210,1631913497,1940683142, 1154148710,1372521858,1632212759,1941039026,1154360330,1372773518,1632512035,1941394927,1154571960,1373025189,1632811324,1941750844,1154783599,1373276872,1633110628,1942106778, 1154995248,1373528567,1633409944,1942462728,1155206907,1373780273,1633709275,1942818694,1155418575,1374031991,1634008619,1943174676,1155630253,1374283720,1634307978,1943530675, 1155841941,1374535460,1634607349,1943886690,1156053639,1374787213,1634906735,1944242721,1156265346,1375038976,1635206134,1944598769,1156477063,1375290752,1635505547,1944954833, 1156688789,1375542538,1635804974,1945310913,1156900526,1375794337,1636104414,1945667010,1157112272,1376046146,1636403868,1946023123,1157324027,1376297968,1636703336,1946379252, 1157535793,1376549801,1637002817,1946735397,1157747568,1376801645,1637302312,1947091559,1157959352,1377053501,1637601821,1947447737,1158171147,1377305368,1637901343,1947803931, 1158382951,1377557247,1638200880,1948160142,1158594765,1377809138,1638500429,1948516369,1158806588,1378061039,1638799993,1948872612,1159018421,1378312953,1639099570,1949228871, 1159230264,1378564878,1639399161,1949585147,1159442116,1378816814,1639698766,1949941439,1159653979,1379068762,1639998384,1950297747,1159865850,1379320722,1640298016,1950654072, 1160077732,1379572693,1640597662,1951010412,1160289623,1379824675,1640897321,1951366770,1160501524,1380076669,1641196994,1951723143,1160713435,1380328675,1641496681,1952079532, 1160925355,1380580692,1641796382,1952435938,1161137285,1380832720,1642096096,1952792360,1161349224,1381084760,1642395823,1953148799,1161561173,1381336812,1642695565,1953505254, 1161773132,1381588875,1642995320,1953861724,1161985101,1381840949,1643295089,1954218212,1162197079,1382093035,1643594871,1954574715,1162409067,1382345133,1643894667,1954931235, 1162621064,1382597242,1644194477,1955287771,1162833072,1382849362,1644494301,1955644323,1163045089,1383101494,1644794138,1956000891,1163257115,1383353638,1645093989,1956357476, 1163469151,1383605793,1645393853,1956714077,1163681197,1383857959,1645693731,1957070694,1163893253,1384110137,1645993623,1957427328,1164105318,1384362327,1646293529,1957783978, 1164317393,1384614528,1646593448,1958140643,1164529477,1384866740,1646893380,1958497326,1164741571,1385118964,1647193327,1958854024,1164953675,1385371199,1647493287,1959210739, 1165165789,1385623446,1647793261,1959567470,1165377912,1385875704,1648093248,1959924217,1165590045,1386127974,1648393249,1960280980,1165802187,1386380255,1648693264,1960637760, 1166014339,1386632548,1648993292,1960994556,1166226501,1386884852,1649293334,1961351368,1166438672,1387137168,1649593390,1961708196,1166650853,1387389495,1649893459,1962065041, 1166863044,1387641834,1650193542,1962421901,1167075244,1387894184,1650493639,1962778778,1167287454,1388146546,1650793749,1963135671,1167499674,1388398919,1651093873,1963492581, 1167711903,1388651303,1651394010,1963849507,1167924142,1388903699,1651694161,1964206448,1168136390,1389156107,1651994326,1964563406,1168348649,1389408526,1652294504,1964920381, 1168560916,1389660956,1652594696,1965277371,1168773194,1389913398,1652894902,1965634378,1168985481,1390165851,1653195121,1965991401,1169197778,1390418316,1653495354,1966348440, 1169410084,1390670792,1653795601,1966705495,1169622400,1390923280,1654095861,1967062567,1169834726,1391175779,1654396135,1967419655,1170047061,1391428290,1654696422,1967776759, 1170259406,1391680812,1654996723,1968133879,1170471761,1391933346,1655297038,1968491015,1170684125,1392185891,1655597366,1968848168,1170896499,1392438447,1655897708,1969205337, 1171108882,1392691015,1656198064,1969562522,1171321275,1392943594,1656498433,1969919723,1171533678,1393196185,1656798816,1970276940,1171746090,1393448787,1657099212,1970634174, 1171958512,1393701401,1657399622,1970991423,1172170944,1393954026,1657700046,1971348689,1172383385,1394206663,1658000483,1971705971,1172595836,1394459311,1658300934,1972063270, 1172808296,1394711970,1658601399,1972420584,1173020766,1394964641,1658901877,1972777915,1173233246,1395217324,1659202368,1973135262,1173445735,1395470017,1659502874,1973492625, 1173658234,1395722723,1659803392,1973850004,1173870743,1395975439,1660103925,1974207399,1174083261,1396228168,1660404471,1974564811,1174295789,1396480907,1660705031,1974922238, 1174508326,1396733658,1661005604,1975279682,1174720873,1396986421,1661306191,1975637142,1174933430,1397239194,1661606791,1975994619,1175145996,1397491980,1661907406,1976352111, 1175358572,1397744777,1662208033,1976709620,1175571158,1397997585,1662508674,1977067144,1175783753,1398250404,1662809329,1977424685,1175996357,1398503235,1663109998,1977782242, 1176208972,1398756078,1663410680,1978139816,1176421596,1399008932,1663711375,1978497405,1176634229,1399261797,1664012085,1978855011,1176846872,1399514674,1664312808,1979212632, 1177059525,1399767562,1664613544,1979570270,1177272187,1400020461,1664914294,1979927924,1177484859,1400273372,1665215057,1980285594,1177697541,1400526295,1665515835,1980643281, 1177910232,1400779229,1665816625,1981000983,1178122933,1401032174,1666117430,1981358702,1178335643,1401285131,1666418248,1981716437,1178548363,1401538099,1666719079,1982074187, 1178761093,1401791078,1667019924,1982431954,1178973832,1402044069,1667320783,1982789738,1179186581,1402297072,1667621655,1983147537,1179399339,1402550085,1667922541,1983505352, 1179612107,1402803110,1668223440,1983863184,1179824884,1403056147,1668524353,1984221032,1180037672,1403309195,1668825279,1984578896,1180250468,1403562254,1669126219,1984936776, 1180463275,1403815325,1669427173,1985294672,1180676090,1404068407,1669728140,1985652584,1180888916,1404321501,1670029121,1986010513,1181101751,1404574606,1670330115,1986368457, 1181314596,1404827722,1670631123,1986726418,1181527450,1405080850,1670932144,1987084395,1181740314,1405333989,1671233179,1987442387,1181953187,1405587140,1671534228,1987800396, 1182166070,1405840302,1671835290,1988158422,1182378963,1406093475,1672136365,1988516463,1182591865,1406346660,1672437455,1988874520,1182804777,1406599856,1672738557,1989232594, 1183017698,1406853064,1673039674,1989590683,1183230629,1407106283,1673340803,1989948789,1183443570,1407359513,1673641947,1990306911,1183656520,1407612755,1673943104,1990665049, 1183869480,1407866008,1674244274,1991023203,1184082449,1408119273,1674545458,1991381373,1184295428,1408372549,1674846656,1991739559,1184508416,1408625836,1675147867,1992097762, 1184721414,1408879135,1675449091,1992455980,1184934422,1409132445,1675750330,1992814215,1185147439,1409385766,1676051581,1993172466,1185360465,1409639099,1676352847,1993530732, 1185573502,1409892444,1676654125,1993889015,1185786548,1410145799,1676955418,1994247314,1185999603,1410399166,1677256724,1994605629,1186212668,1410652545,1677558043,1994963960, 1186425743,1410905934,1677859376,1995322308,1186638827,1411159336,1678160722,1995680671,1186851920,1411412748,1678462082,1996039050,1187065024,1411666172,1678763456,1996397446, 1187278136,1411919607,1679064843,1996755858,1187491259,1412173054,1679366243,1997114285,1187704391,1412426512,1679667657,1997472729,1187917532,1412679981,1679969085,1997831189, 1188130683,1412933462,1680270526,1998189665,1188343844,1413186954,1680571981,1998548157,1188557014,1413440458,1680873449,1998906665,1188770194,1413693973,1681174931,1999265189, 1188983383,1413947499,1681476426,1999623729,1189196582,1414201036,1681777935,1999982286,1189409790,1414454585,1682079457,2000340858,1189623008,1414708146,1682380993,2000699447, 1189836236,1414961717,1682682542,2001058051,1190049473,1415215300,1682984105,2001416672,1190262720,1415468895,1683285681,2001775308,1190475976,1415722501,1683587271,2002133961, 1190689242,1415976118,1683888874,2002492630,1190902517,1416229746,1684190491,2002851315,1191115802,1416483386,1684492121,2003210016,1191329096,1416737037,1684793765,2003568732, 1191542400,1416990700,1685095422,2003927465,1191755713,1417244374,1685397093,2004286215,1191969036,1417498059,1685698777,2004644980,1192182369,1417751756,1686000475,2005003761, 1192395711,1418005464,1686302186,2005362558,1192609063,1418259183,1686603911,2005721371,1192822424,1418512914,1686905649,2006080201,1193035795,1418766655,1687207401,2006439046, 1193249175,1419020409,1687509167,2006797907,1193462565,1419274174,1687810945,2007156785,1193675964,1419527950,1688112738,2007515678,1193889373,1419781737,1688414543,2007874588, 1194102791,1420035536,1688716363,2008233514,1194316219,1420289346,1689018195,2008592455,1194529657,1420543167,1689320041,2008951413,1194743104,1420797000,1689621901,2009310387, 1194956561,1421050844,1689923774,2009669376,1195170027,1421304699,1690225661,2010028382,1195383502,1421558566,1690527561,2010387404,1195596987,1421812444,1690829475,2010746442, 1195810482,1422066334,1691131402,2011105495,1196023986,1422320234,1691433342,2011464565,1196237500,1422574146,1691735296,2011823651,1196451023,1422828070,1692037264,2012182753, 1196664556,1423082005,1692339245,2012541871,1196878099,1423335951,1692641239,2012901005,1197091650,1423589908,1692943247,2013260155,1197305212,1423843877,1693245269,2013619321, 1197518783,1424097857,1693547304,2013978503,1197732363,1424351848,1693849352,2014337701,1197945953,1424605851,1694151414,2014696915,1198159553,1424859865,1694453489,2015056145, 1198373162,1425113890,1694755578,2015415391,1198586780,1425367927,1695057680,2015774653,1198800408,1425621975,1695359796,2016133932,1199014046,1425876034,1695661925,2016493226, 1199227693,1426130105,1695964067,2016852536,1199441349,1426384187,1696266223,2017211862,1199655015,1426638280,1696568393,2017571204,1199868691,1426892384,1696870576,2017930562, 1200082376,1427146500,1697172772,2018289936,1200296071,1427400627,1697474982,2018649326,1200509775,1427654766,1697777205,2019008732,1200723489,1427908916,1698079442,2019368155, 1200937212,1428163077,1698381692,2019727593,1201150944,1428417249,1698683956,2020087047,1201364687,1428671433,1698986233,2020446517,1201578438,1428925628,1699288524,2020806003, 1201792200,1429179834,1699590828,2021165505,1202005970,1429434052,1699893145,2021525023,1202219750,1429688281,1700195476,2021884557,1202433540,1429942521,1700497820,2022244107, 1202647339,1430196773,1700800178,2022603673,1202861148,1430451036,1701102549,2022963255,1203074966,1430705310,1701404934,2023322853,1203288794,1430959595,1701707332,2023682467, 1203502631,1431213892,1702009743,2024042097,1203716478,1431468200,1702312168,2024401743,1203930334,1431722519,1702614607,2024761405,1204144200,1431976850,1702917059,2025121082, 1204358075,1432231192,1703219524,2025480776,1204571960,1432485545,1703522002,2025840486,1204785854,1432739910,1703824495,2026200212,1204999758,1432994286,1704127000,2026559953, 1205213671,1433248673,1704429519,2026919711,1205427594,1433503071,1704732051,2027279485,1205641526,1433757481,1705034597,2027639274,1205855467,1434011902,1705337156,2027999080, 1206069419,1434266334,1705639729,2028358901,1206283379,1434520777,1705942315,2028718739,1206497349,1434775232,1706244915,2029078592,1206711329,1435029698,1706547527,2029438462, 1206925318,1435284176,1706850154,2029798347,1207139317,1435538664,1707152793,2030158248,1207353325,1435793164,1707455447,2030518166,1207567342,1436047675,1707758113,2030878099, 1207781369,1436302198,1708060793,2031238048,1207995406,1436556732,1708363486,2031598013,1208209452,1436811277,1708666193,2031957994,1208423507,1437065833,1708968913,2032317991, 1208637572,1437320401,1709271647,2032678004,1208851647,1437574979,1709574394,2033038033,1209065731,1437829570,1709877154,2033398078,1209279824,1438084171,1710179928,2033758138, 1209493927,1438338784,1710482715,2034118215,1209708039,1438593408,1710785516,2034478308,1209922161,1438848043,1711088330,2034838416,1210136293,1439102689,1711391157,2035198541, 1210350433,1439357347,1711693998,2035558681,1210564584,1439612016,1711996852,2035918838,1210778743,1439866696,1712299720,2036279010,1210992912,1440121388,1712602601,2036639198, 1211207091,1440376091,1712905495,2036999402,1211421279,1440630805,1713208403,2037359622,1211635477,1440885530,1713511324,2037719858,1211849684,1441140266,1713814259,2038080110, 1212063900,1441395014,1714117207,2038440378,1212278126,1441649773,1714420168,2038800662,1212492362,1441904544,1714723143,2039160961,1212706607,1442159325,1715026131,2039521277, 1212920861,1442414118,1715329132,2039881608,1213135125,1442668922,1715632147,2040241956,1213349398,1442923738,1715935175,2040602319,1213563681,1443178564,1716238217,2040962698, 1213777973,1443433402,1716541272,2041323093,1213992275,1443688251,1716844340,2041683505,1214206586,1443943111,1717147422,2042043931,1214420907,1444197983,1717450517,2042404374, 1214635237,1444452866,1717753625,2042764833,1214849576,1444707760,1718056747,2043125308,1215063925,1444962665,1718359882,2043485798,1215278284,1445217582,1718663031,2043846305, 1215492652,1445472510,1718966193,2044206827,1215707029,1445727449,1719269368,2044567365,1215921416,1445982399,1719572557,2044927920,1216135812,1446237360,1719875759,2045288490, 1216350218,1446492333,1720178974,2045649075,1216564633,1446747317,1720482203,2046009677,1216779057,1447002312,1720785445,2046370295,1216993491,1447257319,1721088701,2046730929, 1217207935,1447512337,1721391970,2047091578,1217422388,1447767366,1721695252,2047452243,1217636850,1448022406,1721998548,2047812925,1217851322,1448277457,1722301856,2048173622, 1218065803,1448532520,1722605179,2048534335,1218280294,1448787594,1722908514,2048895064,1218494794,1449042679,1723211863,2049255809,1218709304,1449297775,1723515226,2049616569, 1218923823,1449552882,1723818601,2049977346,1219138351,1449808001,1724121990,2050338138,1219352889,1450063131,1724425393,2050698946,1219567436,1450318272,1724728809,2051059771, 1219781993,1450573425,1725032238,2051420611,1219996559,1450828588,1725335680,2051781466,1220211135,1451083763,1725639136,2052142338,1220425720,1451338949,1725942605,2052503226, 1220640314,1451594147,1726246087,2052864129,1220854918,1451849355,1726549583,2053225049,1221069532,1452104575,1726853092,2053585984,1221284154,1452359806,1727156615,2053946935, 1221498787,1452615048,1727460151,2054307902,1221713428,1452870301,1727763700,2054668885,1221928079,1453125566,1728067262,2055029883,1222142740,1453380842,1728370838,2055390898, 1222357410,1453636129,1728674427,2055751928,1222572089,1453891427,1728978029,2056112974,1222786778,1454146736,1729281645,2056474036,1223001476,1454402057,1729585274,2056835114, 1223216184,1454657389,1729888917,2057196208,1223430901,1454912732,1730192573,2057557318,1223645627,1455168086,1730496242,2057918443,1223860363,1455423452,1730799924,2058279584, 1224075109,1455678828,1731103620,2058640741,1224289863,1455934216,1731407329,2059001914,1224504627,1456189615,1731711051,2059363103,1224719401,1456445025,1732014787,2059724308, 1224934184,1456700447,1732318536,2060085528,1225148976,1456955880,1732622298,2060446765,1225363778,1457211323,1732926074,2060808017,1225578589,1457466778,1733229863,2061169285, 1225793410,1457722245,1733533665,2061530569,1226008240,1457977722,1733837481,2061891868,1226223080,1458233211,1734141310,2062253184,1226437928,1458488711,1734445152,2062614515, 1226652787,1458744222,1734749007,2062975862,1226867654,1458999744,1735052876,2063337225,1227082531,1459255277,1735356758,2063698604,1227297418,1459510822,1735660654,2064059998, 1227512314,1459766377,1735964562,2064421409,1227727219,1460021944,1736268484,2064782835,1227942134,1460277522,1736572420,2065144277,1228157058,1460533112,1736876368,2065505735, 1228371992,1460788712,1737180330,2065867209,1228586934,1461044324,1737484305,2066228698,1228801887,1461299947,1737788294,2066590203,1229016849,1461555581,1738092296,2066951724, 1229231820,1461811226,1738396311,2067313261,1229446800,1462066882,1738700339,2067674814,1229661790,1462322550,1739004381,2068036383,1229876789,1462578229,1739308436,2068397967, 1230091798,1462833919,1739612504,2068759567,1230306816,1463089620,1739916586,2069121183,1230521844,1463345332,1740220680,2069482815,1230736881,1463601055,1740524788,2069844462, 1230951927,1463856790,1740828910,2070206126,1231166983,1464112536,1741133045,2070567805,1231382048,1464368293,1741437193,2070929500,1231597122,1464624061,1741741354,2071291210, 1231812206,1464879840,1742045528,2071652937,1232027299,1465135630,1742349716,2072014679,1232242402,1465391432,1742653917,2072376437,1232457514,1465647245,1742958132,2072738211, 1232672636,1465903069,1743262359,2073100001,1232887766,1466158904,1743566600,2073461806,1233102907,1466414750,1743870854,2073823628,1233318056,1466670607,1744175122,2074185465, 1233533215,1466926476,1744479402,2074547317,1233748383,1467182356,1744783696,2074909186,1233963561,1467438247,1745088004,2075271070,1234178748,1467694149,1745392324,2075632970, 1234393945,1467950062,1745696658,2075994886,1234609151,1468205986,1746001005,2076356818,1234824366,1468461922,1746305365,2076718765,1235039590,1468717868,1746609739,2077080729, 1235254824,1468973826,1746914126,2077442708,1235470068,1469229795,1747218526,2077804702,1235685321,1469485775,1747522939,2078166713,1235900583,1469741766,1747827366,2078528739, 1236115854,1469997769,1748131806,2078890781,1236331135,1470253782,1748436259,2079252839,1236546425,1470509807,1748740725,2079614913,1236761725,1470765843,1749045205,2079977002, 1236977034,1471021890,1749349698,2080339107,1237192352,1471277948,1749654204,2080701228,1237407680,1471534017,1749958723,2081063365,1237623017,1471790098,1750263256,2081425517, 1237838364,1472046189,1750567802,2081787685,1238053719,1472302292,1750872361,2082149869,1238269085,1472558406,1751176933,2082512069,1238484459,1472814531,1751481519,2082874284, 1238699843,1473070667,1751786118,2083236515,1238915236,1473326814,1752090730,2083598762,1239130639,1473582972,1752395355,2083961025,1239346051,1473839142,1752699994,2084323303, 1239561472,1474095322,1753004646,2084685597,1239776903,1474351514,1753309311,2085047907,1239992343,1474607717,1753613989,2085410233,1240207793,1474863931,1753918680,2085772574, 1240423251,1475120156,1754223385,2086134931,1240638720,1475376392,1754528103,2086497304,1240854197,1475632640,1754832834,2086859692,1241069684,1475888898,1755137579,2087222097, 1241285180,1476145168,1755442337,2087584517,1241500686,1476401449,1755747107,2087946952,1241716201,1476657741,1756051892,2088309404,1241931725,1476914044,1756356689,2088671871, 1242147259,1477170358,1756661500,2089034354,1242362802,1477426683,1756966323,2089396853,1242578354,1477683019,1757271160,2089759367,1242793916,1477939367,1757576011,2090121897, 1243009487,1478195726,1757880874,2090484443,1243225067,1478452095,1758185751,2090847004,1243440657,1478708476,1758490641,2091209582,1243656256,1478964868,1758795544,2091572175, 1243871864,1479221271,1759100460,2091934783,1244087482,1479477685,1759405390,2092297408,1244303109,1479734110,1759710332,2092660048,1244518745,1479990547,1760015288,2093022704, 1244734391,1480246994,1760320258,2093385375,1244950046,1480503453,1760625240,2093748062,1245165711,1480759923,1760930236,2094110765,1245381385,1481016403,1761235244,2094473484, 1245597068,1481272895,1761540266,2094836218,1245812760,1481529398,1761845302,2095198968,1246028462,1481785913,1762150350,2095561734,1246244173,1482042438,1762455412,2095924516, 1246459894,1482298974,1762760487,2096287313,1246675623,1482555522,1763065575,2096650126,1246891363,1482812080,1763370676,2097012954,1247107111,1483068650,1763675790,2097375798, 1247322869,1483325230,1763980918,2097738658,1247538636,1483581822,1764286059,2098101534,1247754413,1483838425,1764591213,2098464425,1247970198,1484095039,1764896380,2098827332, 1248185993,1484351664,1765201560,2099190255,1248401798,1484608300,1765506754,2099553193,1248617612,1484864948,1765811961,2099916147,1248833435,1485121606,1766117181,2100279117, 1249049267,1485378276,1766422414,2100642103,1249265109,1485634956,1766727660,2101005104,1249480960,1485891648,1767032920,2101368120,1249696820,1486148350,1767338192,2101731153, 1249912690,1486405064,1767643478,2102094201,1250128569,1486661789,1767948777,2102457265,1250344458,1486918525,1768254090,2102820344,1250560355,1487175272,1768559415,2103183440, 1250776262,1487432030,1768864754,2103546550,1250992179,1487688800,1769170105,2103909677,1251208104,1487945580,1769475470,2104272819,1251424039,1488202371,1769780849,2104635977, 1251639983,1488459174,1770086240,2104999151,1251855937,1488715987,1770391644,2105362340,1252071900,1488972812,1770697062,2105725545,1252287872,1489229648,1771002493,2106088765, 1252503854,1489486494,1771307937,2106452001,1252719845,1489743352,1771613394,2106815253,1252935845,1490000221,1771918864,2107178521,1253151854,1490257101,1772224348,2107541804, 1253367873,1490513992,1772529844,2107905103,1253583901,1490770894,1772835354,2108268417,1253799938,1491027807,1773140877,2108631747,1254015985,1491284732,1773446413,2108995093, 1254232041,1491541667,1773751963,2109358454,1254448106,1491798613,1774057525,2109721831,1254664181,1492055571,1774363101,2110085224,1254880265,1492312539,1774668690,2110448633, 1255096358,1492569519,1774974292,2110812057,1255312461,1492826510,1775279907,2111175496,1255528572,1493083511,1775585535,2111538951,1255744693,1493340524,1775891176,2111902422, 1255960824,1493597548,1776196831,2112265909,1256176964,1493854583,1776502499,2112629411,1256393113,1494111629,1776808179,2112992929,1256609271,1494368686,1777113873,2113356463, 1256825438,1494625754,1777419581,2113720012,1257041615,1494882833,1777725301,2114083576,1257257802,1495139923,1778031034,2114447157,1257473997,1495397024,1778336781,2114810753, 1257690202,1495654136,1778642541,2115174364,1257906416,1495911260,1778948314,2115537992,1258122639,1496168394,1779254100,2115901635,1258338872,1496425540,1779559899,2116265293, 1258555114,1496682696,1779865711,2116628967,1258771365,1496939863,1780171536,2116992657,1258987626,1497197042,1780477375,2117356362,1259203895,1497454232,1780783227,2117720083, 1259420174,1497711432,1781089091,2118083820,1259636463,1497968644,1781394969,2118447572,1259852760,1498225867,1781700860,2118811340,1260069067,1498483100,1782006765,2119175124, 1260285384,1498740345,1782312682,2119538923,1260501709,1498997601,1782618613,2119902737,1260718044,1499254868,1782924556,2120266568,1260934388,1499512146,1783230513,2120630414, 1261150741,1499769435,1783536483,2120994275,1261367104,1500026735,1783842466,2121358152,1261583476,1500284046,1784148462,2121722045,1261799857,1500541368,1784454471,2122085953, 1262016248,1500798701,1784760493,2122449877,1262232647,1501056045,1785066529,2122813817,1262449056,1501313400,1785372577,2123177772,1262665475,1501570766,1785678639,2123541743, 1262881902,1501828144,1785984714,2123905729,1263098339,1502085532,1786290802,2124269731,1263314785,1502342931,1786596903,2124633748,1263531241,1502600341,1786903017,2124997781, 1263747705,1502857763,1787209144,2125361830,1263964179,1503115195,1787515284,2125725894,1264180662,1503372638,1787821438,2126089974,1264397155,1503630093,1788127605,2126454070, 1264613657,1503887558,1788433784,2126818181,1264830168,1504145034,1788739977,2127182308,1265046688,1504402522,1789046183,2127546450,1265263217,1504660020,1789352402,2127910608, 1265479756,1504917530,1789658634,2128274781,1265696304,1505175050,1789964879,2128638970,1265912861,1505432582,1790271137,2129003174,1266129428,1505690124,1790577409,2129367395, 1266346004,1505947678,1790883693,2129731630,1266562589,1506205242,1791189991,2130095882,1266779183,1506462818,1791496302,2130460148,1266995787,1506720405,1791802625,2130824431, 1267212400,1506978002,1792108962,2131188729,1267429022,1507235611,1792415312,2131553042,1267645653,1507493230,1792721675,2131917371,1267862294,1507750861,1793028051,2132281716, 1268078944,1508008502,1793334441,2132646076,1268295603,1508266155,1793640843,2133010452,1268512271,1508523819,1793947258,2133374844,1268728949,1508781493,1794253687,2133739250, 1268945636,1509039179,1794560128,2134103673,1269162332,1509296876,1794866583,2134468111,1269379038,1509554583,1795173051,2134832565,1269595752,1509812302,1795479532,2135197034, 1269812476,1510070031,1795786025,2135561518,1270029209,1510327772,1796092532,2135926019,1270245952,1510585524,1796399052,2136290535,1270462703,1510843286,1796705586,2136655066, 1270679464,1511101060,1797012132,2137019613,1270896234,1511358844,1797318691,2137384175,1271113014,1511616640,1797625263,2137748753,1271329802,1511874447,1797931849,2138113347, 1271546600,1512132264,1798238447,2138477956,1271763407,1512390093,1798545059,2138842581,1271980224,1512647932,1798851683,2139207221,1272197049,1512905783,1799158321,2139571877, 1272413884,1513163644,1799464972,2139936548,1272630728,1513421517,1799771636,2140301235,1272847582,1513679400,1800078313,2140665937,1273064444,1513937295,1800385003,2141030655, 1273281316,1514195200,1800691706,2141395388,1273498197,1514453117,1800998422,2141760137,1273715087,1514711044,1801305151,2142124902,1273931987,1514968982,1801611893,2142489682, 1274148895,1515226932,1801918648,2142854477,1274365813,1515484892,1802225417,2143219288,1274582740,1515742864,1802532198,2143584115,1274799677,1516000846,1802838992,2143948957, 1275016622,1516258839,1803145800,2144313814,1275233577,1516516843,1803452620,2144678688,1275450541,1516774859,1803759454,2145043576,1275667515,1517032885,1804066300,2145408480, 1275884497,1517290922,1804373160,2145773400,1276101489,1517548970,1804680033,2146138335,1276318490,1517807029,1804986919,2146503286,1276535500,1518065099,1805293817,2146868252, 1276752520,1518323181,1805600729,2147233234,1276969548,1518581273,1805907654,1073799116,1277186586,1518839376,1806214592,1073981622,1277403633,1519097490,1806521543,1074164136, 1277620690,1519355614,1806828507,1074346658,1277837755,1519613750,1807135484,1074529188,1278054830,1519871897,1807442474,1074711725,1278271914,1520130055,1807749477,1074894270, 1278489007,1520388224,1808056493,1075076823,1278706110,1520646404,1808363523,1075259384,1278923221,1520904594,1808670565,1075441952,1279140342,1521162796,1808977620,1075624528, 1279357472,1521421009,1809284688,1075807112,1279574611,1521679232,1809591770,1075989704,1279791760,1521937467,1809898864,1076172303,1280008918,1522195712,1810205971,1076354910, 1280226085,1522453969,1810513092,1076537525,1280443261,1522712236,1810820225,1076720148,1280660446,1522970514,1811127372,1076902778,1280877641,1523228804,1811434531,1077085416, 1281094844,1523487104,1811741703,1077268062,1281312057,1523745415,1812048889,1077450716,1281529279,1524003737,1812356088,1077633377,1281746511,1524262070,1812663299,1077816046, 1281963751,1524520414,1812970524,1077998723,1282181001,1524778769,1813277761,1078181408,1282398260,1525037135,1813585012,1078364100,1282615528,1525295512,1813892275,1078546800, 1282832806,1525553900,1814199552,1078729508,1283050092,1525812299,1814506842,1078912223,1283267388,1526070708,1814814144,1079094946,1283484693,1526329129,1815121460,1079277677, 1283702007,1526587560,1815428789,1079460416,1283919331,1526846003,1815736130,1079643163,1284136663,1527104456,1816043485,1079825917,1284354005,1527362921,1816350853,1080008679, 1284571356,1527621396,1816658233,1080191448,1284788716,1527879882,1816965627,1080374226,1285006085,1528138380,1817273034,1080557011,1285223464,1528396888,1817580453,1080739804, 1285440852,1528655407,1817887886,1080922604,1285658249,1528913937,1818195332,1081105412,1285875655,1529172478,1818502790,1081288228,1286093070,1529431029,1818810262,1081471052, 1286310494,1529689592,1819117747,1081653884,1286527928,1529948166,1819425244,1081836723,1286745371,1530206750,1819732755,1082019570,1286962823,1530465346,1820040279,1082202424, 1287180284,1530723952,1820347815,1082385287,1287397755,1530982570,1820655365,1082568157,1287615234,1531241198,1820962928,1082751035,1287832723,1531499837,1821270503,1082933920, 1288050221,1531758487,1821578092,1083116814,1288267728,1532017149,1821885693,1083299715,1288485245,1532275820,1822193308,1083482623,1288702770,1532534503,1822500935,1083665540, 1288920305,1532793197,1822808576,1083848464,1289137849,1533051902,1823116229,1084031396,1289355402,1533310618,1823423896,1084214335,1289572964,1533569344,1823731575,1084397283, 1289790535,1533828082,1824039268,1084580238,1290008116,1534086830,1824346973,1084763200,1290225706,1534345589,1824654692,1084946171,1290443305,1534604360,1824962423,1085129149, 1290660913,1534863141,1825270167,1085312135,1290878530,1535121933,1825577925,1085495129,1291096157,1535380736,1825885695,1085678130,1291313792,1535639549,1826193478,1085861139, 1291531437,1535898374,1826501274,1086044156,1291749091,1536157210,1826809084,1086227180,1291966754,1536416056,1827116906,1086410212,1292184426,1536674914,1827424741,1086593252, 1292402108,1536933782,1827732589,1086776300,1292619799,1537192661,1828040450,1086959355,1292837498,1537451552,1828348324,1087142418,1293055207,1537710453,1828656211,1087325489, 1293272925,1537969365,1828964111,1087508567,1293490653,1538228287,1829272024,1087691653,1293708389,1538487221,1829579950,1087874747,1293926135,1538746166,1829887889,1088057848, 1294143890,1539005121,1830195840,1088240958,1294361654,1539264088,1830503805,1088424075,1294579427,1539523065,1830811783,1088607199,1294797209,1539782053,1831119773,1088790331, 1295015000,1540041052,1831427777,1088973471,1295232801,1540300062,1831735793,1089156619,1295450611,1540559083,1832043823,1089339775,1295668430,1540818115,1832351865,1089522938, 1295886258,1541077158,1832659921,1089706109,1296104095,1541336211,1832967989,1089889287,1296321941,1541595276,1833276070,1090072473,1296539797,1541854351,1833584165,1090255667, 1296757661,1542113437,1833892272,1090438869,1296975535,1542372534,1834200392,1090622078,1297193418,1542631642,1834508525,1090805295,1297411310,1542890761,1834816671,1090988520, 1297629211,1543149891,1835124830,1091171752,1297847122,1543409031,1835433002,1091354992,1298065041,1543668183,1835741186,1091538240,1298282970,1543927345,1836049384,1091721495, 1298500908,1544186518,1836357595,1091904759,1298718855,1544445703,1836665818,1092088029,1298936811,1544704898,1836974055,1092271308,1299154776,1544964103,1837282304,1092454594, 1299372751,1545223320,1837590567,1092637888,1299590734,1545482548,1837898842,1092821190,1299808727,1545741786,1838207130,1093004499,1300026729,1546001036,1838515431,1093187816, 1300244740,1546260296,1838823745,1093371141,1300462760,1546519567,1839132072,1093554473,1300680789,1546778849,1839440412,1093737813,1300898828,1547038142,1839748765,1093921161, 1301116875,1547297445,1840057131,1094104516,1301334932,1547556760,1840365510,1094287879,1301552998,1547816085,1840673901,1094471250,1301771072,1548075422,1840982306,1094654628, 1301989157,1548334769,1841290723,1094838014,1302207250,1548594127,1841599154,1095021408,1302425352,1548853495,1841907597,1095204810,1302643464,1549112875,1842216053,1095388219, 1302861584,1549372266,1842524522,1095571636,1303079714,1549631667,1842833004,1095755060,1303297853,1549891079,1843141499,1095938492,1303516001,1550150503,1843450007,1096121932, 1303734158,1550409937,1843758528,1096305380,1303952324,1550669381,1844067061,1096488835,1304170499,1550928837,1844375608,1096672298,1304388684,1551188304,1844684167,1096855768, 1304606878,1551447781,1844992740,1097039247,1304825080,1551707269,1845301325,1097222733,1305043292,1551966768,1845609923,1097406226,1305261513,1552226278,1845918534,1097589727, 1305479743,1552485799,1846227158,1097773236,1305697982,1552745331,1846535795,1097956753,1305916231,1553004873,1846844445,1098140277,1306134488,1553264427,1847153108,1098323809, 1306352755,1553523991,1847461783,1098507349,1306571030,1553783566,1847770472,1098690896,1306789315,1554043152,1848079173,1098874451,1307007609,1554302748,1848387887,1099058013, 1307225912,1554562356,1848696614,1099241584,1307444224,1554821974,1849005354,1099425161,1307662546,1555081603,1849314107,1099608747,1307880876,1555341243,1849622873,1099792340, 1308099216,1555600894,1849931652,1099975941,1308317564,1555860556,1850240443,1100159550,1308535922,1556120229,1850549248,1100343166,1308754289,1556379912,1850858065,1100526790, 1308972665,1556639606,1851166895,1100710421,1309191050,1556899311,1851475738,1100894061,1309409444,1557159027,1851784594,1101077707,1309627847,1557418754,1852093463,1101261362, 1309846259,1557678491,1852402345,1101445024,1310064681,1557938240,1852711239,1101628694,1310283112,1558197999,1853020147,1101812371,1310501551,1558457769,1853329067,1101996057, 1310720000,1558717550,1853638000,1102179749,1310938458,1558977341,1853946947,1102363450,1311156925,1559237144,1854255906,1102547158,1311375401,1559496957,1854564877,1102730874, 1311593886,1559756781,1854873862,1102914597,1311812380,1560016616,1855182860,1103098328,1312030884,1560276462,1855491870,1103282067,1312249396,1560536319,1855800893,1103465813, 1312467918,1560796186,1856109930,1103649567,1312686449,1561056064,1856418979,1103833329,1312904988,1561315953,1856728041,1104017098,1313123537,1561575853,1857037115,1104200875, 1313342095,1561835764,1857346203,1104384660,1313560662,1562095685,1857655303,1104568452,1313779238,1562355618,1857964417,1104752252,1313997824,1562615561,1858273543,1104936059, 1314216418,1562875515,1858582682,1105119875,1314435021,1563135480,1858891834,1105303698,1314653634,1563395455,1859200999,1105487528,1314872255,1563655441,1859510176,1105671366, 1315090886,1563915439,1859819367,1105855212,1315309526,1564175447,1860128570,1106039065,1315528175,1564435465,1860437786,1106222926,1315746833,1564695495,1860747015,1106406795, 1315965500,1564955535,1861056257,1106590671,1316184176,1565215587,1861365512,1106774555,1316402861,1565475649,1861674780,1106958447,1316621555,1565735721,1861984060,1107142346, 1316840259,1565995805,1862293353,1107326253,1317058971,1566255899,1862602659,1107510167,1317277693,1566516004,1862911978,1107694090,1317496423,1566776120,1863221310,1107878019, 1317715163,1567036247,1863530655,1108061957,1317933912,1567296385,1863840012,1108245902,1318152669,1567556533,1864149382,1108429855,1318371436,1567816692,1864458766,1108613815, 1318590212,1568076862,1864768162,1108797783,1318808997,1568337043,1865077570,1108981758,1319027792,1568597235,1865386992,1109165742,1319246595,1568857437,1865696426,1109349732, 1319465407,1569117650,1866005874,1109533731,1319684228,1569377874,1866315334,1109717737,1319903059,1569638109,1866624807,1109901751,1320121898,1569898354,1866934293,1110085772, 1320340747,1570158610,1867243791,1110269801,1320559605,1570418877,1867553303,1110453838,1320778471,1570679155,1867862827,1110637882,1320997347,1570939444,1868172364,1110821934, 1321216232,1571199743,1868481914,1111005993,1321435126,1571460054,1868791477,1111190060,1321654029,1571720374,1869101052,1111374135,1321872941,1571980706,1869410640,1111558217, 1322091862,1572241049,1869720242,1111742307,1322310792,1572501402,1870029856,1111926405,1322529731,1572761766,1870339482,1112110510,1322748679,1573022141,1870649122,1112294623, 1322967637,1573282527,1870958775,1112478743,1323186603,1573542923,1871268440,1112662871,1323405579,1573803330,1871578118,1112847007,1323624563,1574063748,1871887809,1113031150, 1323843557,1574324177,1872197512,1113215301,1324062559,1574584616,1872507229,1113399460,1324281571,1574845067,1872816958,1113583626,1324500592,1575105528,1873126700,1113767800, 1324719622,1575365999,1873436455,1113951981,1324938661,1575626482,1873746223,1114136170,1325157708,1575886975,1874056004,1114320367,1325376765,1576147479,1874365797,1114504571, 1325595831,1576407994,1874675603,1114688783,1325814906,1576668520,1874985422,1114873002,1326033991,1576929056,1875295254,1115057229,1326253084,1577189603,1875605098,1115241464, 1326472186,1577450161,1875914955,1115425706,1326691297,1577710730,1876224826,1115609956,1326910418,1577971309,1876534709,1115794213,1327129547,1578231900,1876844604,1115978479, 1327348685,1578492501,1877154513,1116162751,1327567833,1578753112,1877464434,1116347032,1327786989,1579013735,1877774368,1116531319,1328006155,1579274368,1878084315,1116715615, 1328225329,1579535012,1878394275,1116899918,1328444513,1579795667,1878704247,1117084229,1328663706,1580056332,1879014232,1117268547,1328882907,1580317008,1879324230,1117452873, 1329102118,1580577695,1879634241,1117637207,1329321338,1580838393,1879944265,1117821548,1329540567,1581099102,1880254301,1118005896,1329759804,1581359821,1880564350,1118190253, 1329979051,1581620551,1880874412,1118374617,1330198307,1581881291,1881184487,1118558988,1330417572,1582142043,1881494574,1118743367,1330636846,1582402805,1881804675,1118927754, 1330856129,1582663578,1882114788,1119112148,1331075421,1582924362,1882424913,1119296550,1331294722,1583185156,1882735052,1119480960,1331514033,1583445961,1883045203,1119665377, 1331733352,1583706777,1883355368,1119849802,1331952680,1583967604,1883665544,1120034234,1332172017,1584228441,1883975734,1120218674,1332391363,1584489289,1884285937,1120403121, 1332610719,1584750148,1884596152,1120587576,1332830083,1585011018,1884906380,1120772039,1333049456,1585271898,1885216620,1120956509,1333268839,1585532789,1885526874,1121140987, 1333488230,1585793691,1885837140,1121325472,1333707630,1586054603,1886147419,1121509965,1333927040,1586315527,1886457711,1121694466,1334146458,1586576461,1886768016,1121878974, 1334365886,1586837405,1887078333,1122063490,1334585322,1587098361,1887388663,1122248013,1334804768,1587359327,1887699006,1122432544,1335024222,1587620304,1888009361,1122617083, 1335243686,1587881292,1888319730,1122801629,1335463158,1588142290,1888630111,1122986183,1335682640,1588403299,1888940505,1123170744,1335902131,1588664319,1889250911,1123355313, 1336121630,1588925349,1889561331,1123539889,1336341139,1589186390,1889871763,1123724473,1336560657,1589447442,1890182207,1123909065,1336780183,1589708505,1890492665,1124093664, 1336999719,1589969578,1890803135,1124278271,1337219264,1590230663,1891113618,1124462885,1337438817,1590491757,1891424114,1124647507,1337658380,1590752863,1891734623,1124832137, 1337877952,1591013979,1892045144,1125016774,1338097532,1591275106,1892355678,1125201418,1338317122,1591536244,1892666225,1125386071,1338536721,1591797392,1892976784,1125570730, 1338756329,1592058551,1893287357,1125755398,1338975945,1592319721,1893597942,1125940073,1339195571,1592580902,1893908540,1126124755,1339415206,1592842093,1894219150,1126309445, 1339634850,1593103295,1894529773,1126494143,1339854503,1593364508,1894840409,1126678848,1340074164,1593625731,1895151058,1126863561,1340293835,1593886965,1895461719,1127048281, 1340513515,1594148210,1895772393,1127233009,1340733204,1594409465,1896083080,1127417745,1340952901,1594670731,1896393780,1127602488,1341172608,1594932008,1896704492,1127787239, 1341392324,1595193296,1897015217,1127971997,1341612049,1595454594,1897325955,1128156763,1341831783,1595715903,1897636705,1128341536,1342051525,1595977223,1897947469,1128526317, 1342271277,1596238553,1898258245,1128711105,1342491038,1596499894,1898569033,1128895901,1342710808,1596761246,1898879835,1129080705,1342930586,1597022608,1899190649,1129265516, 1343150374,1597283981,1899501475,1129450335,1343370171,1597545365,1899812315,1129635161,1343589977,1597806760,1900123167,1129819995,1343809791,1598068165,1900434032,1130004836, 1344029615,1598329581,1900744910,1130189685,1344249448,1598591008,1901055800,1130374542,1344469289,1598852445,1901366703,1130559406,1344689140,1599113893,1901677619,1130744278, 1344909000,1599375352,1901988548,1130929157,1345128868,1599636821,1902299489,1131114043,1345348746,1599898301,1902610443,1131298938,1345568633,1600159792,1902921409,1131483840, 1345788528,1600421293,1903232389,1131668749,1346008433,1600682805,1903543381,1131853666,1346228346,1600944328,1903854385,1132038591,1346448269,1601205861,1904165403,1132223523, 1346668200,1601467406,1904476433,1132408462,1346888141,1601728960,1904787476,1132593409,1347108090,1601990526,1905098531,1132778364,1347328049,1602252102,1905409600,1132963326, 1347548016,1602513689,1905720681,1133148296,1347767993,1602775286,1906031774,1133333274,1347987978,1603036895,1906342881,1133518259,1348207972,1603298513,1906654000,1133703251, 1348427976,1603560143,1906965131,1133888251,1348647988,1603821783,1907276276,1134073259,1348868009,1604083434,1907587433,1134258274,1349088040,1604345096,1907898603,1134443296, 1349308079,1604606768,1908209785,1134628327,1349528127,1604868451,1908520980,1134813364,1349748184,1605130144,1908832188,1134998410,1349968250,1605391848,1909143409,1135183462, 1350188326,1605653563,1909454642,1135368523,1350408410,1605915289,1909765888,1135553591,1350628503,1606177025,1910077146,1135738666,1350848605,1606438772,1910388417,1135923749, 1351068716,1606700530,1910699701,1136108840,1351288836,1606962298,1911010998,1136293938,1351508965,1607224077,1911322307,1136479043,1351729102,1607485866,1911633629,1136664157, 1351949249,1607747666,1911944964,1136849277,1352169405,1608009477,1912256311,1137034406,1352389570,1608271299,1912567671,1137219541,1352609744,1608533131,1912879044,1137404685, 1352829926,1608794974,1913190429,1137589835,1353050118,1609056827,1913501827,1137774994,1353270318,1609318691,1913813238,1137960160,1353490528,1609580566,1914124661,1138145333, 1353710747,1609842451,1914436097,1138330514,1353930974,1610104348,1914747546,1138515703,1354151210,1610366254,1915059007,1138700899,1354371456,1610628172,1915370481,1138886102, 1354591710,1610890100,1915681968,1139071313,1354811973,1611152038,1915993467,1139256532,1355032246,1611413988,1916304979,1139441758,1355252527,1611675948,1916616504,1139626992, 1355472817,1611937918,1916928041,1139812233,1355693116,1612199899,1917239591,1139997482,1355913424,1612461891,1917551154,1140182738 };
b21dddd6471594b234010c5f8afcae5a721e17e8
191707dd19837f7abd6f4255cd42b78d3ca741c5
/X11R6/contrib/programs/kgames/kcribbage/io.c
9038b806979ec926d35b717ac3014d1d3b7d5d65
[]
no_license
yoya/x.org
4709089f97b1b48f7de2cfbeff1881c59ea1d28e
fb9e6d4bd0c880cfc674d4697322331fe39864d9
refs/heads/master
2023-08-08T02:00:51.277615
2023-07-25T14:05:05
2023-07-25T14:05:05
163,954,490
2
0
null
null
null
null
UTF-8
C
false
false
4,034
c
/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #ifndef lint static char sccsid[] = "@(#)io.c 5.1 (Berkeley) 5/30/85"; #endif not lint # include <ctype.h> # include <varargs.h> # include <stdio.h> # include "deck.h" # include "cribbage.h" # define LINESIZE 128 char linebuf[ LINESIZE ]; char *rankname[ RANKS ] = { "ACE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN", "EIGHT", "NINE", "TEN", "JACK", "QUEEN", "KING" }; char *rankchar[ RANKS ] = { "A", "2", "3", "4", "5", "6", "7", "8", "9", "T", "J", "Q", "K" }; char *suitname[ SUITS ] = { "SPADES", "HEARTS", "DIAMONDS", "CLUBS" }; char *suitchar[ SUITS ] = { "S", "H", "D", "C" }; /* * msgcard: * Call msgcrd in one of two forms */ msgcard(c, brief) CARD c; BOOLEAN brief; { if (brief) return msgcrd(c, TRUE, (char *) NULL, TRUE); else return msgcrd(c, FALSE, " of ", FALSE); } /* * msgcrd: * Print the value of a card in ascii */ msgcrd(c, brfrank, mid, brfsuit) CARD c; char *mid; BOOLEAN brfrank, brfsuit; { if (c.rank == EMPTY || c.suit == EMPTY) return FALSE; if (brfrank) addmsg("%1.1s", rankchar[c.rank]); else addmsg(rankname[c.rank]); if (mid != NULL) addmsg(mid); if (brfsuit) addmsg("%1.1s", suitchar[c.suit]); else addmsg(suitname[c.suit]); return TRUE; } /* * getuchar: * Reads and converts to upper case */ getuchar() { register int c; c = UIReadChar (); if (islower(c)) c = toupper(c); UIEchoChar (c); return c; } /* * number: * Reads in a decimal number and makes sure it is between "lo" and * "hi" inclusive. */ number(lo, hi, prompt) int lo, hi; char *prompt; { char *getline(); register char *p; register int sum; sum = 0; for (;;) { msg(prompt); if(!(p = getline()) || *p == NULL) { msg(quiet ? "Not a number" : "That doesn't look like a number"); continue; } sum = 0; if (!isdigit(*p)) sum = lo - 1; else while (isdigit(*p)) { sum = 10 * sum + (*p - '0'); ++p; } if (*p != ' ' && *p != '\t' && *p != NULL) sum = lo - 1; if (sum >= lo && sum <= hi) return sum; if (sum == lo - 1) msg("that doesn't look like a number, try again --> "); else msg("%d is not between %d and %d inclusive, try again --> ", sum, lo, hi); } } /* * msg: * Display a message at the top of the screen. */ char Msgbuf[BUFSIZ] = { '\0' }; static int Newpos = 0; /* VARARGS1 */ msg(fmt, va_alist) char *fmt; va_dcl { va_list args; va_start(args); doadd(fmt, args); va_end(args); endmsg(TRUE); } /* * addmsg: * Add things to the current message */ /* VARARGS1 */ addmsg(fmt, va_alist) char *fmt; va_dcl { va_list args; va_start (args); doadd(fmt, args); va_end (args); } /* * endmsg: * Display a new msg. */ endmsg(newline) BOOLEAN newline; { int linelen, msglen, len; char *mp; linelen = UIGetMessageSize (); msglen = strlen (Msgbuf); mp = Msgbuf; do { len = msglen; if (msglen > linelen) { for (len = linelen; len >= 0; len--) if (mp[len] == ' ') break; while (mp[len] == ' ') len++; mp[len-1] = '\0'; } UIMessage (mp, newline); newline = TRUE; mp += len; msglen -= len; } while (msglen); Newpos = 0; } /* * doadd: * Perform an add onto the message buffer */ doadd(fmt, args) char *fmt; va_list args; { vsprintf (&Msgbuf[Newpos], fmt, args); Newpos = strlen(Msgbuf); } /* * getline: * Reads the next line up to '\n' or EOF. Multiple spaces are * compressed to one space; a space is inserted before a ',' */ char * getline() { UIReadLine (linebuf, LINESIZE); return linebuf; } /* * quit: * Leave the program, cleaning things up as we go. */ quit() { UIFinish (); exit(0); }
160a30f4830c1b2a21b4f16e0146a8ee94bec6de
326368489d1e9ba465455b1f208307d03053b760
/arch/armv7-m/mach-nrf5/include/nrf52.h
9bfa6286c67da612ac2c61a0086a86f7c5ed9718
[ "Apache-2.0" ]
permissive
fossabot/yaos
c2b1e9efdb61585be5bcd20ac8e03eb5d6d35459
159a56005fe8fab99d54aa78b35a03c1bf757f2e
refs/heads/master
2020-04-11T04:39:01.462687
2018-12-12T17:09:15
2018-12-12T17:09:15
161,520,258
0
0
null
2018-12-12T17:09:15
2018-12-12T17:09:14
null
UTF-8
C
false
false
101
h
#ifndef __NRF52_REGS_H__ #define __NRF52_REGS_H__ #include <types.h> #endif /* __NRF52_REGS_H__ */
d9109c601f932eda37f9e6b9d06566ee0fc31ebd
b15ceef7ee447f00cc996e922ee25920c45eea60
/0x0E-structures_typedef/dog.h
fca45e5312a606a90a5369869c1d2d60c3d4b934
[]
no_license
juanquinterodev/holbertonschool-low_level_programming
6d864400658d704889ff6c42906cc97ab7aa9044
ddeb3783d8b797b4511190bc05979cf9c5632dc7
refs/heads/master
2020-06-06T14:22:59.938340
2020-01-17T01:33:05
2020-01-17T01:33:05
192,762,897
0
0
null
null
null
null
UTF-8
C
false
false
422
h
#ifndef _DOG_H_ #define _DOG_H_ /** * struct dog - define struct * @name: point to char * @age: years float * @owner: point to char */ struct dog { char *name; float age; char *owner; }; int _putchar(char c); void print_dog(struct dog *d); void init_dog(struct dog *d, char *name, float age, char *owner); typedef struct dog dog_t; dog_t *new_dog(char *name, float age, char *owner); void free_dog(dog_t *d); #endif
bb954f3a38e7f5737215723a202a5c1f54cbd5b7
b4d42f0055b3704f2688e654a687ddb6c5624431
/src/it/unimi/dsi/fastutil/ints/Int2BooleanFunction.c
76d48b9e7cfb8277a6516be371b29d7367900447
[ "Apache-2.0" ]
permissive
valmac/fastutil-1
50c9ea26904d2687a5aeabfa3ebec11e7c1f4789
1eec4d37a1c9995688c7e8cac0f5cbee63f87f21
refs/heads/master
2021-05-27T09:06:47.249224
2013-04-05T20:17:32
2013-04-05T20:17:32
null
0
0
null
null
null
null
UTF-8
C
false
false
15,186
c
/* Generic definitions */ #define PACKAGE it.unimi.dsi.fastutil.ints #define VALUE_PACKAGE it.unimi.dsi.fastutil.booleans /* Assertions (useful to generate conditional code) */ #unassert keyclass #assert keyclass(Integer) #unassert keys #assert keys(primitive) #unassert valueclass #assert valueclass(Boolean) #unassert values #assert values(primitive) /* Current type and class (and size, if applicable) */ #define KEY_TYPE int #define VALUE_TYPE boolean #define KEY_CLASS Integer #define VALUE_CLASS Boolean #if #keyclass(Object) || #keyclass(Reference) #define KEY_GENERIC_CLASS K #define KEY_GENERIC_TYPE K #define KEY_GENERIC <K> #define KEY_GENERIC_WILDCARD <?> #define KEY_EXTENDS_GENERIC <? extends K> #define KEY_SUPER_GENERIC <? super K> #define KEY_GENERIC_CAST (K) #define KEY_GENERIC_ARRAY_CAST (K[]) #define KEY_GENERIC_BIG_ARRAY_CAST (K[][]) #else #define KEY_GENERIC_CLASS KEY_CLASS #define KEY_GENERIC_TYPE KEY_TYPE #define KEY_GENERIC #define KEY_GENERIC_WILDCARD #define KEY_EXTENDS_GENERIC #define KEY_SUPER_GENERIC #define KEY_GENERIC_CAST #define KEY_GENERIC_ARRAY_CAST #define KEY_GENERIC_BIG_ARRAY_CAST #endif #if #valueclass(Object) || #valueclass(Reference) #define VALUE_GENERIC_CLASS V #define VALUE_GENERIC_TYPE V #define VALUE_GENERIC <V> #define VALUE_EXTENDS_GENERIC <? extends V> #define VALUE_GENERIC_CAST (V) #define VALUE_GENERIC_ARRAY_CAST (V[]) #else #define VALUE_GENERIC_CLASS VALUE_CLASS #define VALUE_GENERIC_TYPE VALUE_TYPE #define VALUE_GENERIC #define VALUE_EXTENDS_GENERIC #define VALUE_GENERIC_CAST #define VALUE_GENERIC_ARRAY_CAST #endif #if #keyclass(Object) || #keyclass(Reference) #if #valueclass(Object) || #valueclass(Reference) #define KEY_VALUE_GENERIC <K,V> #define KEY_VALUE_EXTENDS_GENERIC <? extends K, ? extends V> #else #define KEY_VALUE_GENERIC <K> #define KEY_VALUE_EXTENDS_GENERIC <? extends K> #endif #else #if #valueclass(Object) || #valueclass(Reference) #define KEY_VALUE_GENERIC <V> #define KEY_VALUE_EXTENDS_GENERIC <? extends V> #else #define KEY_VALUE_GENERIC #define KEY_VALUE_EXTENDS_GENERIC #endif #endif /* Value methods */ #define KEY_VALUE intValue #define VALUE_VALUE booleanValue /* Interfaces (keys) */ #define COLLECTION IntCollection #define SET IntSet #define HASH IntHash #define SORTED_SET IntSortedSet #define STD_SORTED_SET IntSortedSet #define FUNCTION Int2BooleanFunction #define MAP Int2BooleanMap #define SORTED_MAP Int2BooleanSortedMap #if #keyclass(Object) || #keyclass(Reference) #define STD_SORTED_MAP SortedMap #define STRATEGY Strategy #else #define STD_SORTED_MAP Int2BooleanSortedMap #define STRATEGY PACKAGE.IntHash.Strategy #endif #define LIST IntList #define BIG_LIST IntBigList #define STACK IntStack #define PRIORITY_QUEUE IntPriorityQueue #define INDIRECT_PRIORITY_QUEUE IntIndirectPriorityQueue #define INDIRECT_DOUBLE_PRIORITY_QUEUE IntIndirectDoublePriorityQueue #define KEY_ITERATOR IntIterator #define KEY_ITERABLE IntIterable #define KEY_BIDI_ITERATOR IntBidirectionalIterator #define KEY_LIST_ITERATOR IntListIterator #define KEY_BIG_LIST_ITERATOR IntBigListIterator #define STD_KEY_ITERATOR IntIterator #define KEY_COMPARATOR IntComparator /* Interfaces (values) */ #define VALUE_COLLECTION BooleanCollection #define VALUE_ARRAY_SET BooleanArraySet #define VALUE_ITERATOR BooleanIterator #define VALUE_LIST_ITERATOR BooleanListIterator /* Abstract implementations (keys) */ #define ABSTRACT_COLLECTION AbstractIntCollection #define ABSTRACT_SET AbstractIntSet #define ABSTRACT_SORTED_SET AbstractIntSortedSet #define ABSTRACT_FUNCTION AbstractInt2BooleanFunction #define ABSTRACT_MAP AbstractInt2BooleanMap #define ABSTRACT_FUNCTION AbstractInt2BooleanFunction #define ABSTRACT_SORTED_MAP AbstractInt2BooleanSortedMap #define ABSTRACT_LIST AbstractIntList #define ABSTRACT_BIG_LIST AbstractIntBigList #define SUBLIST IntSubList #define ABSTRACT_PRIORITY_QUEUE AbstractIntPriorityQueue #define ABSTRACT_STACK AbstractIntStack #define KEY_ABSTRACT_ITERATOR AbstractIntIterator #define KEY_ABSTRACT_BIDI_ITERATOR AbstractIntBidirectionalIterator #define KEY_ABSTRACT_LIST_ITERATOR AbstractIntListIterator #define KEY_ABSTRACT_BIG_LIST_ITERATOR AbstractIntBigListIterator #if #keyclass(Object) #define KEY_ABSTRACT_COMPARATOR Comparator #else #define KEY_ABSTRACT_COMPARATOR AbstractIntComparator #endif /* Abstract implementations (values) */ #define VALUE_ABSTRACT_COLLECTION AbstractBooleanCollection #define VALUE_ABSTRACT_ITERATOR AbstractBooleanIterator #define VALUE_ABSTRACT_BIDI_ITERATOR AbstractBooleanBidirectionalIterator /* Static containers (keys) */ #define COLLECTIONS IntCollections #define SETS IntSets #define SORTED_SETS IntSortedSets #define LISTS IntLists #define BIG_LISTS IntBigLists #define MAPS Int2BooleanMaps #define FUNCTIONS Int2BooleanFunctions #define SORTED_MAPS Int2BooleanSortedMaps #define PRIORITY_QUEUES IntPriorityQueues #define HEAPS IntHeaps #define SEMI_INDIRECT_HEAPS IntSemiIndirectHeaps #define INDIRECT_HEAPS IntIndirectHeaps #define ARRAYS IntArrays #define BIG_ARRAYS IntBigArrays #define ITERATORS IntIterators #define BIG_LIST_ITERATORS IntBigListIterators #define COMPARATORS IntComparators /* Static containers (values) */ #define VALUE_COLLECTIONS BooleanCollections #define VALUE_SETS BooleanSets #define VALUE_ARRAYS BooleanArrays /* Implementations */ #define OPEN_HASH_SET IntOpenHashSet #define OPEN_HASH_BIG_SET IntOpenHashBigSet #define OPEN_DOUBLE_HASH_SET IntOpenDoubleHashSet #define OPEN_HASH_MAP Int2BooleanOpenHashMap #define STRIPED_OPEN_HASH_MAP StripedInt2BooleanOpenHashMap #define OPEN_DOUBLE_HASH_MAP Int2BooleanOpenDoubleHashMap #define ARRAY_SET IntArraySet #define ARRAY_MAP Int2BooleanArrayMap #define LINKED_OPEN_HASH_SET IntLinkedOpenHashSet #define AVL_TREE_SET IntAVLTreeSet #define RB_TREE_SET IntRBTreeSet #define AVL_TREE_MAP Int2BooleanAVLTreeMap #define RB_TREE_MAP Int2BooleanRBTreeMap #define ARRAY_LIST IntArrayList #define BIG_ARRAY_BIG_LIST IntBigArrayBigList #define ARRAY_FRONT_CODED_LIST IntArrayFrontCodedList #define HEAP_PRIORITY_QUEUE IntHeapPriorityQueue #define HEAP_SEMI_INDIRECT_PRIORITY_QUEUE IntHeapSemiIndirectPriorityQueue #define HEAP_INDIRECT_PRIORITY_QUEUE IntHeapIndirectPriorityQueue #define HEAP_SESQUI_INDIRECT_DOUBLE_PRIORITY_QUEUE IntHeapSesquiIndirectDoublePriorityQueue #define HEAP_INDIRECT_DOUBLE_PRIORITY_QUEUE IntHeapIndirectDoublePriorityQueue #define ARRAY_FIFO_QUEUE IntArrayFIFOQueue #define ARRAY_PRIORITY_QUEUE IntArrayPriorityQueue #define ARRAY_INDIRECT_PRIORITY_QUEUE IntArrayIndirectPriorityQueue #define ARRAY_INDIRECT_DOUBLE_PRIORITY_QUEUE IntArrayIndirectDoublePriorityQueue /* Synchronized wrappers */ #define SYNCHRONIZED_COLLECTION SynchronizedIntCollection #define SYNCHRONIZED_SET SynchronizedIntSet #define SYNCHRONIZED_SORTED_SET SynchronizedIntSortedSet #define SYNCHRONIZED_FUNCTION SynchronizedInt2BooleanFunction #define SYNCHRONIZED_MAP SynchronizedInt2BooleanMap #define SYNCHRONIZED_LIST SynchronizedIntList /* Unmodifiable wrappers */ #define UNMODIFIABLE_COLLECTION UnmodifiableIntCollection #define UNMODIFIABLE_SET UnmodifiableIntSet #define UNMODIFIABLE_SORTED_SET UnmodifiableIntSortedSet #define UNMODIFIABLE_FUNCTION UnmodifiableInt2BooleanFunction #define UNMODIFIABLE_MAP UnmodifiableInt2BooleanMap #define UNMODIFIABLE_LIST UnmodifiableIntList #define UNMODIFIABLE_KEY_ITERATOR UnmodifiableIntIterator #define UNMODIFIABLE_KEY_BIDI_ITERATOR UnmodifiableIntBidirectionalIterator #define UNMODIFIABLE_KEY_LIST_ITERATOR UnmodifiableIntListIterator /* Other wrappers */ #define KEY_READER_WRAPPER IntReaderWrapper #define KEY_DATA_INPUT_WRAPPER IntDataInputWrapper /* Methods (keys) */ #define NEXT_KEY nextInt #define PREV_KEY previousInt #define FIRST_KEY firstIntKey #define LAST_KEY lastIntKey #define GET_KEY getInt #define REMOVE_KEY removeInt #define READ_KEY readInt #define WRITE_KEY writeInt #define DEQUEUE dequeueInt #define DEQUEUE_LAST dequeueLastInt #define SUBLIST_METHOD intSubList #define SINGLETON_METHOD intSingleton #define FIRST firstInt #define LAST lastInt #define TOP topInt #define PEEK peekInt #define POP popInt #define KEY_ITERATOR_METHOD intIterator #define KEY_LIST_ITERATOR_METHOD intListIterator #define KEY_EMPTY_ITERATOR_METHOD emptyIntIterator #define AS_KEY_ITERATOR asIntIterator #define TO_KEY_ARRAY toIntArray #define ENTRY_GET_KEY getIntKey #define REMOVE_FIRST_KEY removeFirstInt #define REMOVE_LAST_KEY removeLastInt #define PARSE_KEY parseInt #define LOAD_KEYS loadInts #define LOAD_KEYS_BIG loadIntsBig #define STORE_KEYS storeInts /* Methods (values) */ #define NEXT_VALUE nextBoolean #define PREV_VALUE previousBoolean #define READ_VALUE readBoolean #define WRITE_VALUE writeBoolean #define VALUE_ITERATOR_METHOD booleanIterator #define ENTRY_GET_VALUE getBooleanValue #define REMOVE_FIRST_VALUE removeFirstBoolean #define REMOVE_LAST_VALUE removeLastBoolean /* Methods (keys/values) */ #define ENTRYSET int2BooleanEntrySet /* Methods that have special names depending on keys (but the special names depend on values) */ #if #keyclass(Object) || #keyclass(Reference) #define GET_VALUE getBoolean #define REMOVE_VALUE removeBoolean #else #define GET_VALUE get #define REMOVE_VALUE remove #endif /* Equality */ #ifdef Custom #define KEY_EQUALS(x,y) ( strategy.equals( (x), KEY_GENERIC_CAST (y) ) ) #else #if #keyclass(Object) #define KEY_EQUALS(x,y) ( (x) == null ? (y) == null : (x).equals(y) ) #define KEY_EQUALS_NOT_NULL(x,y) ( (x).equals(y) ) #else #define KEY_EQUALS(x,y) ( (x) == (y) ) #define KEY_EQUALS_NOT_NULL(x,y) ( (x) == (y) ) #endif #endif #if #valueclass(Object) #define VALUE_EQUALS(x,y) ( (x) == null ? (y) == null : (x).equals(y) ) #else #define VALUE_EQUALS(x,y) ( (x) == (y) ) #endif /* Object/Reference-only definitions (keys) */ #if #keyclass(Object) || #keyclass(Reference) #define REMOVE remove #define KEY_OBJ2TYPE(x) (x) #define KEY_CLASS2TYPE(x) (x) #define KEY2OBJ(x) (x) #if #keyclass(Object) #ifdef Custom #define KEY2JAVAHASH(x) ( strategy.hashCode( KEY_GENERIC_CAST (x)) ) #define KEY2INTHASH(x) ( it.unimi.dsi.fastutil.HashCommon.murmurHash3( strategy.hashCode( KEY_GENERIC_CAST (x)) ) ) #define KEY2LONGHASH(x) ( it.unimi.dsi.fastutil.HashCommon.murmurHash3( (long)strategy.hashCode( KEY_GENERIC_CAST (x)) ) ) #else #define KEY2JAVAHASH(x) ( (x) == null ? 0 : (x).hashCode() ) #define KEY2INTHASH(x) ( (x) == null ? 0x87fcd5c : it.unimi.dsi.fastutil.HashCommon.murmurHash3( (x).hashCode() ) ) #define KEY2LONGHASH(x) ( (x) == null ? 0x810879608e4259ccL : it.unimi.dsi.fastutil.HashCommon.murmurHash3( (long)(x).hashCode() ) ) #endif #else #define KEY2JAVAHASH(x) ( (x) == null ? 0 : System.identityHashCode(x) ) #define KEY2INTHASH(x) ( (x) == null ? 0x87fcd5c : it.unimi.dsi.fastutil.HashCommon.murmurHash3( System.identityHashCode(x) ) ) #define KEY2LONGHASH(x) ( (x) == null ? 0x810879608e4259ccL : it.unimi.dsi.fastutil.HashCommon.murmurHash3( (long)System.identityHashCode(x) ) ) #endif #define KEY_CMP(x,y) ( ((Comparable<KEY_GENERIC_CLASS>)(x)).compareTo(y) ) #define KEY_CMP_EQ(x,y) ( ((Comparable<KEY_GENERIC_CLASS>)(x)).compareTo(y) == 0 ) #define KEY_LESS(x,y) ( ((Comparable<KEY_GENERIC_CLASS>)(x)).compareTo(y) < 0 ) #define KEY_LESSEQ(x,y) ( ((Comparable<KEY_GENERIC_CLASS>)(x)).compareTo(y) <= 0 ) #define KEY_NULL (null) #else /* Primitive-type-only definitions (keys) */ #define REMOVE rem #define KEY_CLASS2TYPE(x) ((x).KEY_VALUE()) #define KEY_OBJ2TYPE(x) (KEY_CLASS2TYPE((KEY_CLASS)(x))) #define KEY2OBJ(x) (KEY_CLASS.valueOf(x)) #if #keyclass(Boolean) #define KEY_CMP_EQ(x,y) ( (x) == (y) ) #define KEY_NULL (false) #define KEY_CMP(x,y) ( !(x) && (y) ? -1 : ( (x) == (y) ? 0 : 1 ) ) #define KEY_LESS(x,y) ( !(x) && (y) ) #define KEY_LESSEQ(x,y) ( !(x) || (y) ) #else #define KEY_NULL ((KEY_TYPE)0) #if #keyclass(Float) || #keyclass(Double) #define KEY_CMP_EQ(x,y) ( KEY_CLASS.compare((x),(y)) == 0 ) #define KEY_CMP(x,y) ( KEY_CLASS.compare((x),(y)) ) #define KEY_LESS(x,y) ( KEY_CLASS.compare((x),(y)) < 0 ) #define KEY_LESSEQ(x,y) ( KEY_CLASS.compare((x),(y)) <= 0 ) #else #define KEY_CMP_EQ(x,y) ( (x) == (y) ) #define KEY_CMP(x,y) ( (x) < (y) ? -1 : ( (x) == (y) ? 0 : 1 ) ) #define KEY_LESS(x,y) ( (x) < (y) ) #define KEY_LESSEQ(x,y) ( (x) <= (y) ) #endif #if #keyclass(Float) #define KEY2LEXINT(x) fixFloat(x) #elif #keyclass(Double) #define KEY2LEXINT(x) fixDouble(x) #else #define KEY2LEXINT(x) (x) #endif #endif #ifdef Custom #define KEY2JAVAHASH(x) ( strategy.hashCode(x) ) #define KEY2INTHASH(x) ( it.unimi.dsi.fastutil.HashCommon.murmurHash3( strategy.hashCode(x) ) ) #define KEY2LONGHASH(x) ( it.unimi.dsi.fastutil.HashCommon.murmurHash3( (long)strategy.hashCode(x) ) ) #else #if #keyclass(Float) #define KEY2JAVAHASH(x) it.unimi.dsi.fastutil.HashCommon.float2int(x) #define KEY2INTHASH(x) it.unimi.dsi.fastutil.HashCommon.murmurHash3( it.unimi.dsi.fastutil.HashCommon.float2int(x) ) #define KEY2LONGHASH(x) it.unimi.dsi.fastutil.HashCommon.murmurHash3( (long)it.unimi.dsi.fastutil.HashCommon.float2int(x) ) #elif #keyclass(Double) #define KEY2JAVAHASH(x) it.unimi.dsi.fastutil.HashCommon.double2int(x) #define KEY2INTHASH(x) (int)it.unimi.dsi.fastutil.HashCommon.murmurHash3(Double.doubleToRawLongBits(x)) #define KEY2LONGHASH(x) it.unimi.dsi.fastutil.HashCommon.murmurHash3(Double.doubleToRawLongBits(x)) #elif #keyclass(Long) #define KEY2JAVAHASH(x) it.unimi.dsi.fastutil.HashCommon.long2int(x) #define KEY2INTHASH(x) (int)it.unimi.dsi.fastutil.HashCommon.murmurHash3(x) #define KEY2LONGHASH(x) it.unimi.dsi.fastutil.HashCommon.murmurHash3(x) #elif #keyclass(Boolean) #define KEY2JAVAHASH(x) ((x) ? 1231 : 1237) #define KEY2INTHASH(x) ((x) ? 0xfab5368 : 0xcba05e7b) #define KEY2LONGHASH(x) ((x) ? 0x74a19fc8b6428188L : 0xbaeca2031a4fd9ecL) #else #define KEY2JAVAHASH(x) (x) #define KEY2INTHASH(x) ( it.unimi.dsi.fastutil.HashCommon.murmurHash3( (x) ) ) #define KEY2LONGHASH(x) ( it.unimi.dsi.fastutil.HashCommon.murmurHash3( (long)(x) ) ) #endif #endif #endif /* Object/Reference-only definitions (values) */ #if #valueclass(Object) || #valueclass(Reference) #define VALUE_OBJ2TYPE(x) (x) #define VALUE_CLASS2TYPE(x) (x) #define VALUE2OBJ(x) (x) #if #valueclass(Object) #define VALUE2JAVAHASH(x) ( (x) == null ? 0 : (x).hashCode() ) #else #define VALUE2JAVAHASH(x) ( (x) == null ? 0 : System.identityHashCode(x) ) #endif #define VALUE_NULL (null) #define OBJECT_DEFAULT_RETURN_VALUE (this.defRetValue) #else /* Primitive-type-only definitions (values) */ #define VALUE_CLASS2TYPE(x) ((x).VALUE_VALUE()) #define VALUE_OBJ2TYPE(x) (VALUE_CLASS2TYPE((VALUE_CLASS)(x))) #define VALUE2OBJ(x) (VALUE_CLASS.valueOf(x)) #if #valueclass(Float) || #valueclass(Double) || #valueclass(Long) #define VALUE_NULL (0) #define VALUE2JAVAHASH(x) it.unimi.dsi.fastutil.HashCommon.boolean2int(x) #elif #valueclass(Boolean) #define VALUE_NULL (false) #define VALUE2JAVAHASH(x) (x ? 1231 : 1237) #else #if #valueclass(Integer) #define VALUE_NULL (0) #else #define VALUE_NULL ((VALUE_TYPE)0) #endif #define VALUE2JAVAHASH(x) (x) #endif #define OBJECT_DEFAULT_RETURN_VALUE (null) #endif #include "drv/Function.drv"
f4a32202ee2f1a6d8890f27be1763d0edda63bf2
11bb0cbe6de2a0a4e94fc0ba610f61894d5593a1
/VBS_Zgamma/RunII2018/uncer/scale-variation/muendcap/unroll.C
68c616f145c92a2ce069447913f89049ceb9f8ea
[]
no_license
AnYpku/PKU-Cluster
0dc4a88445aeb3ca239b2d7d7f796c6a67f3f69c
f9ffbcb7988053f4618fd015c1bb656d92ff51c6
refs/heads/master
2022-11-01T23:46:59.442037
2022-10-21T06:37:43
2022-10-21T06:37:43
188,202,345
0
4
null
null
null
null
UTF-8
C
false
false
7,482
c
#define num 9 #include "TH1.h" #include "TFile.h" #include "TH2.h" #include "TCanvas.h" #include "TStyle.h" #include <iostream> #include "TLegend.h" #include "THStack.h" #include "CMSTDRStyle.h" #include "CMS_lumi.C" using namespace std; TString name="_content"; void cmsLumi(bool channel); TH1D* unroll(TH2D* th2_in,Double_t* xbin, Double_t* ybin, Int_t xbins_in, Int_t ybins_in,char *hname); void cmsLumi(bool channel) { TLatex latex; latex.SetNDC(); latex.SetTextSize(0.04); latex.SetLineWidth(2); float lumiel=41.52; float lumimu=41.52; int beamcomenergytev=13; latex.SetTextAlign(31); latex.SetTextAlign(11); latex.DrawLatex(0.18,0.82,"Preliminary"); latex.DrawLatex(0.18,0.86,"CMS"); latex.SetTextSize(0.03); latex.DrawLatex(0.76,0.92,Form("42.52 fb^{-1} (%d TeV)", (beamcomenergytev))); } TH1D* unroll(TH2D* th2_in,Double_t* xbin, Double_t* ybin, Int_t xbins_in, Int_t ybins_in,char *hname)//,char* htitle) { TH2D* th2 = th2_in; Int_t nbinsx =xbins_in;//2D histo的bin的数量,x Int_t nbinsy =ybins_in;////2D histo的bin的数量,y Int_t nbins = nbinsx*nbinsy;// 2d histo一共被分为多少区域 TH1D* h1_out= new TH1D(hname, "", nbins, 0, nbins); for(Int_t iy=1; iy<=nbinsy; iy++){ for(Int_t ix=1; ix<=nbinsx; ix++){ Double_t x_temp = 0.5*(xbin[ix-1]+xbin[ix]);//取一个bin两个端点的均值,x direction,得到the BinContent Double_t y_temp = 0.5*(ybin[iy-1]+ybin[iy]);////取一个bin两个端点的均值,y direction h1_out->SetBinContent(ix+(iy-1)*nbinsx,th2->GetBinContent(th2->FindBin(x_temp, y_temp)));//void SetBinContent(Int_t bin, Double_t content),the FindBin function can return Global bin number corresponding to x,y h1_out->SetBinError(ix+(iy-1)*nbinsx,th2->GetBinError(th2->FindBin(x_temp, y_temp))); cout<<"ix = "<<ix<<", iy = "<<iy<<"; bin = "<<ix+(iy-1)*nbinsx<<", BinContent"<<41.52*th2->GetBinContent(th2->FindBin(x_temp, y_temp))<<endl; } } return h1_out; } int unroll(){ /* ifstream file1; file1.open("./scalefactor.txt"); if(!file1.is_open()) cout<<"can not open the file"<<endl; Double_t scale_factor[9]; for(Int_t i=0;i<9;i++){ file1>>scale_factor[i]; cout<<"scale factor = "<<scale_factor[i]<<endl; }*/ setTDRStyle(); gStyle->SetPadBorderMode(0); gStyle->SetOptStat(0); gStyle->SetPadTickX(1); gStyle->SetPadTickY(1); gStyle->SetPadTickX(1); gStyle->SetPadTickY(1); gStyle->SetAxisColor(1, "XYZ"); gStyle->SetStripDecimals(kTRUE); gStyle->SetTickLength(0.03, "XYZ"); gStyle->SetNdivisions(510, "XYZ"); TFile* fout = new TFile("aa.root","RECREATE"); Double_t ZA_scale= 1; std::ostringstream strs; std::string lumivalue = strs.str(); Double_t lumi=41.52; // Double_t mjj_bins[4]={500, 800, 1200, 2000}; Double_t mjj_bins[4]={500, 800, 1200,2000}; Double_t detajj_bins[4]={2.5,4.5,6,6.5}; const char *name[9]={"Mjj 500~800","Mjj 800~1200","Mjj 1200~2000","Mjj 500~800","Mjj 800~1200","Mjj 1200~2000","Mjj 500~800","Mjj 800~1200","Mjj 1200~2000"}; // const char *name[6]={"Mjj 500~800","Mjj 800~1200","Mjj 500~800","Mjj 800~1200","Mjj 500~800","Mjj 800~1200"}; TFile* f_ZA=TFile::Open("./th2-histo.root"); TH2D* th2_ZA[num]; TH1D* t_ZA[num]; TCanvas* cc[num]; TLegend *ll[num]; for(Int_t i=0;i<num;i++){ ll[i] = new TLegend(0.55,0.4,0.8,0.9); cc[i] = new TCanvas(Form("cc_%d",i),Form("Mjj vs deltajj %d",i+1),900,600); th2_ZA[i]=(TH2D*)f_ZA->Get(Form("th2_%d",i)); t_ZA[i]= unroll(th2_ZA[i], mjj_bins, detajj_bins, 3,3,Form("hist_%d",i+1));//Form("%d central scale pdf variable",i+1)); ofstream file2(Form("./scale-txt/content-hist_no%d",i+1)); t_ZA[i]->SetLineWidth(3); t_ZA[i]->SetLineColor(i+11); for(Int_t j=1;j<=t_ZA[i]->GetNbinsX()*t_ZA[i]->GetNbinsY();j++){ t_ZA[i]->GetXaxis()->SetBinLabel(j,name[j-1]);} t_ZA[i]->Scale(lumi*ZA_scale); t_ZA[i]->Draw("HIST"); // t_ZA[i]->DrawNormalized("HIST"); if(i==0) ll[i]->AddEntry(t_ZA[i],Form("%d central scale variation",i+1)); else if(i==5) ll[i]->AddEntry(t_ZA[i],Form("%d scale variation",i+2)); else if(i==6) ll[i]->AddEntry(t_ZA[i],Form("%d scale variation",i+3)); else ll[i]->AddEntry(t_ZA[i],Form("%d scale variation",i+1)); ll[i]->Draw(); cc[i]->Print(Form("./figs/tmp-hist2d_%d.eps",i+1)); for(Int_t k=0;k < t_ZA[i]->GetNbinsX()*t_ZA[i]->GetNbinsY();k++){ // file2<<t_ZA[i]->GetBinContent(k+1)*scale_factor[i]<<endl;} file2<<t_ZA[i]->GetBinContent(k+1)<<endl;} } TCanvas* c1 = new TCanvas("c1","Mjj vs deltajj",900,600); TLine* line = new TLine(t_ZA[0]->GetXaxis()->GetXmin(),0,t_ZA[0]->GetXaxis()->GetXmax(),0); c1->SetFrameFillColor(41); TLegend *l2 = new TLegend(0.55,0.4,0.8,0.9); t_ZA[0]->SetTitle("Mjj vs detajj"); t_ZA[0]->SetLineWidth(3); t_ZA[0]->SetLineColor(kRed); t_ZA[0]->GetYaxis()->SetRangeUser(-2,122); t_ZA[0]->Draw("HIST"); t_ZA[0]->GetXaxis()->SetTitle("mjj(GeV)"); t_ZA[0]->GetXaxis()->SetTitleSize(0.065); t_ZA[0]->GetXaxis()->SetTitleFont(12); l2->AddEntry(t_ZA[0],"1 central scale variation"); // t_ZA[0]->GetXaxis()->CenterTitle(); for(Int_t i=1;i<num;i++){ // t_ZA[i]->SetFillColor(kMagenta); // t_ZA[i]->SetMarkerColor(kMagenta); t_ZA[i]->SetLineColor(i+1); t_ZA[i]->SetLineWidth(1); t_ZA[i]->SetLineStyle(2); // t_ZA[i]->Scale(scale_factor[i]); for(Int_t j=1;j<=t_ZA[i]->GetNbinsX()*t_ZA[i]->GetNbinsY();j++){ t_ZA[i]->GetXaxis()->SetBinLabel(j,name[j-1]);} //t_ZA[i]->Draw("HIST,SAME"); t_ZA[i]->Draw("HIST,SAME"); if(i==0) l2->AddEntry(t_ZA[i],Form("%d central scale variation",i+1)); else if(num==7 && i==5) l2->AddEntry(t_ZA[i],Form("%d scale variation",i+2)); else if(num==7 && i==6) l2->AddEntry(t_ZA[i],Form("%d scale variation",i+3)); else l2->AddEntry(t_ZA[i],Form("%d scale variation",i+1)); // delete t_ZA[i]; // delete cc[i]; } l2->Draw(); line->SetLineColor(2); line->SetLineWidth(1); line->Draw(); c1->Print("./figs/hist-2d.eps"); c1->Print("./figs/hist-2d.pdf"); // TH1D* t_ZA=unroll(th2_ZA, mjj_bins, detajj_bins, 3,3); // for(Int_t i=0;i<num;i++){ // t_ZA[i]->SetFillColor(i+1); // t_ZA[i]->SetMarkerColor(i+1); // t_ZA[i]->SetLineColor(i+1); // t_ZA[i]->Scale(lumi*ZA_scale); // } THStack* hs = new THStack("hs", ""); TLegend *l1 = new TLegend(0.55,0.4,0.8,0.9); for(Int_t i=0;i<num;i++){ hs->Add(t_ZA[i]); l1->AddEntry(t_ZA[i],Form("%d central scale pdf variations",i+1)); } // TCanvas* c = new TCanvas("c","Mjj vs deltajj",800,600); // c->cd(); // TPad* fPad1 = new TPad("pad1", "", 0.00, 0.00, 0.99, 0.99); // fPad1->Draw(); // CMS_lumi(fPad1, 4, 0, lumivalue); // c->SetFrameFillColor(41); // hs->Draw("HIST"); // hs->GetYaxis()->SetTitleOffset(0.8); // hs->GetYaxis()->SetTitle("Events /bin"); // for(Int_t i=1;i<=9;i++){ hs->GetXaxis()->SetBinLabel(i,name[i-1]);} // l1->Draw(); // c->Print("tmp.eps"); cmsLumi(0); fout->cd(); for(Int_t i=0;i<num;i++){ t_ZA[i]->Write();} hs->Write(); fout->Close(); return 0; }
7304bcb15b3fafcfb902c32a433f16e284d7c253
af79492c6999077f88b820185ecd4eb82c355c9a
/Q2NuZBin_fullrange/gsim_CD_Dgsim/rspic/hM1_30.C
2d27d48713efe452e9e3140c0cf9181eae8f9994
[]
no_license
orsosa/Eg2_ana
f8d20c0a4c3c0a2e725a24fa84518b552dde31e3
f49ee1384f54365c0b293656386635b111c54ae0
refs/heads/master
2020-07-01T09:30:30.162135
2018-11-05T15:08:42
2018-11-05T15:08:42
74,095,684
0
0
null
null
null
null
UTF-8
C
false
false
96,606
c
{ //=========Macro generated from canvas: c/The canvas //========= (Tue Apr 4 13:09:35 2017) by ROOT version5.34/19 TCanvas *c = new TCanvas("c", "The canvas",1,1,800,576); gStyle->SetOptFit(1); c->SetHighLightColor(2); c->Range(0.007513875,-0.9755482,0.2624861,3.447027); c->SetBorderSize(2); c->SetLogy(); c->SetFrameFillColor(0); TH1F *hM_bin30 = new TH1F("hM_bin30","M_{#gamma #gamma}",10000,0.0330111,0.2369889); hM_bin30->SetBinContent(0,4); hM_bin30->SetBinContent(474,1); hM_bin30->SetBinContent(694,1); hM_bin30->SetBinContent(712,1); hM_bin30->SetBinContent(1430,1); hM_bin30->SetBinContent(1713,1); hM_bin30->SetBinContent(1759,1); hM_bin30->SetBinContent(1979,1); hM_bin30->SetBinContent(2393,1); hM_bin30->SetBinContent(2428,1); hM_bin30->SetBinContent(2561,1); hM_bin30->SetBinContent(2700,1); hM_bin30->SetBinContent(2739,1); hM_bin30->SetBinContent(2825,1); hM_bin30->SetBinContent(2852,1); hM_bin30->SetBinContent(2861,1); hM_bin30->SetBinContent(3043,1); hM_bin30->SetBinContent(3047,1); hM_bin30->SetBinContent(3059,1); hM_bin30->SetBinContent(3156,1); hM_bin30->SetBinContent(3189,1); hM_bin30->SetBinContent(3191,1); hM_bin30->SetBinContent(3423,1); hM_bin30->SetBinContent(3425,1); hM_bin30->SetBinContent(3474,1); hM_bin30->SetBinContent(3506,1); hM_bin30->SetBinContent(3514,1); hM_bin30->SetBinContent(3575,1); hM_bin30->SetBinContent(3628,1); hM_bin30->SetBinContent(3647,1); hM_bin30->SetBinContent(3715,1); hM_bin30->SetBinContent(3779,1); hM_bin30->SetBinContent(3817,1); hM_bin30->SetBinContent(3850,1); hM_bin30->SetBinContent(3854,1); hM_bin30->SetBinContent(3900,1); hM_bin30->SetBinContent(3908,1); hM_bin30->SetBinContent(3950,1); hM_bin30->SetBinContent(4035,1); hM_bin30->SetBinContent(4101,1); hM_bin30->SetBinContent(4147,1); hM_bin30->SetBinContent(4211,1); hM_bin30->SetBinContent(4216,1); hM_bin30->SetBinContent(4275,1); hM_bin30->SetBinContent(4305,1); hM_bin30->SetBinContent(4389,1); hM_bin30->SetBinContent(4396,1); hM_bin30->SetBinContent(4494,1); hM_bin30->SetBinContent(4505,2); hM_bin30->SetBinContent(4510,1); hM_bin30->SetBinContent(4521,1); hM_bin30->SetBinContent(4536,1); hM_bin30->SetBinContent(4575,1); hM_bin30->SetBinContent(4598,1); hM_bin30->SetBinContent(4604,1); hM_bin30->SetBinContent(4606,1); hM_bin30->SetBinContent(4607,1); hM_bin30->SetBinContent(4608,1); hM_bin30->SetBinContent(4609,1); hM_bin30->SetBinContent(4613,1); hM_bin30->SetBinContent(4635,1); hM_bin30->SetBinContent(4636,1); hM_bin30->SetBinContent(4643,1); hM_bin30->SetBinContent(4646,1); hM_bin30->SetBinContent(4651,1); hM_bin30->SetBinContent(4653,1); hM_bin30->SetBinContent(4656,1); hM_bin30->SetBinContent(4659,3); hM_bin30->SetBinContent(4667,1); hM_bin30->SetBinContent(4676,1); hM_bin30->SetBinContent(4678,1); hM_bin30->SetBinContent(4682,1); hM_bin30->SetBinContent(4683,1); hM_bin30->SetBinContent(4684,1); hM_bin30->SetBinContent(4686,1); hM_bin30->SetBinContent(4689,4); hM_bin30->SetBinContent(4690,1); hM_bin30->SetBinContent(4691,1); hM_bin30->SetBinContent(4693,1); hM_bin30->SetBinContent(4695,1); hM_bin30->SetBinContent(4703,1); hM_bin30->SetBinContent(4707,1); hM_bin30->SetBinContent(4708,1); hM_bin30->SetBinContent(4709,1); hM_bin30->SetBinContent(4710,1); hM_bin30->SetBinContent(4711,1); hM_bin30->SetBinContent(4712,1); hM_bin30->SetBinContent(4718,1); hM_bin30->SetBinContent(4723,1); hM_bin30->SetBinContent(4725,1); hM_bin30->SetBinContent(4726,2); hM_bin30->SetBinContent(4727,1); hM_bin30->SetBinContent(4729,1); hM_bin30->SetBinContent(4733,1); hM_bin30->SetBinContent(4738,1); hM_bin30->SetBinContent(4741,3); hM_bin30->SetBinContent(4742,1); hM_bin30->SetBinContent(4743,1); hM_bin30->SetBinContent(4745,1); hM_bin30->SetBinContent(4746,1); hM_bin30->SetBinContent(4748,1); hM_bin30->SetBinContent(4750,1); hM_bin30->SetBinContent(4755,3); hM_bin30->SetBinContent(4757,2); hM_bin30->SetBinContent(4758,1); hM_bin30->SetBinContent(4759,1); hM_bin30->SetBinContent(4760,1); hM_bin30->SetBinContent(4761,2); hM_bin30->SetBinContent(4762,2); hM_bin30->SetBinContent(4764,2); hM_bin30->SetBinContent(4765,1); hM_bin30->SetBinContent(4766,1); hM_bin30->SetBinContent(4767,3); hM_bin30->SetBinContent(4768,1); hM_bin30->SetBinContent(4770,1); hM_bin30->SetBinContent(4771,4); hM_bin30->SetBinContent(4772,2); hM_bin30->SetBinContent(4773,1); hM_bin30->SetBinContent(4775,2); hM_bin30->SetBinContent(4776,2); hM_bin30->SetBinContent(4777,1); hM_bin30->SetBinContent(4778,3); hM_bin30->SetBinContent(4779,3); hM_bin30->SetBinContent(4780,1); hM_bin30->SetBinContent(4781,3); hM_bin30->SetBinContent(4784,2); hM_bin30->SetBinContent(4786,1); hM_bin30->SetBinContent(4787,1); hM_bin30->SetBinContent(4788,2); hM_bin30->SetBinContent(4790,2); hM_bin30->SetBinContent(4792,1); hM_bin30->SetBinContent(4794,1); hM_bin30->SetBinContent(4795,2); hM_bin30->SetBinContent(4797,2); hM_bin30->SetBinContent(4798,3); hM_bin30->SetBinContent(4799,3); hM_bin30->SetBinContent(4800,2); hM_bin30->SetBinContent(4801,1); hM_bin30->SetBinContent(4803,2); hM_bin30->SetBinContent(4804,2); hM_bin30->SetBinContent(4805,2); hM_bin30->SetBinContent(4806,2); hM_bin30->SetBinContent(4807,2); hM_bin30->SetBinContent(4808,2); hM_bin30->SetBinContent(4809,1); hM_bin30->SetBinContent(4810,1); hM_bin30->SetBinContent(4811,9); hM_bin30->SetBinContent(4812,2); hM_bin30->SetBinContent(4813,2); hM_bin30->SetBinContent(4814,1); hM_bin30->SetBinContent(4816,1); hM_bin30->SetBinContent(4817,4); hM_bin30->SetBinContent(4818,7); hM_bin30->SetBinContent(4819,2); hM_bin30->SetBinContent(4820,5); hM_bin30->SetBinContent(4821,4); hM_bin30->SetBinContent(4822,1); hM_bin30->SetBinContent(4823,5); hM_bin30->SetBinContent(4824,1); hM_bin30->SetBinContent(4825,3); hM_bin30->SetBinContent(4826,3); hM_bin30->SetBinContent(4827,1); hM_bin30->SetBinContent(4828,4); hM_bin30->SetBinContent(4829,4); hM_bin30->SetBinContent(4830,3); hM_bin30->SetBinContent(4831,3); hM_bin30->SetBinContent(4832,2); hM_bin30->SetBinContent(4833,8); hM_bin30->SetBinContent(4834,2); hM_bin30->SetBinContent(4835,3); hM_bin30->SetBinContent(4836,3); hM_bin30->SetBinContent(4837,4); hM_bin30->SetBinContent(4838,1); hM_bin30->SetBinContent(4840,3); hM_bin30->SetBinContent(4841,3); hM_bin30->SetBinContent(4842,1); hM_bin30->SetBinContent(4843,5); hM_bin30->SetBinContent(4844,6); hM_bin30->SetBinContent(4845,2); hM_bin30->SetBinContent(4846,1); hM_bin30->SetBinContent(4847,7); hM_bin30->SetBinContent(4848,4); hM_bin30->SetBinContent(4849,3); hM_bin30->SetBinContent(4850,3); hM_bin30->SetBinContent(4851,3); hM_bin30->SetBinContent(4852,7); hM_bin30->SetBinContent(4853,1); hM_bin30->SetBinContent(4854,3); hM_bin30->SetBinContent(4855,3); hM_bin30->SetBinContent(4856,7); hM_bin30->SetBinContent(4857,6); hM_bin30->SetBinContent(4858,1); hM_bin30->SetBinContent(4859,2); hM_bin30->SetBinContent(4860,9); hM_bin30->SetBinContent(4861,3); hM_bin30->SetBinContent(4862,7); hM_bin30->SetBinContent(4863,4); hM_bin30->SetBinContent(4864,4); hM_bin30->SetBinContent(4865,2); hM_bin30->SetBinContent(4866,2); hM_bin30->SetBinContent(4867,4); hM_bin30->SetBinContent(4868,10); hM_bin30->SetBinContent(4869,8); hM_bin30->SetBinContent(4870,6); hM_bin30->SetBinContent(4871,3); hM_bin30->SetBinContent(4872,7); hM_bin30->SetBinContent(4873,3); hM_bin30->SetBinContent(4874,8); hM_bin30->SetBinContent(4875,5); hM_bin30->SetBinContent(4876,8); hM_bin30->SetBinContent(4877,11); hM_bin30->SetBinContent(4878,7); hM_bin30->SetBinContent(4879,11); hM_bin30->SetBinContent(4880,5); hM_bin30->SetBinContent(4881,5); hM_bin30->SetBinContent(4882,6); hM_bin30->SetBinContent(4883,7); hM_bin30->SetBinContent(4884,13); hM_bin30->SetBinContent(4885,8); hM_bin30->SetBinContent(4886,13); hM_bin30->SetBinContent(4887,12); hM_bin30->SetBinContent(4888,7); hM_bin30->SetBinContent(4889,8); hM_bin30->SetBinContent(4890,10); hM_bin30->SetBinContent(4891,12); hM_bin30->SetBinContent(4892,11); hM_bin30->SetBinContent(4893,11); hM_bin30->SetBinContent(4894,8); hM_bin30->SetBinContent(4895,17); hM_bin30->SetBinContent(4896,8); hM_bin30->SetBinContent(4897,14); hM_bin30->SetBinContent(4898,10); hM_bin30->SetBinContent(4899,11); hM_bin30->SetBinContent(4900,11); hM_bin30->SetBinContent(4901,18); hM_bin30->SetBinContent(4902,14); hM_bin30->SetBinContent(4903,6); hM_bin30->SetBinContent(4904,16); hM_bin30->SetBinContent(4905,11); hM_bin30->SetBinContent(4906,31); hM_bin30->SetBinContent(4907,13); hM_bin30->SetBinContent(4908,15); hM_bin30->SetBinContent(4909,16); hM_bin30->SetBinContent(4910,12); hM_bin30->SetBinContent(4911,16); hM_bin30->SetBinContent(4912,23); hM_bin30->SetBinContent(4913,22); hM_bin30->SetBinContent(4914,28); hM_bin30->SetBinContent(4915,15); hM_bin30->SetBinContent(4916,23); hM_bin30->SetBinContent(4917,24); hM_bin30->SetBinContent(4918,26); hM_bin30->SetBinContent(4919,21); hM_bin30->SetBinContent(4920,14); hM_bin30->SetBinContent(4921,28); hM_bin30->SetBinContent(4922,20); hM_bin30->SetBinContent(4923,30); hM_bin30->SetBinContent(4924,30); hM_bin30->SetBinContent(4925,23); hM_bin30->SetBinContent(4926,30); hM_bin30->SetBinContent(4927,25); hM_bin30->SetBinContent(4928,43); hM_bin30->SetBinContent(4929,33); hM_bin30->SetBinContent(4930,37); hM_bin30->SetBinContent(4931,41); hM_bin30->SetBinContent(4932,37); hM_bin30->SetBinContent(4933,47); hM_bin30->SetBinContent(4934,55); hM_bin30->SetBinContent(4935,56); hM_bin30->SetBinContent(4936,50); hM_bin30->SetBinContent(4937,51); hM_bin30->SetBinContent(4938,57); hM_bin30->SetBinContent(4939,67); hM_bin30->SetBinContent(4940,56); hM_bin30->SetBinContent(4941,63); hM_bin30->SetBinContent(4942,73); hM_bin30->SetBinContent(4943,66); hM_bin30->SetBinContent(4944,60); hM_bin30->SetBinContent(4945,64); hM_bin30->SetBinContent(4946,71); hM_bin30->SetBinContent(4947,78); hM_bin30->SetBinContent(4948,76); hM_bin30->SetBinContent(4949,111); hM_bin30->SetBinContent(4950,119); hM_bin30->SetBinContent(4951,117); hM_bin30->SetBinContent(4952,117); hM_bin30->SetBinContent(4953,132); hM_bin30->SetBinContent(4954,138); hM_bin30->SetBinContent(4955,145); hM_bin30->SetBinContent(4956,141); hM_bin30->SetBinContent(4957,168); hM_bin30->SetBinContent(4958,182); hM_bin30->SetBinContent(4959,179); hM_bin30->SetBinContent(4960,164); hM_bin30->SetBinContent(4961,198); hM_bin30->SetBinContent(4962,190); hM_bin30->SetBinContent(4963,221); hM_bin30->SetBinContent(4964,198); hM_bin30->SetBinContent(4965,238); hM_bin30->SetBinContent(4966,210); hM_bin30->SetBinContent(4967,244); hM_bin30->SetBinContent(4968,242); hM_bin30->SetBinContent(4969,281); hM_bin30->SetBinContent(4970,280); hM_bin30->SetBinContent(4971,309); hM_bin30->SetBinContent(4972,266); hM_bin30->SetBinContent(4973,336); hM_bin30->SetBinContent(4974,300); hM_bin30->SetBinContent(4975,348); hM_bin30->SetBinContent(4976,336); hM_bin30->SetBinContent(4977,375); hM_bin30->SetBinContent(4978,386); hM_bin30->SetBinContent(4979,364); hM_bin30->SetBinContent(4980,390); hM_bin30->SetBinContent(4981,355); hM_bin30->SetBinContent(4982,424); hM_bin30->SetBinContent(4983,430); hM_bin30->SetBinContent(4984,387); hM_bin30->SetBinContent(4985,407); hM_bin30->SetBinContent(4986,474); hM_bin30->SetBinContent(4987,455); hM_bin30->SetBinContent(4988,413); hM_bin30->SetBinContent(4989,433); hM_bin30->SetBinContent(4990,451); hM_bin30->SetBinContent(4991,431); hM_bin30->SetBinContent(4992,461); hM_bin30->SetBinContent(4993,459); hM_bin30->SetBinContent(4994,461); hM_bin30->SetBinContent(4995,481); hM_bin30->SetBinContent(4996,488); hM_bin30->SetBinContent(4997,484); hM_bin30->SetBinContent(4998,459); hM_bin30->SetBinContent(4999,479); hM_bin30->SetBinContent(5000,496); hM_bin30->SetBinContent(5001,452); hM_bin30->SetBinContent(5002,445); hM_bin30->SetBinContent(5003,511); hM_bin30->SetBinContent(5004,449); hM_bin30->SetBinContent(5005,474); hM_bin30->SetBinContent(5006,448); hM_bin30->SetBinContent(5007,483); hM_bin30->SetBinContent(5008,483); hM_bin30->SetBinContent(5009,455); hM_bin30->SetBinContent(5010,455); hM_bin30->SetBinContent(5011,441); hM_bin30->SetBinContent(5012,427); hM_bin30->SetBinContent(5013,437); hM_bin30->SetBinContent(5014,463); hM_bin30->SetBinContent(5015,435); hM_bin30->SetBinContent(5016,423); hM_bin30->SetBinContent(5017,378); hM_bin30->SetBinContent(5018,438); hM_bin30->SetBinContent(5019,418); hM_bin30->SetBinContent(5020,357); hM_bin30->SetBinContent(5021,353); hM_bin30->SetBinContent(5022,360); hM_bin30->SetBinContent(5023,359); hM_bin30->SetBinContent(5024,379); hM_bin30->SetBinContent(5025,364); hM_bin30->SetBinContent(5026,345); hM_bin30->SetBinContent(5027,323); hM_bin30->SetBinContent(5028,330); hM_bin30->SetBinContent(5029,330); hM_bin30->SetBinContent(5030,307); hM_bin30->SetBinContent(5031,263); hM_bin30->SetBinContent(5032,284); hM_bin30->SetBinContent(5033,254); hM_bin30->SetBinContent(5034,262); hM_bin30->SetBinContent(5035,260); hM_bin30->SetBinContent(5036,253); hM_bin30->SetBinContent(5037,229); hM_bin30->SetBinContent(5038,244); hM_bin30->SetBinContent(5039,191); hM_bin30->SetBinContent(5040,190); hM_bin30->SetBinContent(5041,161); hM_bin30->SetBinContent(5042,187); hM_bin30->SetBinContent(5043,146); hM_bin30->SetBinContent(5044,163); hM_bin30->SetBinContent(5045,157); hM_bin30->SetBinContent(5046,154); hM_bin30->SetBinContent(5047,128); hM_bin30->SetBinContent(5048,103); hM_bin30->SetBinContent(5049,136); hM_bin30->SetBinContent(5050,110); hM_bin30->SetBinContent(5051,93); hM_bin30->SetBinContent(5052,107); hM_bin30->SetBinContent(5053,106); hM_bin30->SetBinContent(5054,98); hM_bin30->SetBinContent(5055,84); hM_bin30->SetBinContent(5056,84); hM_bin30->SetBinContent(5057,76); hM_bin30->SetBinContent(5058,87); hM_bin30->SetBinContent(5059,60); hM_bin30->SetBinContent(5060,72); hM_bin30->SetBinContent(5061,54); hM_bin30->SetBinContent(5062,50); hM_bin30->SetBinContent(5063,42); hM_bin30->SetBinContent(5064,55); hM_bin30->SetBinContent(5065,48); hM_bin30->SetBinContent(5066,56); hM_bin30->SetBinContent(5067,42); hM_bin30->SetBinContent(5068,35); hM_bin30->SetBinContent(5069,34); hM_bin30->SetBinContent(5070,48); hM_bin30->SetBinContent(5071,36); hM_bin30->SetBinContent(5072,47); hM_bin30->SetBinContent(5073,31); hM_bin30->SetBinContent(5074,34); hM_bin30->SetBinContent(5075,30); hM_bin30->SetBinContent(5076,25); hM_bin30->SetBinContent(5077,27); hM_bin30->SetBinContent(5078,22); hM_bin30->SetBinContent(5079,29); hM_bin30->SetBinContent(5080,20); hM_bin30->SetBinContent(5081,30); hM_bin30->SetBinContent(5082,28); hM_bin30->SetBinContent(5083,32); hM_bin30->SetBinContent(5084,24); hM_bin30->SetBinContent(5085,29); hM_bin30->SetBinContent(5086,16); hM_bin30->SetBinContent(5087,28); hM_bin30->SetBinContent(5088,19); hM_bin30->SetBinContent(5089,21); hM_bin30->SetBinContent(5090,16); hM_bin30->SetBinContent(5091,13); hM_bin30->SetBinContent(5092,17); hM_bin30->SetBinContent(5093,13); hM_bin30->SetBinContent(5094,16); hM_bin30->SetBinContent(5095,24); hM_bin30->SetBinContent(5096,12); hM_bin30->SetBinContent(5097,17); hM_bin30->SetBinContent(5098,13); hM_bin30->SetBinContent(5099,11); hM_bin30->SetBinContent(5100,12); hM_bin30->SetBinContent(5101,9); hM_bin30->SetBinContent(5102,12); hM_bin30->SetBinContent(5103,14); hM_bin30->SetBinContent(5104,14); hM_bin30->SetBinContent(5105,10); hM_bin30->SetBinContent(5106,7); hM_bin30->SetBinContent(5107,11); hM_bin30->SetBinContent(5108,9); hM_bin30->SetBinContent(5109,11); hM_bin30->SetBinContent(5110,8); hM_bin30->SetBinContent(5111,8); hM_bin30->SetBinContent(5112,9); hM_bin30->SetBinContent(5113,7); hM_bin30->SetBinContent(5114,8); hM_bin30->SetBinContent(5115,11); hM_bin30->SetBinContent(5116,6); hM_bin30->SetBinContent(5117,8); hM_bin30->SetBinContent(5118,12); hM_bin30->SetBinContent(5119,10); hM_bin30->SetBinContent(5120,7); hM_bin30->SetBinContent(5121,8); hM_bin30->SetBinContent(5122,8); hM_bin30->SetBinContent(5123,8); hM_bin30->SetBinContent(5124,9); hM_bin30->SetBinContent(5125,7); hM_bin30->SetBinContent(5126,8); hM_bin30->SetBinContent(5127,4); hM_bin30->SetBinContent(5128,9); hM_bin30->SetBinContent(5129,5); hM_bin30->SetBinContent(5130,9); hM_bin30->SetBinContent(5131,7); hM_bin30->SetBinContent(5132,4); hM_bin30->SetBinContent(5133,5); hM_bin30->SetBinContent(5134,5); hM_bin30->SetBinContent(5135,6); hM_bin30->SetBinContent(5136,8); hM_bin30->SetBinContent(5137,5); hM_bin30->SetBinContent(5138,5); hM_bin30->SetBinContent(5139,2); hM_bin30->SetBinContent(5140,5); hM_bin30->SetBinContent(5141,5); hM_bin30->SetBinContent(5142,7); hM_bin30->SetBinContent(5143,5); hM_bin30->SetBinContent(5144,4); hM_bin30->SetBinContent(5145,4); hM_bin30->SetBinContent(5146,5); hM_bin30->SetBinContent(5147,6); hM_bin30->SetBinContent(5148,8); hM_bin30->SetBinContent(5149,3); hM_bin30->SetBinContent(5150,4); hM_bin30->SetBinContent(5151,4); hM_bin30->SetBinContent(5152,3); hM_bin30->SetBinContent(5153,2); hM_bin30->SetBinContent(5154,6); hM_bin30->SetBinContent(5155,5); hM_bin30->SetBinContent(5156,3); hM_bin30->SetBinContent(5158,6); hM_bin30->SetBinContent(5160,4); hM_bin30->SetBinContent(5161,4); hM_bin30->SetBinContent(5162,5); hM_bin30->SetBinContent(5163,3); hM_bin30->SetBinContent(5164,4); hM_bin30->SetBinContent(5165,4); hM_bin30->SetBinContent(5166,3); hM_bin30->SetBinContent(5167,4); hM_bin30->SetBinContent(5168,6); hM_bin30->SetBinContent(5169,3); hM_bin30->SetBinContent(5170,2); hM_bin30->SetBinContent(5171,2); hM_bin30->SetBinContent(5172,2); hM_bin30->SetBinContent(5173,2); hM_bin30->SetBinContent(5174,2); hM_bin30->SetBinContent(5175,4); hM_bin30->SetBinContent(5177,4); hM_bin30->SetBinContent(5178,1); hM_bin30->SetBinContent(5179,1); hM_bin30->SetBinContent(5180,3); hM_bin30->SetBinContent(5181,2); hM_bin30->SetBinContent(5182,1); hM_bin30->SetBinContent(5183,4); hM_bin30->SetBinContent(5184,1); hM_bin30->SetBinContent(5185,2); hM_bin30->SetBinContent(5186,1); hM_bin30->SetBinContent(5187,1); hM_bin30->SetBinContent(5188,1); hM_bin30->SetBinContent(5189,2); hM_bin30->SetBinContent(5190,1); hM_bin30->SetBinContent(5191,4); hM_bin30->SetBinContent(5192,1); hM_bin30->SetBinContent(5193,3); hM_bin30->SetBinContent(5194,2); hM_bin30->SetBinContent(5195,1); hM_bin30->SetBinContent(5196,2); hM_bin30->SetBinContent(5197,2); hM_bin30->SetBinContent(5199,3); hM_bin30->SetBinContent(5201,3); hM_bin30->SetBinContent(5202,3); hM_bin30->SetBinContent(5203,4); hM_bin30->SetBinContent(5205,2); hM_bin30->SetBinContent(5208,1); hM_bin30->SetBinContent(5209,1); hM_bin30->SetBinContent(5210,1); hM_bin30->SetBinContent(5211,2); hM_bin30->SetBinContent(5214,2); hM_bin30->SetBinContent(5215,3); hM_bin30->SetBinContent(5216,1); hM_bin30->SetBinContent(5217,3); hM_bin30->SetBinContent(5218,1); hM_bin30->SetBinContent(5219,1); hM_bin30->SetBinContent(5220,3); hM_bin30->SetBinContent(5221,2); hM_bin30->SetBinContent(5222,1); hM_bin30->SetBinContent(5223,1); hM_bin30->SetBinContent(5224,2); hM_bin30->SetBinContent(5225,3); hM_bin30->SetBinContent(5226,2); hM_bin30->SetBinContent(5227,2); hM_bin30->SetBinContent(5229,1); hM_bin30->SetBinContent(5231,2); hM_bin30->SetBinContent(5232,1); hM_bin30->SetBinContent(5233,3); hM_bin30->SetBinContent(5234,1); hM_bin30->SetBinContent(5238,2); hM_bin30->SetBinContent(5239,1); hM_bin30->SetBinContent(5241,1); hM_bin30->SetBinContent(5245,1); hM_bin30->SetBinContent(5247,1); hM_bin30->SetBinContent(5248,2); hM_bin30->SetBinContent(5249,1); hM_bin30->SetBinContent(5250,1); hM_bin30->SetBinContent(5251,1); hM_bin30->SetBinContent(5253,1); hM_bin30->SetBinContent(5254,2); hM_bin30->SetBinContent(5255,1); hM_bin30->SetBinContent(5257,1); hM_bin30->SetBinContent(5258,4); hM_bin30->SetBinContent(5263,2); hM_bin30->SetBinContent(5265,1); hM_bin30->SetBinContent(5268,4); hM_bin30->SetBinContent(5270,2); hM_bin30->SetBinContent(5271,2); hM_bin30->SetBinContent(5272,1); hM_bin30->SetBinContent(5275,1); hM_bin30->SetBinContent(5277,1); hM_bin30->SetBinContent(5279,1); hM_bin30->SetBinContent(5280,1); hM_bin30->SetBinContent(5283,1); hM_bin30->SetBinContent(5289,1); hM_bin30->SetBinContent(5292,1); hM_bin30->SetBinContent(5293,1); hM_bin30->SetBinContent(5295,2); hM_bin30->SetBinContent(5296,1); hM_bin30->SetBinContent(5298,2); hM_bin30->SetBinContent(5299,1); hM_bin30->SetBinContent(5302,1); hM_bin30->SetBinContent(5304,1); hM_bin30->SetBinContent(5306,1); hM_bin30->SetBinContent(5307,1); hM_bin30->SetBinContent(5308,1); hM_bin30->SetBinContent(5310,1); hM_bin30->SetBinContent(5311,1); hM_bin30->SetBinContent(5312,1); hM_bin30->SetBinContent(5313,1); hM_bin30->SetBinContent(5314,1); hM_bin30->SetBinContent(5316,2); hM_bin30->SetBinContent(5319,1); hM_bin30->SetBinContent(5320,1); hM_bin30->SetBinContent(5324,2); hM_bin30->SetBinContent(5326,1); hM_bin30->SetBinContent(5329,1); hM_bin30->SetBinContent(5336,1); hM_bin30->SetBinContent(5337,1); hM_bin30->SetBinContent(5339,1); hM_bin30->SetBinContent(5342,1); hM_bin30->SetBinContent(5350,1); hM_bin30->SetBinContent(5357,1); hM_bin30->SetBinContent(5367,1); hM_bin30->SetBinContent(5372,1); hM_bin30->SetBinContent(5373,1); hM_bin30->SetBinContent(5374,1); hM_bin30->SetBinContent(5378,1); hM_bin30->SetBinContent(5380,2); hM_bin30->SetBinContent(5381,1); hM_bin30->SetBinContent(5382,2); hM_bin30->SetBinContent(5406,1); hM_bin30->SetBinContent(5412,1); hM_bin30->SetBinContent(5413,1); hM_bin30->SetBinContent(5414,1); hM_bin30->SetBinContent(5418,1); hM_bin30->SetBinContent(5433,1); hM_bin30->SetBinContent(5437,1); hM_bin30->SetBinContent(5440,1); hM_bin30->SetBinContent(5442,1); hM_bin30->SetBinContent(5444,1); hM_bin30->SetBinContent(5446,1); hM_bin30->SetBinContent(5460,1); hM_bin30->SetBinContent(5465,1); hM_bin30->SetBinContent(5472,2); hM_bin30->SetBinContent(5473,1); hM_bin30->SetBinContent(5474,1); hM_bin30->SetBinContent(5475,1); hM_bin30->SetBinContent(5480,1); hM_bin30->SetBinContent(5483,1); hM_bin30->SetBinContent(5484,1); hM_bin30->SetBinContent(5493,1); hM_bin30->SetBinContent(5496,1); hM_bin30->SetBinContent(5504,1); hM_bin30->SetBinContent(5518,1); hM_bin30->SetBinContent(5523,1); hM_bin30->SetBinContent(5530,1); hM_bin30->SetBinContent(5553,1); hM_bin30->SetBinContent(5556,1); hM_bin30->SetBinContent(5560,1); hM_bin30->SetBinContent(5562,1); hM_bin30->SetBinContent(5564,1); hM_bin30->SetBinContent(5566,1); hM_bin30->SetBinContent(5568,2); hM_bin30->SetBinContent(5576,1); hM_bin30->SetBinContent(5577,1); hM_bin30->SetBinContent(5578,1); hM_bin30->SetBinContent(5580,1); hM_bin30->SetBinContent(5591,1); hM_bin30->SetBinContent(5595,2); hM_bin30->SetBinContent(5601,1); hM_bin30->SetBinContent(5613,2); hM_bin30->SetBinContent(5627,1); hM_bin30->SetBinContent(5637,1); hM_bin30->SetBinContent(5638,1); hM_bin30->SetBinContent(5647,1); hM_bin30->SetBinContent(5654,1); hM_bin30->SetBinContent(5659,1); hM_bin30->SetBinContent(5660,1); hM_bin30->SetBinContent(5662,1); hM_bin30->SetBinContent(5665,1); hM_bin30->SetBinContent(5671,1); hM_bin30->SetBinContent(5673,2); hM_bin30->SetBinContent(5674,1); hM_bin30->SetBinContent(5676,1); hM_bin30->SetBinContent(5678,1); hM_bin30->SetBinContent(5681,1); hM_bin30->SetBinContent(5686,1); hM_bin30->SetBinContent(5687,2); hM_bin30->SetBinContent(5688,1); hM_bin30->SetBinContent(5691,1); hM_bin30->SetBinContent(5694,2); hM_bin30->SetBinContent(5703,1); hM_bin30->SetBinContent(5709,1); hM_bin30->SetBinContent(5713,1); hM_bin30->SetBinContent(5745,2); hM_bin30->SetBinContent(5746,1); hM_bin30->SetBinContent(5750,2); hM_bin30->SetBinContent(5756,1); hM_bin30->SetBinContent(5757,1); hM_bin30->SetBinContent(5758,1); hM_bin30->SetBinContent(5759,2); hM_bin30->SetBinContent(5764,1); hM_bin30->SetBinContent(5769,1); hM_bin30->SetBinContent(5771,1); hM_bin30->SetBinContent(5789,1); hM_bin30->SetBinContent(5795,1); hM_bin30->SetBinContent(5799,1); hM_bin30->SetBinContent(5809,1); hM_bin30->SetBinContent(5812,1); hM_bin30->SetBinContent(5817,1); hM_bin30->SetBinContent(5820,1); hM_bin30->SetBinContent(5822,2); hM_bin30->SetBinContent(5832,3); hM_bin30->SetBinContent(5838,2); hM_bin30->SetBinContent(5839,1); hM_bin30->SetBinContent(5842,1); hM_bin30->SetBinContent(5848,1); hM_bin30->SetBinContent(5849,1); hM_bin30->SetBinContent(5850,1); hM_bin30->SetBinContent(5852,2); hM_bin30->SetBinContent(5863,1); hM_bin30->SetBinContent(5875,1); hM_bin30->SetBinContent(5876,1); hM_bin30->SetBinContent(5877,2); hM_bin30->SetBinContent(5886,1); hM_bin30->SetBinContent(5895,1); hM_bin30->SetBinContent(5900,1); hM_bin30->SetBinContent(5903,1); hM_bin30->SetBinContent(5904,1); hM_bin30->SetBinContent(5906,1); hM_bin30->SetBinContent(5908,1); hM_bin30->SetBinContent(5912,1); hM_bin30->SetBinContent(5916,1); hM_bin30->SetBinContent(5922,1); hM_bin30->SetBinContent(5923,1); hM_bin30->SetBinContent(5926,1); hM_bin30->SetBinContent(5927,2); hM_bin30->SetBinContent(5931,3); hM_bin30->SetBinContent(5933,1); hM_bin30->SetBinContent(5942,1); hM_bin30->SetBinContent(5946,1); hM_bin30->SetBinContent(5947,1); hM_bin30->SetBinContent(5957,1); hM_bin30->SetBinContent(5960,1); hM_bin30->SetBinContent(5968,1); hM_bin30->SetBinContent(5971,1); hM_bin30->SetBinContent(5976,2); hM_bin30->SetBinContent(5982,1); hM_bin30->SetBinContent(5984,1); hM_bin30->SetBinContent(5986,1); hM_bin30->SetBinContent(5989,1); hM_bin30->SetBinContent(5990,2); hM_bin30->SetBinContent(5993,1); hM_bin30->SetBinContent(5995,2); hM_bin30->SetBinContent(5996,1); hM_bin30->SetBinContent(5997,1); hM_bin30->SetBinContent(5998,1); hM_bin30->SetBinContent(6000,1); hM_bin30->SetBinContent(6004,1); hM_bin30->SetBinContent(6005,1); hM_bin30->SetBinContent(6015,1); hM_bin30->SetBinContent(6016,1); hM_bin30->SetBinContent(6018,1); hM_bin30->SetBinContent(6027,1); hM_bin30->SetBinContent(6038,1); hM_bin30->SetBinContent(6041,1); hM_bin30->SetBinContent(6043,2); hM_bin30->SetBinContent(6048,1); hM_bin30->SetBinContent(6050,1); hM_bin30->SetBinContent(6053,1); hM_bin30->SetBinContent(6057,2); hM_bin30->SetBinContent(6059,1); hM_bin30->SetBinContent(6061,1); hM_bin30->SetBinContent(6065,2); hM_bin30->SetBinContent(6066,2); hM_bin30->SetBinContent(6067,2); hM_bin30->SetBinContent(6068,1); hM_bin30->SetBinContent(6072,1); hM_bin30->SetBinContent(6073,1); hM_bin30->SetBinContent(6075,1); hM_bin30->SetBinContent(6077,1); hM_bin30->SetBinContent(6082,1); hM_bin30->SetBinContent(6086,1); hM_bin30->SetBinContent(6088,1); hM_bin30->SetBinContent(6094,1); hM_bin30->SetBinContent(6101,1); hM_bin30->SetBinContent(6106,1); hM_bin30->SetBinContent(6108,1); hM_bin30->SetBinContent(6115,1); hM_bin30->SetBinContent(6118,1); hM_bin30->SetBinContent(6119,1); hM_bin30->SetBinContent(6121,1); hM_bin30->SetBinContent(6137,1); hM_bin30->SetBinContent(6139,2); hM_bin30->SetBinContent(6141,1); hM_bin30->SetBinContent(6145,1); hM_bin30->SetBinContent(6146,1); hM_bin30->SetBinContent(6151,1); hM_bin30->SetBinContent(6158,1); hM_bin30->SetBinContent(6159,2); hM_bin30->SetBinContent(6162,2); hM_bin30->SetBinContent(6164,1); hM_bin30->SetBinContent(6166,1); hM_bin30->SetBinContent(6168,1); hM_bin30->SetBinContent(6171,1); hM_bin30->SetBinContent(6172,2); hM_bin30->SetBinContent(6176,1); hM_bin30->SetBinContent(6178,1); hM_bin30->SetBinContent(6181,1); hM_bin30->SetBinContent(6182,1); hM_bin30->SetBinContent(6183,1); hM_bin30->SetBinContent(6184,1); hM_bin30->SetBinContent(6185,1); hM_bin30->SetBinContent(6187,1); hM_bin30->SetBinContent(6191,2); hM_bin30->SetBinContent(6192,1); hM_bin30->SetBinContent(6195,1); hM_bin30->SetBinContent(6197,1); hM_bin30->SetBinContent(6206,1); hM_bin30->SetBinContent(6207,1); hM_bin30->SetBinContent(6208,1); hM_bin30->SetBinContent(6210,2); hM_bin30->SetBinContent(6214,2); hM_bin30->SetBinContent(6217,1); hM_bin30->SetBinContent(6221,1); hM_bin30->SetBinContent(6224,1); hM_bin30->SetBinContent(6226,2); hM_bin30->SetBinContent(6233,1); hM_bin30->SetBinContent(6235,1); hM_bin30->SetBinContent(6241,1); hM_bin30->SetBinContent(6251,1); hM_bin30->SetBinContent(6252,1); hM_bin30->SetBinContent(6253,1); hM_bin30->SetBinContent(6256,2); hM_bin30->SetBinContent(6261,1); hM_bin30->SetBinContent(6263,1); hM_bin30->SetBinContent(6269,1); hM_bin30->SetBinContent(6272,1); hM_bin30->SetBinContent(6275,1); hM_bin30->SetBinContent(6277,2); hM_bin30->SetBinContent(6279,1); hM_bin30->SetBinContent(6283,1); hM_bin30->SetBinContent(6284,1); hM_bin30->SetBinContent(6289,1); hM_bin30->SetBinContent(6291,1); hM_bin30->SetBinContent(6292,1); hM_bin30->SetBinContent(6293,1); hM_bin30->SetBinContent(6294,1); hM_bin30->SetBinContent(6297,1); hM_bin30->SetBinContent(6298,1); hM_bin30->SetBinContent(6300,1); hM_bin30->SetBinContent(6302,1); hM_bin30->SetBinContent(6303,2); hM_bin30->SetBinContent(6310,1); hM_bin30->SetBinContent(6313,2); hM_bin30->SetBinContent(6315,1); hM_bin30->SetBinContent(6320,1); hM_bin30->SetBinContent(6322,1); hM_bin30->SetBinContent(6326,1); hM_bin30->SetBinContent(6327,1); hM_bin30->SetBinContent(6329,1); hM_bin30->SetBinContent(6341,1); hM_bin30->SetBinContent(6344,1); hM_bin30->SetBinContent(6351,1); hM_bin30->SetBinContent(6357,3); hM_bin30->SetBinContent(6360,2); hM_bin30->SetBinContent(6361,1); hM_bin30->SetBinContent(6362,1); hM_bin30->SetBinContent(6363,2); hM_bin30->SetBinContent(6364,1); hM_bin30->SetBinContent(6371,1); hM_bin30->SetBinContent(6372,3); hM_bin30->SetBinContent(6373,1); hM_bin30->SetBinContent(6376,1); hM_bin30->SetBinContent(6378,1); hM_bin30->SetBinContent(6380,1); hM_bin30->SetBinContent(6381,1); hM_bin30->SetBinContent(6385,2); hM_bin30->SetBinContent(6386,1); hM_bin30->SetBinContent(6387,1); hM_bin30->SetBinContent(6390,1); hM_bin30->SetBinContent(6391,1); hM_bin30->SetBinContent(6393,1); hM_bin30->SetBinContent(6396,1); hM_bin30->SetBinContent(6398,1); hM_bin30->SetBinContent(6399,1); hM_bin30->SetBinContent(6402,1); hM_bin30->SetBinContent(6404,2); hM_bin30->SetBinContent(6407,1); hM_bin30->SetBinContent(6410,1); hM_bin30->SetBinContent(6417,2); hM_bin30->SetBinContent(6419,2); hM_bin30->SetBinContent(6420,1); hM_bin30->SetBinContent(6422,1); hM_bin30->SetBinContent(6423,1); hM_bin30->SetBinContent(6427,1); hM_bin30->SetBinContent(6429,2); hM_bin30->SetBinContent(6430,1); hM_bin30->SetBinContent(6432,1); hM_bin30->SetBinContent(6436,1); hM_bin30->SetBinContent(6439,1); hM_bin30->SetBinContent(6442,1); hM_bin30->SetBinContent(6443,2); hM_bin30->SetBinContent(6446,3); hM_bin30->SetBinContent(6447,1); hM_bin30->SetBinContent(6451,1); hM_bin30->SetBinContent(6454,1); hM_bin30->SetBinContent(6455,1); hM_bin30->SetBinContent(6457,1); hM_bin30->SetBinContent(6460,3); hM_bin30->SetBinContent(6461,2); hM_bin30->SetBinContent(6462,1); hM_bin30->SetBinContent(6464,1); hM_bin30->SetBinContent(6467,2); hM_bin30->SetBinContent(6468,1); hM_bin30->SetBinContent(6469,1); hM_bin30->SetBinContent(6471,1); hM_bin30->SetBinContent(6472,1); hM_bin30->SetBinContent(6475,1); hM_bin30->SetBinContent(6476,1); hM_bin30->SetBinContent(6478,1); hM_bin30->SetBinContent(6484,1); hM_bin30->SetBinContent(6485,1); hM_bin30->SetBinContent(6491,1); hM_bin30->SetBinContent(6493,1); hM_bin30->SetBinContent(6499,1); hM_bin30->SetBinContent(6500,1); hM_bin30->SetBinContent(6502,1); hM_bin30->SetBinContent(6503,1); hM_bin30->SetBinContent(6507,1); hM_bin30->SetBinContent(6508,1); hM_bin30->SetBinContent(6512,3); hM_bin30->SetBinContent(6518,2); hM_bin30->SetBinContent(6522,1); hM_bin30->SetBinContent(6524,2); hM_bin30->SetBinContent(6526,1); hM_bin30->SetBinContent(6532,2); hM_bin30->SetBinContent(6545,2); hM_bin30->SetBinContent(6552,1); hM_bin30->SetBinContent(6554,1); hM_bin30->SetBinContent(6559,1); hM_bin30->SetBinContent(6563,1); hM_bin30->SetBinContent(6566,1); hM_bin30->SetBinContent(6567,2); hM_bin30->SetBinContent(6568,1); hM_bin30->SetBinContent(6570,2); hM_bin30->SetBinContent(6571,1); hM_bin30->SetBinContent(6575,1); hM_bin30->SetBinContent(6578,1); hM_bin30->SetBinContent(6588,1); hM_bin30->SetBinContent(6591,2); hM_bin30->SetBinContent(6594,1); hM_bin30->SetBinContent(6596,1); hM_bin30->SetBinContent(6598,1); hM_bin30->SetBinContent(6599,1); hM_bin30->SetBinContent(6604,2); hM_bin30->SetBinContent(6613,2); hM_bin30->SetBinContent(6614,1); hM_bin30->SetBinContent(6616,1); hM_bin30->SetBinContent(6617,2); hM_bin30->SetBinContent(6618,1); hM_bin30->SetBinContent(6619,2); hM_bin30->SetBinContent(6623,1); hM_bin30->SetBinContent(6624,1); hM_bin30->SetBinContent(6628,3); hM_bin30->SetBinContent(6629,1); hM_bin30->SetBinContent(6632,1); hM_bin30->SetBinContent(6635,1); hM_bin30->SetBinContent(6637,1); hM_bin30->SetBinContent(6639,1); hM_bin30->SetBinContent(6640,1); hM_bin30->SetBinContent(6643,2); hM_bin30->SetBinContent(6647,1); hM_bin30->SetBinContent(6651,1); hM_bin30->SetBinContent(6661,2); hM_bin30->SetBinContent(6662,1); hM_bin30->SetBinContent(6663,1); hM_bin30->SetBinContent(6668,1); hM_bin30->SetBinContent(6669,3); hM_bin30->SetBinContent(6675,1); hM_bin30->SetBinContent(6680,1); hM_bin30->SetBinContent(6681,1); hM_bin30->SetBinContent(6683,1); hM_bin30->SetBinContent(6684,2); hM_bin30->SetBinContent(6686,1); hM_bin30->SetBinContent(6690,1); hM_bin30->SetBinContent(6691,1); hM_bin30->SetBinContent(6692,1); hM_bin30->SetBinContent(6694,1); hM_bin30->SetBinContent(6699,1); hM_bin30->SetBinContent(6700,1); hM_bin30->SetBinContent(6701,1); hM_bin30->SetBinContent(6702,1); hM_bin30->SetBinContent(6703,1); hM_bin30->SetBinContent(6704,1); hM_bin30->SetBinContent(6705,1); hM_bin30->SetBinContent(6707,1); hM_bin30->SetBinContent(6709,1); hM_bin30->SetBinContent(6712,1); hM_bin30->SetBinContent(6713,1); hM_bin30->SetBinContent(6716,1); hM_bin30->SetBinContent(6717,2); hM_bin30->SetBinContent(6725,2); hM_bin30->SetBinContent(6726,2); hM_bin30->SetBinContent(6728,1); hM_bin30->SetBinContent(6732,3); hM_bin30->SetBinContent(6734,1); hM_bin30->SetBinContent(6735,2); hM_bin30->SetBinContent(6736,3); hM_bin30->SetBinContent(6737,1); hM_bin30->SetBinContent(6740,1); hM_bin30->SetBinContent(6743,1); hM_bin30->SetBinContent(6746,1); hM_bin30->SetBinContent(6747,2); hM_bin30->SetBinContent(6748,2); hM_bin30->SetBinContent(6752,3); hM_bin30->SetBinContent(6754,2); hM_bin30->SetBinContent(6758,1); hM_bin30->SetBinContent(6759,1); hM_bin30->SetBinContent(6760,1); hM_bin30->SetBinContent(6761,2); hM_bin30->SetBinContent(6762,1); hM_bin30->SetBinContent(6764,1); hM_bin30->SetBinContent(6765,1); hM_bin30->SetBinContent(6776,1); hM_bin30->SetBinContent(6783,2); hM_bin30->SetBinContent(6784,1); hM_bin30->SetBinContent(6785,1); hM_bin30->SetBinContent(6786,1); hM_bin30->SetBinContent(6787,2); hM_bin30->SetBinContent(6788,1); hM_bin30->SetBinContent(6792,1); hM_bin30->SetBinContent(6793,1); hM_bin30->SetBinContent(6795,1); hM_bin30->SetBinContent(6800,1); hM_bin30->SetBinContent(6801,1); hM_bin30->SetBinContent(6802,1); hM_bin30->SetBinContent(6805,1); hM_bin30->SetBinContent(6806,1); hM_bin30->SetBinContent(6807,2); hM_bin30->SetBinContent(6811,1); hM_bin30->SetBinContent(6813,1); hM_bin30->SetBinContent(6814,2); hM_bin30->SetBinContent(6815,2); hM_bin30->SetBinContent(6816,2); hM_bin30->SetBinContent(6818,1); hM_bin30->SetBinContent(6820,1); hM_bin30->SetBinContent(6823,1); hM_bin30->SetBinContent(6828,2); hM_bin30->SetBinContent(6831,1); hM_bin30->SetBinContent(6834,1); hM_bin30->SetBinContent(6838,1); hM_bin30->SetBinContent(6842,1); hM_bin30->SetBinContent(6845,1); hM_bin30->SetBinContent(6846,1); hM_bin30->SetBinContent(6852,1); hM_bin30->SetBinContent(6853,1); hM_bin30->SetBinContent(6854,2); hM_bin30->SetBinContent(6856,2); hM_bin30->SetBinContent(6857,1); hM_bin30->SetBinContent(6858,1); hM_bin30->SetBinContent(6862,1); hM_bin30->SetBinContent(6868,1); hM_bin30->SetBinContent(6869,1); hM_bin30->SetBinContent(6871,1); hM_bin30->SetBinContent(6873,1); hM_bin30->SetBinContent(6875,1); hM_bin30->SetBinContent(6878,1); hM_bin30->SetBinContent(6879,1); hM_bin30->SetBinContent(6880,1); hM_bin30->SetBinContent(6881,2); hM_bin30->SetBinContent(6882,1); hM_bin30->SetBinContent(6892,1); hM_bin30->SetBinContent(6893,1); hM_bin30->SetBinContent(6896,1); hM_bin30->SetBinContent(6898,1); hM_bin30->SetBinContent(6905,1); hM_bin30->SetBinContent(6906,2); hM_bin30->SetBinContent(6907,1); hM_bin30->SetBinContent(6911,1); hM_bin30->SetBinContent(6916,1); hM_bin30->SetBinContent(6917,1); hM_bin30->SetBinContent(6920,1); hM_bin30->SetBinContent(6927,1); hM_bin30->SetBinContent(6928,1); hM_bin30->SetBinContent(6929,1); hM_bin30->SetBinContent(6930,1); hM_bin30->SetBinContent(6942,1); hM_bin30->SetBinContent(6944,2); hM_bin30->SetBinContent(6945,1); hM_bin30->SetBinContent(6946,1); hM_bin30->SetBinContent(6947,2); hM_bin30->SetBinContent(6948,1); hM_bin30->SetBinContent(6950,1); hM_bin30->SetBinContent(6955,1); hM_bin30->SetBinContent(6957,1); hM_bin30->SetBinContent(6958,1); hM_bin30->SetBinContent(6959,2); hM_bin30->SetBinContent(6960,1); hM_bin30->SetBinContent(6965,2); hM_bin30->SetBinContent(6968,1); hM_bin30->SetBinContent(6974,1); hM_bin30->SetBinContent(6977,1); hM_bin30->SetBinContent(6978,1); hM_bin30->SetBinContent(6979,1); hM_bin30->SetBinContent(6982,1); hM_bin30->SetBinContent(6984,2); hM_bin30->SetBinContent(6991,1); hM_bin30->SetBinContent(6994,2); hM_bin30->SetBinContent(6997,1); hM_bin30->SetBinContent(7000,3); hM_bin30->SetBinContent(7002,1); hM_bin30->SetBinContent(7005,1); hM_bin30->SetBinContent(7009,1); hM_bin30->SetBinContent(7010,1); hM_bin30->SetBinContent(7017,1); hM_bin30->SetBinContent(7019,1); hM_bin30->SetBinContent(7022,1); hM_bin30->SetBinContent(7024,1); hM_bin30->SetBinContent(7027,1); hM_bin30->SetBinContent(7029,1); hM_bin30->SetBinContent(7041,2); hM_bin30->SetBinContent(7044,2); hM_bin30->SetBinContent(7045,1); hM_bin30->SetBinContent(7048,1); hM_bin30->SetBinContent(7050,1); hM_bin30->SetBinContent(7057,2); hM_bin30->SetBinContent(7060,1); hM_bin30->SetBinContent(7061,1); hM_bin30->SetBinContent(7067,3); hM_bin30->SetBinContent(7071,1); hM_bin30->SetBinContent(7072,2); hM_bin30->SetBinContent(7073,1); hM_bin30->SetBinContent(7075,1); hM_bin30->SetBinContent(7077,1); hM_bin30->SetBinContent(7078,1); hM_bin30->SetBinContent(7079,1); hM_bin30->SetBinContent(7081,2); hM_bin30->SetBinContent(7092,1); hM_bin30->SetBinContent(7096,1); hM_bin30->SetBinContent(7100,1); hM_bin30->SetBinContent(7101,1); hM_bin30->SetBinContent(7104,1); hM_bin30->SetBinContent(7107,1); hM_bin30->SetBinContent(7108,1); hM_bin30->SetBinContent(7110,1); hM_bin30->SetBinContent(7111,1); hM_bin30->SetBinContent(7113,1); hM_bin30->SetBinContent(7114,1); hM_bin30->SetBinContent(7118,1); hM_bin30->SetBinContent(7119,3); hM_bin30->SetBinContent(7121,1); hM_bin30->SetBinContent(7122,3); hM_bin30->SetBinContent(7123,1); hM_bin30->SetBinContent(7126,2); hM_bin30->SetBinContent(7130,2); hM_bin30->SetBinContent(7133,1); hM_bin30->SetBinContent(7138,1); hM_bin30->SetBinContent(7142,1); hM_bin30->SetBinContent(7143,1); hM_bin30->SetBinContent(7144,2); hM_bin30->SetBinContent(7145,2); hM_bin30->SetBinContent(7152,1); hM_bin30->SetBinContent(7153,5); hM_bin30->SetBinContent(7154,2); hM_bin30->SetBinContent(7156,1); hM_bin30->SetBinContent(7157,2); hM_bin30->SetBinContent(7158,1); hM_bin30->SetBinContent(7159,1); hM_bin30->SetBinContent(7162,1); hM_bin30->SetBinContent(7163,1); hM_bin30->SetBinContent(7165,1); hM_bin30->SetBinContent(7171,1); hM_bin30->SetBinContent(7172,1); hM_bin30->SetBinContent(7175,1); hM_bin30->SetBinContent(7178,1); hM_bin30->SetBinContent(7180,1); hM_bin30->SetBinContent(7181,1); hM_bin30->SetBinContent(7188,1); hM_bin30->SetBinContent(7190,1); hM_bin30->SetBinContent(7191,2); hM_bin30->SetBinContent(7194,1); hM_bin30->SetBinContent(7197,1); hM_bin30->SetBinContent(7198,1); hM_bin30->SetBinContent(7206,2); hM_bin30->SetBinContent(7207,1); hM_bin30->SetBinContent(7210,1); hM_bin30->SetBinContent(7213,1); hM_bin30->SetBinContent(7214,1); hM_bin30->SetBinContent(7219,2); hM_bin30->SetBinContent(7220,2); hM_bin30->SetBinContent(7221,1); hM_bin30->SetBinContent(7224,1); hM_bin30->SetBinContent(7228,1); hM_bin30->SetBinContent(7229,2); hM_bin30->SetBinContent(7232,1); hM_bin30->SetBinContent(7240,2); hM_bin30->SetBinContent(7242,1); hM_bin30->SetBinContent(7244,1); hM_bin30->SetBinContent(7245,1); hM_bin30->SetBinContent(7247,1); hM_bin30->SetBinContent(7248,1); hM_bin30->SetBinContent(7249,1); hM_bin30->SetBinContent(7251,1); hM_bin30->SetBinContent(7253,2); hM_bin30->SetBinContent(7254,1); hM_bin30->SetBinContent(7258,1); hM_bin30->SetBinContent(7264,1); hM_bin30->SetBinContent(7265,1); hM_bin30->SetBinContent(7266,1); hM_bin30->SetBinContent(7267,1); hM_bin30->SetBinContent(7268,1); hM_bin30->SetBinContent(7269,1); hM_bin30->SetBinContent(7273,1); hM_bin30->SetBinContent(7274,1); hM_bin30->SetBinContent(7277,1); hM_bin30->SetBinContent(7282,2); hM_bin30->SetBinContent(7289,1); hM_bin30->SetBinContent(7291,2); hM_bin30->SetBinContent(7294,3); hM_bin30->SetBinContent(7311,1); hM_bin30->SetBinContent(7313,1); hM_bin30->SetBinContent(7319,1); hM_bin30->SetBinContent(7321,1); hM_bin30->SetBinContent(7323,2); hM_bin30->SetBinContent(7326,2); hM_bin30->SetBinContent(7327,1); hM_bin30->SetBinContent(7328,1); hM_bin30->SetBinContent(7329,2); hM_bin30->SetBinContent(7334,1); hM_bin30->SetBinContent(7335,4); hM_bin30->SetBinContent(7336,1); hM_bin30->SetBinContent(7348,1); hM_bin30->SetBinContent(7353,2); hM_bin30->SetBinContent(7354,1); hM_bin30->SetBinContent(7355,1); hM_bin30->SetBinContent(7357,2); hM_bin30->SetBinContent(7362,2); hM_bin30->SetBinContent(7363,2); hM_bin30->SetBinContent(7364,1); hM_bin30->SetBinContent(7368,1); hM_bin30->SetBinContent(7370,2); hM_bin30->SetBinContent(7371,2); hM_bin30->SetBinContent(7372,1); hM_bin30->SetBinContent(7373,1); hM_bin30->SetBinContent(7374,1); hM_bin30->SetBinContent(7375,1); hM_bin30->SetBinContent(7376,3); hM_bin30->SetBinContent(7378,2); hM_bin30->SetBinContent(7380,1); hM_bin30->SetBinContent(7381,1); hM_bin30->SetBinContent(7382,3); hM_bin30->SetBinContent(7383,2); hM_bin30->SetBinContent(7384,1); hM_bin30->SetBinContent(7386,1); hM_bin30->SetBinContent(7388,2); hM_bin30->SetBinContent(7390,1); hM_bin30->SetBinContent(7391,1); hM_bin30->SetBinContent(7394,2); hM_bin30->SetBinContent(7397,1); hM_bin30->SetBinContent(7399,2); hM_bin30->SetBinContent(7402,1); hM_bin30->SetBinContent(7409,1); hM_bin30->SetBinContent(7410,1); hM_bin30->SetBinContent(7412,1); hM_bin30->SetBinContent(7417,2); hM_bin30->SetBinContent(7418,2); hM_bin30->SetBinContent(7419,2); hM_bin30->SetBinContent(7420,1); hM_bin30->SetBinContent(7427,2); hM_bin30->SetBinContent(7428,1); hM_bin30->SetBinContent(7429,1); hM_bin30->SetBinContent(7432,1); hM_bin30->SetBinContent(7435,1); hM_bin30->SetBinContent(7437,1); hM_bin30->SetBinContent(7438,1); hM_bin30->SetBinContent(7443,1); hM_bin30->SetBinContent(7444,3); hM_bin30->SetBinContent(7447,1); hM_bin30->SetBinContent(7451,1); hM_bin30->SetBinContent(7452,2); hM_bin30->SetBinContent(7453,1); hM_bin30->SetBinContent(7454,1); hM_bin30->SetBinContent(7456,1); hM_bin30->SetBinContent(7457,1); hM_bin30->SetBinContent(7467,2); hM_bin30->SetBinContent(7468,1); hM_bin30->SetBinContent(7471,1); hM_bin30->SetBinContent(7472,1); hM_bin30->SetBinContent(7476,1); hM_bin30->SetBinContent(7479,1); hM_bin30->SetBinContent(7480,1); hM_bin30->SetBinContent(7482,1); hM_bin30->SetBinContent(7484,2); hM_bin30->SetBinContent(7486,2); hM_bin30->SetBinContent(7488,2); hM_bin30->SetBinContent(7492,1); hM_bin30->SetBinContent(7495,2); hM_bin30->SetBinContent(7497,2); hM_bin30->SetBinContent(7498,1); hM_bin30->SetBinContent(7499,2); hM_bin30->SetBinContent(7500,1); hM_bin30->SetBinContent(7501,1); hM_bin30->SetBinContent(7502,1); hM_bin30->SetBinContent(7504,1); hM_bin30->SetBinContent(7505,1); hM_bin30->SetBinContent(7506,1); hM_bin30->SetBinContent(7508,1); hM_bin30->SetBinContent(7511,1); hM_bin30->SetBinContent(7513,2); hM_bin30->SetBinContent(7514,1); hM_bin30->SetBinContent(7515,1); hM_bin30->SetBinContent(7516,1); hM_bin30->SetBinContent(7517,1); hM_bin30->SetBinContent(7518,1); hM_bin30->SetBinContent(7519,2); hM_bin30->SetBinContent(7523,2); hM_bin30->SetBinContent(7528,1); hM_bin30->SetBinContent(7532,1); hM_bin30->SetBinContent(7535,2); hM_bin30->SetBinContent(7542,1); hM_bin30->SetBinContent(7546,1); hM_bin30->SetBinContent(7547,1); hM_bin30->SetBinContent(7548,3); hM_bin30->SetBinContent(7549,1); hM_bin30->SetBinContent(7550,1); hM_bin30->SetBinContent(7551,2); hM_bin30->SetBinContent(7557,1); hM_bin30->SetBinContent(7558,1); hM_bin30->SetBinContent(7560,2); hM_bin30->SetBinContent(7561,2); hM_bin30->SetBinContent(7563,1); hM_bin30->SetBinContent(7564,1); hM_bin30->SetBinContent(7565,1); hM_bin30->SetBinContent(7566,2); hM_bin30->SetBinContent(7569,1); hM_bin30->SetBinContent(7570,1); hM_bin30->SetBinContent(7572,1); hM_bin30->SetBinContent(7575,1); hM_bin30->SetBinContent(7580,2); hM_bin30->SetBinContent(7584,1); hM_bin30->SetBinContent(7590,2); hM_bin30->SetBinContent(7591,2); hM_bin30->SetBinContent(7593,1); hM_bin30->SetBinContent(7598,1); hM_bin30->SetBinContent(7599,1); hM_bin30->SetBinContent(7600,1); hM_bin30->SetBinContent(7602,1); hM_bin30->SetBinContent(7604,2); hM_bin30->SetBinContent(7608,1); hM_bin30->SetBinContent(7609,1); hM_bin30->SetBinContent(7611,1); hM_bin30->SetBinContent(7613,1); hM_bin30->SetBinContent(7617,2); hM_bin30->SetBinContent(7618,2); hM_bin30->SetBinContent(7623,1); hM_bin30->SetBinContent(7624,1); hM_bin30->SetBinContent(7626,1); hM_bin30->SetBinContent(7627,2); hM_bin30->SetBinContent(7633,1); hM_bin30->SetBinContent(7635,1); hM_bin30->SetBinContent(7637,1); hM_bin30->SetBinContent(7649,1); hM_bin30->SetBinContent(7651,1); hM_bin30->SetBinContent(7655,1); hM_bin30->SetBinContent(7659,1); hM_bin30->SetBinContent(7662,1); hM_bin30->SetBinContent(7665,1); hM_bin30->SetBinContent(7668,1); hM_bin30->SetBinContent(7669,1); hM_bin30->SetBinContent(7671,3); hM_bin30->SetBinContent(7673,1); hM_bin30->SetBinContent(7674,1); hM_bin30->SetBinContent(7675,2); hM_bin30->SetBinContent(7677,1); hM_bin30->SetBinContent(7681,1); hM_bin30->SetBinContent(7685,1); hM_bin30->SetBinContent(7688,1); hM_bin30->SetBinContent(7691,1); hM_bin30->SetBinContent(7692,1); hM_bin30->SetBinContent(7697,1); hM_bin30->SetBinContent(7698,1); hM_bin30->SetBinContent(7699,2); hM_bin30->SetBinContent(7701,1); hM_bin30->SetBinContent(7702,2); hM_bin30->SetBinContent(7708,1); hM_bin30->SetBinContent(7712,1); hM_bin30->SetBinContent(7714,1); hM_bin30->SetBinContent(7718,2); hM_bin30->SetBinContent(7721,2); hM_bin30->SetBinContent(7722,1); hM_bin30->SetBinContent(7726,1); hM_bin30->SetBinContent(7728,2); hM_bin30->SetBinContent(7732,1); hM_bin30->SetBinContent(7733,1); hM_bin30->SetBinContent(7736,1); hM_bin30->SetBinContent(7738,1); hM_bin30->SetBinContent(7739,1); hM_bin30->SetBinContent(7741,1); hM_bin30->SetBinContent(7744,1); hM_bin30->SetBinContent(7748,1); hM_bin30->SetBinContent(7750,2); hM_bin30->SetBinContent(7751,2); hM_bin30->SetBinContent(7754,2); hM_bin30->SetBinContent(7757,1); hM_bin30->SetBinContent(7758,3); hM_bin30->SetBinContent(7760,1); hM_bin30->SetBinContent(7764,1); hM_bin30->SetBinContent(7767,3); hM_bin30->SetBinContent(7772,1); hM_bin30->SetBinContent(7773,1); hM_bin30->SetBinContent(7774,1); hM_bin30->SetBinContent(7775,1); hM_bin30->SetBinContent(7781,1); hM_bin30->SetBinContent(7783,1); hM_bin30->SetBinContent(7786,2); hM_bin30->SetBinContent(7792,1); hM_bin30->SetBinContent(7794,1); hM_bin30->SetBinContent(7798,1); hM_bin30->SetBinContent(7801,1); hM_bin30->SetBinContent(7804,1); hM_bin30->SetBinContent(7808,1); hM_bin30->SetBinContent(7809,1); hM_bin30->SetBinContent(7812,1); hM_bin30->SetBinContent(7813,1); hM_bin30->SetBinContent(7816,1); hM_bin30->SetBinContent(7818,1); hM_bin30->SetBinContent(7819,2); hM_bin30->SetBinContent(7820,1); hM_bin30->SetBinContent(7823,1); hM_bin30->SetBinContent(7825,2); hM_bin30->SetBinContent(7830,1); hM_bin30->SetBinContent(7832,2); hM_bin30->SetBinContent(7837,2); hM_bin30->SetBinContent(7838,1); hM_bin30->SetBinContent(7840,2); hM_bin30->SetBinContent(7841,1); hM_bin30->SetBinContent(7845,1); hM_bin30->SetBinContent(7846,1); hM_bin30->SetBinContent(7847,1); hM_bin30->SetBinContent(7850,1); hM_bin30->SetBinContent(7854,1); hM_bin30->SetBinContent(7855,1); hM_bin30->SetBinContent(7859,1); hM_bin30->SetBinContent(7860,1); hM_bin30->SetBinContent(7864,1); hM_bin30->SetBinContent(7866,4); hM_bin30->SetBinContent(7876,1); hM_bin30->SetBinContent(7877,1); hM_bin30->SetBinContent(7880,1); hM_bin30->SetBinContent(7884,1); hM_bin30->SetBinContent(7885,1); hM_bin30->SetBinContent(7888,1); hM_bin30->SetBinContent(7889,1); hM_bin30->SetBinContent(7893,1); hM_bin30->SetBinContent(7894,1); hM_bin30->SetBinContent(7896,1); hM_bin30->SetBinContent(7897,2); hM_bin30->SetBinContent(7898,1); hM_bin30->SetBinContent(7899,2); hM_bin30->SetBinContent(7900,2); hM_bin30->SetBinContent(7907,1); hM_bin30->SetBinContent(7908,2); hM_bin30->SetBinContent(7909,1); hM_bin30->SetBinContent(7910,1); hM_bin30->SetBinContent(7916,1); hM_bin30->SetBinContent(7917,1); hM_bin30->SetBinContent(7922,1); hM_bin30->SetBinContent(7928,1); hM_bin30->SetBinContent(7929,1); hM_bin30->SetBinContent(7930,2); hM_bin30->SetBinContent(7935,1); hM_bin30->SetBinContent(7936,1); hM_bin30->SetBinContent(7938,2); hM_bin30->SetBinContent(7940,1); hM_bin30->SetBinContent(7942,1); hM_bin30->SetBinContent(7944,1); hM_bin30->SetBinContent(7946,1); hM_bin30->SetBinContent(7950,1); hM_bin30->SetBinContent(7951,1); hM_bin30->SetBinContent(7953,3); hM_bin30->SetBinContent(7954,1); hM_bin30->SetBinContent(7956,1); hM_bin30->SetBinContent(7957,2); hM_bin30->SetBinContent(7959,1); hM_bin30->SetBinContent(7962,1); hM_bin30->SetBinContent(7963,2); hM_bin30->SetBinContent(7965,1); hM_bin30->SetBinContent(7968,1); hM_bin30->SetBinContent(7969,1); hM_bin30->SetBinContent(7973,1); hM_bin30->SetBinContent(7977,1); hM_bin30->SetBinContent(7978,1); hM_bin30->SetBinContent(7984,2); hM_bin30->SetBinContent(7988,3); hM_bin30->SetBinContent(7994,1); hM_bin30->SetBinContent(8000,1); hM_bin30->SetBinContent(8004,2); hM_bin30->SetBinContent(8007,2); hM_bin30->SetBinContent(8008,1); hM_bin30->SetBinContent(8012,1); hM_bin30->SetBinContent(8015,1); hM_bin30->SetBinContent(8016,3); hM_bin30->SetBinContent(8018,1); hM_bin30->SetBinContent(8019,1); hM_bin30->SetBinContent(8025,1); hM_bin30->SetBinContent(8027,1); hM_bin30->SetBinContent(8029,2); hM_bin30->SetBinContent(8031,2); hM_bin30->SetBinContent(8032,1); hM_bin30->SetBinContent(8034,1); hM_bin30->SetBinContent(8036,1); hM_bin30->SetBinContent(8037,3); hM_bin30->SetBinContent(8038,1); hM_bin30->SetBinContent(8040,1); hM_bin30->SetBinContent(8043,1); hM_bin30->SetBinContent(8044,1); hM_bin30->SetBinContent(8047,1); hM_bin30->SetBinContent(8049,2); hM_bin30->SetBinContent(8050,2); hM_bin30->SetBinContent(8052,1); hM_bin30->SetBinContent(8053,1); hM_bin30->SetBinContent(8057,5); hM_bin30->SetBinContent(8059,3); hM_bin30->SetBinContent(8066,1); hM_bin30->SetBinContent(8067,1); hM_bin30->SetBinContent(8068,1); hM_bin30->SetBinContent(8069,2); hM_bin30->SetBinContent(8072,1); hM_bin30->SetBinContent(8073,2); hM_bin30->SetBinContent(8075,2); hM_bin30->SetBinContent(8076,2); hM_bin30->SetBinContent(8078,1); hM_bin30->SetBinContent(8081,1); hM_bin30->SetBinContent(8083,1); hM_bin30->SetBinContent(8084,1); hM_bin30->SetBinContent(8086,1); hM_bin30->SetBinContent(8089,1); hM_bin30->SetBinContent(8091,1); hM_bin30->SetBinContent(8095,1); hM_bin30->SetBinContent(8096,1); hM_bin30->SetBinContent(8098,2); hM_bin30->SetBinContent(8100,1); hM_bin30->SetBinContent(8104,2); hM_bin30->SetBinContent(8105,1); hM_bin30->SetBinContent(8110,1); hM_bin30->SetBinContent(8111,1); hM_bin30->SetBinContent(8112,1); hM_bin30->SetBinContent(8113,2); hM_bin30->SetBinContent(8115,2); hM_bin30->SetBinContent(8118,1); hM_bin30->SetBinContent(8121,1); hM_bin30->SetBinContent(8122,1); hM_bin30->SetBinContent(8125,1); hM_bin30->SetBinContent(8127,2); hM_bin30->SetBinContent(8128,3); hM_bin30->SetBinContent(8129,2); hM_bin30->SetBinContent(8130,1); hM_bin30->SetBinContent(8132,1); hM_bin30->SetBinContent(8133,1); hM_bin30->SetBinContent(8135,1); hM_bin30->SetBinContent(8138,1); hM_bin30->SetBinContent(8139,1); hM_bin30->SetBinContent(8140,1); hM_bin30->SetBinContent(8143,1); hM_bin30->SetBinContent(8144,1); hM_bin30->SetBinContent(8146,2); hM_bin30->SetBinContent(8148,1); hM_bin30->SetBinContent(8150,1); hM_bin30->SetBinContent(8151,1); hM_bin30->SetBinContent(8153,1); hM_bin30->SetBinContent(8154,4); hM_bin30->SetBinContent(8158,4); hM_bin30->SetBinContent(8159,1); hM_bin30->SetBinContent(8162,3); hM_bin30->SetBinContent(8166,3); hM_bin30->SetBinContent(8174,1); hM_bin30->SetBinContent(8175,1); hM_bin30->SetBinContent(8176,1); hM_bin30->SetBinContent(8178,1); hM_bin30->SetBinContent(8180,1); hM_bin30->SetBinContent(8183,1); hM_bin30->SetBinContent(8184,2); hM_bin30->SetBinContent(8185,1); hM_bin30->SetBinContent(8191,1); hM_bin30->SetBinContent(8192,1); hM_bin30->SetBinContent(8195,1); hM_bin30->SetBinContent(8196,1); hM_bin30->SetBinContent(8197,1); hM_bin30->SetBinContent(8198,1); hM_bin30->SetBinContent(8200,1); hM_bin30->SetBinContent(8201,1); hM_bin30->SetBinContent(8202,1); hM_bin30->SetBinContent(8205,1); hM_bin30->SetBinContent(8206,1); hM_bin30->SetBinContent(8207,1); hM_bin30->SetBinContent(8212,1); hM_bin30->SetBinContent(8213,1); hM_bin30->SetBinContent(8214,1); hM_bin30->SetBinContent(8223,3); hM_bin30->SetBinContent(8224,1); hM_bin30->SetBinContent(8226,1); hM_bin30->SetBinContent(8227,1); hM_bin30->SetBinContent(8228,3); hM_bin30->SetBinContent(8230,1); hM_bin30->SetBinContent(8231,3); hM_bin30->SetBinContent(8232,1); hM_bin30->SetBinContent(8233,1); hM_bin30->SetBinContent(8236,3); hM_bin30->SetBinContent(8239,1); hM_bin30->SetBinContent(8240,2); hM_bin30->SetBinContent(8241,3); hM_bin30->SetBinContent(8242,1); hM_bin30->SetBinContent(8243,4); hM_bin30->SetBinContent(8246,1); hM_bin30->SetBinContent(8247,3); hM_bin30->SetBinContent(8249,1); hM_bin30->SetBinContent(8251,1); hM_bin30->SetBinContent(8256,1); hM_bin30->SetBinContent(8257,2); hM_bin30->SetBinContent(8258,1); hM_bin30->SetBinContent(8260,1); hM_bin30->SetBinContent(8263,1); hM_bin30->SetBinContent(8264,1); hM_bin30->SetBinContent(8265,3); hM_bin30->SetBinContent(8267,1); hM_bin30->SetBinContent(8268,3); hM_bin30->SetBinContent(8269,1); hM_bin30->SetBinContent(8270,1); hM_bin30->SetBinContent(8271,3); hM_bin30->SetBinContent(8273,2); hM_bin30->SetBinContent(8275,2); hM_bin30->SetBinContent(8277,3); hM_bin30->SetBinContent(8278,1); hM_bin30->SetBinContent(8281,1); hM_bin30->SetBinContent(8283,1); hM_bin30->SetBinContent(8284,1); hM_bin30->SetBinContent(8285,1); hM_bin30->SetBinContent(8287,1); hM_bin30->SetBinContent(8288,1); hM_bin30->SetBinContent(8289,1); hM_bin30->SetBinContent(8295,1); hM_bin30->SetBinContent(8296,1); hM_bin30->SetBinContent(8297,1); hM_bin30->SetBinContent(8300,1); hM_bin30->SetBinContent(8302,1); hM_bin30->SetBinContent(8309,1); hM_bin30->SetBinContent(8311,2); hM_bin30->SetBinContent(8312,1); hM_bin30->SetBinContent(8313,1); hM_bin30->SetBinContent(8315,1); hM_bin30->SetBinContent(8316,1); hM_bin30->SetBinContent(8317,1); hM_bin30->SetBinContent(8320,2); hM_bin30->SetBinContent(8323,1); hM_bin30->SetBinContent(8324,2); hM_bin30->SetBinContent(8328,2); hM_bin30->SetBinContent(8332,1); hM_bin30->SetBinContent(8333,1); hM_bin30->SetBinContent(8334,1); hM_bin30->SetBinContent(8335,1); hM_bin30->SetBinContent(8336,1); hM_bin30->SetBinContent(8337,1); hM_bin30->SetBinContent(8338,1); hM_bin30->SetBinContent(8339,1); hM_bin30->SetBinContent(8340,1); hM_bin30->SetBinContent(8342,3); hM_bin30->SetBinContent(8343,1); hM_bin30->SetBinContent(8345,2); hM_bin30->SetBinContent(8348,1); hM_bin30->SetBinContent(8349,1); hM_bin30->SetBinContent(8355,1); hM_bin30->SetBinContent(8356,1); hM_bin30->SetBinContent(8357,2); hM_bin30->SetBinContent(8358,1); hM_bin30->SetBinContent(8359,3); hM_bin30->SetBinContent(8361,1); hM_bin30->SetBinContent(8363,1); hM_bin30->SetBinContent(8366,1); hM_bin30->SetBinContent(8370,1); hM_bin30->SetBinContent(8371,1); hM_bin30->SetBinContent(8373,1); hM_bin30->SetBinContent(8375,2); hM_bin30->SetBinContent(8378,1); hM_bin30->SetBinContent(8380,1); hM_bin30->SetBinContent(8383,1); hM_bin30->SetBinContent(8384,1); hM_bin30->SetBinContent(8385,2); hM_bin30->SetBinContent(8388,1); hM_bin30->SetBinContent(8391,2); hM_bin30->SetBinContent(8394,1); hM_bin30->SetBinContent(8395,1); hM_bin30->SetBinContent(8397,1); hM_bin30->SetBinContent(8398,1); hM_bin30->SetBinContent(8399,1); hM_bin30->SetBinContent(8400,1); hM_bin30->SetBinContent(8401,2); hM_bin30->SetBinContent(8403,1); hM_bin30->SetBinContent(8405,1); hM_bin30->SetBinContent(8407,1); hM_bin30->SetBinContent(8408,1); hM_bin30->SetBinContent(8413,1); hM_bin30->SetBinContent(8415,2); hM_bin30->SetBinContent(8421,1); hM_bin30->SetBinContent(8424,1); hM_bin30->SetBinContent(8425,2); hM_bin30->SetBinContent(8426,1); hM_bin30->SetBinContent(8427,1); hM_bin30->SetBinContent(8429,2); hM_bin30->SetBinContent(8432,1); hM_bin30->SetBinContent(8433,1); hM_bin30->SetBinContent(8438,1); hM_bin30->SetBinContent(8439,2); hM_bin30->SetBinContent(8440,2); hM_bin30->SetBinContent(8443,1); hM_bin30->SetBinContent(8444,1); hM_bin30->SetBinContent(8448,1); hM_bin30->SetBinContent(8449,1); hM_bin30->SetBinContent(8450,1); hM_bin30->SetBinContent(8451,1); hM_bin30->SetBinContent(8453,1); hM_bin30->SetBinContent(8454,1); hM_bin30->SetBinContent(8456,1); hM_bin30->SetBinContent(8462,1); hM_bin30->SetBinContent(8463,1); hM_bin30->SetBinContent(8464,3); hM_bin30->SetBinContent(8465,2); hM_bin30->SetBinContent(8468,1); hM_bin30->SetBinContent(8469,1); hM_bin30->SetBinContent(8470,3); hM_bin30->SetBinContent(8471,1); hM_bin30->SetBinContent(8472,1); hM_bin30->SetBinContent(8473,1); hM_bin30->SetBinContent(8474,2); hM_bin30->SetBinContent(8476,1); hM_bin30->SetBinContent(8478,2); hM_bin30->SetBinContent(8479,1); hM_bin30->SetBinContent(8480,1); hM_bin30->SetBinContent(8481,1); hM_bin30->SetBinContent(8488,2); hM_bin30->SetBinContent(8490,1); hM_bin30->SetBinContent(8491,1); hM_bin30->SetBinContent(8492,1); hM_bin30->SetBinContent(8494,1); hM_bin30->SetBinContent(8496,1); hM_bin30->SetBinContent(8497,1); hM_bin30->SetBinContent(8498,2); hM_bin30->SetBinContent(8501,1); hM_bin30->SetBinContent(8503,1); hM_bin30->SetBinContent(8504,1); hM_bin30->SetBinContent(8506,1); hM_bin30->SetBinContent(8508,1); hM_bin30->SetBinContent(8512,1); hM_bin30->SetBinContent(8513,2); hM_bin30->SetBinContent(8517,1); hM_bin30->SetBinContent(8519,1); hM_bin30->SetBinContent(8520,1); hM_bin30->SetBinContent(8521,1); hM_bin30->SetBinContent(8522,3); hM_bin30->SetBinContent(8523,1); hM_bin30->SetBinContent(8525,2); hM_bin30->SetBinContent(8526,1); hM_bin30->SetBinContent(8527,3); hM_bin30->SetBinContent(8531,2); hM_bin30->SetBinContent(8533,1); hM_bin30->SetBinContent(8535,1); hM_bin30->SetBinContent(8540,3); hM_bin30->SetBinContent(8541,1); hM_bin30->SetBinContent(8543,1); hM_bin30->SetBinContent(8544,1); hM_bin30->SetBinContent(8545,1); hM_bin30->SetBinContent(8548,2); hM_bin30->SetBinContent(8550,1); hM_bin30->SetBinContent(8551,1); hM_bin30->SetBinContent(8553,1); hM_bin30->SetBinContent(8554,2); hM_bin30->SetBinContent(8556,1); hM_bin30->SetBinContent(8558,2); hM_bin30->SetBinContent(8561,1); hM_bin30->SetBinContent(8576,2); hM_bin30->SetBinContent(8578,1); hM_bin30->SetBinContent(8581,2); hM_bin30->SetBinContent(8584,2); hM_bin30->SetBinContent(8587,3); hM_bin30->SetBinContent(8591,1); hM_bin30->SetBinContent(8596,1); hM_bin30->SetBinContent(8597,2); hM_bin30->SetBinContent(8598,1); hM_bin30->SetBinContent(8599,2); hM_bin30->SetBinContent(8601,1); hM_bin30->SetBinContent(8605,1); hM_bin30->SetBinContent(8606,2); hM_bin30->SetBinContent(8608,1); hM_bin30->SetBinContent(8613,1); hM_bin30->SetBinContent(8617,1); hM_bin30->SetBinContent(8626,1); hM_bin30->SetBinContent(8627,3); hM_bin30->SetBinContent(8628,1); hM_bin30->SetBinContent(8629,1); hM_bin30->SetBinContent(8631,1); hM_bin30->SetBinContent(8635,1); hM_bin30->SetBinContent(8637,1); hM_bin30->SetBinContent(8643,1); hM_bin30->SetBinContent(8645,2); hM_bin30->SetBinContent(8646,1); hM_bin30->SetBinContent(8647,1); hM_bin30->SetBinContent(8648,1); hM_bin30->SetBinContent(8649,1); hM_bin30->SetBinContent(8650,1); hM_bin30->SetBinContent(8651,2); hM_bin30->SetBinContent(8652,1); hM_bin30->SetBinContent(8654,1); hM_bin30->SetBinContent(8655,1); hM_bin30->SetBinContent(8657,2); hM_bin30->SetBinContent(8658,1); hM_bin30->SetBinContent(8659,1); hM_bin30->SetBinContent(8660,1); hM_bin30->SetBinContent(8661,2); hM_bin30->SetBinContent(8662,1); hM_bin30->SetBinContent(8663,1); hM_bin30->SetBinContent(8664,3); hM_bin30->SetBinContent(8665,1); hM_bin30->SetBinContent(8666,2); hM_bin30->SetBinContent(8667,3); hM_bin30->SetBinContent(8668,2); hM_bin30->SetBinContent(8669,1); hM_bin30->SetBinContent(8670,2); hM_bin30->SetBinContent(8672,1); hM_bin30->SetBinContent(8673,1); hM_bin30->SetBinContent(8674,1); hM_bin30->SetBinContent(8677,3); hM_bin30->SetBinContent(8678,1); hM_bin30->SetBinContent(8682,1); hM_bin30->SetBinContent(8685,4); hM_bin30->SetBinContent(8686,1); hM_bin30->SetBinContent(8687,1); hM_bin30->SetBinContent(8689,1); hM_bin30->SetBinContent(8691,3); hM_bin30->SetBinContent(8692,3); hM_bin30->SetBinContent(8693,1); hM_bin30->SetBinContent(8695,1); hM_bin30->SetBinContent(8696,1); hM_bin30->SetBinContent(8699,1); hM_bin30->SetBinContent(8700,1); hM_bin30->SetBinContent(8703,1); hM_bin30->SetBinContent(8704,1); hM_bin30->SetBinContent(8705,1); hM_bin30->SetBinContent(8709,1); hM_bin30->SetBinContent(8710,2); hM_bin30->SetBinContent(8712,2); hM_bin30->SetBinContent(8713,2); hM_bin30->SetBinContent(8714,1); hM_bin30->SetBinContent(8715,1); hM_bin30->SetBinContent(8716,2); hM_bin30->SetBinContent(8717,1); hM_bin30->SetBinContent(8718,2); hM_bin30->SetBinContent(8720,1); hM_bin30->SetBinContent(8723,2); hM_bin30->SetBinContent(8724,1); hM_bin30->SetBinContent(8727,2); hM_bin30->SetBinContent(8729,1); hM_bin30->SetBinContent(8731,1); hM_bin30->SetBinContent(8732,2); hM_bin30->SetBinContent(8733,1); hM_bin30->SetBinContent(8736,1); hM_bin30->SetBinContent(8738,1); hM_bin30->SetBinContent(8740,1); hM_bin30->SetBinContent(8741,2); hM_bin30->SetBinContent(8749,1); hM_bin30->SetBinContent(8751,2); hM_bin30->SetBinContent(8752,2); hM_bin30->SetBinContent(8753,1); hM_bin30->SetBinContent(8757,2); hM_bin30->SetBinContent(8758,1); hM_bin30->SetBinContent(8761,2); hM_bin30->SetBinContent(8762,2); hM_bin30->SetBinContent(8763,1); hM_bin30->SetBinContent(8765,2); hM_bin30->SetBinContent(8769,1); hM_bin30->SetBinContent(8775,2); hM_bin30->SetBinContent(8777,2); hM_bin30->SetBinContent(8780,1); hM_bin30->SetBinContent(8781,3); hM_bin30->SetBinContent(8782,2); hM_bin30->SetBinContent(8786,1); hM_bin30->SetBinContent(8793,2); hM_bin30->SetBinContent(8795,1); hM_bin30->SetBinContent(8801,1); hM_bin30->SetBinContent(8802,2); hM_bin30->SetBinContent(8803,2); hM_bin30->SetBinContent(8806,2); hM_bin30->SetBinContent(8808,1); hM_bin30->SetBinContent(8809,1); hM_bin30->SetBinContent(8811,1); hM_bin30->SetBinContent(8813,2); hM_bin30->SetBinContent(8815,1); hM_bin30->SetBinContent(8817,1); hM_bin30->SetBinContent(8819,2); hM_bin30->SetBinContent(8821,3); hM_bin30->SetBinContent(8824,2); hM_bin30->SetBinContent(8825,1); hM_bin30->SetBinContent(8827,1); hM_bin30->SetBinContent(8828,1); hM_bin30->SetBinContent(8830,1); hM_bin30->SetBinContent(8831,1); hM_bin30->SetBinContent(8833,2); hM_bin30->SetBinContent(8835,1); hM_bin30->SetBinContent(8837,1); hM_bin30->SetBinContent(8838,1); hM_bin30->SetBinContent(8839,2); hM_bin30->SetBinContent(8841,1); hM_bin30->SetBinContent(8843,3); hM_bin30->SetBinContent(8844,1); hM_bin30->SetBinContent(8846,2); hM_bin30->SetBinContent(8847,1); hM_bin30->SetBinContent(8848,4); hM_bin30->SetBinContent(8849,1); hM_bin30->SetBinContent(8850,2); hM_bin30->SetBinContent(8855,1); hM_bin30->SetBinContent(8857,1); hM_bin30->SetBinContent(8858,1); hM_bin30->SetBinContent(8859,2); hM_bin30->SetBinContent(8861,1); hM_bin30->SetBinContent(8862,3); hM_bin30->SetBinContent(8866,1); hM_bin30->SetBinContent(8876,1); hM_bin30->SetBinContent(8877,1); hM_bin30->SetBinContent(8878,2); hM_bin30->SetBinContent(8879,1); hM_bin30->SetBinContent(8880,1); hM_bin30->SetBinContent(8881,1); hM_bin30->SetBinContent(8882,2); hM_bin30->SetBinContent(8883,1); hM_bin30->SetBinContent(8884,1); hM_bin30->SetBinContent(8885,2); hM_bin30->SetBinContent(8887,1); hM_bin30->SetBinContent(8891,1); hM_bin30->SetBinContent(8894,2); hM_bin30->SetBinContent(8895,4); hM_bin30->SetBinContent(8897,1); hM_bin30->SetBinContent(8899,1); hM_bin30->SetBinContent(8900,1); hM_bin30->SetBinContent(8901,1); hM_bin30->SetBinContent(8905,1); hM_bin30->SetBinContent(8906,1); hM_bin30->SetBinContent(8907,3); hM_bin30->SetBinContent(8909,2); hM_bin30->SetBinContent(8913,3); hM_bin30->SetBinContent(8914,2); hM_bin30->SetBinContent(8917,2); hM_bin30->SetBinContent(8920,1); hM_bin30->SetBinContent(8921,1); hM_bin30->SetBinContent(8923,3); hM_bin30->SetBinContent(8924,1); hM_bin30->SetBinContent(8926,1); hM_bin30->SetBinContent(8927,2); hM_bin30->SetBinContent(8928,1); hM_bin30->SetBinContent(8929,2); hM_bin30->SetBinContent(8931,4); hM_bin30->SetBinContent(8933,1); hM_bin30->SetBinContent(8936,2); hM_bin30->SetBinContent(8939,1); hM_bin30->SetBinContent(8941,1); hM_bin30->SetBinContent(8942,1); hM_bin30->SetBinContent(8944,1); hM_bin30->SetBinContent(8948,1); hM_bin30->SetBinContent(8949,1); hM_bin30->SetBinContent(8951,1); hM_bin30->SetBinContent(8955,1); hM_bin30->SetBinContent(8958,2); hM_bin30->SetBinContent(8959,1); hM_bin30->SetBinContent(8961,1); hM_bin30->SetBinContent(8962,3); hM_bin30->SetBinContent(8963,1); hM_bin30->SetBinContent(8964,2); hM_bin30->SetBinContent(8965,2); hM_bin30->SetBinContent(8966,2); hM_bin30->SetBinContent(8969,1); hM_bin30->SetBinContent(8970,1); hM_bin30->SetBinContent(8973,1); hM_bin30->SetBinContent(8975,1); hM_bin30->SetBinContent(8976,1); hM_bin30->SetBinContent(8979,1); hM_bin30->SetBinContent(8981,1); hM_bin30->SetBinContent(8982,1); hM_bin30->SetBinContent(8983,2); hM_bin30->SetBinContent(8986,1); hM_bin30->SetBinContent(8988,1); hM_bin30->SetBinContent(8989,2); hM_bin30->SetBinContent(8990,1); hM_bin30->SetBinContent(8991,1); hM_bin30->SetBinContent(8993,2); hM_bin30->SetBinContent(8994,2); hM_bin30->SetBinContent(9004,3); hM_bin30->SetBinContent(9005,1); hM_bin30->SetBinContent(9006,1); hM_bin30->SetBinContent(9007,1); hM_bin30->SetBinContent(9008,1); hM_bin30->SetBinContent(9009,1); hM_bin30->SetBinContent(9010,1); hM_bin30->SetBinContent(9012,2); hM_bin30->SetBinContent(9013,1); hM_bin30->SetBinContent(9018,1); hM_bin30->SetBinContent(9019,1); hM_bin30->SetBinContent(9021,1); hM_bin30->SetBinContent(9023,1); hM_bin30->SetBinContent(9024,1); hM_bin30->SetBinContent(9025,1); hM_bin30->SetBinContent(9027,1); hM_bin30->SetBinContent(9028,1); hM_bin30->SetBinContent(9029,1); hM_bin30->SetBinContent(9030,2); hM_bin30->SetBinContent(9031,1); hM_bin30->SetBinContent(9034,1); hM_bin30->SetBinContent(9036,1); hM_bin30->SetBinContent(9037,1); hM_bin30->SetBinContent(9041,2); hM_bin30->SetBinContent(9043,1); hM_bin30->SetBinContent(9045,1); hM_bin30->SetBinContent(9046,1); hM_bin30->SetBinContent(9048,1); hM_bin30->SetBinContent(9050,1); hM_bin30->SetBinContent(9051,1); hM_bin30->SetBinContent(9052,1); hM_bin30->SetBinContent(9053,1); hM_bin30->SetBinContent(9060,1); hM_bin30->SetBinContent(9061,2); hM_bin30->SetBinContent(9062,2); hM_bin30->SetBinContent(9064,1); hM_bin30->SetBinContent(9065,1); hM_bin30->SetBinContent(9066,1); hM_bin30->SetBinContent(9067,1); hM_bin30->SetBinContent(9069,2); hM_bin30->SetBinContent(9070,1); hM_bin30->SetBinContent(9075,2); hM_bin30->SetBinContent(9077,1); hM_bin30->SetBinContent(9078,2); hM_bin30->SetBinContent(9080,2); hM_bin30->SetBinContent(9081,1); hM_bin30->SetBinContent(9082,2); hM_bin30->SetBinContent(9084,1); hM_bin30->SetBinContent(9085,1); hM_bin30->SetBinContent(9087,2); hM_bin30->SetBinContent(9093,1); hM_bin30->SetBinContent(9094,4); hM_bin30->SetBinContent(9096,2); hM_bin30->SetBinContent(9097,1); hM_bin30->SetBinContent(9098,1); hM_bin30->SetBinContent(9099,2); hM_bin30->SetBinContent(9103,1); hM_bin30->SetBinContent(9104,2); hM_bin30->SetBinContent(9105,2); hM_bin30->SetBinContent(9106,2); hM_bin30->SetBinContent(9107,3); hM_bin30->SetBinContent(9110,1); hM_bin30->SetBinContent(9113,1); hM_bin30->SetBinContent(9115,1); hM_bin30->SetBinContent(9117,3); hM_bin30->SetBinContent(9118,1); hM_bin30->SetBinContent(9119,2); hM_bin30->SetBinContent(9122,1); hM_bin30->SetBinContent(9125,1); hM_bin30->SetBinContent(9127,1); hM_bin30->SetBinContent(9128,3); hM_bin30->SetBinContent(9129,3); hM_bin30->SetBinContent(9132,2); hM_bin30->SetBinContent(9136,1); hM_bin30->SetBinContent(9137,1); hM_bin30->SetBinContent(9140,1); hM_bin30->SetBinContent(9141,2); hM_bin30->SetBinContent(9142,3); hM_bin30->SetBinContent(9150,1); hM_bin30->SetBinContent(9152,1); hM_bin30->SetBinContent(9156,1); hM_bin30->SetBinContent(9157,2); hM_bin30->SetBinContent(9158,2); hM_bin30->SetBinContent(9159,1); hM_bin30->SetBinContent(9161,1); hM_bin30->SetBinContent(9162,1); hM_bin30->SetBinContent(9164,1); hM_bin30->SetBinContent(9166,2); hM_bin30->SetBinContent(9167,3); hM_bin30->SetBinContent(9168,3); hM_bin30->SetBinContent(9170,2); hM_bin30->SetBinContent(9171,2); hM_bin30->SetBinContent(9172,2); hM_bin30->SetBinContent(9173,1); hM_bin30->SetBinContent(9176,1); hM_bin30->SetBinContent(9181,1); hM_bin30->SetBinContent(9184,1); hM_bin30->SetBinContent(9187,1); hM_bin30->SetBinContent(9189,1); hM_bin30->SetBinContent(9190,2); hM_bin30->SetBinContent(9191,1); hM_bin30->SetBinContent(9194,2); hM_bin30->SetBinContent(9195,1); hM_bin30->SetBinContent(9196,1); hM_bin30->SetBinContent(9198,1); hM_bin30->SetBinContent(9199,1); hM_bin30->SetBinContent(9202,1); hM_bin30->SetBinContent(9205,1); hM_bin30->SetBinContent(9206,1); hM_bin30->SetBinContent(9207,1); hM_bin30->SetBinContent(9209,1); hM_bin30->SetBinContent(9214,1); hM_bin30->SetBinContent(9216,2); hM_bin30->SetBinContent(9218,1); hM_bin30->SetBinContent(9219,1); hM_bin30->SetBinContent(9220,1); hM_bin30->SetBinContent(9221,1); hM_bin30->SetBinContent(9223,1); hM_bin30->SetBinContent(9224,1); hM_bin30->SetBinContent(9225,4); hM_bin30->SetBinContent(9226,1); hM_bin30->SetBinContent(9229,2); hM_bin30->SetBinContent(9232,1); hM_bin30->SetBinContent(9237,1); hM_bin30->SetBinContent(9239,1); hM_bin30->SetBinContent(9240,1); hM_bin30->SetBinContent(9243,1); hM_bin30->SetBinContent(9244,4); hM_bin30->SetBinContent(9245,1); hM_bin30->SetBinContent(9247,1); hM_bin30->SetBinContent(9248,2); hM_bin30->SetBinContent(9249,1); hM_bin30->SetBinContent(9252,2); hM_bin30->SetBinContent(9255,1); hM_bin30->SetBinContent(9258,2); hM_bin30->SetBinContent(9262,2); hM_bin30->SetBinContent(9263,1); hM_bin30->SetBinContent(9264,2); hM_bin30->SetBinContent(9265,2); hM_bin30->SetBinContent(9266,2); hM_bin30->SetBinContent(9269,1); hM_bin30->SetBinContent(9273,1); hM_bin30->SetBinContent(9277,1); hM_bin30->SetBinContent(9278,2); hM_bin30->SetBinContent(9279,1); hM_bin30->SetBinContent(9282,1); hM_bin30->SetBinContent(9283,1); hM_bin30->SetBinContent(9286,2); hM_bin30->SetBinContent(9288,1); hM_bin30->SetBinContent(9290,1); hM_bin30->SetBinContent(9293,1); hM_bin30->SetBinContent(9294,4); hM_bin30->SetBinContent(9297,1); hM_bin30->SetBinContent(9298,1); hM_bin30->SetBinContent(9299,1); hM_bin30->SetBinContent(9300,1); hM_bin30->SetBinContent(9301,2); hM_bin30->SetBinContent(9302,1); hM_bin30->SetBinContent(9307,1); hM_bin30->SetBinContent(9311,1); hM_bin30->SetBinContent(9312,2); hM_bin30->SetBinContent(9313,1); hM_bin30->SetBinContent(9314,1); hM_bin30->SetBinContent(9315,2); hM_bin30->SetBinContent(9316,1); hM_bin30->SetBinContent(9319,1); hM_bin30->SetBinContent(9321,1); hM_bin30->SetBinContent(9323,1); hM_bin30->SetBinContent(9330,1); hM_bin30->SetBinContent(9332,1); hM_bin30->SetBinContent(9333,1); hM_bin30->SetBinContent(9335,1); hM_bin30->SetBinContent(9336,1); hM_bin30->SetBinContent(9337,1); hM_bin30->SetBinContent(9340,1); hM_bin30->SetBinContent(9342,1); hM_bin30->SetBinContent(9344,2); hM_bin30->SetBinContent(9345,4); hM_bin30->SetBinContent(9349,2); hM_bin30->SetBinContent(9350,2); hM_bin30->SetBinContent(9352,2); hM_bin30->SetBinContent(9355,1); hM_bin30->SetBinContent(9357,1); hM_bin30->SetBinContent(9359,1); hM_bin30->SetBinContent(9360,1); hM_bin30->SetBinContent(9361,2); hM_bin30->SetBinContent(9363,1); hM_bin30->SetBinContent(9364,1); hM_bin30->SetBinContent(9365,1); hM_bin30->SetBinContent(9366,1); hM_bin30->SetBinContent(9367,1); hM_bin30->SetBinContent(9368,4); hM_bin30->SetBinContent(9370,2); hM_bin30->SetBinContent(9373,1); hM_bin30->SetBinContent(9377,1); hM_bin30->SetBinContent(9378,2); hM_bin30->SetBinContent(9380,2); hM_bin30->SetBinContent(9381,1); hM_bin30->SetBinContent(9384,1); hM_bin30->SetBinContent(9390,1); hM_bin30->SetBinContent(9391,1); hM_bin30->SetBinContent(9392,2); hM_bin30->SetBinContent(9393,1); hM_bin30->SetBinContent(9394,1); hM_bin30->SetBinContent(9400,2); hM_bin30->SetBinContent(9401,2); hM_bin30->SetBinContent(9402,3); hM_bin30->SetBinContent(9404,1); hM_bin30->SetBinContent(9405,1); hM_bin30->SetBinContent(9412,3); hM_bin30->SetBinContent(9413,1); hM_bin30->SetBinContent(9416,1); hM_bin30->SetBinContent(9417,1); hM_bin30->SetBinContent(9418,2); hM_bin30->SetBinContent(9419,1); hM_bin30->SetBinContent(9420,1); hM_bin30->SetBinContent(9423,1); hM_bin30->SetBinContent(9424,1); hM_bin30->SetBinContent(9425,2); hM_bin30->SetBinContent(9426,3); hM_bin30->SetBinContent(9429,2); hM_bin30->SetBinContent(9430,3); hM_bin30->SetBinContent(9431,1); hM_bin30->SetBinContent(9435,2); hM_bin30->SetBinContent(9440,3); hM_bin30->SetBinContent(9441,1); hM_bin30->SetBinContent(9443,1); hM_bin30->SetBinContent(9445,1); hM_bin30->SetBinContent(9447,1); hM_bin30->SetBinContent(9448,1); hM_bin30->SetBinContent(9450,1); hM_bin30->SetBinContent(9451,1); hM_bin30->SetBinContent(9452,3); hM_bin30->SetBinContent(9454,1); hM_bin30->SetBinContent(9457,1); hM_bin30->SetBinContent(9459,1); hM_bin30->SetBinContent(9467,1); hM_bin30->SetBinContent(9469,1); hM_bin30->SetBinContent(9470,1); hM_bin30->SetBinContent(9473,1); hM_bin30->SetBinContent(9474,1); hM_bin30->SetBinContent(9476,1); hM_bin30->SetBinContent(9477,2); hM_bin30->SetBinContent(9482,1); hM_bin30->SetBinContent(9483,1); hM_bin30->SetBinContent(9484,1); hM_bin30->SetBinContent(9489,2); hM_bin30->SetBinContent(9490,2); hM_bin30->SetBinContent(9492,2); hM_bin30->SetBinContent(9494,1); hM_bin30->SetBinContent(9495,1); hM_bin30->SetBinContent(9497,1); hM_bin30->SetBinContent(9498,1); hM_bin30->SetBinContent(9500,1); hM_bin30->SetBinContent(9501,1); hM_bin30->SetBinContent(9503,1); hM_bin30->SetBinContent(9504,3); hM_bin30->SetBinContent(9508,3); hM_bin30->SetBinContent(9509,1); hM_bin30->SetBinContent(9510,1); hM_bin30->SetBinContent(9512,1); hM_bin30->SetBinContent(9513,1); hM_bin30->SetBinContent(9514,1); hM_bin30->SetBinContent(9517,1); hM_bin30->SetBinContent(9518,1); hM_bin30->SetBinContent(9522,1); hM_bin30->SetBinContent(9524,1); hM_bin30->SetBinContent(9529,1); hM_bin30->SetBinContent(9530,1); hM_bin30->SetBinContent(9531,1); hM_bin30->SetBinContent(9532,1); hM_bin30->SetBinContent(9533,3); hM_bin30->SetBinContent(9534,1); hM_bin30->SetBinContent(9535,1); hM_bin30->SetBinContent(9536,1); hM_bin30->SetBinContent(9537,1); hM_bin30->SetBinContent(9538,1); hM_bin30->SetBinContent(9539,1); hM_bin30->SetBinContent(9542,2); hM_bin30->SetBinContent(9543,1); hM_bin30->SetBinContent(9544,1); hM_bin30->SetBinContent(9545,3); hM_bin30->SetBinContent(9546,2); hM_bin30->SetBinContent(9547,1); hM_bin30->SetBinContent(9549,2); hM_bin30->SetBinContent(9550,1); hM_bin30->SetBinContent(9552,1); hM_bin30->SetBinContent(9553,1); hM_bin30->SetBinContent(9555,2); hM_bin30->SetBinContent(9556,1); hM_bin30->SetBinContent(9558,1); hM_bin30->SetBinContent(9561,2); hM_bin30->SetBinContent(9562,1); hM_bin30->SetBinContent(9564,1); hM_bin30->SetBinContent(9567,1); hM_bin30->SetBinContent(9568,1); hM_bin30->SetBinContent(9570,1); hM_bin30->SetBinContent(9571,1); hM_bin30->SetBinContent(9572,1); hM_bin30->SetBinContent(9573,1); hM_bin30->SetBinContent(9574,1); hM_bin30->SetBinContent(9578,1); hM_bin30->SetBinContent(9580,1); hM_bin30->SetBinContent(9583,1); hM_bin30->SetBinContent(9588,2); hM_bin30->SetBinContent(9589,1); hM_bin30->SetBinContent(9590,1); hM_bin30->SetBinContent(9591,3); hM_bin30->SetBinContent(9596,2); hM_bin30->SetBinContent(9597,1); hM_bin30->SetBinContent(9600,2); hM_bin30->SetBinContent(9602,1); hM_bin30->SetBinContent(9603,1); hM_bin30->SetBinContent(9604,2); hM_bin30->SetBinContent(9605,2); hM_bin30->SetBinContent(9606,2); hM_bin30->SetBinContent(9607,1); hM_bin30->SetBinContent(9608,1); hM_bin30->SetBinContent(9612,1); hM_bin30->SetBinContent(9613,2); hM_bin30->SetBinContent(9614,3); hM_bin30->SetBinContent(9615,2); hM_bin30->SetBinContent(9616,1); hM_bin30->SetBinContent(9617,3); hM_bin30->SetBinContent(9618,2); hM_bin30->SetBinContent(9620,2); hM_bin30->SetBinContent(9621,1); hM_bin30->SetBinContent(9622,1); hM_bin30->SetBinContent(9623,2); hM_bin30->SetBinContent(9624,1); hM_bin30->SetBinContent(9625,1); hM_bin30->SetBinContent(9626,2); hM_bin30->SetBinContent(9627,2); hM_bin30->SetBinContent(9628,1); hM_bin30->SetBinContent(9630,2); hM_bin30->SetBinContent(9633,2); hM_bin30->SetBinContent(9635,2); hM_bin30->SetBinContent(9637,2); hM_bin30->SetBinContent(9638,2); hM_bin30->SetBinContent(9639,1); hM_bin30->SetBinContent(9640,1); hM_bin30->SetBinContent(9641,1); hM_bin30->SetBinContent(9643,1); hM_bin30->SetBinContent(9644,1); hM_bin30->SetBinContent(9645,2); hM_bin30->SetBinContent(9648,2); hM_bin30->SetBinContent(9650,2); hM_bin30->SetBinContent(9651,1); hM_bin30->SetBinContent(9652,1); hM_bin30->SetBinContent(9653,1); hM_bin30->SetBinContent(9654,2); hM_bin30->SetBinContent(9656,4); hM_bin30->SetBinContent(9657,1); hM_bin30->SetBinContent(9658,1); hM_bin30->SetBinContent(9659,1); hM_bin30->SetBinContent(9660,1); hM_bin30->SetBinContent(9661,2); hM_bin30->SetBinContent(9666,1); hM_bin30->SetBinContent(9667,3); hM_bin30->SetBinContent(9668,2); hM_bin30->SetBinContent(9669,2); hM_bin30->SetBinContent(9670,2); hM_bin30->SetBinContent(9672,1); hM_bin30->SetBinContent(9675,1); hM_bin30->SetBinContent(9676,2); hM_bin30->SetBinContent(9677,2); hM_bin30->SetBinContent(9678,1); hM_bin30->SetBinContent(9679,1); hM_bin30->SetBinContent(9680,2); hM_bin30->SetBinContent(9681,1); hM_bin30->SetBinContent(9684,3); hM_bin30->SetBinContent(9686,1); hM_bin30->SetBinContent(9689,2); hM_bin30->SetBinContent(9690,1); hM_bin30->SetBinContent(9693,1); hM_bin30->SetBinContent(9695,1); hM_bin30->SetBinContent(9697,2); hM_bin30->SetBinContent(9698,3); hM_bin30->SetBinContent(9700,1); hM_bin30->SetBinContent(9701,1); hM_bin30->SetBinContent(9702,1); hM_bin30->SetBinContent(9703,2); hM_bin30->SetBinContent(9704,1); hM_bin30->SetBinContent(9706,1); hM_bin30->SetBinContent(9708,1); hM_bin30->SetBinContent(9709,1); hM_bin30->SetBinContent(9710,2); hM_bin30->SetBinContent(9711,2); hM_bin30->SetBinContent(9712,2); hM_bin30->SetBinContent(9716,2); hM_bin30->SetBinContent(9717,1); hM_bin30->SetBinContent(9718,1); hM_bin30->SetBinContent(9719,1); hM_bin30->SetBinContent(9722,1); hM_bin30->SetBinContent(9724,1); hM_bin30->SetBinContent(9726,2); hM_bin30->SetBinContent(9729,1); hM_bin30->SetBinContent(9731,1); hM_bin30->SetBinContent(9732,1); hM_bin30->SetBinContent(9734,3); hM_bin30->SetBinContent(9735,1); hM_bin30->SetBinContent(9736,1); hM_bin30->SetBinContent(9739,2); hM_bin30->SetBinContent(9742,3); hM_bin30->SetBinContent(9743,1); hM_bin30->SetBinContent(9744,4); hM_bin30->SetBinContent(9745,1); hM_bin30->SetBinContent(9747,3); hM_bin30->SetBinContent(9748,1); hM_bin30->SetBinContent(9749,1); hM_bin30->SetBinContent(9750,3); hM_bin30->SetBinContent(9754,3); hM_bin30->SetBinContent(9755,1); hM_bin30->SetBinContent(9757,1); hM_bin30->SetBinContent(9758,1); hM_bin30->SetBinContent(9759,1); hM_bin30->SetBinContent(9760,1); hM_bin30->SetBinContent(9761,1); hM_bin30->SetBinContent(9762,1); hM_bin30->SetBinContent(9766,1); hM_bin30->SetBinContent(9767,2); hM_bin30->SetBinContent(9768,1); hM_bin30->SetBinContent(9771,1); hM_bin30->SetBinContent(9772,1); hM_bin30->SetBinContent(9774,1); hM_bin30->SetBinContent(9777,1); hM_bin30->SetBinContent(9780,1); hM_bin30->SetBinContent(9781,3); hM_bin30->SetBinContent(9782,1); hM_bin30->SetBinContent(9785,2); hM_bin30->SetBinContent(9786,1); hM_bin30->SetBinContent(9788,3); hM_bin30->SetBinContent(9795,2); hM_bin30->SetBinContent(9796,1); hM_bin30->SetBinContent(9798,1); hM_bin30->SetBinContent(9799,2); hM_bin30->SetBinContent(9802,1); hM_bin30->SetBinContent(9804,1); hM_bin30->SetBinContent(9805,1); hM_bin30->SetBinContent(9807,1); hM_bin30->SetBinContent(9808,1); hM_bin30->SetBinContent(9809,1); hM_bin30->SetBinContent(9810,1); hM_bin30->SetBinContent(9812,1); hM_bin30->SetBinContent(9814,1); hM_bin30->SetBinContent(9815,1); hM_bin30->SetBinContent(9816,1); hM_bin30->SetBinContent(9817,1); hM_bin30->SetBinContent(9818,1); hM_bin30->SetBinContent(9821,1); hM_bin30->SetBinContent(9823,2); hM_bin30->SetBinContent(9824,1); hM_bin30->SetBinContent(9826,1); hM_bin30->SetBinContent(9827,2); hM_bin30->SetBinContent(9829,1); hM_bin30->SetBinContent(9831,1); hM_bin30->SetBinContent(9832,1); hM_bin30->SetBinContent(9833,3); hM_bin30->SetBinContent(9834,1); hM_bin30->SetBinContent(9835,1); hM_bin30->SetBinContent(9836,3); hM_bin30->SetBinContent(9840,1); hM_bin30->SetBinContent(9841,1); hM_bin30->SetBinContent(9842,1); hM_bin30->SetBinContent(9845,2); hM_bin30->SetBinContent(9846,1); hM_bin30->SetBinContent(9847,2); hM_bin30->SetBinContent(9849,1); hM_bin30->SetBinContent(9854,1); hM_bin30->SetBinContent(9860,2); hM_bin30->SetBinContent(9861,1); hM_bin30->SetBinContent(9863,1); hM_bin30->SetBinContent(9864,1); hM_bin30->SetBinContent(9866,1); hM_bin30->SetBinContent(9869,2); hM_bin30->SetBinContent(9870,1); hM_bin30->SetBinContent(9871,1); hM_bin30->SetBinContent(9875,2); hM_bin30->SetBinContent(9877,1); hM_bin30->SetBinContent(9881,1); hM_bin30->SetBinContent(9882,2); hM_bin30->SetBinContent(9888,1); hM_bin30->SetBinContent(9890,1); hM_bin30->SetBinContent(9896,1); hM_bin30->SetBinContent(9897,1); hM_bin30->SetBinContent(9899,1); hM_bin30->SetBinContent(9901,3); hM_bin30->SetBinContent(9902,2); hM_bin30->SetBinContent(9904,2); hM_bin30->SetBinContent(9905,2); hM_bin30->SetBinContent(9911,1); hM_bin30->SetBinContent(9912,2); hM_bin30->SetBinContent(9917,2); hM_bin30->SetBinContent(9918,1); hM_bin30->SetBinContent(9920,1); hM_bin30->SetBinContent(9921,1); hM_bin30->SetBinContent(9925,2); hM_bin30->SetBinContent(9927,1); hM_bin30->SetBinContent(9928,2); hM_bin30->SetBinContent(9930,1); hM_bin30->SetBinContent(9932,1); hM_bin30->SetBinContent(9934,1); hM_bin30->SetBinContent(9936,2); hM_bin30->SetBinContent(9937,2); hM_bin30->SetBinContent(9938,2); hM_bin30->SetBinContent(9940,1); hM_bin30->SetBinContent(9941,1); hM_bin30->SetBinContent(9943,2); hM_bin30->SetBinContent(9944,1); hM_bin30->SetBinContent(9945,1); hM_bin30->SetBinContent(9946,5); hM_bin30->SetBinContent(9949,4); hM_bin30->SetBinContent(9950,1); hM_bin30->SetBinContent(9953,1); hM_bin30->SetBinContent(9954,1); hM_bin30->SetBinContent(9957,1); hM_bin30->SetBinContent(9959,1); hM_bin30->SetBinContent(9963,1); hM_bin30->SetBinContent(9965,3); hM_bin30->SetBinContent(9966,1); hM_bin30->SetBinContent(9968,2); hM_bin30->SetBinContent(9969,1); hM_bin30->SetBinContent(9972,2); hM_bin30->SetBinContent(9976,1); hM_bin30->SetBinContent(9978,1); hM_bin30->SetBinContent(9979,1); hM_bin30->SetBinContent(9980,1); hM_bin30->SetBinContent(9981,1); hM_bin30->SetBinContent(9982,1); hM_bin30->SetBinContent(9984,1); hM_bin30->SetBinContent(9985,1); hM_bin30->SetBinContent(9986,1); hM_bin30->SetBinContent(9988,1); hM_bin30->SetBinContent(9991,1); hM_bin30->SetBinContent(9992,2); hM_bin30->SetBinContent(9994,1); hM_bin30->SetBinContent(9996,1); hM_bin30->SetBinContent(9997,2); hM_bin30->SetBinContent(9998,1); hM_bin30->SetBinContent(10000,2); hM_bin30->SetBinContent(10001,91617); hM_bin30->SetEntries(131806); TF1 *fsig = new TF1("fsig","fmb+fpeak",0.1332734,0.136733); fsig->SetFillColor(19); fsig->SetFillStyle(0); Int_t ci; // for color index setting TColor *color; // for color definition with alpha ci = TColor::GetColor("#ff0000"); fsig->SetLineColor(ci); fsig->SetLineWidth(3); fsig->SetChisquare(199.3226); fsig->SetNDF(164); fsig->GetXaxis()->SetLabelFont(42); fsig->GetXaxis()->SetLabelSize(0.035); fsig->GetXaxis()->SetTitleSize(0.035); fsig->GetXaxis()->SetTitleFont(42); fsig->GetYaxis()->SetLabelFont(42); fsig->GetYaxis()->SetLabelSize(0.035); fsig->GetYaxis()->SetTitleSize(0.035); fsig->GetYaxis()->SetTitleFont(42); fsig->SetParameter(0,-88.19168); fsig->SetParError(0,8.516485); fsig->SetParLimits(0,0,0); fsig->SetParameter(1,1167.317); fsig->SetParError(1,63.93117); fsig->SetParLimits(1,0,0); fsig->SetParameter(2,-2923.819); fsig->SetParError(2,466.6531); fsig->SetParLimits(2,-10000,0); fsig->SetParameter(3,469.8179); fsig->SetParError(3,3.333527); fsig->SetParLimits(3,0,1022); fsig->SetParameter(4,0.1350035); fsig->SetParError(4,3.493687e-06); fsig->SetParLimits(4,0,0); fsig->SetParameter(5,0.0005705548); fsig->SetParError(5,4.289667e-06); fsig->SetParLimits(5,0.000530376,0.000795564); hM_bin30->GetListOfFunctions()->Add(fsig); TPaveStats *ptstats = new TPaveStats(0.62,0.515,0.98,0.995,"brNDC"); ptstats->SetName("stats"); ptstats->SetBorderSize(2); ptstats->SetTextAlign(12); TText *text = ptstats->AddText("hM_bin30"); text->SetTextSize(0.04014545); text = ptstats->AddText("Entries = 131806 "); text = ptstats->AddText("Mean = 0.139"); text = ptstats->AddText("RMS = 0.0169"); text = ptstats->AddText("#chi^{2} / ndf = 199.3 / 164"); text = ptstats->AddText("p0 = -88.19 #pm 8.52 "); text = ptstats->AddText("p1 = 1167 #pm 63.9 "); text = ptstats->AddText("p2 = -2924 #pm 466.7 "); text = ptstats->AddText("p3 = 469.8 #pm 3.3 "); text = ptstats->AddText("p4 = 0.135 #pm 0.000 "); text = ptstats->AddText("p5 = 0.0005706 #pm 0.0000043 "); ptstats->SetOptStat(1111); ptstats->SetOptFit(111); ptstats->Draw(); hM_bin30->GetListOfFunctions()->Add(ptstats); ptstats->SetParent(hM_bin30); ci = TColor::GetColor("#0000ff"); hM_bin30->SetMarkerColor(ci); hM_bin30->SetMarkerStyle(24); hM_bin30->GetXaxis()->SetTitle("M_{#gamma#gamma} (GeV)"); hM_bin30->GetXaxis()->SetLabelFont(42); hM_bin30->GetXaxis()->SetLabelSize(0.035); hM_bin30->GetXaxis()->SetTitleSize(0.035); hM_bin30->GetXaxis()->SetTitleFont(42); hM_bin30->GetYaxis()->SetTitle("dN/dM (GeV)"); hM_bin30->GetYaxis()->SetLabelFont(42); hM_bin30->GetYaxis()->SetLabelSize(0.035); hM_bin30->GetYaxis()->SetTitleSize(0.035); hM_bin30->GetYaxis()->SetTitleFont(42); hM_bin30->GetZaxis()->SetLabelFont(42); hM_bin30->GetZaxis()->SetLabelSize(0.035); hM_bin30->GetZaxis()->SetTitleSize(0.035); hM_bin30->GetZaxis()->SetTitleFont(42); hM_bin30->Draw("e"); TF1 *fmb = new TF1("fmb","pol2",0.1330111,0.1369889); fmb->SetFillColor(19); fmb->SetFillStyle(0); ci = TColor::GetColor("#0000ff"); fmb->SetLineColor(ci); fmb->SetLineWidth(3); fmb->SetLineStyle(2); fmb->GetXaxis()->SetLabelFont(42); fmb->GetXaxis()->SetLabelSize(0.035); fmb->GetXaxis()->SetTitleSize(0.035); fmb->GetXaxis()->SetTitleFont(42); fmb->GetYaxis()->SetLabelFont(42); fmb->GetYaxis()->SetLabelSize(0.035); fmb->GetYaxis()->SetTitleSize(0.035); fmb->GetYaxis()->SetTitleFont(42); fmb->SetParameter(0,-88.19168); fmb->SetParError(0,0); fmb->SetParLimits(0,0,0); fmb->SetParameter(1,1167.317); fmb->SetParError(1,0); fmb->SetParLimits(1,0,0); fmb->SetParameter(2,-2923.819); fmb->SetParError(2,0); fmb->SetParLimits(2,0,0); fmb->Draw("same"); TF1 *fpeak = new TF1("fpeak","gaus",0.1330111,0.1369889); fpeak->SetFillColor(19); fpeak->SetFillStyle(0); fpeak->SetLineWidth(3); fpeak->SetLineStyle(2); fpeak->GetXaxis()->SetLabelFont(42); fpeak->GetXaxis()->SetLabelSize(0.035); fpeak->GetXaxis()->SetTitleSize(0.035); fpeak->GetXaxis()->SetTitleFont(42); fpeak->GetYaxis()->SetLabelFont(42); fpeak->GetYaxis()->SetLabelSize(0.035); fpeak->GetYaxis()->SetTitleSize(0.035); fpeak->GetYaxis()->SetTitleFont(42); fpeak->SetParameter(0,469.8179); fpeak->SetParError(0,0); fpeak->SetParLimits(0,0,0); fpeak->SetParameter(1,0.1350035); fpeak->SetParError(1,0); fpeak->SetParLimits(1,0,0); fpeak->SetParameter(2,0.0005705548); fpeak->SetParError(2,0); fpeak->SetParLimits(2,0,0); fpeak->Draw("same"); TPaveText *pt = new TPaveText(0.01,0.9320629,0.08904523,0.995,"blNDC"); pt->SetName("title"); pt->SetBorderSize(2); text = pt->AddText("M_{#gamma #gamma}"); pt->Draw(); c->Modified(); c->cd(); c->SetSelected(c); }
a3c41ba24102fcd071b11458964a8625914c0355
d60a2b0665bf39a7ea7c7711e1af81c22cf3e9b7
/Cpp-C/Eta/Include/Codec/rtr/rsslMsgEncoders.h
2258d458007057e3c7bbb6182971d9375b93fc2d
[ "LicenseRef-scancode-generic-cla", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
lsdxp/Elektron-SDK
bc032e3b0590ca0804c8e80b19615bbe5bf510ca
d2333406c053937020b5ac0f9a41da9d9a19e023
refs/heads/master
2020-04-07T14:21:58.658395
2016-09-22T20:08:36
2016-09-22T20:08:36
69,515,002
1
0
null
2016-09-29T00:30:40
2016-09-29T00:30:40
null
UTF-8
C
false
false
24,572
h
#ifndef __RSSL_MSG_ENCODERS_H_ #define __RSSL_MSG_ENCODERS_H_ #ifdef __cplusplus extern "C" { #endif /* Data Package Headers */ #include "rtr/rsslDataPackage.h" /* Message Package Headers */ #include "rtr/rsslMessagePackage.h" /** * @addtogroup MsgEncoders * @{ */ /** * @brief Encodes an RsslMsg where there is no payload or any payload is pre-encoded and set on \ref RsslMsgBase::encDataBody, no extended header or it is pre-encoded, and no message key attributes or they are pre-encoded and populated on \ref RsslMsgKey::encAttrib. * * Encodes an RsslMsg<BR> * Typical use:<BR> * 1. Populate desired members on the RsslMsg (RsslMsg union or RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslRequestMsg, RsslPostMsg, RsslAckMsg, RsslGenericMsg, RsslCloseMsg)<BR> * 2. If the message contains message key attributes, call appropriate \ref RsslMsgKey::attribContainerType encoder functions and populate on \ref RsslMsgKey::encAttrib<BR> * 3. If the message contains extended header information, encode as needed and populate on the respective message's extendedHeader \ref RsslBuffer<BR> * 4. If the message contains message request key attributes, call appropriate \ref RsslMsgKey::attribContainerType encoder functions and populate on \ref RsslMsgKey::encAttrib<BR> * 5. If the message contains any payload, encode using the specified \ref RsslMsgBase::containerType encode functions and populate on the \ref RsslMsgBase::encDataBody<BR> * 6. Call rsslEncodeMsg() when all content is populated to encode the entire message and all payload<BR> * * @param pIter Pointer to the encode iterator. * @param pMsg populated RsslMsg to encode. If any payload, extended header, or message key attributes are required, they must already be populated on this message. * @see RsslEncodeIterator, rsslEncodeMsgInit, RsslMsg, RsslMsgKey, RsslMsgBase, RsslRequestMsg, RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslGenericMsg, RsslPostMsg, RsslAckMsg, RsslCloseMsg * @return Returns an RsslRet to provide success or failure information */ RSSL_API RsslRet rsslEncodeMsg( RsslEncodeIterator *pIter, RsslMsg *pMsg ); /** * @brief Begin encoding process for an RsslMsg. * * Begins encoding of an RsslMsg<BR> * Typical use:<BR> * 1. Populate desired members on the RsslMsg<BR> * 2. Call rsslEncodeMsgInit() to begin message encoding<BR> * 3. If the RsslMsg requires any message key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgKeyAttribComplete() to continue with message encoding<BR> * 4. If the RsslMsg requires any extended header information, but it is not pre-encoded and populated in the extendedHeader \ref RsslBuffer, the rsslEncodeMsgInit() (or when also encoding attributes, the rsslEncodeMsgKeyAttribComplete()) function will return ::RSSL_RET_ENCODE_EXTENDED_HEADER. Call any necessary extended header encoding functions; when completed call rsslEncodeExtendedHeaderComplete() to continue with message encoding<BR> * 5. If the RsslMsg requires any message request key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgReqKeyAttribComplete() to continue with message encoding<BR> * 6. If the RsslMsg requires any payload, but it is not pre-encoded and populated in the \ref RsslMsgBase::encDataBody, the rsslEncodeMsgInit() (or when encoding message key attributes or extended header, rsslEncodeMsgKeyAttribComplete() or rsslEncodeExtendedHeaderComplete() ) function will return ::RSSL_RET_ENCODE_CONTAINER. Call appropriate payload encode functions, as indicated by \ref RsslMsgBase::containerType. If no payload is required or it is provided as pre-encoded, this function will return ::RSSL_RET_SUCCESS<BR> * 7. Call rsslEncodeMsgComplete() when all content is completed<BR> * * @param pIter Pointer to the encode iterator. * @param pMsg Partially populated RsslMsg structure to encode * @param dataMaxSize Max expected encoding size of the payload, if encoding. * @see RsslEncodeIterator, rsslEncodeMsg, rsslEncodeMsgComplete, rsslEncodeMsgKeyAttribComplete, rsslEncodeExtendedHeaderComplete, RsslMsg, RsslMsgKey, RsslMsgBase, RsslRequestMsg, RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslGenericMsg, RsslPostMsg, RsslAckMsg, RsslCloseMsg * @return Returns an RsslRet to provide success or failure information. */ RSSL_API RsslRet rsslEncodeMsgInit( RsslEncodeIterator *pIter, RsslMsg *pMsg, RsslUInt32 dataMaxSize ); /** * @brief Completes encoding of any non-pre-encoded message key attributes when encoding an RsslMsg using rsslEncodeMsgInit() * * Completes non-pre-encoded message key attribute encoding when using rsslEncodeMsgInit() <BR> * Typical use:<BR> * 1. Populate desired members on the RsslMsg<BR> * 2. Call rsslEncodeMsgInit() to begin message encoding<BR> * 3. If the RsslMsg requires any message key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgKeyAttribComplete() to continue with message encoding<BR> * 4. If the RsslMsg requires any extended header information, but it is not pre-encoded and populated in the extendedHeader \ref RsslBuffer, the rsslEncodeMsgInit() (or when also encoding attributes, the rsslEncodeMsgKeyAttribComplete()) function will return ::RSSL_RET_ENCODE_EXTENDED_HEADER. Call any necessary extended header encoding functions; when completed call rsslEncodeExtendedHeaderComplete() to continue with message encoding<BR> * 5. If the RsslMsg requires any message request key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgReqKeyAttribComplete() to continue with message encoding<BR> * 6. If the RsslMsg requires any payload, but it is not pre-encoded and populated in the \ref RsslMsgBase::encDataBody, the rsslEncodeMsgInit() (or when encoding message key attributes or extended header, rsslEncodeMsgKeyAttribComplete() or rsslEncodeExtendedHeaderComplete() ) function will return ::RSSL_RET_ENCODE_CONTAINER. Call appropriate payload encode functions, as indicated by \ref RsslMsgBase::containerType. If no payload is required or it is provided as pre-encoded, this function will return ::RSSL_RET_SUCCESS<BR> * 7. Call rsslEncodeMsgComplete() when all content is completed<BR> * * @param pIter Pointer to the encode iterator. * @param success If true - successfully complete the message encoding, if false - roll back encoding. * @see RsslEncodeIterator, rsslEncodeMsg, rsslEncodeMsgComplete, rsslEncodeMsgKeyAttribComplete, rsslEncodeExtendedHeaderComplete, RsslMsg, RsslMsgKey, RsslMsgBase, RsslRequestMsg, RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslGenericMsg, RsslPostMsg, RsslAckMsg, RsslCloseMsg * @return Returns an RsslRet to provide success or failure information */ RSSL_API RsslRet rsslEncodeMsgKeyAttribComplete( RsslEncodeIterator *pIter, RsslBool success ); /** * @brief Completes encoding of any non-pre-encoded message request key attributes when encoding an RsslMsg using rsslEncodeMsgInit() * * Completes non-pre-encoded message key attribute encoding when using rsslEncodeMsgInit() <BR> * Typical use:<BR> * 1. Populate desired members on the RsslMsg<BR> * 2. Call rsslEncodeMsgInit() to begin message encoding<BR> * 3. If the RsslMsg requires any message key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgKeyAttribComplete() to continue with message encoding<BR> * 4. If the RsslMsg requires any extended header information, but it is not pre-encoded and populated in the extendedHeader \ref RsslBuffer, the rsslEncodeMsgInit() (or when also encoding attributes, the rsslEncodeMsgKeyAttribComplete()) function will return ::RSSL_RET_ENCODE_EXTENDED_HEADER. Call any necessary extended header encoding functions; when completed call rsslEncodeExtendedHeaderComplete() to continue with message encoding<BR> * 5. If the RsslMsg requires any message request key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgReqKeyAttribComplete() to continue with message encoding<BR> * 6. If the RsslMsg requires any payload, but it is not pre-encoded and populated in the \ref RsslMsgBase::encDataBody, the rsslEncodeMsgInit() (or when encoding message key attributes or extended header, rsslEncodeMsgKeyAttribComplete() or rsslEncodeExtendedHeaderComplete() ) function will return ::RSSL_RET_ENCODE_CONTAINER. Call appropriate payload encode functions, as indicated by \ref RsslMsgBase::containerType. If no payload is required or it is provided as pre-encoded, this function will return ::RSSL_RET_SUCCESS<BR> * 7. Call rsslEncodeMsgComplete() when all content is completed<BR> * * @param pIter Pointer to the encode iterator. * @param success If true - successfully complete the message encoding, if false - roll back encoding. * @see RsslEncodeIterator, rsslEncodeMsg, rsslEncodeMsgComplete, rsslEncodeMsgKeyAttribComplete, rsslEncodeExtendedHeaderComplete, RsslMsg, RsslMsgKey, RsslMsgBase, RsslRequestMsg, RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslGenericMsg, RsslPostMsg, RsslAckMsg, RsslCloseMsg * @return Returns an RsslRet to provide success or failure information */ RSSL_API RsslRet rsslEncodeMsgReqKeyAttribComplete( RsslEncodeIterator *pIter, RsslBool success ); /** * @brief Completes encoding of any non-pre-encoded extended header information when encoding an RsslMsg using rsslEncodeMsgInit() * * Completes non-pre-encoded extended header information when using rsslEncodeMsgInit() <BR> * Typical use:<BR> * 1. Populate desired members on the RsslMsg<BR> * 2. Call rsslEncodeMsgInit() to begin message encoding<BR> * 3. If the RsslMsg requires any message key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgKeyAttribComplete() to continue with message encoding<BR> * 4. If the RsslMsg requires any extended header information, but it is not pre-encoded and populated in the extendedHeader \ref RsslBuffer, the rsslEncodeMsgInit() (or when also encoding attributes, the rsslEncodeMsgKeyAttribComplete()) function will return ::RSSL_RET_ENCODE_EXTENDED_HEADER. Call any necessary extended header encoding functions; when completed call rsslEncodeExtendedHeaderComplete() to continue with message encoding<BR> * 5. If the RsslMsg requires any message request key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgReqKeyAttribComplete() to continue with message encoding<BR> * 6. If the RsslMsg requires any payload, but it is not pre-encoded and populated in the \ref RsslMsgBase::encDataBody, the rsslEncodeMsgInit() (or when encoding message key attributes or extended header, rsslEncodeMsgKeyAttribComplete() or rsslEncodeExtendedHeaderComplete() ) function will return ::RSSL_RET_ENCODE_CONTAINER. Call appropriate payload encode functions, as indicated by \ref RsslMsgBase::containerType. If no payload is required or it is provided as pre-encoded, this function will return ::RSSL_RET_SUCCESS<BR> * 7. Call rsslEncodeMsgComplete() when all content is completed<BR> * * @param pIter Pointer to the encode iterator. * @param success If true - successfully complete the extended header encoding, if false - roll back encoding. * @see RsslEncodeIterator, rsslEncodeMsg, rsslEncodeMsgComplete, rsslEncodeMsgKeyAttribComplete, rsslEncodeExtendedHeaderComplete, RsslMsg, RsslMsgKey, RsslMsgBase, RsslRequestMsg, RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslGenericMsg, RsslPostMsg, RsslAckMsg, RsslCloseMsg * @return Returns an RsslRet to provide success or failure information */ RSSL_API RsslRet rsslEncodeExtendedHeaderComplete( RsslEncodeIterator *pIter, RsslBool success ); /** * @brief Completes encoding of an RsslMsg * * Completes RsslMsg encoding <BR> * Typical use:<BR> * 1. Populate desired members on the RsslMsg<BR> * 2. Call rsslEncodeMsgInit() to begin message encoding<BR> * 3. If the RsslMsg requires any message key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgKeyAttribComplete() to continue with message encoding<BR> * 4. If the RsslMsg requires any extended header information, but it is not pre-encoded and populated in the extendedHeader \ref RsslBuffer, the rsslEncodeMsgInit() (or when also encoding attributes, the rsslEncodeMsgKeyAttribComplete()) function will return ::RSSL_RET_ENCODE_EXTENDED_HEADER. Call any necessary extended header encoding functions; when completed call rsslEncodeExtendedHeaderComplete() to continue with message encoding<BR> * 5. If the RsslMsg requires any message request key attributes, but they are not pre-encoded and populated on the RsslMsgKey::encAttrib, the rsslEncodeMsgInit() function will return ::RSSL_RET_ENCODE_MSG_KEY_OPAQUE. Call appropriate encode functions, as indicated by RsslMsgKey::attribContainerType. When attribute encoding is completed, followed with rsslEncodeMsgReqKeyAttribComplete() to continue with message encoding<BR> * 6. If the RsslMsg requires any payload, but it is not pre-encoded and populated in the \ref RsslMsgBase::encDataBody, the rsslEncodeMsgInit() (or when encoding message key attributes or extended header, rsslEncodeMsgKeyAttribComplete() or rsslEncodeExtendedHeaderComplete() ) function will return ::RSSL_RET_ENCODE_CONTAINER. Call appropriate payload encode functions, as indicated by \ref RsslMsgBase::containerType. If no payload is required or it is provided as pre-encoded, this function will return ::RSSL_RET_SUCCESS<BR> * 7. Call rsslEncodeMsgComplete() when all content is completed<BR> * * @param pIter Pointer to the encode iterator. * @param success If true - successfully complete the message encoding, if false - roll back encoding. * @see RsslEncodeIterator, rsslEncodeMsg, rsslEncodeMsgComplete, rsslEncodeMsgKeyAttribComplete, rsslEncodeExtendedHeaderComplete, RsslMsg, RsslMsgKey, RsslMsgBase, RsslRequestMsg, RsslRefreshMsg, RsslStatusMsg, RsslUpdateMsg, RsslGenericMsg, RsslPostMsg, RsslAckMsg, RsslCloseMsg * @return Returns an RsslRet to provide success or failure information */ RSSL_API RsslRet rsslEncodeMsgComplete( RsslEncodeIterator *pIter, RsslBool success ); /** * @} */ /** * @addtogroup MsgEncodeUtilsHelpers * @{ */ /** * @brief This function replaces the encoded \ref RsslMsgBase::domainType value in an encoded \ref RsslMsg with the specified domain type enumeration. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param domainType The new domain type enumeration that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the domain type enumeration has been replaced in the buffer. If RSSL_RET_INVALID_ARGUMENT, there * was an issue with the encoded buffer's length, and the domain type was not replaced. * */ RSSL_API RsslRet rsslReplaceDomainType( RsslEncodeIterator *pIter, RsslUInt8 domainType ); /** * @brief This function replaces the encoded \ref RsslMsgBase::streamId value in an encoded \ref RsslMsg with the specified streamId. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param streamId The new stream Id that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the stream Id has been replaced in the buffer. If RSSL_RET_INVALID_ARGUMENT, there was * an issue with the encoded buffer's length, and the stream Id was not replaced. * */ RSSL_API RsslRet rsslReplaceStreamId( RsslEncodeIterator *pIter, RsslInt32 streamId ); /** * @brief This function replaces the encoded Sequence Number in an encoded \ref RsslMsg with the specified streamId. * * @note This function will only succeed if the encoded message contains a sequence number. It cannot add a sequence number * to an encoded message that does not have the information. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param seqNum The new sequence number that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the sequence number has been replaced in the buffer. If RSSL_RET_FAILURE, this indicates that * the encoded message did not have a sequence number, and nothing was changed in the encoded buffer. If RSSL_RET_INVALID_ARGUMENT, * there was an issue with the encoded RsslBuffer, and the encoded buffer was not changed. * @see \ref RsslUpdateMsg, \ref RsslRefreshMsg, \ref RsslPostMsg, \ref RsslGenericMsg, \ref RsslAckMsg */ RSSL_API RsslRet rsslReplaceSeqNum( RsslEncodeIterator *pIter, RsslUInt32 seqNum ); /** * @brief This function replaces the encoded stream state in an encoded \ref RsslMsg with the specified stream state. * * @note This function will only succeed if the encoded message contains stream state information. It cannot add * state information to an encoded message that does not have the information. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param streamState The new stream state that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the stream state has been replaced in the buffer. If RSSL_RET_FAILURE, this indicates that * the encoded message did not have a stream state, so nothing was changed in the encoded buffer. If RSSL_RET_INVALID_ARGUMENT, * there was an issue with the encoded RsslBuffer or streamState, and the encoded buffer was not changed. * @see \ref RsslRefreshMsg, \ref RsslStatusMsg */ RSSL_API RsslRet rsslReplaceStreamState( RsslEncodeIterator *pIter, RsslUInt8 streamState); /** * @brief This function replaces the encoded data state in an encoded \ref RsslMsg with the specified data state. * * @note This function will only succeed if the encoded message contains data state information. It cannot add * state information to an encoded message that does not have the information. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param dataState The new data state that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the stream state has been replaced in the buffer. If RSSL_RET_FAILURE, this indicates that * the encoded message did not have a data state, so nothing was changed in the encoded buffer. If RSSL_RET_INVALID_ARGUMENT, * there was an issue with the encoded RsslBuffer, and the encoded buffer was not changed. * @see \ref RsslRefreshMsg, \ref RsslStatusMsg */ RSSL_API RsslRet rsslReplaceDataState( RsslEncodeIterator *pIter, RsslUInt8 dataState); /** * @brief This function replaces the encoded state code in an encoded \ref RsslMsg with the specified state code. * * @note This function will only succeed if the encoded message contains a state code. It cannot add * state information to an encoded message that does not have the information. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param stateCode The new state code that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the state code has been replaced in the buffer. If RSSL_RET_FAILURE, this indicates that * the encoded message did not have a state code, so nothing was changed in the encoded buffer. If RSSL_RET_INVALID_ARGUMENT, * there was an issue with the encoded RsslBuffer, and the encoded buffer was not changed. * @see \ref RsslRefreshMsg, \ref RsslStatusMsg */ RSSL_API RsslRet rsslReplaceStateCode( RsslEncodeIterator *pIter, RsslUInt8 stateCode); /** * @brief This function replaces the encoded group Id in an encoded \ref RsslMsg with the specified group Id. * * @note This function will only succeed if the encoded message contains a group Id. It cannot add * state information to an encoded message that does not have the information. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param groupId The new group Id that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the group Id has been replaced in the buffer. If RSSL_RET_FAILURE, this indicates that * the encoded message did not have a group Id, so nothing was changed in the encoded buffer. If RSSL_RET_INVALID_ARGUMENT, * there was an issue with the encoded RsslBuffer, and the encoded buffer was not changed. * @see \ref RsslRefreshMsg, \ref RsslStatusMsg */ RSSL_API RsslRet rsslReplaceGroupId( RsslEncodeIterator *pIter, RsslBuffer groupId); /** * @brief This function replaces the encoded post Id in an encoded \ref RsslMsg with the specified post Id. * * @note This function will only succeed if the encoded message contains a post Id. It cannot add * state information to an encoded message that does not have the information. * * @param pIter \ref RsslEncodeIterator with an \ref RsslBuffer containing an encoded \ref RsslMsg set on it. * @param postId The new post Id that the user wishes to set on the encoded \ref RsslMsg. * @return If RSSL_RET_SUCCESS, the post Id has been replaced in the buffer. If RSSL_RET_FAILURE, this indicates that * the encoded message did not have a post Id, so nothing was changed in the encoded buffer. If RSSL_RET_INVALID_ARGUMENT, * there was an issue with the encoded RsslBuffer, and the encoded buffer was not changed. * @see \ref RsslPostMsg */ RSSL_API RsslRet rsslReplacePostId( RsslEncodeIterator *pIter, RsslUInt32 postId); /** * @} */ #ifdef __cplusplus } #endif #endif
e3d51d0a1a09c459c9d78b2f8bd8b5d83b41177c
579ad2b15e00fb9fc690eb97b1444d531f2d5d3f
/rtpcore/rtp.h
261b6beb4121b5643220eef5068650461e68d38a
[]
no_license
peteratebs/webcwebbrowser
239af360deabed60eaa392206d2ca56f3b5215f9
08c446afc94d45d97efc948eb370cf8b7e0d3676
refs/heads/master
2021-01-10T05:33:26.367330
2015-10-12T22:30:38
2015-10-12T22:30:38
44,170,009
14
1
null
null
null
null
UTF-8
C
false
false
6,328
h
/* | RTP.H - Runtime Platform Services | | UNIVERSAL CODE - DO NOT CHANGE | | EBSnet - RT-Platform | | Copyright EBSnet Inc. , 2008 | All rights reserved. | This code may not be redistributed in source or linkable object form | without the consent of its author. | | Module description: | */ #ifndef __RTP_H__ #define __RTP_H__ /* ----------------------------------- */ /* Shared definitions for the */ /* RT-Platform interface */ /* ----------------------------------- */ /* FOR EXAMPLE: (RTPLATFORM_VERSION) 0004 == 00.04 == 0.4 0201 == 02.01 == 2.1 0415 == 04.15 == 4.15 1003 == 10.03 == 10.3 */ #define RTPLATFORM_VERSION 0004 /* 0.4 */ #define RTP_TIMEOUT_INFINITE -1 /* ----------------------------------- */ /* Include platform-specific header. */ /* ----------------------------------- */ #include "rtpport.h" #if (INCLUDE_RTIP) RTP_EXTERN int RTP_FAR in_irq; /* in RTIP */ #endif /* ------------------------------------- */ /* Include platform-independent headers. */ /* ------------------------------------- */ #include "rtpenv.h" #include "rtptypes.h" #include "rtputil.h" #include "rtpstr.h" #include "rtpscnv.h" #include "rtpchar.h" #include "rtpsignl.h" /* ********************************************************************* */ #define TASKPRIO_NORMAL_INDEX CFG_PRIO_INDEX_NORMAL #define STACKSIZE_NORMAL_INDEX CFG_STACK_SIZE_NORMAL #define STACKSIZE_BIG_INDEX CFG_STACK_SIZE_BIG #define STACKSIZE_HUGE_INDEX CFG_STACK_SIZE_HUGE // ******************************************************************* // constant definition - TBD - is this a porting issue? // ******************************************************************* #if (defined(SEGMC16) || HIGHC386 || defined(RTPXGSH2) || defined(RTPXGSH3)) //#define KS_CONSTANT //#define KS_GLOBAL_CONSTANT //#define KS_EXTERN_GLOBAL_CONSTANT extern #else /* KS_CONSTANT is mostly used for parameters and structure fields. The other _CONSTANT macros below are needed for global constants, since C++ handles these differently than C. In C++, a global constant can be treated like a #define, meaning the compiler does not allocate space for it, and only uses it locally in the module where it is defined. Any external references to it won't link since the symbol doesn't actually exist. In order to force the C++ compiler to allocate storage and make it public, the extern keyword is used. Normally, extern is used to indicate an external reference to something defined elsewhere, but for a C++ const it is used also in the definition. The compiler can tell it is the definition because of the assignment of the initial value, which the other extern references won't have. For example: extern const int a = 100; is the definition. extern const int a; is the extern reference. */ /* The first macro is mostly used for parameters and structure fields. The others were needed for global constants, since C++ handles these differently than C. In C++, a global constant can be treated like a #define, meaning the compiler does not allocate space for it, and only uses it locally in the module where it is defined. Any external references to it won't work if the compiler does that since the symbol doesn't exist. In order to force the compiler to allocate storage and make it public, the definition needs the extern keyword. Normally, extern is used to indicate that the statement it is used in is not a definition but just an external reference to something defined elsewhere, but not in this case. The compiler can tell it is the definition because of the assignment of the initial value, which the other extern references to it won't have. For example, extern int a = 100. */ #define KS_CONSTANT const #if (__cplusplus) #define KS_GLOBAL_CONSTANT extern const #else #define KS_GLOBAL_CONSTANT const #endif #define KS_EXTERN_GLOBAL_CONSTANT extern const #endif #if (0) /* SPRZ */ /* ----------------------------------- */ /* Callbacks to APPLICATIONc defines. */ /* ----------------------------------- */ typedef void (*CB_WR_ERROR_STRING_FNC)(RTP_PFCCHAR in_string, RTP_BOOL from_interrupt); typedef void (*CB_WR_INTERRUPT_STRING_FNC)(void); typedef void (*CB_WR_LOG_STRING_FNC)(RTP_PFCCHAR in_string, RTP_BOOL from_interrupt); #define CB_WR_ERROR_STRING(a, b) \ if (rtp_callbacks && rtp_callbacks->cb_wr_error_string_fnc) \ rtp_callbacks->cb_wr_error_string_fnc(a, b) #define CB_WR_INTERRUPT_STRING() \ if (rtp_callbacks && rtp_callbacks->cb_wr_interrupt_string_fnc) \ rtp_callbacks->cb_wr_interrupt_string_fnc() #define CB_WR_LOG_STRING(a, b) \ if (rtp_callbacks && rtp_callbacks->cb_wr_error_string_fnc) \ rtp_callbacks->cb_wr_error_string_fnc(a, b) /* ********************************************************************* */ typedef struct rtp_callbacks { /* output routines for error logging */ CB_WR_ERROR_STRING_FNC cb_wr_error_string_fnc; CB_WR_INTERRUPT_STRING_FNC cb_wr_interrupt_string_fnc; CB_WR_LOG_STRING_FNC cb_wr_log_string_fnc; } RTP_CALLBACKS; typedef RTP_CALLBACKS RTP_FAR * PRTP_CALLBACKS; /* ******************************************************************** */ /* CALLBACKS */ /* ******************************************************************** */ extern PRTP_CALLBACKS rtp_callbacks; #endif /************************************************************************ * API functions * ************************************************************************/ #if (0) /* SPRZ */ void rtp_register_callbacks(PRTP_CALLBACKS rtp_cb); #endif void rtp_not_yet_implemented (void); #endif /*__RTP_H__*/ /* ----------------------------------- */ /* END OF FILE */ /* ----------------------------------- */
46fd3c905cd7153a3d5bbf6b2a2525f8fc68939a
96822b9dc5ac4ae080b46808463fd8d09e6763c2
/dmpMPUmotion.c
7a8f0a5f25a039091a8a26ef0a1292c74764fc7c
[]
no_license
miguelrasteiro/MPU9150.X
0d1c2f77532137260f1ba1df3e443c41df5abcd8
0505b419ab22f0ff0d6af361fe74eac000537435
refs/heads/master
2021-01-19T09:44:10.676597
2014-10-25T12:25:06
2014-10-25T12:25:06
null
0
0
null
null
null
null
UTF-8
C
false
false
55,605
c
/* $License: Copyright (C) 2011-2012 InvenSense Corporation, All Rights Reserved. See included License.txt for License information. $ */ /** * @addtogroup DRIVERS Sensor Driver Layer * @brief Hardware drivers to communicate with sensors via I2C. * * @{ * @file inv_mpu_dmp_motion_driver.c * @brief DMP image and interface functions. * @details All functions are preceded by the dmp_ prefix to * differentiate among MPL and general driver function calls. */ #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <math.h> #include "i2c.h" #include "mpu9x50.h" #include "dmpMPUmotion.h" #include "dmpKey.h" #include "dmpmap.h" /* These defines are copied from dmpDefaultMPU6050.c in the general MPL * releases. These defines may change for each DMP image, so be sure to modify * these values when switching to a new image. */ #define CFG_LP_QUAT (2712) #define END_ORIENT_TEMP (1866) #define CFG_27 (2742) #define CFG_20 (2224) #define CFG_23 (2745) #define CFG_FIFO_ON_EVENT (2690) #define END_PREDICTION_UPDATE (1761) #define CGNOTICE_INTR (2620) #define X_GRT_Y_TMP (1358) #define CFG_DR_INT (1029) #define CFG_AUTH (1035) #define UPDATE_PROP_ROT (1835) #define END_COMPARE_Y_X_TMP2 (1455) #define SKIP_X_GRT_Y_TMP (1359) #define SKIP_END_COMPARE (1435) #define FCFG_3 (1088) #define FCFG_2 (1066) #define FCFG_1 (1062) #define END_COMPARE_Y_X_TMP3 (1434) #define FCFG_7 (1073) #define FCFG_6 (1106) #define FLAT_STATE_END (1713) #define SWING_END_4 (1616) #define SWING_END_2 (1565) #define SWING_END_3 (1587) #define SWING_END_1 (1550) #define CFG_8 (2718) #define CFG_15 (2727) #define CFG_16 (2746) #define CFG_EXT_GYRO_BIAS (1189) #define END_COMPARE_Y_X_TMP (1407) #define DO_NOT_UPDATE_PROP_ROT (1839) #define CFG_7 (1205) #define FLAT_STATE_END_TEMP (1683) #define END_COMPARE_Y_X (1484) #define SKIP_SWING_END_1 (1551) #define SKIP_SWING_END_3 (1588) #define SKIP_SWING_END_2 (1566) #define TILTG75_START (1672) #define CFG_6 (2753) #define TILTL75_END (1669) #define END_ORIENT (1884) #define CFG_FLICK_IN (2573) #define TILTL75_START (1643) #define CFG_MOTION_BIAS (1208) #define X_GRT_Y (1408) #define TEMPLABEL (2324) #define CFG_ANDROID_ORIENT_INT (1853) #define CFG_GYRO_RAW_DATA (2722) #define X_GRT_Y_TMP2 (1379) #define D_0_22 (22+512) #define D_0_24 (24+512) #define D_0_36 (36) #define D_0_52 (52) #define D_0_96 (96) #define D_0_104 (104) #define D_0_108 (108) #define D_0_163 (163) #define D_0_188 (188) #define D_0_192 (192) #define D_0_224 (224) #define D_0_228 (228) #define D_0_232 (232) #define D_0_236 (236) #define D_1_2 (256 + 2) #define D_1_4 (256 + 4) #define D_1_8 (256 + 8) #define D_1_10 (256 + 10) #define D_1_24 (256 + 24) #define D_1_28 (256 + 28) #define D_1_36 (256 + 36) #define D_1_40 (256 + 40) #define D_1_44 (256 + 44) #define D_1_72 (256 + 72) #define D_1_74 (256 + 74) #define D_1_79 (256 + 79) #define D_1_88 (256 + 88) #define D_1_90 (256 + 90) #define D_1_92 (256 + 92) #define D_1_96 (256 + 96) #define D_1_98 (256 + 98) #define D_1_106 (256 + 106) #define D_1_108 (256 + 108) #define D_1_112 (256 + 112) #define D_1_128 (256 + 144) #define D_1_152 (256 + 12) #define D_1_160 (256 + 160) #define D_1_176 (256 + 176) #define D_1_178 (256 + 178) #define D_1_218 (256 + 218) #define D_1_232 (256 + 232) #define D_1_236 (256 + 236) #define D_1_240 (256 + 240) #define D_1_244 (256 + 244) #define D_1_250 (256 + 250) #define D_1_252 (256 + 252) #define D_2_12 (512 + 12) #define D_2_96 (512 + 96) #define D_2_108 (512 + 108) #define D_2_208 (512 + 208) #define D_2_224 (512 + 224) #define D_2_236 (512 + 236) #define D_2_244 (512 + 244) #define D_2_248 (512 + 248) #define D_2_252 (512 + 252) #define CPASS_BIAS_X (35 * 16 + 4) #define CPASS_BIAS_Y (35 * 16 + 8) #define CPASS_BIAS_Z (35 * 16 + 12) #define CPASS_MTX_00 (36 * 16) #define CPASS_MTX_01 (36 * 16 + 4) #define CPASS_MTX_02 (36 * 16 + 8) #define CPASS_MTX_10 (36 * 16 + 12) #define CPASS_MTX_11 (37 * 16) #define CPASS_MTX_12 (37 * 16 + 4) #define CPASS_MTX_20 (37 * 16 + 8) #define CPASS_MTX_21 (37 * 16 + 12) #define CPASS_MTX_22 (43 * 16 + 12) #define D_EXT_GYRO_BIAS_X (61 * 16) #define D_EXT_GYRO_BIAS_Y (61 * 16) + 4 #define D_EXT_GYRO_BIAS_Z (61 * 16) + 8 #define D_ACT0 (40 * 16) #define D_ACSX (40 * 16 + 4) #define D_ACSY (40 * 16 + 8) #define D_ACSZ (40 * 16 + 12) #define FLICK_MSG (45 * 16 + 4) #define FLICK_COUNTER (45 * 16 + 8) #define FLICK_LOWER (45 * 16 + 12) #define FLICK_UPPER (46 * 16 + 12) #define D_AUTH_OUT (992) #define D_AUTH_IN (996) #define D_AUTH_A (1000) #define D_AUTH_B (1004) #define D_PEDSTD_BP_B (768 + 0x1C) #define D_PEDSTD_HP_A (768 + 0x78) #define D_PEDSTD_HP_B (768 + 0x7C) #define D_PEDSTD_BP_A4 (768 + 0x40) #define D_PEDSTD_BP_A3 (768 + 0x44) #define D_PEDSTD_BP_A2 (768 + 0x48) #define D_PEDSTD_BP_A1 (768 + 0x4C) #define D_PEDSTD_INT_THRSH (768 + 0x68) #define D_PEDSTD_CLIP (768 + 0x6C) #define D_PEDSTD_SB (768 + 0x28) #define D_PEDSTD_SB_TIME (768 + 0x2C) #define D_PEDSTD_PEAKTHRSH (768 + 0x98) #define D_PEDSTD_TIML (768 + 0x2A) #define D_PEDSTD_TIMH (768 + 0x2E) #define D_PEDSTD_PEAK (768 + 0X94) #define D_PEDSTD_STEPCTR (768 + 0x60) #define D_PEDSTD_TIMECTR (964) #define D_PEDSTD_DECI (768 + 0xA0) #define D_HOST_NO_MOT (976) #define D_ACCEL_BIAS (660) #define D_ORIENT_GAP (76) #define D_TILT0_H (48) #define D_TILT0_L (50) #define D_TILT1_H (52) #define D_TILT1_L (54) #define D_TILT2_H (56) #define D_TILT2_L (58) #define D_TILT3_H (60) #define D_TILT3_L (62) #define DMP_CODE_SIZE (3062) static const unsigned char dmp_memory[DMP_CODE_SIZE] = { /* bank # 0 */ 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x65, 0x00, 0x54, 0xff, 0xef, 0x00, 0x00, 0xfa, 0x80, 0x00, 0x0b, 0x12, 0x82, 0x00, 0x01, 0x03, 0x0c, 0x30, 0xc3, 0x0e, 0x8c, 0x8c, 0xe9, 0x14, 0xd5, 0x40, 0x02, 0x13, 0x71, 0x0f, 0x8e, 0x38, 0x83, 0xf8, 0x83, 0x30, 0x00, 0xf8, 0x83, 0x25, 0x8e, 0xf8, 0x83, 0x30, 0x00, 0xf8, 0x83, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xfe, 0xa9, 0xd6, 0x24, 0x00, 0x04, 0x00, 0x1a, 0x82, 0x79, 0xa1, 0x00, 0x00, 0x00, 0x3c, 0xff, 0xff, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x38, 0x83, 0x6f, 0xa2, 0x00, 0x3e, 0x03, 0x30, 0x40, 0x00, 0x00, 0x00, 0x02, 0xca, 0xe3, 0x09, 0x3e, 0x80, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x6e, 0x00, 0x00, 0x06, 0x92, 0x0a, 0x16, 0xc0, 0xdf, 0xff, 0xff, 0x02, 0x56, 0xfd, 0x8c, 0xd3, 0x77, 0xff, 0xe1, 0xc4, 0x96, 0xe0, 0xc5, 0xbe, 0xaa, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x2b, 0x00, 0x00, 0x16, 0x57, 0x00, 0x00, 0x03, 0x59, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0xfa, 0x00, 0x02, 0x6c, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xff, 0xdf, 0xeb, 0x00, 0x3e, 0xb3, 0xb6, 0x00, 0x0d, 0x22, 0x78, 0x00, 0x00, 0x2f, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x42, 0xb5, 0x00, 0x00, 0x39, 0xa2, 0x00, 0x00, 0xb3, 0x65, 0xd9, 0x0e, 0x9f, 0xc9, 0x1d, 0xcf, 0x4c, 0x34, 0x30, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3b, 0xb6, 0x7a, 0xe8, 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bank # 1 */ 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0xfa, 0x92, 0x10, 0x00, 0x22, 0x5e, 0x00, 0x0d, 0x22, 0x9f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0xff, 0x46, 0x00, 0x00, 0x63, 0xd4, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x04, 0xd6, 0x00, 0x00, 0x04, 0xcc, 0x00, 0x00, 0x04, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x10, 0x72, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x64, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x32, 0xf8, 0x98, 0x00, 0x00, 0xff, 0x65, 0x00, 0x00, 0x83, 0x0f, 0x00, 0x00, 0xff, 0x9b, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0xb2, 0x6a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0xfb, 0x83, 0x00, 0x68, 0x00, 0x00, 0x00, 0xd9, 0xfc, 0x00, 0x7c, 0xf1, 0xff, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x64, 0x03, 0xe8, 0x00, 0x64, 0x00, 0x28, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x10, 0x00, /* bank # 2 */ 0x00, 0x28, 0x00, 0x00, 0xff, 0xff, 0x45, 0x81, 0xff, 0xff, 0xfa, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x05, 0x00, 0x05, 0xba, 0xc6, 0x00, 0x47, 0x78, 0xa2, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x25, 0x4d, 0x00, 0x2f, 0x70, 0x6d, 0x00, 0x00, 0x05, 0xae, 0x00, 0x0c, 0x02, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x00, 0x0a, 0xc7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x0b, 0x2b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, 0xff, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bank # 3 */ 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x24, 0x26, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x10, 0x00, 0x96, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0a, 0x4e, 0x68, 0xcd, 0xcf, 0x77, 0x09, 0x50, 0x16, 0x67, 0x59, 0xc6, 0x19, 0xce, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0xd7, 0x84, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc7, 0x93, 0x8f, 0x9d, 0x1e, 0x1b, 0x1c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0x18, 0x85, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x67, 0x7d, 0xdf, 0x7e, 0x72, 0x90, 0x2e, 0x55, 0x4c, 0xf6, 0xe6, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* bank # 4 */ 0xd8, 0xdc, 0xb4, 0xb8, 0xb0, 0xd8, 0xb9, 0xab, 0xf3, 0xf8, 0xfa, 0xb3, 0xb7, 0xbb, 0x8e, 0x9e, 0xae, 0xf1, 0x32, 0xf5, 0x1b, 0xf1, 0xb4, 0xb8, 0xb0, 0x80, 0x97, 0xf1, 0xa9, 0xdf, 0xdf, 0xdf, 0xaa, 0xdf, 0xdf, 0xdf, 0xf2, 0xaa, 0xc5, 0xcd, 0xc7, 0xa9, 0x0c, 0xc9, 0x2c, 0x97, 0xf1, 0xa9, 0x89, 0x26, 0x46, 0x66, 0xb2, 0x89, 0x99, 0xa9, 0x2d, 0x55, 0x7d, 0xb0, 0xb0, 0x8a, 0xa8, 0x96, 0x36, 0x56, 0x76, 0xf1, 0xba, 0xa3, 0xb4, 0xb2, 0x80, 0xc0, 0xb8, 0xa8, 0x97, 0x11, 0xb2, 0x83, 0x98, 0xba, 0xa3, 0xf0, 0x24, 0x08, 0x44, 0x10, 0x64, 0x18, 0xb2, 0xb9, 0xb4, 0x98, 0x83, 0xf1, 0xa3, 0x29, 0x55, 0x7d, 0xba, 0xb5, 0xb1, 0xa3, 0x83, 0x93, 0xf0, 0x00, 0x28, 0x50, 0xf5, 0xb2, 0xb6, 0xaa, 0x83, 0x93, 0x28, 0x54, 0x7c, 0xf1, 0xb9, 0xa3, 0x82, 0x93, 0x61, 0xba, 0xa2, 0xda, 0xde, 0xdf, 0xdb, 0x81, 0x9a, 0xb9, 0xae, 0xf5, 0x60, 0x68, 0x70, 0xf1, 0xda, 0xba, 0xa2, 0xdf, 0xd9, 0xba, 0xa2, 0xfa, 0xb9, 0xa3, 0x82, 0x92, 0xdb, 0x31, 0xba, 0xa2, 0xd9, 0xba, 0xa2, 0xf8, 0xdf, 0x85, 0xa4, 0xd0, 0xc1, 0xbb, 0xad, 0x83, 0xc2, 0xc5, 0xc7, 0xb8, 0xa2, 0xdf, 0xdf, 0xdf, 0xba, 0xa0, 0xdf, 0xdf, 0xdf, 0xd8, 0xd8, 0xf1, 0xb8, 0xaa, 0xb3, 0x8d, 0xb4, 0x98, 0x0d, 0x35, 0x5d, 0xb2, 0xb6, 0xba, 0xaf, 0x8c, 0x96, 0x19, 0x8f, 0x9f, 0xa7, 0x0e, 0x16, 0x1e, 0xb4, 0x9a, 0xb8, 0xaa, 0x87, 0x2c, 0x54, 0x7c, 0xba, 0xa4, 0xb0, 0x8a, 0xb6, 0x91, 0x32, 0x56, 0x76, 0xb2, 0x84, 0x94, 0xa4, 0xc8, 0x08, 0xcd, 0xd8, 0xb8, 0xb4, 0xb0, 0xf1, 0x99, 0x82, 0xa8, 0x2d, 0x55, 0x7d, 0x98, 0xa8, 0x0e, 0x16, 0x1e, 0xa2, 0x2c, 0x54, 0x7c, 0x92, 0xa4, 0xf0, 0x2c, 0x50, 0x78, /* bank # 5 */ 0xf1, 0x84, 0xa8, 0x98, 0xc4, 0xcd, 0xfc, 0xd8, 0x0d, 0xdb, 0xa8, 0xfc, 0x2d, 0xf3, 0xd9, 0xba, 0xa6, 0xf8, 0xda, 0xba, 0xa6, 0xde, 0xd8, 0xba, 0xb2, 0xb6, 0x86, 0x96, 0xa6, 0xd0, 0xf3, 0xc8, 0x41, 0xda, 0xa6, 0xc8, 0xf8, 0xd8, 0xb0, 0xb4, 0xb8, 0x82, 0xa8, 0x92, 0xf5, 0x2c, 0x54, 0x88, 0x98, 0xf1, 0x35, 0xd9, 0xf4, 0x18, 0xd8, 0xf1, 0xa2, 0xd0, 0xf8, 0xf9, 0xa8, 0x84, 0xd9, 0xc7, 0xdf, 0xf8, 0xf8, 0x83, 0xc5, 0xda, 0xdf, 0x69, 0xdf, 0x83, 0xc1, 0xd8, 0xf4, 0x01, 0x14, 0xf1, 0xa8, 0x82, 0x4e, 0xa8, 0x84, 0xf3, 0x11, 0xd1, 0x82, 0xf5, 0xd9, 0x92, 0x28, 0x97, 0x88, 0xf1, 0x09, 0xf4, 0x1c, 0x1c, 0xd8, 0x84, 0xa8, 0xf3, 0xc0, 0xf9, 0xd1, 0xd9, 0x97, 0x82, 0xf1, 0x29, 0xf4, 0x0d, 0xd8, 0xf3, 0xf9, 0xf9, 0xd1, 0xd9, 0x82, 0xf4, 0xc2, 0x03, 0xd8, 0xde, 0xdf, 0x1a, 0xd8, 0xf1, 0xa2, 0xfa, 0xf9, 0xa8, 0x84, 0x98, 0xd9, 0xc7, 0xdf, 0xf8, 0xf8, 0xf8, 0x83, 0xc7, 0xda, 0xdf, 0x69, 0xdf, 0xf8, 0x83, 0xc3, 0xd8, 0xf4, 0x01, 0x14, 0xf1, 0x98, 0xa8, 0x82, 0x2e, 0xa8, 0x84, 0xf3, 0x11, 0xd1, 0x82, 0xf5, 0xd9, 0x92, 0x50, 0x97, 0x88, 0xf1, 0x09, 0xf4, 0x1c, 0xd8, 0x84, 0xa8, 0xf3, 0xc0, 0xf8, 0xf9, 0xd1, 0xd9, 0x97, 0x82, 0xf1, 0x49, 0xf4, 0x0d, 0xd8, 0xf3, 0xf9, 0xf9, 0xd1, 0xd9, 0x82, 0xf4, 0xc4, 0x03, 0xd8, 0xde, 0xdf, 0xd8, 0xf1, 0xad, 0x88, 0x98, 0xcc, 0xa8, 0x09, 0xf9, 0xd9, 0x82, 0x92, 0xa8, 0xf5, 0x7c, 0xf1, 0x88, 0x3a, 0xcf, 0x94, 0x4a, 0x6e, 0x98, 0xdb, 0x69, 0x31, 0xda, 0xad, 0xf2, 0xde, 0xf9, 0xd8, 0x87, 0x95, 0xa8, 0xf2, 0x21, 0xd1, 0xda, 0xa5, 0xf9, 0xf4, 0x17, 0xd9, 0xf1, 0xae, 0x8e, 0xd0, 0xc0, 0xc3, 0xae, 0x82, /* bank # 6 */ 0xc6, 0x84, 0xc3, 0xa8, 0x85, 0x95, 0xc8, 0xa5, 0x88, 0xf2, 0xc0, 0xf1, 0xf4, 0x01, 0x0e, 0xf1, 0x8e, 0x9e, 0xa8, 0xc6, 0x3e, 0x56, 0xf5, 0x54, 0xf1, 0x88, 0x72, 0xf4, 0x01, 0x15, 0xf1, 0x98, 0x45, 0x85, 0x6e, 0xf5, 0x8e, 0x9e, 0x04, 0x88, 0xf1, 0x42, 0x98, 0x5a, 0x8e, 0x9e, 0x06, 0x88, 0x69, 0xf4, 0x01, 0x1c, 0xf1, 0x98, 0x1e, 0x11, 0x08, 0xd0, 0xf5, 0x04, 0xf1, 0x1e, 0x97, 0x02, 0x02, 0x98, 0x36, 0x25, 0xdb, 0xf9, 0xd9, 0x85, 0xa5, 0xf3, 0xc1, 0xda, 0x85, 0xa5, 0xf3, 0xdf, 0xd8, 0x85, 0x95, 0xa8, 0xf3, 0x09, 0xda, 0xa5, 0xfa, 0xd8, 0x82, 0x92, 0xa8, 0xf5, 0x78, 0xf1, 0x88, 0x1a, 0x84, 0x9f, 0x26, 0x88, 0x98, 0x21, 0xda, 0xf4, 0x1d, 0xf3, 0xd8, 0x87, 0x9f, 0x39, 0xd1, 0xaf, 0xd9, 0xdf, 0xdf, 0xfb, 0xf9, 0xf4, 0x0c, 0xf3, 0xd8, 0xfa, 0xd0, 0xf8, 0xda, 0xf9, 0xf9, 0xd0, 0xdf, 0xd9, 0xf9, 0xd8, 0xf4, 0x0b, 0xd8, 0xf3, 0x87, 0x9f, 0x39, 0xd1, 0xaf, 0xd9, 0xdf, 0xdf, 0xf4, 0x1d, 0xf3, 0xd8, 0xfa, 0xfc, 0xa8, 0x69, 0xf9, 0xf9, 0xaf, 0xd0, 0xda, 0xde, 0xfa, 0xd9, 0xf8, 0x8f, 0x9f, 0xa8, 0xf1, 0xcc, 0xf3, 0x98, 0xdb, 0x45, 0xd9, 0xaf, 0xdf, 0xd0, 0xf8, 0xd8, 0xf1, 0x8f, 0x9f, 0xa8, 0xca, 0xf3, 0x88, 0x09, 0xda, 0xaf, 0x8f, 0xcb, 0xf8, 0xd8, 0xf2, 0xad, 0x97, 0x8d, 0x0c, 0xd9, 0xa5, 0xdf, 0xf9, 0xba, 0xa6, 0xf3, 0xfa, 0xf4, 0x12, 0xf2, 0xd8, 0x95, 0x0d, 0xd1, 0xd9, 0xba, 0xa6, 0xf3, 0xfa, 0xda, 0xa5, 0xf2, 0xc1, 0xba, 0xa6, 0xf3, 0xdf, 0xd8, 0xf1, 0xba, 0xb2, 0xb6, 0x86, 0x96, 0xa6, 0xd0, 0xca, 0xf3, 0x49, 0xda, 0xa6, 0xcb, 0xf8, 0xd8, 0xb0, 0xb4, 0xb8, 0xd8, 0xad, 0x84, 0xf2, 0xc0, 0xdf, 0xf1, 0x8f, 0xcb, 0xc3, 0xa8, /* bank # 7 */ 0xb2, 0xb6, 0x86, 0x96, 0xc8, 0xc1, 0xcb, 0xc3, 0xf3, 0xb0, 0xb4, 0x88, 0x98, 0xa8, 0x21, 0xdb, 0x71, 0x8d, 0x9d, 0x71, 0x85, 0x95, 0x21, 0xd9, 0xad, 0xf2, 0xfa, 0xd8, 0x85, 0x97, 0xa8, 0x28, 0xd9, 0xf4, 0x08, 0xd8, 0xf2, 0x8d, 0x29, 0xda, 0xf4, 0x05, 0xd9, 0xf2, 0x85, 0xa4, 0xc2, 0xf2, 0xd8, 0xa8, 0x8d, 0x94, 0x01, 0xd1, 0xd9, 0xf4, 0x11, 0xf2, 0xd8, 0x87, 0x21, 0xd8, 0xf4, 0x0a, 0xd8, 0xf2, 0x84, 0x98, 0xa8, 0xc8, 0x01, 0xd1, 0xd9, 0xf4, 0x11, 0xd8, 0xf3, 0xa4, 0xc8, 0xbb, 0xaf, 0xd0, 0xf2, 0xde, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xd8, 0xf1, 0xb8, 0xf6, 0xb5, 0xb9, 0xb0, 0x8a, 0x95, 0xa3, 0xde, 0x3c, 0xa3, 0xd9, 0xf8, 0xd8, 0x5c, 0xa3, 0xd9, 0xf8, 0xd8, 0x7c, 0xa3, 0xd9, 0xf8, 0xd8, 0xf8, 0xf9, 0xd1, 0xa5, 0xd9, 0xdf, 0xda, 0xfa, 0xd8, 0xb1, 0x85, 0x30, 0xf7, 0xd9, 0xde, 0xd8, 0xf8, 0x30, 0xad, 0xda, 0xde, 0xd8, 0xf2, 0xb4, 0x8c, 0x99, 0xa3, 0x2d, 0x55, 0x7d, 0xa0, 0x83, 0xdf, 0xdf, 0xdf, 0xb5, 0x91, 0xa0, 0xf6, 0x29, 0xd9, 0xfb, 0xd8, 0xa0, 0xfc, 0x29, 0xd9, 0xfa, 0xd8, 0xa0, 0xd0, 0x51, 0xd9, 0xf8, 0xd8, 0xfc, 0x51, 0xd9, 0xf9, 0xd8, 0x79, 0xd9, 0xfb, 0xd8, 0xa0, 0xd0, 0xfc, 0x79, 0xd9, 0xfa, 0xd8, 0xa1, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xa0, 0xda, 0xdf, 0xdf, 0xdf, 0xd8, 0xa1, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xac, 0xde, 0xf8, 0xad, 0xde, 0x83, 0x93, 0xac, 0x2c, 0x54, 0x7c, 0xf1, 0xa8, 0xdf, 0xdf, 0xdf, 0xf6, 0x9d, 0x2c, 0xda, 0xa0, 0xdf, 0xd9, 0xfa, 0xdb, 0x2d, 0xf8, 0xd8, 0xa8, 0x50, 0xda, 0xa0, 0xd0, 0xde, 0xd9, 0xd0, 0xf8, 0xf8, 0xf8, 0xdb, 0x55, 0xf8, 0xd8, 0xa8, 0x78, 0xda, 0xa0, 0xd0, 0xdf, /* bank # 8 */ 0xd9, 0xd0, 0xfa, 0xf8, 0xf8, 0xf8, 0xf8, 0xdb, 0x7d, 0xf8, 0xd8, 0x9c, 0xa8, 0x8c, 0xf5, 0x30, 0xdb, 0x38, 0xd9, 0xd0, 0xde, 0xdf, 0xa0, 0xd0, 0xde, 0xdf, 0xd8, 0xa8, 0x48, 0xdb, 0x58, 0xd9, 0xdf, 0xd0, 0xde, 0xa0, 0xdf, 0xd0, 0xde, 0xd8, 0xa8, 0x68, 0xdb, 0x70, 0xd9, 0xdf, 0xdf, 0xa0, 0xdf, 0xdf, 0xd8, 0xf1, 0xa8, 0x88, 0x90, 0x2c, 0x54, 0x7c, 0x98, 0xa8, 0xd0, 0x5c, 0x38, 0xd1, 0xda, 0xf2, 0xae, 0x8c, 0xdf, 0xf9, 0xd8, 0xb0, 0x87, 0xa8, 0xc1, 0xc1, 0xb1, 0x88, 0xa8, 0xc6, 0xf9, 0xf9, 0xda, 0x36, 0xd8, 0xa8, 0xf9, 0xda, 0x36, 0xd8, 0xa8, 0xf9, 0xda, 0x36, 0xd8, 0xa8, 0xf9, 0xda, 0x36, 0xd8, 0xa8, 0xf9, 0xda, 0x36, 0xd8, 0xf7, 0x8d, 0x9d, 0xad, 0xf8, 0x18, 0xda, 0xf2, 0xae, 0xdf, 0xd8, 0xf7, 0xad, 0xfa, 0x30, 0xd9, 0xa4, 0xde, 0xf9, 0xd8, 0xf2, 0xae, 0xde, 0xfa, 0xf9, 0x83, 0xa7, 0xd9, 0xc3, 0xc5, 0xc7, 0xf1, 0x88, 0x9b, 0xa7, 0x7a, 0xad, 0xf7, 0xde, 0xdf, 0xa4, 0xf8, 0x84, 0x94, 0x08, 0xa7, 0x97, 0xf3, 0x00, 0xae, 0xf2, 0x98, 0x19, 0xa4, 0x88, 0xc6, 0xa3, 0x94, 0x88, 0xf6, 0x32, 0xdf, 0xf2, 0x83, 0x93, 0xdb, 0x09, 0xd9, 0xf2, 0xaa, 0xdf, 0xd8, 0xd8, 0xae, 0xf8, 0xf9, 0xd1, 0xda, 0xf3, 0xa4, 0xde, 0xa7, 0xf1, 0x88, 0x9b, 0x7a, 0xd8, 0xf3, 0x84, 0x94, 0xae, 0x19, 0xf9, 0xda, 0xaa, 0xf1, 0xdf, 0xd8, 0xa8, 0x81, 0xc0, 0xc3, 0xc5, 0xc7, 0xa3, 0x92, 0x83, 0xf6, 0x28, 0xad, 0xde, 0xd9, 0xf8, 0xd8, 0xa3, 0x50, 0xad, 0xd9, 0xf8, 0xd8, 0xa3, 0x78, 0xad, 0xd9, 0xf8, 0xd8, 0xf8, 0xf9, 0xd1, 0xa1, 0xda, 0xde, 0xc3, 0xc5, 0xc7, 0xd8, 0xa1, 0x81, 0x94, 0xf8, 0x18, 0xf2, 0xb0, 0x89, 0xac, 0xc3, 0xc5, 0xc7, 0xf1, 0xd8, 0xb8, /* bank # 9 */ 0xb4, 0xb0, 0x97, 0x86, 0xa8, 0x31, 0x9b, 0x06, 0x99, 0x07, 0xab, 0x97, 0x28, 0x88, 0x9b, 0xf0, 0x0c, 0x20, 0x14, 0x40, 0xb0, 0xb4, 0xb8, 0xf0, 0xa8, 0x8a, 0x9a, 0x28, 0x50, 0x78, 0xb7, 0x9b, 0xa8, 0x29, 0x51, 0x79, 0x24, 0x70, 0x59, 0x44, 0x69, 0x38, 0x64, 0x48, 0x31, 0xf1, 0xbb, 0xab, 0x88, 0x00, 0x2c, 0x54, 0x7c, 0xf0, 0xb3, 0x8b, 0xb8, 0xa8, 0x04, 0x28, 0x50, 0x78, 0xf1, 0xb0, 0x88, 0xb4, 0x97, 0x26, 0xa8, 0x59, 0x98, 0xbb, 0xab, 0xb3, 0x8b, 0x02, 0x26, 0x46, 0x66, 0xb0, 0xb8, 0xf0, 0x8a, 0x9c, 0xa8, 0x29, 0x51, 0x79, 0x8b, 0x29, 0x51, 0x79, 0x8a, 0x24, 0x70, 0x59, 0x8b, 0x20, 0x58, 0x71, 0x8a, 0x44, 0x69, 0x38, 0x8b, 0x39, 0x40, 0x68, 0x8a, 0x64, 0x48, 0x31, 0x8b, 0x30, 0x49, 0x60, 0x88, 0xf1, 0xac, 0x00, 0x2c, 0x54, 0x7c, 0xf0, 0x8c, 0xa8, 0x04, 0x28, 0x50, 0x78, 0xf1, 0x88, 0x97, 0x26, 0xa8, 0x59, 0x98, 0xac, 0x8c, 0x02, 0x26, 0x46, 0x66, 0xf0, 0x89, 0x9c, 0xa8, 0x29, 0x51, 0x79, 0x24, 0x70, 0x59, 0x44, 0x69, 0x38, 0x64, 0x48, 0x31, 0xa9, 0x88, 0x09, 0x20, 0x59, 0x70, 0xab, 0x11, 0x38, 0x40, 0x69, 0xa8, 0x19, 0x31, 0x48, 0x60, 0x8c, 0xa8, 0x3c, 0x41, 0x5c, 0x20, 0x7c, 0x00, 0xf1, 0x87, 0x98, 0x19, 0x86, 0xa8, 0x6e, 0x76, 0x7e, 0xa9, 0x99, 0x88, 0x2d, 0x55, 0x7d, 0xd8, 0xb1, 0xb5, 0xb9, 0xa3, 0xdf, 0xdf, 0xdf, 0xae, 0xd0, 0xdf, 0xaa, 0xd0, 0xde, 0xf2, 0xab, 0xf8, 0xf9, 0xd9, 0xb0, 0x87, 0xc4, 0xaa, 0xf1, 0xdf, 0xdf, 0xbb, 0xaf, 0xdf, 0xdf, 0xb9, 0xd8, 0xb1, 0xf1, 0xa3, 0x97, 0x8e, 0x60, 0xdf, 0xb0, 0x84, 0xf2, 0xc8, 0xf8, 0xf9, 0xd9, 0xde, 0xd8, 0x93, 0x85, 0xf1, 0x4a, 0xb1, 0x83, 0xa3, 0x08, 0xb5, 0x83, /* bank # 10 */ 0x9a, 0x08, 0x10, 0xb7, 0x9f, 0x10, 0xd8, 0xf1, 0xb0, 0xba, 0xae, 0xb0, 0x8a, 0xc2, 0xb2, 0xb6, 0x8e, 0x9e, 0xf1, 0xfb, 0xd9, 0xf4, 0x1d, 0xd8, 0xf9, 0xd9, 0x0c, 0xf1, 0xd8, 0xf8, 0xf8, 0xad, 0x61, 0xd9, 0xae, 0xfb, 0xd8, 0xf4, 0x0c, 0xf1, 0xd8, 0xf8, 0xf8, 0xad, 0x19, 0xd9, 0xae, 0xfb, 0xdf, 0xd8, 0xf4, 0x16, 0xf1, 0xd8, 0xf8, 0xad, 0x8d, 0x61, 0xd9, 0xf4, 0xf4, 0xac, 0xf5, 0x9c, 0x9c, 0x8d, 0xdf, 0x2b, 0xba, 0xb6, 0xae, 0xfa, 0xf8, 0xf4, 0x0b, 0xd8, 0xf1, 0xae, 0xd0, 0xf8, 0xad, 0x51, 0xda, 0xae, 0xfa, 0xf8, 0xf1, 0xd8, 0xb9, 0xb1, 0xb6, 0xa3, 0x83, 0x9c, 0x08, 0xb9, 0xb1, 0x83, 0x9a, 0xb5, 0xaa, 0xc0, 0xfd, 0x30, 0x83, 0xb7, 0x9f, 0x10, 0xb5, 0x8b, 0x93, 0xf2, 0x02, 0x02, 0xd1, 0xab, 0xda, 0xde, 0xd8, 0xf1, 0xb0, 0x80, 0xba, 0xab, 0xc0, 0xc3, 0xb2, 0x84, 0xc1, 0xc3, 0xd8, 0xb1, 0xb9, 0xf3, 0x8b, 0xa3, 0x91, 0xb6, 0x09, 0xb4, 0xd9, 0xab, 0xde, 0xb0, 0x87, 0x9c, 0xb9, 0xa3, 0xdd, 0xf1, 0xb3, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0xb0, 0x87, 0xa3, 0xa3, 0xa3, 0xa3, 0xb2, 0x8b, 0xb6, 0x9b, 0xf2, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xf1, 0xb0, 0x87, 0xb5, 0x9a, 0xa3, 0xf3, 0x9b, 0xa3, 0xa3, 0xdc, 0xba, 0xac, 0xdf, 0xb9, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xd8, 0xd8, 0xd8, 0xbb, 0xb3, 0xb7, 0xf1, 0xaa, 0xf9, 0xda, 0xff, 0xd9, 0x80, 0x9a, 0xaa, 0x28, 0xb4, 0x80, 0x98, 0xa7, 0x20, 0xb7, 0x97, 0x87, 0xa8, 0x66, 0x88, 0xf0, 0x79, 0x51, 0xf1, 0x90, 0x2c, 0x87, 0x0c, 0xa7, 0x81, 0x97, 0x62, 0x93, 0xf0, 0x71, 0x71, 0x60, 0x85, 0x94, 0x01, 0x29, /* bank # 11 */ 0x51, 0x79, 0x90, 0xa5, 0xf1, 0x28, 0x4c, 0x6c, 0x87, 0x0c, 0x95, 0x18, 0x85, 0x78, 0xa3, 0x83, 0x90, 0x28, 0x4c, 0x6c, 0x88, 0x6c, 0xd8, 0xf3, 0xa2, 0x82, 0x00, 0xf2, 0x10, 0xa8, 0x92, 0x19, 0x80, 0xa2, 0xf2, 0xd9, 0x26, 0xd8, 0xf1, 0x88, 0xa8, 0x4d, 0xd9, 0x48, 0xd8, 0x96, 0xa8, 0x39, 0x80, 0xd9, 0x3c, 0xd8, 0x95, 0x80, 0xa8, 0x39, 0xa6, 0x86, 0x98, 0xd9, 0x2c, 0xda, 0x87, 0xa7, 0x2c, 0xd8, 0xa8, 0x89, 0x95, 0x19, 0xa9, 0x80, 0xd9, 0x38, 0xd8, 0xa8, 0x89, 0x39, 0xa9, 0x80, 0xda, 0x3c, 0xd8, 0xa8, 0x2e, 0xa8, 0x39, 0x90, 0xd9, 0x0c, 0xd8, 0xa8, 0x95, 0x31, 0x98, 0xd9, 0x0c, 0xd8, 0xa8, 0x09, 0xd9, 0xff, 0xd8, 0x01, 0xda, 0xff, 0xd8, 0x95, 0x39, 0xa9, 0xda, 0x26, 0xff, 0xd8, 0x90, 0xa8, 0x0d, 0x89, 0x99, 0xa8, 0x10, 0x80, 0x98, 0x21, 0xda, 0x2e, 0xd8, 0x89, 0x99, 0xa8, 0x31, 0x80, 0xda, 0x2e, 0xd8, 0xa8, 0x86, 0x96, 0x31, 0x80, 0xda, 0x2e, 0xd8, 0xa8, 0x87, 0x31, 0x80, 0xda, 0x2e, 0xd8, 0xa8, 0x82, 0x92, 0xf3, 0x41, 0x80, 0xf1, 0xd9, 0x2e, 0xd8, 0xa8, 0x82, 0xf3, 0x19, 0x80, 0xf1, 0xd9, 0x2e, 0xd8, 0x82, 0xac, 0xf3, 0xc0, 0xa2, 0x80, 0x22, 0xf1, 0xa6, 0x2e, 0xa7, 0x2e, 0xa9, 0x22, 0x98, 0xa8, 0x29, 0xda, 0xac, 0xde, 0xff, 0xd8, 0xa2, 0xf2, 0x2a, 0xf1, 0xa9, 0x2e, 0x82, 0x92, 0xa8, 0xf2, 0x31, 0x80, 0xa6, 0x96, 0xf1, 0xd9, 0x00, 0xac, 0x8c, 0x9c, 0x0c, 0x30, 0xac, 0xde, 0xd0, 0xde, 0xff, 0xd8, 0x8c, 0x9c, 0xac, 0xd0, 0x10, 0xac, 0xde, 0x80, 0x92, 0xa2, 0xf2, 0x4c, 0x82, 0xa8, 0xf1, 0xca, 0xf2, 0x35, 0xf1, 0x96, 0x88, 0xa6, 0xd9, 0x00, 0xd8, 0xf1, 0xff }; static const unsigned short sStartAddress = 0x0400; /* END OF SECTION COPIED FROM dmpDefaultMPU6050.c */ #define INT_SRC_TAP (0x01) #define INT_SRC_ANDROID_ORIENT (0x08) #define DMP_FEATURE_SEND_ANY_GYRO (DMP_FEATURE_SEND_RAW_GYRO | \ DMP_FEATURE_SEND_CAL_GYRO) #define MAX_PACKET_LENGTH (32) #define DMP_SAMPLE_RATE (200) /// DMP sample rate and interruption genearation #define GYRO_SF (46850825LL * 200 / DMP_SAMPLE_RATE) #define FIFO_CORRUPTION_CHECK #ifdef FIFO_CORRUPTION_CHECK #define QUAT_ERROR_THRESH (1L<<24) #define QUAT_MAG_SQ_NORMALIZED (1L<<28) #define QUAT_MAG_SQ_MIN (QUAT_MAG_SQ_NORMALIZED - QUAT_ERROR_THRESH) #define QUAT_MAG_SQ_MAX (QUAT_MAG_SQ_NORMALIZED + QUAT_ERROR_THRESH) #endif struct dmp_s { void (*tap_cb)(unsigned char count, unsigned char direction); void (*android_orient_cb)(unsigned char orientation); unsigned short orient; unsigned short feature_mask; unsigned short fifo_rate; unsigned char packet_length; }; static struct dmp_s dmp = { .tap_cb = NULL, .android_orient_cb = NULL, .orient = 0, .feature_mask = 0, .fifo_rate = 0, .packet_length = 0 }; /** * @brief Load the DMP with this image. * @return 0 if successful. */ int dmp_load_motion_driver_firmware(void) { return mpu_load_firmware(DMP_CODE_SIZE, dmp_memory, sStartAddress, DMP_SAMPLE_RATE); } /** * @brief Push gyro and accel orientation to the DMP. * The orientation is represented here as the output of * @e inv_orientation_matrix_to_scalar. * @param[in] orient Gyro and accel orientation in body frame. * @return 0 if successful. */ int dmp_set_orientation(unsigned short orient) { unsigned char gyro_regs[3], accel_regs[3]; const unsigned char gyro_axes[3] = {DINA4C, DINACD, DINA6C}; const unsigned char accel_axes[3] = {DINA0C, DINAC9, DINA2C}; const unsigned char gyro_sign[3] = {DINA36, DINA56, DINA76}; const unsigned char accel_sign[3] = {DINA26, DINA46, DINA66}; gyro_regs[0] = gyro_axes[orient & 3]; gyro_regs[1] = gyro_axes[(orient >> 3) & 3]; gyro_regs[2] = gyro_axes[(orient >> 6) & 3]; accel_regs[0] = accel_axes[orient & 3]; accel_regs[1] = accel_axes[(orient >> 3) & 3]; accel_regs[2] = accel_axes[(orient >> 6) & 3]; /* Chip-to-body, axes only. */ if (mpu_write_mem(FCFG_1, 3, gyro_regs)) return -1; if (mpu_write_mem(FCFG_2, 3, accel_regs)) return -1; memcpy(gyro_regs, gyro_sign, 3); memcpy(accel_regs, accel_sign, 3); if (orient & 4) { gyro_regs[0] |= 1; accel_regs[0] |= 1; } if (orient & 0x20) { gyro_regs[1] |= 1; accel_regs[1] |= 1; } if (orient & 0x100) { gyro_regs[2] |= 1; accel_regs[2] |= 1; } /* Chip-to-body, sign only. */ if (mpu_write_mem(FCFG_3, 3, gyro_regs)) return -1; if (mpu_write_mem(FCFG_7, 3, accel_regs)) return -1; dmp.orient = orient; return 0; } /** * @brief Push gyro biases to the DMP. * Because the gyro integration is handled in the DMP, any gyro biases * calculated by the MPL should be pushed down to DMP memory to remove * 3-axis quaternion drift. * \n NOTE: If the DMP-based gyro calibration is enabled, the DMP will * overwrite the biases written to this location once a new one is computed. * @param[in] bias Gyro biases in q16. * @return 0 if successful. */ int dmp_set_gyro_bias(long *bias) { long gyro_bias_body[3]; unsigned char regs[4]; gyro_bias_body[0] = bias[dmp.orient & 3]; if (dmp.orient & 4) gyro_bias_body[0] *= -1; gyro_bias_body[1] = bias[(dmp.orient >> 3) & 3]; if (dmp.orient & 0x20) gyro_bias_body[1] *= -1; gyro_bias_body[2] = bias[(dmp.orient >> 6) & 3]; if (dmp.orient & 0x100) gyro_bias_body[2] *= -1; #ifdef EMPL_NO_64BIT gyro_bias_body[0] = (long)(((float)gyro_bias_body[0] * GYRO_SF) / 1073741824.f); gyro_bias_body[1] = (long)(((float)gyro_bias_body[1] * GYRO_SF) / 1073741824.f); gyro_bias_body[2] = (long)(((float)gyro_bias_body[2] * GYRO_SF) / 1073741824.f); #else gyro_bias_body[0] = (long)(((long long)gyro_bias_body[0] * GYRO_SF) >> 30); gyro_bias_body[1] = (long)(((long long)gyro_bias_body[1] * GYRO_SF) >> 30); gyro_bias_body[2] = (long)(((long long)gyro_bias_body[2] * GYRO_SF) >> 30); #endif regs[0] = (unsigned char)((gyro_bias_body[0] >> 24) & 0xFF); regs[1] = (unsigned char)((gyro_bias_body[0] >> 16) & 0xFF); regs[2] = (unsigned char)((gyro_bias_body[0] >> 8) & 0xFF); regs[3] = (unsigned char)(gyro_bias_body[0] & 0xFF); if (mpu_write_mem(D_EXT_GYRO_BIAS_X, 4, regs)) return -1; regs[0] = (unsigned char)((gyro_bias_body[1] >> 24) & 0xFF); regs[1] = (unsigned char)((gyro_bias_body[1] >> 16) & 0xFF); regs[2] = (unsigned char)((gyro_bias_body[1] >> 8) & 0xFF); regs[3] = (unsigned char)(gyro_bias_body[1] & 0xFF); if (mpu_write_mem(D_EXT_GYRO_BIAS_Y, 4, regs)) return -1; regs[0] = (unsigned char)((gyro_bias_body[2] >> 24) & 0xFF); regs[1] = (unsigned char)((gyro_bias_body[2] >> 16) & 0xFF); regs[2] = (unsigned char)((gyro_bias_body[2] >> 8) & 0xFF); regs[3] = (unsigned char)(gyro_bias_body[2] & 0xFF); return mpu_write_mem(D_EXT_GYRO_BIAS_Z, 4, regs); } /** * @brief Push accel biases to the DMP. * These biases will be removed from the DMP 6-axis quaternion. * @param[in] bias Accel biases in q16. * @return 0 if successful. */ int dmp_set_accel_bias(long *bias) { long accel_bias_body[3]; unsigned char regs[12]; long long accel_sf; unsigned short accel_sens; mpu_get_accel_sens(&accel_sens); accel_sf = (long long)accel_sens << 15; regs[0]=regs[0]; // Burn one cycle = No Operation ? accel_bias_body[0] = bias[dmp.orient & 3]; if (dmp.orient & 4) accel_bias_body[0] *= -1; accel_bias_body[1] = bias[(dmp.orient >> 3) & 3]; if (dmp.orient & 0x20) accel_bias_body[1] *= -1; accel_bias_body[2] = bias[(dmp.orient >> 6) & 3]; if (dmp.orient & 0x100) accel_bias_body[2] *= -1; #ifdef EMPL_NO_64BIT accel_bias_body[0] = (long)(((float)accel_bias_body[0] * accel_sf) / 1073741824.f); accel_bias_body[1] = (long)(((float)accel_bias_body[1] * accel_sf) / 1073741824.f); accel_bias_body[2] = (long)(((float)accel_bias_body[2] * accel_sf) / 1073741824.f); #else accel_bias_body[0] = (long)(((long long)accel_bias_body[0] * accel_sf) >> 30); accel_bias_body[1] = (long)(((long long)accel_bias_body[1] * accel_sf) >> 30); accel_bias_body[2] = (long)(((long long)accel_bias_body[2] * accel_sf) >> 30); #endif regs[0] = (unsigned char)((accel_bias_body[0] >> 24) & 0xFF); regs[1] = (unsigned char)((accel_bias_body[0] >> 16) & 0xFF); regs[2] = (unsigned char)((accel_bias_body[0] >> 8) & 0xFF); regs[3] = (unsigned char)(accel_bias_body[0] & 0xFF); regs[4] = (unsigned char)((accel_bias_body[1] >> 24) & 0xFF); regs[5] = (unsigned char)((accel_bias_body[1] >> 16) & 0xFF); regs[6] = (unsigned char)((accel_bias_body[1] >> 8) & 0xFF); regs[7] = (unsigned char)(accel_bias_body[1] & 0xFF); regs[8] = (unsigned char)((accel_bias_body[2] >> 24) & 0xFF); regs[9] = (unsigned char)((accel_bias_body[2] >> 16) & 0xFF); regs[10] = (unsigned char)((accel_bias_body[2] >> 8) & 0xFF); regs[11] = (unsigned char)(accel_bias_body[2] & 0xFF); return mpu_write_mem(D_ACCEL_BIAS, 12, regs); } /** * @brief Set DMP output rate. * Only used when DMP is on. * @param[in] rate Desired fifo rate (Hz). * @return 0 if successful. */ int dmp_set_fifo_rate(unsigned short rate) { const unsigned char regs_end[12] = {DINAFE, DINAF2, DINAAB, 0xc4, DINAAA, DINAF1, DINADF, DINADF, 0xBB, 0xAF, DINADF, DINADF}; unsigned short div; unsigned char tmp[8]; if (rate > DMP_SAMPLE_RATE) return -1; div = DMP_SAMPLE_RATE / rate - 1; tmp[0] = (unsigned char)((div >> 8) & 0xFF); tmp[1] = (unsigned char)(div & 0xFF); if (mpu_write_mem(D_0_22, 2, tmp)) return -1; if (mpu_write_mem(CFG_6, 12, (unsigned char*)regs_end)) return -1; dmp.fifo_rate = rate; return 0; } /** * @brief Get DMP output rate. * @param[out] rate Current fifo rate (Hz). * @return 0 if successful. */ int dmp_get_fifo_rate(unsigned short *rate) { rate[0] = dmp.fifo_rate; return 0; } /** * @brief Set tap threshold for a specific axis. * @param[in] axis 1, 2, and 4 for XYZ accel, respectively. * @param[in] thresh Tap threshold, in mg/ms. * @return 0 if successful. */ int dmp_set_tap_thresh(unsigned char axis, unsigned short thresh) { unsigned char tmp[4], accel_fsr; float scaled_thresh; unsigned short dmp_thresh, dmp_thresh_2; if (!(axis & TAP_XYZ) || thresh > 1600) return -1; scaled_thresh = (float)thresh / DMP_SAMPLE_RATE; mpu_get_accel_fsr(&accel_fsr); switch (accel_fsr) { case 2: dmp_thresh = (unsigned short)(scaled_thresh * 16384); /* dmp_thresh * 0.75 */ dmp_thresh_2 = (unsigned short)(scaled_thresh * 12288); break; case 4: dmp_thresh = (unsigned short)(scaled_thresh * 8192); /* dmp_thresh * 0.75 */ dmp_thresh_2 = (unsigned short)(scaled_thresh * 6144); break; case 8: dmp_thresh = (unsigned short)(scaled_thresh * 4096); /* dmp_thresh * 0.75 */ dmp_thresh_2 = (unsigned short)(scaled_thresh * 3072); break; case 16: dmp_thresh = (unsigned short)(scaled_thresh * 2048); /* dmp_thresh * 0.75 */ dmp_thresh_2 = (unsigned short)(scaled_thresh * 1536); break; default: return -1; } tmp[0] = (unsigned char)(dmp_thresh >> 8); tmp[1] = (unsigned char)(dmp_thresh & 0xFF); tmp[2] = (unsigned char)(dmp_thresh_2 >> 8); tmp[3] = (unsigned char)(dmp_thresh_2 & 0xFF); if (axis & TAP_X) { if (mpu_write_mem(DMP_TAP_THX, 2, tmp)) return -1; if (mpu_write_mem(D_1_36, 2, tmp+2)) return -1; } if (axis & TAP_Y) { if (mpu_write_mem(DMP_TAP_THY, 2, tmp)) return -1; if (mpu_write_mem(D_1_40, 2, tmp+2)) return -1; } if (axis & TAP_Z) { if (mpu_write_mem(DMP_TAP_THZ, 2, tmp)) return -1; if (mpu_write_mem(D_1_44, 2, tmp+2)) return -1; } return 0; } /** * @brief Set which axes will register a tap. * @param[in] axis 1, 2, and 4 for XYZ, respectively. * @return 0 if successful. */ int dmp_set_tap_axes(unsigned char axis) { unsigned char tmp = 0; if (axis & TAP_X) tmp |= 0x30; if (axis & TAP_Y) tmp |= 0x0C; if (axis & TAP_Z) tmp |= 0x03; return mpu_write_mem(D_1_72, 1, &tmp); } /** * @brief Set minimum number of taps needed for an interrupt. * @param[in] min_taps Minimum consecutive taps (1-4). * @return 0 if successful. */ int dmp_set_tap_count(unsigned char min_taps) { unsigned char tmp; if (min_taps < 1) min_taps = 1; else if (min_taps > 4) min_taps = 4; tmp = min_taps - 1; return mpu_write_mem(D_1_79, 1, &tmp); } /** * @brief Set length between valid taps. * @param[in] time Milliseconds between taps. * @return 0 if successful. */ int dmp_set_tap_time(unsigned short time) { unsigned short dmp_time; unsigned char tmp[2]; dmp_time = time / (1000 / DMP_SAMPLE_RATE); tmp[0] = (unsigned char)(dmp_time >> 8); tmp[1] = (unsigned char)(dmp_time & 0xFF); return mpu_write_mem(DMP_TAPW_MIN, 2, tmp); } /** * @brief Set max time between taps to register as a multi-tap. * @param[in] time Max milliseconds between taps. * @return 0 if successful. */ int dmp_set_tap_time_multi(unsigned short time) { unsigned short dmp_time; unsigned char tmp[2]; dmp_time = time / (1000 / DMP_SAMPLE_RATE); tmp[0] = (unsigned char)(dmp_time >> 8); tmp[1] = (unsigned char)(dmp_time & 0xFF); return mpu_write_mem(D_1_218, 2, tmp); } /** * @brief Set shake rejection threshold. * If the DMP detects a gyro sample larger than @e thresh, taps are rejected. * @param[in] sf Gyro scale factor. * @param[in] thresh Gyro threshold in dps. * @return 0 if successful. */ int dmp_set_shake_reject_thresh(long sf, unsigned short thresh) { unsigned char tmp[4]; long thresh_scaled = sf / 1000 * thresh; tmp[0] = (unsigned char)(((long)thresh_scaled >> 24) & 0xFF); tmp[1] = (unsigned char)(((long)thresh_scaled >> 16) & 0xFF); tmp[2] = (unsigned char)(((long)thresh_scaled >> 8) & 0xFF); tmp[3] = (unsigned char)((long)thresh_scaled & 0xFF); return mpu_write_mem(D_1_92, 4, tmp); } /** * @brief Set shake rejection time. * Sets the length of time that the gyro must be outside of the threshold set * by @e gyro_set_shake_reject_thresh before taps are rejected. A mandatory * 60 ms is added to this parameter. * @param[in] time Time in milliseconds. * @return 0 if successful. */ int dmp_set_shake_reject_time(unsigned short time) { unsigned char tmp[2]; time /= (1000 / DMP_SAMPLE_RATE); tmp[0] = time >> 8; tmp[1] = time & 0xFF; return mpu_write_mem(D_1_90,2,tmp); } /** * @brief Set shake rejection timeout. * Sets the length of time after a shake rejection that the gyro must stay * inside of the threshold before taps can be detected again. A mandatory * 60 ms is added to this parameter. * @param[in] time Time in milliseconds. * @return 0 if successful. */ int dmp_set_shake_reject_timeout(unsigned short time) { unsigned char tmp[2]; time /= (1000 / DMP_SAMPLE_RATE); tmp[0] = time >> 8; tmp[1] = time & 0xFF; return mpu_write_mem(D_1_88,2,tmp); } /** * @brief Get current step count. * @param[out] count Number of steps detected. * @return 0 if successful. */ int dmp_get_pedometer_step_count(unsigned long *count) { unsigned char tmp[4]; if (!count) return -1; if (mpu_read_mem(D_PEDSTD_STEPCTR, 4, tmp)) return -1; count[0] = ((unsigned long)tmp[0] << 24) | ((unsigned long)tmp[1] << 16) | ((unsigned long)tmp[2] << 8) | tmp[3]; return 0; } /** * @brief Overwrite current step count. * WARNING: This function writes to DMP memory and could potentially encounter * a race condition if called while the pedometer is enabled. * @param[in] count New step count. * @return 0 if successful. */ int dmp_set_pedometer_step_count(unsigned long count) { unsigned char tmp[4]; tmp[0] = (unsigned char)((count >> 24) & 0xFF); tmp[1] = (unsigned char)((count >> 16) & 0xFF); tmp[2] = (unsigned char)((count >> 8) & 0xFF); tmp[3] = (unsigned char)(count & 0xFF); return mpu_write_mem(D_PEDSTD_STEPCTR, 4, tmp); } /** * @brief Get duration of walking time. * @param[in] time Walk time in milliseconds. * @return 0 if successful. */ int dmp_get_pedometer_walk_time(unsigned long *time) { unsigned char tmp[4]; if (!time) return -1; if (mpu_read_mem(D_PEDSTD_TIMECTR, 4, tmp)) return -1; time[0] = (((unsigned long)tmp[0] << 24) | ((unsigned long)tmp[1] << 16) | ((unsigned long)tmp[2] << 8) | tmp[3]) * 20; return 0; } /** * @brief Overwrite current walk time. * WARNING: This function writes to DMP memory and could potentially encounter * a race condition if called while the pedometer is enabled. * @param[in] time New walk time in milliseconds. */ int dmp_set_pedometer_walk_time(unsigned long time) { unsigned char tmp[4]; time /= 20; tmp[0] = (unsigned char)((time >> 24) & 0xFF); tmp[1] = (unsigned char)((time >> 16) & 0xFF); tmp[2] = (unsigned char)((time >> 8) & 0xFF); tmp[3] = (unsigned char)(time & 0xFF); return mpu_write_mem(D_PEDSTD_TIMECTR, 4, tmp); } /** * @brief Enable DMP features. * The following \#define's are used in the input mask: * \n DMP_FEATURE_TAP * \n DMP_FEATURE_ANDROID_ORIENT * \n DMP_FEATURE_LP_QUAT * \n DMP_FEATURE_6X_LP_QUAT * \n DMP_FEATURE_GYRO_CAL * \n DMP_FEATURE_SEND_RAW_ACCEL * \n DMP_FEATURE_SEND_RAW_GYRO * \n NOTE: DMP_FEATURE_LP_QUAT and DMP_FEATURE_6X_LP_QUAT are mutually * exclusive. * \n NOTE: DMP_FEATURE_SEND_RAW_GYRO and DMP_FEATURE_SEND_CAL_GYRO are also * mutually exclusive. * @param[in] mask Mask of features to enable. * @return 0 if successful. */ int dmp_enable_feature(unsigned short mask) { unsigned char tmp[10]; /* TODO: All of these settings can probably be integrated into the default * DMP image. */ /* Set integration scale factor. */ tmp[0] = (unsigned char)((GYRO_SF >> 24) & 0xFF); tmp[1] = (unsigned char)((GYRO_SF >> 16) & 0xFF); tmp[2] = (unsigned char)((GYRO_SF >> 8) & 0xFF); tmp[3] = (unsigned char)(GYRO_SF & 0xFF); mpu_write_mem(D_0_104, 4, tmp); /* Send sensor data to the FIFO. */ tmp[0] = 0xA3; if (mask & DMP_FEATURE_SEND_RAW_ACCEL) { tmp[1] = 0xC0; tmp[2] = 0xC8; tmp[3] = 0xC2; } else { tmp[1] = 0xA3; tmp[2] = 0xA3; tmp[3] = 0xA3; } if (mask & DMP_FEATURE_SEND_ANY_GYRO) { tmp[4] = 0xC4; tmp[5] = 0xCC; tmp[6] = 0xC6; } else { tmp[4] = 0xA3; tmp[5] = 0xA3; tmp[6] = 0xA3; } tmp[7] = 0xA3; tmp[8] = 0xA3; tmp[9] = 0xA3; mpu_write_mem(CFG_15,10,tmp); /* Send gesture data to the FIFO. */ if (mask & (DMP_FEATURE_TAP | DMP_FEATURE_ANDROID_ORIENT)) tmp[0] = DINA20; else tmp[0] = 0xD8; mpu_write_mem(CFG_27,1,tmp); if (mask & DMP_FEATURE_GYRO_CAL) dmp_enable_gyro_cal(1); else dmp_enable_gyro_cal(0); if (mask & DMP_FEATURE_SEND_ANY_GYRO) { if (mask & DMP_FEATURE_SEND_CAL_GYRO) { tmp[0] = 0xB2; tmp[1] = 0x8B; tmp[2] = 0xB6; tmp[3] = 0x9B; } else { tmp[0] = DINAC0; tmp[1] = DINA80; tmp[2] = DINAC2; tmp[3] = DINA90; } mpu_write_mem(CFG_GYRO_RAW_DATA, 4, tmp); } if (mask & DMP_FEATURE_TAP) { /* Enable tap. */ tmp[0] = 0xF8; mpu_write_mem(CFG_20, 1, tmp); dmp_set_tap_thresh(TAP_XYZ, 250); dmp_set_tap_axes(TAP_XYZ); dmp_set_tap_count(1); dmp_set_tap_time(100); dmp_set_tap_time_multi(500); dmp_set_shake_reject_thresh(GYRO_SF, 200); dmp_set_shake_reject_time(40); dmp_set_shake_reject_timeout(10); } else { tmp[0] = 0xD8; mpu_write_mem(CFG_20, 1, tmp); } if (mask & DMP_FEATURE_ANDROID_ORIENT) { tmp[0] = 0xD9; } else tmp[0] = 0xD8; mpu_write_mem(CFG_ANDROID_ORIENT_INT, 1, tmp); if (mask & DMP_FEATURE_LP_QUAT) dmp_enable_lp_quat(1); else dmp_enable_lp_quat(0); if (mask & DMP_FEATURE_6X_LP_QUAT) dmp_enable_6x_lp_quat(1); else dmp_enable_6x_lp_quat(0); /* Pedometer is always enabled. */ dmp.feature_mask = mask | DMP_FEATURE_PEDOMETER; mpu_reset_fifo(); dmp.packet_length = 0; if (mask & DMP_FEATURE_SEND_RAW_ACCEL) dmp.packet_length += 6; if (mask & DMP_FEATURE_SEND_ANY_GYRO) dmp.packet_length += 6; if (mask & (DMP_FEATURE_LP_QUAT | DMP_FEATURE_6X_LP_QUAT)) dmp.packet_length += 16; if (mask & (DMP_FEATURE_TAP | DMP_FEATURE_ANDROID_ORIENT)) dmp.packet_length += 4; return 0; } /** * @brief Get list of currently enabled DMP features. * @param[out] Mask of enabled features. * @return 0 if successful. */ int dmp_get_enabled_features(unsigned short *mask) { mask[0] = dmp.feature_mask; return 0; } /** * @brief Calibrate the gyro data in the DMP. * After eight seconds of no motion, the DMP will compute gyro biases and * subtract them from the quaternion output. If @e dmp_enable_feature is * called with @e DMP_FEATURE_SEND_CAL_GYRO, the biases will also be * subtracted from the gyro output. * @param[in] enable 1 to enable gyro calibration. * @return 0 if successful. */ int dmp_enable_gyro_cal(unsigned char enable) { if (enable) { unsigned char regs[9] = {0xb8, 0xaa, 0xb3, 0x8d, 0xb4, 0x98, 0x0d, 0x35, 0x5d}; return mpu_write_mem(CFG_MOTION_BIAS, 9, regs); } else { unsigned char regs[9] = {0xb8, 0xaa, 0xaa, 0xaa, 0xb0, 0x88, 0xc3, 0xc5, 0xc7}; return mpu_write_mem(CFG_MOTION_BIAS, 9, regs); } } /** * @brief Generate 3-axis quaternions from the DMP. * In this driver, the 3-axis and 6-axis DMP quaternion features are mutually * exclusive. * @param[in] enable 1 to enable 3-axis quaternion. * @return 0 if successful. */ int dmp_enable_lp_quat(unsigned char enable) { unsigned char regs[4]; if (enable) { regs[0] = DINBC0; regs[1] = DINBC2; regs[2] = DINBC4; regs[3] = DINBC6; } else memset(regs, 0x8B, 4); mpu_write_mem(CFG_LP_QUAT, 4, regs); return mpu_reset_fifo(); } /** * @brief Generate 6-axis quaternions from the DMP. * In this driver, the 3-axis and 6-axis DMP quaternion features are mutually * exclusive. * @param[in] enable 1 to enable 6-axis quaternion. * @return 0 if successful. */ int dmp_enable_6x_lp_quat(unsigned char enable) { unsigned char regs[4]; if (enable) { regs[0] = DINA20; regs[1] = DINA28; regs[2] = DINA30; regs[3] = DINA38; } else memset(regs, 0xA3, 4); mpu_write_mem(CFG_8, 4, regs); return mpu_reset_fifo(); } /** * @brief Decode the four-byte gesture data and execute any callbacks. * @param[in] gesture Gesture data from DMP packet. * @return 0 if successful. */ static int decode_gesture(unsigned char *gesture) { unsigned char tap, android_orient; android_orient = gesture[3] & 0xC0; tap = 0x3F & gesture[3]; if (gesture[1] & INT_SRC_TAP) { unsigned char direction, count; direction = tap >> 3; count = (tap % 8) + 1; if (dmp.tap_cb) dmp.tap_cb(direction, count); } if (gesture[1] & INT_SRC_ANDROID_ORIENT) { if (dmp.android_orient_cb) dmp.android_orient_cb(android_orient >> 6); } return 0; } /** * @brief Specify when a DMP interrupt should occur. * A DMP interrupt can be configured to trigger on either of the two * conditions below: * \n a. One FIFO period has elapsed (set by @e mpu_set_sample_rate). * \n b. A tap event has been detected. * @param[in] mode DMP_INT_GESTURE or DMP_INT_CONTINUOUS. * @return 0 if successful. */ int dmp_set_interrupt_mode(unsigned char mode) { const unsigned char regs_continuous[11] = {0xd8, 0xb1, 0xb9, 0xf3, 0x8b, 0xa3, 0x91, 0xb6, 0x09, 0xb4, 0xd9}; const unsigned char regs_gesture[11] = {0xda, 0xb1, 0xb9, 0xf3, 0x8b, 0xa3, 0x91, 0xb6, 0xda, 0xb4, 0xda}; switch (mode) { case DMP_INT_CONTINUOUS: return mpu_write_mem(CFG_FIFO_ON_EVENT, 11, (unsigned char*)regs_continuous); case DMP_INT_GESTURE: return mpu_write_mem(CFG_FIFO_ON_EVENT, 11, (unsigned char*)regs_gesture); default: return -1; } } /** * @brief Get one packet from the FIFO. * If @e sensors does not contain a particular sensor, disregard the data * returned to that pointer. * \n @e sensors can contain a combination of the following flags: * \n INV_X_GYRO, INV_Y_GYRO, INV_Z_GYRO * \n INV_XYZ_GYRO * \n INV_XYZ_ACCEL * \n INV_WXYZ_QUAT * \n If the FIFO has no new data, @e sensors will be zero. * \n If the FIFO is disabled, @e sensors will be zero and this function will * return a non-zero error code. * @param[out] gyro Gyro data in hardware units. * @param[out] accel Accel data in hardware units. * @param[out] quat 3-axis quaternion data in hardware units. * @param[out] timestamp Timestamp in milliseconds. * @param[out] sensors Mask of sensors read from FIFO. * @param[out] more Number of remaining packets. * @return 0 if successful. */ int dmp_read_fifo(short *gyro, short *accel, long *quat, //unsigned long *timestamp, short *sensors, unsigned char *more) { unsigned char fifo_data[MAX_PACKET_LENGTH]; unsigned char ii = 0; /* TODO: sensors[0] only changes when dmp_enable_feature is called. We can * cache this value and save some cycles. */ sensors[0] = 0; /* Get a packet. */ if (mpu_read_fifo_stream(dmp.packet_length, fifo_data, more)) return -1; /* Parse DMP packet. */ if (dmp.feature_mask & (DMP_FEATURE_LP_QUAT | DMP_FEATURE_6X_LP_QUAT)) { #ifdef FIFO_CORRUPTION_CHECK long quat_q14[4], quat_mag_sq; #endif quat[0] = ((long)fifo_data[0] << 24) | ((long)fifo_data[1] << 16) | ((long)fifo_data[2] << 8) | fifo_data[3]; quat[1] = ((long)fifo_data[4] << 24) | ((long)fifo_data[5] << 16) | ((long)fifo_data[6] << 8) | fifo_data[7]; quat[2] = ((long)fifo_data[8] << 24) | ((long)fifo_data[9] << 16) | ((long)fifo_data[10] << 8) | fifo_data[11]; quat[3] = ((long)fifo_data[12] << 24) | ((long)fifo_data[13] << 16) | ((long)fifo_data[14] << 8) | fifo_data[15]; ii += 16; #ifdef FIFO_CORRUPTION_CHECK /* We can detect a corrupted FIFO by monitoring the quaternion data and * ensuring that the magnitude is always normalized to one. This * shouldn't happen in normal operation, but if an I2C error occurs, * the FIFO reads might become misaligned. * * Let's start by scaling down the quaternion data to avoid long long * math. */ quat_q14[0] = quat[0] >> 16; quat_q14[1] = quat[1] >> 16; quat_q14[2] = quat[2] >> 16; quat_q14[3] = quat[3] >> 16; quat_mag_sq = quat_q14[0] * quat_q14[0] + quat_q14[1] * quat_q14[1] + quat_q14[2] * quat_q14[2] + quat_q14[3] * quat_q14[3]; if ((quat_mag_sq < QUAT_MAG_SQ_MIN) || (quat_mag_sq > QUAT_MAG_SQ_MAX)) { /* Quaternion is outside of the acceptable threshold. */ mpu_reset_fifo(); sensors[0] = 0; return -1; } sensors[0] |= INV_WXYZ_QUAT; #endif } if (dmp.feature_mask & DMP_FEATURE_SEND_RAW_ACCEL) { accel[0] = ((short)fifo_data[ii+0] << 8) | fifo_data[ii+1]; accel[1] = ((short)fifo_data[ii+2] << 8) | fifo_data[ii+3]; accel[2] = ((short)fifo_data[ii+4] << 8) | fifo_data[ii+5]; ii += 6; sensors[0] |= INV_XYZ_ACCEL; } if (dmp.feature_mask & DMP_FEATURE_SEND_ANY_GYRO) { gyro[0] = ((short)fifo_data[ii+0] << 8) | fifo_data[ii+1]; gyro[1] = ((short)fifo_data[ii+2] << 8) | fifo_data[ii+3]; gyro[2] = ((short)fifo_data[ii+4] << 8) | fifo_data[ii+5]; ii += 6; sensors[0] |= INV_XYZ_GYRO; } /* Gesture data is at the end of the DMP packet. Parse it and call * the gesture callbacks (if registered). */ if (dmp.feature_mask & (DMP_FEATURE_TAP | DMP_FEATURE_ANDROID_ORIENT)) decode_gesture(fifo_data + ii); return 0; } /** * @brief Register a function to be executed on a tap event. * The tap direction is represented by one of the following: * \n TAP_X_UP * \n TAP_X_DOWN * \n TAP_Y_UP * \n TAP_Y_DOWN * \n TAP_Z_UP * \n TAP_Z_DOWN * @param[in] func Callback function. * @return 0 if successful. */ int dmp_register_tap_cb(void (*func)(unsigned char, unsigned char)) { dmp.tap_cb = func; return 0; } /** * @brief Register a function to be executed on a android orientation event. * @param[in] func Callback function. * @return 0 if successful. */ int dmp_register_android_orient_cb(void (*func)(unsigned char)) { dmp.android_orient_cb = func; return 0; } /** * @} */
3a66507a4e6621bdc7a9b7ccaaf027faf667262b
466f4beceb19a0906fa9bdd1523755d911f79c93
/I2C.h
2382d4372d2d260a9c5c0f516cc5ce0b60a48cbf
[]
no_license
paureverte/TFG-Autopuncher
b74a6b7473f6703878cee3de20122bfc459e89b0
9d8f45be866915ea492139ff486276b267219519
refs/heads/master
2020-05-29T09:30:35.077945
2019-05-28T16:37:34
2019-05-28T16:37:34
189,065,943
0
0
null
null
null
null
UTF-8
C
false
false
1,524
h
/******************************************************************** * FileName: I2C.h * * Dependencies: * * Processor: PIC32MX460F512L * * Company: Medyp S.L. * * * ******************************************************************** * File Description: * * * * - Llibreria del I2C.c * * * * Change History: Versió 0.0 * * * * Name Date Changes * * ----- ----- -------- * * P.Reverté 21/01/09 Versió inicial. * * * *******************************************************************/ #ifndef I2C_H #define I2C_H typedef enum { I2C_PERIPHERAL_IS_BUSY = 0, I2C_PERIPHERAL_IS_READY, I2C_PERIPHERAL_NULL_BUFFER, I2C_PERIPHERAL_ASKED_FOR_0_DATA, I2C_PERIPHERAL_MAX_DATA, I2C_TRANSACTION_QUEUED, I2C_QUEUE_FULL, }i2c_response_t; typedef void (*i2c_callback_t)(void); void I2C_Tasks(void); i2c_response_t I2C_Transmit(unsigned char number_of_bytes_tx, unsigned long slave_address, unsigned char * tx_buffer, i2c_callback_t callback); i2c_response_t I2C_Receive(unsigned char number_of_bytes_rx, unsigned long slave_address, unsigned char * rx_buffer, i2c_callback_t callback); i2c_response_t I2C_TransmitReceive(unsigned char number_of_bytes_tx, unsigned char number_of_bytes_rx, unsigned long slave_address, unsigned char * tx_buffer, unsigned char * rx_buffer, i2c_callback_t callback); #endif /* I2C_H */
2afb28a5f0e171151b4b47bcec450f16afb9128b
202bbc35b672ebda80f7295a7793995d5d877206
/ScubaSteve/Builds/IOS/Classes/Native/mscorlib_System_Collections_Generic_EqualityComparer_1_gen_54MethodDeclarations.h
ac319883436fea2797050dde10132f4685b80a3c
[]
no_license
gohun04/ScubaSteve
c2388d677c77b374fccb62c0e8cce4740d06ca50
2428e54e97238f48f67652a8dd982e1f6821e7e0
refs/heads/master
2021-01-01T16:00:07.055501
2015-04-25T09:07:26
2015-04-25T09:07:26
34,557,070
0
0
null
null
null
null
UTF-8
C
false
false
1,664
h
#pragma once // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_t4670; // System.Object struct Object_t; // System.Void System.Collections.Generic.EqualityComparer`1<System.Int64>::.ctor() void EqualityComparer_1__ctor_m26617 (EqualityComparer_1_t4670 * __this, MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.EqualityComparer`1<System.Int64>::.cctor() void EqualityComparer_1__cctor_m26618 (Object_t * __this/* static, unused */, MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::System.Collections.IEqualityComparer.GetHashCode(System.Object) int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m26619 (EqualityComparer_1_t4670 * __this, Object_t * ___obj, MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m26620 (EqualityComparer_1_t4670 * __this, Object_t * ___x, Object_t * ___y, MethodInfo* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::GetHashCode(T) // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int64>::get_Default() EqualityComparer_1_t4670 * EqualityComparer_1_get_Default_m26621 (Object_t * __this/* static, unused */, MethodInfo* method) IL2CPP_METHOD_ATTR;
85ae05078fe007ca71cb7e53f3bec52f56d58fc6
f7ee1574d98f69855c50fd12aba4a44a602820ba
/GCode.h
4bab94123c93d775ea6201fb12fbc486983680c0
[]
no_license
bearda/Luteagraph
a245b390a6480054fd4771285dd572c2b25f3f53
dc7b514d8b1618226ec6b45c42668fbcd096e7bb
refs/heads/master
2021-04-22T12:27:10.491530
2016-12-09T17:32:17
2016-12-09T17:32:17
75,489,367
0
0
null
null
null
null
UTF-8
C
false
false
1,993
h
/* ======================================== * * Copyright YOUR COMPANY, THE YEAR * All Rights Reserved * UNPUBLISHED, LICENSED SOFTWARE. * * CONFIDENTIAL AND PROPRIETARY INFORMATION * WHICH IS THE PROPERTY OF your company. * * ======================================== This header file contains the necessary functions for processing gcode. */ #ifndef GCODE_HEADER_H #define GCODE_HEADER_H #include <project.h> //saveGCodeToFlash //args: // const char* buffer, The buffer that you want to save // uint32 length, the number of bytes that you want to save //return: // The number of bytes saved int saveGCodeToFlash(const char *buffer, uint32 length); //Stop storing the current gcode. void eraseGCodeFlash(); //initialize GCode. Specifically, it sets the pointer to the gcode buffer. void initGCode(); //will look into flash and run the next gcode comand. //return: // The number of pulses queued by the command. // returns the target coordinates by address // -1 if there are no more gcode commands. int runNextGCodeCommand( float *tar_x, float *tar_y, float *tar_z); //an enum of recognized gcodes enum { GCODE_UNKNOWN = 0, GCODE_00, GCODE_01, NO_GCODE }; //converts milimeters to pulses //returns the number of pulses it would take to move mm milimeters, rounded down. int mm_to_pulses(float mm); //read a line of gcode as a null terminated string. //returns the string length. //-1 in case of failure. int readGcodeLine(char *GCode, unsigned int *GCodeLoc, int GCodeLen, char *line, uint8 lineLength); int readGCodeWord(char *line, uint8 *offset, char *word, uint8 wordLength); //decode the gcode. returns one of the gcode enum values. int deGCode(char * command, float * X_G, float * Y_G, float * Z_G); //queue the pulses. returns the number of pulses queued, negative for error. //if any of the float values are negative, that motor doesn't move. int executeGCode(char command, float X_G, float Y_G, float Z_G); #endif /* [] END OF FILE */
04be69e68e177cd7ee8f8f3002bbc2f35a72c7b4
fe2cc4c2f1e90794b58ae893c18f69ac943ebd5e
/is_power_of_2/is_power_of_2withmain.c
55746a40ba9ebd21c7acf74c40658d031874f205
[]
no_license
ssnelgrove314/ExamPrep
fd55f7327bd15f61a020d868609b5c7df5814bcc
bbf840fdc11040827c02f27a4627f47ab2b1a9d7
refs/heads/master
2021-04-03T06:05:44.479168
2020-08-01T23:55:08
2020-08-01T23:55:08
124,624,782
0
0
null
null
null
null
UTF-8
C
false
false
261
c
#include <stdio.h> int is_power_of_2(unsigned int n) { while (n > 1) { if (n % 2 != 0) return (0); n /= 2; } return (1); } int main(void) { printf("%d\n", is_power_of_2(8)); printf("%d\n", is_power_of_2(16)); printf("%d\n", is_power_of_2(17)); }
5a80a7c830ea12e3e0762c0fc677986509be3ebf
82c36629e1ffe8d769cc8bb5d7ee4cc23cd4e5dc
/src/attack.c
5f4bfe550f1e1474d34d33ff0827b8ab6ecf959d
[]
no_license
naorose/ZONA-Chess-Game-Engine
e30687a09a14e44f0faac0c7b23a02f3412564da
ad5e8fc4888d9e8e3a32178ef48160bda688d9c9
refs/heads/master
2022-08-25T02:38:17.191443
2020-04-02T21:54:34
2020-04-02T21:54:34
null
0
0
null
null
null
null
UTF-8
C
false
false
3,061
c
#include "attack.h" const int bishop_directions[4] = { -9, -11, 11, 9 }; // diagonal const int king_directions[8] = { -1, -10,1, 10, -9, -11, 11, 9 }; // can move 1 square in any direction const int knight_directions[8] = { -8, -19,-21, -12, 8, 19, 21, 12 }; // 2 forward 1 to side, 1 forward 2 to side (L) const int rook_directions[4] = { -1, -10,1, 10 }; int square_in_danger(const int square, const int turn, const BOARD_STRUCTURE *board) { int direction; int piece; int temporary_square; ASSERT(is_square_on_board(square)); // checks if square is on board ASSERT(is_turn_valid(turn)); // checks if the turn is either W or B ASSERT(run_board_check(board)); // ensures board has been properly initialised // Pawns if (turn == W) { // if attacking side is white if (board->board_squares[square - PAWN_DIAGONAL_ATTACK_1] == whitePawn || board->board_squares[square - PAWN_DIAGONAL_ATTACK_2] == whitePawn) { return T; } } else { // if attacking side is black if (board->board_squares[square + PAWN_DIAGONAL_ATTACK_1] == blackPawn || board->board_squares[square + PAWN_DIAGONAL_ATTACK_2] == blackPawn) { return T; } } //Knights can move in an L shape for (int i = 0; i < KNIGHT_ATTACK_1; ++i) { piece = board->board_squares[square + knight_directions[i]]; if (piece != OUT_OF_BOUNDS && is_piece_knight[piece] && piece_colour[piece] == turn) { return T; } } // Rooks and Queens (Rooks can move H and V. Queens can move H, V and D for(int i = 0; i < 4; ++i) { direction = rook_directions[i]; temporary_square = square + direction; piece = board->board_squares[temporary_square]; while(piece != OUT_OF_BOUNDS) { if(piece != NULL_LOCATION) { if(is_piece_rook_queen[piece] && piece_colour[piece] == turn) { return T; } break; } temporary_square += direction; piece = board->board_squares[temporary_square]; } } // Bishops and Queens (Bishops can move D, Queen can move H, V, D) for(int i = 0; i < 4; ++i) { direction = bishop_directions[i]; temporary_square = square + direction; piece = board->board_squares[temporary_square]; while(piece != OUT_OF_BOUNDS) { if(piece != NULL_LOCATION) { if(is_piece_bishop_queen[piece] && piece_colour[piece] == turn) { return T; } break; } temporary_square += direction; piece = board->board_squares[temporary_square]; } } // Kings can move H, V, D but only one distance for(int i = 0; i < 8; ++i) { piece = board->board_squares[square + king_directions[i]]; if(piece != OUT_OF_BOUNDS && is_piece_king[piece] && piece_colour[piece]==turn) { return T; } } return F; }
0b2a96f4437274dbef813f87b049982590e33da0
cf519abe0e9e1f7238e5c44ef6ccfe133f259406
/d05/ex18/ft_strlcat.c
5ee1cf450b73f858fcc60da8deeece8c99441aca
[]
no_license
CloeLegoube/piscine42
7ad2a8b38ba8afcd91d2aa102d85177554147a94
1cc603bc7903cbcf4657f5a5255161fa86f8df41
refs/heads/master
2020-06-30T04:03:57.809207
2016-11-21T18:22:32
2016-11-21T18:22:32
74,389,806
0
0
null
null
null
null
UTF-8
C
false
false
1,400
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlcat.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: clegoube <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/15 07:24:46 by clegoube #+# #+# */ /* Updated: 2016/08/15 07:24:48 by clegoube ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strlen(char *str) { int i; i = 0; while (str[i]) i++; return (i); } unsigned int ft_strlcat(char *dest, char *src, unsigned int size) { unsigned int j; unsigned int size_src; unsigned int size_dest; size_dest = ft_strlen(dest); size_src = ft_strlen(src); if (size_dest > size) size_dest = size; j = -1; if (size_dest < size - 1) { while (++j + size_dest < size - 1 && src[j]) dest[size_dest + j] = src[j]; dest[size_dest + j] = '\0'; } return (size_dest + size_src); }
fd575d9e94ee1cd5c06836f24e451d4980c8c6b1
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/net/sunrpc/extr_rpc_pipe.c_rpc_destroy_pipe_data.c
23c77da22501730abe9e32f516d487a95435b403
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
539
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ /* Type definitions */ struct rpc_pipe {int dummy; } ; /* Variables and functions */ int /*<<< orphan*/ kfree (struct rpc_pipe*) ; void rpc_destroy_pipe_data(struct rpc_pipe *pipe) { kfree(pipe); }
43195d396e34c188d76f84cab65c980cde95963f
b6456c2e6182da693fbbc7016354710894748694
/Library/src/main/jni/com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils.h
e01dd517d5d305f62341b6717d5902c29d173ff7
[]
no_license
CimZzz/BBB3
3eeb597e4f4c0f6819958708baa8982fe51d0d53
fc35a37c6c66ed3d7cebe988f0563d2a0aea7071
refs/heads/master
2020-04-25T10:07:37.802897
2019-02-22T06:17:05
2019-02-22T06:17:05
172,698,518
0
0
null
null
null
null
UTF-8
C
false
true
909
h
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils */ #ifndef _Included_com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils #define _Included_com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils #ifdef __cplusplus extern "C" { #endif /* * Class: com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils * Method: encode * Signature: (Ljava/lang/String;[B)[B */ JNIEXPORT jbyteArray JNICALL Java_com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils_encode (JNIEnv *, jclass, jstring, jbyteArray); /* * Class: com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils * Method: decode * Signature: ([B)[B */ JNIEXPORT jbyteArray JNICALL Java_com_gogoh5_apps_quanmaomao_library_toolkits_EncryptUtils_decode (JNIEnv *, jclass, jbyteArray); #ifdef __cplusplus } #endif #endif
c8b16e277282686fe548bb32416700020c345dde
376e1818d427b5e4d32fa6dd6c7b71e9fd88afdb
/ham/yaesu/patches/patch-stat__out.c
fd032b91a19b3b37393fc07cd9c3ea139b8b8fa6
[]
no_license
NetBSD/pkgsrc
a0732c023519650ef821ab89c23ab6ab59e25bdb
d042034ec4896cc5b47ed6f2e5b8802d9bc5c556
refs/heads/trunk
2023-09-01T07:40:12.138283
2023-09-01T05:25:19
2023-09-01T05:25:19
88,439,572
321
138
null
2023-07-12T22:34:14
2017-04-16T20:04:15
null
UTF-8
C
false
false
3,342
c
$NetBSD: patch-stat__out.c,v 1.1 2012/10/24 15:38:05 joerg Exp $ --- stat_out.c.orig 2012-10-21 10:06:08.000000000 +0000 +++ stat_out.c @@ -1,20 +1,8 @@ -extern main(); -extern data_array[]; -extern data_return_param; -extern flag_data_return[]; -extern memory_number; -extern mode1; -extern mode2; -extern mode3; -extern narrow1; -extern narrow2; -extern narrow3; -extern narrow4; -extern narrow5; -extern narrow6; -extern white_space; +#include "yaesu.h" -stat_out(int fdSer, int current_freq_mode) { +void find_mode(int, int); + +void stat_out(int fdSer, int current_freq_mode) { /* * This function is intended to be called via some other function * that needs some kind of output. current_freq_mode is the @@ -55,7 +43,7 @@ output_freq: freq_fl = freq; freq_fl = freq_fl/100000; find_mode(data_array[7], data_array[9]); - printf("\nThe current VFO frequency in VFO A is %.5f MHz, operating in %c%c%c%c%c%c%c%c%c%c%c.\n", freq_fl, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); + printf("\nThe current VFO frequency in VFO A is %.5f MHz, operating in %c%c%c%c%c%c%c%c%c%c.\n", freq_fl, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); /* printf("\nThe current VFO frequency in VFO A is %d.%d%d MHz, operating in %c%c%c%c%c%c%c%c%c%c%c.\n", freq_MHz, freq_kHz, freq_htHz, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); */ } if (vfo_a_b_op == 1 && vfo_b_op == 1 && mem_op == 0) { @@ -71,7 +59,7 @@ output_freq: freq_fl = freq; freq_fl = freq_fl/100000; find_mode(data_array[16], data_array[18]); - printf("\nThe current VFO frequency in VFO B is %.5f MHz, operating in %c%c%c%c%c%c%c%c%c%c%c.\n", freq_fl, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); + printf("\nThe current VFO frequency in VFO B is %.5f MHz, operating in %c%c%c%c%c%c%c%c%c%c.\n", freq_fl, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); /* printf("\nThe current VFO frequency in VFO B is %d.%d%d MHz, operating in %c%c%c%c%c%c%c%c%c%c%c.\n", freq_MHz, freq_kHz, freq_htHz, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); */ } @@ -92,12 +80,12 @@ output_freq: freq_fl = freq; freq_fl = freq_fl/100000; find_mode(data_array[16], data_array[18]); - printf("\nThe current memory frequency displayed is %.5f MHz, operating in %c%c%c%c%c%c%c%c%c%c%c.\n", freq_fl, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); + printf("\nThe current memory frequency displayed is %.5f MHz, operating in %c%c%c%c%c%c%c%c%c%c.\n", freq_fl, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); /* printf("\nThe current memory frequency displayed is %d.%d%d MHz, operating in %c%c%c%c%c%c%c%c%c%c.\n", freq_MHz, freq_kHz, freq_htHz, mode1, mode2, mode3, white_space, narrow1, narrow2, narrow3, narrow4, narrow5, narrow6); */ } } -find_mode(data_array_n, data_array_w) { +void find_mode(int data_array_n, int data_array_w) { int am_mode, cw_mode, three; am_mode = (data_array_w >> 6) & 0x01;
dfab2bea85148abac82b6a36f798832f196c330b
00936f1490fb98cbbc45b6293f7ac0d1cfaaf463
/source/r_lpc_rx/r_lpc_rx_vx.xx/r_lpc_rx/src/targets/rx660/r_lpc_rx660.c
4ebd6ad94fb129f0d7ba2affcff5a7f5468fe401
[ "MIT", "DOC" ]
permissive
renesas/rx-driver-package
a5395424cc3e7574103aa7f075f70021e0e7384e
d6679aca8839c62370d36dfc2b7255551e3c4b46
refs/heads/master
2023-09-04T22:12:06.725331
2023-08-28T02:17:34
2023-08-28T02:17:34
255,783,844
11
5
MIT
2023-07-19T00:07:13
2020-04-15T02:32:14
C
UTF-8
C
false
false
17,200
c
/*********************************************************************************************************************** * DISCLAIMER * This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. No * other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all * applicable laws, including copyright laws. * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED. TO THE MAXIMUM * EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES * SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS * SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability of * this software. By using this software, you agree to the additional terms and conditions found by accessing the * following link: * http://www.renesas.com/disclaimer * * Copyright (C) 2021 Renesas Electronics Corporation. All rights reserved. ***********************************************************************************************************************/ /********************************************************************************************************************* * File Name : r_lpc_rx660.c * Description : Implementation of the LPC module for the RX660 **********************************************************************************************************************/ /********************************************************************************************************************* * History : DD.MM.YYYY Version Description * : 31.12.2021 1.00 First Release **********************************************************************************************************************/ /********************************************************************************************************************* Includes <System Includes> , "Project Includes" **********************************************************************************************************************/ /* Includes board and MCU related header files. */ #include "platform.h" #if defined(BSP_MCU_RX660) /* Public interface header file for this package. */ #include "r_lpc_rx_if.h" #include "r_lpc_rx_private.h" #include "r_lpc_rx660_private.h" /******************************************************************************************************************** Macro definitions *********************************************************************************************************************/ /******************************************************************************************************************** Typedef definitions *********************************************************************************************************************/ /******************************************************************************************************************** Private global variables and functions *********************************************************************************************************************/ /* See cgc_init_local_data() for the initialization of these arrays */ #if (LPC_CFG_PARAM_CHECKING_ENABLE == 1) static lpc_err_t lpc_lowpower_activate_check (void); #endif /* LPC_CFG_PARAM_CHECKING_ENABLE */ /********************************************************************************************************************* * Function Name: lpc_low_power_mode_configure * Description : This function will configure the MCU for the specified Low Power Mode. In the Low Power Mode, * the CPU is turned OFF and peripherals may be on or off depending on the mode. The supported * low power modes are listed in the enum lpc_low_power_mode_t * Arguments : e_mode - Low Power Mode * LPC_LP_SLEEP * LPC_LP_ALL_MODULE_STOP * LPC_LP_SW_STANDBY * LPC_LP_DEEP_SW_STANDBY * * Return Value : LPC_SUCCESS - ********************************************************************************************************************/ lpc_err_t lpc_low_power_mode_configure (lpc_low_power_mode_t e_mode) { #if ((R_BSP_VERSION_MAJOR == 5) && (R_BSP_VERSION_MINOR >= 30)) || (R_BSP_VERSION_MAJOR >= 6) bsp_int_ctrl_t int_ctrl; #endif switch (e_mode) { case LPC_LP_SLEEP: R_BSP_RegisterProtectDisable(BSP_REG_PROTECT_LPC_CGC_SWR);// unlock clock control registers SYSTEM.SBYCR.BIT.SSBY = 0; // Move to Sleep on R_BSP_WAIT() #if ((R_BSP_VERSION_MAJOR == 5) && (R_BSP_VERSION_MINOR >= 30)) || (R_BSP_VERSION_MAJOR >= 6) R_BSP_InterruptControl(BSP_INT_SRC_EMPTY, BSP_INT_CMD_FIT_INTERRUPT_DISABLE, &int_ctrl); #endif SYSTEM.MSTPCRA.BIT.ACSE = 0; #if ((R_BSP_VERSION_MAJOR == 5) && (R_BSP_VERSION_MINOR >= 30)) || (R_BSP_VERSION_MAJOR >= 6) R_BSP_InterruptControl(BSP_INT_SRC_EMPTY, BSP_INT_CMD_FIT_INTERRUPT_ENABLE, &int_ctrl); #endif R_BSP_RegisterProtectEnable(BSP_REG_PROTECT_LPC_CGC_SWR); // lock clock control registers break; case LPC_LP_ALL_MODULE_STOP: R_BSP_RegisterProtectDisable(BSP_REG_PROTECT_LPC_CGC_SWR);// unlock clock control registers SYSTEM.SBYCR.BIT.SSBY = 0; // Move to All Module Stop on R_BSP_WAIT(). ACSE also needs to be set #if ((R_BSP_VERSION_MAJOR == 5) && (R_BSP_VERSION_MINOR >= 30)) || (R_BSP_VERSION_MAJOR >= 6) R_BSP_InterruptControl(BSP_INT_SRC_EMPTY, BSP_INT_CMD_FIT_INTERRUPT_DISABLE, &int_ctrl); #endif SYSTEM.MSTPCRA.BIT.ACSE = 1; SYSTEM.MSTPCRA.BIT.MSTPA24 = 1; SYSTEM.MSTPCRA.BIT.MSTPA27 = 1; SYSTEM.MSTPCRA.BIT.MSTPA29 = 1; #if ((R_BSP_VERSION_MAJOR == 5) && (R_BSP_VERSION_MINOR >= 30)) || (R_BSP_VERSION_MAJOR >= 6) R_BSP_InterruptControl(BSP_INT_SRC_EMPTY, BSP_INT_CMD_FIT_INTERRUPT_ENABLE, &int_ctrl); #endif R_BSP_RegisterProtectEnable(BSP_REG_PROTECT_LPC_CGC_SWR); // lock clock control registers break; case LPC_LP_SW_STANDBY: R_BSP_RegisterProtectDisable(BSP_REG_PROTECT_LPC_CGC_SWR); SYSTEM.SBYCR.BIT.SSBY = 1; // Move to Sw Stby on R_BSP_WAIT(); DPSBY also has to be modified SYSTEM.DPSBYCR.BIT.DPSBY = 0; R_BSP_RegisterProtectEnable(BSP_REG_PROTECT_LPC_CGC_SWR); break; case LPC_LP_DEEP_SW_STANDBY: R_BSP_RegisterProtectDisable(BSP_REG_PROTECT_LPC_CGC_SWR);// unlock clock control registers SYSTEM.SBYCR.BIT.SSBY = 1; // Move to Sw Stby on R_BSP_WAIT();DPSBY also has to be modified SYSTEM.DPSBYCR.BIT.DPSBY = 1; R_BSP_RegisterProtectEnable(BSP_REG_PROTECT_LPC_CGC_SWR); // lock clock control registers break; default: /* nothing here */ break; } return LPC_SUCCESS; } /********************************************************************************************************************* End of function lpc_low_power_mode_configure ********************************************************************************************************************/ /********************************************************************************************************************* * Function Name: lpc_lowpower_activate * Description : This function will activate the pre-configured low power mode. The R_BSP_WAIT() function re-enables * interrupts. * Arguments : void (*pcallback)(void* pdata)- * Call back function to configure any un-configured interrupt that can be used to wake up from the low * power mode. This can be a FIT_NO_FUNC if the interrupt(s) are already configured. * * Return Value : LPC_SUCCESS - Function will return only on waking up from low power mode. * LPC_ERR_OSC_STOP_ENABLED - * The Software Standby Mode cannot be activated if oscillation stop detection is enabled. * LPC_ERR_ILL_CLOCK_SOURCE - * The Sleep Mode Return Clock Switch is only supported if the clock source at the time of * entry to sleep mode is allowed clock. * LPC_ERR_ILLEGAL * Other than those above. ********************************************************************************************************************/ lpc_err_t lpc_lowpower_activate (lpc_callback_set_t pcallback) { #if (LPC_CFG_PARAM_CHECKING_ENABLE == 1) lpc_err_t err; err = lpc_lowpower_activate_check(); if (LPC_SUCCESS != err) { return err; } #endif R_BSP_InterruptsDisable(); /* Clear the I bit to disable interrupts */ if ((NULL != pcallback) && (FIT_NO_FUNC != pcallback)) /* If call-back is valid */ { pcallback(FIT_NO_PTR); /* Call call-back to configure wake-up interrupt source */ } else { R_BSP_NOP(); R_BSP_NOP(); R_BSP_NOP(); R_BSP_NOP(); R_BSP_NOP(); /* Read last written IO register to make sure it is complete */ R_BSP_NOP(); /* or wait for 4-5 cycles till any prior write is complete */ } R_BSP_WAIT(); /* Enter Low Power mode */ return LPC_SUCCESS; } /********************************************************************************************************************* End of function lpc_lowpower_activate ********************************************************************************************************************/ /********************************************************************************************************************* * Function Name: lpc_return_clock_switch * Description : This function will configure the return clock switching parameter that allows the clock source to * be switched on returning from Sleep Mode to either the HOCO or Main Clock. * Arguments : lpc_clock_switch_t e_clock_source - * Specify the clock source to switch to. * bool enable * Enable/disable the Return clock Source switching function. * Return Value : LPC_SUCCESS *********************************************************************************************************************/ lpc_err_t lpc_return_clock_switch (lpc_clock_switch_t e_clock_source, bool enable) { if (true == enable) { R_BSP_RegisterProtectDisable(BSP_REG_PROTECT_LPC_CGC_SWR); SYSTEM.RSTCKCR.BYTE = (uint8_t) ((LPC_CLOCK_SWITCH_ENABLE << 7) | e_clock_source); R_BSP_RegisterProtectEnable(BSP_REG_PROTECT_LPC_CGC_SWR); } else { R_BSP_RegisterProtectDisable(BSP_REG_PROTECT_LPC_CGC_SWR); SYSTEM.RSTCKCR.BYTE = LPC_CLOCK_SWITCH_DISABLE; R_BSP_RegisterProtectEnable(BSP_REG_PROTECT_LPC_CGC_SWR); } return LPC_SUCCESS; } /********************************************************************************************************************* End of function lpc_return_clock_switch ********************************************************************************************************************/ #if (LPC_CFG_PARAM_CHECKING_ENABLE == 1) /********************************************************************************************************************* * Function Name: lpc_lowpower_activate_check * Description : This function will check if low power activate can be executed. * Arguments : void * * Return Value : LPC_SUCCESS - * LPC_ERR_OSC_STOP_ENABLED - * The Software Standby Mode cannot be activated if oscillation stop detection is enabled. * LPC_ERR_ILL_CLOCK_SOURCE - * The Sleep Mode Return Clock Switch is only supported if the clock source at the time of * entry to sleep mode is the SubClock or LOCO. * If the return mode is Medium Speed Mode, then HOCO cannot be used as the return clock. * LPC_ERR_ILLEGAL * Other than those above. ********************************************************************************************************************/ static lpc_err_t lpc_lowpower_activate_check (void) { uint8_t rstckcr_rstcksel; if (0x1 == SYSTEM.SBYCR.BIT.SSBY) /* check if entering software standby or deep software standby */ { if (LPC_OSC_STOP_ENABLED == SYSTEM.OSTDCR.BIT.OSTDE) { return LPC_ERR_OSC_STOP_ENABLED; /* Cannot enter SW_Standby if Oscillation Stop is enabled */ } if ((0 == SYSTEM.MSTPCRA.BIT.MSTPA28) && ((1 == DTC.DTCST.BIT.DTCST) || (1 == DMAC.DMAST.BIT.DMST))) { return LPC_ERR_ILLEGAL; /* Cannot enter SW_Stanbay if DTC or DMAC is enabled */ } /* Check FENTRYC(b0) and FENTRYD(b7) */ if (0x0000 != (FLASH.FENTRYR.WORD & 0x0081)) { return LPC_ERR_ILLEGAL; /* Cannot enter SW_Stanbay if P/E mode entry */ } /* Check FLLCR1(b0) */ if (0x00 != (SYSTEM.FLLCR1.BYTE & 0x01)) { return LPC_ERR_ILLEGAL; /* Cannot enter SW_Stanbay if HOCO's FLL function entry */ } if (0x01 == SYSTEM.DPSBYCR.BIT.DPSBY) /* check if entering deep software standby */ { if (0x00000000 == (LPC_OFS0_REG_VALUE & 0x00000002)) /* IWDT auto start check */ { if (0x00000000 == (LPC_OFS0_REG_VALUE & 0x00004000)) { return LPC_ERR_ILLEGAL; /* Cannot enter DSW_Standby if IWDT auto start and IWDT count stop disable */ } } else { if (0 == IWDT.IWDTCSTPR.BIT.SLCSTP) { return LPC_ERR_ILLEGAL; /* Cannot enter DSW_Standby if IWDT count stop disable */ } } if ((1 == SYSTEM.LVD1CR0.BIT.LVD1RI) || (1 == SYSTEM.LVD2CR0.BIT.LVD2RI)) { return LPC_ERR_ILLEGAL; /* Cannot enter DSW_Standby if LVD reset enable */ } } } else if ((0 == SYSTEM.MSTPCRA.BIT.ACSE) && /* Check if entering Sleep Mode */ (LPC_CLOCK_SWITCH_ENABLE == SYSTEM.RSTCKCR.BIT.RSTCKEN)) /* If Return Clock Switching is enabled */ { /* When entering sleep mode with return clock switching enabled, the system clock must be the sub-clock */ if ((LPC_SUB_CLOCK != SYSTEM.SCKCR3.WORD) && (LPC_LOCO != SYSTEM.SCKCR3.WORD)) { return LPC_ERR_ILL_CLOCK_SOURCE; /* Cannot enter Sleep if System clock is not Subclock or LOCO */ } rstckcr_rstcksel = (SYSTEM.RSTCKCR.BYTE & 0x07); /* Exiting from sleep-mode with the HOCO selected is not permitted */ if (LPC_HOCO == rstckcr_rstcksel) /* If HOCO is chosen as the return clock */ { if (1 == SYSTEM.HOCOPCR.BIT.HOCOPCNT) { return LPC_ERR_ILL_CLOCK_SOURCE; /* Cannot enter Sleep if HOCO power off */ } } } else if(1 == SYSTEM.MSTPCRA.BIT.ACSE) /* Check if entering All Clock Stop Mode */ { if ((((LPC_ACS_CHK_MSTPCRA != (SYSTEM.MSTPCRA.LONG & LPC_ACS_CHK_MSTPCRA)) ||(LPC_ACS_CHK_MSTPCRB != (SYSTEM.MSTPCRB.LONG & LPC_ACS_CHK_MSTPCRB))) ||(LPC_ACS_CHK_MSTPCRC != (SYSTEM.MSTPCRC.LONG & LPC_ACS_CHK_MSTPCRC))) ||(LPC_ACS_CHK_MSTPCRD != (SYSTEM.MSTPCRD.LONG & LPC_ACS_CHK_MSTPCRD))) { return LPC_ERR_ILLEGAL; /* Cannot enter All Clock stop if Module stop release */ } /* Check FENTRYC(b0) and FENTRYD(b7) */ if (0x0000 != (FLASH.FENTRYR.WORD & 0x0081)) { return LPC_ERR_ILLEGAL; /* Cannot enter SW_Stanbay if P/E mode entry */ } } else { /* nothing here */ } return LPC_SUCCESS; } /********************************************************************************************************************* End of function lpc_lowpower_activate_check ********************************************************************************************************************/ #endif /* LPC_CFG_PARAM_CHECKING_ENABLE */ #endif /* BSP_MCU_RX660 */ /*********************************************************************************************************************** * End of File ***********************************************************************************************************************/
5235f9eb8dd2d6ed70953f8094fe9a8d2ebbb42f
f8230410485426ba79fd0ba04e8853c34d9b5dc5
/alpha/STM32/HARDWARE/usart2/usart2.c
9aade3251f377262e877304fca02a7382bf83894
[]
no_license
0x5E0C/SCM
49f6daddf24f0293be507f8aa500c1ab7bfb7a14
dc8c5fcbda43a779b6b77965d2b932126fe27856
refs/heads/master
2022-04-10T23:38:30.126387
2020-03-04T02:45:34
2020-03-04T02:45:34
null
0
0
null
null
null
null
UTF-8
C
false
false
1,439
c
#include "usart2.h" u8 USART2_RX_BUF[USART2_REC_LEN]; u8 USART2_byteNum; u8 length_cm = 0; u8 ut_length[8] = {0}; u8 ut_data; void USART2_Send(u8 data) { while((USART2->SR & 0X40) == 0); USART2->DR = data; } void Ultra_USART2_Init(u32 bound) { float temp; temp = 36000000 / bound; RCC->APB2ENR |= 1 << 2; RCC->APB1ENR |= 1 << 17; RCC->AHBENR |= 1 << 0; RCC->APB1RSTR |= 1 << 17; RCC->APB1RSTR &= ~(1 << 17); GPIOA->CRL &= 0xFFFF00FF; GPIOA->CRL |= 0x00008B00; USART2->BRR = (u16)temp; DMA1_Channel6->CNDTR = USART2_REC_LEN; DMA1_Channel6->CPAR = (u32)(&USART2->DR); DMA1_Channel6->CMAR = (u32)USART2_RX_BUF; DMA1_Channel6->CCR |= 0X3081; USART2->CR3 |= 1 << 6; MY_NVIC_Init(2, 1, USART2_IRQn, 2); USART2->CR1 = 0x201C; } void USART2_IRQHandler(void) { u8 i; if(USART2->SR & (1 << 3)) { USART2->DR; USART2->SR &= ~(1 << 3); } if(USART2->SR & (1 << 4)) { USART2_byteNum = USART2->SR; USART2_byteNum = USART2->DR; USART2_byteNum = USART2_REC_LEN - DMA1_Channel6->CNDTR; if((USART2_RX_BUF[0]==0xff)) { ut_data=USART2_RX_BUF[1]; for(i=0;i<8;i++) { ut_length[i]=USART2_RX_BUF[i+1]; } } DMA1_Channel6->CCR &= ~(1 << 0); DMA1_Channel6->CNDTR = USART2_REC_LEN; DMA1_Channel6->CCR |= 1 << 0; } }
66dbbc7af2da5aa596c635f4a67d7af9345fe99b
ac362bb8969d647cd219430bc71c831d894e531c
/sbin/veriexecctl/veriexecctl.h
e89a911a1e33d7db057a8a01e446850a1c95bfc4
[]
no_license
noud/mouse-bsd-4.0.1
efb3b16fcc872ab227e6bb651cf1e836796a0804
4c0a1e08df407a759afac2d6a98507df94f5f814
refs/heads/master
2023-02-24T23:42:54.060718
2020-08-16T20:10:53
2020-08-16T20:10:53
334,536,412
0
0
null
null
null
null
UTF-8
C
false
false
2,555
h
/* $NetBSD: veriexecctl.h,v 1.9 2006/11/28 22:22:03 elad Exp $ */ /*- * Copyright 2005 Elad Efrat <[email protected]> * Copyright 2005 Brett Lymn <[email protected]> * * All rights reserved. * * This code has been donated to The NetBSD Foundation by the Author. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. The name of the author may not be used to endorse or promote products * derived from this software withough specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. * * */ #ifndef _VERIEXECCTL_H_ #define _VERIEXECCTL_H_ #define STATUS_STRING(status) ((status) == FINGERPRINT_NOTEVAL ? \ "not evaluated" : \ (status) == FINGERPRINT_VALID ? \ "valid" : \ (status) == FINGERPRINT_NOMATCH ? \ "mismatch" : \ "<unknown>") #define dict_sets(d, k, v) \ prop_dictionary_set(d, k, prop_string_create_cstring(v)) #define dict_gets(d, k) \ prop_string_cstring_nocopy(prop_dictionary_get(d, k)) #define dict_setd(d, k, v, n) \ prop_dictionary_set(d, k, prop_data_create_data(v, n)) #define dict_getd(d, k) \ prop_data_data_nocopy(prop_dictionary_get(d, k)) CIRCLEQ_HEAD(veriexec_ups, veriexec_up) params_list; struct veriexec_up { prop_dictionary_t vu_preload; CIRCLEQ_ENTRY(veriexec_up) vu_list; }; extern int gfd, verbose, phase; extern size_t line; extern char *infile; extern FILE *yyin; int yywrap(void); int yylex(void); int yyparse(void); void yyerror(const char *); struct veriexec_up *dev_lookup(char *); struct veriexec_up *dev_add(char *); void phase2_load(void); #endif /* _VERIEXECCTL_H_ */
8c7136e2505f4f74570d339d18b762d2507f563a
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant101910_cse.c
cdc0792b4fde798ae8caffc0825239f4707d8bb4
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
216,077
c
/* Common subexpression elimination for GNU compiler. Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GCC 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 General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ #include "config.h" /* stdio.h must precede rtl.h for FFS. */ #include "system.h" #include "coretypes.h" #include "tm.h" #include "rtl.h" #include "tm_p.h" #include "hard-reg-set.h" #include "regs.h" #include "basic-block.h" #include "flags.h" #include "real.h" #include "insn-config.h" #include "recog.h" #include "function.h" #include "expr.h" #include "toplev.h" #include "output.h" #include "ggc.h" #include "timevar.h" #include "except.h" #include "target.h" #include "params.h" #include "rtlhooks-def.h" #include "tree-pass.h" #include "df.h" #include "dbgcnt.h" /* The basic idea of common subexpression elimination is to go through the code, keeping a record of expressions that would have the same value at the current scan point, and replacing expressions encountered with the cheapest equivalent expression. It is too complicated to keep track of the different possibilities when control paths merge in this code; so, at each label, we forget all that is known and start fresh. This can be described as processing each extended basic block separately. We have a separate pass to perform global CSE. Note CSE can turn a conditional or computed jump into a nop or an unconditional jump. When this occurs we arrange to run the jump optimizer after CSE to delete the unreachable code. We use two data structures to record the equivalent expressions: a hash table for most expressions, and a vector of "quantity numbers" to record equivalent (pseudo) registers. The use of the special data structure for registers is desirable because it is faster. It is possible because registers references contain a fairly small number, the register number, taken from a contiguously allocated series, and two register references are identical if they have the same number. General expressions do not have any such thing, so the only way to retrieve the information recorded on an expression other than a register is to keep it in a hash table. Registers and "quantity numbers": At the start of each basic block, all of the (hardware and pseudo) registers used in the function are given distinct quantity numbers to indicate their contents. During scan, when the code copies one register into another, we copy the quantity number. When a register is loaded in any other way, we allocate a new quantity number to describe the value generated by this operation. `REG_QTY (N)' records what quantity register N is currently thought of as containing. All real quantity numbers are greater than or equal to zero. If register N has not been assigned a quantity, `REG_QTY (N)' will equal -N - 1, which is always negative. Quantity numbers below zero do not exist and none of the `qty_table' entries should be referenced with a negative index. We also maintain a bidirectional chain of registers for each quantity number. The `qty_table` members `first_reg' and `last_reg', and `reg_eqv_table' members `next' and `prev' hold these chains. The first register in a chain is the one whose lifespan is least local. Among equals, it is the one that was seen first. We replace any equivalent register with that one. If two registers have the same quantity number, it must be true that REG expressions with qty_table `mode' must be in the hash table for both registers and must be in the same class. The converse is not true. Since hard registers may be referenced in any mode, two REG expressions might be equivalent in the hash table but not have the same quantity number if the quantity number of one of the registers is not the same mode as those expressions. Constants and quantity numbers When a quantity has a known constant value, that value is stored in the appropriate qty_table `const_rtx'. This is in addition to putting the constant in the hash table as is usual for non-regs. Whether a reg or a constant is preferred is determined by the configuration macro CONST_COSTS and will often depend on the constant value. In any event, expressions containing constants can be simplified, by fold_rtx. When a quantity has a known nearly constant value (such as an address of a stack slot), that value is stored in the appropriate qty_table `const_rtx'. Integer constants don't have a machine mode. However, cse determines the intended machine mode from the destination of the instruction that moves the constant. The machine mode is recorded in the hash table along with the actual RTL constant expression so that different modes are kept separate. Other expressions: To record known equivalences among expressions in general we use a hash table called `table'. It has a fixed number of buckets that contain chains of `struct table_elt' elements for expressions. These chains connect the elements whose expressions have the same hash codes. Other chains through the same elements connect the elements which currently have equivalent values. Register references in an expression are canonicalized before hashing the expression. This is done using `reg_qty' and qty_table `first_reg'. The hash code of a register reference is computed using the quantity number, not the register number. When the value of an expression changes, it is necessary to remove from the hash table not just that expression but all expressions whose values could be different as a result. 1. If the value changing is in memory, except in special cases ANYTHING referring to memory could be changed. That is because nobody knows where a pointer does not point. The function `invalidate_memory' removes what is necessary. The special cases are when the address is constant or is a constant plus a fixed register such as the frame pointer or a static chain pointer. When such addresses are stored in, we can tell exactly which other such addresses must be invalidated due to overlap. `invalidate' does this. All expressions that refer to non-constant memory addresses are also invalidated. `invalidate_memory' does this. 2. If the value changing is a register, all expressions containing references to that register, and only those, must be removed. Because searching the entire hash table for expressions that contain a register is very slow, we try to figure out when it isn't necessary. Precisely, this is necessary only when expressions have been entered in the hash table using this register, and then the value has changed, and then another expression wants to be added to refer to the register's new value. This sequence of circumstances is rare within any one basic block. `REG_TICK' and `REG_IN_TABLE', accessors for members of cse_reg_info, are used to detect this case. REG_TICK (i) is incremented whenever a value is stored in register i. REG_IN_TABLE (i) holds -1 if no references to register i have been entered in the table; otherwise, it contains the value REG_TICK (i) had when the references were entered. If we want to enter a reference and REG_IN_TABLE (i) != REG_TICK (i), we must scan and remove old references. Until we want to enter a new entry, the mere fact that the two vectors don't match makes the entries be ignored if anyone tries to match them. Registers themselves are entered in the hash table as well as in the equivalent-register chains. However, `REG_TICK' and `REG_IN_TABLE' do not apply to expressions which are simple register references. These expressions are removed from the table immediately when they become invalid, and this can be done even if we do not immediately search for all the expressions that refer to the register. A CLOBBER rtx in an instruction invalidates its operand for further reuse. A CLOBBER or SET rtx whose operand is a MEM:BLK invalidates everything that resides in memory. Related expressions: Constant expressions that differ only by an additive integer are called related. When a constant expression is put in the table, the related expression with no constant term is also entered. These are made to point at each other so that it is possible to find out if there exists any register equivalent to an expression related to a given expression. */ /* Length of qty_table vector. We know in advance we will not need a quantity number this big. */ static int max_qty; /* Next quantity number to be allocated. This is 1 + the largest number needed so far. */ static int next_qty; /* Per-qty information tracking. `first_reg' and `last_reg' track the head and tail of the chain of registers which currently contain this quantity. `mode' contains the machine mode of this quantity. `const_rtx' holds the rtx of the constant value of this quantity, if known. A summations of the frame/arg pointer and a constant can also be entered here. When this holds a known value, `const_insn' is the insn which stored the constant value. `comparison_{code,const,qty}' are used to track when a comparison between a quantity and some constant or register has been passed. In such a case, we know the results of the comparison in case we see it again. These members record a comparison that is known to be true. `comparison_code' holds the rtx code of such a comparison, else it is set to UNKNOWN and the other two comparison members are undefined. `comparison_const' holds the constant being compared against, or zero if the comparison is not against a constant. `comparison_qty' holds the quantity being compared against when the result is known. If the comparison is not with a register, `comparison_qty' is -1. */ struct qty_table_elem { rtx const_rtx; rtx const_insn; rtx comparison_const; int comparison_qty; unsigned int first_reg, last_reg; /* The sizes of these fields should match the sizes of the code and mode fields of struct rtx_def (see rtl.h). */ ENUM_BITFIELD(rtx_code) comparison_code : 16; ENUM_BITFIELD(machine_mode) mode : 8; }; /* The table of all qtys, indexed by qty number. */ static struct qty_table_elem *qty_table; /* Structure used to pass arguments via for_each_rtx to function cse_change_cc_mode. */ struct change_cc_mode_args { rtx insn; rtx newreg; }; #ifdef HAVE_cc0 /* For machines that have a CC0, we do not record its value in the hash table since its use is guaranteed to be the insn immediately following its definition and any other insn is presumed to invalidate it. Instead, we store below the current and last value assigned to CC0. If it should happen to be a constant, it is stored in preference to the actual assigned value. In case it is a constant, we store the mode in which the constant should be interpreted. */ static rtx this_insn_cc0, prev_insn_cc0; static enum machine_mode this_insn_cc0_mode, prev_insn_cc0_mode; #endif /* Insn being scanned. */ static rtx this_insn; /* Index by register number, gives the number of the next (or previous) register in the chain of registers sharing the same value. Or -1 if this register is at the end of the chain. If REG_QTY (N) == -N - 1, reg_eqv_table[N].next is undefined. */ /* Per-register equivalence chain. */ struct reg_eqv_elem { int next, prev; }; /* The table of all register equivalence chains. */ static struct reg_eqv_elem *reg_eqv_table; struct cse_reg_info { /* The timestamp at which this register is initialized. */ unsigned int timestamp; /* The quantity number of the register's current contents. */ int reg_qty; /* The number of times the register has been altered in the current basic block. */ int reg_tick; /* The REG_TICK value at which rtx's containing this register are valid in the hash table. If this does not equal the current reg_tick value, such expressions existing in the hash table are invalid. */ int reg_in_table; /* The SUBREG that was set when REG_TICK was last incremented. Set to -1 if the last store was to the whole register, not a subreg. */ unsigned int subreg_ticked; }; /* A table of cse_reg_info indexed by register numbers. */ static struct cse_reg_info *cse_reg_info_table; /* The size of the above table. */ static unsigned int cse_reg_info_table_size; /* The index of the first entry that has not been initialized. */ static unsigned int cse_reg_info_table_first_uninitialized; /* The timestamp at the beginning of the current run of cse_extended_basic_block. We increment this variable at the beginning of the current run of cse_extended_basic_block. The timestamp field of a cse_reg_info entry matches the value of this variable if and only if the entry has been initialized during the current run of cse_extended_basic_block. */ static unsigned int cse_reg_info_timestamp; /* A HARD_REG_SET containing all the hard registers for which there is currently a REG expression in the hash table. Note the difference from the above variables, which indicate if the REG is mentioned in some expression in the table. */ static HARD_REG_SET hard_regs_in_table; /* True if CSE has altered the CFG. */ static bool cse_cfg_altered; /* True if CSE has altered conditional jump insns in such a way that jump optimization should be redone. */ static bool cse_jumps_altered; /* True if we put a LABEL_REF into the hash table for an INSN without a REG_LABEL_OPERAND, we have to rerun jump after CSE to put in the note. */ static bool recorded_label_ref; /* canon_hash stores 1 in do_not_record if it notices a reference to CC0, PC, or some other volatile subexpression. */ static int do_not_record; /* canon_hash stores 1 in hash_arg_in_memory if it notices a reference to memory within the expression being hashed. */ static int hash_arg_in_memory; /* The hash table contains buckets which are chains of `struct table_elt's, each recording one expression's information. That expression is in the `exp' field. The canon_exp field contains a canonical (from the point of view of alias analysis) version of the `exp' field. Those elements with the same hash code are chained in both directions through the `next_same_hash' and `prev_same_hash' fields. Each set of expressions with equivalent values are on a two-way chain through the `next_same_value' and `prev_same_value' fields, and all point with the `first_same_value' field at the first element in that chain. The chain is in order of increasing cost. Each element's cost value is in its `cost' field. The `in_memory' field is nonzero for elements that involve any reference to memory. These elements are removed whenever a write is done to an unidentified location in memory. To be safe, we assume that a memory address is unidentified unless the address is either a symbol constant or a constant plus the frame pointer or argument pointer. The `related_value' field is used to connect related expressions (that differ by adding an integer). The related expressions are chained in a circular fashion. `related_value' is zero for expressions for which this chain is not useful. The `cost' field stores the cost of this element's expression. The `regcost' field stores the value returned by approx_reg_cost for this element's expression. The `is_const' flag is set if the element is a constant (including a fixed address). The `flag' field is used as a temporary during some search routines. The `mode' field is usually the same as GET_MODE (`exp'), but if `exp' is a CONST_INT and has no machine mode then the `mode' field is the mode it was being used as. Each constant is recorded separately for each mode it is used with. */ struct table_elt { rtx exp; rtx canon_exp; struct table_elt *next_same_hash; struct table_elt *prev_same_hash; struct table_elt *next_same_value; struct table_elt *prev_same_value; struct table_elt *first_same_value; struct table_elt *related_value; int cost; int regcost; /* The size of this field should match the size of the mode field of struct rtx_def (see rtl.h). */ ENUM_BITFIELD(machine_mode) mode : 8; char in_memory; char is_const; char flag; }; /* We don't want a lot of buckets, because we rarely have very many things stored in the hash table, and a lot of buckets slows down a lot of loops that happen frequently. */ #define HASH_SHIFT 5 #define HASH_SIZE (1 << HASH_SHIFT) #define HASH_MASK (HASH_SIZE - 1) /* Compute hash code of X in mode M. Special-case case where X is a pseudo register (hard registers may require `do_not_record' to be set). */ #define HASH(X, M) \ ((REG_P (X) && REGNO (X) >= FIRST_PSEUDO_REGISTER \ ? (((unsigned) REG << 7) + (unsigned) REG_QTY (REGNO (X))) \ : canon_hash (X, M)) & HASH_MASK) /* Like HASH, but without side-effects. */ #define SAFE_HASH(X, M) \ ((REG_P (X) && REGNO (X) >= FIRST_PSEUDO_REGISTER \ ? (((unsigned) REG << 7) + (unsigned) REG_QTY (REGNO (X))) \ : safe_hash (X, M)) & HASH_MASK) /* Determine whether register number N is considered a fixed register for the purpose of approximating register costs. It is desirable to replace other regs with fixed regs, to reduce need for non-fixed hard regs. A reg wins if it is either the frame pointer or designated as fixed. */ #define FIXED_REGNO_P(N) \ ((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM \ || fixed_regs[N] || global_regs[N]) /* Compute cost of X, as stored in the `cost' field of a table_elt. Fixed hard registers and pointers into the frame are the cheapest with a cost of 0. Next come pseudos with a cost of one and other hard registers with a cost of 2. Aside from these special cases, call `rtx_cost'. */ #define CHEAP_REGNO(N) \ (REGNO_PTR_FRAME_P(N) \ || (HARD_REGISTER_NUM_P (N) \ && FIXED_REGNO_P (N) && REGNO_REG_CLASS (N) != NO_REGS)) #define COST(X) (REG_P (X) ? 0 : notreg_cost (X, SET)) #define COST_IN(X,OUTER) (REG_P (X) ? 0 : notreg_cost (X, OUTER)) /* Get the number of times this register has been updated in this basic block. */ #define REG_TICK(N) (get_cse_reg_info (N)->reg_tick) /* Get the point at which REG was recorded in the table. */ #define REG_IN_TABLE(N) (get_cse_reg_info (N)->reg_in_table) /* Get the SUBREG set at the last increment to REG_TICK (-1 if not a SUBREG). */ #define SUBREG_TICKED(N) (get_cse_reg_info (N)->subreg_ticked) /* Get the quantity number for REG. */ #define REG_QTY(N) (get_cse_reg_info (N)->reg_qty) /* Determine if the quantity number for register X represents a valid index into the qty_table. */ #define REGNO_QTY_VALID_P(N) (REG_QTY (N) >= 0) static struct table_elt *table[HASH_SIZE]; /* Chain of `struct table_elt's made so far for this function but currently removed from the table. */ static struct table_elt *free_element_chain; /* Set to the cost of a constant pool reference if one was found for a symbolic constant. If this was found, it means we should try to convert constants into constant pool entries if they don't fit in the insn. */ static int constant_pool_entries_cost; static int constant_pool_entries_regcost; /* This data describes a block that will be processed by cse_extended_basic_block. */ struct cse_basic_block_data { /* Total number of SETs in block. */ int nsets; /* Size of current branch path, if any. */ int path_size; /* Current path, indicating which basic_blocks will be processed. */ struct branch_path { /* The basic block for this path entry. */ basic_block bb; } *path; }; /* Pointers to the live in/live out bitmaps for the boundaries of the current EBB. */ static bitmap cse_ebb_live_in, cse_ebb_live_out; /* A simple bitmap to track which basic blocks have been visited already as part of an already processed extended basic block. */ static sbitmap cse_visited_basic_blocks; static bool fixed_base_plus_p (rtx x); static int notreg_cost (rtx, enum rtx_code); static int approx_reg_cost_1 (rtx *, void *); static int approx_reg_cost (rtx); static int preferable (int, int, int, int); static void new_basic_block (void); static void make_new_qty (unsigned int, enum machine_mode); static void make_regs_eqv (unsigned int, unsigned int); static void delete_reg_equiv (unsigned int); static int mention_regs (rtx); static int insert_regs (rtx, struct table_elt *, int); static void remove_from_table (struct table_elt *, unsigned); static void remove_pseudo_from_table (rtx, unsigned); static struct table_elt *lookup (rtx, unsigned, enum machine_mode); static struct table_elt *lookup_for_remove (rtx, unsigned, enum machine_mode); static rtx lookup_as_function (rtx, enum rtx_code); static struct table_elt *insert (rtx, struct table_elt *, unsigned, enum machine_mode); static void merge_equiv_classes (struct table_elt *, struct table_elt *); static void invalidate (rtx, enum machine_mode); static bool cse_rtx_varies_p (const_rtx, bool); static void remove_invalid_refs (unsigned int); static void remove_invalid_subreg_refs (unsigned int, unsigned int, enum machine_mode); static void rehash_using_reg (rtx); static void invalidate_memory (void); static void invalidate_for_call (void); static rtx use_related_value (rtx, struct table_elt *); static inline unsigned canon_hash (rtx, enum machine_mode); static inline unsigned safe_hash (rtx, enum machine_mode); static unsigned hash_rtx_string (const char *); static rtx canon_reg (rtx, rtx); static enum rtx_code find_comparison_args (enum rtx_code, rtx *, rtx *, enum machine_mode *, enum machine_mode *); static rtx fold_rtx (rtx, rtx); static rtx equiv_constant (rtx); static void record_jump_equiv (rtx, bool); static void record_jump_cond (enum rtx_code, enum machine_mode, rtx, rtx, int); static void cse_insn (rtx, rtx); static void cse_prescan_path (struct cse_basic_block_data *); static void invalidate_from_clobbers (rtx); static rtx cse_process_notes (rtx, rtx, bool *); static void cse_extended_basic_block (struct cse_basic_block_data *); static void count_reg_usage (rtx, int *, rtx, int); static int check_for_label_ref (rtx *, void *); extern void dump_class (struct table_elt*); static void get_cse_reg_info_1 (unsigned int regno); static struct cse_reg_info * get_cse_reg_info (unsigned int regno); static int check_dependence (rtx *, void *); static void flush_hash_table (void); static bool insn_live_p (rtx, int *); static bool set_live_p (rtx, rtx, int *); static bool dead_libcall_p (rtx, int *); static int cse_change_cc_mode (rtx *, void *); static void cse_change_cc_mode_insn (rtx, rtx); static void cse_change_cc_mode_insns (rtx, rtx, rtx); static enum machine_mode cse_cc_succs (basic_block, rtx, rtx, bool); #undef RTL_HOOKS_GEN_LOWPART #define RTL_HOOKS_GEN_LOWPART gen_lowpart_if_possible static const struct rtl_hooks cse_rtl_hooks = RTL_HOOKS_INITIALIZER; /* Nonzero if X has the form (PLUS frame-pointer integer). We check for virtual regs here because the simplify_*_operation routines are called by integrate.c, which is called before virtual register instantiation. */ static bool fixed_base_plus_p (rtx x) { switch (GET_CODE (x)) { case REG: if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx) return true; if (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]) return true; if (REGNO (x) >= FIRST_VIRTUAL_REGISTER && REGNO (x) <= LAST_VIRTUAL_REGISTER) return true; return false; case PLUS: if (GET_CODE (XEXP (x, 1)) != CONST_INT) return false; return fixed_base_plus_p (XEXP (x, 0)); default: return false; } } /* Dump the expressions in the equivalence class indicated by CLASSP. This function is used only for debugging. */ void dump_class (struct table_elt *classp) { struct table_elt *elt; fprintf (stderr, "Equivalence chain for "); print_rtl (stderr, classp->exp); fprintf (stderr, ": \n"); for (elt = classp->first_same_value; elt; elt = elt->next_same_value) { print_rtl (stderr, elt->exp); fprintf (stderr, "\n"); } } /* Subroutine of approx_reg_cost; called through for_each_rtx. */ static int approx_reg_cost_1 (rtx *xp, void *data) { rtx x = *xp; int *cost_p = data; if (x && REG_P (x)) { unsigned int regno = REGNO (x); if (! CHEAP_REGNO (regno)) { if (regno < FIRST_PSEUDO_REGISTER) { if (SMALL_REGISTER_CLASSES) return 1; *cost_p += 2; } else *cost_p += 1; } } return 0; } /* Return an estimate of the cost of the registers used in an rtx. This is mostly the number of different REG expressions in the rtx; however for some exceptions like fixed registers we use a cost of 0. If any other hard register reference occurs, return MAX_COST. */ static int approx_reg_cost (rtx x) { int cost = 0; if (for_each_rtx (&x, approx_reg_cost_1, (void *) &cost)) return MAX_COST; return cost; } /* Return a negative value if an rtx A, whose costs are given by COST_A and REGCOST_A, is more desirable than an rtx B. Return a positive value if A is less desirable, or 0 if the two are equally good. */ static int preferable (int cost_a, int regcost_a, int cost_b, int regcost_b) { /* First, get rid of cases involving expressions that are entirely unwanted. */ if (cost_a != cost_b) { if (cost_a == MAX_COST) return 1; if (cost_b == MAX_COST) return -1; } /* Avoid extending lifetimes of hardregs. */ if (regcost_a != regcost_b) { if (regcost_a == MAX_COST) return 1; if (regcost_b == MAX_COST) return -1; } /* Normal operation costs take precedence. */ if (cost_a != cost_b) return cost_a - cost_b; /* Only if these are identical consider effects on register pressure. */ if (regcost_a != regcost_b) return regcost_a - regcost_b; return 0; } /* Internal function, to compute cost when X is not a register; called from COST macro to keep it simple. */ static int notreg_cost (rtx x, enum rtx_code outer) { return ((GET_CODE (x) == SUBREG && REG_P (SUBREG_REG (x)) && GET_MODE_CLASS (GET_MODE (x)) == MODE_INT && GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_INT && (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))) && subreg_lowpart_p (x) && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (GET_MODE (x)), GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))))) ? 0 : rtx_cost (x, outer) * 2); } /* Initialize CSE_REG_INFO_TABLE. */ static void init_cse_reg_info (unsigned int nregs) { /* Do we need to grow the table? */ if (nregs > cse_reg_info_table_size) { unsigned int new_size; if (cse_reg_info_table_size < 2048) { /* Compute a new size that is a power of 2 and no smaller than the large of NREGS and 64. */ new_size = (cse_reg_info_table_size ? cse_reg_info_table_size : 64); while (new_size < nregs) new_size *= 2; } else { /* If we need a big table, allocate just enough to hold NREGS registers. */ new_size = nregs; } /* Reallocate the table with NEW_SIZE entries. */ if (cse_reg_info_table) free (cse_reg_info_table); cse_reg_info_table = XNEWVEC (struct cse_reg_info, new_size); cse_reg_info_table_size = new_size; cse_reg_info_table_first_uninitialized = 0; } /* Do we have all of the first NREGS entries initialized? */ if (cse_reg_info_table_first_uninitialized < nregs) { unsigned int old_timestamp = cse_reg_info_timestamp - 1; unsigned int i; /* Put the old timestamp on newly allocated entries so that they will all be considered out of date. We do not touch those entries beyond the first NREGS entries to be nice to the virtual memory. */ for (i = cse_reg_info_table_first_uninitialized; i < nregs; i++) cse_reg_info_table[i].timestamp = old_timestamp; cse_reg_info_table_first_uninitialized = nregs; } } /* Given REGNO, initialize the cse_reg_info entry for REGNO. */ static void get_cse_reg_info_1 (unsigned int regno) { /* Set TIMESTAMP field to CSE_REG_INFO_TIMESTAMP so that this entry will be considered to have been initialized. */ cse_reg_info_table[regno].timestamp = cse_reg_info_timestamp; /* Initialize the rest of the entry. */ cse_reg_info_table[regno].reg_tick = 1; cse_reg_info_table[regno].reg_in_table = -1; cse_reg_info_table[regno].subreg_ticked = -1; cse_reg_info_table[regno].reg_qty = -regno - 1; } /* Find a cse_reg_info entry for REGNO. */ static inline struct cse_reg_info * get_cse_reg_info (unsigned int regno) { struct cse_reg_info *p = &cse_reg_info_table[regno]; /* If this entry has not been initialized, go ahead and initialize it. */ if (p->timestamp != cse_reg_info_timestamp) get_cse_reg_info_1 (regno); return p; } /* Clear the hash table and initialize each register with its own quantity, for a new basic block. */ static void new_basic_block (void) { int i; next_qty = 0; /* Invalidate cse_reg_info_table. */ cse_reg_info_timestamp++; /* Clear out hash table state for this pass. */ CLEAR_HARD_REG_SET (hard_regs_in_table); /* The per-quantity values used to be initialized here, but it is much faster to initialize each as it is made in `make_new_qty'. */ for (i = 0; i < HASH_SIZE; i++) { struct table_elt *first; first = table[i]; if (first != NULL) { struct table_elt *last = first; table[i] = NULL; while (last->next_same_hash != NULL) last = last->next_same_hash; /* Now relink this hash entire chain into the free element list. */ last->next_same_hash = free_element_chain; free_element_chain = first; } } #ifdef HAVE_cc0 prev_insn_cc0 = 0; #endif } /* Say that register REG contains a quantity in mode MODE not in any register before and initialize that quantity. */ static void make_new_qty (unsigned int reg, enum machine_mode mode) { int q; struct qty_table_elem *ent; struct reg_eqv_elem *eqv; gcc_assert (next_qty < max_qty); q = REG_QTY (reg) = next_qty++; ent = &qty_table[q]; ent->first_reg = reg; ent->last_reg = reg; ent->mode = mode; ent->const_rtx = ent->const_insn = NULL_RTX; ent->comparison_code = UNKNOWN; eqv = &reg_eqv_table[reg]; eqv->next = eqv->prev = -1; } /* Make reg NEW equivalent to reg OLD. OLD is not changing; NEW is. */ static void make_regs_eqv (unsigned int new, unsigned int old) { unsigned int lastr, firstr; int q = REG_QTY (old); struct qty_table_elem *ent; ent = &qty_table[q]; /* Nothing should become eqv until it has a "non-invalid" qty number. */ gcc_assert (REGNO_QTY_VALID_P (old)); REG_QTY (new) = q; firstr = ent->first_reg; lastr = ent->last_reg; /* Prefer fixed hard registers to anything. Prefer pseudo regs to other hard regs. Among pseudos, if NEW will live longer than any other reg of the same qty, and that is beyond the current basic block, make it the new canonical replacement for this qty. */ if (! (firstr < FIRST_PSEUDO_REGISTER && FIXED_REGNO_P (firstr)) /* Certain fixed registers might be of the class NO_REGS. This means that not only can they not be allocated by the compiler, but they cannot be used in substitutions or canonicalizations either. */ && (new >= FIRST_PSEUDO_REGISTER || REGNO_REG_CLASS (new) != NO_REGS) && ((new < FIRST_PSEUDO_REGISTER && FIXED_REGNO_P (new)) || (new >= FIRST_PSEUDO_REGISTER && (firstr < FIRST_PSEUDO_REGISTER || (bitmap_bit_p (cse_ebb_live_out, new) && !bitmap_bit_p (cse_ebb_live_out, firstr)) || (bitmap_bit_p (cse_ebb_live_in, new) && !bitmap_bit_p (cse_ebb_live_in, firstr)))))) { reg_eqv_table[firstr].prev = new; reg_eqv_table[new].next = firstr; reg_eqv_table[new].prev = -1; ent->first_reg = new; } else { /* If NEW is a hard reg (known to be non-fixed), insert at end. Otherwise, insert before any non-fixed hard regs that are at the end. Registers of class NO_REGS cannot be used as an equivalent for anything. */ while (lastr < FIRST_PSEUDO_REGISTER && reg_eqv_table[lastr].prev >= 0 && (REGNO_REG_CLASS (lastr) == NO_REGS || ! FIXED_REGNO_P (lastr)) && new >= FIRST_PSEUDO_REGISTER) lastr = reg_eqv_table[lastr].prev; reg_eqv_table[new].next = reg_eqv_table[lastr].next; if (reg_eqv_table[lastr].next >= 0) reg_eqv_table[reg_eqv_table[lastr].next].prev = new; else qty_table[q].last_reg = new; reg_eqv_table[lastr].next = new; reg_eqv_table[new].prev = lastr; } } /* Remove REG from its equivalence class. */ static void delete_reg_equiv (unsigned int reg) { struct qty_table_elem *ent; int q = REG_QTY (reg); int p, n; /* If invalid, do nothing. */ if (! REGNO_QTY_VALID_P (reg)) return; ent = &qty_table[q]; p = reg_eqv_table[reg].prev; n = reg_eqv_table[reg].next; if (n != -1) reg_eqv_table[n].prev = p; else ent->last_reg = p; if (p != -1) reg_eqv_table[p].next = n; else ent->first_reg = n; REG_QTY (reg) = -reg - 1; } /* Remove any invalid expressions from the hash table that refer to any of the registers contained in expression X. Make sure that newly inserted references to those registers as subexpressions will be considered valid. mention_regs is not called when a register itself is being stored in the table. Return 1 if we have done something that may have changed the hash code of X. */ static int mention_regs (rtx x) { enum rtx_code code; int i, j; const char *fmt; int changed = 0; if (x == 0) return 0; code = GET_CODE (x); if (code == REG) { unsigned int regno = REGNO (x); unsigned int endregno = END_REGNO (x); unsigned int i; for (i = regno; i < endregno; i++) { if (REG_IN_TABLE (i) >= 0 && REG_IN_TABLE (i) != REG_TICK (i)) remove_invalid_refs (i); REG_IN_TABLE (i) = REG_TICK (i); SUBREG_TICKED (i) = -1; } return 0; } /* If this is a SUBREG, we don't want to discard other SUBREGs of the same pseudo if they don't use overlapping words. We handle only pseudos here for simplicity. */ if (code == SUBREG && REG_P (SUBREG_REG (x)) && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER) { unsigned int i = REGNO (SUBREG_REG (x)); if (REG_IN_TABLE (i) >= 0 && REG_IN_TABLE (i) != REG_TICK (i)) { /* If REG_IN_TABLE (i) differs from REG_TICK (i) by one, and the last store to this register really stored into this subreg, then remove the memory of this subreg. Otherwise, remove any memory of the entire register and all its subregs from the table. */ if (REG_TICK (i) - REG_IN_TABLE (i) > 1 || SUBREG_TICKED (i) != REGNO (SUBREG_REG (x))) remove_invalid_refs (i); else remove_invalid_subreg_refs (i, SUBREG_BYTE (x), GET_MODE (x)); } REG_IN_TABLE (i) = REG_TICK (i); SUBREG_TICKED (i) = REGNO (SUBREG_REG (x)); return 0; } /* If X is a comparison or a COMPARE and either operand is a register that does not have a quantity, give it one. This is so that a later call to record_jump_equiv won't cause X to be assigned a different hash code and not found in the table after that call. It is not necessary to do this here, since rehash_using_reg can fix up the table later, but doing this here eliminates the need to call that expensive function in the most common case where the only use of the register is in the comparison. */ if (code == COMPARE || COMPARISON_P (x)) { if (REG_P (XEXP (x, 0)) && ! REGNO_QTY_VALID_P (REGNO (XEXP (x, 0)))) if (insert_regs (XEXP (x, 0), NULL, 0)) { rehash_using_reg (XEXP (x, 0)); changed = 1; } if (REG_P (XEXP (x, 1)) && ! REGNO_QTY_VALID_P (REGNO (XEXP (x, 1)))) if (insert_regs (XEXP (x, 1), NULL, 0)) { rehash_using_reg (XEXP (x, 1)); changed = 1; } } fmt = GET_RTX_FORMAT (code); for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) if (fmt[i] == 'e') changed |= mention_regs (XEXP (x, i)); else if (fmt[i] == 'E') for (j = 0; j < XVECLEN (x, i); j++) changed |= mention_regs (XVECEXP (x, i, j)); return changed; } /* Update the register quantities for inserting X into the hash table with a value equivalent to CLASSP. (If the class does not contain a REG, it is irrelevant.) If MODIFIED is nonzero, X is a destination; it is being modified. Note that delete_reg_equiv should be called on a register before insert_regs is done on that register with MODIFIED != 0. Nonzero value means that elements of reg_qty have changed so X's hash code may be different. */ static int insert_regs (rtx x, struct table_elt *classp, int modified) { if (REG_P (x)) { unsigned int regno = REGNO (x); int qty_valid; /* If REGNO is in the equivalence table already but is of the wrong mode for that equivalence, don't do anything here. */ qty_valid = REGNO_QTY_VALID_P (regno); if (qty_valid) { struct qty_table_elem *ent = &qty_table[REG_QTY (regno)]; if (ent->mode != GET_MODE (x)) return 0; } if (modified || ! qty_valid) { if (classp) for (classp = classp->first_same_value; classp != 0; classp = classp->next_same_value) if (REG_P (classp->exp) && GET_MODE (classp->exp) == GET_MODE (x)) { unsigned c_regno = REGNO (classp->exp); gcc_assert (REGNO_QTY_VALID_P (c_regno)); /* Suppose that 5 is hard reg and 100 and 101 are pseudos. Consider (set (reg:si 100) (reg:si 5)) (set (reg:si 5) (reg:si 100)) (set (reg:di 101) (reg:di 5)) We would now set REG_QTY (101) = REG_QTY (5), but the entry for 5 is in SImode. When we use this later in copy propagation, we get the register in wrong mode. */ if (qty_table[REG_QTY (c_regno)].mode != GET_MODE (x)) continue; make_regs_eqv (regno, c_regno); return 1; } /* Mention_regs for a SUBREG checks if REG_TICK is exactly one larger than REG_IN_TABLE to find out if there was only a single preceding invalidation - for the SUBREG - or another one, which would be for the full register. However, if we find here that REG_TICK indicates that the register is invalid, it means that it has been invalidated in a separate operation. The SUBREG might be used now (then this is a recursive call), or we might use the full REG now and a SUBREG of it later. So bump up REG_TICK so that mention_regs will do the right thing. */ if (! modified && REG_IN_TABLE (regno) >= 0 && REG_TICK (regno) == REG_IN_TABLE (regno) + 1) REG_TICK (regno)++; make_new_qty (regno, GET_MODE (x)); return 1; } return 0; } /* If X is a SUBREG, we will likely be inserting the inner register in the table. If that register doesn't have an assigned quantity number at this point but does later, the insertion that we will be doing now will not be accessible because its hash code will have changed. So assign a quantity number now. */ else if (GET_CODE (x) == SUBREG && REG_P (SUBREG_REG (x)) && ! REGNO_QTY_VALID_P (REGNO (SUBREG_REG (x)))) { insert_regs (SUBREG_REG (x), NULL, 0); mention_regs (x); return 1; } else return mention_regs (x); } /* Look in or update the hash table. */ /* Remove table element ELT from use in the table. HASH is its hash code, made using the HASH macro. It's an argument because often that is known in advance and we save much time not recomputing it. */ static void remove_from_table (struct table_elt *elt, unsigned int hash) { if (elt == 0) return; /* Mark this element as removed. See cse_insn. */ elt->first_same_value = 0; /* Remove the table element from its equivalence class. */ { struct table_elt *prev = elt->prev_same_value; struct table_elt *next = elt->next_same_value; if (next) next->prev_same_value = prev; if (prev) prev->next_same_value = next; else { struct table_elt *newfirst = next; while (next) { next->first_same_value = newfirst; next = next->next_same_value; } } } /* Remove the table element from its hash bucket. */ { struct table_elt *prev = elt->prev_same_hash; struct table_elt *next = elt->next_same_hash; if (next) next->prev_same_hash = prev; if (prev) prev->next_same_hash = next; else if (table[hash] == elt) table[hash] = next; else { /* This entry is not in the proper hash bucket. This can happen when two classes were merged by `merge_equiv_classes'. Search for the hash bucket that it heads. This happens only very rarely, so the cost is acceptable. */ for (hash = 0; hash < HASH_SIZE; hash++) if (table[hash] == elt) table[hash] = next; } } /* Remove the table element from its related-value circular chain. */ if (elt->related_value != 0 && elt->related_value != elt) { struct table_elt *p = elt->related_value; while (p->related_value != elt) p = p->related_value; p->related_value = elt->related_value; if (p->related_value == p) p->related_value = 0; } /* Now add it to the free element chain. */ elt->next_same_hash = free_element_chain; free_element_chain = elt; } /* Same as above, but X is a pseudo-register. */ static void remove_pseudo_from_table (rtx x, unsigned int hash) { struct table_elt *elt; /* Because a pseudo-register can be referenced in more than one mode, we might have to remove more than one table entry. */ while ((elt = lookup_for_remove (x, hash, VOIDmode))) remove_from_table (elt, hash); } /* Look up X in the hash table and return its table element, or 0 if X is not in the table. MODE is the machine-mode of X, or if X is an integer constant with VOIDmode then MODE is the mode with which X will be used. Here we are satisfied to find an expression whose tree structure looks like X. */ static struct table_elt * lookup (rtx x, unsigned int hash, enum machine_mode mode) { struct table_elt *p; for (p = table[hash]; p; p = p->next_same_hash) if (mode == p->mode && ((x == p->exp && REG_P (x)) || exp_equiv_p (x, p->exp, !REG_P (x), false))) return p; return 0; } /* Like `lookup' but don't care whether the table element uses invalid regs. Also ignore discrepancies in the machine mode of a register. */ static struct table_elt * lookup_for_remove (rtx x, unsigned int hash, enum machine_mode mode) { struct table_elt *p; if (REG_P (x)) { unsigned int regno = REGNO (x); /* Don't check the machine mode when comparing registers; invalidating (REG:SI 0) also invalidates (REG:DF 0). */ for (p = table[hash]; p; p = p->next_same_hash) if (REG_P (p->exp) && REGNO (p->exp) == regno) return p; } else { for (p = table[hash]; p; p = p->next_same_hash) if (mode == p->mode && (x == p->exp || exp_equiv_p (x, p->exp, 0, false))) return p; } return 0; } /* Look for an expression equivalent to X and with code CODE. If one is found, return that expression. */ static rtx lookup_as_function (rtx x, enum rtx_code code) { struct table_elt *p = lookup (x, SAFE_HASH (x, VOIDmode), GET_MODE (x)); /* If we are looking for a CONST_INT, the mode doesn't really matter, as long as we are narrowing. So if we looked in vain for a mode narrower than word_mode before, look for word_mode now. */ if (p == 0 && code == CONST_INT && GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (word_mode)) { x = copy_rtx (x); PUT_MODE (x, word_mode); p = lookup (x, SAFE_HASH (x, VOIDmode), word_mode); } if (p == 0) return 0; for (p = p->first_same_value; p; p = p->next_same_value) if (GET_CODE (p->exp) == code /* Make sure this is a valid entry in the table. */ && exp_equiv_p (p->exp, p->exp, 1, false)) return p->exp; return 0; } /* Insert X in the hash table, assuming HASH is its hash code and CLASSP is an element of the class it should go in (or 0 if a new class should be made). It is inserted at the proper position to keep the class in the order cheapest first. MODE is the machine-mode of X, or if X is an integer constant with VOIDmode then MODE is the mode with which X will be used. For elements of equal cheapness, the most recent one goes in front, except that the first element in the list remains first unless a cheaper element is added. The order of pseudo-registers does not matter, as canon_reg will be called to find the cheapest when a register is retrieved from the table. The in_memory field in the hash table element is set to 0. The caller must set it nonzero if appropriate. You should call insert_regs (X, CLASSP, MODIFY) before calling here, and if insert_regs returns a nonzero value you must then recompute its hash code before calling here. If necessary, update table showing constant values of quantities. */ #define CHEAPER(X, Y) \ (preferable ((X)->cost, (X)->regcost, (Y)->cost, (Y)->regcost) < 0) static struct table_elt * insert (rtx x, struct table_elt *classp, unsigned int hash, enum machine_mode mode) { struct table_elt *elt; /* If X is a register and we haven't made a quantity for it, something is wrong. */ gcc_assert (!REG_P (x) || REGNO_QTY_VALID_P (REGNO (x))); /* If X is a hard register, show it is being put in the table. */ if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER) add_to_hard_reg_set (&hard_regs_in_table, GET_MODE (x), REGNO (x)); /* Put an element for X into the right hash bucket. */ elt = free_element_chain; if (elt) free_element_chain = elt->next_same_hash; else elt = XNEW (struct table_elt); elt->exp = x; elt->canon_exp = NULL_RTX; elt->cost = COST (x); elt->regcost = approx_reg_cost (x); elt->next_same_value = 0; elt->prev_same_value = 0; elt->next_same_hash = table[hash]; elt->prev_same_hash = 0; elt->related_value = 0; elt->in_memory = 0; elt->mode = mode; elt->is_const = (CONSTANT_P (x) || fixed_base_plus_p (x)); if (table[hash]) table[hash]->prev_same_hash = elt; table[hash] = elt; /* Put it into the proper value-class. */ if (classp) { classp = classp->first_same_value; if (CHEAPER (elt, classp)) /* Insert at the head of the class. */ { struct table_elt *p; elt->next_same_value = classp; classp->prev_same_value = elt; elt->first_same_value = elt; for (p = classp; p; p = p->next_same_value) p->first_same_value = elt; } else { /* Insert not at head of the class. */ /* Put it after the last element cheaper than X. */ struct table_elt *p, *next; for (p = classp; (next = p->next_same_value) && CHEAPER (next, elt); p = next); /* Put it after P and before NEXT. */ elt->next_same_value = next; if (next) next->prev_same_value = elt; elt->prev_same_value = p; p->next_same_value = elt; elt->first_same_value = classp; } } else elt->first_same_value = elt; /* If this is a constant being set equivalent to a register or a register being set equivalent to a constant, note the constant equivalence. If this is a constant, it cannot be equivalent to a different constant, and a constant is the only thing that can be cheaper than a register. So we know the register is the head of the class (before the constant was inserted). If this is a register that is not already known equivalent to a constant, we must check the entire class. If this is a register that is already known equivalent to an insn, update the qtys `const_insn' to show that `this_insn' is the latest insn making that quantity equivalent to the constant. */ if (elt->is_const && classp && REG_P (classp->exp) && !REG_P (x)) { int exp_q = REG_QTY (REGNO (classp->exp)); struct qty_table_elem *exp_ent = &qty_table[exp_q]; exp_ent->const_rtx = gen_lowpart (exp_ent->mode, x); exp_ent->const_insn = this_insn; } else if (REG_P (x) && classp && ! qty_table[REG_QTY (REGNO (x))].const_rtx && ! elt->is_const) { struct table_elt *p; for (p = classp; p != 0; p = p->next_same_value) { if (p->is_const && !REG_P (p->exp)) { int x_q = REG_QTY (REGNO (x)); struct qty_table_elem *x_ent = &qty_table[x_q]; x_ent->const_rtx = gen_lowpart (GET_MODE (x), p->exp); x_ent->const_insn = this_insn; break; } } } else if (REG_P (x) && qty_table[REG_QTY (REGNO (x))].const_rtx && GET_MODE (x) == qty_table[REG_QTY (REGNO (x))].mode) qty_table[REG_QTY (REGNO (x))].const_insn = this_insn; /* If this is a constant with symbolic value, and it has a term with an explicit integer value, link it up with related expressions. */ if (GET_CODE (x) == CONST) { rtx subexp = get_related_value (x); unsigned subhash; struct table_elt *subelt, *subelt_prev; if (subexp != 0) { /* Get the integer-free subexpression in the hash table. */ subhash = SAFE_HASH (subexp, mode); subelt = lookup (subexp, subhash, mode); if (subelt == 0) subelt = insert (subexp, NULL, subhash, mode); /* Initialize SUBELT's circular chain if it has none. */ if (subelt->related_value == 0) subelt->related_value = subelt; /* Find the element in the circular chain that precedes SUBELT. */ subelt_prev = subelt; while (subelt_prev->related_value != subelt) subelt_prev = subelt_prev->related_value; /* Put new ELT into SUBELT's circular chain just before SUBELT. This way the element that follows SUBELT is the oldest one. */ elt->related_value = subelt_prev->related_value; subelt_prev->related_value = elt; } } return elt; } /* Given two equivalence classes, CLASS1 and CLASS2, put all the entries from CLASS2 into CLASS1. This is done when we have reached an insn which makes the two classes equivalent. CLASS1 will be the surviving class; CLASS2 should not be used after this call. Any invalid entries in CLASS2 will not be copied. */ static void merge_equiv_classes (struct table_elt *class1, struct table_elt *class2) { struct table_elt *elt, *next, *new; /* Ensure we start with the head of the classes. */ class1 = class1->first_same_value; class2 = class2->first_same_value; /* If they were already equal, forget it. */ if (class1 == class2) return; for (elt = class2; elt; elt = next) { unsigned int hash; rtx exp = elt->exp; enum machine_mode mode = elt->mode; next = elt->next_same_value; /* Remove old entry, make a new one in CLASS1's class. Don't do this for invalid entries as we cannot find their hash code (it also isn't necessary). */ if (REG_P (exp) || exp_equiv_p (exp, exp, 1, false)) { bool need_rehash = false; hash_arg_in_memory = 0; hash = HASH (exp, mode); if (REG_P (exp)) { need_rehash = REGNO_QTY_VALID_P (REGNO (exp)); delete_reg_equiv (REGNO (exp)); } if (REG_P (exp) && REGNO (exp) >= FIRST_PSEUDO_REGISTER) remove_pseudo_from_table (exp, hash); else remove_from_table (elt, hash); if (insert_regs (exp, class1, 0) || need_rehash) { rehash_using_reg (exp); hash = HASH (exp, mode); } new = insert (exp, class1, hash, mode); new->in_memory = hash_arg_in_memory; } } } /* Flush the entire hash table. */ static void flush_hash_table (void) { int i; struct table_elt *p; for (i = 0; i < HASH_SIZE; i++) for (p = table[i]; p; p = table[i]) { /* Note that invalidate can remove elements after P in the current hash chain. */ if (REG_P (p->exp)) invalidate (p->exp, VOIDmode); else remove_from_table (p, i); } } /* Function called for each rtx to check whether true dependence exist. */ struct check_dependence_data { enum machine_mode mode; rtx exp; rtx addr; }; static int check_dependence (rtx *x, void *data) { struct check_dependence_data *d = (struct check_dependence_data *) data; if (*x && MEM_P (*x)) return canon_true_dependence (d->exp, d->mode, d->addr, *x, cse_rtx_varies_p); else return 0; } /* Remove from the hash table, or mark as invalid, all expressions whose values could be altered by storing in X. X is a register, a subreg, or a memory reference with nonvarying address (because, when a memory reference with a varying address is stored in, all memory references are removed by invalidate_memory so specific invalidation is superfluous). FULL_MODE, if not VOIDmode, indicates that this much should be invalidated instead of just the amount indicated by the mode of X. This is only used for bitfield stores into memory. A nonvarying address may be just a register or just a symbol reference, or it may be either of those plus a numeric offset. */ static void invalidate (rtx x, enum machine_mode full_mode) { int i; struct table_elt *p; rtx addr; switch (GET_CODE (x)) { case REG: { /* If X is a register, dependencies on its contents are recorded through the qty number mechanism. Just change the qty number of the register, mark it as invalid for expressions that refer to it, and remove it itself. */ unsigned int regno = REGNO (x); unsigned int hash = HASH (x, GET_MODE (x)); /* Remove REGNO from any quantity list it might be on and indicate that its value might have changed. If it is a pseudo, remove its entry from the hash table. For a hard register, we do the first two actions above for any additional hard registers corresponding to X. Then, if any of these registers are in the table, we must remove any REG entries that overlap these registers. */ delete_reg_equiv (regno); REG_TICK (regno)++; SUBREG_TICKED (regno) = -1; if (regno >= FIRST_PSEUDO_REGISTER) remove_pseudo_from_table (x, hash); else { HOST_WIDE_INT in_table = TEST_HARD_REG_BIT (hard_regs_in_table, regno); unsigned int endregno = END_HARD_REGNO (x); unsigned int tregno, tendregno, rn; struct table_elt *p, *next; CLEAR_HARD_REG_BIT (hard_regs_in_table, regno); for (rn = regno + 1; rn < endregno; rn++) { in_table |= TEST_HARD_REG_BIT (hard_regs_in_table, rn); CLEAR_HARD_REG_BIT (hard_regs_in_table, rn); delete_reg_equiv (rn); REG_TICK (rn)++; SUBREG_TICKED (rn) = -1; } if (in_table) for (hash = 0; hash < HASH_SIZE; hash++) for (p = table[hash]; p; p = next) { next = p->next_same_hash; if (!REG_P (p->exp) || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER) continue; tregno = REGNO (p->exp); tendregno = END_HARD_REGNO (p->exp); if (tendregno > regno && tregno < endregno) remove_from_table (p, hash); } } } return; case SUBREG: invalidate (SUBREG_REG (x), VOIDmode); return; case PARALLEL: for (i = XVECLEN (x, 0) - 1; i >= 0; --i) invalidate (XVECEXP (x, 0, i), VOIDmode); return; case EXPR_LIST: /* This is part of a disjoint return value; extract the location in question ignoring the offset. */ invalidate (XEXP (x, 0), VOIDmode); return; case MEM: addr = canon_rtx (get_addr (XEXP (x, 0))); /* Calculate the canonical version of X here so that true_dependence doesn't generate new RTL for X on each call. */ x = canon_rtx (x); /* Remove all hash table elements that refer to overlapping pieces of memory. */ if (full_mode == VOIDmode) full_mode = GET_MODE (x); for (i = 0; i < HASH_SIZE; i++) { struct table_elt *next; for (p = table[i]; p; p = next) { next = p->next_same_hash; if (p->in_memory) { struct check_dependence_data d; /* Just canonicalize the expression once; otherwise each time we call invalidate true_dependence will canonicalize the expression again. */ if (!p->canon_exp) p->canon_exp = canon_rtx (p->exp); d.exp = x; d.addr = addr; d.mode = full_mode; if (for_each_rtx (&p->canon_exp, check_dependence, &d)) remove_from_table (p, i); } } } return; default: gcc_unreachable (); } } /* Remove all expressions that refer to register REGNO, since they are already invalid, and we are about to mark that register valid again and don't want the old expressions to reappear as valid. */ static void remove_invalid_refs (unsigned int regno) { unsigned int i; struct table_elt *p, *next; for (i = 0; i < HASH_SIZE; i++) for (p = table[i]; p; p = next) { next = p->next_same_hash; if (!REG_P (p->exp) && refers_to_regno_p (regno, regno + 1, p->exp, (rtx *) 0)) remove_from_table (p, i); } } /* Likewise for a subreg with subreg_reg REGNO, subreg_byte OFFSET, and mode MODE. */ static void remove_invalid_subreg_refs (unsigned int regno, unsigned int offset, enum machine_mode mode) { unsigned int i; struct table_elt *p, *next; unsigned int end = offset + (GET_MODE_SIZE (mode) - 1); for (i = 0; i < HASH_SIZE; i++) for (p = table[i]; p; p = next) { rtx exp = p->exp; next = p->next_same_hash; if (!REG_P (exp) && (GET_CODE (exp) != SUBREG || !REG_P (SUBREG_REG (exp)) || REGNO (SUBREG_REG (exp)) != regno || (((SUBREG_BYTE (exp) + (GET_MODE_SIZE (GET_MODE (exp)) - 1)) >= offset) && SUBREG_BYTE (exp) <= end)) && refers_to_regno_p (regno, regno + 1, p->exp, (rtx *) 0)) remove_from_table (p, i); } } /* Recompute the hash codes of any valid entries in the hash table that reference X, if X is a register, or SUBREG_REG (X) if X is a SUBREG. This is called when we make a jump equivalence. */ static void rehash_using_reg (rtx x) { unsigned int i; struct table_elt *p, *next; unsigned hash; if (GET_CODE (x) == SUBREG) x = SUBREG_REG (x); /* If X is not a register or if the register is known not to be in any valid entries in the table, we have no work to do. */ if (!REG_P (x) || REG_IN_TABLE (REGNO (x)) < 0 || REG_IN_TABLE (REGNO (x)) != REG_TICK (REGNO (x))) return; /* Scan all hash chains looking for valid entries that mention X. If we find one and it is in the wrong hash chain, move it. */ for (i = 0; i < HASH_SIZE; i++) for (p = table[i]; p; p = next) { next = p->next_same_hash; if (reg_mentioned_p (x, p->exp) && exp_equiv_p (p->exp, p->exp, 1, false) && i != (hash = SAFE_HASH (p->exp, p->mode))) { if (p->next_same_hash) p->next_same_hash->prev_same_hash = p->prev_same_hash; if (p->prev_same_hash) p->prev_same_hash->next_same_hash = p->next_same_hash; else table[i] = p->next_same_hash; p->next_same_hash = table[hash]; p->prev_same_hash = 0; if (table[hash]) table[hash]->prev_same_hash = p; table[hash] = p; } } } /* Remove from the hash table any expression that is a call-clobbered register. Also update their TICK values. */ static void invalidate_for_call (void) { unsigned int regno, endregno; unsigned int i; unsigned hash; struct table_elt *p, *next; int in_table = 0; /* Go through all the hard registers. For each that is clobbered in a CALL_INSN, remove the register from quantity chains and update reg_tick if defined. Also see if any of these registers is currently in the table. */ for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++) if (TEST_HARD_REG_BIT (regs_invalidated_by_call, regno)) { delete_reg_equiv (regno); if (REG_TICK (regno) >= 0) { REG_TICK (regno)++; SUBREG_TICKED (regno) = -1; } in_table |= (TEST_HARD_REG_BIT (hard_regs_in_table, regno) != 0); } /* In the case where we have no call-clobbered hard registers in the table, we are done. Otherwise, scan the table and remove any entry that overlaps a call-clobbered register. */ if (in_table) for (hash = 0; hash < HASH_SIZE; hash++) for (p = table[hash]; p; p = next) { next = p->next_same_hash; if (!REG_P (p->exp) || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER) continue; regno = REGNO (p->exp); endregno = END_HARD_REGNO (p->exp); for (i = regno; i < endregno; i++) if (TEST_HARD_REG_BIT (regs_invalidated_by_call, i)) { remove_from_table (p, hash); break; } } } /* Given an expression X of type CONST, and ELT which is its table entry (or 0 if it is not in the hash table), return an alternate expression for X as a register plus integer. If none can be found, return 0. */ static rtx use_related_value (rtx x, struct table_elt *elt) { struct table_elt *relt = 0; struct table_elt *p, *q; HOST_WIDE_INT offset; /* First, is there anything related known? If we have a table element, we can tell from that. Otherwise, must look it up. */ if (elt != 0 && elt->related_value != 0) relt = elt; else if (elt == 0 && GET_CODE (x) == CONST) { rtx subexp = get_related_value (x); if (subexp != 0) relt = lookup (subexp, SAFE_HASH (subexp, GET_MODE (subexp)), GET_MODE (subexp)); } if (relt == 0) return 0; /* Search all related table entries for one that has an equivalent register. */ p = relt; while (1) { /* This loop is strange in that it is executed in two different cases. The first is when X is already in the table. Then it is searching the RELATED_VALUE list of X's class (RELT). The second case is when X is not in the table. Then RELT points to a class for the related value. Ensure that, whatever case we are in, that we ignore classes that have the same value as X. */ if (rtx_equal_p (x, p->exp)) q = 0; else for (q = p->first_same_value; q; q = q->next_same_value) if (REG_P (q->exp)) break; if (q) break; p = p->related_value; /* We went all the way around, so there is nothing to be found. Alternatively, perhaps RELT was in the table for some other reason and it has no related values recorded. */ if (p == relt || p == 0) break; } if (q == 0) return 0; offset = (get_integer_term (x) - get_integer_term (p->exp)); /* Note: OFFSET may be 0 if P->xexp and X are related by commutativity. */ return plus_constant (q->exp, offset); } /* Hash a string. Just add its bytes up. */ static inline unsigned hash_rtx_string (const char *ps) { unsigned hash = 0; const unsigned char *p = (const unsigned char *) ps; if (p) while (*p) hash += *p++; return hash; } /* Hash an rtx. We are careful to make sure the value is never negative. Equivalent registers hash identically. MODE is used in hashing for CONST_INTs only; otherwise the mode of X is used. Store 1 in DO_NOT_RECORD_P if any subexpression is volatile. If HASH_ARG_IN_MEMORY_P is not NULL, store 1 in it if X contains a MEM rtx which does not have the RTX_UNCHANGING_P bit set. Note that cse_insn knows that the hash code of a MEM expression is just (int) MEM plus the hash code of the address. */ unsigned hash_rtx (const_rtx x, enum machine_mode mode, int *do_not_record_p, int *hash_arg_in_memory_p, bool have_reg_qty) { int i, j; unsigned hash = 0; enum rtx_code code; const char *fmt; /* Used to turn recursion into iteration. We can't rely on GCC's tail-recursion elimination since we need to keep accumulating values in HASH. */ repeat: if (x == 0) return hash; code = GET_CODE (x); switch (code) { case REG: { unsigned int regno = REGNO (x); if (!reload_completed) { /* On some machines, we can't record any non-fixed hard register, because extending its life will cause reload problems. We consider ap, fp, sp, gp to be fixed for this purpose. We also consider CCmode registers to be fixed for this purpose; failure to do so leads to failure to simplify 0<100 type of conditionals. On all machines, we can't record any global registers. Nor should we record any register that is in a small class, as defined by CLASS_LIKELY_SPILLED_P. */ bool record; if (regno >= FIRST_PSEUDO_REGISTER) record = true; else if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx || x == arg_pointer_rtx || x == stack_pointer_rtx || x == pic_offset_table_rtx) record = true; else if (global_regs[regno]) record = false; else if (fixed_regs[regno]) record = true; else if (GET_MODE_CLASS (GET_MODE (x)) == MODE_CC) record = true; else if (SMALL_REGISTER_CLASSES) record = false; else if (CLASS_LIKELY_SPILLED_P (REGNO_REG_CLASS (regno))) record = false; else record = true; if (!record) { *do_not_record_p = 1; return 0; } } hash += ((unsigned int) REG << 7); hash += (have_reg_qty ? (unsigned) REG_QTY (regno) : regno); return hash; } /* We handle SUBREG of a REG specially because the underlying reg changes its hash value with every value change; we don't want to have to forget unrelated subregs when one subreg changes. */ case SUBREG: { if (REG_P (SUBREG_REG (x))) { hash += (((unsigned int) SUBREG << 7) + REGNO (SUBREG_REG (x)) + (SUBREG_BYTE (x) / UNITS_PER_WORD)); return hash; } break; } case CONST_INT: hash += (((unsigned int) CONST_INT << 7) + (unsigned int) mode + (unsigned int) INTVAL (x)); return hash; case CONST_DOUBLE: /* This is like the general case, except that it only counts the integers representing the constant. */ hash += (unsigned int) code + (unsigned int) GET_MODE (x); if (GET_MODE (x) != VOIDmode) hash += real_hash (CONST_DOUBLE_REAL_VALUE (x)); else hash += ((unsigned int) CONST_DOUBLE_LOW (x) + (unsigned int) CONST_DOUBLE_HIGH (x)); return hash; case CONST_FIXED: hash += (unsigned int) code + (unsigned int) GET_MODE (x); hash += fixed_hash (CONST_FIXED_VALUE (x)); return hash; case CONST_VECTOR: { int units; rtx elt; units = CONST_VECTOR_NUNITS (x); for (i = 0; i < units; ++i) { elt = CONST_VECTOR_ELT (x, i); hash += hash_rtx (elt, GET_MODE (elt), do_not_record_p, hash_arg_in_memory_p, have_reg_qty); } return hash; } /* Assume there is only one rtx object for any given label. */ case LABEL_REF: /* We don't hash on the address of the CODE_LABEL to avoid bootstrap differences and differences between each stage's debugging dumps. */ hash += (((unsigned int) LABEL_REF << 7) + CODE_LABEL_NUMBER (XEXP (x, 0))); return hash; case SYMBOL_REF: { /* Don't hash on the symbol's address to avoid bootstrap differences. Different hash values may cause expressions to be recorded in different orders and thus different registers to be used in the final assembler. This also avoids differences in the dump files between various stages. */ unsigned int h = 0; const unsigned char *p = (const unsigned char *) XSTR (x, 0); while (*p) h += (h << 7) + *p++; /* ??? revisit */ hash += ((unsigned int) SYMBOL_REF << 7) + h; return hash; } case MEM: /* We don't record if marked volatile or if BLKmode since we don't know the size of the move. */ if (MEM_VOLATILE_P (x) || GET_MODE (x) == BLKmode) { *do_not_record_p = 1; return 0; } if (hash_arg_in_memory_p && !MEM_READONLY_P (x)) *hash_arg_in_memory_p = 1; /* Now that we have already found this special case, might as well speed it up as much as possible. */ hash += (unsigned) MEM; x = XEXP (x, 0); goto repeat; case USE: /* A USE that mentions non-volatile memory needs special handling since the MEM may be BLKmode which normally prevents an entry from being made. Pure calls are marked by a USE which mentions BLKmode memory. See calls.c:emit_call_1. */ if (MEM_P (XEXP (x, 0)) && ! MEM_VOLATILE_P (XEXP (x, 0))) { hash += (unsigned) USE; x = XEXP (x, 0); if (hash_arg_in_memory_p && !MEM_READONLY_P (x)) *hash_arg_in_memory_p = 1; /* Now that we have already found this special case, might as well speed it up as much as possible. */ hash += (unsigned) MEM; x = XEXP (x, 0); goto repeat; } break; case PRE_DEC: case PRE_INC: case POST_DEC: case POST_INC: case PRE_MODIFY: case POST_MODIFY: case PC: case CC0: case CALL: case UNSPEC_VOLATILE: *do_not_record_p = 1; return 0; case ASM_OPERANDS: if (MEM_VOLATILE_P (x)) { *do_not_record_p = 1; return 0; } else { /* We don't want to take the filename and line into account. */ hash += (unsigned) code + (unsigned) GET_MODE (x) + hash_rtx_string (ASM_OPERANDS_TEMPLATE (x)) + hash_rtx_string (ASM_OPERANDS_OUTPUT_CONSTRAINT (x)) + (unsigned) ASM_OPERANDS_OUTPUT_IDX (x); if (ASM_OPERANDS_INPUT_LENGTH (x)) { for (i = 1; i < ASM_OPERANDS_INPUT_LENGTH (x); i++) { hash += (hash_rtx (ASM_OPERANDS_INPUT (x, i), GET_MODE (ASM_OPERANDS_INPUT (x, i)), do_not_record_p, hash_arg_in_memory_p, have_reg_qty) + hash_rtx_string (ASM_OPERANDS_INPUT_CONSTRAINT (x, i))); } hash += hash_rtx_string (ASM_OPERANDS_INPUT_CONSTRAINT (x, 0)); x = ASM_OPERANDS_INPUT (x, 0); mode = GET_MODE (x); goto repeat; } return hash; } break; default: break; } i = GET_RTX_LENGTH (code) - 1; hash += (unsigned) code + (unsigned) GET_MODE (x); fmt = GET_RTX_FORMAT (code); for (; i >= 0; i--) { switch (fmt[i]) { case 'e': /* If we are about to do the last recursive call needed at this level, change it into iteration. This function is called enough to be worth it. */ if (i == 0) { x = XEXP (x, i); goto repeat; } hash += hash_rtx (XEXP (x, i), 0, do_not_record_p, hash_arg_in_memory_p, have_reg_qty); break; case 'E': for (j = 0; j < XVECLEN (x, i); j++) hash += hash_rtx (XVECEXP (x, i, j), 0, do_not_record_p, hash_arg_in_memory_p, have_reg_qty); break; case 's': hash += hash_rtx_string (XSTR (x, i)); break; case 'i': hash += (unsigned int) XINT (x, i); break; case '0': case 't': /* Unused. */ break; default: gcc_unreachable (); } } return hash; } /* Hash an rtx X for cse via hash_rtx. Stores 1 in do_not_record if any subexpression is volatile. Stores 1 in hash_arg_in_memory if X contains a mem rtx which does not have the RTX_UNCHANGING_P bit set. */ static inline unsigned canon_hash (rtx x, enum machine_mode mode) { return hash_rtx (x, mode, &do_not_record, &hash_arg_in_memory, true); } /* Like canon_hash but with no side effects, i.e. do_not_record and hash_arg_in_memory are not changed. */ static inline unsigned safe_hash (rtx x, enum machine_mode mode) { int dummy_do_not_record; return hash_rtx (x, mode, &dummy_do_not_record, NULL, true); } /* Return 1 iff X and Y would canonicalize into the same thing, without actually constructing the canonicalization of either one. If VALIDATE is nonzero, we assume X is an expression being processed from the rtl and Y was found in the hash table. We check register refs in Y for being marked as valid. If FOR_GCSE is true, we compare X and Y for equivalence for GCSE. */ int exp_equiv_p (const_rtx x, const_rtx y, int validate, bool for_gcse) { int i, j; enum rtx_code code; const char *fmt; /* Note: it is incorrect to assume an expression is equivalent to itself if VALIDATE is nonzero. */ if (x == y && !validate) return 1; if (x == 0 || y == 0) return x == y; code = GET_CODE (x); if (code != GET_CODE (y)) return 0; /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */ if (GET_MODE (x) != GET_MODE (y)) return 0; switch (code) { case PC: case CC0: case CONST_INT: case CONST_DOUBLE: case CONST_FIXED: return x == y; case LABEL_REF: return XEXP (x, 0) == XEXP (y, 0); case SYMBOL_REF: return XSTR (x, 0) == XSTR (y, 0); case REG: if (for_gcse) return REGNO (x) == REGNO (y); else { unsigned int regno = REGNO (y); unsigned int i; unsigned int endregno = END_REGNO (y); /* If the quantities are not the same, the expressions are not equivalent. If there are and we are not to validate, they are equivalent. Otherwise, ensure all regs are up-to-date. */ if (REG_QTY (REGNO (x)) != REG_QTY (regno)) return 0; if (! validate) return 1; for (i = regno; i < endregno; i++) if (REG_IN_TABLE (i) != REG_TICK (i)) return 0; return 1; } case MEM: if (for_gcse) { /* A volatile mem should not be considered equivalent to any other. */ if (MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y)) return 0; /* Can't merge two expressions in different alias sets, since we can decide that the expression is transparent in a block when it isn't, due to it being set with the different alias set. Also, can't merge two expressions with different MEM_ATTRS. They could e.g. be two different entities allocated into the same space on the stack (see e.g. PR25130). In that case, the MEM addresses can be the same, even though the two MEMs are absolutely not equivalent. But because really all MEM attributes should be the same for equivalent MEMs, we just use the invariant that MEMs that have the same attributes share the same mem_attrs data structure. */ if (MEM_ATTRS (x) != MEM_ATTRS (y)) return 0; } break; /* For commutative operations, check both orders. */ case PLUS: case MULT: case AND: case IOR: case XOR: case NE: case EQ: return ((exp_equiv_p (XEXP (x, 0), XEXP (y, 0), validate, for_gcse) && exp_equiv_p (XEXP (x, 1), XEXP (y, 1), validate, for_gcse)) || (exp_equiv_p (XEXP (x, 0), XEXP (y, 1), validate, for_gcse) && exp_equiv_p (XEXP (x, 1), XEXP (y, 0), validate, for_gcse))); case ASM_OPERANDS: /* We don't use the generic code below because we want to disregard filename and line numbers. */ /* A volatile asm isn't equivalent to any other. */ if (MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y)) return 0; if (GET_MODE (x) != GET_MODE (y) || strcmp (ASM_OPERANDS_TEMPLATE (x), ASM_OPERANDS_TEMPLATE (y)) || strcmp (ASM_OPERANDS_OUTPUT_CONSTRAINT (x), ASM_OPERANDS_OUTPUT_CONSTRAINT (y)) || ASM_OPERANDS_OUTPUT_IDX (x) != ASM_OPERANDS_OUTPUT_IDX (y) || ASM_OPERANDS_INPUT_LENGTH (x) != ASM_OPERANDS_INPUT_LENGTH (y)) return 0; if (ASM_OPERANDS_INPUT_LENGTH (x)) { for (i = ASM_OPERANDS_INPUT_LENGTH (x) - 1; i >= 0; i--) if (! exp_equiv_p (ASM_OPERANDS_INPUT (x, i), ASM_OPERANDS_INPUT (y, i), validate, for_gcse) || strcmp (ASM_OPERANDS_INPUT_CONSTRAINT (x, i), ASM_OPERANDS_INPUT_CONSTRAINT (y, i))) return 0; } return 1; default: break; } /* Compare the elements. If any pair of corresponding elements fail to match, return 0 for the whole thing. */ fmt = GET_RTX_FORMAT (code); for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) { switch (fmt[i]) { case 'e': if (! exp_equiv_p (XEXP (x, i), XEXP (y, i), validate, for_gcse)) return 0; break; case 'E': if (XVECLEN (x, i) != XVECLEN (y, i)) return 0; for (j = 0; j < XVECLEN (x, i); j++) if (! exp_equiv_p (XVECEXP (x, i, j), XVECEXP (y, i, j), validate, for_gcse)) return 0; break; case 's': if (strcmp (XSTR (x, i), XSTR (y, i))) return 0; break; case 'i': if (XINT (x, i) != XINT (y, i)) return 0; break; case 'w': if (XWINT (x, i) != XWINT (y, i)) return 0; break; case '0': case 't': break; default: gcc_unreachable (); } } return 1; } /* Return 1 if X has a value that can vary even between two executions of the program. 0 means X can be compared reliably against certain constants or near-constants. */ static bool cse_rtx_varies_p (const_rtx x, bool from_alias) { /* We need not check for X and the equivalence class being of the same mode because if X is equivalent to a constant in some mode, it doesn't vary in any mode. */ if (REG_P (x) && REGNO_QTY_VALID_P (REGNO (x))) { int x_q = REG_QTY (REGNO (x)); struct qty_table_elem *x_ent = &qty_table[x_q]; if (GET_MODE (x) == x_ent->mode && x_ent->const_rtx != NULL_RTX) return 0; } if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT && REG_P (XEXP (x, 0)) && REGNO_QTY_VALID_P (REGNO (XEXP (x, 0)))) { int x0_q = REG_QTY (REGNO (XEXP (x, 0))); struct qty_table_elem *x0_ent = &qty_table[x0_q]; if ((GET_MODE (XEXP (x, 0)) == x0_ent->mode) && x0_ent->const_rtx != NULL_RTX) return 0; } /* This can happen as the result of virtual register instantiation, if the initial constant is too large to be a valid address. This gives us a three instruction sequence, load large offset into a register, load fp minus a constant into a register, then a MEM which is the sum of the two `constant' registers. */ if (GET_CODE (x) == PLUS /* MUTANT (rep_const) */ && REG_P (XEXP (x, 1)) && REG_P (XEXP (x, 1)) && REGNO_QTY_VALID_P (REGNO (XEXP (x, 0))) && REGNO_QTY_VALID_P (REGNO (XEXP (x, 1)))) { int x0_q = REG_QTY (REGNO (XEXP (x, 0))); int x1_q = REG_QTY (REGNO (XEXP (x, 1))); struct qty_table_elem *x0_ent = &qty_table[x0_q]; struct qty_table_elem *x1_ent = &qty_table[x1_q]; if ((GET_MODE (XEXP (x, 0)) == x0_ent->mode) && x0_ent->const_rtx != NULL_RTX && (GET_MODE (XEXP (x, 1)) == x1_ent->mode) && x1_ent->const_rtx != NULL_RTX) return 0; } return rtx_varies_p (x, from_alias); } /* Subroutine of canon_reg. Pass *XLOC through canon_reg, and validate the result if necessary. INSN is as for canon_reg. */ static void validate_canon_reg (rtx *xloc, rtx insn) { if (*xloc) { rtx new = canon_reg (*xloc, insn); /* If replacing pseudo with hard reg or vice versa, ensure the insn remains valid. Likewise if the insn has MATCH_DUPs. */ gcc_assert (insn && new); validate_change (insn, xloc, new, 1); } } /* Canonicalize an expression: replace each register reference inside it with the "oldest" equivalent register. If INSN is nonzero validate_change is used to ensure that INSN remains valid after we make our substitution. The calls are made with IN_GROUP nonzero so apply_change_group must be called upon the outermost return from this function (unless INSN is zero). The result of apply_change_group can generally be discarded since the changes we are making are optional. */ static rtx canon_reg (rtx x, rtx insn) { int i; enum rtx_code code; const char *fmt; if (x == 0) return x; code = GET_CODE (x); switch (code) { case PC: case CC0: case CONST: case CONST_INT: case CONST_DOUBLE: case CONST_FIXED: case CONST_VECTOR: case SYMBOL_REF: case LABEL_REF: case ADDR_VEC: case ADDR_DIFF_VEC: return x; case REG: { int first; int q; struct qty_table_elem *ent; /* Never replace a hard reg, because hard regs can appear in more than one machine mode, and we must preserve the mode of each occurrence. Also, some hard regs appear in MEMs that are shared and mustn't be altered. Don't try to replace any reg that maps to a reg of class NO_REGS. */ if (REGNO (x) < FIRST_PSEUDO_REGISTER || ! REGNO_QTY_VALID_P (REGNO (x))) return x; q = REG_QTY (REGNO (x)); ent = &qty_table[q]; first = ent->first_reg; return (first >= FIRST_PSEUDO_REGISTER ? regno_reg_rtx[first] : REGNO_REG_CLASS (first) == NO_REGS ? x : gen_rtx_REG (ent->mode, first)); } default: break; } fmt = GET_RTX_FORMAT (code); for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) { int j; if (fmt[i] == 'e') validate_canon_reg (&XEXP (x, i), insn); else if (fmt[i] == 'E') for (j = 0; j < XVECLEN (x, i); j++) validate_canon_reg (&XVECEXP (x, i, j), insn); } return x; } /* Given an operation (CODE, *PARG1, *PARG2), where code is a comparison operation (EQ, NE, GT, etc.), follow it back through the hash table and what values are being compared. *PARG1 and *PARG2 are updated to contain the rtx representing the values actually being compared. For example, if *PARG1 was (cc0) and *PARG2 was (const_int 0), *PARG1 and *PARG2 will be set to the objects that were compared to produce cc0. The return value is the comparison operator and is either the code of A or the code corresponding to the inverse of the comparison. */ static enum rtx_code find_comparison_args (enum rtx_code code, rtx *parg1, rtx *parg2, enum machine_mode *pmode1, enum machine_mode *pmode2) { rtx arg1, arg2; arg1 = *parg1, arg2 = *parg2; /* If ARG2 is const0_rtx, see what ARG1 is equivalent to. */ while (arg2 == CONST0_RTX (GET_MODE (arg1))) { /* Set nonzero when we find something of interest. */ rtx x = 0; int reverse_code = 0; struct table_elt *p = 0; /* If arg1 is a COMPARE, extract the comparison arguments from it. On machines with CC0, this is the only case that can occur, since fold_rtx will return the COMPARE or item being compared with zero when given CC0. */ if (GET_CODE (arg1) == COMPARE && arg2 == const0_rtx) x = arg1; /* If ARG1 is a comparison operator and CODE is testing for STORE_FLAG_VALUE, get the inner arguments. */ else if (COMPARISON_P (arg1)) { #ifdef FLOAT_STORE_FLAG_VALUE REAL_VALUE_TYPE fsfv; #endif if (code == NE || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_INT && code == LT && STORE_FLAG_VALUE == -1) #ifdef FLOAT_STORE_FLAG_VALUE || (SCALAR_FLOAT_MODE_P (GET_MODE (arg1)) && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)), REAL_VALUE_NEGATIVE (fsfv))) #endif ) x = arg1; else if (code == EQ || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_INT && code == GE && STORE_FLAG_VALUE == -1) #ifdef FLOAT_STORE_FLAG_VALUE || (SCALAR_FLOAT_MODE_P (GET_MODE (arg1)) && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)), REAL_VALUE_NEGATIVE (fsfv))) #endif ) x = arg1, reverse_code = 1; } /* ??? We could also check for (ne (and (eq (...) (const_int 1))) (const_int 0)) and related forms, but let's wait until we see them occurring. */ if (x == 0) /* Look up ARG1 in the hash table and see if it has an equivalence that lets us see what is being compared. */ p = lookup (arg1, SAFE_HASH (arg1, GET_MODE (arg1)), GET_MODE (arg1)); if (p) { p = p->first_same_value; /* If what we compare is already known to be constant, that is as good as it gets. We need to break the loop in this case, because otherwise we can have an infinite loop when looking at a reg that is known to be a constant which is the same as a comparison of a reg against zero which appears later in the insn stream, which in turn is constant and the same as the comparison of the first reg against zero... */ if (p->is_const) break; } for (; p; p = p->next_same_value) { enum machine_mode inner_mode = GET_MODE (p->exp); #ifdef FLOAT_STORE_FLAG_VALUE REAL_VALUE_TYPE fsfv; #endif /* If the entry isn't valid, skip it. */ if (! exp_equiv_p (p->exp, p->exp, 1, false)) continue; if (GET_CODE (p->exp) == COMPARE /* Another possibility is that this machine has a compare insn that includes the comparison code. In that case, ARG1 would be equivalent to a comparison operation that would set ARG1 to either STORE_FLAG_VALUE or zero. If this is an NE operation, ORIG_CODE is the actual comparison being done; if it is an EQ, we must reverse ORIG_CODE. On machine with a negative value for STORE_FLAG_VALUE, also look at LT and GE operations. */ || ((code == NE || (code == LT && GET_MODE_CLASS (inner_mode) == MODE_INT && (GET_MODE_BITSIZE (inner_mode) <= HOST_BITS_PER_WIDE_INT) && (STORE_FLAG_VALUE & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (inner_mode) - 1)))) #ifdef FLOAT_STORE_FLAG_VALUE || (code == LT && SCALAR_FLOAT_MODE_P (inner_mode) && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)), REAL_VALUE_NEGATIVE (fsfv))) #endif ) && COMPARISON_P (p->exp))) { x = p->exp; break; } else if ((code == EQ || (code == GE && GET_MODE_CLASS (inner_mode) == MODE_INT && (GET_MODE_BITSIZE (inner_mode) <= HOST_BITS_PER_WIDE_INT) && (STORE_FLAG_VALUE & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (inner_mode) - 1)))) #ifdef FLOAT_STORE_FLAG_VALUE || (code == GE && SCALAR_FLOAT_MODE_P (inner_mode) && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)), REAL_VALUE_NEGATIVE (fsfv))) #endif ) && COMPARISON_P (p->exp)) { reverse_code = 1; x = p->exp; break; } /* If this non-trapping address, e.g. fp + constant, the equivalent is a better operand since it may let us predict the value of the comparison. */ else if (!rtx_addr_can_trap_p (p->exp)) { arg1 = p->exp; continue; } } /* If we didn't find a useful equivalence for ARG1, we are done. Otherwise, set up for the next iteration. */ if (x == 0) break; /* If we need to reverse the comparison, make sure that that is possible -- we can't necessarily infer the value of GE from LT with floating-point operands. */ if (reverse_code) { enum rtx_code reversed = reversed_comparison_code (x, NULL_RTX); if (reversed == UNKNOWN) break; else code = reversed; } else if (COMPARISON_P (x)) code = GET_CODE (x); arg1 = XEXP (x, 0), arg2 = XEXP (x, 1); } /* Return our results. Return the modes from before fold_rtx because fold_rtx might produce const_int, and then it's too late. */ *pmode1 = GET_MODE (arg1), *pmode2 = GET_MODE (arg2); *parg1 = fold_rtx (arg1, 0), *parg2 = fold_rtx (arg2, 0); return code; } /* If X is a nontrivial arithmetic operation on an argument for which a constant value can be determined, return the result of operating on that value, as a constant. Otherwise, return X, possibly with one or more operands changed to a forward-propagated constant. If X is a register whose contents are known, we do NOT return those contents here; equiv_constant is called to perform that task. For SUBREGs and MEMs, we do that both here and in equiv_constant. INSN is the insn that we may be modifying. If it is 0, make a copy of X before modifying it. */ static rtx fold_rtx (rtx x, rtx insn) { enum rtx_code code; enum machine_mode mode; const char *fmt; int i; rtx new = 0; int changed = 0; /* Operands of X. */ rtx folded_arg0; rtx folded_arg1; /* Constant equivalents of first three operands of X; 0 when no such equivalent is known. */ rtx const_arg0; rtx const_arg1; rtx const_arg2; /* The mode of the first operand of X. We need this for sign and zero extends. */ enum machine_mode mode_arg0; if (x == 0) return x; /* Try to perform some initial simplifications on X. */ code = GET_CODE (x); switch (code) { case MEM: case SUBREG: if ((new = equiv_constant (x)) != NULL_RTX) return new; return x; case CONST: case CONST_INT: case CONST_DOUBLE: case CONST_FIXED: case CONST_VECTOR: case SYMBOL_REF: case LABEL_REF: case REG: case PC: /* No use simplifying an EXPR_LIST since they are used only for lists of args in a function call's REG_EQUAL note. */ case EXPR_LIST: return x; #ifdef HAVE_cc0 case CC0: return prev_insn_cc0; #endif case ASM_OPERANDS: if (insn) { for (i = ASM_OPERANDS_INPUT_LENGTH (x) - 1; i >= 0; i--) validate_change (insn, &ASM_OPERANDS_INPUT (x, i), fold_rtx (ASM_OPERANDS_INPUT (x, i), insn), 0); } return x; #ifdef NO_FUNCTION_CSE case CALL: if (CONSTANT_P (XEXP (XEXP (x, 0), 0))) return x; break; #endif /* Anything else goes through the loop below. */ default: break; } mode = GET_MODE (x); const_arg0 = 0; const_arg1 = 0; const_arg2 = 0; mode_arg0 = VOIDmode; /* Try folding our operands. Then see which ones have constant values known. */ fmt = GET_RTX_FORMAT (code); for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) if (fmt[i] == 'e') { rtx folded_arg = XEXP (x, i), const_arg; enum machine_mode mode_arg = GET_MODE (folded_arg); switch (GET_CODE (folded_arg)) { case MEM: case REG: case SUBREG: const_arg = equiv_constant (folded_arg); break; case CONST: case CONST_INT: case SYMBOL_REF: case LABEL_REF: case CONST_DOUBLE: case CONST_FIXED: case CONST_VECTOR: const_arg = folded_arg; break; #ifdef HAVE_cc0 case CC0: folded_arg = prev_insn_cc0; mode_arg = prev_insn_cc0_mode; const_arg = equiv_constant (folded_arg); break; #endif default: folded_arg = fold_rtx (folded_arg, insn); const_arg = equiv_constant (folded_arg); break; } /* For the first three operands, see if the operand is constant or equivalent to a constant. */ switch (i) { case 0: folded_arg0 = folded_arg; const_arg0 = const_arg; mode_arg0 = mode_arg; break; case 1: folded_arg1 = folded_arg; const_arg1 = const_arg; break; case 2: const_arg2 = const_arg; break; } /* Pick the least expensive of the argument and an equivalent constant argument. */ if (const_arg != 0 && const_arg != folded_arg && COST_IN (const_arg, code) <= COST_IN (folded_arg, code) /* It's not safe to substitute the operand of a conversion operator with a constant, as the conversion's identity depends upon the mode of its operand. This optimization is handled by the call to simplify_unary_operation. */ && (GET_RTX_CLASS (code) != RTX_UNARY || GET_MODE (const_arg) == mode_arg0 || (code != ZERO_EXTEND && code != SIGN_EXTEND && code != TRUNCATE && code != FLOAT_TRUNCATE && code != FLOAT_EXTEND && code != FLOAT && code != FIX && code != UNSIGNED_FLOAT && code != UNSIGNED_FIX))) folded_arg = const_arg; if (folded_arg == XEXP (x, i)) continue; if (insn == NULL_RTX && !changed) x = copy_rtx (x); changed = 1; validate_unshare_change (insn, &XEXP (x, i), folded_arg, 1); } if (changed) { /* Canonicalize X if necessary, and keep const_argN and folded_argN consistent with the order in X. */ if (canonicalize_change_group (insn, x)) { rtx tem; tem = const_arg0, const_arg0 = const_arg1, const_arg1 = tem; tem = folded_arg0, folded_arg0 = folded_arg1, folded_arg1 = tem; } apply_change_group (); } /* If X is an arithmetic operation, see if we can simplify it. */ switch (GET_RTX_CLASS (code)) { case RTX_UNARY: { int is_const = 0; /* We can't simplify extension ops unless we know the original mode. */ if ((code == ZERO_EXTEND || code == SIGN_EXTEND) && mode_arg0 == VOIDmode) break; /* If we had a CONST, strip it off and put it back later if we fold. */ if (const_arg0 != 0 && GET_CODE (const_arg0) == CONST) is_const = 1, const_arg0 = XEXP (const_arg0, 0); new = simplify_unary_operation (code, mode, const_arg0 ? const_arg0 : folded_arg0, mode_arg0); /* NEG of PLUS could be converted into MINUS, but that causes expressions of the form (CONST (MINUS (CONST_INT) (SYMBOL_REF))) which many ports mistakenly treat as LEGITIMATE_CONSTANT_P. FIXME: those ports should be fixed. */ if (new != 0 && is_const && GET_CODE (new) == PLUS && (GET_CODE (XEXP (new, 0)) == SYMBOL_REF || GET_CODE (XEXP (new, 0)) == LABEL_REF) && GET_CODE (XEXP (new, 1)) == CONST_INT) new = gen_rtx_CONST (mode, new); } break; case RTX_COMPARE: case RTX_COMM_COMPARE: /* See what items are actually being compared and set FOLDED_ARG[01] to those values and CODE to the actual comparison code. If any are constant, set CONST_ARG0 and CONST_ARG1 appropriately. We needn't do anything if both operands are already known to be constant. */ /* ??? Vector mode comparisons are not supported yet. */ if (VECTOR_MODE_P (mode)) break; if (const_arg0 == 0 || const_arg1 == 0) { struct table_elt *p0, *p1; rtx true_rtx = const_true_rtx, false_rtx = const0_rtx; enum machine_mode mode_arg1; #ifdef FLOAT_STORE_FLAG_VALUE if (SCALAR_FLOAT_MODE_P (mode)) { true_rtx = (CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE (mode), mode)); false_rtx = CONST0_RTX (mode); } #endif code = find_comparison_args (code, &folded_arg0, &folded_arg1, &mode_arg0, &mode_arg1); /* If the mode is VOIDmode or a MODE_CC mode, we don't know what kinds of things are being compared, so we can't do anything with this comparison. */ if (mode_arg0 == VOIDmode || GET_MODE_CLASS (mode_arg0) == MODE_CC) break; const_arg0 = equiv_constant (folded_arg0); const_arg1 = equiv_constant (folded_arg1); /* If we do not now have two constants being compared, see if we can nevertheless deduce some things about the comparison. */ if (const_arg0 == 0 || const_arg1 == 0) { if (const_arg1 != NULL) { rtx cheapest_simplification; int cheapest_cost; rtx simp_result; struct table_elt *p; /* See if we can find an equivalent of folded_arg0 that gets us a cheaper expression, possibly a constant through simplifications. */ p = lookup (folded_arg0, SAFE_HASH (folded_arg0, mode_arg0), mode_arg0); if (p != NULL) { cheapest_simplification = x; cheapest_cost = COST (x); for (p = p->first_same_value; p != NULL; p = p->next_same_value) { int cost; /* If the entry isn't valid, skip it. */ if (! exp_equiv_p (p->exp, p->exp, 1, false)) continue; /* Try to simplify using this equivalence. */ simp_result = simplify_relational_operation (code, mode, mode_arg0, p->exp, const_arg1); if (simp_result == NULL) continue; cost = COST (simp_result); if (cost < cheapest_cost) { cheapest_cost = cost; cheapest_simplification = simp_result; } } /* If we have a cheaper expression now, use that and try folding it further, from the top. */ if (cheapest_simplification != x) return fold_rtx (copy_rtx (cheapest_simplification), insn); } } /* See if the two operands are the same. */ if ((REG_P (folded_arg0) && REG_P (folded_arg1) && (REG_QTY (REGNO (folded_arg0)) == REG_QTY (REGNO (folded_arg1)))) || ((p0 = lookup (folded_arg0, SAFE_HASH (folded_arg0, mode_arg0), mode_arg0)) && (p1 = lookup (folded_arg1, SAFE_HASH (folded_arg1, mode_arg0), mode_arg0)) && p0->first_same_value == p1->first_same_value)) folded_arg1 = folded_arg0; /* If FOLDED_ARG0 is a register, see if the comparison we are doing now is either the same as we did before or the reverse (we only check the reverse if not floating-point). */ else if (REG_P (folded_arg0)) { int qty = REG_QTY (REGNO (folded_arg0)); if (REGNO_QTY_VALID_P (REGNO (folded_arg0))) { struct qty_table_elem *ent = &qty_table[qty]; if ((comparison_dominates_p (ent->comparison_code, code) || (! FLOAT_MODE_P (mode_arg0) && comparison_dominates_p (ent->comparison_code, reverse_condition (code)))) && (rtx_equal_p (ent->comparison_const, folded_arg1) || (const_arg1 && rtx_equal_p (ent->comparison_const, const_arg1)) || (REG_P (folded_arg1) && (REG_QTY (REGNO (folded_arg1)) == ent->comparison_qty)))) return (comparison_dominates_p (ent->comparison_code, code) ? true_rtx : false_rtx); } } } } /* If we are comparing against zero, see if the first operand is equivalent to an IOR with a constant. If so, we may be able to determine the result of this comparison. */ if (const_arg1 == const0_rtx && !const_arg0) { rtx y = lookup_as_function (folded_arg0, IOR); rtx inner_const; if (y != 0 && (inner_const = equiv_constant (XEXP (y, 1))) != 0 && GET_CODE (inner_const) == CONST_INT && INTVAL (inner_const) != 0) folded_arg0 = gen_rtx_IOR (mode_arg0, XEXP (y, 0), inner_const); } { rtx op0 = const_arg0 ? const_arg0 : folded_arg0; rtx op1 = const_arg1 ? const_arg1 : folded_arg1; new = simplify_relational_operation (code, mode, mode_arg0, op0, op1); } break; case RTX_BIN_ARITH: case RTX_COMM_ARITH: switch (code) { case PLUS: /* If the second operand is a LABEL_REF, see if the first is a MINUS with that LABEL_REF as its second operand. If so, the result is the first operand of that MINUS. This handles switches with an ADDR_DIFF_VEC table. */ if (const_arg1 && GET_CODE (const_arg1) == LABEL_REF) { rtx y = GET_CODE (folded_arg0) == MINUS ? folded_arg0 : lookup_as_function (folded_arg0, MINUS); if (y != 0 && GET_CODE (XEXP (y, 1)) == LABEL_REF && XEXP (XEXP (y, 1), 0) == XEXP (const_arg1, 0)) return XEXP (y, 0); /* Now try for a CONST of a MINUS like the above. */ if ((y = (GET_CODE (folded_arg0) == CONST ? folded_arg0 : lookup_as_function (folded_arg0, CONST))) != 0 && GET_CODE (XEXP (y, 0)) == MINUS && GET_CODE (XEXP (XEXP (y, 0), 1)) == LABEL_REF && XEXP (XEXP (XEXP (y, 0), 1), 0) == XEXP (const_arg1, 0)) return XEXP (XEXP (y, 0), 0); } /* Likewise if the operands are in the other order. */ if (const_arg0 && GET_CODE (const_arg0) == LABEL_REF) { rtx y = GET_CODE (folded_arg1) == MINUS ? folded_arg1 : lookup_as_function (folded_arg1, MINUS); if (y != 0 && GET_CODE (XEXP (y, 1)) == LABEL_REF && XEXP (XEXP (y, 1), 0) == XEXP (const_arg0, 0)) return XEXP (y, 0); /* Now try for a CONST of a MINUS like the above. */ if ((y = (GET_CODE (folded_arg1) == CONST ? folded_arg1 : lookup_as_function (folded_arg1, CONST))) != 0 && GET_CODE (XEXP (y, 0)) == MINUS && GET_CODE (XEXP (XEXP (y, 0), 1)) == LABEL_REF && XEXP (XEXP (XEXP (y, 0), 1), 0) == XEXP (const_arg0, 0)) return XEXP (XEXP (y, 0), 0); } /* If second operand is a register equivalent to a negative CONST_INT, see if we can find a register equivalent to the positive constant. Make a MINUS if so. Don't do this for a non-negative constant since we might then alternate between choosing positive and negative constants. Having the positive constant previously-used is the more common case. Be sure the resulting constant is non-negative; if const_arg1 were the smallest negative number this would overflow: depending on the mode, this would either just be the same value (and hence not save anything) or be incorrect. */ if (const_arg1 != 0 && GET_CODE (const_arg1) == CONST_INT && INTVAL (const_arg1) < 0 /* This used to test -INTVAL (const_arg1) >= 0 But The Sun V5.0 compilers mis-compiled that test. So instead we test for the problematic value in a more direct manner and hope the Sun compilers get it correct. */ && INTVAL (const_arg1) != ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT - 1)) && REG_P (folded_arg1)) { rtx new_const = GEN_INT (-INTVAL (const_arg1)); struct table_elt *p = lookup (new_const, SAFE_HASH (new_const, mode), mode); if (p) for (p = p->first_same_value; p; p = p->next_same_value) if (REG_P (p->exp)) return simplify_gen_binary (MINUS, mode, folded_arg0, canon_reg (p->exp, NULL_RTX)); } goto from_plus; case MINUS: /* If we have (MINUS Y C), see if Y is known to be (PLUS Z C2). If so, produce (PLUS Z C2-C). */ if (const_arg1 != 0 && GET_CODE (const_arg1) == CONST_INT) { rtx y = lookup_as_function (XEXP (x, 0), PLUS); if (y && GET_CODE (XEXP (y, 1)) == CONST_INT) return fold_rtx (plus_constant (copy_rtx (y), -INTVAL (const_arg1)), NULL_RTX); } /* Fall through. */ from_plus: case SMIN: case SMAX: case UMIN: case UMAX: case IOR: case AND: case XOR: case MULT: case ASHIFT: case LSHIFTRT: case ASHIFTRT: /* If we have (<op> <reg> <const_int>) for an associative OP and REG is known to be of similar form, we may be able to replace the operation with a combined operation. This may eliminate the intermediate operation if every use is simplified in this way. Note that the similar optimization done by combine.c only works if the intermediate operation's result has only one reference. */ if (REG_P (folded_arg0) && const_arg1 && GET_CODE (const_arg1) == CONST_INT) { int is_shift = (code == ASHIFT || code == ASHIFTRT || code == LSHIFTRT); rtx y, inner_const, new_const; enum rtx_code associate_code; if (is_shift && (INTVAL (const_arg1) >= GET_MODE_BITSIZE (mode) || INTVAL (const_arg1) < 0)) { if (SHIFT_COUNT_TRUNCATED) const_arg1 = GEN_INT (INTVAL (const_arg1) & (GET_MODE_BITSIZE (mode) - 1)); else break; } y = lookup_as_function (folded_arg0, code); if (y == 0) break; /* If we have compiled a statement like "if (x == (x & mask1))", and now are looking at "x & mask2", we will have a case where the first operand of Y is the same as our first operand. Unless we detect this case, an infinite loop will result. */ if (XEXP (y, 0) == folded_arg0) break; inner_const = equiv_constant (fold_rtx (XEXP (y, 1), 0)); if (!inner_const || GET_CODE (inner_const) != CONST_INT) break; /* Don't associate these operations if they are a PLUS with the same constant and it is a power of two. These might be doable with a pre- or post-increment. Similarly for two subtracts of identical powers of two with post decrement. */ if (code == PLUS && const_arg1 == inner_const && ((HAVE_PRE_INCREMENT && exact_log2 (INTVAL (const_arg1)) >= 0) || (HAVE_POST_INCREMENT && exact_log2 (INTVAL (const_arg1)) >= 0) || (HAVE_PRE_DECREMENT && exact_log2 (- INTVAL (const_arg1)) >= 0) || (HAVE_POST_DECREMENT && exact_log2 (- INTVAL (const_arg1)) >= 0))) break; if (is_shift && (INTVAL (inner_const) >= GET_MODE_BITSIZE (mode) || INTVAL (inner_const) < 0)) { if (SHIFT_COUNT_TRUNCATED) inner_const = GEN_INT (INTVAL (inner_const) & (GET_MODE_BITSIZE (mode) - 1)); else break; } /* Compute the code used to compose the constants. For example, A-C1-C2 is A-(C1 + C2), so if CODE == MINUS, we want PLUS. */ associate_code = (is_shift || code == MINUS ? PLUS : code); new_const = simplify_binary_operation (associate_code, mode, const_arg1, inner_const); if (new_const == 0) break; /* If we are associating shift operations, don't let this produce a shift of the size of the object or larger. This could occur when we follow a sign-extend by a right shift on a machine that does a sign-extend as a pair of shifts. */ if (is_shift && GET_CODE (new_const) == CONST_INT && INTVAL (new_const) >= GET_MODE_BITSIZE (mode)) { /* As an exception, we can turn an ASHIFTRT of this form into a shift of the number of bits - 1. */ if (code == ASHIFTRT) new_const = GEN_INT (GET_MODE_BITSIZE (mode) - 1); else if (!side_effects_p (XEXP (y, 0))) return CONST0_RTX (mode); else break; } y = copy_rtx (XEXP (y, 0)); /* If Y contains our first operand (the most common way this can happen is if Y is a MEM), we would do into an infinite loop if we tried to fold it. So don't in that case. */ if (! reg_mentioned_p (folded_arg0, y)) y = fold_rtx (y, insn); return simplify_gen_binary (code, mode, y, new_const); } break; case DIV: case UDIV: /* ??? The associative optimization performed immediately above is also possible for DIV and UDIV using associate_code of MULT. However, we would need extra code to verify that the multiplication does not overflow, that is, there is no overflow in the calculation of new_const. */ break; default: break; } new = simplify_binary_operation (code, mode, const_arg0 ? const_arg0 : folded_arg0, const_arg1 ? const_arg1 : folded_arg1); break; case RTX_OBJ: /* (lo_sum (high X) X) is simply X. */ if (code == LO_SUM && const_arg0 != 0 && GET_CODE (const_arg0) == HIGH && rtx_equal_p (XEXP (const_arg0, 0), const_arg1)) return const_arg1; break; case RTX_TERNARY: case RTX_BITFIELD_OPS: new = simplify_ternary_operation (code, mode, mode_arg0, const_arg0 ? const_arg0 : folded_arg0, const_arg1 ? const_arg1 : folded_arg1, const_arg2 ? const_arg2 : XEXP (x, 2)); break; default: break; } return new ? new : x; } /* Return a constant value currently equivalent to X. Return 0 if we don't know one. */ static rtx equiv_constant (rtx x) { if (REG_P (x) && REGNO_QTY_VALID_P (REGNO (x))) { int x_q = REG_QTY (REGNO (x)); struct qty_table_elem *x_ent = &qty_table[x_q]; if (x_ent->const_rtx) x = gen_lowpart (GET_MODE (x), x_ent->const_rtx); } if (x == 0 || CONSTANT_P (x)) return x; if (GET_CODE (x) == SUBREG) { rtx new; /* See if we previously assigned a constant value to this SUBREG. */ if ((new = lookup_as_function (x, CONST_INT)) != 0 || (new = lookup_as_function (x, CONST_DOUBLE)) != 0 || (new = lookup_as_function (x, CONST_FIXED)) != 0) return new; if (REG_P (SUBREG_REG (x)) && (new = equiv_constant (SUBREG_REG (x))) != 0) return simplify_subreg (GET_MODE (x), SUBREG_REG (x), GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x)); return 0; } /* If X is a MEM, see if it is a constant-pool reference, or look it up in the hash table in case its value was seen before. */ if (MEM_P (x)) { struct table_elt *elt; x = avoid_constant_pool_reference (x); if (CONSTANT_P (x)) return x; elt = lookup (x, SAFE_HASH (x, GET_MODE (x)), GET_MODE (x)); if (elt == 0) return 0; for (elt = elt->first_same_value; elt; elt = elt->next_same_value) if (elt->is_const && CONSTANT_P (elt->exp)) return elt->exp; } return 0; } /* Given INSN, a jump insn, TAKEN indicates if we are following the "taken" branch. In certain cases, this can cause us to add an equivalence. For example, if we are following the taken case of if (i == 2) we can add the fact that `i' and '2' are now equivalent. In any case, we can record that this comparison was passed. If the same comparison is seen later, we will know its value. */ static void record_jump_equiv (rtx insn, bool taken) { int cond_known_true; rtx op0, op1; rtx set; enum machine_mode mode, mode0, mode1; int reversed_nonequality = 0; enum rtx_code code; /* Ensure this is the right kind of insn. */ gcc_assert (any_condjump_p (insn)); set = pc_set (insn); /* See if this jump condition is known true or false. */ if (taken) cond_known_true = (XEXP (SET_SRC (set), 2) == pc_rtx); else cond_known_true = (XEXP (SET_SRC (set), 1) == pc_rtx); /* Get the type of comparison being done and the operands being compared. If we had to reverse a non-equality condition, record that fact so we know that it isn't valid for floating-point. */ code = GET_CODE (XEXP (SET_SRC (set), 0)); op0 = fold_rtx (XEXP (XEXP (SET_SRC (set), 0), 0), insn); op1 = fold_rtx (XEXP (XEXP (SET_SRC (set), 0), 1), insn); code = find_comparison_args (code, &op0, &op1, &mode0, &mode1); if (! cond_known_true) { code = reversed_comparison_code_parts (code, op0, op1, insn); /* Don't remember if we can't find the inverse. */ if (code == UNKNOWN) return; } /* The mode is the mode of the non-constant. */ mode = mode0; if (mode1 != VOIDmode) mode = mode1; record_jump_cond (code, mode, op0, op1, reversed_nonequality); } /* Yet another form of subreg creation. In this case, we want something in MODE, and we should assume OP has MODE iff it is naturally modeless. */ static rtx record_jump_cond_subreg (enum machine_mode mode, rtx op) { enum machine_mode op_mode = GET_MODE (op); if (op_mode == mode || op_mode == VOIDmode) return op; return lowpart_subreg (mode, op, op_mode); } /* We know that comparison CODE applied to OP0 and OP1 in MODE is true. REVERSED_NONEQUALITY is nonzero if CODE had to be swapped. Make any useful entries we can with that information. Called from above function and called recursively. */ static void record_jump_cond (enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1, int reversed_nonequality) { unsigned op0_hash, op1_hash; int op0_in_memory, op1_in_memory; struct table_elt *op0_elt, *op1_elt; /* If OP0 and OP1 are known equal, and either is a paradoxical SUBREG, we know that they are also equal in the smaller mode (this is also true for all smaller modes whether or not there is a SUBREG, but is not worth testing for with no SUBREG). */ /* Note that GET_MODE (op0) may not equal MODE. */ if (code == EQ && GET_CODE (op0) == SUBREG && (GET_MODE_SIZE (GET_MODE (op0)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0))))) { enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op0)); rtx tem = record_jump_cond_subreg (inner_mode, op1); if (tem) record_jump_cond (code, mode, SUBREG_REG (op0), tem, reversed_nonequality); } if (code == EQ && GET_CODE (op1) == SUBREG && (GET_MODE_SIZE (GET_MODE (op1)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op1))))) { enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op1)); rtx tem = record_jump_cond_subreg (inner_mode, op0); if (tem) record_jump_cond (code, mode, SUBREG_REG (op1), tem, reversed_nonequality); } /* Similarly, if this is an NE comparison, and either is a SUBREG making a smaller mode, we know the whole thing is also NE. */ /* Note that GET_MODE (op0) may not equal MODE; if we test MODE instead, we can get an infinite recursion alternating between two modes each wider than MODE. */ if (code == NE && GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0) && (GET_MODE_SIZE (GET_MODE (op0)) < GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0))))) { enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op0)); rtx tem = record_jump_cond_subreg (inner_mode, op1); if (tem) record_jump_cond (code, mode, SUBREG_REG (op0), tem, reversed_nonequality); } if (code == NE && GET_CODE (op1) == SUBREG && subreg_lowpart_p (op1) && (GET_MODE_SIZE (GET_MODE (op1)) < GET_MODE_SIZE (GET_MODE (SUBREG_REG (op1))))) { enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op1)); rtx tem = record_jump_cond_subreg (inner_mode, op0); if (tem) record_jump_cond (code, mode, SUBREG_REG (op1), tem, reversed_nonequality); } /* Hash both operands. */ do_not_record = 0; hash_arg_in_memory = 0; op0_hash = HASH (op0, mode); op0_in_memory = hash_arg_in_memory; if (do_not_record) return; do_not_record = 0; hash_arg_in_memory = 0; op1_hash = HASH (op1, mode); op1_in_memory = hash_arg_in_memory; if (do_not_record) return; /* Look up both operands. */ op0_elt = lookup (op0, op0_hash, mode); op1_elt = lookup (op1, op1_hash, mode); /* If both operands are already equivalent or if they are not in the table but are identical, do nothing. */ if ((op0_elt != 0 && op1_elt != 0 && op0_elt->first_same_value == op1_elt->first_same_value) || op0 == op1 || rtx_equal_p (op0, op1)) return; /* If we aren't setting two things equal all we can do is save this comparison. Similarly if this is floating-point. In the latter case, OP1 might be zero and both -0.0 and 0.0 are equal to it. If we record the equality, we might inadvertently delete code whose intent was to change -0 to +0. */ if (code != EQ || FLOAT_MODE_P (GET_MODE (op0))) { struct qty_table_elem *ent; int qty; /* If we reversed a floating-point comparison, if OP0 is not a register, or if OP1 is neither a register or constant, we can't do anything. */ if (!REG_P (op1)) op1 = equiv_constant (op1); if ((reversed_nonequality && FLOAT_MODE_P (mode)) || !REG_P (op0) || op1 == 0) return; /* Put OP0 in the hash table if it isn't already. This gives it a new quantity number. */ if (op0_elt == 0) { if (insert_regs (op0, NULL, 0)) { rehash_using_reg (op0); op0_hash = HASH (op0, mode); /* If OP0 is contained in OP1, this changes its hash code as well. Faster to rehash than to check, except for the simple case of a constant. */ if (! CONSTANT_P (op1)) op1_hash = HASH (op1,mode); } op0_elt = insert (op0, NULL, op0_hash, mode); op0_elt->in_memory = op0_in_memory; } qty = REG_QTY (REGNO (op0)); ent = &qty_table[qty]; ent->comparison_code = code; if (REG_P (op1)) { /* Look it up again--in case op0 and op1 are the same. */ op1_elt = lookup (op1, op1_hash, mode); /* Put OP1 in the hash table so it gets a new quantity number. */ if (op1_elt == 0) { if (insert_regs (op1, NULL, 0)) { rehash_using_reg (op1); op1_hash = HASH (op1, mode); } op1_elt = insert (op1, NULL, op1_hash, mode); op1_elt->in_memory = op1_in_memory; } ent->comparison_const = NULL_RTX; ent->comparison_qty = REG_QTY (REGNO (op1)); } else { ent->comparison_const = op1; ent->comparison_qty = -1; } return; } /* If either side is still missing an equivalence, make it now, then merge the equivalences. */ if (op0_elt == 0) { if (insert_regs (op0, NULL, 0)) { rehash_using_reg (op0); op0_hash = HASH (op0, mode); } op0_elt = insert (op0, NULL, op0_hash, mode); op0_elt->in_memory = op0_in_memory; } if (op1_elt == 0) { if (insert_regs (op1, NULL, 0)) { rehash_using_reg (op1); op1_hash = HASH (op1, mode); } op1_elt = insert (op1, NULL, op1_hash, mode); op1_elt->in_memory = op1_in_memory; } merge_equiv_classes (op0_elt, op1_elt); } /* CSE processing for one instruction. First simplify sources and addresses of all assignments in the instruction, using previously-computed equivalents values. Then install the new sources and destinations in the table of available values. If LIBCALL_INSN is nonzero, don't record any equivalence made in the insn. It means that INSN is inside libcall block. In this case LIBCALL_INSN is the corresponding insn with REG_LIBCALL. */ /* Data on one SET contained in the instruction. */ struct set { /* The SET rtx itself. */ rtx rtl; /* The SET_SRC of the rtx (the original value, if it is changing). */ rtx src; /* The hash-table element for the SET_SRC of the SET. */ struct table_elt *src_elt; /* Hash value for the SET_SRC. */ unsigned src_hash; /* Hash value for the SET_DEST. */ unsigned dest_hash; /* The SET_DEST, with SUBREG, etc., stripped. */ rtx inner_dest; /* Nonzero if the SET_SRC is in memory. */ char src_in_memory; /* Nonzero if the SET_SRC contains something whose value cannot be predicted and understood. */ char src_volatile; /* Original machine mode, in case it becomes a CONST_INT. The size of this field should match the size of the mode field of struct rtx_def (see rtl.h). */ ENUM_BITFIELD(machine_mode) mode : 8; /* A constant equivalent for SET_SRC, if any. */ rtx src_const; /* Original SET_SRC value used for libcall notes. */ rtx orig_src; /* Hash value of constant equivalent for SET_SRC. */ unsigned src_const_hash; /* Table entry for constant equivalent for SET_SRC, if any. */ struct table_elt *src_const_elt; /* Table entry for the destination address. */ struct table_elt *dest_addr_elt; }; static void cse_insn (rtx insn, rtx libcall_insn) { rtx x = PATTERN (insn); int i; rtx tem; int n_sets = 0; rtx src_eqv = 0; struct table_elt *src_eqv_elt = 0; int src_eqv_volatile = 0; int src_eqv_in_memory = 0; unsigned src_eqv_hash = 0; struct set *sets = (struct set *) 0; this_insn = insn; #ifdef HAVE_cc0 /* Records what this insn does to set CC0. */ this_insn_cc0 = 0; this_insn_cc0_mode = VOIDmode; #endif /* Find all the SETs and CLOBBERs in this instruction. Record all the SETs in the array `set' and count them. Also determine whether there is a CLOBBER that invalidates all memory references, or all references at varying addresses. */ if (CALL_P (insn)) { for (tem = CALL_INSN_FUNCTION_USAGE (insn); tem; tem = XEXP (tem, 1)) { if (GET_CODE (XEXP (tem, 0)) == CLOBBER) invalidate (SET_DEST (XEXP (tem, 0)), VOIDmode); XEXP (tem, 0) = canon_reg (XEXP (tem, 0), insn); } } if (GET_CODE (x) == SET) { sets = alloca (sizeof (struct set)); sets[0].rtl = x; /* Ignore SETs that are unconditional jumps. They never need cse processing, so this does not hurt. The reason is not efficiency but rather so that we can test at the end for instructions that have been simplified to unconditional jumps and not be misled by unchanged instructions that were unconditional jumps to begin with. */ if (SET_DEST (x) == pc_rtx && GET_CODE (SET_SRC (x)) == LABEL_REF) ; /* Don't count call-insns, (set (reg 0) (call ...)), as a set. The hard function value register is used only once, to copy to someplace else, so it isn't worth cse'ing (and on 80386 is unsafe)! Ensure we invalidate the destination register. On the 80386 no other code would invalidate it since it is a fixed_reg. We need not check the return of apply_change_group; see canon_reg. */ else if (GET_CODE (SET_SRC (x)) == CALL) { canon_reg (SET_SRC (x), insn); apply_change_group (); fold_rtx (SET_SRC (x), insn); invalidate (SET_DEST (x), VOIDmode); } else n_sets = 1; } else if (GET_CODE (x) == PARALLEL) { int lim = XVECLEN (x, 0); sets = alloca (lim * sizeof (struct set)); /* Find all regs explicitly clobbered in this insn, and ensure they are not replaced with any other regs elsewhere in this insn. When a reg that is clobbered is also used for input, we should presume that that is for a reason, and we should not substitute some other register which is not supposed to be clobbered. Therefore, this loop cannot be merged into the one below because a CALL may precede a CLOBBER and refer to the value clobbered. We must not let a canonicalization do anything in that case. */ for (i = 0; i < lim; i++) { rtx y = XVECEXP (x, 0, i); if (GET_CODE (y) == CLOBBER) { rtx clobbered = XEXP (y, 0); if (REG_P (clobbered) || GET_CODE (clobbered) == SUBREG) invalidate (clobbered, VOIDmode); else if (GET_CODE (clobbered) == STRICT_LOW_PART || GET_CODE (clobbered) == ZERO_EXTRACT) invalidate (XEXP (clobbered, 0), GET_MODE (clobbered)); } } for (i = 0; i < lim; i++) { rtx y = XVECEXP (x, 0, i); if (GET_CODE (y) == SET) { /* As above, we ignore unconditional jumps and call-insns and ignore the result of apply_change_group. */ if (GET_CODE (SET_SRC (y)) == CALL) { canon_reg (SET_SRC (y), insn); apply_change_group (); fold_rtx (SET_SRC (y), insn); invalidate (SET_DEST (y), VOIDmode); } else if (SET_DEST (y) == pc_rtx && GET_CODE (SET_SRC (y)) == LABEL_REF) ; else sets[n_sets++].rtl = y; } else if (GET_CODE (y) == CLOBBER) { /* If we clobber memory, canon the address. This does nothing when a register is clobbered because we have already invalidated the reg. */ if (MEM_P (XEXP (y, 0))) canon_reg (XEXP (y, 0), insn); } else if (GET_CODE (y) == USE && ! (REG_P (XEXP (y, 0)) && REGNO (XEXP (y, 0)) < FIRST_PSEUDO_REGISTER)) canon_reg (y, insn); else if (GET_CODE (y) == CALL) { /* The result of apply_change_group can be ignored; see canon_reg. */ canon_reg (y, insn); apply_change_group (); fold_rtx (y, insn); } } } else if (GET_CODE (x) == CLOBBER) { if (MEM_P (XEXP (x, 0))) canon_reg (XEXP (x, 0), insn); } /* Canonicalize a USE of a pseudo register or memory location. */ else if (GET_CODE (x) == USE && ! (REG_P (XEXP (x, 0)) && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER)) canon_reg (XEXP (x, 0), insn); else if (GET_CODE (x) == CALL) { /* The result of apply_change_group can be ignored; see canon_reg. */ canon_reg (x, insn); apply_change_group (); fold_rtx (x, insn); } /* Store the equivalent value in SRC_EQV, if different, or if the DEST is a STRICT_LOW_PART. The latter condition is necessary because SRC_EQV is handled specially for this case, and if it isn't set, then there will be no equivalence for the destination. */ if (n_sets == 1 && REG_NOTES (insn) != 0 && (tem = find_reg_note (insn, REG_EQUAL, NULL_RTX)) != 0 && (! rtx_equal_p (XEXP (tem, 0), SET_SRC (sets[0].rtl)) || GET_CODE (SET_DEST (sets[0].rtl)) == STRICT_LOW_PART)) { /* The result of apply_change_group can be ignored; see canon_reg. */ canon_reg (XEXP (tem, 0), insn); apply_change_group (); src_eqv = fold_rtx (XEXP (tem, 0), insn); XEXP (tem, 0) = copy_rtx (src_eqv); df_notes_rescan (insn); } /* Canonicalize sources and addresses of destinations. We do this in a separate pass to avoid problems when a MATCH_DUP is present in the insn pattern. In that case, we want to ensure that we don't break the duplicate nature of the pattern. So we will replace both operands at the same time. Otherwise, we would fail to find an equivalent substitution in the loop calling validate_change below. We used to suppress canonicalization of DEST if it appears in SRC, but we don't do this any more. */ for (i = 0; i < n_sets; i++) { rtx dest = SET_DEST (sets[i].rtl); rtx src = SET_SRC (sets[i].rtl); rtx new = canon_reg (src, insn); sets[i].orig_src = src; validate_change (insn, &SET_SRC (sets[i].rtl), new, 1); if (GET_CODE (dest) == ZERO_EXTRACT) { validate_change (insn, &XEXP (dest, 1), canon_reg (XEXP (dest, 1), insn), 1); validate_change (insn, &XEXP (dest, 2), canon_reg (XEXP (dest, 2), insn), 1); } while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == STRICT_LOW_PART) dest = XEXP (dest, 0); if (MEM_P (dest)) canon_reg (dest, insn); } /* Now that we have done all the replacements, we can apply the change group and see if they all work. Note that this will cause some canonicalizations that would have worked individually not to be applied because some other canonicalization didn't work, but this should not occur often. The result of apply_change_group can be ignored; see canon_reg. */ apply_change_group (); /* Set sets[i].src_elt to the class each source belongs to. Detect assignments from or to volatile things and set set[i] to zero so they will be ignored in the rest of this function. Nothing in this loop changes the hash table or the register chains. */ for (i = 0; i < n_sets; i++) { rtx src, dest; rtx src_folded; struct table_elt *elt = 0, *p; enum machine_mode mode; rtx src_eqv_here; rtx src_const = 0; rtx src_related = 0; struct table_elt *src_const_elt = 0; int src_cost = MAX_COST; int src_eqv_cost = MAX_COST; int src_folded_cost = MAX_COST; int src_related_cost = MAX_COST; int src_elt_cost = MAX_COST; int src_regcost = MAX_COST; int src_eqv_regcost = MAX_COST; int src_folded_regcost = MAX_COST; int src_related_regcost = MAX_COST; int src_elt_regcost = MAX_COST; /* Set nonzero if we need to call force_const_mem on with the contents of src_folded before using it. */ int src_folded_force_flag = 0; dest = SET_DEST (sets[i].rtl); src = SET_SRC (sets[i].rtl); /* If SRC is a constant that has no machine mode, hash it with the destination's machine mode. This way we can keep different modes separate. */ mode = GET_MODE (src) == VOIDmode ? GET_MODE (dest) : GET_MODE (src); sets[i].mode = mode; if (src_eqv) { enum machine_mode eqvmode = mode; if (GET_CODE (dest) == STRICT_LOW_PART) eqvmode = GET_MODE (SUBREG_REG (XEXP (dest, 0))); do_not_record = 0; hash_arg_in_memory = 0; src_eqv_hash = HASH (src_eqv, eqvmode); /* Find the equivalence class for the equivalent expression. */ if (!do_not_record) src_eqv_elt = lookup (src_eqv, src_eqv_hash, eqvmode); src_eqv_volatile = do_not_record; src_eqv_in_memory = hash_arg_in_memory; } /* If this is a STRICT_LOW_PART assignment, src_eqv corresponds to the value of the INNER register, not the destination. So it is not a valid substitution for the source. But save it for later. */ if (GET_CODE (dest) == STRICT_LOW_PART) src_eqv_here = 0; else src_eqv_here = src_eqv; /* Simplify and foldable subexpressions in SRC. Then get the fully- simplified result, which may not necessarily be valid. */ src_folded = fold_rtx (src, insn); #if 0 /* ??? This caused bad code to be generated for the m68k port with -O2. Suppose src is (CONST_INT -1), and that after truncation src_folded is (CONST_INT 3). Suppose src_folded is then used for src_const. At the end we will add src and src_const to the same equivalence class. We now have 3 and -1 on the same equivalence class. This causes later instructions to be mis-optimized. */ /* If storing a constant in a bitfield, pre-truncate the constant so we will be able to record it later. */ if (GET_CODE (SET_DEST (sets[i].rtl)) == ZERO_EXTRACT) { rtx width = XEXP (SET_DEST (sets[i].rtl), 1); if (GET_CODE (src) == CONST_INT && GET_CODE (width) == CONST_INT && INTVAL (width) < HOST_BITS_PER_WIDE_INT && (INTVAL (src) & ((HOST_WIDE_INT) (-1) << INTVAL (width)))) src_folded = GEN_INT (INTVAL (src) & (((HOST_WIDE_INT) 1 << INTVAL (width)) - 1)); } #endif /* Compute SRC's hash code, and also notice if it should not be recorded at all. In that case, prevent any further processing of this assignment. */ do_not_record = 0; hash_arg_in_memory = 0; sets[i].src = src; sets[i].src_hash = HASH (src, mode); sets[i].src_volatile = do_not_record; sets[i].src_in_memory = hash_arg_in_memory; /* If SRC is a MEM, there is a REG_EQUIV note for SRC, and DEST is a pseudo, do not record SRC. Using SRC as a replacement for anything else will be incorrect in that situation. Note that this usually occurs only for stack slots, in which case all the RTL would be referring to SRC, so we don't lose any optimization opportunities by not having SRC in the hash table. */ if (MEM_P (src) && find_reg_note (insn, REG_EQUIV, NULL_RTX) != 0 && REG_P (dest) && REGNO (dest) >= FIRST_PSEUDO_REGISTER) sets[i].src_volatile = 1; #if 0 /* It is no longer clear why we used to do this, but it doesn't appear to still be needed. So let's try without it since this code hurts cse'ing widened ops. */ /* If source is a paradoxical subreg (such as QI treated as an SI), treat it as volatile. It may do the work of an SI in one context where the extra bits are not being used, but cannot replace an SI in general. */ if (GET_CODE (src) == SUBREG && (GET_MODE_SIZE (GET_MODE (src)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))) sets[i].src_volatile = 1; #endif /* Locate all possible equivalent forms for SRC. Try to replace SRC in the insn with each cheaper equivalent. We have the following types of equivalents: SRC itself, a folded version, a value given in a REG_EQUAL note, or a value related to a constant. Each of these equivalents may be part of an additional class of equivalents (if more than one is in the table, they must be in the same class; we check for this). If the source is volatile, we don't do any table lookups. We note any constant equivalent for possible later use in a REG_NOTE. */ if (!sets[i].src_volatile) elt = lookup (src, sets[i].src_hash, mode); sets[i].src_elt = elt; if (elt && src_eqv_here && src_eqv_elt) { if (elt->first_same_value != src_eqv_elt->first_same_value) { /* The REG_EQUAL is indicating that two formerly distinct classes are now equivalent. So merge them. */ merge_equiv_classes (elt, src_eqv_elt); src_eqv_hash = HASH (src_eqv, elt->mode); src_eqv_elt = lookup (src_eqv, src_eqv_hash, elt->mode); } src_eqv_here = 0; } else if (src_eqv_elt) elt = src_eqv_elt; /* Try to find a constant somewhere and record it in `src_const'. Record its table element, if any, in `src_const_elt'. Look in any known equivalences first. (If the constant is not in the table, also set `sets[i].src_const_hash'). */ if (elt) for (p = elt->first_same_value; p; p = p->next_same_value) if (p->is_const) { src_const = p->exp; src_const_elt = elt; break; } if (src_const == 0 && (CONSTANT_P (src_folded) /* Consider (minus (label_ref L1) (label_ref L2)) as "constant" here so we will record it. This allows us to fold switch statements when an ADDR_DIFF_VEC is used. */ || (GET_CODE (src_folded) == MINUS && GET_CODE (XEXP (src_folded, 0)) == LABEL_REF && GET_CODE (XEXP (src_folded, 1)) == LABEL_REF))) src_const = src_folded, src_const_elt = elt; else if (src_const == 0 && src_eqv_here && CONSTANT_P (src_eqv_here)) src_const = src_eqv_here, src_const_elt = src_eqv_elt; /* If we don't know if the constant is in the table, get its hash code and look it up. */ if (src_const && src_const_elt == 0) { sets[i].src_const_hash = HASH (src_const, mode); src_const_elt = lookup (src_const, sets[i].src_const_hash, mode); } sets[i].src_const = src_const; sets[i].src_const_elt = src_const_elt; /* If the constant and our source are both in the table, mark them as equivalent. Otherwise, if a constant is in the table but the source isn't, set ELT to it. */ if (src_const_elt && elt && src_const_elt->first_same_value != elt->first_same_value) merge_equiv_classes (elt, src_const_elt); else if (src_const_elt && elt == 0) elt = src_const_elt; /* See if there is a register linearly related to a constant equivalent of SRC. */ if (src_const && (GET_CODE (src_const) == CONST || (src_const_elt && src_const_elt->related_value != 0))) { src_related = use_related_value (src_const, src_const_elt); if (src_related) { struct table_elt *src_related_elt = lookup (src_related, HASH (src_related, mode), mode); if (src_related_elt && elt) { if (elt->first_same_value != src_related_elt->first_same_value) /* This can occur when we previously saw a CONST involving a SYMBOL_REF and then see the SYMBOL_REF twice. Merge the involved classes. */ merge_equiv_classes (elt, src_related_elt); src_related = 0; src_related_elt = 0; } else if (src_related_elt && elt == 0) elt = src_related_elt; } } /* See if we have a CONST_INT that is already in a register in a wider mode. */ if (src_const && src_related == 0 && GET_CODE (src_const) == CONST_INT && GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_BITSIZE (mode) < BITS_PER_WORD) { enum machine_mode wider_mode; for (wider_mode = GET_MODE_WIDER_MODE (mode); GET_MODE_BITSIZE (wider_mode) <= BITS_PER_WORD && src_related == 0; wider_mode = GET_MODE_WIDER_MODE (wider_mode)) { struct table_elt *const_elt = lookup (src_const, HASH (src_const, wider_mode), wider_mode); if (const_elt == 0) continue; for (const_elt = const_elt->first_same_value; const_elt; const_elt = const_elt->next_same_value) if (REG_P (const_elt->exp)) { src_related = gen_lowpart (mode, const_elt->exp); break; } } } /* Another possibility is that we have an AND with a constant in a mode narrower than a word. If so, it might have been generated as part of an "if" which would narrow the AND. If we already have done the AND in a wider mode, we can use a SUBREG of that value. */ if (flag_expensive_optimizations && ! src_related && GET_CODE (src) == AND && GET_CODE (XEXP (src, 1)) == CONST_INT && GET_MODE_SIZE (mode) < UNITS_PER_WORD) { enum machine_mode tmode; rtx new_and = gen_rtx_AND (VOIDmode, NULL_RTX, XEXP (src, 1)); for (tmode = GET_MODE_WIDER_MODE (mode); GET_MODE_SIZE (tmode) <= UNITS_PER_WORD; tmode = GET_MODE_WIDER_MODE (tmode)) { rtx inner = gen_lowpart (tmode, XEXP (src, 0)); struct table_elt *larger_elt; if (inner) { PUT_MODE (new_and, tmode); XEXP (new_and, 0) = inner; larger_elt = lookup (new_and, HASH (new_and, tmode), tmode); if (larger_elt == 0) continue; for (larger_elt = larger_elt->first_same_value; larger_elt; larger_elt = larger_elt->next_same_value) if (REG_P (larger_elt->exp)) { src_related = gen_lowpart (mode, larger_elt->exp); break; } if (src_related) break; } } } #ifdef LOAD_EXTEND_OP /* See if a MEM has already been loaded with a widening operation; if it has, we can use a subreg of that. Many CISC machines also have such operations, but this is only likely to be beneficial on these machines. */ if (flag_expensive_optimizations && src_related == 0 && (GET_MODE_SIZE (mode) < UNITS_PER_WORD) && GET_MODE_CLASS (mode) == MODE_INT && MEM_P (src) && ! do_not_record && LOAD_EXTEND_OP (mode) != UNKNOWN) { struct rtx_def memory_extend_buf; rtx memory_extend_rtx = &memory_extend_buf; enum machine_mode tmode; /* Set what we are trying to extend and the operation it might have been extended with. */ memset (memory_extend_rtx, 0, sizeof(*memory_extend_rtx)); PUT_CODE (memory_extend_rtx, LOAD_EXTEND_OP (mode)); XEXP (memory_extend_rtx, 0) = src; for (tmode = GET_MODE_WIDER_MODE (mode); GET_MODE_SIZE (tmode) <= UNITS_PER_WORD; tmode = GET_MODE_WIDER_MODE (tmode)) { struct table_elt *larger_elt; PUT_MODE (memory_extend_rtx, tmode); larger_elt = lookup (memory_extend_rtx, HASH (memory_extend_rtx, tmode), tmode); if (larger_elt == 0) continue; for (larger_elt = larger_elt->first_same_value; larger_elt; larger_elt = larger_elt->next_same_value) if (REG_P (larger_elt->exp)) { src_related = gen_lowpart (mode, larger_elt->exp); break; } if (src_related) break; } } #endif /* LOAD_EXTEND_OP */ if (src == src_folded) src_folded = 0; /* At this point, ELT, if nonzero, points to a class of expressions equivalent to the source of this SET and SRC, SRC_EQV, SRC_FOLDED, and SRC_RELATED, if nonzero, each contain additional equivalent expressions. Prune these latter expressions by deleting expressions already in the equivalence class. Check for an equivalent identical to the destination. If found, this is the preferred equivalent since it will likely lead to elimination of the insn. Indicate this by placing it in `src_related'. */ if (elt) elt = elt->first_same_value; for (p = elt; p; p = p->next_same_value) { enum rtx_code code = GET_CODE (p->exp); /* If the expression is not valid, ignore it. Then we do not have to check for validity below. In most cases, we can use `rtx_equal_p', since canonicalization has already been done. */ if (code != REG && ! exp_equiv_p (p->exp, p->exp, 1, false)) continue; /* Also skip paradoxical subregs, unless that's what we're looking for. */ if (code == SUBREG && (GET_MODE_SIZE (GET_MODE (p->exp)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (p->exp)))) && ! (src != 0 && GET_CODE (src) == SUBREG && GET_MODE (src) == GET_MODE (p->exp) && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))) < GET_MODE_SIZE (GET_MODE (SUBREG_REG (p->exp)))))) continue; if (src && GET_CODE (src) == code && rtx_equal_p (src, p->exp)) src = 0; else if (src_folded && GET_CODE (src_folded) == code && rtx_equal_p (src_folded, p->exp)) src_folded = 0; else if (src_eqv_here && GET_CODE (src_eqv_here) == code && rtx_equal_p (src_eqv_here, p->exp)) src_eqv_here = 0; else if (src_related && GET_CODE (src_related) == code && rtx_equal_p (src_related, p->exp)) src_related = 0; /* This is the same as the destination of the insns, we want to prefer it. Copy it to src_related. The code below will then give it a negative cost. */ if (GET_CODE (dest) == code && rtx_equal_p (p->exp, dest)) src_related = dest; } /* Find the cheapest valid equivalent, trying all the available possibilities. Prefer items not in the hash table to ones that are when they are equal cost. Note that we can never worsen an insn as the current contents will also succeed. If we find an equivalent identical to the destination, use it as best, since this insn will probably be eliminated in that case. */ if (src) { if (rtx_equal_p (src, dest)) src_cost = src_regcost = -1; else { src_cost = COST (src); src_regcost = approx_reg_cost (src); } } if (src_eqv_here) { if (rtx_equal_p (src_eqv_here, dest)) src_eqv_cost = src_eqv_regcost = -1; else { src_eqv_cost = COST (src_eqv_here); src_eqv_regcost = approx_reg_cost (src_eqv_here); } } if (src_folded) { if (rtx_equal_p (src_folded, dest)) src_folded_cost = src_folded_regcost = -1; else { src_folded_cost = COST (src_folded); src_folded_regcost = approx_reg_cost (src_folded); } } if (src_related) { if (rtx_equal_p (src_related, dest)) src_related_cost = src_related_regcost = -1; else { src_related_cost = COST (src_related); src_related_regcost = approx_reg_cost (src_related); } } /* If this was an indirect jump insn, a known label will really be cheaper even though it looks more expensive. */ if (dest == pc_rtx && src_const && GET_CODE (src_const) == LABEL_REF) src_folded = src_const, src_folded_cost = src_folded_regcost = -1; /* Terminate loop when replacement made. This must terminate since the current contents will be tested and will always be valid. */ while (1) { rtx trial; /* Skip invalid entries. */ while (elt && !REG_P (elt->exp) && ! exp_equiv_p (elt->exp, elt->exp, 1, false)) elt = elt->next_same_value; /* A paradoxical subreg would be bad here: it'll be the right size, but later may be adjusted so that the upper bits aren't what we want. So reject it. */ if (elt != 0 && GET_CODE (elt->exp) == SUBREG && (GET_MODE_SIZE (GET_MODE (elt->exp)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (elt->exp)))) /* It is okay, though, if the rtx we're trying to match will ignore any of the bits we can't predict. */ && ! (src != 0 && GET_CODE (src) == SUBREG && GET_MODE (src) == GET_MODE (elt->exp) && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))) < GET_MODE_SIZE (GET_MODE (SUBREG_REG (elt->exp)))))) { elt = elt->next_same_value; continue; } if (elt) { src_elt_cost = elt->cost; src_elt_regcost = elt->regcost; } /* Find cheapest and skip it for the next time. For items of equal cost, use this order: src_folded, src, src_eqv, src_related and hash table entry. */ if (src_folded && preferable (src_folded_cost, src_folded_regcost, src_cost, src_regcost) <= 0 && preferable (src_folded_cost, src_folded_regcost, src_eqv_cost, src_eqv_regcost) <= 0 && preferable (src_folded_cost, src_folded_regcost, src_related_cost, src_related_regcost) <= 0 && preferable (src_folded_cost, src_folded_regcost, src_elt_cost, src_elt_regcost) <= 0) { trial = src_folded, src_folded_cost = MAX_COST; if (src_folded_force_flag) { rtx forced = force_const_mem (mode, trial); if (forced) trial = forced; } } else if (src && preferable (src_cost, src_regcost, src_eqv_cost, src_eqv_regcost) <= 0 && preferable (src_cost, src_regcost, src_related_cost, src_related_regcost) <= 0 && preferable (src_cost, src_regcost, src_elt_cost, src_elt_regcost) <= 0) trial = src, src_cost = MAX_COST; else if (src_eqv_here && preferable (src_eqv_cost, src_eqv_regcost, src_related_cost, src_related_regcost) <= 0 && preferable (src_eqv_cost, src_eqv_regcost, src_elt_cost, src_elt_regcost) <= 0) trial = src_eqv_here, src_eqv_cost = MAX_COST; else if (src_related && preferable (src_related_cost, src_related_regcost, src_elt_cost, src_elt_regcost) <= 0) trial = src_related, src_related_cost = MAX_COST; else { trial = elt->exp; elt = elt->next_same_value; src_elt_cost = MAX_COST; } /* We don't normally have an insn matching (set (pc) (pc)), so check for this separately here. We will delete such an insn below. For other cases such as a table jump or conditional jump where we know the ultimate target, go ahead and replace the operand. While that may not make a valid insn, we will reemit the jump below (and also insert any necessary barriers). */ if (n_sets == 1 && dest == pc_rtx && (trial == pc_rtx || (GET_CODE (trial) == LABEL_REF && ! condjump_p (insn)))) { /* Don't substitute non-local labels, this confuses CFG. */ if (GET_CODE (trial) == LABEL_REF && LABEL_REF_NONLOCAL_P (trial)) continue; SET_SRC (sets[i].rtl) = trial; cse_jumps_altered = true; break; } /* Reject certain invalid forms of CONST that we create. */ else if (CONSTANT_P (trial) && GET_CODE (trial) == CONST /* Reject cases that will cause decode_rtx_const to die. On the alpha when simplifying a switch, we get (const (truncate (minus (label_ref) (label_ref)))). */ && (GET_CODE (XEXP (trial, 0)) == TRUNCATE /* Likewise on IA-64, except without the truncate. */ || (GET_CODE (XEXP (trial, 0)) == MINUS && GET_CODE (XEXP (XEXP (trial, 0), 0)) == LABEL_REF && GET_CODE (XEXP (XEXP (trial, 0), 1)) == LABEL_REF))) /* Do nothing for this case. */ ; /* Look for a substitution that makes a valid insn. */ else if (validate_unshare_change (insn, &SET_SRC (sets[i].rtl), trial, 0)) { rtx new = canon_reg (SET_SRC (sets[i].rtl), insn); /* If we just made a substitution inside a libcall, then we need to make the same substitution in any notes attached to the RETVAL insn. */ if (libcall_insn && (REG_P (sets[i].orig_src) || GET_CODE (sets[i].orig_src) == SUBREG || MEM_P (sets[i].orig_src))) { rtx note = find_reg_equal_equiv_note (libcall_insn); if (note != 0) XEXP (note, 0) = simplify_replace_rtx (XEXP (note, 0), sets[i].orig_src, copy_rtx (new)); df_notes_rescan (libcall_insn); } /* The result of apply_change_group can be ignored; see canon_reg. */ validate_change (insn, &SET_SRC (sets[i].rtl), new, 1); apply_change_group (); break; } /* If we previously found constant pool entries for constants and this is a constant, try making a pool entry. Put it in src_folded unless we already have done this since that is where it likely came from. */ else if (constant_pool_entries_cost && CONSTANT_P (trial) && (src_folded == 0 || (!MEM_P (src_folded) && ! src_folded_force_flag)) && GET_MODE_CLASS (mode) != MODE_CC && mode != VOIDmode) { src_folded_force_flag = 1; src_folded = trial; src_folded_cost = constant_pool_entries_cost; src_folded_regcost = constant_pool_entries_regcost; } } src = SET_SRC (sets[i].rtl); /* In general, it is good to have a SET with SET_SRC == SET_DEST. However, there is an important exception: If both are registers that are not the head of their equivalence class, replace SET_SRC with the head of the class. If we do not do this, we will have both registers live over a portion of the basic block. This way, their lifetimes will likely abut instead of overlapping. */ if (REG_P (dest) && REGNO_QTY_VALID_P (REGNO (dest))) { int dest_q = REG_QTY (REGNO (dest)); struct qty_table_elem *dest_ent = &qty_table[dest_q]; if (dest_ent->mode == GET_MODE (dest) && dest_ent->first_reg != REGNO (dest) && REG_P (src) && REGNO (src) == REGNO (dest) /* Don't do this if the original insn had a hard reg as SET_SRC or SET_DEST. */ && (!REG_P (sets[i].src) || REGNO (sets[i].src) >= FIRST_PSEUDO_REGISTER) && (!REG_P (dest) || REGNO (dest) >= FIRST_PSEUDO_REGISTER)) /* We can't call canon_reg here because it won't do anything if SRC is a hard register. */ { int src_q = REG_QTY (REGNO (src)); struct qty_table_elem *src_ent = &qty_table[src_q]; int first = src_ent->first_reg; rtx new_src = (first >= FIRST_PSEUDO_REGISTER ? regno_reg_rtx[first] : gen_rtx_REG (GET_MODE (src), first)); /* We must use validate-change even for this, because this might be a special no-op instruction, suitable only to tag notes onto. */ if (validate_change (insn, &SET_SRC (sets[i].rtl), new_src, 0)) { src = new_src; /* If we had a constant that is cheaper than what we are now setting SRC to, use that constant. We ignored it when we thought we could make this into a no-op. */ if (src_const && COST (src_const) < COST (src) && validate_change (insn, &SET_SRC (sets[i].rtl), src_const, 0)) src = src_const; } } } /* If we made a change, recompute SRC values. */ if (src != sets[i].src) { do_not_record = 0; hash_arg_in_memory = 0; sets[i].src = src; sets[i].src_hash = HASH (src, mode); sets[i].src_volatile = do_not_record; sets[i].src_in_memory = hash_arg_in_memory; sets[i].src_elt = lookup (src, sets[i].src_hash, mode); } /* If this is a single SET, we are setting a register, and we have an equivalent constant, we want to add a REG_NOTE. We don't want to write a REG_EQUAL note for a constant pseudo since verifying that that pseudo hasn't been eliminated is a pain. Such a note also won't help anything. Avoid a REG_EQUAL note for (CONST (MINUS (LABEL_REF) (LABEL_REF))) which can be created for a reference to a compile time computable entry in a jump table. */ if (n_sets == 1 && src_const && REG_P (dest) && !REG_P (src_const) && ! (GET_CODE (src_const) == CONST && GET_CODE (XEXP (src_const, 0)) == MINUS && GET_CODE (XEXP (XEXP (src_const, 0), 0)) == LABEL_REF && GET_CODE (XEXP (XEXP (src_const, 0), 1)) == LABEL_REF)) { /* We only want a REG_EQUAL note if src_const != src. */ if (! rtx_equal_p (src, src_const)) { /* Make sure that the rtx is not shared. */ src_const = copy_rtx (src_const); /* Record the actual constant value in a REG_EQUAL note, making a new one if one does not already exist. */ set_unique_reg_note (insn, REG_EQUAL, src_const); df_notes_rescan (insn); } } /* Now deal with the destination. */ do_not_record = 0; /* Look within any ZERO_EXTRACT to the MEM or REG within it. */ while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == STRICT_LOW_PART) dest = XEXP (dest, 0); sets[i].inner_dest = dest; if (MEM_P (dest)) { #ifdef PUSH_ROUNDING /* Stack pushes invalidate the stack pointer. */ rtx addr = XEXP (dest, 0); if (GET_RTX_CLASS (GET_CODE (addr)) == RTX_AUTOINC && XEXP (addr, 0) == stack_pointer_rtx) invalidate (stack_pointer_rtx, VOIDmode); #endif dest = fold_rtx (dest, insn); } /* Compute the hash code of the destination now, before the effects of this instruction are recorded, since the register values used in the address computation are those before this instruction. */ sets[i].dest_hash = HASH (dest, mode); /* Don't enter a bit-field in the hash table because the value in it after the store may not equal what was stored, due to truncation. */ if (GET_CODE (SET_DEST (sets[i].rtl)) == ZERO_EXTRACT) { rtx width = XEXP (SET_DEST (sets[i].rtl), 1); if (src_const != 0 && GET_CODE (src_const) == CONST_INT && GET_CODE (width) == CONST_INT && INTVAL (width) < HOST_BITS_PER_WIDE_INT && ! (INTVAL (src_const) & ((HOST_WIDE_INT) (-1) << INTVAL (width)))) /* Exception: if the value is constant, and it won't be truncated, record it. */ ; else { /* This is chosen so that the destination will be invalidated but no new value will be recorded. We must invalidate because sometimes constant values can be recorded for bitfields. */ sets[i].src_elt = 0; sets[i].src_volatile = 1; src_eqv = 0; src_eqv_elt = 0; } } /* If only one set in a JUMP_INSN and it is now a no-op, we can delete the insn. */ else if (n_sets == 1 && dest == pc_rtx && src == pc_rtx) { /* One less use of the label this insn used to jump to. */ delete_insn_and_edges (insn); cse_jumps_altered = true; /* No more processing for this set. */ sets[i].rtl = 0; } /* If this SET is now setting PC to a label, we know it used to be a conditional or computed branch. */ else if (dest == pc_rtx && GET_CODE (src) == LABEL_REF && !LABEL_REF_NONLOCAL_P (src)) { /* We reemit the jump in as many cases as possible just in case the form of an unconditional jump is significantly different than a computed jump or conditional jump. If this insn has multiple sets, then reemitting the jump is nontrivial. So instead we just force rerecognition and hope for the best. */ if (n_sets == 1) { rtx new, note; new = emit_jump_insn_before (gen_jump (XEXP (src, 0)), insn); JUMP_LABEL (new) = XEXP (src, 0); LABEL_NUSES (XEXP (src, 0))++; /* Make sure to copy over REG_NON_LOCAL_GOTO. */ note = find_reg_note (insn, REG_NON_LOCAL_GOTO, 0); if (note) { XEXP (note, 1) = NULL_RTX; REG_NOTES (new) = note; } delete_insn_and_edges (insn); insn = new; } else INSN_CODE (insn) = -1; /* Do not bother deleting any unreachable code, let jump do it. */ cse_jumps_altered = true; sets[i].rtl = 0; } /* If destination is volatile, invalidate it and then do no further processing for this assignment. */ else if (do_not_record) { if (REG_P (dest) || GET_CODE (dest) == SUBREG) invalidate (dest, VOIDmode); else if (MEM_P (dest)) invalidate (dest, VOIDmode); else if (GET_CODE (dest) == STRICT_LOW_PART || GET_CODE (dest) == ZERO_EXTRACT) invalidate (XEXP (dest, 0), GET_MODE (dest)); sets[i].rtl = 0; } if (sets[i].rtl != 0 && dest != SET_DEST (sets[i].rtl)) sets[i].dest_hash = HASH (SET_DEST (sets[i].rtl), mode); #ifdef HAVE_cc0 /* If setting CC0, record what it was set to, or a constant, if it is equivalent to a constant. If it is being set to a floating-point value, make a COMPARE with the appropriate constant of 0. If we don't do this, later code can interpret this as a test against const0_rtx, which can cause problems if we try to put it into an insn as a floating-point operand. */ if (dest == cc0_rtx) { this_insn_cc0 = src_const && mode != VOIDmode ? src_const : src; this_insn_cc0_mode = mode; if (FLOAT_MODE_P (mode)) this_insn_cc0 = gen_rtx_COMPARE (VOIDmode, this_insn_cc0, CONST0_RTX (mode)); } #endif } /* Now enter all non-volatile source expressions in the hash table if they are not already present. Record their equivalence classes in src_elt. This way we can insert the corresponding destinations into the same classes even if the actual sources are no longer in them (having been invalidated). */ if (src_eqv && src_eqv_elt == 0 && sets[0].rtl != 0 && ! src_eqv_volatile && ! rtx_equal_p (src_eqv, SET_DEST (sets[0].rtl))) { struct table_elt *elt; struct table_elt *classp = sets[0].src_elt; rtx dest = SET_DEST (sets[0].rtl); enum machine_mode eqvmode = GET_MODE (dest); if (GET_CODE (dest) == STRICT_LOW_PART) { eqvmode = GET_MODE (SUBREG_REG (XEXP (dest, 0))); classp = 0; } if (insert_regs (src_eqv, classp, 0)) { rehash_using_reg (src_eqv); src_eqv_hash = HASH (src_eqv, eqvmode); } elt = insert (src_eqv, classp, src_eqv_hash, eqvmode); elt->in_memory = src_eqv_in_memory; src_eqv_elt = elt; /* Check to see if src_eqv_elt is the same as a set source which does not yet have an elt, and if so set the elt of the set source to src_eqv_elt. */ for (i = 0; i < n_sets; i++) if (sets[i].rtl && sets[i].src_elt == 0 && rtx_equal_p (SET_SRC (sets[i].rtl), src_eqv)) sets[i].src_elt = src_eqv_elt; } for (i = 0; i < n_sets; i++) if (sets[i].rtl && ! sets[i].src_volatile && ! rtx_equal_p (SET_SRC (sets[i].rtl), SET_DEST (sets[i].rtl))) { if (GET_CODE (SET_DEST (sets[i].rtl)) == STRICT_LOW_PART) { /* REG_EQUAL in setting a STRICT_LOW_PART gives an equivalent for the entire destination register, not just for the subreg being stored in now. This is a more interesting equivalence, so we arrange later to treat the entire reg as the destination. */ sets[i].src_elt = src_eqv_elt; sets[i].src_hash = src_eqv_hash; } else { /* Insert source and constant equivalent into hash table, if not already present. */ struct table_elt *classp = src_eqv_elt; rtx src = sets[i].src; rtx dest = SET_DEST (sets[i].rtl); enum machine_mode mode = GET_MODE (src) == VOIDmode ? GET_MODE (dest) : GET_MODE (src); /* It's possible that we have a source value known to be constant but don't have a REG_EQUAL note on the insn. Lack of a note will mean src_eqv_elt will be NULL. This can happen where we've generated a SUBREG to access a CONST_INT that is already in a register in a wider mode. Ensure that the source expression is put in the proper constant class. */ if (!classp) classp = sets[i].src_const_elt; if (sets[i].src_elt == 0) { /* Don't put a hard register source into the table if this is the last insn of a libcall. In this case, we only need to put src_eqv_elt in src_elt. */ if (! find_reg_note (insn, REG_RETVAL, NULL_RTX)) { struct table_elt *elt; /* Note that these insert_regs calls cannot remove any of the src_elt's, because they would have failed to match if not still valid. */ if (insert_regs (src, classp, 0)) { rehash_using_reg (src); sets[i].src_hash = HASH (src, mode); } elt = insert (src, classp, sets[i].src_hash, mode); elt->in_memory = sets[i].src_in_memory; sets[i].src_elt = classp = elt; } else sets[i].src_elt = classp; } if (sets[i].src_const && sets[i].src_const_elt == 0 && src != sets[i].src_const && ! rtx_equal_p (sets[i].src_const, src)) sets[i].src_elt = insert (sets[i].src_const, classp, sets[i].src_const_hash, mode); } } else if (sets[i].src_elt == 0) /* If we did not insert the source into the hash table (e.g., it was volatile), note the equivalence class for the REG_EQUAL value, if any, so that the destination goes into that class. */ sets[i].src_elt = src_eqv_elt; /* Record destination addresses in the hash table. This allows us to check if they are invalidated by other sets. */ for (i = 0; i < n_sets; i++) { if (sets[i].rtl) { rtx x = sets[i].inner_dest; struct table_elt *elt; enum machine_mode mode; unsigned hash; if (MEM_P (x)) { x = XEXP (x, 0); mode = GET_MODE (x); hash = HASH (x, mode); elt = lookup (x, hash, mode); if (!elt) { if (insert_regs (x, NULL, 0)) { rtx dest = SET_DEST (sets[i].rtl); rehash_using_reg (x); hash = HASH (x, mode); sets[i].dest_hash = HASH (dest, GET_MODE (dest)); } elt = insert (x, NULL, hash, mode); } sets[i].dest_addr_elt = elt; } else sets[i].dest_addr_elt = NULL; } } invalidate_from_clobbers (x); /* Some registers are invalidated by subroutine calls. Memory is invalidated by non-constant calls. */ if (CALL_P (insn)) { if (! CONST_OR_PURE_CALL_P (insn)) invalidate_memory (); invalidate_for_call (); } /* Now invalidate everything set by this instruction. If a SUBREG or other funny destination is being set, sets[i].rtl is still nonzero, so here we invalidate the reg a part of which is being set. */ for (i = 0; i < n_sets; i++) if (sets[i].rtl) { /* We can't use the inner dest, because the mode associated with a ZERO_EXTRACT is significant. */ rtx dest = SET_DEST (sets[i].rtl); /* Needed for registers to remove the register from its previous quantity's chain. Needed for memory if this is a nonvarying address, unless we have just done an invalidate_memory that covers even those. */ if (REG_P (dest) || GET_CODE (dest) == SUBREG) invalidate (dest, VOIDmode); else if (MEM_P (dest)) invalidate (dest, VOIDmode); else if (GET_CODE (dest) == STRICT_LOW_PART || GET_CODE (dest) == ZERO_EXTRACT) invalidate (XEXP (dest, 0), GET_MODE (dest)); } /* A volatile ASM invalidates everything. */ if (NONJUMP_INSN_P (insn) && GET_CODE (PATTERN (insn)) == ASM_OPERANDS && MEM_VOLATILE_P (PATTERN (insn))) flush_hash_table (); /* Don't cse over a call to setjmp; on some machines (eg VAX) the regs restored by the longjmp come from a later time than the setjmp. */ if (CALL_P (insn) && find_reg_note (insn, REG_SETJMP, NULL)) { flush_hash_table (); goto done; } /* Make sure registers mentioned in destinations are safe for use in an expression to be inserted. This removes from the hash table any invalid entry that refers to one of these registers. We don't care about the return value from mention_regs because we are going to hash the SET_DEST values unconditionally. */ for (i = 0; i < n_sets; i++) { if (sets[i].rtl) { rtx x = SET_DEST (sets[i].rtl); if (!REG_P (x)) mention_regs (x); else { /* We used to rely on all references to a register becoming inaccessible when a register changes to a new quantity, since that changes the hash code. However, that is not safe, since after HASH_SIZE new quantities we get a hash 'collision' of a register with its own invalid entries. And since SUBREGs have been changed not to change their hash code with the hash code of the register, it wouldn't work any longer at all. So we have to check for any invalid references lying around now. This code is similar to the REG case in mention_regs, but it knows that reg_tick has been incremented, and it leaves reg_in_table as -1 . */ unsigned int regno = REGNO (x); unsigned int endregno = END_REGNO (x); unsigned int i; for (i = regno; i < endregno; i++) { if (REG_IN_TABLE (i) >= 0) { remove_invalid_refs (i); REG_IN_TABLE (i) = -1; } } } } } /* We may have just removed some of the src_elt's from the hash table. So replace each one with the current head of the same class. Also check if destination addresses have been removed. */ for (i = 0; i < n_sets; i++) if (sets[i].rtl) { if (sets[i].dest_addr_elt && sets[i].dest_addr_elt->first_same_value == 0) { /* The elt was removed, which means this destination is not valid after this instruction. */ sets[i].rtl = NULL_RTX; } else if (sets[i].src_elt && sets[i].src_elt->first_same_value == 0) /* If elt was removed, find current head of same class, or 0 if nothing remains of that class. */ { struct table_elt *elt = sets[i].src_elt; while (elt && elt->prev_same_value) elt = elt->prev_same_value; while (elt && elt->first_same_value == 0) elt = elt->next_same_value; sets[i].src_elt = elt ? elt->first_same_value : 0; } } /* Now insert the destinations into their equivalence classes. */ for (i = 0; i < n_sets; i++) if (sets[i].rtl) { rtx dest = SET_DEST (sets[i].rtl); struct table_elt *elt; /* Don't record value if we are not supposed to risk allocating floating-point values in registers that might be wider than memory. */ if ((flag_float_store && MEM_P (dest) && FLOAT_MODE_P (GET_MODE (dest))) /* Don't record BLKmode values, because we don't know the size of it, and can't be sure that other BLKmode values have the same or smaller size. */ || GET_MODE (dest) == BLKmode /* Don't record values of destinations set inside a libcall block since we might delete the libcall. Things should have been set up so we won't want to reuse such a value, but we play it safe here. */ || libcall_insn /* If we didn't put a REG_EQUAL value or a source into the hash table, there is no point is recording DEST. */ || sets[i].src_elt == 0 /* If DEST is a paradoxical SUBREG and SRC is a ZERO_EXTEND or SIGN_EXTEND, don't record DEST since it can cause some tracking to be wrong. ??? Think about this more later. */ || (GET_CODE (dest) == SUBREG && (GET_MODE_SIZE (GET_MODE (dest)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))) && (GET_CODE (sets[i].src) == SIGN_EXTEND || GET_CODE (sets[i].src) == ZERO_EXTEND))) continue; /* STRICT_LOW_PART isn't part of the value BEING set, and neither is the SUBREG inside it. Note that in this case SETS[I].SRC_ELT is really SRC_EQV_ELT. */ if (GET_CODE (dest) == STRICT_LOW_PART) dest = SUBREG_REG (XEXP (dest, 0)); if (REG_P (dest) || GET_CODE (dest) == SUBREG) /* Registers must also be inserted into chains for quantities. */ if (insert_regs (dest, sets[i].src_elt, 1)) { /* If `insert_regs' changes something, the hash code must be recalculated. */ rehash_using_reg (dest); sets[i].dest_hash = HASH (dest, GET_MODE (dest)); } elt = insert (dest, sets[i].src_elt, sets[i].dest_hash, GET_MODE (dest)); elt->in_memory = (MEM_P (sets[i].inner_dest) && !MEM_READONLY_P (sets[i].inner_dest)); /* If we have (set (subreg:m1 (reg:m2 foo) 0) (bar:m1)), M1 is no narrower than M2, and both M1 and M2 are the same number of words, we are also doing (set (reg:m2 foo) (subreg:m2 (bar:m1) 0)) so make that equivalence as well. However, BAR may have equivalences for which gen_lowpart will produce a simpler value than gen_lowpart applied to BAR (e.g., if BAR was ZERO_EXTENDed from M2), so we will scan all BAR's equivalences. If we don't get a simplified form, make the SUBREG. It will not be used in an equivalence, but will cause two similar assignments to be detected. Note the loop below will find SUBREG_REG (DEST) since we have already entered SRC and DEST of the SET in the table. */ if (GET_CODE (dest) == SUBREG && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))) - 1) / UNITS_PER_WORD) == (GET_MODE_SIZE (GET_MODE (dest)) - 1) / UNITS_PER_WORD) && (GET_MODE_SIZE (GET_MODE (dest)) >= GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))) && sets[i].src_elt != 0) { enum machine_mode new_mode = GET_MODE (SUBREG_REG (dest)); struct table_elt *elt, *classp = 0; for (elt = sets[i].src_elt->first_same_value; elt; elt = elt->next_same_value) { rtx new_src = 0; unsigned src_hash; struct table_elt *src_elt; int byte = 0; /* Ignore invalid entries. */ if (!REG_P (elt->exp) && ! exp_equiv_p (elt->exp, elt->exp, 1, false)) continue; /* We may have already been playing subreg games. If the mode is already correct for the destination, use it. */ if (GET_MODE (elt->exp) == new_mode) new_src = elt->exp; else { /* Calculate big endian correction for the SUBREG_BYTE. We have already checked that M1 (GET_MODE (dest)) is not narrower than M2 (new_mode). */ if (BYTES_BIG_ENDIAN) byte = (GET_MODE_SIZE (GET_MODE (dest)) - GET_MODE_SIZE (new_mode)); new_src = simplify_gen_subreg (new_mode, elt->exp, GET_MODE (dest), byte); } /* The call to simplify_gen_subreg fails if the value is VOIDmode, yet we can't do any simplification, e.g. for EXPR_LISTs denoting function call results. It is invalid to construct a SUBREG with a VOIDmode SUBREG_REG, hence a zero new_src means we can't do this substitution. */ if (! new_src) continue; src_hash = HASH (new_src, new_mode); src_elt = lookup (new_src, src_hash, new_mode); /* Put the new source in the hash table is if isn't already. */ if (src_elt == 0) { if (insert_regs (new_src, classp, 0)) { rehash_using_reg (new_src); src_hash = HASH (new_src, new_mode); } src_elt = insert (new_src, classp, src_hash, new_mode); src_elt->in_memory = elt->in_memory; } else if (classp && classp != src_elt->first_same_value) /* Show that two things that we've seen before are actually the same. */ merge_equiv_classes (src_elt, classp); classp = src_elt->first_same_value; /* Ignore invalid entries. */ while (classp && !REG_P (classp->exp) && ! exp_equiv_p (classp->exp, classp->exp, 1, false)) classp = classp->next_same_value; } } } /* Special handling for (set REG0 REG1) where REG0 is the "cheapest", cheaper than REG1. After cse, REG1 will probably not be used in the sequel, so (if easily done) change this insn to (set REG1 REG0) and replace REG1 with REG0 in the previous insn that computed their value. Then REG1 will become a dead store and won't cloud the situation for later optimizations. Do not make this change if REG1 is a hard register, because it will then be used in the sequel and we may be changing a two-operand insn into a three-operand insn. Also do not do this if we are operating on a copy of INSN. Also don't do this if INSN ends a libcall; this would cause an unrelated register to be set in the middle of a libcall, and we then get bad code if the libcall is deleted. */ if (n_sets == 1 && sets[0].rtl && REG_P (SET_DEST (sets[0].rtl)) && NEXT_INSN (PREV_INSN (insn)) == insn && REG_P (SET_SRC (sets[0].rtl)) && REGNO (SET_SRC (sets[0].rtl)) >= FIRST_PSEUDO_REGISTER && REGNO_QTY_VALID_P (REGNO (SET_SRC (sets[0].rtl)))) { int src_q = REG_QTY (REGNO (SET_SRC (sets[0].rtl))); struct qty_table_elem *src_ent = &qty_table[src_q]; if ((src_ent->first_reg == REGNO (SET_DEST (sets[0].rtl))) && ! find_reg_note (insn, REG_RETVAL, NULL_RTX)) { /* Scan for the previous nonnote insn, but stop at a basic block boundary. */ rtx prev = insn; rtx bb_head = BB_HEAD (BLOCK_FOR_INSN (insn)); do { prev = PREV_INSN (prev); } while (prev != bb_head && NOTE_P (prev)); /* Do not swap the registers around if the previous instruction attaches a REG_EQUIV note to REG1. ??? It's not entirely clear whether we can transfer a REG_EQUIV from the pseudo that originally shadowed an incoming argument to another register. Some uses of REG_EQUIV might rely on it being attached to REG1 rather than REG2. This section previously turned the REG_EQUIV into a REG_EQUAL note. We cannot do that because REG_EQUIV may provide an uninitialized stack slot when REG_PARM_STACK_SPACE is used. */ if (NONJUMP_INSN_P (prev) && GET_CODE (PATTERN (prev)) == SET && SET_DEST (PATTERN (prev)) == SET_SRC (sets[0].rtl) && ! find_reg_note (prev, REG_EQUIV, NULL_RTX)) { rtx dest = SET_DEST (sets[0].rtl); rtx src = SET_SRC (sets[0].rtl); rtx note; validate_change (prev, &SET_DEST (PATTERN (prev)), dest, 1); validate_change (insn, &SET_DEST (sets[0].rtl), src, 1); validate_change (insn, &SET_SRC (sets[0].rtl), dest, 1); apply_change_group (); /* If INSN has a REG_EQUAL note, and this note mentions REG0, then we must delete it, because the value in REG0 has changed. If the note's value is REG1, we must also delete it because that is now this insn's dest. */ note = find_reg_note (insn, REG_EQUAL, NULL_RTX); if (note != 0 && (reg_mentioned_p (dest, XEXP (note, 0)) || rtx_equal_p (src, XEXP (note, 0)))) remove_note (insn, note); } } } done:; } /* Remove from the hash table all expressions that reference memory. */ static void invalidate_memory (void) { int i; struct table_elt *p, *next; for (i = 0; i < HASH_SIZE; i++) for (p = table[i]; p; p = next) { next = p->next_same_hash; if (p->in_memory) remove_from_table (p, i); } } /* Perform invalidation on the basis of everything about an insn except for invalidating the actual places that are SET in it. This includes the places CLOBBERed, and anything that might alias with something that is SET or CLOBBERed. X is the pattern of the insn. */ static void invalidate_from_clobbers (rtx x) { if (GET_CODE (x) == CLOBBER) { rtx ref = XEXP (x, 0); if (ref) { if (REG_P (ref) || GET_CODE (ref) == SUBREG || MEM_P (ref)) invalidate (ref, VOIDmode); else if (GET_CODE (ref) == STRICT_LOW_PART || GET_CODE (ref) == ZERO_EXTRACT) invalidate (XEXP (ref, 0), GET_MODE (ref)); } } else if (GET_CODE (x) == PARALLEL) { int i; for (i = XVECLEN (x, 0) - 1; i >= 0; i--) { rtx y = XVECEXP (x, 0, i); if (GET_CODE (y) == CLOBBER) { rtx ref = XEXP (y, 0); if (REG_P (ref) || GET_CODE (ref) == SUBREG || MEM_P (ref)) invalidate (ref, VOIDmode); else if (GET_CODE (ref) == STRICT_LOW_PART || GET_CODE (ref) == ZERO_EXTRACT) invalidate (XEXP (ref, 0), GET_MODE (ref)); } } } } /* Process X, part of the REG_NOTES of an insn. Look at any REG_EQUAL notes and replace any registers in them with either an equivalent constant or the canonical form of the register. If we are inside an address, only do this if the address remains valid. OBJECT is 0 except when within a MEM in which case it is the MEM. Return the replacement for X. */ static rtx cse_process_notes_1 (rtx x, rtx object, bool *changed) { enum rtx_code code = GET_CODE (x); const char *fmt = GET_RTX_FORMAT (code); int i; switch (code) { case CONST_INT: case CONST: case SYMBOL_REF: case LABEL_REF: case CONST_DOUBLE: case CONST_FIXED: case CONST_VECTOR: case PC: case CC0: case LO_SUM: return x; case MEM: validate_change (x, &XEXP (x, 0), cse_process_notes (XEXP (x, 0), x, changed), 0); return x; case EXPR_LIST: case INSN_LIST: if (REG_NOTE_KIND (x) == REG_EQUAL) XEXP (x, 0) = cse_process_notes (XEXP (x, 0), NULL_RTX, changed); if (XEXP (x, 1)) XEXP (x, 1) = cse_process_notes (XEXP (x, 1), NULL_RTX, changed); return x; case SIGN_EXTEND: case ZERO_EXTEND: case SUBREG: { rtx new = cse_process_notes (XEXP (x, 0), object, changed); /* We don't substitute VOIDmode constants into these rtx, since they would impede folding. */ if (GET_MODE (new) != VOIDmode) validate_change (object, &XEXP (x, 0), new, 0); return x; } case REG: i = REG_QTY (REGNO (x)); /* Return a constant or a constant register. */ if (REGNO_QTY_VALID_P (REGNO (x))) { struct qty_table_elem *ent = &qty_table[i]; if (ent->const_rtx != NULL_RTX && (CONSTANT_P (ent->const_rtx) || REG_P (ent->const_rtx))) { rtx new = gen_lowpart (GET_MODE (x), ent->const_rtx); if (new) return copy_rtx (new); } } /* Otherwise, canonicalize this register. */ return canon_reg (x, NULL_RTX); default: break; } for (i = 0; i < GET_RTX_LENGTH (code); i++) if (fmt[i] == 'e') validate_change (object, &XEXP (x, i), cse_process_notes (XEXP (x, i), object, changed), 0); return x; } static rtx cse_process_notes (rtx x, rtx object, bool *changed) { rtx new = cse_process_notes_1 (x, object, changed); if (new != x) *changed = true; return new; } /* Find a path in the CFG, starting with FIRST_BB to perform CSE on. DATA is a pointer to a struct cse_basic_block_data, that is used to describe the path. It is filled with a queue of basic blocks, starting with FIRST_BB and following a trace through the CFG. If all paths starting at FIRST_BB have been followed, or no new path starting at FIRST_BB can be constructed, this function returns FALSE. Otherwise, DATA->path is filled and the function returns TRUE indicating that a path to follow was found. If FOLLOW_JUMPS is false, the maximum path length is 1 and the only block in the path will be FIRST_BB. */ static bool cse_find_path (basic_block first_bb, struct cse_basic_block_data *data, int follow_jumps) { basic_block bb; edge e; int path_size; SET_BIT (cse_visited_basic_blocks, first_bb->index); /* See if there is a previous path. */ path_size = data->path_size; /* There is a previous path. Make sure it started with FIRST_BB. */ if (path_size) gcc_assert (data->path[0].bb == first_bb); /* There was only one basic block in the last path. Clear the path and return, so that paths starting at another basic block can be tried. */ if (path_size == 1) { path_size = 0; goto done; } /* If the path was empty from the beginning, construct a new path. */ if (path_size == 0) data->path[path_size++].bb = first_bb; else { /* Otherwise, path_size must be equal to or greater than 2, because a previous path exists that is at least two basic blocks long. Update the previous branch path, if any. If the last branch was previously along the branch edge, take the fallthrough edge now. */ while (path_size >= 2) { basic_block last_bb_in_path, previous_bb_in_path; edge e; --path_size; last_bb_in_path = data->path[path_size].bb; previous_bb_in_path = data->path[path_size - 1].bb; /* If we previously followed a path along the branch edge, try the fallthru edge now. */ if (EDGE_COUNT (previous_bb_in_path->succs) == 2 && any_condjump_p (BB_END (previous_bb_in_path)) && (e = find_edge (previous_bb_in_path, last_bb_in_path)) && e == BRANCH_EDGE (previous_bb_in_path)) { bb = FALLTHRU_EDGE (previous_bb_in_path)->dest; if (bb != EXIT_BLOCK_PTR && single_pred_p (bb) /* We used to assert here that we would only see blocks that we have not visited yet. But we may end up visiting basic blocks twice if the CFG has changed in this run of cse_main, because when the CFG changes the topological sort of the CFG also changes. A basic blocks that previously had more than two predecessors may now have a single predecessor, and become part of a path that starts at another basic block. We still want to visit each basic block only once, so halt the path here if we have already visited BB. */ && !TEST_BIT (cse_visited_basic_blocks, bb->index)) { SET_BIT (cse_visited_basic_blocks, bb->index); data->path[path_size++].bb = bb; break; } } data->path[path_size].bb = NULL; } /* If only one block remains in the path, bail. */ if (path_size == 1) { path_size = 0; goto done; } } /* Extend the path if possible. */ if (follow_jumps) { bb = data->path[path_size - 1].bb; while (bb && path_size < PARAM_VALUE (PARAM_MAX_CSE_PATH_LENGTH)) { if (single_succ_p (bb)) e = single_succ_edge (bb); else if (EDGE_COUNT (bb->succs) == 2 && any_condjump_p (BB_END (bb))) { /* First try to follow the branch. If that doesn't lead to a useful path, follow the fallthru edge. */ e = BRANCH_EDGE (bb); if (!single_pred_p (e->dest)) e = FALLTHRU_EDGE (bb); } else e = NULL; if (e && e->dest != EXIT_BLOCK_PTR && single_pred_p (e->dest) /* Avoid visiting basic blocks twice. The large comment above explains why this can happen. */ && !TEST_BIT (cse_visited_basic_blocks, e->dest->index)) { basic_block bb2 = e->dest; SET_BIT (cse_visited_basic_blocks, bb2->index); data->path[path_size++].bb = bb2; bb = bb2; } else bb = NULL; } } done: data->path_size = path_size; return path_size != 0; } /* Dump the path in DATA to file F. NSETS is the number of sets in the path. */ static void cse_dump_path (struct cse_basic_block_data *data, int nsets, FILE *f) { int path_entry; fprintf (f, ";; Following path with %d sets: ", nsets); for (path_entry = 0; path_entry < data->path_size; path_entry++) fprintf (f, "%d ", (data->path[path_entry].bb)->index); fputc ('\n', dump_file); fflush (f); } /* Return true if BB has exception handling successor edges. */ static bool have_eh_succ_edges (basic_block bb) { edge e; edge_iterator ei; FOR_EACH_EDGE (e, ei, bb->succs) if (e->flags & EDGE_EH) return true; return false; } /* Scan to the end of the path described by DATA. Return an estimate of the total number of SETs of all insns in the path. */ static void cse_prescan_path (struct cse_basic_block_data *data) { int nsets = 0; int path_size = data->path_size; int path_entry; /* Scan to end of each basic block in the path. */ for (path_entry = 0; path_entry < path_size; path_entry++) { basic_block bb; rtx insn; bb = data->path[path_entry].bb; FOR_BB_INSNS (bb, insn) { if (!INSN_P (insn)) continue; /* A PARALLEL can have lots of SETs in it, especially if it is really an ASM_OPERANDS. */ if (GET_CODE (PATTERN (insn)) == PARALLEL) nsets += XVECLEN (PATTERN (insn), 0); else nsets += 1; } } data->nsets = nsets; } /* Process a single extended basic block described by EBB_DATA. */ static void cse_extended_basic_block (struct cse_basic_block_data *ebb_data) { int path_size = ebb_data->path_size; int path_entry; int num_insns = 0; /* Allocate the space needed by qty_table. */ qty_table = XNEWVEC (struct qty_table_elem, max_qty); new_basic_block (); cse_ebb_live_in = df_get_live_in (ebb_data->path[0].bb); cse_ebb_live_out = df_get_live_out (ebb_data->path[path_size - 1].bb); for (path_entry = 0; path_entry < path_size; path_entry++) { basic_block bb; rtx insn; rtx libcall_insn = NULL_RTX; int no_conflict = 0; bb = ebb_data->path[path_entry].bb; FOR_BB_INSNS (bb, insn) { /* If we have processed 1,000 insns, flush the hash table to avoid extreme quadratic behavior. We must not include NOTEs in the count since there may be more of them when generating debugging information. If we clear the table at different times, code generated with -g -O might be different than code generated with -O but not -g. FIXME: This is a real kludge and needs to be done some other way. */ if (INSN_P (insn) && num_insns++ > PARAM_VALUE (PARAM_MAX_CSE_INSNS)) { flush_hash_table (); num_insns = 0; } if (INSN_P (insn)) { /* Process notes first so we have all notes in canonical forms when looking for duplicate operations. */ if (REG_NOTES (insn)) { bool changed = false; REG_NOTES (insn) = cse_process_notes (REG_NOTES (insn), NULL_RTX, &changed); if (changed) df_notes_rescan (insn); } /* Track when we are inside in LIBCALL block. Inside such a block we do not want to record destinations. The last insn of a LIBCALL block is not considered to be part of the block, since its destination is the result of the block and hence should be recorded. */ if (REG_NOTES (insn) != 0) { rtx p; if ((p = find_reg_note (insn, REG_LIBCALL, NULL_RTX))) libcall_insn = XEXP (p, 0); else if (find_reg_note (insn, REG_RETVAL, NULL_RTX)) { /* Keep libcall_insn for the last SET insn of a no-conflict block to prevent changing the destination. */ if (!no_conflict) libcall_insn = NULL_RTX; else no_conflict = -1; } else if (find_reg_note (insn, REG_NO_CONFLICT, NULL_RTX)) no_conflict = 1; } cse_insn (insn, libcall_insn); /* If we kept libcall_insn for a no-conflict bock, clear it here. */ if (no_conflict == -1) { libcall_insn = NULL_RTX; no_conflict = 0; } /* If we haven't already found an insn where we added a LABEL_REF, check this one. */ if (INSN_P (insn) && !recorded_label_ref && for_each_rtx (&PATTERN (insn), check_for_label_ref, (void *) insn)) recorded_label_ref = true; #ifdef HAVE_cc0 /* If the previous insn set CC0 and this insn no longer references CC0, delete the previous insn. Here we use fact that nothing expects CC0 to be valid over an insn, which is true until the final pass. */ { rtx prev_insn, tem; prev_insn = PREV_INSN (insn); if (prev_insn && NONJUMP_INSN_P (prev_insn) && (tem = single_set (prev_insn)) != 0 && SET_DEST (tem) == cc0_rtx && ! reg_mentioned_p (cc0_rtx, PATTERN (insn))) delete_insn (prev_insn); } /* If this insn is not the last insn in the basic block, it will be PREV_INSN(insn) in the next iteration. If we recorded any CC0-related information for this insn, remember it. */ if (insn != BB_END (bb)) { prev_insn_cc0 = this_insn_cc0; prev_insn_cc0_mode = this_insn_cc0_mode; } #endif } } /* Make sure that libcalls don't span multiple basic blocks. */ gcc_assert (libcall_insn == NULL_RTX); /* With non-call exceptions, we are not always able to update the CFG properly inside cse_insn. So clean up possibly redundant EH edges here. */ if (flag_non_call_exceptions && have_eh_succ_edges (bb)) cse_cfg_altered |= purge_dead_edges (bb); /* If we changed a conditional jump, we may have terminated the path we are following. Check that by verifying that the edge we would take still exists. If the edge does not exist anymore, purge the remainder of the path. Note that this will cause us to return to the caller. */ if (path_entry < path_size - 1) { basic_block next_bb = ebb_data->path[path_entry + 1].bb; if (!find_edge (bb, next_bb)) { do { path_size--; /* If we truncate the path, we must also reset the visited bit on the remaining blocks in the path, or we will never visit them at all. */ RESET_BIT (cse_visited_basic_blocks, ebb_data->path[path_size].bb->index); ebb_data->path[path_size].bb = NULL; } while (path_size - 1 != path_entry); ebb_data->path_size = path_size; } } /* If this is a conditional jump insn, record any known equivalences due to the condition being tested. */ insn = BB_END (bb); if (path_entry < path_size - 1 && JUMP_P (insn) && single_set (insn) && any_condjump_p (insn)) { basic_block next_bb = ebb_data->path[path_entry + 1].bb; bool taken = (next_bb == BRANCH_EDGE (bb)->dest); record_jump_equiv (insn, taken); } #ifdef HAVE_cc0 /* Clear the CC0-tracking related insns, they can't provide useful information across basic block boundaries. */ prev_insn_cc0 = 0; #endif } gcc_assert (next_qty <= max_qty); free (qty_table); } /* Perform cse on the instructions of a function. F is the first instruction. NREGS is one plus the highest pseudo-reg number used in the instruction. Return 2 if jump optimizations should be redone due to simplifications in conditional jump instructions. Return 1 if the CFG should be cleaned up because it has been modified. Return 0 otherwise. */ int cse_main (rtx f ATTRIBUTE_UNUSED, int nregs) { struct cse_basic_block_data ebb_data; basic_block bb; int *rc_order = XNEWVEC (int, last_basic_block); int i, n_blocks; df_set_flags (DF_LR_RUN_DCE); df_analyze (); df_set_flags (DF_DEFER_INSN_RESCAN); reg_scan (get_insns (), max_reg_num ()); init_cse_reg_info (nregs); ebb_data.path = XNEWVEC (struct branch_path, PARAM_VALUE (PARAM_MAX_CSE_PATH_LENGTH)); cse_cfg_altered = false; cse_jumps_altered = false; recorded_label_ref = false; constant_pool_entries_cost = 0; constant_pool_entries_regcost = 0; ebb_data.path_size = 0; ebb_data.nsets = 0; rtl_hooks = cse_rtl_hooks; init_recog (); init_alias_analysis (); reg_eqv_table = XNEWVEC (struct reg_eqv_elem, nregs); /* Set up the table of already visited basic blocks. */ cse_visited_basic_blocks = sbitmap_alloc (last_basic_block); sbitmap_zero (cse_visited_basic_blocks); /* Loop over basic blocks in reverse completion order (RPO), excluding the ENTRY and EXIT blocks. */ n_blocks = pre_and_rev_post_order_compute (NULL, rc_order, false); i = 0; while (i < n_blocks) { /* Find the first block in the RPO queue that we have not yet processed before. */ do { bb = BASIC_BLOCK (rc_order[i++]); } while (TEST_BIT (cse_visited_basic_blocks, bb->index) && i < n_blocks); /* Find all paths starting with BB, and process them. */ while (cse_find_path (bb, &ebb_data, flag_cse_follow_jumps)) { /* Pre-scan the path. */ cse_prescan_path (&ebb_data); /* If this basic block has no sets, skip it. */ if (ebb_data.nsets == 0) continue; /* Get a reasonable estimate for the maximum number of qty's needed for this path. For this, we take the number of sets and multiply that by MAX_RECOG_OPERANDS. */ max_qty = ebb_data.nsets * MAX_RECOG_OPERANDS; /* Dump the path we're about to process. */ if (dump_file) cse_dump_path (&ebb_data, ebb_data.nsets, dump_file); cse_extended_basic_block (&ebb_data); } } /* Clean up. */ end_alias_analysis (); free (reg_eqv_table); free (ebb_data.path); sbitmap_free (cse_visited_basic_blocks); free (rc_order); rtl_hooks = general_rtl_hooks; if (cse_jumps_altered || recorded_label_ref) return 2; else if (cse_cfg_altered) return 1; else return 0; } /* Called via for_each_rtx to see if an insn is using a LABEL_REF for which there isn't a REG_LABEL_OPERAND note. Return one if so. DATA is the insn. */ static int check_for_label_ref (rtx *rtl, void *data) { rtx insn = (rtx) data; /* If this insn uses a LABEL_REF and there isn't a REG_LABEL_OPERAND note for it, we must rerun jump since it needs to place the note. If this is a LABEL_REF for a CODE_LABEL that isn't in the insn chain, don't do this since no REG_LABEL_OPERAND will be added. */ return (GET_CODE (*rtl) == LABEL_REF && ! LABEL_REF_NONLOCAL_P (*rtl) && (!JUMP_P (insn) || !label_is_jump_target_p (XEXP (*rtl, 0), insn)) && LABEL_P (XEXP (*rtl, 0)) && INSN_UID (XEXP (*rtl, 0)) != 0 && ! find_reg_note (insn, REG_LABEL_OPERAND, XEXP (*rtl, 0))); } /* Count the number of times registers are used (not set) in X. COUNTS is an array in which we accumulate the count, INCR is how much we count each register usage. Don't count a usage of DEST, which is the SET_DEST of a SET which contains X in its SET_SRC. This is because such a SET does not modify the liveness of DEST. DEST is set to pc_rtx for a trapping insn, which means that we must count uses of a SET_DEST regardless because the insn can't be deleted here. */ static void count_reg_usage (rtx x, int *counts, rtx dest, int incr) { enum rtx_code code; rtx note; const char *fmt; int i, j; if (x == 0) return; switch (code = GET_CODE (x)) { case REG: if (x != dest) counts[REGNO (x)] += incr; return; case PC: case CC0: case CONST: case CONST_INT: case CONST_DOUBLE: case CONST_FIXED: case CONST_VECTOR: case SYMBOL_REF: case LABEL_REF: return; case CLOBBER: /* If we are clobbering a MEM, mark any registers inside the address as being used. */ if (MEM_P (XEXP (x, 0))) count_reg_usage (XEXP (XEXP (x, 0), 0), counts, NULL_RTX, incr); return; case SET: /* Unless we are setting a REG, count everything in SET_DEST. */ if (!REG_P (SET_DEST (x))) count_reg_usage (SET_DEST (x), counts, NULL_RTX, incr); count_reg_usage (SET_SRC (x), counts, dest ? dest : SET_DEST (x), incr); return; case CALL_INSN: case INSN: case JUMP_INSN: /* We expect dest to be NULL_RTX here. If the insn may trap, mark this fact by setting DEST to pc_rtx. */ if (flag_non_call_exceptions && may_trap_p (PATTERN (x))) dest = pc_rtx; if (code == CALL_INSN) count_reg_usage (CALL_INSN_FUNCTION_USAGE (x), counts, dest, incr); count_reg_usage (PATTERN (x), counts, dest, incr); /* Things used in a REG_EQUAL note aren't dead since loop may try to use them. */ note = find_reg_equal_equiv_note (x); if (note) { rtx eqv = XEXP (note, 0); if (GET_CODE (eqv) == EXPR_LIST) /* This REG_EQUAL note describes the result of a function call. Process all the arguments. */ do { count_reg_usage (XEXP (eqv, 0), counts, dest, incr); eqv = XEXP (eqv, 1); } while (eqv && GET_CODE (eqv) == EXPR_LIST); else count_reg_usage (eqv, counts, dest, incr); } return; case EXPR_LIST: if (REG_NOTE_KIND (x) == REG_EQUAL || (REG_NOTE_KIND (x) != REG_NONNEG && GET_CODE (XEXP (x,0)) == USE) /* FUNCTION_USAGE expression lists may include (CLOBBER (mem /u)), involving registers in the address. */ || GET_CODE (XEXP (x, 0)) == CLOBBER) count_reg_usage (XEXP (x, 0), counts, NULL_RTX, incr); count_reg_usage (XEXP (x, 1), counts, NULL_RTX, incr); return; case ASM_OPERANDS: /* If the asm is volatile, then this insn cannot be deleted, and so the inputs *must* be live. */ if (MEM_VOLATILE_P (x)) dest = NULL_RTX; /* Iterate over just the inputs, not the constraints as well. */ for (i = ASM_OPERANDS_INPUT_LENGTH (x) - 1; i >= 0; i--) count_reg_usage (ASM_OPERANDS_INPUT (x, i), counts, dest, incr); return; case INSN_LIST: gcc_unreachable (); default: break; } fmt = GET_RTX_FORMAT (code); for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) { if (fmt[i] == 'e') count_reg_usage (XEXP (x, i), counts, dest, incr); else if (fmt[i] == 'E') for (j = XVECLEN (x, i) - 1; j >= 0; j--) count_reg_usage (XVECEXP (x, i, j), counts, dest, incr); } } /* Return true if set is live. */ static bool set_live_p (rtx set, rtx insn ATTRIBUTE_UNUSED, /* Only used with HAVE_cc0. */ int *counts) { #ifdef HAVE_cc0 rtx tem; #endif if (set_noop_p (set)) ; #ifdef HAVE_cc0 else if (GET_CODE (SET_DEST (set)) == CC0 && !side_effects_p (SET_SRC (set)) && ((tem = next_nonnote_insn (insn)) == 0 || !INSN_P (tem) || !reg_referenced_p (cc0_rtx, PATTERN (tem)))) return false; #endif else if (!REG_P (SET_DEST (set)) || REGNO (SET_DEST (set)) < FIRST_PSEUDO_REGISTER || counts[REGNO (SET_DEST (set))] != 0 || side_effects_p (SET_SRC (set))) return true; return false; } /* Return true if insn is live. */ static bool insn_live_p (rtx insn, int *counts) { int i; if (flag_non_call_exceptions && may_trap_p (PATTERN (insn))) return true; else if (GET_CODE (PATTERN (insn)) == SET) return set_live_p (PATTERN (insn), insn, counts); else if (GET_CODE (PATTERN (insn)) == PARALLEL) { for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--) { rtx elt = XVECEXP (PATTERN (insn), 0, i); if (GET_CODE (elt) == SET) { if (set_live_p (elt, insn, counts)) return true; } else if (GET_CODE (elt) != CLOBBER && GET_CODE (elt) != USE) return true; } return false; } else return true; } /* Return true if libcall is dead as a whole. */ static bool dead_libcall_p (rtx insn, int *counts) { rtx note, set, new; /* See if there's a REG_EQUAL note on this insn and try to replace the source with the REG_EQUAL expression. We assume that insns with REG_RETVALs can only be reg->reg copies at this point. */ note = find_reg_note (insn, REG_EQUAL, NULL_RTX); if (!note) return false; set = single_set (insn); if (!set) return false; new = simplify_rtx (XEXP (note, 0)); if (!new) new = XEXP (note, 0); /* While changing insn, we must update the counts accordingly. */ count_reg_usage (insn, counts, NULL_RTX, -1); if (validate_change (insn, &SET_SRC (set), new, 0)) { count_reg_usage (insn, counts, NULL_RTX, 1); remove_note (insn, find_reg_note (insn, REG_RETVAL, NULL_RTX)); remove_note (insn, note); return true; } if (CONSTANT_P (new)) { new = force_const_mem (GET_MODE (SET_DEST (set)), new); if (new && validate_change (insn, &SET_SRC (set), new, 0)) { count_reg_usage (insn, counts, NULL_RTX, 1); remove_note (insn, find_reg_note (insn, REG_RETVAL, NULL_RTX)); remove_note (insn, note); return true; } } count_reg_usage (insn, counts, NULL_RTX, 1); return false; } /* Scan all the insns and delete any that are dead; i.e., they store a register that is never used or they copy a register to itself. This is used to remove insns made obviously dead by cse, loop or other optimizations. It improves the heuristics in loop since it won't try to move dead invariants out of loops or make givs for dead quantities. The remaining passes of the compilation are also sped up. */ int delete_trivially_dead_insns (rtx insns, int nreg) { int *counts; rtx insn, prev; int in_libcall = 0, dead_libcall = 0; int ndead = 0; timevar_push (TV_DELETE_TRIVIALLY_DEAD); /* First count the number of times each register is used. */ counts = XCNEWVEC (int, nreg); for (insn = insns; insn; insn = NEXT_INSN (insn)) if (INSN_P (insn)) count_reg_usage (insn, counts, NULL_RTX, 1); /* Go from the last insn to the first and delete insns that only set unused registers or copy a register to itself. As we delete an insn, remove usage counts for registers it uses. The first jump optimization pass may leave a real insn as the last insn in the function. We must not skip that insn or we may end up deleting code that is not really dead. */ for (insn = get_last_insn (); insn; insn = prev) { int live_insn = 0; prev = PREV_INSN (insn); if (!INSN_P (insn)) continue; /* Don't delete any insns that are part of a libcall block unless we can delete the whole libcall block. Flow or loop might get confused if we did that. Remember that we are scanning backwards. */ if (find_reg_note (insn, REG_RETVAL, NULL_RTX)) { in_libcall = 1; live_insn = 1; dead_libcall = dead_libcall_p (insn, counts); } else if (in_libcall) live_insn = ! dead_libcall; else live_insn = insn_live_p (insn, counts); /* If this is a dead insn, delete it and show registers in it aren't being used. */ if (! live_insn && dbg_cnt (delete_trivial_dead)) { count_reg_usage (insn, counts, NULL_RTX, -1); delete_insn_and_edges (insn); ndead++; } if (in_libcall && find_reg_note (insn, REG_LIBCALL, NULL_RTX)) { in_libcall = 0; dead_libcall = 0; } } if (dump_file && ndead) fprintf (dump_file, "Deleted %i trivially dead insns\n", ndead); /* Clean up. */ free (counts); timevar_pop (TV_DELETE_TRIVIALLY_DEAD); return ndead; } /* This function is called via for_each_rtx. The argument, NEWREG, is a condition code register with the desired mode. If we are looking at the same register in a different mode, replace it with NEWREG. */ static int cse_change_cc_mode (rtx *loc, void *data) { struct change_cc_mode_args* args = (struct change_cc_mode_args*)data; if (*loc && REG_P (*loc) && REGNO (*loc) == REGNO (args->newreg) && GET_MODE (*loc) != GET_MODE (args->newreg)) { validate_change (args->insn, loc, args->newreg, 1); return -1; } return 0; } /* Change the mode of any reference to the register REGNO (NEWREG) to GET_MODE (NEWREG) in INSN. */ static void cse_change_cc_mode_insn (rtx insn, rtx newreg) { struct change_cc_mode_args args; int success; if (!INSN_P (insn)) return; args.insn = insn; args.newreg = newreg; for_each_rtx (&PATTERN (insn), cse_change_cc_mode, &args); for_each_rtx (&REG_NOTES (insn), cse_change_cc_mode, &args); /* If the following assertion was triggered, there is most probably something wrong with the cc_modes_compatible back end function. CC modes only can be considered compatible if the insn - with the mode replaced by any of the compatible modes - can still be recognized. */ success = apply_change_group (); gcc_assert (success); } /* Change the mode of any reference to the register REGNO (NEWREG) to GET_MODE (NEWREG), starting at START. Stop before END. Stop at any instruction which modifies NEWREG. */ static void cse_change_cc_mode_insns (rtx start, rtx end, rtx newreg) { rtx insn; for (insn = start; insn != end; insn = NEXT_INSN (insn)) { if (! INSN_P (insn)) continue; if (reg_set_p (newreg, insn)) return; cse_change_cc_mode_insn (insn, newreg); } } /* BB is a basic block which finishes with CC_REG as a condition code register which is set to CC_SRC. Look through the successors of BB to find blocks which have a single predecessor (i.e., this one), and look through those blocks for an assignment to CC_REG which is equivalent to CC_SRC. CAN_CHANGE_MODE indicates whether we are permitted to change the mode of CC_SRC to a compatible mode. This returns VOIDmode if no equivalent assignments were found. Otherwise it returns the mode which CC_SRC should wind up with. The main complexity in this function is handling the mode issues. We may have more than one duplicate which we can eliminate, and we try to find a mode which will work for multiple duplicates. */ static enum machine_mode cse_cc_succs (basic_block bb, rtx cc_reg, rtx cc_src, bool can_change_mode) { bool found_equiv; enum machine_mode mode; unsigned int insn_count; edge e; rtx insns[2]; enum machine_mode modes[2]; rtx last_insns[2]; unsigned int i; rtx newreg; edge_iterator ei; /* We expect to have two successors. Look at both before picking the final mode for the comparison. If we have more successors (i.e., some sort of table jump, although that seems unlikely), then we require all beyond the first two to use the same mode. */ found_equiv = false; mode = GET_MODE (cc_src); insn_count = 0; FOR_EACH_EDGE (e, ei, bb->succs) { rtx insn; rtx end; if (e->flags & EDGE_COMPLEX) continue; if (EDGE_COUNT (e->dest->preds) != 1 || e->dest == EXIT_BLOCK_PTR) continue; end = NEXT_INSN (BB_END (e->dest)); for (insn = BB_HEAD (e->dest); insn != end; insn = NEXT_INSN (insn)) { rtx set; if (! INSN_P (insn)) continue; /* If CC_SRC is modified, we have to stop looking for something which uses it. */ if (modified_in_p (cc_src, insn)) break; /* Check whether INSN sets CC_REG to CC_SRC. */ set = single_set (insn); if (set && REG_P (SET_DEST (set)) && REGNO (SET_DEST (set)) == REGNO (cc_reg)) { bool found; enum machine_mode set_mode; enum machine_mode comp_mode; found = false; set_mode = GET_MODE (SET_SRC (set)); comp_mode = set_mode; if (rtx_equal_p (cc_src, SET_SRC (set))) found = true; else if (GET_CODE (cc_src) == COMPARE && GET_CODE (SET_SRC (set)) == COMPARE && mode != set_mode && rtx_equal_p (XEXP (cc_src, 0), XEXP (SET_SRC (set), 0)) && rtx_equal_p (XEXP (cc_src, 1), XEXP (SET_SRC (set), 1))) { comp_mode = targetm.cc_modes_compatible (mode, set_mode); if (comp_mode != VOIDmode && (can_change_mode || comp_mode == mode)) found = true; } if (found) { found_equiv = true; if (insn_count < ARRAY_SIZE (insns)) { insns[insn_count] = insn; modes[insn_count] = set_mode; last_insns[insn_count] = end; ++insn_count; if (mode != comp_mode) { gcc_assert (can_change_mode); mode = comp_mode; /* The modified insn will be re-recognized later. */ PUT_MODE (cc_src, mode); } } else { if (set_mode != mode) { /* We found a matching expression in the wrong mode, but we don't have room to store it in the array. Punt. This case should be rare. */ break; } /* INSN sets CC_REG to a value equal to CC_SRC with the right mode. We can simply delete it. */ delete_insn (insn); } /* We found an instruction to delete. Keep looking, in the hopes of finding a three-way jump. */ continue; } /* We found an instruction which sets the condition code, so don't look any farther. */ break; } /* If INSN sets CC_REG in some other way, don't look any farther. */ if (reg_set_p (cc_reg, insn)) break; } /* If we fell off the bottom of the block, we can keep looking through successors. We pass CAN_CHANGE_MODE as false because we aren't prepared to handle compatibility between the further blocks and this block. */ if (insn == end) { enum machine_mode submode; submode = cse_cc_succs (e->dest, cc_reg, cc_src, false); if (submode != VOIDmode) { gcc_assert (submode == mode); found_equiv = true; can_change_mode = false; } } } if (! found_equiv) return VOIDmode; /* Now INSN_COUNT is the number of instructions we found which set CC_REG to a value equivalent to CC_SRC. The instructions are in INSNS. The modes used by those instructions are in MODES. */ newreg = NULL_RTX; for (i = 0; i < insn_count; ++i) { if (modes[i] != mode) { /* We need to change the mode of CC_REG in INSNS[i] and subsequent instructions. */ if (! newreg) { if (GET_MODE (cc_reg) == mode) newreg = cc_reg; else newreg = gen_rtx_REG (mode, REGNO (cc_reg)); } cse_change_cc_mode_insns (NEXT_INSN (insns[i]), last_insns[i], newreg); } delete_insn (insns[i]); } return mode; } /* If we have a fixed condition code register (or two), walk through the instructions and try to eliminate duplicate assignments. */ static void cse_condition_code_reg (void) { unsigned int cc_regno_1; unsigned int cc_regno_2; rtx cc_reg_1; rtx cc_reg_2; basic_block bb; if (! targetm.fixed_condition_code_regs (&cc_regno_1, &cc_regno_2)) return; cc_reg_1 = gen_rtx_REG (CCmode, cc_regno_1); if (cc_regno_2 != INVALID_REGNUM) cc_reg_2 = gen_rtx_REG (CCmode, cc_regno_2); else cc_reg_2 = NULL_RTX; FOR_EACH_BB (bb) { rtx last_insn; rtx cc_reg; rtx insn; rtx cc_src_insn; rtx cc_src; enum machine_mode mode; enum machine_mode orig_mode; /* Look for blocks which end with a conditional jump based on a condition code register. Then look for the instruction which sets the condition code register. Then look through the successor blocks for instructions which set the condition code register to the same value. There are other possible uses of the condition code register, but these are by far the most common and the ones which we are most likely to be able to optimize. */ last_insn = BB_END (bb); if (!JUMP_P (last_insn)) continue; if (reg_referenced_p (cc_reg_1, PATTERN (last_insn))) cc_reg = cc_reg_1; else if (cc_reg_2 && reg_referenced_p (cc_reg_2, PATTERN (last_insn))) cc_reg = cc_reg_2; else continue; cc_src_insn = NULL_RTX; cc_src = NULL_RTX; for (insn = PREV_INSN (last_insn); insn && insn != PREV_INSN (BB_HEAD (bb)); insn = PREV_INSN (insn)) { rtx set; if (! INSN_P (insn)) continue; set = single_set (insn); if (set && REG_P (SET_DEST (set)) && REGNO (SET_DEST (set)) == REGNO (cc_reg)) { cc_src_insn = insn; cc_src = SET_SRC (set); break; } else if (reg_set_p (cc_reg, insn)) break; } if (! cc_src_insn) continue; if (modified_between_p (cc_src, cc_src_insn, NEXT_INSN (last_insn))) continue; /* Now CC_REG is a condition code register used for a conditional jump at the end of the block, and CC_SRC, in CC_SRC_INSN, is the value to which that condition code register is set, and CC_SRC is still meaningful at the end of the basic block. */ orig_mode = GET_MODE (cc_src); mode = cse_cc_succs (bb, cc_reg, cc_src, true); if (mode != VOIDmode) { gcc_assert (mode == GET_MODE (cc_src)); if (mode != orig_mode) { rtx newreg = gen_rtx_REG (mode, REGNO (cc_reg)); cse_change_cc_mode_insn (cc_src_insn, newreg); /* Do the same in the following insns that use the current value of CC_REG within BB. */ cse_change_cc_mode_insns (NEXT_INSN (cc_src_insn), NEXT_INSN (last_insn), newreg); } } } } /* Perform common subexpression elimination. Nonzero value from `cse_main' means that jumps were simplified and some code may now be unreachable, so do jump optimization again. */ static bool gate_handle_cse (void) { return optimize > 0; } static unsigned int rest_of_handle_cse (void) { int tem; if (dump_file) dump_flow_info (dump_file, dump_flags); tem = cse_main (get_insns (), max_reg_num ()); /* If we are not running more CSE passes, then we are no longer expecting CSE to be run. But always rerun it in a cheap mode. */ cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse; if (tem == 2) { timevar_push (TV_JUMP); rebuild_jump_labels (get_insns ()); cleanup_cfg (0); timevar_pop (TV_JUMP); } else if (tem == 1 || optimize > 1) cleanup_cfg (0); return 0; } struct tree_opt_pass pass_cse = { "cse1", /* name */ gate_handle_cse, /* gate */ rest_of_handle_cse, /* execute */ NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ TV_CSE, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_df_finish | TODO_verify_rtl_sharing | TODO_dump_func | TODO_ggc_collect | TODO_verify_flow, /* todo_flags_finish */ 's' /* letter */ }; static bool gate_handle_cse2 (void) { return optimize > 0 && flag_rerun_cse_after_loop; } /* Run second CSE pass after loop optimizations. */ static unsigned int rest_of_handle_cse2 (void) { int tem; if (dump_file) dump_flow_info (dump_file, dump_flags); tem = cse_main (get_insns (), max_reg_num ()); /* Run a pass to eliminate duplicated assignments to condition code registers. We have to run this after bypass_jumps, because it makes it harder for that pass to determine whether a jump can be bypassed safely. */ cse_condition_code_reg (); delete_trivially_dead_insns (get_insns (), max_reg_num ()); if (tem == 2) { timevar_push (TV_JUMP); rebuild_jump_labels (get_insns ()); cleanup_cfg (0); timevar_pop (TV_JUMP); } else if (tem == 1) cleanup_cfg (0); cse_not_expected = 1; return 0; } struct tree_opt_pass pass_cse2 = { "cse2", /* name */ gate_handle_cse2, /* gate */ rest_of_handle_cse2, /* execute */ NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ TV_CSE2, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_df_finish | TODO_verify_rtl_sharing | TODO_dump_func | TODO_ggc_collect | TODO_verify_flow, /* todo_flags_finish */ 't' /* letter */ };
bde575c0c1ea436990f6a663dd6d88788bf28bba
dd914e4511f7a1edf2b91fd15bd517d1af6b9f83
/Silicon/Hisilicon/Include/Protocol/IpmiInterfaceProtocol.h
c5f0f8551cdca1d23dc67f7446b7f822efa7bc3e
[ "GPL-1.0-or-later", "GPL-2.0-only", "LicenseRef-scancode-proprietary-license", "BSD-2-Clause", "GPL-2.0-or-later", "BSD-2-Clause-Patent", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-or-later", "LGPL-2.0-or-later", "OpenSSL", "MIT" ]
permissive
ms-iot/imx-edk2-platforms
9f76089afb7f62afe52b1b009a7ba48a6c4bbacb
4b82cdd47cdec64a35a3f46922c40eef6274a83c
refs/heads/imx
2020-03-31T15:23:33.932890
2019-11-08T22:38:50
2019-11-08T22:38:50
152,335,099
9
16
BSD-2-Clause
2019-11-08T22:31:56
2018-10-09T23:34:01
C
UTF-8
C
false
false
2,917
h
/** @file * * Copyright (c) 2016, Hisilicon Limited. All rights reserved. * Copyright (c) 2016, Linaro Limited. All rights reserved. * * This program and the accompanying materials * are licensed and made available under the terms and conditions of the BSD License * which accompanies this distribution. The full text of the license may be found at * http://opensource.org/licenses/bsd-license.php * * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. * **/ #ifndef _IPMI_INTERFACE_PROTOCOL_H_ #define _IPMI_INTERFACE_PROTOCOL_H_ #define IPMI_INTERFACE_PROTOCOL_GUID \ {0xa37e200e, 0xda90, 0x473b, {0x8b, 0xb5, 0x1d, 0x7b, 0x11, 0xba, 0x32, 0x33}} typedef struct _IPMI_INTERFACE_PROTOCOL IPMI_INTERFACE_PROTOCOL; // // Structure to store IPMI Network Function, LUN and command // typedef struct { UINT8 Lun : 2; UINT8 NetFn : 6; UINT8 Cmd; } IPMI_CMD_HEADER; // // System Interface Type // typedef enum { IPMI_SYSTEM_INTERFACE_UNKNOWN, IPMI_SYSTEM_INTERFACE_KCS, IPMI_SYSTEM_INTERFACE_SMIC, IPMI_SYSTEM_INTERFACE_BT, IPMI_SYSTEM_INTERFACE_SSIF, IPMI_SYSTEM_INTERFACE_MAX_TYPE } IPMI_SYSTEM_INTERFACE_TYPE; // // System Interface Address Type // typedef enum { IPMI_MEMORY, IPMI_IO, IPMI_MAX_INTERFACE_ADDRESS_TYPE } IPMI_INTERFACE_ADDRESS_TYPE; typedef EFI_STATUS (EFIAPI *IPMI_INTERFACE_PROTOCOL_EXECUTE_IPMI_CMD) ( IN IPMI_INTERFACE_PROTOCOL *This, IN IPMI_CMD_HEADER Request, IN VOID *SendData OPTIONAL, IN UINT8 SendLength, OUT VOID *RecvData, OUT UINT8 *RecvLength, OUT UINT16 *StatusCodes OPTIONAL ); typedef IPMI_SYSTEM_INTERFACE_TYPE (EFIAPI *IPMI_INTERFACE_PROTOCOL_GET_IPMI_INTERFACE_TYPE) ( IN IPMI_INTERFACE_PROTOCOL *This ); typedef UINT16 (EFIAPI *IPMI_INTERFACE_PROTOCOL_GET_IPMI_BASE_ADDRESS) ( IN IPMI_INTERFACE_PROTOCOL *This ); typedef IPMI_INTERFACE_ADDRESS_TYPE (EFIAPI *IPMI_INTERFACE_PROTOCOL_GET_IPMI_BASE_ADDRESS_TYPE) ( IN IPMI_INTERFACE_PROTOCOL *This ); typedef UINT8 (EFIAPI *IPMI_INTERFACE_PROTOCOL_GET_IPMI_VERSION) ( IN IPMI_INTERFACE_PROTOCOL *This ); // // Structure of IPMI_INTERFACE_PROTOCOL // struct _IPMI_INTERFACE_PROTOCOL{ IPMI_INTERFACE_PROTOCOL_EXECUTE_IPMI_CMD ExecuteIpmiCmd; IPMI_INTERFACE_PROTOCOL_GET_IPMI_INTERFACE_TYPE GetIpmiInterfaceType; IPMI_INTERFACE_PROTOCOL_GET_IPMI_BASE_ADDRESS GetIpmiBaseAddress; IPMI_INTERFACE_PROTOCOL_GET_IPMI_BASE_ADDRESS_TYPE GetIpmiBaseAddressType; IPMI_INTERFACE_PROTOCOL_GET_IPMI_VERSION GetIpmiVersion; } ; extern EFI_GUID gIpmiInterfaceProtocolGuid; #endif
11d920c545b106dd7936335f94cbac5f188271c4
ef47c832d019f42dc6233b9990ce1867c012247c
/ee290/batches/1250/cifar_quant_params2_rt.h
8826244942655f8156f0dced2ffc0b22796852a0
[ "BSD-2-Clause" ]
permissive
ryan-lund/gemmini-rocc-tests
21636e596208b5d8b516ed0adb5b4ca73869e203
6615c546269e3b8cf8f2a2d4addfce1002ef382b
refs/heads/master
2022-07-03T08:08:14.221553
2020-05-11T05:27:45
2020-05-11T05:27:45
256,068,036
0
0
NOASSERTION
2020-04-16T00:23:47
2020-04-16T00:23:46
null
UTF-8
C
false
false
1,649,412
h
#ifndef MOBILENET_PARAMETERS_H #define MOBILENET_PARAMETERS_H #include <include/gemmini_params.h> #include <stdbool.h> #ifdef ELEM_T_IS_BFLOAT static const float conv_1_w_float[128][64] row_align(1) = {{0.076171875,0.034179688,-0.06542969,-0.111328125,-0.09716797,0.011230469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14648438,9.012222e-05,0.09863281,-0.10888672,-0.029785156,0.13964844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.045654297,0.072265625,-0.08154297,-0.15917969,-0.23242188,-0.019165039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.08251953,0.16894531,0.076171875,-0.16601562,-0.13476562,0.052001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.12597656,-0.024780273,-0.11328125,-0.21679688,0.08251953,0.18847656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05834961,0.119140625,0.06347656,0.0075683594,0.04345703,-0.07714844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.052490234,0.14160156,-0.03515625,-0.046142578,0.057617188,-0.044677734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.110839844,-0.099121094,-0.1484375,0.19042969,0.04272461,0.055908203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.15136719,-0.07763672,0.057128906,0.07519531,-0.0859375,0.0006599426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.125,0.09375,0.052001953,0.25195312,0.03515625,0.030761719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.107421875,0.12597656,0.12792969,0.14648438,-0.076171875,-0.10205078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11816406,0.107421875,-0.021240234,-0.10839844,0.04248047,-0.21386719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12158203,0.19238281,-0.041503906,0.18261719,-0.06982422,-0.18164062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.015014648,0.10253906,0.008178711,0.00062942505,-0.010375977,0.07861328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11669922,-0.18359375,0.029907227,0.11230469,0.114746094,-0.056152344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.00390625,-0.05908203,0.05908203,0.13378906,-0.07324219,-0.004180908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.007293701,0.10253906,-0.030029297,0.125,-0.18652344,0.20703125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.008666992,0.02758789,-0.018188477,0.03930664,-0.25195312,0.19824219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07080078,-0.10986328,-0.15722656,-0.123535156,0.09423828,-0.16015625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.040283203,-0.06933594,0.03540039,-0.04711914,0.16796875,0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.021118164,-0.05078125,-0.13964844,-0.11669922,0.17089844,0.14257812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.059326172,0.1796875,0.032958984,-0.16894531,0.14648438,-0.15917969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.013916016,-0.011352539,0.14355469,0.052734375,0.09667969,0.08935547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.092285156,-0.0095825195,-0.0859375,-0.029785156,0.13085938,-0.21484375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12890625,0.15332031,-0.12792969,-0.045654297,0.041748047,-0.13769531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.068359375,0.02709961,0.03466797,-0.09863281,0.17089844,-0.14648438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.1796875,-0.10888672,0.13867188,-0.072753906,0.009887695,-0.18945312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.014221191,-0.01373291,-0.020996094,0.10205078,-0.021484375,0.064941406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0040283203,0.052001953,0.057128906,0.09082031,-0.03515625,-0.009155273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.014526367,-0.044433594,0.111816406,0.06225586,0.035888672,0.041748047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10644531,-0.043945312,-0.043701172,-0.027832031,0.07080078,0.06982422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.04345703,-0.061767578,-0.024414062,-0.10986328,-0.07910156,-0.103515625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.049560547,0.015014648,-0.064941406,0.020996094,-0.18457031,0.048339844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.08300781,-0.044921875,0.03540039,-0.026123047,0.024658203,-0.22265625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.109375,-0.11816406,-0.07421875,0.022338867,-0.0625,0.057861328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.059326172,-0.23632812,-0.096191406,0.053466797,0.06982422,0.024902344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.03955078,-0.04345703,0.037841797,0.0703125,-0.19238281,0.042236328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.026489258,-0.100097656,0.12158203,-0.091796875,0.13867188,-0.14160156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.087402344,-0.15527344,0.0546875,-0.07714844,-0.0703125,0.027709961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.19238281,-0.18164062,0.11669922,-0.13085938,0.115234375,0.10107422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06225586,-0.26953125,-0.20507812,-0.18554688,0.099609375,-0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.21679688,-0.056640625,0.08300781,0.064941406,-0.040039062,-0.0032043457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06933594,-0.11328125,0.019042969,-0.005554199,-0.22949219,-0.095214844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15234375,-0.107910156,-0.041259766,0.064453125,0.08544922,0.019165039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03881836,-0.19238281,-0.029052734,0.029663086,-0.20605469,-0.07910156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.107421875,-0.09765625,0.07714844,0.015319824,-0.13671875,-0.12060547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05859375,0.12988281,-0.041259766,-0.13085938,0.18652344,-0.12451172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.13964844,-0.049072266,0.14550781,0.1640625,0.04272461,-0.14453125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.056640625,-0.03564453,0.23632812,-0.12109375,0.025878906,-0.1953125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06542969,-0.15039062,0.060546875,-0.104003906,0.05444336,-0.05029297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.040771484,0.028686523,0.21386719,0.075683594,0.02734375,-0.24902344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.024536133,0.045410156,-0.084472656,0.018798828,-0.17578125,-0.020996094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.057128906,0.1484375,0.09375,-0.19824219,0.06347656,-0.016845703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.080566406,0.16894531,0.05810547,0.022949219,-0.063964844,-0.024902344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14453125,-0.20605469,-0.11230469,-0.19042969,-0.07519531,0.13671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.022460938,0.110839844,-0.16796875,-0.037841797,-0.016967773,0.123046875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.19628906,0.053466797,-0.17382812,0.0859375,0.11816406,0.0072021484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.06298828,0.010864258,0.033203125,-0.18457031,-0.0138549805,0.045898438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.080566406,0.026977539,-0.2265625,-0.059326172,-0.09765625,0.23046875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09472656,0.033935547,0.061523438,-0.11669922,-0.09082031,0.05078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.07421875,-0.025512695,0.2890625,-0.06591797,-0.015625,-0.17675781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.087890625,0.036865234,-0.017822266,0.049072266,0.10546875,0.114746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.1015625,0.10546875,0.17871094,0.080078125,-0.103515625,-0.2109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03112793,0.013244629,0.16015625,-0.08251953,0.008728027,-0.13183594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0062561035,-0.11279297,-0.11376953,0.10498047,0.08496094,0.13476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.059326172,0.11816406,0.0029754639,0.079589844,0.045654297,-0.23925781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10839844,-0.0015792847,-0.0059814453,0.010314941,0.11328125,0.014465332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.091796875,0.078125,-0.21582031,-0.00793457,-0.009155273,-0.12158203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.13085938,0.1171875,-0.12207031,-0.109375,-0.0010070801,-0.21777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.052246094,-0.04296875,0.07861328,0.09472656,-0.119628906,-0.061523438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11816406,0.04711914,-0.21972656,-0.20410156,0.17871094,0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.17773438,0.11376953,-0.087890625,0.10205078,0.04345703,0.03112793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05053711,-0.25976562,-0.040039062,-0.19238281,0.024536133,-0.083496094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13964844,0.059814453,-0.13574219,0.08642578,0.17578125,-0.022949219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.05517578,0.16308594,-0.013427734,-0.12988281,0.012451172,-0.047851562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; static bfloat16_t conv_1_w[128][64] row_align(1); #else static const elem_t conv_1_w[128][64] row_align(1) = {{0.076171875,0.034179688,-0.06542969,-0.111328125,-0.09716797,0.011230469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14648438,9.012222e-05,0.09863281,-0.10888672,-0.029785156,0.13964844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.045654297,0.072265625,-0.08154297,-0.15917969,-0.23242188,-0.019165039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.08251953,0.16894531,0.076171875,-0.16601562,-0.13476562,0.052001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.12597656,-0.024780273,-0.11328125,-0.21679688,0.08251953,0.18847656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05834961,0.119140625,0.06347656,0.0075683594,0.04345703,-0.07714844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.052490234,0.14160156,-0.03515625,-0.046142578,0.057617188,-0.044677734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.110839844,-0.099121094,-0.1484375,0.19042969,0.04272461,0.055908203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.15136719,-0.07763672,0.057128906,0.07519531,-0.0859375,0.0006599426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.125,0.09375,0.052001953,0.25195312,0.03515625,0.030761719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.107421875,0.12597656,0.12792969,0.14648438,-0.076171875,-0.10205078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11816406,0.107421875,-0.021240234,-0.10839844,0.04248047,-0.21386719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12158203,0.19238281,-0.041503906,0.18261719,-0.06982422,-0.18164062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.015014648,0.10253906,0.008178711,0.00062942505,-0.010375977,0.07861328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11669922,-0.18359375,0.029907227,0.11230469,0.114746094,-0.056152344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.00390625,-0.05908203,0.05908203,0.13378906,-0.07324219,-0.004180908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.007293701,0.10253906,-0.030029297,0.125,-0.18652344,0.20703125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.008666992,0.02758789,-0.018188477,0.03930664,-0.25195312,0.19824219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07080078,-0.10986328,-0.15722656,-0.123535156,0.09423828,-0.16015625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.040283203,-0.06933594,0.03540039,-0.04711914,0.16796875,0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.021118164,-0.05078125,-0.13964844,-0.11669922,0.17089844,0.14257812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.059326172,0.1796875,0.032958984,-0.16894531,0.14648438,-0.15917969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.013916016,-0.011352539,0.14355469,0.052734375,0.09667969,0.08935547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.092285156,-0.0095825195,-0.0859375,-0.029785156,0.13085938,-0.21484375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12890625,0.15332031,-0.12792969,-0.045654297,0.041748047,-0.13769531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.068359375,0.02709961,0.03466797,-0.09863281,0.17089844,-0.14648438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.1796875,-0.10888672,0.13867188,-0.072753906,0.009887695,-0.18945312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.014221191,-0.01373291,-0.020996094,0.10205078,-0.021484375,0.064941406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0040283203,0.052001953,0.057128906,0.09082031,-0.03515625,-0.009155273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.014526367,-0.044433594,0.111816406,0.06225586,0.035888672,0.041748047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10644531,-0.043945312,-0.043701172,-0.027832031,0.07080078,0.06982422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.04345703,-0.061767578,-0.024414062,-0.10986328,-0.07910156,-0.103515625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.049560547,0.015014648,-0.064941406,0.020996094,-0.18457031,0.048339844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.08300781,-0.044921875,0.03540039,-0.026123047,0.024658203,-0.22265625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.109375,-0.11816406,-0.07421875,0.022338867,-0.0625,0.057861328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.059326172,-0.23632812,-0.096191406,0.053466797,0.06982422,0.024902344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.03955078,-0.04345703,0.037841797,0.0703125,-0.19238281,0.042236328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.026489258,-0.100097656,0.12158203,-0.091796875,0.13867188,-0.14160156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.087402344,-0.15527344,0.0546875,-0.07714844,-0.0703125,0.027709961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.19238281,-0.18164062,0.11669922,-0.13085938,0.115234375,0.10107422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06225586,-0.26953125,-0.20507812,-0.18554688,0.099609375,-0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.21679688,-0.056640625,0.08300781,0.064941406,-0.040039062,-0.0032043457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06933594,-0.11328125,0.019042969,-0.005554199,-0.22949219,-0.095214844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15234375,-0.107910156,-0.041259766,0.064453125,0.08544922,0.019165039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03881836,-0.19238281,-0.029052734,0.029663086,-0.20605469,-0.07910156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.107421875,-0.09765625,0.07714844,0.015319824,-0.13671875,-0.12060547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05859375,0.12988281,-0.041259766,-0.13085938,0.18652344,-0.12451172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.13964844,-0.049072266,0.14550781,0.1640625,0.04272461,-0.14453125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.056640625,-0.03564453,0.23632812,-0.12109375,0.025878906,-0.1953125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06542969,-0.15039062,0.060546875,-0.104003906,0.05444336,-0.05029297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.040771484,0.028686523,0.21386719,0.075683594,0.02734375,-0.24902344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.024536133,0.045410156,-0.084472656,0.018798828,-0.17578125,-0.020996094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.057128906,0.1484375,0.09375,-0.19824219,0.06347656,-0.016845703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.080566406,0.16894531,0.05810547,0.022949219,-0.063964844,-0.024902344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14453125,-0.20605469,-0.11230469,-0.19042969,-0.07519531,0.13671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.022460938,0.110839844,-0.16796875,-0.037841797,-0.016967773,0.123046875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.19628906,0.053466797,-0.17382812,0.0859375,0.11816406,0.0072021484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.06298828,0.010864258,0.033203125,-0.18457031,-0.0138549805,0.045898438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.080566406,0.026977539,-0.2265625,-0.059326172,-0.09765625,0.23046875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09472656,0.033935547,0.061523438,-0.11669922,-0.09082031,0.05078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.07421875,-0.025512695,0.2890625,-0.06591797,-0.015625,-0.17675781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.087890625,0.036865234,-0.017822266,0.049072266,0.10546875,0.114746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.1015625,0.10546875,0.17871094,0.080078125,-0.103515625,-0.2109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03112793,0.013244629,0.16015625,-0.08251953,0.008728027,-0.13183594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0062561035,-0.11279297,-0.11376953,0.10498047,0.08496094,0.13476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.059326172,0.11816406,0.0029754639,0.079589844,0.045654297,-0.23925781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10839844,-0.0015792847,-0.0059814453,0.010314941,0.11328125,0.014465332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.091796875,0.078125,-0.21582031,-0.00793457,-0.009155273,-0.12158203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.13085938,0.1171875,-0.12207031,-0.109375,-0.0010070801,-0.21777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.052246094,-0.04296875,0.07861328,0.09472656,-0.119628906,-0.061523438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11816406,0.04711914,-0.21972656,-0.20410156,0.17871094,0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.17773438,0.11376953,-0.087890625,0.10205078,0.04345703,0.03112793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05053711,-0.25976562,-0.040039062,-0.19238281,0.024536133,-0.083496094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13964844,0.059814453,-0.13574219,0.08642578,0.17578125,-0.022949219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.05517578,0.16308594,-0.013427734,-0.12988281,0.012451172,-0.047851562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; #endif static elem_t conv_1_in[3136][128] row_align(1); static elem_t conv_1_out[3136][64] row_align(1); static elem_t conv_1_out_pooled[4][14][14][6]; static const struct ConvParams conv_1_params = {.batch_size=4, .in_dim=32, .kernel_size=5, .in_channels=3, .out_channels=6, .stride=1, .padding=0, .bias=0, .depthwise=0, .out_dim=28, .n_patches=3136, .patch_size=75, .pool_size=2, .pool_stride=2, .pool_padding=0, .out_dim_pooled=14, .output_scale=9, .I=3136, .J=64, .K=128, .res_scale=0}; #ifdef ELEM_T_IS_BFLOAT static const float conv_2_w_float[192][64] row_align(1) = {{0.12792969,-0.11376953,-0.049072266,0.036132812,-0.014587402,-0.15527344,-0.17480469,-0.010864258,-0.16699219,0.09277344,-0.09082031,-0.026855469,0.080078125,-0.122558594,0.049072266,0.04663086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.023925781,-0.18359375,0.024169922,0.13476562,0.11035156,-0.140625,-0.009094238,-0.01574707,-0.10058594,-0.05078125,-0.21484375,0.01574707,0.032714844,0.059814453,-0.0390625,0.08544922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.18847656,0.091308594,-0.12011719,-0.0025939941,0.0069885254,-0.06591797,0.14453125,0.072265625,-0.021484375,0.087402344,-0.0016555786,-0.11425781,-0.1484375,0.0859375,0.1484375,0.079589844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06347656,0.044677734,-0.12451172,-0.007446289,-0.08251953,0.01361084,-0.125,-0.042236328,0.08154297,0.020385742,0.048828125,-0.036865234,0.05078125,-0.0029296875,-0.039794922,0.041503906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08251953,-0.05493164,0.0043029785,0.044433594,-0.16796875,-0.104003906,-0.008972168,-0.03125,-0.049804688,0.013244629,-0.09082031,0.005279541,-0.003250122,-0.007873535,0.046142578,0.0859375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.007019043,-0.076171875,0.05810547,0.010070801,0.07714844,-0.005859375,-0.043701172,0.080566406,-0.050048828,0.0028076172,-0.2109375,0.100097656,-0.08154297,0.16210938,-0.12402344,-0.013122559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.16308594,-0.055908203,-0.061279297,-0.11425781,0.14550781,-0.015136719,-0.18164062,0.0134887695,-0.0031738281,0.08642578,-0.12890625,0.023071289,0.0039367676,0.072265625,-0.06933594,0.008605957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.021850586,-0.114746094,-0.060791016,0.013183594,-0.042236328,-0.13378906,-0.052490234,0.0037841797,-0.06347656,0.14453125,-0.083984375,-0.008300781,0.0022277832,-0.072753906,-0.0058288574,-0.043945312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.087890625,-0.13964844,0.14453125,0.041015625,0.16308594,-0.17773438,0.014282227,0.02758789,-0.10449219,-0.096191406,0.037597656,-0.15332031,-0.040771484,-0.13085938,-0.07470703,0.057617188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.01940918,-0.049072266,-0.07910156,-0.033935547,-0.0071411133,0.034423828,0.114746094,0.07763672,0.088378906,-0.012390137,0.037353516,-0.0390625,0.052001953,0.15136719,0.12792969,0.040771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07470703,-0.037109375,0.014770508,-0.0625,0.13574219,-0.037841797,-0.171875,-0.08935547,-0.08886719,-0.061767578,-0.09472656,-0.04663086,-0.09814453,0.053222656,-0.1640625,-0.18847656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.091796875,0.010864258,0.012878418,0.052246094,-0.0390625,-0.046142578,0.15917969,0.044433594,0.0035858154,0.0008277893,0.0018692017,0.12695312,-0.052001953,-0.00289917,-0.007293701,-0.12011719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03466797,0.026489258,-0.06298828,-0.12792969,0.12988281,-0.041015625,-0.014038086,-0.027954102,-0.14746094,0.0038146973,0.0057678223,0.075683594,-0.010437012,0.041259766,0.09814453,0.03930664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.006378174,-0.13574219,0.025024414,-0.0095825195,-0.013122559,0.07714844,0.044433594,-0.005126953,-0.043701172,0.01586914,0.08496094,-0.064453125,0.051757812,0.08203125,0.044189453,0.03491211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03881836,-0.096191406,-0.0126953125,0.04663086,0.02319336,-0.02331543,-0.040283203,0.03930664,-0.042236328,-0.061767578,0.11279297,-0.05078125,0.021972656,0.02331543,-0.115234375,0.11035156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.04736328,0.009521484,-0.010009766,0.14160156,-0.078125,0.16113281,0.057128906,0.017333984,-0.14257812,-0.12060547,0.05834961,-0.030273438,-0.064453125,-0.032470703,0.16894531,-0.036621094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.13574219,0.004272461,0.024414062,0.0003376007,0.076660156,-0.026123047,0.028564453,0.014099121,-0.06591797,0.033203125,0.046875,-0.0012435913,0.068359375,0.16015625,-0.09765625,-0.06347656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.21875,-0.29101562,-0.051757812,-0.033447266,0.08203125,-0.052734375,0.22753906,-0.34570312,-0.018798828,-0.06982422,0.12890625,0.012939453,0.0028686523,-0.23828125,0.08496094,-0.10449219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.009399414,0.09277344,-0.09765625,0.041259766,0.12695312,-0.09082031,-0.07080078,0.10449219,-0.033935547,0.033935547,0.010803223,0.027832031,-0.087402344,-0.018310547,0.057373047,0.125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.035888672,0.0134887695,0.03881836,-0.13574219,0.049804688,-0.008666992,0.04736328,0.078125,-0.11230469,-0.037597656,0.15332031,-0.03857422,-0.03857422,-0.04663086,0.03930664,-0.09765625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.025024414,-0.026733398,-0.045898438,-0.048095703,0.003250122,-0.21484375,0.0032653809,-0.056396484,0.05102539,0.024902344,-0.1328125,0.18261719,0.003540039,0.06542969,0.21679688,0.088378906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.064453125,0.18359375,-0.12792969,0.10498047,0.06689453,0.0034942627,0.09423828,-0.10058594,0.06542969,0.008056641,-0.28320312,-0.06201172,-0.06982422,-0.14257812,0.018066406,-0.009338379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.107910156,-0.026245117,0.01586914,0.0012359619,-0.040527344,-0.029052734,0.12988281,0.028686523,-0.16113281,0.032958984,0.08886719,0.068359375,-0.041992188,0.034423828,0.060302734,0.0024414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.140625,-0.056152344,0.20996094,-0.23730469,-0.02331543,0.091796875,0.115234375,-0.13183594,-0.16894531,-0.018066406,-0.09863281,-0.05517578,-0.15234375,-0.05908203,-0.12060547,-0.15234375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15527344,0.022338867,0.041992188,-0.014282227,0.061035156,-0.018066406,-0.20507812,-0.040527344,-0.025634766,0.095214844,-0.05444336,-0.031982422,-0.0023345947,0.14453125,0.06298828,0.033935547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07714844,0.15039062,0.07373047,0.007659912,0.09326172,-0.004272461,0.115234375,0.03125,-0.06738281,0.11425781,0.095703125,-0.01965332,0.021240234,-0.009033203,0.045654297,-0.16601562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.033447266,0.09277344,0.04321289,0.008056641,-0.08154297,-0.048339844,0.029785156,0.048583984,-0.12402344,-0.009521484,-0.28710938,-0.03466797,-0.044921875,0.083496094,-0.056640625,0.04296875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.037109375,0.20703125,0.0027618408,0.12792969,0.0026550293,0.047851562,0.05834961,-0.09033203,-0.03173828,-0.037109375,0.04736328,0.10107422,-0.23828125,0.076171875,0.041748047,-0.18261719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.17285156,-0.068359375,-0.05834961,0.042236328,-0.12695312,-0.14550781,-0.11767578,-0.0018539429,0.0024871826,-0.067871094,-0.04321289,-0.1484375,0.056884766,0.000869751,-0.072265625,0.13085938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.1015625,-0.0047302246,0.123535156,-0.06933594,0.004058838,0.0546875,0.26171875,0.039794922,0.0625,-0.079589844,-0.08544922,-0.06689453,-0.1015625,-0.02734375,0.111816406,-0.040527344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.111328125,-0.07763672,-0.041259766,0.12597656,0.031982422,-0.045166016,-0.09472656,-0.060546875,-0.16894531,0.005065918,-0.0625,-0.004119873,0.06591797,-0.061035156,-0.096191406,0.0043029785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11279297,-0.23828125,0.053955078,-0.014709473,0.09863281,-0.106933594,0.25390625,0.0126953125,-0.026000977,-0.005340576,-0.171875,-0.045166016,0.0115356445,-0.0037384033,0.109375,0.041259766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.076660156,-0.012207031,0.037841797,-0.06689453,-0.03515625,0.10595703,0.05444336,0.061523438,-0.07910156,0.05834961,0.01953125,-0.005859375,-0.21582031,0.13476562,0.01953125,0.046142578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.109375,-0.05834961,-0.09326172,0.09863281,-0.10058594,0.10986328,0.18457031,-0.11621094,-0.041015625,-0.09814453,-0.048095703,0.004425049,0.16601562,0.25,-0.075683594,0.016845703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.011657715,-0.24609375,0.125,0.08105469,0.06689453,-0.11035156,0.00092697144,-0.20214844,-0.005279541,0.016113281,-0.056152344,-0.046875,0.033203125,-0.0234375,-0.09472656,-0.03540039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.028076172,0.0025787354,-0.027954102,-0.0095825195,-0.104003906,0.04345703,-0.03564453,0.080566406,-0.052246094,-0.026000977,0.12597656,-0.008117676,-0.053222656,-0.114746094,-0.038330078,0.09033203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.016357422,0.09326172,-0.107910156,0.001953125,0.01361084,-0.0138549805,0.018920898,0.010986328,-0.056884766,-0.028686523,-0.111816406,-0.01953125,-0.10888672,-0.123535156,0.079589844,-0.23730469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.048095703,-0.072265625,-0.10546875,0.14355469,-0.09277344,-0.0087890625,0.171875,-0.01928711,-0.09716797,0.044921875,-0.0009689331,-0.15722656,-0.07763672,-0.060546875,-0.17480469,-0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0703125,-0.1015625,-0.03173828,-0.01586914,-0.042236328,0.103515625,0.041503906,-0.00491333,-0.041748047,0.03540039,-0.09423828,0.0013809204,0.013366699,0.050048828,0.006591797,0.06298828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.042236328,0.2734375,-0.14648438,-0.07470703,0.042236328,-0.10595703,-0.0029449463,0.029785156,0.0055236816,0.044921875,0.17773438,-0.05493164,0.068359375,-0.025878906,0.123046875,-0.20214844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11035156,-0.23144531,0.05419922,-0.025146484,0.18261719,0.018676758,0.07910156,-0.08544922,-0.06225586,0.04296875,0.13085938,-0.0034332275,-0.09716797,0.040039062,-0.08886719,-0.3515625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.007080078,-0.041259766,0.061035156,0.044189453,0.043701172,0.032470703,0.10107422,-0.06347656,-0.13867188,0.012084961,0.140625,-0.12695312,-0.15429688,-0.12792969,-0.021362305,-0.056640625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13183594,0.064941406,0.0703125,0.0011672974,-0.03173828,-0.111328125,-0.006011963,-0.022705078,-0.003250122,0.051757812,0.015625,0.11230469,0.06738281,0.115722656,0.07910156,-0.15429688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.078125,-0.18261719,0.076171875,0.08544922,-0.009399414,-0.08935547,-0.12207031,0.03125,0.0019454956,0.044433594,-0.114746094,0.087890625,0.051513672,0.10595703,0.030761719,0.037841797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.060058594,-0.19140625,0.00592041,0.17480469,-0.09667969,-0.03466797,0.024291992,0.0067443848,0.009338379,0.06689453,0.16308594,0.21679688,-0.019897461,-0.08300781,-0.1796875,0.12792969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09667969,0.16503906,0.011657715,0.12109375,-0.12207031,-0.095214844,-0.119628906,-0.01550293,-0.12402344,-0.0625,0.076171875,-0.088378906,-0.13183594,-0.01965332,-0.06738281,-0.20996094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13085938,-0.15039062,-0.15625,-0.05126953,0.032714844,-0.014892578,0.071777344,0.123535156,-0.05126953,-0.022705078,-0.10546875,0.05517578,0.12011719,0.095214844,-0.04272461,-0.39453125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.115722656,-0.0067443848,-0.064941406,0.13378906,0.087402344,0.23632812,-0.049316406,-0.076660156,0.125,0.049560547,-0.14941406,0.023071289,-0.06738281,-0.17285156,-0.15332031,-0.072265625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15722656,0.10595703,0.03564453,-0.17675781,0.09765625,-0.1328125,0.056884766,-0.02722168,-0.15722656,-0.0021514893,-0.07421875,-0.19921875,0.0031280518,0.017456055,-0.020874023,-0.16796875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12011719,-0.19238281,0.06982422,-0.15332031,-0.12011719,-0.11279297,-0.359375,-0.006591797,-0.007019043,0.0625,0.060058594,0.008300781,-0.15722656,0.0016021729,-0.023803711,-0.13085938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.036865234,0.012084961,0.044921875,-0.09375,-0.103515625,-0.18652344,-0.030761719,-0.15625,0.025634766,-0.043701172,0.10644531,-0.06201172,0.061767578,0.13476562,0.15136719,0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.028564453,0.015014648,0.014465332,0.03466797,0.041015625,-0.09375,-0.1328125,-0.08203125,0.029785156,-0.011047363,-0.080078125,0.041015625,0.08984375,0.012634277,-0.041259766,-0.15722656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.02368164,-0.06738281,-0.046142578,-0.099121094,0.10253906,0.079589844,0.07470703,0.013183594,-0.10253906,0.036621094,-0.059570312,-0.106933594,-0.17285156,0.024780273,-0.07128906,-0.24316406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.100097656,-0.07519531,-0.0035858154,0.046875,0.04663086,0.076660156,0.114746094,-0.18457031,-0.068847656,0.08203125,-0.025268555,0.15039062,-0.17480469,-0.037353516,0.06738281,-0.08105469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14257812,0.00088500977,-0.012084961,-0.006072998,-0.061035156,-0.0703125,-0.2421875,0.08105469,-0.10839844,-0.080078125,0.034179688,-0.04248047,0.038085938,0.13964844,-0.05126953,-0.10498047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12792969,-0.0065612793,-0.037597656,-0.08203125,-0.011047363,-0.21679688,-0.114746094,0.07519531,0.015563965,0.100097656,0.07373047,-0.05444336,0.12109375,0.12792969,0.0546875,-0.084472656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14746094,-0.1328125,-0.061523438,-0.055664062,-0.004547119,-0.31835938,0.050048828,0.0546875,-0.09863281,-0.018066406,-0.12792969,-0.06542969,0.04345703,0.08935547,-0.060058594,0.09082031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.025146484,-0.10839844,0.059326172,0.075683594,0.095703125,0.09863281,-0.080078125,-0.15234375,-0.009216309,0.061523438,-0.15917969,-0.092285156,-0.10253906,-0.10839844,-0.10107422,-0.099121094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07714844,-0.06933594,0.011413574,0.0023956299,0.13769531,-0.21777344,0.006378174,0.07519531,0.10839844,0.08251953,-0.012512207,-0.055664062,0.083496094,-0.0030517578,-0.25390625,-0.033691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.092285156,0.100097656,0.048339844,0.040283203,-0.020263672,-0.103515625,0.03955078,0.021972656,-0.0126953125,-0.15527344,-0.11816406,0.032958984,-0.04663086,-0.109375,-0.17578125,-0.052246094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.21289062,-0.106933594,-0.095214844,-0.015991211,-0.16113281,-0.030273438,-0.10546875,-0.12060547,-0.03149414,-0.057861328,0.061523438,0.080566406,0.09423828,-0.111816406,-0.03149414,0.060302734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.055664062,-0.32421875,-0.0026245117,-0.029174805,0.04736328,-0.15234375,-0.061279297,-0.17578125,0.05053711,0.18164062,-0.25976562,-0.096191406,0.040283203,-0.083496094,0.053222656,0.092285156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.095703125,-0.14257812,0.083984375,-0.032226562,0.05419922,0.19921875,-0.21582031,0.040527344,0.052246094,0.12597656,-0.11425781,-0.03466797,-0.05493164,0.038085938,0.04638672,-0.013549805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07080078,-0.091308594,-0.17089844,0.068359375,-0.22070312,-0.052734375,0.15429688,-0.087890625,0.037841797,0.0035705566,0.26367188,0.029785156,-0.03466797,0.1015625,-0.020874023,-0.14941406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14550781,-0.140625,0.07763672,-0.0390625,0.115234375,-0.016113281,-0.22558594,-0.3359375,-0.040527344,0.067871094,0.041259766,-0.010192871,0.012329102,-0.13183594,-0.084472656,-0.052001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.16210938,-0.11767578,-0.1171875,0.13085938,-0.23730469,-0.27539062,-0.35742188,0.08203125,-0.071777344,-0.045654297,-0.008666992,0.00074768066,-0.07470703,-0.049804688,0.111816406,-0.08544922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.005340576,-0.03881836,-0.016723633,0.17675781,-0.019165039,0.03857422,-0.234375,0.11669922,-0.13964844,-0.022460938,-0.028198242,0.107910156,-0.009094238,-0.11230469,-0.063964844,-0.33789062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.09814453,-0.23828125,0.06640625,0.107910156,-0.024658203,0.103027344,0.26367188,-0.049316406,-0.05859375,0.057617188,-0.084472656,0.0001449585,0.09716797,-0.10107422,-0.13183594,-0.033691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.083984375,-0.107421875,-0.06933594,-0.055908203,-0.08300781,0.10253906,0.024291992,-0.10107422,-0.0066223145,-0.045410156,-0.21972656,0.013916016,-0.04663086,-0.063964844,-0.028320312,-0.021728516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0069274902,-0.10839844,-0.13183594,-0.047851562,-0.20898438,-0.07910156,-0.017211914,0.024536133,-0.11816406,0.03540039,0.08105469,0.06689453,0.071777344,-0.07373047,0.22558594,-0.13671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0076904297,-0.029541016,-0.23046875,0.06640625,-0.0027160645,-0.013977051,-0.045898438,0.10888672,-0.01574707,0.044189453,-0.123046875,0.067871094,-0.064453125,-0.05859375,-0.095703125,-0.11035156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.048583984,-0.31835938,0.09716797,-0.053955078,-0.1796875,0.076171875,-0.10839844,0.0005874634,-0.0019454956,-0.091796875,-0.1171875,0.25,-0.0050354004,0.12207031,-0.087402344,-0.087402344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.052734375,0.02709961,0.025146484,-0.10253906,-0.0030059814,0.032958984,-0.030883789,-0.013977051,-0.013305664,0.041748047,-0.068359375,-0.19921875,-0.044189453,-0.119628906,0.13671875,-0.19140625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.044189453,-0.025146484,-0.20214844,-0.009460449,-0.067871094,0.052734375,0.09814453,-0.119140625,-0.014770508,0.12988281,0.016113281,0.08642578,-0.067871094,-0.012329102,0.080078125,0.072753906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.09423828,-0.17871094,0.20605469,0.13867188,0.022583008,-0.09375,0.09716797,0.05517578,0.03112793,-0.008850098,-0.171875,-0.033447266,-0.0115356445,-0.27148438,-0.08300781,-0.024414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.115234375,0.04663086,0.049072266,-0.076660156,0.037841797,0.018920898,0.12988281,-0.18847656,-0.07861328,-0.057128906,0.06298828,-0.04272461,-0.14941406,-0.064453125,0.04296875,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05029297,-0.06982422,0.15332031,-0.08154297,-0.024902344,-0.13574219,0.15136719,0.16210938,-0.080566406,-0.06347656,0.059814453,-0.08300781,0.125,0.017456055,0.11669922,-0.091308594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.119628906,-0.20898438,-0.008361816,-0.15039062,-0.15234375,-0.04296875,0.05102539,-0.18066406,0.030517578,-0.10253906,-0.16992188,8.106232e-05,0.14550781,-0.045898438,-0.13378906,-0.24414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15625,-0.17285156,-0.061035156,-0.18554688,-0.111328125,0.048339844,0.07421875,0.07470703,0.0016326904,-0.01574707,0.040039062,-0.10546875,-0.048583984,-0.036865234,-0.104003906,-0.109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.140625,0.09667969,0.06542969,-0.038085938,-0.028198242,-0.0053100586,-0.18066406,-0.043701172,-0.0138549805,0.072265625,0.080078125,0.07373047,0.034423828,0.0074157715,-0.111328125,0.109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.044433594,-0.14550781,-0.2109375,0.047607422,-0.118652344,-0.09326172,-0.03173828,-0.15917969,-0.013671875,-0.0073547363,0.125,-0.12792969,-0.0859375,0.061523438,-0.034179688,0.06933594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15722656,0.05517578,0.09033203,0.125,-0.032958984,-0.008178711,-0.05517578,-0.057373047,-0.06542969,0.022094727,0.04638672,0.026489258,-0.096191406,0.1171875,-0.24414062,-0.22753906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.009399414,-0.05029297,0.07128906,-0.19335938,0.037353516,0.019165039,0.060791016,-0.057128906,-0.06591797,0.018310547,0.080566406,-0.115722656,-0.08154297,0.0025787354,-0.17480469,-0.09033203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.10253906,-0.14746094,-0.016113281,-0.049560547,0.02722168,0.13769531,0.016967773,-0.029418945,0.020141602,-0.003189087,-0.15039062,0.026855469,-0.12695312,0.0087890625,0.19824219,-0.25585938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10205078,-0.04296875,0.015136719,-0.024902344,-0.08496094,0.055664062,-0.16601562,-0.049560547,0.041503906,-0.067871094,-0.09375,0.11767578,-0.07470703,0.09326172,-0.05810547,-0.119628906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05834961,0.11621094,0.068847656,-0.06298828,0.11767578,0.0019378662,-0.20898438,-0.14160156,-0.09033203,0.07910156,0.12597656,-0.14160156,-0.030517578,-0.033203125,0.107421875,-0.088378906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.057861328,-0.052001953,0.088378906,-0.12402344,-0.04321289,-0.27929688,-0.14355469,0.0025482178,-0.14160156,0.014404297,0.13574219,0.09423828,-0.10449219,0.19726562,-0.02734375,0.02355957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14648438,-0.076660156,0.03149414,-0.021728516,-0.03173828,-0.011413574,-0.203125,-0.115234375,-0.024780273,-0.049560547,0.11669922,0.10253906,-0.11376953,-0.095214844,0.11376953,-0.016235352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.017333984,0.020385742,-0.04736328,0.045410156,0.027832031,-0.0041503906,-0.20898438,0.037109375,0.023803711,-0.014343262,0.07373047,0.15136719,0.14257812,-0.28125,-0.10595703,-0.028808594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.12011719,-0.04272461,0.047851562,-0.008422852,0.13183594,-0.07714844,0.09765625,-0.04638672,0.022216797,-0.079589844,0.072265625,0.068847656,-0.30078125,-0.029296875,-0.08203125,-0.076171875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.099609375,-0.22949219,0.0059814453,0.076660156,-0.203125,-0.07714844,-0.028320312,-0.18261719,-0.04663086,0.006378174,0.04296875,-0.055664062,0.02368164,-0.033935547,-0.06542969,0.068847656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.033691406,0.06591797,-0.13085938,-0.018310547,-0.017211914,-0.140625,-0.10498047,-0.12988281,0.18261719,0.09765625,-0.10058594,-0.040771484,-0.091308594,-0.22070312,-0.02355957,-0.1875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.037597656,-0.022705078,0.033691406,-0.047607422,-0.072265625,0.24902344,-0.15039062,-0.014221191,-0.009094238,0.04711914,-0.0859375,0.022705078,-0.13867188,0.07470703,0.12451172,-0.047607422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.010314941,-0.07324219,-0.008728027,-0.075683594,-0.09765625,0.06225586,-0.043701172,-0.12792969,0.049316406,-0.08203125,0.15039062,-0.057373047,-0.05126953,0.00793457,0.038330078,-0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.06689453,0.19921875,-0.103027344,-0.057373047,0.111328125,-0.041503906,-0.0030670166,-0.35351562,-0.107421875,-0.10498047,-0.031982422,0.029907227,0.0095825195,-0.2578125,0.13769531,0.09716797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.002105713,-0.16210938,-0.07128906,-0.008056641,-0.14160156,0.087402344,-0.24121094,-0.08203125,-0.014465332,0.037597656,-0.041748047,-0.014099121,-0.11230469,-0.110839844,0.14453125,-0.18066406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.015258789,-0.25976562,-0.05444336,0.14257812,0.028442383,0.00093078613,-0.05883789,0.16113281,-0.050048828,0.032958984,0.10546875,-0.09863281,0.06640625,-0.06982422,0.012634277,-0.06591797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.16796875,0.026123047,0.05908203,0.049804688,-0.028198242,-0.13574219,-0.19824219,0.006713867,0.18457031,0.12890625,-0.12988281,0.0703125,-0.047851562,-0.06640625,0.083984375,0.13671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.044189453,-0.12988281,0.20214844,-0.011779785,-0.036132812,0.064453125,-0.13085938,-0.092285156,0.076171875,-0.0032958984,-0.029296875,0.06542969,-0.00023365021,-0.078125,0.08544922,-0.0035247803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.15429688,-0.06542969,0.010131836,0.053466797,0.012084961,0.01940918,0.008117676,-0.0033416748,0.053222656,0.053222656,0.061767578,-0.14648438,0.04663086,0.014099121,0.08642578,0.043701172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.099121094,0.06640625,0.19238281,0.13769531,-0.046875,-0.07373047,-0.12451172,0.15234375,-0.056640625,0.0036773682,-0.059326172,-0.14355469,0.02709961,0.034423828,-0.029052734,-0.021118164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06738281,-0.016967773,-0.14648438,-0.18164062,-0.20507812,0.016357422,0.013916016,-0.122558594,0.088378906,-0.08105469,-0.05126953,-0.033203125,0.13574219,-0.09765625,0.15625,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.079589844,-0.22753906,-0.047851562,-0.014526367,-0.059326172,0.053466797,-0.056640625,-0.1015625,-0.0068969727,-0.06738281,-0.02734375,-0.1484375,0.044189453,-0.19433594,0.16503906,0.09375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.04711914,0.045654297,-0.08203125,-0.07910156,-0.012573242,0.017578125,0.17871094,-0.106933594,-0.06933594,0.080566406,-0.26367188,0.017944336,-0.087402344,-0.14160156,-0.026855469,-0.004638672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.048095703,0.017456055,-0.22460938,-0.029418945,-0.09326172,0.103027344,-0.099609375,-0.030273438,-0.107421875,0.025146484,0.13671875,-0.06689453,0.05078125,-0.30664062,0.08886719,-0.005004883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.122558594,0.030395508,0.09863281,-0.17285156,0.092285156,0.08154297,0.10546875,0.048583984,0.052001953,-0.08496094,0.036865234,-0.08691406,0.0859375,0.043701172,0.027709961,-0.080078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.07861328,0.033447266,-0.007080078,-0.016479492,-0.0042419434,-0.006378174,0.0065612793,0.111816406,-0.07763672,0.0008049011,0.06933594,-0.1328125,0.024536133,0.0625,0.1171875,-0.04321289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08300781,-0.21875,-0.10058594,-0.08935547,-0.17578125,0.19335938,-0.13378906,-0.171875,0.14160156,-0.18847656,-0.18066406,-0.041503906,-0.06982422,-0.011230469,-0.024169922,-0.18261719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.16503906,-0.079589844,0.06298828,-0.20507812,-0.0009918213,-0.0020751953,0.0051879883,0.026611328,-0.032470703,-0.028198242,-0.02746582,0.052001953,0.068847656,-0.18164062,-0.07714844,0.109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.21972656,-0.012756348,0.080566406,-0.0058898926,-0.0034637451,-0.24414062,0.067871094,-0.009887695,-0.03955078,0.1484375,-0.0053100586,-0.09277344,-0.011962891,-0.20507812,-0.083496094,0.14355469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.029418945,-0.044433594,0.033691406,0.087890625,-0.01373291,-0.21191406,0.036132812,-0.10205078,-0.11425781,0.03930664,-0.17089844,0.021972656,0.033935547,-0.08642578,-0.080566406,-0.013427734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.046142578,-0.10888672,-0.07714844,-0.001701355,0.100097656,0.007080078,0.091308594,-0.018920898,0.109375,-0.14160156,0.11376953,-0.06640625,-0.11767578,0.076171875,-0.27148438,-0.071777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.029296875,0.013244629,-0.14941406,-0.22167969,0.020751953,0.002609253,0.011779785,0.0013275146,-0.030517578,0.028930664,-0.15429688,0.13085938,0.076660156,-0.091308594,-0.14257812,0.07861328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.034423828,0.033203125,-0.027709961,0.07373047,-0.13867188,-0.045166016,0.04345703,0.10253906,0.0073242188,-0.0066223145,-0.039794922,0.06933594,-0.034423828,-0.20800781,-0.001449585,-0.036132812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.091796875,-0.052734375,-0.009094238,-0.053710938,-0.18652344,-0.099121094,-0.12402344,0.025878906,0.06542969,0.07324219,-0.20214844,0.11816406,-0.13085938,-0.091796875,0.059814453,0.087402344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11669922,0.061523438,0.022583008,0.020996094,0.044921875,-0.19433594,-0.122558594,-0.018432617,-0.14746094,0.015319824,0.123046875,-0.07128906,-0.15527344,0.049316406,0.061035156,-0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11767578,0.12695312,-0.032470703,-0.025756836,-0.09814453,-0.25585938,0.107421875,-0.04663086,-0.0064697266,0.036621094,0.14257812,0.029174805,0.016601562,0.10253906,-0.15917969,0.06347656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09033203,0.06689453,-0.03930664,0.053955078,-0.16113281,0.111816406,-0.18652344,0.09716797,0.14550781,-0.0071411133,0.01373291,-0.019165039,-0.12109375,0.07861328,0.16894531,0.04638672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.16308594,0.06640625,0.046875,0.04248047,-0.10644531,-0.07861328,0.021972656,-0.037109375,0.05517578,0.010925293,-0.021972656,0.122558594,0.08251953,-0.21679688,0.007873535,-0.07714844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.14355469,-0.15136719,0.016845703,0.030761719,-0.24511719,-0.19433594,0.07324219,-0.096191406,-0.0546875,-0.01940918,0.024780273,0.08496094,-0.083984375,-0.11035156,0.1484375,-0.23828125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11376953,0.08984375,-0.046142578,0.052978516,-0.23535156,-0.051757812,0.064453125,-0.12402344,-0.018920898,0.020874023,0.13574219,-0.041992188,0.10888672,-0.0058898926,-0.049072266,0.007507324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.033935547,0.103515625,-0.01940918,-0.043945312,-0.068847656,-0.2421875,-0.10205078,-0.08984375,-0.07128906,0.055908203,-0.13085938,0.012817383,0.10644531,-0.08203125,-0.13964844,-0.11230469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09765625,-0.01977539,0.060302734,-0.016479492,0.008483887,0.32421875,0.15429688,0.07519531,-0.0859375,-0.033203125,0.13867188,-0.03564453,-0.0011901855,0.013671875,0.028564453,-0.10058594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11767578,0.21386719,-0.0071411133,-0.022460938,-0.060791016,0.018920898,-0.296875,-0.0056152344,-0.08642578,0.16992188,-0.26757812,0.0050354004,0.14257812,-0.171875,0.17871094,0.022094727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06542969,0.12597656,0.013671875,0.013916016,-0.029663086,0.027832031,-0.05859375,-0.29492188,-0.03173828,-0.07128906,0.024169922,-0.061279297,-0.053710938,-0.23046875,0.047607422,0.20117188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.21582031,0.28710938,-0.123535156,-0.040527344,-0.17382812,-0.104003906,-0.032714844,-0.055419922,-0.013061523,0.030517578,0.2265625,0.02368164,-0.12451172,0.06201172,0.020019531,0.040771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.1171875,0.03955078,0.0107421875,0.11328125,-0.025512695,-0.023803711,0.08691406,0.023803711,-0.12792969,-0.05419922,-0.00090789795,-0.05029297,-0.056884766,0.005554199,-0.055664062,0.016723633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.16992188,0.0041503906,-0.033935547,0.0077209473,-0.07324219,0.036621094,-0.083984375,0.08886719,-0.087890625,0.16210938,-0.10839844,0.055419922,0.024414062,0.006164551,0.036376953,0.0625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0046081543,0.057373047,-0.119628906,0.0625,-0.0025177002,0.09472656,0.1640625,-0.04321289,-0.041992188,-0.08300781,0.100097656,-0.078125,-0.07128906,0.05908203,-0.0058288574,0.01184082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.18554688,-0.059326172,-0.029785156,-0.11328125,0.092285156,0.11230469,-0.2109375,0.140625,-0.09765625,0.071777344,0.0546875,-0.16601562,-0.0703125,-0.11328125,0.046142578,-0.0546875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.014038086,0.06225586,0.056152344,0.049316406,-0.02709961,-0.04711914,0.08251953,0.18164062,-0.1640625,-0.05029297,-0.10205078,-0.014160156,-0.014465332,-0.046875,-0.044677734,0.026367188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.055419922,0.028686523,-0.16699219,0.0703125,-0.17382812,0.06542969,-0.09765625,-0.118652344,-0.05493164,0.05493164,0.026245117,-0.02734375,-0.022705078,0.07910156,-0.023803711,0.08105469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.052246094,0.13085938,0.0859375,0.111816406,-0.018676758,0.061767578,-0.052734375,0.075683594,-0.037109375,0.020019531,-0.030517578,0.07373047,-0.02758789,-0.29101562,-0.19824219,-0.10888672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.08691406,0.02368164,0.01977539,-0.027709961,0.056640625,0.05126953,-0.119628906,-0.038085938,-0.044433594,0.087890625,0.061523438,-0.03930664,-0.016479492,-0.08544922,0.072265625,-0.0066833496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09033203,0.17675781,0.008850098,-0.076660156,0.035888672,-0.01574707,-0.087890625,0.09716797,-0.006286621,-0.06542969,-0.14648438,-0.13183594,-0.083984375,-0.17480469,-0.051757812,0.0026550293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08154297,-0.11230469,-0.05126953,-0.13867188,0.039794922,0.036132812,0.014526367,-0.048339844,-0.09423828,0.068847656,0.18457031,-0.140625,-0.056884766,-0.14257812,-0.111816406,-0.20507812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.020141602,0.119140625,-0.01373291,0.08496094,-0.24023438,0.072753906,-0.11376953,0.037353516,0.020751953,-0.05834961,-0.0020141602,0.103515625,0.13671875,0.079589844,0.1484375,-0.03149414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.09082031,0.02331543,-0.03564453,-0.049316406,-0.12792969,-0.024536133,-0.19921875,-0.037841797,-0.052246094,0.119140625,-0.039794922,0.10058594,0.029052734,-0.072753906,-0.07861328,-0.12988281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.076660156,-0.029785156,0.001121521,-0.032226562,-0.020385742,0.08154297,-0.16992188,-0.052001953,-0.052490234,-0.05029297,-0.21972656,0.104003906,-0.056152344,-0.19335938,-0.20117188,0.13476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.045166016,0.09277344,0.018432617,-0.028442383,0.0703125,-0.118652344,0.05029297,0.013916016,-0.103027344,0.0703125,0.026977539,-0.083496094,0.011291504,-0.005584717,0.083984375,0.08691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.004638672,0.045410156,0.080078125,0.037841797,-0.06298828,-0.087890625,0.028686523,-0.014343262,-0.13476562,-0.080078125,-0.055908203,-0.04638672,-0.020629883,-0.15332031,-0.1171875,-0.12207031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.123535156,-0.15820312,-0.057373047,-0.064453125,-0.076660156,0.19335938,0.0047302246,-0.28710938,0.18945312,-0.019165039,-0.056152344,-0.12451172,-0.031982422,-0.20996094,0.0011825562,-0.044921875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08251953,0.15820312,0.060791016,-0.18359375,-0.111328125,-0.11816406,-0.19335938,-0.01965332,-0.13964844,-0.064941406,0.11279297,0.08544922,0.053955078,0.076660156,0.063964844,0.11230469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10888672,0.0107421875,-0.07128906,0.004272461,-0.123046875,-0.24902344,-0.041748047,-0.24414062,-0.00074005127,0.12060547,-0.0038757324,0.25390625,-0.010437012,-0.1171875,-0.16699219,0.060302734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0038146973,0.22265625,-0.10107422,-0.043701172,-0.24316406,-0.01928711,0.0859375,-0.036376953,-0.039794922,-0.10888672,-0.2578125,0.064941406,-0.20214844,-0.016601562,-0.10839844,-0.110839844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.1796875,0.056884766,-0.030517578,0.07373047,-0.12695312,-0.045654297,-0.052246094,-0.018432617,0.0028686523,-0.00579834,0.040527344,-0.1328125,-0.04272461,-0.07861328,0.08203125,-0.111816406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.06298828,0.09667969,0.025024414,0.06982422,0.026367188,-0.2265625,-0.091796875,-0.06640625,0.0060424805,-0.061767578,-0.20898438,0.022338867,-0.15625,-0.041748047,-0.20117188,-0.0043029785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13476562,0.036132812,-0.03564453,0.056884766,-0.030639648,0.08886719,0.038330078,-0.040771484,0.22753906,-0.064941406,-0.032226562,0.055419922,-0.049804688,-0.15917969,-0.19824219,0.22851562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.045898438,0.05810547,0.05908203,0.028686523,-0.15429688,-0.19238281,0.107910156,-0.0035705566,-0.09423828,0.024047852,-0.0056152344,-0.056884766,0.01574707,-0.07763672,0.071777344,-0.0064086914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08203125,-0.042236328,0.029052734,0.019042969,-0.11425781,-0.032226562,-0.15332031,0.0016098022,-0.013183594,-0.040283203,-0.05126953,0.0859375,-0.12597656,-0.27539062,0.14941406,0.06225586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; static bfloat16_t conv_2_w[192][64] row_align(1); #else static const elem_t conv_2_w[192][64] row_align(1) = {{0.12792969,-0.11376953,-0.049072266,0.036132812,-0.014587402,-0.15527344,-0.17480469,-0.010864258,-0.16699219,0.09277344,-0.09082031,-0.026855469,0.080078125,-0.122558594,0.049072266,0.04663086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.023925781,-0.18359375,0.024169922,0.13476562,0.11035156,-0.140625,-0.009094238,-0.01574707,-0.10058594,-0.05078125,-0.21484375,0.01574707,0.032714844,0.059814453,-0.0390625,0.08544922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.18847656,0.091308594,-0.12011719,-0.0025939941,0.0069885254,-0.06591797,0.14453125,0.072265625,-0.021484375,0.087402344,-0.0016555786,-0.11425781,-0.1484375,0.0859375,0.1484375,0.079589844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06347656,0.044677734,-0.12451172,-0.007446289,-0.08251953,0.01361084,-0.125,-0.042236328,0.08154297,0.020385742,0.048828125,-0.036865234,0.05078125,-0.0029296875,-0.039794922,0.041503906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08251953,-0.05493164,0.0043029785,0.044433594,-0.16796875,-0.104003906,-0.008972168,-0.03125,-0.049804688,0.013244629,-0.09082031,0.005279541,-0.003250122,-0.007873535,0.046142578,0.0859375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.007019043,-0.076171875,0.05810547,0.010070801,0.07714844,-0.005859375,-0.043701172,0.080566406,-0.050048828,0.0028076172,-0.2109375,0.100097656,-0.08154297,0.16210938,-0.12402344,-0.013122559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.16308594,-0.055908203,-0.061279297,-0.11425781,0.14550781,-0.015136719,-0.18164062,0.0134887695,-0.0031738281,0.08642578,-0.12890625,0.023071289,0.0039367676,0.072265625,-0.06933594,0.008605957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.021850586,-0.114746094,-0.060791016,0.013183594,-0.042236328,-0.13378906,-0.052490234,0.0037841797,-0.06347656,0.14453125,-0.083984375,-0.008300781,0.0022277832,-0.072753906,-0.0058288574,-0.043945312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.087890625,-0.13964844,0.14453125,0.041015625,0.16308594,-0.17773438,0.014282227,0.02758789,-0.10449219,-0.096191406,0.037597656,-0.15332031,-0.040771484,-0.13085938,-0.07470703,0.057617188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.01940918,-0.049072266,-0.07910156,-0.033935547,-0.0071411133,0.034423828,0.114746094,0.07763672,0.088378906,-0.012390137,0.037353516,-0.0390625,0.052001953,0.15136719,0.12792969,0.040771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07470703,-0.037109375,0.014770508,-0.0625,0.13574219,-0.037841797,-0.171875,-0.08935547,-0.08886719,-0.061767578,-0.09472656,-0.04663086,-0.09814453,0.053222656,-0.1640625,-0.18847656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.091796875,0.010864258,0.012878418,0.052246094,-0.0390625,-0.046142578,0.15917969,0.044433594,0.0035858154,0.0008277893,0.0018692017,0.12695312,-0.052001953,-0.00289917,-0.007293701,-0.12011719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03466797,0.026489258,-0.06298828,-0.12792969,0.12988281,-0.041015625,-0.014038086,-0.027954102,-0.14746094,0.0038146973,0.0057678223,0.075683594,-0.010437012,0.041259766,0.09814453,0.03930664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.006378174,-0.13574219,0.025024414,-0.0095825195,-0.013122559,0.07714844,0.044433594,-0.005126953,-0.043701172,0.01586914,0.08496094,-0.064453125,0.051757812,0.08203125,0.044189453,0.03491211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.03881836,-0.096191406,-0.0126953125,0.04663086,0.02319336,-0.02331543,-0.040283203,0.03930664,-0.042236328,-0.061767578,0.11279297,-0.05078125,0.021972656,0.02331543,-0.115234375,0.11035156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.04736328,0.009521484,-0.010009766,0.14160156,-0.078125,0.16113281,0.057128906,0.017333984,-0.14257812,-0.12060547,0.05834961,-0.030273438,-0.064453125,-0.032470703,0.16894531,-0.036621094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.13574219,0.004272461,0.024414062,0.0003376007,0.076660156,-0.026123047,0.028564453,0.014099121,-0.06591797,0.033203125,0.046875,-0.0012435913,0.068359375,0.16015625,-0.09765625,-0.06347656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.21875,-0.29101562,-0.051757812,-0.033447266,0.08203125,-0.052734375,0.22753906,-0.34570312,-0.018798828,-0.06982422,0.12890625,0.012939453,0.0028686523,-0.23828125,0.08496094,-0.10449219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.009399414,0.09277344,-0.09765625,0.041259766,0.12695312,-0.09082031,-0.07080078,0.10449219,-0.033935547,0.033935547,0.010803223,0.027832031,-0.087402344,-0.018310547,0.057373047,0.125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.035888672,0.0134887695,0.03881836,-0.13574219,0.049804688,-0.008666992,0.04736328,0.078125,-0.11230469,-0.037597656,0.15332031,-0.03857422,-0.03857422,-0.04663086,0.03930664,-0.09765625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.025024414,-0.026733398,-0.045898438,-0.048095703,0.003250122,-0.21484375,0.0032653809,-0.056396484,0.05102539,0.024902344,-0.1328125,0.18261719,0.003540039,0.06542969,0.21679688,0.088378906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.064453125,0.18359375,-0.12792969,0.10498047,0.06689453,0.0034942627,0.09423828,-0.10058594,0.06542969,0.008056641,-0.28320312,-0.06201172,-0.06982422,-0.14257812,0.018066406,-0.009338379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.107910156,-0.026245117,0.01586914,0.0012359619,-0.040527344,-0.029052734,0.12988281,0.028686523,-0.16113281,0.032958984,0.08886719,0.068359375,-0.041992188,0.034423828,0.060302734,0.0024414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.140625,-0.056152344,0.20996094,-0.23730469,-0.02331543,0.091796875,0.115234375,-0.13183594,-0.16894531,-0.018066406,-0.09863281,-0.05517578,-0.15234375,-0.05908203,-0.12060547,-0.15234375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15527344,0.022338867,0.041992188,-0.014282227,0.061035156,-0.018066406,-0.20507812,-0.040527344,-0.025634766,0.095214844,-0.05444336,-0.031982422,-0.0023345947,0.14453125,0.06298828,0.033935547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07714844,0.15039062,0.07373047,0.007659912,0.09326172,-0.004272461,0.115234375,0.03125,-0.06738281,0.11425781,0.095703125,-0.01965332,0.021240234,-0.009033203,0.045654297,-0.16601562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.033447266,0.09277344,0.04321289,0.008056641,-0.08154297,-0.048339844,0.029785156,0.048583984,-0.12402344,-0.009521484,-0.28710938,-0.03466797,-0.044921875,0.083496094,-0.056640625,0.04296875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.037109375,0.20703125,0.0027618408,0.12792969,0.0026550293,0.047851562,0.05834961,-0.09033203,-0.03173828,-0.037109375,0.04736328,0.10107422,-0.23828125,0.076171875,0.041748047,-0.18261719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.17285156,-0.068359375,-0.05834961,0.042236328,-0.12695312,-0.14550781,-0.11767578,-0.0018539429,0.0024871826,-0.067871094,-0.04321289,-0.1484375,0.056884766,0.000869751,-0.072265625,0.13085938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.1015625,-0.0047302246,0.123535156,-0.06933594,0.004058838,0.0546875,0.26171875,0.039794922,0.0625,-0.079589844,-0.08544922,-0.06689453,-0.1015625,-0.02734375,0.111816406,-0.040527344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.111328125,-0.07763672,-0.041259766,0.12597656,0.031982422,-0.045166016,-0.09472656,-0.060546875,-0.16894531,0.005065918,-0.0625,-0.004119873,0.06591797,-0.061035156,-0.096191406,0.0043029785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11279297,-0.23828125,0.053955078,-0.014709473,0.09863281,-0.106933594,0.25390625,0.0126953125,-0.026000977,-0.005340576,-0.171875,-0.045166016,0.0115356445,-0.0037384033,0.109375,0.041259766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.076660156,-0.012207031,0.037841797,-0.06689453,-0.03515625,0.10595703,0.05444336,0.061523438,-0.07910156,0.05834961,0.01953125,-0.005859375,-0.21582031,0.13476562,0.01953125,0.046142578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.109375,-0.05834961,-0.09326172,0.09863281,-0.10058594,0.10986328,0.18457031,-0.11621094,-0.041015625,-0.09814453,-0.048095703,0.004425049,0.16601562,0.25,-0.075683594,0.016845703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.011657715,-0.24609375,0.125,0.08105469,0.06689453,-0.11035156,0.00092697144,-0.20214844,-0.005279541,0.016113281,-0.056152344,-0.046875,0.033203125,-0.0234375,-0.09472656,-0.03540039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.028076172,0.0025787354,-0.027954102,-0.0095825195,-0.104003906,0.04345703,-0.03564453,0.080566406,-0.052246094,-0.026000977,0.12597656,-0.008117676,-0.053222656,-0.114746094,-0.038330078,0.09033203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.016357422,0.09326172,-0.107910156,0.001953125,0.01361084,-0.0138549805,0.018920898,0.010986328,-0.056884766,-0.028686523,-0.111816406,-0.01953125,-0.10888672,-0.123535156,0.079589844,-0.23730469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.048095703,-0.072265625,-0.10546875,0.14355469,-0.09277344,-0.0087890625,0.171875,-0.01928711,-0.09716797,0.044921875,-0.0009689331,-0.15722656,-0.07763672,-0.060546875,-0.17480469,-0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0703125,-0.1015625,-0.03173828,-0.01586914,-0.042236328,0.103515625,0.041503906,-0.00491333,-0.041748047,0.03540039,-0.09423828,0.0013809204,0.013366699,0.050048828,0.006591797,0.06298828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.042236328,0.2734375,-0.14648438,-0.07470703,0.042236328,-0.10595703,-0.0029449463,0.029785156,0.0055236816,0.044921875,0.17773438,-0.05493164,0.068359375,-0.025878906,0.123046875,-0.20214844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11035156,-0.23144531,0.05419922,-0.025146484,0.18261719,0.018676758,0.07910156,-0.08544922,-0.06225586,0.04296875,0.13085938,-0.0034332275,-0.09716797,0.040039062,-0.08886719,-0.3515625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.007080078,-0.041259766,0.061035156,0.044189453,0.043701172,0.032470703,0.10107422,-0.06347656,-0.13867188,0.012084961,0.140625,-0.12695312,-0.15429688,-0.12792969,-0.021362305,-0.056640625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13183594,0.064941406,0.0703125,0.0011672974,-0.03173828,-0.111328125,-0.006011963,-0.022705078,-0.003250122,0.051757812,0.015625,0.11230469,0.06738281,0.115722656,0.07910156,-0.15429688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.078125,-0.18261719,0.076171875,0.08544922,-0.009399414,-0.08935547,-0.12207031,0.03125,0.0019454956,0.044433594,-0.114746094,0.087890625,0.051513672,0.10595703,0.030761719,0.037841797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.060058594,-0.19140625,0.00592041,0.17480469,-0.09667969,-0.03466797,0.024291992,0.0067443848,0.009338379,0.06689453,0.16308594,0.21679688,-0.019897461,-0.08300781,-0.1796875,0.12792969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09667969,0.16503906,0.011657715,0.12109375,-0.12207031,-0.095214844,-0.119628906,-0.01550293,-0.12402344,-0.0625,0.076171875,-0.088378906,-0.13183594,-0.01965332,-0.06738281,-0.20996094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13085938,-0.15039062,-0.15625,-0.05126953,0.032714844,-0.014892578,0.071777344,0.123535156,-0.05126953,-0.022705078,-0.10546875,0.05517578,0.12011719,0.095214844,-0.04272461,-0.39453125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.115722656,-0.0067443848,-0.064941406,0.13378906,0.087402344,0.23632812,-0.049316406,-0.076660156,0.125,0.049560547,-0.14941406,0.023071289,-0.06738281,-0.17285156,-0.15332031,-0.072265625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15722656,0.10595703,0.03564453,-0.17675781,0.09765625,-0.1328125,0.056884766,-0.02722168,-0.15722656,-0.0021514893,-0.07421875,-0.19921875,0.0031280518,0.017456055,-0.020874023,-0.16796875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12011719,-0.19238281,0.06982422,-0.15332031,-0.12011719,-0.11279297,-0.359375,-0.006591797,-0.007019043,0.0625,0.060058594,0.008300781,-0.15722656,0.0016021729,-0.023803711,-0.13085938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.036865234,0.012084961,0.044921875,-0.09375,-0.103515625,-0.18652344,-0.030761719,-0.15625,0.025634766,-0.043701172,0.10644531,-0.06201172,0.061767578,0.13476562,0.15136719,0.14746094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.028564453,0.015014648,0.014465332,0.03466797,0.041015625,-0.09375,-0.1328125,-0.08203125,0.029785156,-0.011047363,-0.080078125,0.041015625,0.08984375,0.012634277,-0.041259766,-0.15722656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.02368164,-0.06738281,-0.046142578,-0.099121094,0.10253906,0.079589844,0.07470703,0.013183594,-0.10253906,0.036621094,-0.059570312,-0.106933594,-0.17285156,0.024780273,-0.07128906,-0.24316406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.100097656,-0.07519531,-0.0035858154,0.046875,0.04663086,0.076660156,0.114746094,-0.18457031,-0.068847656,0.08203125,-0.025268555,0.15039062,-0.17480469,-0.037353516,0.06738281,-0.08105469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14257812,0.00088500977,-0.012084961,-0.006072998,-0.061035156,-0.0703125,-0.2421875,0.08105469,-0.10839844,-0.080078125,0.034179688,-0.04248047,0.038085938,0.13964844,-0.05126953,-0.10498047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.12792969,-0.0065612793,-0.037597656,-0.08203125,-0.011047363,-0.21679688,-0.114746094,0.07519531,0.015563965,0.100097656,0.07373047,-0.05444336,0.12109375,0.12792969,0.0546875,-0.084472656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14746094,-0.1328125,-0.061523438,-0.055664062,-0.004547119,-0.31835938,0.050048828,0.0546875,-0.09863281,-0.018066406,-0.12792969,-0.06542969,0.04345703,0.08935547,-0.060058594,0.09082031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.025146484,-0.10839844,0.059326172,0.075683594,0.095703125,0.09863281,-0.080078125,-0.15234375,-0.009216309,0.061523438,-0.15917969,-0.092285156,-0.10253906,-0.10839844,-0.10107422,-0.099121094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07714844,-0.06933594,0.011413574,0.0023956299,0.13769531,-0.21777344,0.006378174,0.07519531,0.10839844,0.08251953,-0.012512207,-0.055664062,0.083496094,-0.0030517578,-0.25390625,-0.033691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.092285156,0.100097656,0.048339844,0.040283203,-0.020263672,-0.103515625,0.03955078,0.021972656,-0.0126953125,-0.15527344,-0.11816406,0.032958984,-0.04663086,-0.109375,-0.17578125,-0.052246094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.21289062,-0.106933594,-0.095214844,-0.015991211,-0.16113281,-0.030273438,-0.10546875,-0.12060547,-0.03149414,-0.057861328,0.061523438,0.080566406,0.09423828,-0.111816406,-0.03149414,0.060302734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.055664062,-0.32421875,-0.0026245117,-0.029174805,0.04736328,-0.15234375,-0.061279297,-0.17578125,0.05053711,0.18164062,-0.25976562,-0.096191406,0.040283203,-0.083496094,0.053222656,0.092285156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.095703125,-0.14257812,0.083984375,-0.032226562,0.05419922,0.19921875,-0.21582031,0.040527344,0.052246094,0.12597656,-0.11425781,-0.03466797,-0.05493164,0.038085938,0.04638672,-0.013549805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.07080078,-0.091308594,-0.17089844,0.068359375,-0.22070312,-0.052734375,0.15429688,-0.087890625,0.037841797,0.0035705566,0.26367188,0.029785156,-0.03466797,0.1015625,-0.020874023,-0.14941406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14550781,-0.140625,0.07763672,-0.0390625,0.115234375,-0.016113281,-0.22558594,-0.3359375,-0.040527344,0.067871094,0.041259766,-0.010192871,0.012329102,-0.13183594,-0.084472656,-0.052001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.16210938,-0.11767578,-0.1171875,0.13085938,-0.23730469,-0.27539062,-0.35742188,0.08203125,-0.071777344,-0.045654297,-0.008666992,0.00074768066,-0.07470703,-0.049804688,0.111816406,-0.08544922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.005340576,-0.03881836,-0.016723633,0.17675781,-0.019165039,0.03857422,-0.234375,0.11669922,-0.13964844,-0.022460938,-0.028198242,0.107910156,-0.009094238,-0.11230469,-0.063964844,-0.33789062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.09814453,-0.23828125,0.06640625,0.107910156,-0.024658203,0.103027344,0.26367188,-0.049316406,-0.05859375,0.057617188,-0.084472656,0.0001449585,0.09716797,-0.10107422,-0.13183594,-0.033691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.083984375,-0.107421875,-0.06933594,-0.055908203,-0.08300781,0.10253906,0.024291992,-0.10107422,-0.0066223145,-0.045410156,-0.21972656,0.013916016,-0.04663086,-0.063964844,-0.028320312,-0.021728516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0069274902,-0.10839844,-0.13183594,-0.047851562,-0.20898438,-0.07910156,-0.017211914,0.024536133,-0.11816406,0.03540039,0.08105469,0.06689453,0.071777344,-0.07373047,0.22558594,-0.13671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0076904297,-0.029541016,-0.23046875,0.06640625,-0.0027160645,-0.013977051,-0.045898438,0.10888672,-0.01574707,0.044189453,-0.123046875,0.067871094,-0.064453125,-0.05859375,-0.095703125,-0.11035156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.048583984,-0.31835938,0.09716797,-0.053955078,-0.1796875,0.076171875,-0.10839844,0.0005874634,-0.0019454956,-0.091796875,-0.1171875,0.25,-0.0050354004,0.12207031,-0.087402344,-0.087402344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.052734375,0.02709961,0.025146484,-0.10253906,-0.0030059814,0.032958984,-0.030883789,-0.013977051,-0.013305664,0.041748047,-0.068359375,-0.19921875,-0.044189453,-0.119628906,0.13671875,-0.19140625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.044189453,-0.025146484,-0.20214844,-0.009460449,-0.067871094,0.052734375,0.09814453,-0.119140625,-0.014770508,0.12988281,0.016113281,0.08642578,-0.067871094,-0.012329102,0.080078125,0.072753906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.09423828,-0.17871094,0.20605469,0.13867188,0.022583008,-0.09375,0.09716797,0.05517578,0.03112793,-0.008850098,-0.171875,-0.033447266,-0.0115356445,-0.27148438,-0.08300781,-0.024414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.115234375,0.04663086,0.049072266,-0.076660156,0.037841797,0.018920898,0.12988281,-0.18847656,-0.07861328,-0.057128906,0.06298828,-0.04272461,-0.14941406,-0.064453125,0.04296875,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05029297,-0.06982422,0.15332031,-0.08154297,-0.024902344,-0.13574219,0.15136719,0.16210938,-0.080566406,-0.06347656,0.059814453,-0.08300781,0.125,0.017456055,0.11669922,-0.091308594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.119628906,-0.20898438,-0.008361816,-0.15039062,-0.15234375,-0.04296875,0.05102539,-0.18066406,0.030517578,-0.10253906,-0.16992188,8.106232e-05,0.14550781,-0.045898438,-0.13378906,-0.24414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15625,-0.17285156,-0.061035156,-0.18554688,-0.111328125,0.048339844,0.07421875,0.07470703,0.0016326904,-0.01574707,0.040039062,-0.10546875,-0.048583984,-0.036865234,-0.104003906,-0.109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.140625,0.09667969,0.06542969,-0.038085938,-0.028198242,-0.0053100586,-0.18066406,-0.043701172,-0.0138549805,0.072265625,0.080078125,0.07373047,0.034423828,0.0074157715,-0.111328125,0.109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.044433594,-0.14550781,-0.2109375,0.047607422,-0.118652344,-0.09326172,-0.03173828,-0.15917969,-0.013671875,-0.0073547363,0.125,-0.12792969,-0.0859375,0.061523438,-0.034179688,0.06933594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.15722656,0.05517578,0.09033203,0.125,-0.032958984,-0.008178711,-0.05517578,-0.057373047,-0.06542969,0.022094727,0.04638672,0.026489258,-0.096191406,0.1171875,-0.24414062,-0.22753906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.009399414,-0.05029297,0.07128906,-0.19335938,0.037353516,0.019165039,0.060791016,-0.057128906,-0.06591797,0.018310547,0.080566406,-0.115722656,-0.08154297,0.0025787354,-0.17480469,-0.09033203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.10253906,-0.14746094,-0.016113281,-0.049560547,0.02722168,0.13769531,0.016967773,-0.029418945,0.020141602,-0.003189087,-0.15039062,0.026855469,-0.12695312,0.0087890625,0.19824219,-0.25585938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10205078,-0.04296875,0.015136719,-0.024902344,-0.08496094,0.055664062,-0.16601562,-0.049560547,0.041503906,-0.067871094,-0.09375,0.11767578,-0.07470703,0.09326172,-0.05810547,-0.119628906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05834961,0.11621094,0.068847656,-0.06298828,0.11767578,0.0019378662,-0.20898438,-0.14160156,-0.09033203,0.07910156,0.12597656,-0.14160156,-0.030517578,-0.033203125,0.107421875,-0.088378906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.057861328,-0.052001953,0.088378906,-0.12402344,-0.04321289,-0.27929688,-0.14355469,0.0025482178,-0.14160156,0.014404297,0.13574219,0.09423828,-0.10449219,0.19726562,-0.02734375,0.02355957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.14648438,-0.076660156,0.03149414,-0.021728516,-0.03173828,-0.011413574,-0.203125,-0.115234375,-0.024780273,-0.049560547,0.11669922,0.10253906,-0.11376953,-0.095214844,0.11376953,-0.016235352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.017333984,0.020385742,-0.04736328,0.045410156,0.027832031,-0.0041503906,-0.20898438,0.037109375,0.023803711,-0.014343262,0.07373047,0.15136719,0.14257812,-0.28125,-0.10595703,-0.028808594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.12011719,-0.04272461,0.047851562,-0.008422852,0.13183594,-0.07714844,0.09765625,-0.04638672,0.022216797,-0.079589844,0.072265625,0.068847656,-0.30078125,-0.029296875,-0.08203125,-0.076171875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.099609375,-0.22949219,0.0059814453,0.076660156,-0.203125,-0.07714844,-0.028320312,-0.18261719,-0.04663086,0.006378174,0.04296875,-0.055664062,0.02368164,-0.033935547,-0.06542969,0.068847656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.033691406,0.06591797,-0.13085938,-0.018310547,-0.017211914,-0.140625,-0.10498047,-0.12988281,0.18261719,0.09765625,-0.10058594,-0.040771484,-0.091308594,-0.22070312,-0.02355957,-0.1875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.037597656,-0.022705078,0.033691406,-0.047607422,-0.072265625,0.24902344,-0.15039062,-0.014221191,-0.009094238,0.04711914,-0.0859375,0.022705078,-0.13867188,0.07470703,0.12451172,-0.047607422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.010314941,-0.07324219,-0.008728027,-0.075683594,-0.09765625,0.06225586,-0.043701172,-0.12792969,0.049316406,-0.08203125,0.15039062,-0.057373047,-0.05126953,0.00793457,0.038330078,-0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.06689453,0.19921875,-0.103027344,-0.057373047,0.111328125,-0.041503906,-0.0030670166,-0.35351562,-0.107421875,-0.10498047,-0.031982422,0.029907227,0.0095825195,-0.2578125,0.13769531,0.09716797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.002105713,-0.16210938,-0.07128906,-0.008056641,-0.14160156,0.087402344,-0.24121094,-0.08203125,-0.014465332,0.037597656,-0.041748047,-0.014099121,-0.11230469,-0.110839844,0.14453125,-0.18066406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.015258789,-0.25976562,-0.05444336,0.14257812,0.028442383,0.00093078613,-0.05883789,0.16113281,-0.050048828,0.032958984,0.10546875,-0.09863281,0.06640625,-0.06982422,0.012634277,-0.06591797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.16796875,0.026123047,0.05908203,0.049804688,-0.028198242,-0.13574219,-0.19824219,0.006713867,0.18457031,0.12890625,-0.12988281,0.0703125,-0.047851562,-0.06640625,0.083984375,0.13671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.044189453,-0.12988281,0.20214844,-0.011779785,-0.036132812,0.064453125,-0.13085938,-0.092285156,0.076171875,-0.0032958984,-0.029296875,0.06542969,-0.00023365021,-0.078125,0.08544922,-0.0035247803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.15429688,-0.06542969,0.010131836,0.053466797,0.012084961,0.01940918,0.008117676,-0.0033416748,0.053222656,0.053222656,0.061767578,-0.14648438,0.04663086,0.014099121,0.08642578,0.043701172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.099121094,0.06640625,0.19238281,0.13769531,-0.046875,-0.07373047,-0.12451172,0.15234375,-0.056640625,0.0036773682,-0.059326172,-0.14355469,0.02709961,0.034423828,-0.029052734,-0.021118164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06738281,-0.016967773,-0.14648438,-0.18164062,-0.20507812,0.016357422,0.013916016,-0.122558594,0.088378906,-0.08105469,-0.05126953,-0.033203125,0.13574219,-0.09765625,0.15625,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.079589844,-0.22753906,-0.047851562,-0.014526367,-0.059326172,0.053466797,-0.056640625,-0.1015625,-0.0068969727,-0.06738281,-0.02734375,-0.1484375,0.044189453,-0.19433594,0.16503906,0.09375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.04711914,0.045654297,-0.08203125,-0.07910156,-0.012573242,0.017578125,0.17871094,-0.106933594,-0.06933594,0.080566406,-0.26367188,0.017944336,-0.087402344,-0.14160156,-0.026855469,-0.004638672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.048095703,0.017456055,-0.22460938,-0.029418945,-0.09326172,0.103027344,-0.099609375,-0.030273438,-0.107421875,0.025146484,0.13671875,-0.06689453,0.05078125,-0.30664062,0.08886719,-0.005004883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.122558594,0.030395508,0.09863281,-0.17285156,0.092285156,0.08154297,0.10546875,0.048583984,0.052001953,-0.08496094,0.036865234,-0.08691406,0.0859375,0.043701172,0.027709961,-0.080078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.07861328,0.033447266,-0.007080078,-0.016479492,-0.0042419434,-0.006378174,0.0065612793,0.111816406,-0.07763672,0.0008049011,0.06933594,-0.1328125,0.024536133,0.0625,0.1171875,-0.04321289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08300781,-0.21875,-0.10058594,-0.08935547,-0.17578125,0.19335938,-0.13378906,-0.171875,0.14160156,-0.18847656,-0.18066406,-0.041503906,-0.06982422,-0.011230469,-0.024169922,-0.18261719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.16503906,-0.079589844,0.06298828,-0.20507812,-0.0009918213,-0.0020751953,0.0051879883,0.026611328,-0.032470703,-0.028198242,-0.02746582,0.052001953,0.068847656,-0.18164062,-0.07714844,0.109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.21972656,-0.012756348,0.080566406,-0.0058898926,-0.0034637451,-0.24414062,0.067871094,-0.009887695,-0.03955078,0.1484375,-0.0053100586,-0.09277344,-0.011962891,-0.20507812,-0.083496094,0.14355469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.029418945,-0.044433594,0.033691406,0.087890625,-0.01373291,-0.21191406,0.036132812,-0.10205078,-0.11425781,0.03930664,-0.17089844,0.021972656,0.033935547,-0.08642578,-0.080566406,-0.013427734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.046142578,-0.10888672,-0.07714844,-0.001701355,0.100097656,0.007080078,0.091308594,-0.018920898,0.109375,-0.14160156,0.11376953,-0.06640625,-0.11767578,0.076171875,-0.27148438,-0.071777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.029296875,0.013244629,-0.14941406,-0.22167969,0.020751953,0.002609253,0.011779785,0.0013275146,-0.030517578,0.028930664,-0.15429688,0.13085938,0.076660156,-0.091308594,-0.14257812,0.07861328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.034423828,0.033203125,-0.027709961,0.07373047,-0.13867188,-0.045166016,0.04345703,0.10253906,0.0073242188,-0.0066223145,-0.039794922,0.06933594,-0.034423828,-0.20800781,-0.001449585,-0.036132812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.091796875,-0.052734375,-0.009094238,-0.053710938,-0.18652344,-0.099121094,-0.12402344,0.025878906,0.06542969,0.07324219,-0.20214844,0.11816406,-0.13085938,-0.091796875,0.059814453,0.087402344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11669922,0.061523438,0.022583008,0.020996094,0.044921875,-0.19433594,-0.122558594,-0.018432617,-0.14746094,0.015319824,0.123046875,-0.07128906,-0.15527344,0.049316406,0.061035156,-0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.11767578,0.12695312,-0.032470703,-0.025756836,-0.09814453,-0.25585938,0.107421875,-0.04663086,-0.0064697266,0.036621094,0.14257812,0.029174805,0.016601562,0.10253906,-0.15917969,0.06347656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09033203,0.06689453,-0.03930664,0.053955078,-0.16113281,0.111816406,-0.18652344,0.09716797,0.14550781,-0.0071411133,0.01373291,-0.019165039,-0.12109375,0.07861328,0.16894531,0.04638672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.16308594,0.06640625,0.046875,0.04248047,-0.10644531,-0.07861328,0.021972656,-0.037109375,0.05517578,0.010925293,-0.021972656,0.122558594,0.08251953,-0.21679688,0.007873535,-0.07714844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.14355469,-0.15136719,0.016845703,0.030761719,-0.24511719,-0.19433594,0.07324219,-0.096191406,-0.0546875,-0.01940918,0.024780273,0.08496094,-0.083984375,-0.11035156,0.1484375,-0.23828125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11376953,0.08984375,-0.046142578,0.052978516,-0.23535156,-0.051757812,0.064453125,-0.12402344,-0.018920898,0.020874023,0.13574219,-0.041992188,0.10888672,-0.0058898926,-0.049072266,0.007507324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.033935547,0.103515625,-0.01940918,-0.043945312,-0.068847656,-0.2421875,-0.10205078,-0.08984375,-0.07128906,0.055908203,-0.13085938,0.012817383,0.10644531,-0.08203125,-0.13964844,-0.11230469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09765625,-0.01977539,0.060302734,-0.016479492,0.008483887,0.32421875,0.15429688,0.07519531,-0.0859375,-0.033203125,0.13867188,-0.03564453,-0.0011901855,0.013671875,0.028564453,-0.10058594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.11767578,0.21386719,-0.0071411133,-0.022460938,-0.060791016,0.018920898,-0.296875,-0.0056152344,-0.08642578,0.16992188,-0.26757812,0.0050354004,0.14257812,-0.171875,0.17871094,0.022094727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.06542969,0.12597656,0.013671875,0.013916016,-0.029663086,0.027832031,-0.05859375,-0.29492188,-0.03173828,-0.07128906,0.024169922,-0.061279297,-0.053710938,-0.23046875,0.047607422,0.20117188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.21582031,0.28710938,-0.123535156,-0.040527344,-0.17382812,-0.104003906,-0.032714844,-0.055419922,-0.013061523,0.030517578,0.2265625,0.02368164,-0.12451172,0.06201172,0.020019531,0.040771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.1171875,0.03955078,0.0107421875,0.11328125,-0.025512695,-0.023803711,0.08691406,0.023803711,-0.12792969,-0.05419922,-0.00090789795,-0.05029297,-0.056884766,0.005554199,-0.055664062,0.016723633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.16992188,0.0041503906,-0.033935547,0.0077209473,-0.07324219,0.036621094,-0.083984375,0.08886719,-0.087890625,0.16210938,-0.10839844,0.055419922,0.024414062,0.006164551,0.036376953,0.0625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0046081543,0.057373047,-0.119628906,0.0625,-0.0025177002,0.09472656,0.1640625,-0.04321289,-0.041992188,-0.08300781,0.100097656,-0.078125,-0.07128906,0.05908203,-0.0058288574,0.01184082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.18554688,-0.059326172,-0.029785156,-0.11328125,0.092285156,0.11230469,-0.2109375,0.140625,-0.09765625,0.071777344,0.0546875,-0.16601562,-0.0703125,-0.11328125,0.046142578,-0.0546875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.014038086,0.06225586,0.056152344,0.049316406,-0.02709961,-0.04711914,0.08251953,0.18164062,-0.1640625,-0.05029297,-0.10205078,-0.014160156,-0.014465332,-0.046875,-0.044677734,0.026367188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.055419922,0.028686523,-0.16699219,0.0703125,-0.17382812,0.06542969,-0.09765625,-0.118652344,-0.05493164,0.05493164,0.026245117,-0.02734375,-0.022705078,0.07910156,-0.023803711,0.08105469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.052246094,0.13085938,0.0859375,0.111816406,-0.018676758,0.061767578,-0.052734375,0.075683594,-0.037109375,0.020019531,-0.030517578,0.07373047,-0.02758789,-0.29101562,-0.19824219,-0.10888672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.08691406,0.02368164,0.01977539,-0.027709961,0.056640625,0.05126953,-0.119628906,-0.038085938,-0.044433594,0.087890625,0.061523438,-0.03930664,-0.016479492,-0.08544922,0.072265625,-0.0066833496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.09033203,0.17675781,0.008850098,-0.076660156,0.035888672,-0.01574707,-0.087890625,0.09716797,-0.006286621,-0.06542969,-0.14648438,-0.13183594,-0.083984375,-0.17480469,-0.051757812,0.0026550293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08154297,-0.11230469,-0.05126953,-0.13867188,0.039794922,0.036132812,0.014526367,-0.048339844,-0.09423828,0.068847656,0.18457031,-0.140625,-0.056884766,-0.14257812,-0.111816406,-0.20507812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.020141602,0.119140625,-0.01373291,0.08496094,-0.24023438,0.072753906,-0.11376953,0.037353516,0.020751953,-0.05834961,-0.0020141602,0.103515625,0.13671875,0.079589844,0.1484375,-0.03149414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.09082031,0.02331543,-0.03564453,-0.049316406,-0.12792969,-0.024536133,-0.19921875,-0.037841797,-0.052246094,0.119140625,-0.039794922,0.10058594,0.029052734,-0.072753906,-0.07861328,-0.12988281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.076660156,-0.029785156,0.001121521,-0.032226562,-0.020385742,0.08154297,-0.16992188,-0.052001953,-0.052490234,-0.05029297,-0.21972656,0.104003906,-0.056152344,-0.19335938,-0.20117188,0.13476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.045166016,0.09277344,0.018432617,-0.028442383,0.0703125,-0.118652344,0.05029297,0.013916016,-0.103027344,0.0703125,0.026977539,-0.083496094,0.011291504,-0.005584717,0.083984375,0.08691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.004638672,0.045410156,0.080078125,0.037841797,-0.06298828,-0.087890625,0.028686523,-0.014343262,-0.13476562,-0.080078125,-0.055908203,-0.04638672,-0.020629883,-0.15332031,-0.1171875,-0.12207031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.123535156,-0.15820312,-0.057373047,-0.064453125,-0.076660156,0.19335938,0.0047302246,-0.28710938,0.18945312,-0.019165039,-0.056152344,-0.12451172,-0.031982422,-0.20996094,0.0011825562,-0.044921875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08251953,0.15820312,0.060791016,-0.18359375,-0.111328125,-0.11816406,-0.19335938,-0.01965332,-0.13964844,-0.064941406,0.11279297,0.08544922,0.053955078,0.076660156,0.063964844,0.11230469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.10888672,0.0107421875,-0.07128906,0.004272461,-0.123046875,-0.24902344,-0.041748047,-0.24414062,-0.00074005127,0.12060547,-0.0038757324,0.25390625,-0.010437012,-0.1171875,-0.16699219,0.060302734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.0038146973,0.22265625,-0.10107422,-0.043701172,-0.24316406,-0.01928711,0.0859375,-0.036376953,-0.039794922,-0.10888672,-0.2578125,0.064941406,-0.20214844,-0.016601562,-0.10839844,-0.110839844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.1796875,0.056884766,-0.030517578,0.07373047,-0.12695312,-0.045654297,-0.052246094,-0.018432617,0.0028686523,-0.00579834,0.040527344,-0.1328125,-0.04272461,-0.07861328,0.08203125,-0.111816406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.06298828,0.09667969,0.025024414,0.06982422,0.026367188,-0.2265625,-0.091796875,-0.06640625,0.0060424805,-0.061767578,-0.20898438,0.022338867,-0.15625,-0.041748047,-0.20117188,-0.0043029785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.13476562,0.036132812,-0.03564453,0.056884766,-0.030639648,0.08886719,0.038330078,-0.040771484,0.22753906,-0.064941406,-0.032226562,0.055419922,-0.049804688,-0.15917969,-0.19824219,0.22851562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.045898438,0.05810547,0.05908203,0.028686523,-0.15429688,-0.19238281,0.107910156,-0.0035705566,-0.09423828,0.024047852,-0.0056152344,-0.056884766,0.01574707,-0.07763672,0.071777344,-0.0064086914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.08203125,-0.042236328,0.029052734,0.019042969,-0.11425781,-0.032226562,-0.15332031,0.0016098022,-0.013183594,-0.040283203,-0.05126953,0.0859375,-0.12597656,-0.27539062,0.14941406,0.06225586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; #endif static elem_t conv_2_in[448][192] row_align(1); static elem_t conv_2_out[448][64] row_align(1); static elem_t conv_2_out_pooled[4][5][5][16]; static const struct ConvParams conv_2_params = {.batch_size=4, .in_dim=14, .kernel_size=5, .in_channels=6, .out_channels=16, .stride=1, .padding=0, .bias=0, .depthwise=0, .out_dim=10, .n_patches=400, .patch_size=150, .pool_size=2, .pool_stride=2, .pool_padding=0, .out_dim_pooled=5, .output_scale=8, .I=448, .J=64, .K=192, .res_scale=0}; #ifdef ELEM_T_IS_BFLOAT static const float fc_3_w_float[128][448] row_align(1) = {{0.095214844,-0.18945312,-0.09082031,-0.25976562,0.15722656,-0.033935547,-0.016479492,0.009338379,0.006958008,0.057617188,-0.125,-0.25390625,0.11425781,0.203125,0.04663086,0.022338867,-0.28710938,-0.12011719,-0.24316406,-0.110839844,0.080566406,-0.107910156,0.016357422,-0.114746094,-0.014343262,0.04736328,-0.15136719,-0.091308594,0.050048828,0.002319336,-0.010375977,-0.09082031,-0.08300781,-0.0017242432,0.050048828,-0.012756348,-0.019042969,-0.22851562,-0.08886719,0.11328125,-0.03125,-0.016479492,-0.1640625,0.12060547,0.060302734,-0.067871094,0.014221191,-0.24316406,0.005004883,-0.022216797,-0.03173828,0.052246094,0.005279541,-0.0115356445,-0.076660156,-0.010681152,-0.028076172,-0.09082031,-0.009216309,0.017578125,0.068359375,-0.18164062,0.083496094,-0.09277344,-0.203125,0.087890625,-0.017456055,-0.0010604858,0.12060547,-0.31445312,-0.16796875,-0.038085938,0.088378906,0.0014572144,0.009216309,-0.20117188,0.03955078,0.10986328,0.13769531,-0.22265625,0.04638672,-0.10498047,0.00982666,-0.041259766,0.017211914,0.032470703,-0.016479492,-0.016235352,-0.071777344,-0.18652344,-0.1171875,-0.056884766,0.059570312,0.092285156,-0.064941406,-0.13574219,-0.055419922,-0.12109375,0.052001953,-0.007873535,-0.22753906,0.111328125,-0.1796875,0.0546875,-0.030639648,-0.13574219,0.061035156,-0.0038757324,0.09082031,0.056640625,0.009643555,-0.07519531,0.14941406,-0.056640625,-0.03125,0.13769531,-0.122558594,-0.07519531,0.06640625,0.055664062,-0.026489258,-0.025390625,0.119628906,0.10449219,0.13183594,-0.07519531,-0.10595703,-0.171875,0.083496094,-0.21289062,-0.09667969,0.049316406,0.084472656,-0.05908203,0.010498047,0.17871094,-0.018188477,-0.03100586,-0.07519531,-0.03930664,0.06542969,-0.10253906,-0.049804688,-0.30859375,0.18652344,-0.08886719,0.03515625,0.0015716553,0.08203125,-0.009887695,0.03125,0.30664062,0.04296875,-0.15332031,-0.026367188,-0.091796875,-0.026611328,0.119140625,0.07421875,-0.2421875,-0.08300781,0.08935547,0.084472656,0.044433594,-0.036621094,0.014892578,-0.11767578,0.0015106201,0.026977539,-0.16992188,-0.079589844,0.072265625,-0.03100586,0.106933594,-0.0126953125,-0.20410156,-0.024414062,0.11376953,-0.13183594,0.07714844,0.18847656,0.140625,0.2578125,0.20117188,-0.08154297,-0.08691406,-0.08642578,-0.018798828,0.10205078,0.020019531,-0.009155273,-0.16601562,-0.14746094,0.1796875,0.04296875,-0.056152344,-0.057373047,-0.31835938,0.056396484,0.076171875,-0.09423828,-0.11230469,-0.083984375,-0.067871094,-0.004852295,0.033935547,-0.2265625,-0.14453125,0.012329102,-0.19042969,-0.19238281,0.17871094,-0.0039367676,0.008605957,0.08154297,-0.019042969,-0.055908203,0.083984375,0.010253906,-0.022094727,0.08691406,-0.015991211,-0.029663086,-0.01574707,0.09716797,-0.18554688,0.010925293,0.045654297,-0.080566406,0.0022125244,-0.140625,0.1484375,-0.03955078,0.01373291,0.008850098,0.04272461,0.041015625,-0.25585938,-0.01928711,-0.13769531,-0.15039062,0.0076293945,-0.13574219,0.043701172,0.12792969,0.22753906,0.00982666,-0.061035156,-0.049560547,-0.08203125,-0.049072266,-0.09082031,0.005065918,0.11328125,0.140625,-0.12451172,-0.037353516,0.068359375,-0.14746094,-0.06689453,0.19335938,0.15917969,-0.13671875,-0.045166016,0.05102539,0.08203125,0.14453125,-0.025146484,-0.0019378662,-0.013305664,0.044677734,-0.020385742,-0.041259766,-0.045166016,-0.30859375,-0.140625,0.23632812,-0.0012817383,0.16308594,0.042236328,0.0012664795,0.10644531,-0.07519531,-0.28515625,-0.072265625,0.013244629,0.014282227,0.080566406,-0.08154297,-0.265625,-0.03955078,-0.035888672,0.025268555,-0.0703125,0.030639648,-0.08300781,-0.072753906,0.119628906,-0.071777344,0.064453125,0.071777344,0.022094727,0.0625,0.19628906,-0.076660156,-0.07373047,-0.0009460449,-0.08300781,-0.040283203,0.122558594,0.16894531,0.11767578,0.018188477,-0.083984375,-0.13085938,0.095703125,0.021972656,0.14160156,-0.06689453,0.14355469,0.13085938,-0.083984375,-0.045410156,0.125,0.064453125,0.40429688,-0.03149414,-0.009765625,0.045166016,0.114746094,-0.13183594,-0.13574219,-0.072265625,0.0016098022,0.11669922,0.31054688,-0.15234375,0.06298828,-0.021118164,-0.068847656,0.04638672,-0.088378906,-0.026611328,0.10644531,0.064941406,0.014099121,-0.0234375,-0.08544922,-0.13378906,0.012512207,0.12158203,0.21875,0.07128906,0.12597656,-0.048583984,-0.16503906,0.039794922,-0.060302734,0.08300781,-0.04321289,-0.083496094,0.09667969,-0.048339844,0.020629883,-0.07714844,0.018432617,0.107910156,0.22265625,0.046875,0.020263672,-0.018920898,-0.25195312,-0.08544922,0.15332031,0.26171875,0.08496094,-0.08984375,0.007232666,-0.1015625,0.14648438,0.05883789,0.05053711,0.0027008057,0.056396484,-0.08154297,0.04296875,-0.21484375,-0.40820312,-0.083984375,0.22851562,0.12158203,0.10546875,0.04296875,-0.14453125,0.056884766,0.13378906,-0.033935547,0.018676758,-0.07861328,-0.13964844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12792969,-0.087890625,-0.044433594,0.076171875,-0.07861328,0.24902344,0.06201172,-0.016479492,-0.08642578,-0.18945312,-0.033203125,-0.33203125,0.10888672,0.359375,0.17773438,-0.31640625,-0.044433594,0.0625,-0.0079956055,0.048583984,-0.0625,0.28320312,-0.17480469,0.064941406,0.0703125,-0.26953125,-0.06640625,-0.08984375,0.099121094,0.09326172,-0.01953125,-0.11621094,0.10888672,0.07763672,0.0008239746,0.0138549805,-0.034179688,0.18652344,-0.012451172,0.08154297,-0.00970459,-0.48046875,0.10986328,0.012878418,0.0029754639,-0.012634277,-0.13867188,-0.10644531,-0.009887695,-0.07861328,0.068359375,-0.1171875,0.017700195,-0.011962891,-0.016357422,0.022705078,0.030639648,-0.3671875,-0.063964844,0.13378906,0.13671875,-0.01940918,-0.045898438,-0.071777344,0.083984375,0.10546875,0.027954102,-0.031982422,0.011352539,-0.030883789,0.140625,-0.0703125,-0.09472656,-0.390625,-0.110839844,0.10595703,0.16796875,0.067871094,0.08154297,-0.07373047,-0.16601562,0.015625,-0.08984375,-0.03125,-0.0859375,-0.14746094,-0.14550781,-0.16894531,-0.00289917,0.11621094,0.007232666,-0.23632812,0.06225586,-0.071777344,-0.22265625,-0.03515625,-0.080566406,0.08544922,-0.034423828,-0.036376953,0.048583984,-0.095214844,0.087402344,-0.08984375,0.026977539,-0.046875,-0.060791016,-0.009094238,0.072265625,0.01361084,-0.0068969727,-0.25585938,-0.099121094,-0.033447266,0.13671875,0.10449219,0.012268066,0.0625,0.004699707,0.037841797,-0.009338379,-0.21386719,-0.03515625,0.0015563965,-0.063964844,0.09716797,-0.03100586,-0.21582031,-0.17382812,-0.04296875,-0.005218506,-0.106933594,0.19433594,0.22851562,0.045654297,-0.063964844,-0.019042969,-0.07080078,0.09667969,-0.037597656,0.041748047,0.11328125,0.12597656,-0.22558594,0.06738281,0.14550781,0.16210938,-0.10595703,0.02722168,0.008361816,0.20507812,-0.091308594,-0.007171631,-0.17773438,-0.07763672,-0.028686523,0.01928711,-0.016235352,0.25976562,0.11035156,-0.18359375,0.15722656,-0.03540039,-0.072265625,-0.044677734,0.05102539,-0.07324219,0.09033203,-0.103515625,0.068359375,-0.016357422,-0.017089844,-0.028198242,0.1484375,0.041015625,0.15527344,0.140625,-0.10986328,-0.13183594,-0.03149414,0.021240234,0.088378906,0.034179688,0.04663086,0.07519531,0.11230469,0.007080078,0.06347656,0.09326172,0.05493164,-0.1484375,0.06591797,0.080078125,-0.11621094,0.17773438,-0.024902344,-0.09667969,0.09472656,0.036132812,0.15234375,-0.087890625,-0.17578125,-0.091308594,-0.0040893555,-0.09375,0.059570312,-0.1953125,0.023071289,-0.056640625,-0.014282227,0.1171875,0.057373047,0.08544922,0.12158203,0.057373047,-0.092285156,0.103515625,-0.02722168,0.15820312,-0.1484375,0.07128906,-0.1328125,-0.119140625,0.03955078,0.096191406,0.067871094,0.083496094,-2.0623207e-05,0.23242188,0.064453125,0.047851562,-0.05444336,0.12451172,-0.11376953,0.028198242,0.20703125,-0.21582031,-0.10449219,-0.010559082,0.08544922,-0.100097656,0.16796875,0.06982422,-0.0050354004,0.088378906,-0.079589844,-0.16699219,-0.08886719,0.07128906,-0.06982422,0.078125,0.010009766,-0.12792969,0.12988281,0.0038757324,-0.15234375,0.12158203,-0.055664062,-0.018676758,0.080078125,0.018676758,0.05493164,-0.21191406,0.10546875,-0.04321289,-0.07861328,-0.11328125,0.052734375,-0.08935547,0.19628906,0.012817383,-0.04736328,0.3359375,-0.041992188,0.16308594,-0.123535156,0.00019168854,0.12109375,-0.064941406,0.122558594,-0.10546875,-0.055664062,0.1640625,-0.118652344,0.011230469,-0.028686523,-0.04638672,-0.19238281,0.095703125,0.12695312,0.10644531,-0.0045776367,-0.053955078,0.041503906,0.07519531,-0.13378906,-0.03955078,0.063964844,0.009887695,0.021972656,0.115722656,0.009338379,0.10595703,-0.095214844,0.16601562,-0.109375,0.0020141602,-0.026733398,0.14160156,0.014831543,0.044921875,0.064941406,0.068359375,-0.12451172,0.09765625,0.07519531,-0.07763672,-0.087890625,0.103515625,-0.060546875,-0.08691406,-0.021484375,0.20800781,-0.0390625,-0.055664062,0.21875,-0.20507812,-0.053955078,-0.06591797,-0.17871094,0.14550781,0.118652344,-0.08544922,0.051513672,0.009338379,-0.0058898926,0.045898438,-0.09765625,0.076660156,-0.099121094,-0.15136719,0.083984375,-0.08935547,0.040283203,-0.056152344,-0.083496094,0.004638672,0.025512695,-0.10058594,-0.16113281,0.040039062,-0.16992188,0.018066406,0.034179688,0.095703125,0.013366699,-0.047851562,0.007537842,0.015563965,0.15429688,-0.09033203,0.014831543,0.028076172,-0.023925781,0.067871094,0.060058594,-0.07470703,0.008056641,0.027832031,0.27148438,0.13574219,0.103515625,0.19042969,-0.059570312,-0.18554688,-0.04736328,0.08691406,0.005706787,0.21386719,-0.049316406,0.17089844,-0.049072266,-0.047851562,-0.060546875,0.18847656,0.09277344,-0.007659912,0.08935547,0.13378906,-0.045410156,0.012512207,-0.018798828,-0.010986328,-0.15625,0.06347656,0.020751953,0.007751465,-0.09277344,0.040039062,0.03955078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.14355469,-0.061523438,0.24902344,0.12060547,0.021118164,0.20703125,-0.017578125,0.03540039,0.025634766,0.0010681152,-0.06225586,-0.12207031,0.012878418,0.26171875,-0.11279297,0.028320312,0.025634766,0.1328125,0.09716797,0.035888672,0.017700195,0.18066406,0.09765625,0.050048828,0.02758789,0.024536133,-0.0022277832,0.07324219,-0.09326172,0.06982422,-0.05102539,0.088378906,-0.009277344,-0.13378906,-0.028198242,0.114746094,0.029418945,-0.13769531,0.07080078,0.16113281,-0.013244629,0.0027313232,0.15625,0.055908203,-0.045654297,0.111816406,-0.00078964233,0.16015625,0.056152344,-0.21875,-0.020141602,0.075683594,0.038330078,0.088378906,0.17675781,0.123535156,-0.026611328,0.012268066,0.00982666,0.104003906,0.04736328,0.15722656,-0.1328125,-0.010131836,0.12451172,-0.03466797,0.012512207,0.021728516,-0.23925781,0.15234375,0.18652344,0.021850586,0.14550781,-0.03881836,0.056640625,0.21582031,0.17285156,0.26367188,-0.052490234,0.29492188,0.15234375,-0.06689453,0.22949219,-0.020141602,0.100097656,0.091796875,0.051513672,0.013366699,0.03955078,-0.02758789,0.041503906,0.068359375,-0.041015625,0.01574707,0.0027313232,0.171875,0.09863281,-0.09765625,0.014709473,0.083984375,-0.11669922,0.026977539,-0.071777344,0.048583984,0.023925781,0.036376953,0.05908203,0.030273438,0.016601562,0.071777344,0.15039062,0.04321289,0.17675781,-0.10498047,0.06542969,-0.026123047,-0.014953613,0.084472656,0.07373047,0.16210938,0.05834961,-0.095703125,0.21386719,0.028564453,-0.1796875,0.09375,0.09716797,-0.06689453,0.22753906,0.04345703,0.068359375,-0.006072998,-0.06738281,0.0005950928,-0.0034484863,0.10107422,-0.017211914,-0.02709961,-0.064453125,0.019897461,-0.10498047,0.100097656,0.06542969,-0.09765625,0.02734375,0.026733398,-0.010559082,0.08105469,-0.06982422,0.088378906,0.29882812,-0.01928711,0.0050354004,-0.033691406,0.25,-0.10449219,-0.01574707,0.17382812,0.051513672,0.07763672,0.22167969,0.036376953,0.13867188,0.11767578,0.060546875,-0.0052490234,0.0047302246,0.051513672,0.14550781,0.007019043,0.12207031,-0.028564453,-0.048095703,0.031982422,-0.08300781,-0.092285156,0.18066406,0.088378906,0.140625,0.13964844,-0.005706787,-0.008239746,0.12207031,0.06640625,-0.051513672,-0.14355469,0.0546875,0.10253906,-0.053466797,0.11669922,0.08691406,-0.16308594,0.036621094,0.13183594,0.014465332,0.00030708313,-0.22460938,0.12011719,-0.21582031,0.0018539429,-0.103027344,-0.015075684,-0.019042969,-0.0003681183,-0.026855469,0.03930664,-0.02709961,-0.13183594,0.115234375,0.1484375,0.119140625,0.09277344,-0.059570312,0.047851562,-0.056640625,0.013793945,0.056152344,-0.12695312,0.021972656,0.040283203,0.013427734,0.14160156,0.12792969,-0.12695312,0.14160156,0.08935547,-0.078125,0.1484375,-0.19921875,-0.012329102,-0.032958984,0.05883789,-0.021728516,-0.11767578,0.095214844,-0.057373047,0.1875,0.140625,-0.009765625,-0.033203125,-0.037841797,0.16894531,-0.0146484375,0.09765625,0.024780273,0.100097656,-0.014953613,0.05126953,0.087402344,-0.16601562,0.19921875,0.03540039,-0.008178711,0.017822266,0.03515625,-0.21289062,0.049072266,0.11767578,0.092285156,0.01586914,0.06542969,-0.031982422,0.1953125,-0.007171631,0.008544922,-0.071777344,0.07080078,-0.03955078,-0.04345703,0.14550781,-0.06225586,-0.067871094,-0.055908203,0.14941406,0.110839844,0.08642578,-0.13574219,-0.075683594,-0.088378906,0.10253906,0.09423828,-0.053222656,0.1015625,0.16796875,0.046875,0.07373047,0.03491211,-0.053222656,-0.028930664,0.079589844,0.053222656,0.13574219,0.055908203,0.30859375,-0.10888672,0.025512695,0.06347656,-0.055419922,0.10986328,0.076171875,-0.025878906,0.071777344,0.11230469,-0.10546875,0.052490234,0.053955078,0.08544922,0.05078125,-0.123046875,-0.008850098,0.028198242,0.052978516,0.017578125,0.031982422,0.15234375,0.03100586,0.09326172,0.06591797,-0.028808594,-0.03491211,0.029296875,0.28710938,0.08886719,0.045654297,-0.040527344,0.16992188,-0.14257812,0.033203125,0.063964844,-0.11816406,0.04638672,0.03857422,0.09375,0.061523438,0.00029182434,0.056884766,-0.16113281,0.118652344,0.15234375,0.052246094,0.083496094,0.18261719,0.033203125,0.13378906,0.04321289,-0.026123047,-0.047851562,0.024658203,0.068847656,0.0049438477,-0.03173828,-0.091308594,0.05419922,0.14746094,0.15429688,0.091796875,-0.03149414,0.22363281,0.08544922,0.053466797,-0.024780273,-0.078125,0.038085938,0.061767578,0.072265625,-0.07128906,-0.07128906,-0.115722656,-0.008361816,0.11816406,0.083496094,0.14941406,-0.0234375,0.07421875,-0.04272461,-0.12988281,0.16894531,-0.06201172,-0.016723633,0.05444336,-0.06689453,-0.04272461,-0.22265625,-0.012023926,0.013305664,0.18847656,0.03564453,0.05810547,-0.13671875,0.026611328,0.15527344,0.067871094,0.024291992,-0.16503906,0.049316406,0.072265625,0.025878906,-0.011657715,-0.08251953,0.071777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.09326172,0.14941406,-0.19726562,0.075683594,-0.10888672,-0.032958984,0.13671875,0.10205078,-0.036865234,0.004425049,0.09472656,-0.0546875,0.17578125,-0.002029419,0.10253906,0.035888672,-0.10546875,-0.037841797,-0.22851562,0.03881836,-0.06933594,0.08984375,0.007171631,-0.07373047,-0.055664062,-0.07421875,-0.056396484,0.07714844,0.100097656,0.11669922,0.036865234,-0.071777344,0.08691406,0.091796875,0.11621094,-0.111328125,0.016723633,-0.119628906,0.008178711,-0.018310547,0.025024414,-0.084472656,0.01586914,-0.080566406,0.09667969,0.171875,0.025634766,0.008972168,0.13183594,0.11767578,0.023925781,0.08496094,-0.00076293945,0.052001953,-0.0703125,-0.110839844,-0.083984375,-0.092285156,-0.1171875,0.109375,0.041503906,0.114746094,0.006958008,-0.07861328,0.037353516,-0.063964844,-0.02319336,-0.079589844,-0.063964844,-0.1015625,-0.034179688,-0.16796875,0.013977051,-0.20117188,0.048828125,0.0067443848,-0.049072266,0.007232666,0.13183594,0.03881836,0.045654297,0.08496094,-0.04711914,-0.12792969,0.19824219,-0.06591797,-0.10058594,-0.10839844,-0.09863281,0.049560547,-0.05859375,0.17480469,0.063964844,-0.021606445,0.020019531,-0.1484375,0.052001953,-0.015991211,-0.033935547,-0.047607422,0.11767578,-0.04663086,-0.016357422,-0.10058594,-0.056152344,0.06933594,0.13378906,0.14648438,-0.067871094,0.013977051,-0.045654297,-0.12451172,0.080078125,-0.067871094,0.05053711,-0.19238281,0.20214844,0.10253906,0.11425781,0.068359375,0.09082031,-0.107910156,0.09423828,-0.18359375,0.10498047,-0.06542969,-0.083984375,-0.09667969,-0.16210938,0.033691406,-0.016967773,-0.13964844,0.0020599365,0.004760742,-0.15429688,0.048339844,0.029296875,-0.067871094,-0.029541016,0.096191406,0.12988281,-0.16894531,-0.016723633,-0.03515625,-0.19042969,-0.09667969,-0.12597656,-0.08984375,-0.11279297,-0.12792969,0.0010375977,-0.14160156,-0.053466797,-0.055419922,0.07519531,0.05053711,0.021606445,-0.21777344,-0.17675781,-0.07080078,0.059814453,0.0234375,0.23535156,-0.09375,0.14257812,-0.076171875,-0.095703125,0.09082031,0.016967773,0.042236328,-0.048828125,0.03173828,0.013244629,-0.059326172,-0.0390625,-0.053955078,0.07519531,0.071777344,-0.1875,-0.07373047,0.040283203,-0.044433594,0.039794922,0.049072266,-0.08544922,-0.007873535,-0.009460449,-0.100097656,-0.13769531,0.022460938,0.07470703,-0.10205078,-0.020874023,0.0014419556,0.0005683899,-0.25,-0.10888672,0.008117676,-0.07324219,0.118652344,0.068359375,-0.028320312,0.10253906,0.064453125,0.140625,-0.23730469,-0.15332031,-0.21777344,-0.29882812,-0.11376953,0.041992188,-0.15136719,-0.16894531,-0.005859375,-0.08496094,0.18945312,0.0070495605,-0.10498047,0.18164062,-0.013427734,0.10644531,0.0015640259,-0.10595703,-0.09423828,-0.22460938,-0.26171875,-0.12988281,-0.23144531,-0.12695312,-0.045654297,0.006225586,-0.09863281,-0.06591797,-0.18457031,-0.019165039,-0.048095703,0.067871094,-0.17285156,-0.026489258,-0.03540039,0.17089844,-0.05908203,0.01159668,0.060058594,0.10986328,-0.1796875,-0.021240234,0.12402344,0.053466797,0.10888672,-0.068359375,-0.063964844,0.0014038086,-0.049072266,-0.020751953,0.00023555756,-0.114746094,-0.063964844,-0.051513672,-0.32421875,-0.11279297,-0.032226562,-0.08300781,-0.12597656,0.041503906,0.014221191,-0.16601562,0.110839844,0.12890625,0.041748047,0.01940918,0.060546875,0.0015563965,-0.045166016,0.017089844,-0.24902344,-0.12402344,0.00491333,-0.119628906,0.06640625,-0.096191406,-0.12451172,-0.09667969,0.14355469,0.06933594,-0.04321289,-0.25585938,0.115234375,-0.099121094,-0.18457031,0.049560547,-0.20800781,-0.05078125,0.0009651184,0.047851562,0.16503906,0.064453125,-0.0625,-0.06591797,0.09814453,0.08935547,-0.0071105957,-0.13378906,-0.103515625,-0.10839844,-0.048095703,-0.09326172,-0.16308594,0.036621094,0.15625,0.11621094,-0.14257812,-0.05029297,-0.13183594,-0.040283203,-0.010070801,-0.13867188,0.040283203,-0.091796875,-0.11621094,0.010192871,0.21386719,-0.18945312,0.052978516,-0.119628906,0.006011963,0.15917969,-0.02746582,0.052490234,0.022583008,0.08984375,-0.16113281,0.0071411133,0.064453125,0.15136719,0.022460938,-0.009155273,0.057617188,-0.115722656,-0.037109375,-0.1875,0.083984375,0.015014648,0.02368164,-0.07324219,0.107910156,-0.09082031,0.06640625,0.016357422,-0.033691406,0.068847656,0.03515625,-0.100097656,0.09082031,-0.024902344,-0.016235352,-0.049804688,-0.08935547,-0.16308594,0.12109375,0.03564453,-0.15917969,-0.076171875,-0.06225586,0.122558594,-0.084472656,-0.13769531,-0.0859375,-0.079589844,0.10888672,-0.016235352,-0.30273438,-0.11621094,0.032958984,-0.029174805,-0.022583008,-0.013244629,-0.09082031,0.09716797,-0.09863281,-0.030029297,-0.0025177002,-0.14160156,0.043945312,0.010925293,0.16992188,-0.023803711,-0.17089844,-0.060058594,0.012084961,-0.039794922,0.051757812,0.056884766,-0.087402344,-0.11767578,-0.028564453,-0.11621094,0.01586914,-0.10205078,-0.071777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05908203,0.026855469,-0.16503906,-0.19042969,-0.1484375,-0.067871094,-0.032958984,0.19824219,-0.11279297,-0.119628906,0.10839844,-0.10644531,0.0059814453,0.08300781,0.056152344,0.18261719,-0.16601562,-0.020629883,-0.09765625,0.0054016113,-0.18457031,0.20214844,0.047607422,0.03100586,0.12451172,-0.07763672,-0.14550781,0.0052490234,-0.07861328,-0.10449219,-0.14160156,0.08496094,-0.08496094,0.02758789,-0.21679688,0.16308594,-0.06298828,0.087890625,0.31445312,-0.33398438,-0.036621094,-0.115234375,-0.21191406,0.07080078,0.012878418,0.0014724731,-0.28320312,0.0064697266,0.11376953,-0.16894531,-0.296875,-0.111816406,-0.19042969,0.055664062,-0.030639648,0.20019531,-0.07373047,-0.08105469,-0.0703125,0.13378906,-0.1328125,-0.15136719,0.08984375,0.12060547,0.10058594,-0.025756836,0.013366699,-0.15234375,-0.004547119,0.060791016,0.08544922,0.035888672,0.041015625,-0.123046875,0.13671875,0.08691406,-0.047851562,0.037353516,-0.052246094,-0.022338867,-0.31054688,0.05883789,-0.28125,-0.14257812,-0.24023438,-0.050048828,0.20800781,0.106933594,0.0053710938,-0.13769531,-0.26171875,-0.12890625,-0.16210938,0.05883789,0.044921875,0.03540039,0.0703125,-0.23730469,-0.22851562,-0.075683594,-0.010620117,-0.013305664,-0.0067749023,0.011047363,-0.025268555,-0.29296875,0.22558594,-0.1875,-0.05102539,0.11376953,0.15039062,-0.013183594,0.0625,-0.14257812,-0.006011963,0.13964844,-0.06689453,-0.114746094,0.12597656,-0.16796875,-0.07080078,-0.21191406,0.00062179565,-0.040527344,-0.05029297,0.07910156,0.035888672,-0.27929688,-0.076660156,-0.005706787,-0.008972168,-0.076660156,-0.0390625,-0.0859375,0.087402344,-0.010314941,-0.041015625,-0.08251953,0.17871094,-0.13476562,-0.071777344,0.0011367798,-0.048339844,-0.0029754639,-0.018310547,0.10107422,0.052490234,-0.115234375,-0.056640625,-0.037597656,0.12060547,0.104003906,0.12792969,0.02355957,0.08300781,0.11279297,-0.11328125,-0.06689453,-0.04296875,0.15429688,-0.34765625,-0.26953125,-0.17675781,-0.24707031,-0.06982422,-0.021362305,-0.16308594,-0.036865234,-0.05053711,-0.20507812,0.043945312,-0.36523438,0.013977051,0.10449219,0.064453125,-0.23144531,0.12402344,0.059570312,-0.17089844,0.12695312,-0.021972656,0.12695312,-0.0012512207,-0.25,-0.08691406,-0.040283203,-0.04663086,0.09423828,0.14648438,0.07470703,-0.07470703,-0.024780273,0.014770508,0.140625,0.04638672,0.021362305,-0.24707031,0.0234375,-0.0030975342,0.06982422,-0.08300781,0.012084961,0.100097656,-0.03112793,-0.009887695,-0.19433594,0.13769531,-0.052734375,0.052734375,0.01159668,0.15625,0.04711914,-0.07861328,-0.04663086,-0.14746094,0.19140625,-0.00037002563,-0.088378906,-0.14453125,0.13085938,-0.15039062,0.06738281,-0.0010528564,0.19335938,0.14550781,-0.067871094,-0.06347656,-0.08496094,-0.17578125,-0.063964844,-0.014892578,0.024658203,-0.044189453,-0.06738281,-0.20214844,0.03955078,-0.115722656,-0.10498047,0.076660156,0.06225586,-0.37890625,0.12451172,-0.006652832,-0.103027344,-0.19335938,-0.0012588501,0.08496094,0.005279541,0.09082031,-0.16601562,-0.16992188,0.18945312,0.125,0.040283203,0.122558594,0.076171875,-0.0059509277,-0.018188477,0.04248047,-0.0625,0.05126953,-0.16699219,-0.045898438,0.11376953,-0.061523438,-0.22363281,-0.038085938,0.26757812,0.049560547,-0.08984375,-0.27539062,0.088378906,-0.064941406,-0.13085938,0.029418945,0.075683594,0.10498047,-0.15527344,0.17089844,0.26757812,-0.103515625,-0.14355469,-0.17578125,0.15039062,0.03930664,-0.2890625,-0.10253906,0.060302734,0.0074157715,-0.12158203,0.110839844,0.16992188,0.13964844,-0.17578125,0.12451172,-0.15625,0.10498047,-0.13574219,0.07421875,0.12890625,0.028442383,0.068847656,-0.06591797,-0.26953125,-0.06542969,-0.1328125,0.15820312,0.083496094,-0.09082031,0.030029297,0.26953125,-0.048828125,0.056640625,-0.06347656,0.022460938,-0.025268555,-0.107910156,-0.08154297,0.088378906,-0.014709473,-0.0859375,0.025512695,0.22460938,0.016967773,-0.16210938,0.008605957,0.029541016,0.017700195,0.063964844,0.20703125,-0.12402344,0.10253906,0.037597656,0.03466797,0.04321289,-0.05444336,0.040039062,-0.048095703,0.20800781,-0.111328125,-0.19921875,-0.025634766,0.14453125,-0.265625,-0.087402344,0.010620117,-0.15625,0.06347656,0.12451172,0.01977539,-0.08935547,-0.022338867,-0.10253906,-0.17871094,0.10839844,-0.05419922,0.048095703,-0.030517578,-0.017944336,-0.059326172,-0.036621094,0.091308594,-0.036132812,0.12109375,-0.016845703,-0.03515625,0.018432617,-0.04296875,-0.017944336,-0.25,0.076660156,-0.09716797,-0.11767578,0.05517578,0.060546875,-0.014465332,-0.047607422,-0.021728516,-0.0066223145,0.004119873,-0.030517578,0.021606445,-0.1484375,-0.063964844,0.091308594,-0.19921875,0.08203125,0.19726562,0.0041503906,0.115234375,0.19628906,-0.15917969,0.043701172,0.21191406,0.19824219,-0.013977051,-0.37109375,-0.09716797,-0.08691406,-0.064941406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15625,0.14160156,0.032958984,-0.15429688,0.041992188,-0.047851562,-0.1875,0.013244629,-0.024902344,-0.14160156,0.28710938,0.17675781,0.018066406,-0.107910156,-0.23339844,0.051757812,-0.018188477,0.10205078,-0.04711914,-0.1875,0.20800781,0.014038086,-0.031982422,0.022338867,0.025268555,0.103515625,-0.041503906,-0.0038757324,0.041503906,-0.10449219,0.1796875,-0.17675781,-0.061279297,0.1171875,0.042236328,0.041992188,0.11376953,-0.27148438,-0.22460938,-0.021362305,0.09863281,0.017700195,0.12890625,-0.10546875,-0.00793457,-0.091308594,-0.05859375,0.13671875,-0.21289062,0.068847656,-0.078125,0.014587402,0.041259766,0.068847656,-0.009643555,-0.029907227,0.09082031,0.037597656,0.10595703,-0.11816406,-0.16503906,0.24023438,-0.07861328,0.11816406,-0.115234375,0.07714844,-0.15332031,-0.10839844,-0.18847656,0.060302734,-0.020996094,-0.203125,0.09326172,-0.1171875,-0.026977539,-0.048095703,-0.36914062,0.14160156,-0.002532959,0.30273438,-0.10644531,0.1484375,0.043701172,-0.0859375,0.00078582764,-0.03881836,-0.19335938,0.092285156,0.025390625,-0.009338379,-0.13378906,0.12060547,-0.10253906,-0.091796875,-0.12011719,-0.15234375,0.045410156,0.12792969,0.21289062,-0.04272461,-0.0071105957,-0.012268066,-0.01586914,-0.018798828,-0.048828125,0.07080078,0.046875,-0.041015625,0.12060547,0.07373047,0.08691406,-0.064941406,-0.09423828,0.06298828,0.041259766,0.12695312,0.106933594,0.04736328,0.015014648,0.037841797,0.15625,0.14257812,0.047851562,-0.0057678223,0.17480469,-0.18847656,0.20117188,-0.07714844,-0.067871094,-0.068847656,0.18066406,-0.024658203,0.09716797,-0.107910156,-0.05810547,0.07421875,-0.0019378662,0.087890625,0.008422852,-0.032958984,-0.033691406,-0.05102539,-0.061035156,0.100097656,-0.018310547,-0.004058838,-0.050048828,-0.088378906,-0.049804688,0.119140625,0.0033569336,0.14941406,0.050048828,-0.19042969,-0.14550781,0.07421875,-0.088378906,0.099609375,-0.07861328,0.096191406,-0.008422852,0.17285156,0.018798828,0.115234375,0.071777344,0.0390625,-0.06982422,0.07128906,0.09667969,-0.15527344,0.0009765625,0.19433594,0.041015625,0.023071289,-0.11328125,-0.06542969,-0.0033416748,0.10546875,2.4914742e-05,0.010070801,0.061035156,0.0390625,-0.04248047,-0.029663086,0.05444336,-0.011474609,0.09033203,-0.03173828,0.08105469,0.06933594,0.07373047,0.13183594,-0.11035156,-0.14746094,-0.045654297,0.00015449524,0.061279297,0.119140625,0.04711914,0.045166016,0.12207031,-0.036865234,0.05834961,-0.0003681183,0.05419922,0.0010147095,0.05859375,-0.18457031,-0.0028076172,-0.25976562,0.063964844,0.053710938,0.040527344,-0.25390625,0.09277344,-0.024902344,-0.056884766,0.048828125,-0.07763672,0.060302734,0.21679688,-0.025756836,0.07080078,-0.051757812,-0.092285156,-0.09863281,0.03930664,0.0007324219,-0.08203125,-0.057861328,-0.095703125,0.025390625,0.091308594,-0.18554688,-0.34765625,0.08886719,-0.17871094,0.13085938,0.064941406,-0.29101562,0.15039062,-0.06347656,-0.13574219,0.0032196045,0.0859375,0.046875,-0.25,0.19042969,-0.00680542,-0.04663086,0.13085938,0.12988281,0.16015625,0.115722656,0.05053711,-0.15234375,-0.006439209,-0.11035156,0.0013580322,-0.050048828,-0.079589844,0.053222656,-0.13378906,0.053955078,0.075683594,0.013000488,0.050048828,0.006072998,0.28320312,0.020019531,0.20019531,-0.013427734,-0.017333984,-0.068359375,0.10888672,-0.09814453,0.043701172,-0.010986328,-0.006072998,-0.07519531,0.040283203,0.008972168,0.033935547,0.18164062,0.12988281,-0.005126953,-0.048583984,0.020385742,-0.03930664,-0.2265625,0.046142578,-0.0072021484,0.08203125,-0.024902344,0.029663086,-0.024291992,-0.12792969,-0.05053711,0.02319336,0.11425781,-0.026733398,0.09375,-0.09863281,-0.15234375,-0.05517578,-0.18066406,0.012634277,0.016601562,-0.03930664,-0.022705078,-0.038085938,0.026611328,0.057617188,-0.20410156,0.05126953,0.00970459,-0.125,0.07714844,0.0077819824,-0.13964844,0.07324219,-0.31835938,-0.25585938,0.26953125,-0.25585938,-0.00061798096,0.21679688,0.044677734,0.033691406,0.08203125,0.17089844,-0.09423828,-0.020751953,0.009277344,-0.057861328,0.16796875,-0.05883789,-0.109375,-0.10595703,0.056884766,-0.03173828,0.12890625,0.21289062,0.06201172,-0.125,0.14355469,-0.052978516,-0.079589844,0.045898438,0.119140625,-0.038330078,0.2265625,-0.05102539,0.022949219,-0.021240234,-0.014831543,-0.0035552979,0.10449219,-0.07470703,0.07128906,-0.007232666,0.14160156,0.020629883,0.072265625,-0.012207031,-0.05102539,-0.041259766,0.05810547,-0.04711914,0.15820312,-0.16796875,-0.06298828,-0.11669922,0.0027618408,0.20898438,-0.07470703,-0.009765625,-0.045410156,-0.008605957,0.078125,-0.14257812,0.044189453,-0.25,0.0703125,0.04663086,-0.03173828,-0.22753906,0.09472656,-0.16699219,0.20507812,0.045898438,-0.008850098,0.055908203,0.064453125,0.14355469,0.11328125,-0.40234375,-0.06298828,-0.12207031,0.034423828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12988281,0.1875,0.09326172,-0.096191406,-0.07421875,0.27539062,-0.110839844,-0.11425781,0.15429688,0.18945312,-0.12158203,-0.027832031,0.0022735596,-0.071777344,-0.028686523,0.08203125,-0.1953125,-0.0042419434,0.080078125,0.052246094,-0.03955078,0.10205078,0.19433594,-0.19726562,0.10107422,0.045166016,-0.14257812,-0.09423828,0.031982422,-0.0048828125,0.095214844,-0.026611328,0.08203125,-0.13964844,0.05029297,0.053955078,-0.025512695,-0.050048828,0.08691406,0.067871094,-0.11816406,0.10058594,0.061035156,0.111328125,-0.076171875,-0.16308594,-0.022827148,0.083984375,0.21484375,0.016845703,0.1796875,-0.0051574707,0.110839844,0.047851562,-0.106933594,0.08300781,0.041748047,-0.019042969,-0.12597656,-0.08496094,0.03173828,0.0023498535,0.16601562,-0.13378906,-0.052246094,0.37109375,0.026977539,0.024658203,0.080078125,-0.076171875,-0.067871094,-0.23046875,0.043945312,0.16699219,0.078125,-0.28125,-0.015563965,-0.056640625,0.063964844,-0.18847656,0.0072631836,0.0074157715,0.1796875,0.07519531,-0.106933594,0.04296875,-0.01361084,0.0005378723,0.08251953,-0.05444336,-0.19335938,0.057861328,0.043701172,-0.08105469,-0.028076172,-0.043945312,-0.043701172,0.03515625,0.030639648,0.15039062,0.043701172,0.115722656,-0.119628906,-0.013916016,-0.010620117,-0.020507812,0.036376953,0.099121094,-0.14453125,-0.06542969,-0.10888672,-0.046875,0.047851562,0.009460449,0.080566406,0.06347656,-0.057373047,-0.12890625,-0.18066406,0.100097656,0.068359375,-0.15429688,0.19628906,0.06982422,-0.020141602,-0.11279297,-0.044677734,0.0008468628,-0.09814453,0.05102539,-0.005004883,-0.010070801,0.08886719,-0.103027344,-0.0099487305,0.00982666,-0.09472656,-0.049560547,-0.033935547,-0.16113281,-0.13769531,0.079589844,-0.0063476562,-0.107421875,-0.072265625,-0.046875,-0.034179688,0.06640625,0.118652344,0.17480469,-0.20214844,-0.12597656,0.12207031,-0.021972656,-0.045166016,-0.31835938,0.0032348633,0.12451172,0.07519531,-0.03149414,0.1171875,0.052490234,-0.06689453,0.10253906,-0.059326172,-0.12792969,0.061523438,-0.00491333,0.0146484375,-0.068359375,0.011230469,0.07861328,-0.12158203,-0.014160156,-0.10205078,-0.13574219,-0.08935547,0.0099487305,-0.057128906,0.11230469,0.095703125,0.08935547,-0.04345703,-0.03955078,-0.061279297,-0.10107422,0.030151367,0.12695312,-0.11035156,0.24511719,0.09863281,0.060058594,-0.068359375,-0.025756836,0.0011672974,-0.032958984,0.17285156,-0.032470703,0.09375,0.122558594,-0.015014648,0.044433594,0.083496094,0.03515625,0.016723633,0.18554688,0.13378906,-0.045654297,0.15722656,0.057128906,-0.06542969,0.014587402,0.11376953,-0.18359375,-0.2109375,-0.067871094,-0.06591797,-0.013977051,-0.083496094,0.09033203,-0.19238281,0.083984375,0.0074768066,-0.07714844,0.16796875,-0.10546875,-0.061035156,0.14453125,-0.15820312,0.020141602,-0.24707031,-0.083984375,0.047607422,-0.080078125,0.20605469,0.0018920898,-0.060058594,0.052001953,0.16894531,0.119628906,0.02734375,0.21191406,-0.06542969,-0.068847656,-0.12988281,0.0024871826,-0.1484375,-0.30664062,-0.029907227,0.016967773,0.13964844,-0.20410156,-0.03112793,0.08300781,-0.0859375,-0.092285156,-0.08886719,0.10205078,0.072265625,-0.06201172,-0.016235352,0.12890625,-0.25,-0.25195312,-0.063964844,0.04638672,-0.001159668,0.029418945,0.037353516,0.048828125,-0.11328125,0.016357422,-0.07421875,-0.20898438,-0.119140625,-0.22363281,0.05444336,0.31835938,0.044433594,0.11621094,0.025756836,0.095214844,-0.026000977,0.012634277,0.15234375,0.05908203,-0.07128906,-0.061523438,0.103515625,0.004272461,-0.08300781,-0.056640625,0.09082031,-0.07373047,0.044921875,-0.03515625,0.061035156,0.018798828,-0.036132812,-0.04638672,-0.0047302246,-0.020629883,0.057373047,0.014709473,-0.006591797,-0.118652344,0.068847656,0.16308594,-0.059814453,0.08496094,-0.20800781,-0.265625,0.06298828,0.022460938,0.055419922,-0.067871094,-0.013000488,0.09277344,0.09765625,0.14160156,0.3046875,0.19726562,-0.13671875,-0.038330078,0.014221191,-0.1484375,-0.14746094,-0.41601562,0.003768921,0.031982422,0.029296875,-0.20507812,0.04321289,0.10205078,-0.12011719,-0.05029297,-0.15136719,-0.22460938,0.05834961,-0.12402344,-0.032470703,0.17285156,-0.08251953,-0.10644531,0.010070801,0.087402344,0.13183594,-0.2109375,0.08251953,-0.13378906,0.023803711,-0.078125,-0.057617188,0.03515625,0.0029144287,-0.40820312,0.041259766,0.107910156,-0.049316406,0.22753906,-0.08251953,0.07910156,-0.055664062,-0.3515625,0.1328125,0.16015625,0.0703125,-0.16210938,-0.3046875,-0.072265625,-0.07714844,-0.14550781,-0.020385742,-0.10839844,-0.099121094,-0.03881836,0.10107422,-0.038085938,0.0048828125,-0.2734375,-0.04345703,0.028076172,-0.12011719,-0.07519531,-0.29101562,-0.122558594,0.057861328,-0.028564453,-0.24609375,0.083496094,-0.10058594,-0.038085938,-0.0043640137,0.045654297,0.0033569336,-0.21386719,0.021728516,0.03955078,-0.096191406,0.034179688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.17578125,-0.11621094,-0.08691406,-0.21972656,-0.055419922,0.118652344,-0.30273438,-0.024291992,0.032714844,-0.100097656,-0.068847656,-0.27734375,-0.11279297,-0.33203125,0.07421875,0.055419922,0.16601562,0.020385742,-0.15820312,-0.22949219,-0.09472656,-0.017211914,-0.1484375,-0.060058594,0.10253906,-0.103515625,0.03466797,0.05126953,0.0077209473,-0.31054688,-0.05883789,-0.1796875,0.040283203,-0.1953125,0.092285156,-0.27148438,-0.045654297,-0.03564453,-0.1328125,-0.0037078857,0.059326172,0.024536133,-0.13183594,0.15039062,0.03564453,-0.19238281,0.106933594,-0.109375,0.16601562,-0.24414062,0.08496094,-0.15234375,0.01184082,0.095214844,0.033691406,0.1328125,-0.13378906,-0.01940918,0.16992188,0.2890625,-0.014953613,-0.05126953,-0.100097656,-0.0146484375,0.21875,-0.21191406,0.041015625,-0.22558594,0.25195312,0.05810547,-0.08154297,0.13183594,-0.050048828,-0.12890625,-0.07470703,-0.045166016,-0.083496094,0.043945312,-0.05126953,-0.19726562,-0.09814453,-0.1171875,-0.13378906,-0.0625,0.0014572144,-0.115722656,0.060302734,-0.12695312,0.09863281,-0.01965332,-0.0045166016,0.00970459,0.048339844,-0.13867188,-0.08496094,0.26367188,-0.07519531,0.024658203,0.032226562,-0.076171875,0.023925781,0.28515625,-0.046142578,-0.23339844,0.17578125,0.07763672,0.0234375,0.16796875,0.013244629,-0.22070312,0.13085938,-0.0055236816,0.13671875,0.16894531,0.057861328,-0.15332031,-0.09667969,0.06542969,0.09277344,0.032714844,-0.05419922,-0.008422852,0.022216797,0.08984375,0.012451172,-0.18457031,0.095214844,0.08886719,0.22558594,0.014770508,-0.017333984,-0.01977539,0.13085938,0.017578125,0.28320312,0.11816406,-0.0047912598,-0.19921875,0.072265625,-0.013244629,0.016723633,0.064453125,-0.106933594,0.075683594,-0.024658203,-0.18164062,0.063964844,-0.19140625,0.03491211,-0.15820312,0.25585938,0.17382812,-0.064453125,-0.26171875,0.0059814453,0.022460938,-0.10986328,-0.1875,-0.16015625,-0.0047302246,-0.052001953,-0.07519531,0.07519531,0.17089844,-0.26171875,-0.07324219,0.110839844,-0.03930664,-0.061767578,0.055908203,-0.140625,0.13476562,-0.018066406,-0.1484375,-0.037109375,0.04638672,0.03955078,-0.07324219,-0.013916016,0.022460938,-0.122558594,-0.22363281,0.0390625,0.048583984,0.020996094,0.056396484,0.10253906,0.21582031,0.13476562,-0.10498047,-0.16503906,-0.013977051,0.09765625,0.15429688,0.07421875,-0.22363281,-0.064453125,0.064453125,0.23144531,-0.029785156,-0.11669922,0.0099487305,0.08105469,-0.002029419,-0.021240234,-0.046875,0.056396484,-0.012084961,0.20019531,0.10546875,-0.011047363,-0.23632812,0.095214844,-0.03100586,0.40039062,-0.059326172,0.13378906,-0.34179688,0.013061523,0.10546875,-0.05029297,0.11767578,0.14648438,0.014587402,0.111816406,-0.16503906,-0.0043029785,-0.11035156,0.017333984,-0.07421875,0.22851562,-0.06933594,-0.04321289,-0.33789062,-0.23828125,-0.053710938,0.09765625,-0.17480469,-0.012268066,-0.16210938,-0.13378906,-0.17675781,-0.04711914,-0.0390625,0.0018005371,-0.26171875,-0.12451172,-0.296875,-0.1015625,0.005432129,-0.10449219,0.107910156,0.016479492,-0.140625,-0.19042969,-0.016845703,-0.030517578,0.07519531,0.18261719,0.12695312,0.037841797,-0.07910156,-0.045654297,-0.05419922,-0.048095703,0.13378906,-0.031982422,0.13769531,0.15917969,-0.020874023,0.0008125305,0.12207031,-0.04248047,0.22460938,0.084472656,-0.15722656,0.06738281,0.018432617,0.203125,-0.05053711,-0.099121094,0.010437012,0.15917969,0.07324219,0.0087890625,-0.009094238,-0.027832031,0.032226562,-0.008361816,-0.03955078,0.13183594,-0.22460938,0.1953125,-0.12988281,0.27929688,-0.24414062,0.034423828,0.09814453,-0.13574219,0.02709961,-0.091308594,-0.056152344,-0.087402344,0.044189453,0.13574219,-0.076171875,0.11621094,-0.31640625,-0.036376953,0.09326172,0.27929688,-0.08935547,0.033203125,0.06738281,-0.076171875,-0.080566406,-0.08935547,-0.100097656,0.037841797,-0.053710938,-0.122558594,-0.067871094,0.087402344,0.012512207,0.07470703,-0.04663086,0.04272461,0.060058594,0.020141602,0.02331543,0.05419922,0.013916016,-0.20117188,-0.084472656,-0.15625,-0.064941406,0.11376953,-0.18164062,0.027954102,0.08544922,0.083984375,0.11035156,0.080566406,-0.24804688,-0.020629883,0.059570312,-0.008544922,-0.04248047,0.11767578,-0.21582031,-0.078125,-0.03955078,0.12109375,0.056152344,0.050048828,0.047851562,0.012573242,-0.080078125,0.059814453,-0.017944336,-0.09033203,-0.038085938,0.20214844,-0.07421875,-0.13085938,0.03173828,-0.18945312,-0.11035156,-0.15234375,-0.06542969,0.018676758,-0.026611328,0.17382812,0.1328125,0.07910156,-0.09863281,0.060546875,-0.03173828,0.12109375,0.091308594,-0.07421875,-0.08984375,0.125,0.044921875,0.16210938,0.0134887695,-0.04248047,-0.25195312,0.056884766,-0.024291992,-0.09423828,-0.026611328,0.012634277,0.011779785,-0.14746094,0.16113281,0.00076675415,-0.20996094,-0.104003906,-0.044677734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.096191406,0.007873535,0.12792969,0.028442383,0.08544922,0.16699219,0.26171875,-0.009277344,-0.13574219,0.052246094,-0.08544922,-0.095703125,-0.021118164,-0.01586914,0.11767578,0.020507812,-0.05908203,-0.14355469,-0.08886719,0.00010442734,0.16601562,-0.01574707,0.140625,-0.033447266,-0.004058838,-0.0019302368,0.026245117,-0.15722656,-0.10498047,-0.072265625,-0.1484375,0.12402344,-0.1875,0.072753906,-0.051513672,-0.07763672,0.20410156,-0.030273438,0.079589844,-0.31640625,-0.10986328,-0.10058594,4.220009e-05,-0.296875,0.057617188,0.078125,-0.07373047,0.14648438,-0.32421875,0.16796875,0.07714844,-0.17089844,-0.008972168,0.0028533936,0.03491211,-0.30273438,-0.0027313232,-0.053222656,-0.05810547,-0.23730469,0.06542969,-0.00062561035,-0.053955078,-0.047851562,-0.30078125,-0.13476562,0.16894531,0.020385742,-0.022094727,0.19140625,-0.04638672,-0.007873535,-0.06298828,0.0021209717,-0.00680542,0.057373047,0.09667969,-0.13085938,0.00579834,-0.09765625,-0.07714844,0.0070495605,-0.0055236816,0.13574219,0.03173828,0.2265625,-0.06298828,-0.14257812,-0.013549805,0.099609375,0.087402344,-0.13476562,-0.0859375,0.11279297,0.016113281,0.12597656,-0.14941406,0.006591797,-0.07324219,-0.15722656,-0.16015625,0.18261719,-0.03540039,-0.13671875,-0.03564453,0.057373047,-0.1796875,-0.25585938,-0.0138549805,-0.17382812,0.083496094,0.14257812,-0.08691406,0.13378906,0.0625,0.012023926,-0.05810547,-0.265625,-0.083984375,-0.31445312,0.037353516,-0.119628906,0.10498047,-0.067871094,-0.17578125,-0.34960938,-0.044189453,0.17773438,-0.34960938,-0.05810547,-0.016845703,-0.012634277,-0.13183594,0.021118164,0.059814453,-0.23242188,-0.03466797,0.07910156,-0.11279297,-0.11376953,-0.053466797,0.013977051,0.13867188,0.08496094,-0.111816406,-0.013793945,0.14941406,0.029785156,0.091796875,0.19042969,0.06689453,0.00077056885,0.029663086,0.19921875,0.03515625,0.34570312,0.11669922,0.11816406,0.064941406,0.06738281,-0.026123047,-0.203125,-0.046142578,-0.028808594,0.06298828,0.06933594,0.2421875,-0.10644531,-0.060791016,-0.028076172,0.030761719,-0.32421875,-0.05078125,-0.23535156,-0.005126953,-0.08251953,-0.234375,0.0002374649,-0.11816406,-0.008666992,-0.005645752,0.34960938,0.16894531,-0.048583984,-0.007873535,0.064453125,-0.0030822754,-0.11621094,0.0048828125,-0.122558594,-0.02722168,-0.092285156,0.16992188,-0.1953125,-0.023803711,-0.07763672,-0.055908203,-0.044677734,-0.050048828,-0.20605469,-0.005706787,-0.056396484,0.036132812,-0.16113281,-0.07910156,0.06591797,0.032958984,-0.01361084,-0.087402344,-0.16699219,0.095703125,0.055419922,-0.15136719,-0.07861328,0.11376953,-0.22167969,-0.008850098,-0.095703125,0.15625,-0.12988281,-0.16015625,-0.10058594,-0.07128906,0.096191406,0.003967285,-0.063964844,0.11376953,0.064453125,0.09375,0.114746094,0.18066406,-0.06640625,-0.104003906,0.075683594,-0.1328125,0.19921875,-0.007507324,-0.26367188,0.1640625,-0.052490234,-0.052246094,0.040039062,-0.02331543,-0.013061523,0.14257812,-0.16699219,0.15917969,-0.19433594,-0.15722656,-0.14648438,0.20507812,-0.06933594,0.11376953,0.01977539,0.06201172,0.09716797,-0.12060547,0.011962891,-0.041259766,0.087402344,-0.053222656,0.068847656,0.125,-0.17089844,-0.09423828,0.080566406,0.063964844,0.03100586,0.044433594,-0.12451172,0.071777344,-0.057128906,-0.022583008,-0.07373047,0.06591797,0.032714844,0.067871094,-0.06591797,0.007080078,-0.16015625,0.041259766,0.021850586,-0.045166016,0.02355957,-0.01159668,0.059814453,-0.041748047,-0.07470703,-0.076660156,-0.0138549805,0.028564453,0.08496094,-0.029907227,-0.16992188,0.15136719,0.18359375,-0.028686523,0.015258789,0.079589844,0.21582031,-0.079589844,0.119628906,-0.0032806396,0.046142578,0.029541016,-0.0071105957,0.011657715,-0.12207031,0.038330078,0.10644531,0.203125,-0.044677734,0.09277344,-0.032958984,0.0008621216,-0.06982422,0.021240234,-0.24609375,0.026855469,0.050048828,-0.11669922,-0.03149414,0.012939453,-0.064941406,-0.068847656,-0.08642578,0.083496094,-0.0066833496,-0.04321289,0.021118164,-0.14746094,0.06542969,-0.041259766,0.032958984,0.017578125,0.048339844,-0.35742188,-0.020751953,0.06933594,-0.048339844,-0.18945312,0.17578125,0.064941406,-0.19335938,-0.030517578,0.030639648,-0.076660156,0.075683594,-0.056152344,0.03881836,-0.04296875,-0.036621094,-0.044189453,-0.06591797,0.07910156,0.11035156,-0.001876831,-0.0390625,0.10058594,-0.06640625,0.060058594,0.080566406,0.04711914,0.11621094,-0.20898438,-0.040039062,-0.005554199,0.07324219,-0.021484375,-0.1484375,0.09375,0.030639648,-0.048828125,0.0025024414,0.22070312,-0.0039367676,-0.040771484,0.140625,0.052490234,0.10058594,0.103027344,0.048583984,0.02709961,-0.009643555,0.0234375,-0.053710938,0.045654297,-0.063964844,0.024414062,0.06225586,0.10546875,0.10058594,0.04248047,0.02734375,0.03491211,0.064453125,0.123535156,-0.14160156,-0.008972168,-0.09765625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.24804688,0.041259766,-0.33398438,-0.067871094,-0.115722656,0.171875,-0.27148438,-0.17578125,-0.095214844,-0.119628906,0.08544922,-0.04272461,0.061035156,0.024047852,-0.1796875,-0.08935547,-0.22558594,0.19726562,-0.20898438,-0.021484375,-0.11328125,-0.08935547,-0.11328125,0.040283203,0.030517578,-0.13867188,0.046142578,-0.008544922,0.115722656,0.029296875,0.068847656,-0.203125,-0.1484375,0.07470703,0.026245117,0.06591797,-0.05078125,0.08544922,-0.078125,-0.06298828,0.022949219,-0.22949219,-0.03112793,0.103515625,0.018676758,0.07421875,0.018188477,-0.33007812,-0.010009766,-0.079589844,-0.040283203,-0.0025634766,-0.021972656,0.0071105957,0.103027344,-0.0099487305,-0.09277344,-0.12792969,0.14941406,0.096191406,-0.057128906,0.02722168,0.11035156,-0.09326172,-0.21679688,0.28710938,0.07080078,-0.15722656,0.072753906,-0.057617188,0.26757812,0.009094238,0.06347656,-0.20214844,0.08642578,0.13867188,0.032470703,-0.1484375,0.16210938,-0.1484375,-0.044189453,-0.10449219,-0.12451172,0.09667969,-0.08642578,0.19042969,-0.25,0.11035156,-0.034179688,-0.119140625,0.09326172,0.004211426,0.014465332,-0.087890625,-0.092285156,7.6293945e-05,0.0703125,-0.008178711,-0.064941406,0.1484375,0.06591797,-0.03491211,-0.04736328,0.00982666,0.104003906,-0.009094238,-0.10839844,0.24414062,-0.034179688,0.08105469,0.10644531,-0.11376953,-0.06982422,-0.072753906,-0.052001953,0.12792969,0.119628906,-0.25976562,-0.041259766,-0.03173828,-0.048339844,-0.020751953,0.052490234,0.2265625,-0.025512695,0.025268555,0.111816406,-0.0050964355,0.04321289,0.039794922,0.026489258,0.14550781,0.0625,-0.07519531,0.01965332,0.028808594,0.100097656,-0.01184082,0.036621094,-0.042236328,-0.068359375,-0.0005683899,-0.0703125,-0.072753906,-0.07763672,-0.020385742,-0.0703125,-0.088378906,-0.064941406,-0.091796875,0.12207031,-0.08300781,0.005004883,-0.035888672,0.014770508,0.16210938,0.006378174,-0.044677734,-0.038085938,-0.031982422,-0.1015625,-0.11816406,-0.0009918213,0.125,-0.052978516,0.032714844,0.037353516,0.14746094,-0.0046691895,-0.0234375,-0.09814453,-0.008972168,-0.072265625,-0.11669922,-0.012084961,0.095703125,0.10546875,-0.18554688,-0.043945312,0.021484375,0.10839844,0.08300781,0.095214844,-0.17480469,-0.06933594,-0.03173828,-0.03515625,0.05517578,-0.15429688,-0.140625,0.19726562,0.1015625,0.18847656,0.140625,-0.08251953,-0.020629883,0.084472656,-0.026611328,-0.18554688,-0.04321289,-0.052490234,-0.109375,0.041259766,-0.032714844,-0.028198242,0.056640625,0.04248047,-0.0029449463,0.19921875,0.18554688,-0.053710938,0.014221191,-0.040771484,0.08154297,-0.05053711,-0.12792969,0.014770508,0.047851562,0.19433594,0.19628906,0.060791016,-0.046142578,0.14648438,-0.11035156,0.028686523,0.19824219,-0.030029297,-0.036865234,0.022583008,-0.22167969,-0.16992188,0.040283203,0.09667969,0.059326172,0.04663086,0.007446289,-0.07910156,0.052490234,0.037353516,-0.1015625,0.09277344,0.13964844,0.060791016,0.020385742,-0.122558594,-0.083496094,0.023925781,-0.017944336,0.064941406,0.0021514893,0.088378906,-0.059326172,-0.05029297,-0.12695312,0.0014572144,-0.012268066,0.091796875,-0.061523438,0.20703125,0.07470703,0.035888672,0.13769531,0.030151367,-0.12402344,-0.08886719,-0.12792969,-0.099609375,0.018676758,-0.2265625,-0.041503906,0.021240234,0.0050964355,0.21679688,0.25390625,0.06640625,-0.059570312,0.010070801,0.2109375,0.033447266,-0.15820312,0.024902344,-0.103027344,0.018920898,0.024414062,-0.057861328,-0.12890625,-0.047851562,0.10253906,0.07373047,0.16894531,0.08300781,-0.022705078,-0.20507812,0.007446289,0.06201172,-0.15039062,-0.017578125,-0.029785156,0.25390625,0.16796875,0.10839844,0.04736328,0.083984375,-0.052246094,0.16210938,0.19238281,-0.04296875,-0.100097656,-0.014221191,0.08935547,-0.068847656,0.10644531,0.09472656,0.05053711,0.19042969,-0.026733398,-0.08935547,0.08300781,-0.10449219,0.12792969,-0.15332031,0.114746094,0.100097656,-0.111328125,0.08154297,0.23535156,0.09375,0.20898438,-0.030273438,-0.047851562,0.03491211,0.18261719,-0.05834961,-0.002380371,-0.25195312,-0.064941406,-0.091796875,-0.0546875,0.052978516,-0.08984375,0.08251953,-0.0703125,-0.022460938,0.06542969,-0.043945312,0.026977539,0.12060547,0.013793945,-0.12158203,-0.1328125,-0.14941406,-0.03564453,0.20800781,0.01574707,0.14941406,-0.0009651184,-0.0065307617,0.060791016,0.1328125,0.043701172,0.0010070801,-0.08642578,0.044921875,0.059814453,-0.15527344,0.059814453,-0.12158203,-0.0138549805,-0.087890625,0.13964844,0.104003906,0.05883789,-0.08691406,-0.10058594,0.028686523,0.15625,0.064453125,0.041992188,0.2421875,-0.061035156,0.10644531,0.1015625,-0.12792969,-0.16699219,0.08496094,-0.039794922,-0.017456055,-0.042236328,0.018066406,0.21875,0.041748047,-0.016723633,-0.005493164,0.039794922,0.17089844,-0.17773438,-0.08935547,0.021484375,0.030151367,-0.2109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.06689453,-0.033935547,-0.3359375,0.07861328,0.07080078,-0.09277344,0.028686523,-0.0054626465,-0.19921875,0.072265625,0.16796875,-0.11376953,-0.087402344,-0.057128906,-0.0625,0.18066406,-0.13085938,0.024780273,-0.19921875,0.020385742,-0.26953125,0.07324219,-0.014587402,-0.038330078,0.07421875,0.076171875,-0.49609375,-0.022216797,-0.23144531,-0.01550293,-0.07128906,0.34375,0.0057373047,-0.17285156,-0.2421875,-0.140625,-0.036376953,-0.021728516,0.1015625,0.06347656,-0.0390625,0.2265625,-0.21191406,0.13183594,-0.040039062,-0.033935547,0.08496094,0.20019531,-0.02355957,-0.15722656,-0.16308594,-0.004852295,-0.020385742,-0.2109375,0.061035156,0.11669922,-0.11621094,0.12988281,0.056640625,0.022460938,0.06298828,0.125,0.021362305,0.14941406,-0.14257812,0.031982422,-0.23632812,-0.17089844,0.019165039,-0.076171875,-0.0007171631,-0.009765625,-0.19042969,0.017211914,0.0066833496,-0.043701172,0.076660156,0.26953125,0.02331543,0.15332031,-0.20605469,0.09423828,-0.28710938,0.109375,-0.029785156,-0.0037231445,-0.0029449463,0.14160156,-0.04321289,0.14941406,-0.08935547,-0.111816406,-0.12158203,0.05810547,0.19824219,0.067871094,-0.0043640137,0.05834961,-0.16210938,0.15722656,-0.092285156,0.13085938,-0.19726562,0.0546875,-0.07421875,0.0054016113,-0.084472656,-0.11621094,-0.28125,-0.04711914,-0.16699219,0.17675781,-0.037353516,-0.05053711,-0.26171875,0.028930664,-0.05126953,0.19628906,-0.28125,0.059814453,-0.20605469,-0.0054626465,0.011474609,0.075683594,0.021972656,0.060546875,-0.080566406,0.021850586,-0.006072998,0.1640625,0.111816406,0.01159668,0.05517578,0.103027344,0.02746582,0.119140625,0.099609375,0.20605469,-0.038085938,-0.013000488,0.103515625,0.050048828,-0.111816406,-0.11767578,-0.1875,0.044677734,-0.27734375,-0.08300781,0.14355469,-0.34960938,0.0073547363,0.021728516,0.047851562,0.008972168,-0.23925781,0.021484375,-0.016357422,0.26367188,-0.076660156,-0.06738281,-0.06982422,0.13867188,-0.111328125,-0.039794922,-0.08300781,-0.021484375,-0.011291504,0.14550781,0.05883789,-0.042236328,0.03955078,-0.0107421875,-0.25585938,0.03112793,-0.16503906,-0.06298828,-0.053466797,0.15234375,-0.17285156,-0.010009766,-0.125,0.23632812,-0.0063171387,0.1640625,0.09277344,0.024780273,0.103515625,-0.06689453,-0.26367188,0.1328125,-0.12597656,0.080566406,-0.05126953,0.05810547,-0.056152344,0.007232666,0.08496094,-0.40039062,0.25195312,0.13964844,-0.072265625,-0.18945312,-0.013061523,-0.08300781,-0.14941406,0.015319824,-0.05883789,0.15039062,-0.26367188,-0.052246094,-0.061279297,-0.040283203,-0.08544922,-0.15136719,0.05517578,0.12792969,-0.017700195,-0.02331543,0.16308594,0.10107422,-0.029541016,0.017578125,-0.18164062,-0.12060547,-0.111816406,-0.05834961,-0.078125,-0.011230469,0.08203125,-0.10498047,-0.10058594,0.0018539429,0.083496094,0.14453125,-0.13378906,-0.09082031,-0.037353516,0.017822266,-0.17773438,0.10107422,-0.06591797,0.057617188,-0.104003906,0.16015625,0.05883789,-0.27734375,0.08544922,0.010192871,0.04345703,0.103027344,-0.08886719,-0.02368164,-0.1640625,-0.08203125,0.01361084,0.076171875,0.049560547,0.028442383,0.16210938,-0.017456055,0.10888672,0.16601562,-0.19335938,0.19628906,-0.12695312,-0.052001953,-0.05102539,-0.060302734,-0.064453125,-0.12597656,0.19140625,0.203125,-0.13378906,-0.11279297,0.022949219,0.04345703,-0.12597656,-0.022583008,0.14648438,0.08105469,-0.028320312,-0.080078125,0.09765625,-0.00062179565,-0.03466797,-0.12695312,0.08154297,0.24609375,-0.17675781,0.02746582,-0.05126953,0.008728027,-0.021728516,-0.12109375,0.018676758,-0.024169922,-0.0051574707,0.009643555,-0.022094727,0.020141602,-0.08105469,0.10205078,-0.03466797,0.15917969,0.17382812,0.034423828,0.10205078,0.039794922,-0.171875,0.013244629,-0.050048828,0.096191406,-0.03540039,0.11621094,0.07714844,-0.072753906,-0.006011963,0.13964844,0.15332031,0.096191406,-0.23632812,-0.28125,0.028076172,-0.088378906,0.020141602,-0.111816406,-0.0030517578,-0.037353516,0.022705078,-0.036376953,-0.23242188,-0.0546875,0.06347656,-0.23242188,0.083496094,-0.11279297,-0.15234375,-0.03881836,-0.059814453,-0.025024414,0.011047363,-0.08251953,0.013183594,0.11376953,0.030883789,0.11376953,-0.12792969,-0.11376953,-0.12402344,-0.36914062,0.13867188,-0.037353516,-0.08642578,-0.037841797,-0.06591797,0.0043029785,0.05859375,-0.27929688,0.08251953,0.036621094,0.033203125,0.078125,0.03564453,-0.11328125,0.012145996,-0.40429688,0.09472656,0.017578125,-0.111816406,0.22851562,-0.12597656,-0.040039062,0.06347656,-0.29101562,-0.123046875,-0.103027344,-0.1328125,-0.08886719,-0.055664062,-0.059570312,-0.031982422,-0.07763672,0.07714844,0.084472656,-0.27734375,0.19726562,-0.14941406,0.0021209717,-0.2109375,-0.0859375,-0.13964844,0.04638672,-0.13671875,0.20605469,0.23925781,-0.06591797,0.07519531,-0.171875,0.0703125,0.0026855469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.2890625,-0.07421875,-0.016479492,-0.107421875,0.025024414,-0.049560547,0.044433594,-0.04321289,0.024047852,0.09277344,-0.020263672,0.04248047,-0.1015625,0.04663086,-0.008728027,-0.03466797,0.06225586,-0.07861328,-0.26953125,-0.028198242,0.18652344,-0.07470703,0.20019531,-0.020141602,-0.11669922,-0.05126953,0.13769531,-0.026123047,0.026367188,-0.06933594,-0.03466797,-0.20410156,-0.20507812,-0.09863281,-0.23339844,0.017211914,0.14355469,0.061035156,-0.06933594,-0.012023926,0.03540039,0.13378906,-0.004058838,0.044433594,-0.07421875,-0.0036468506,0.115234375,-0.061035156,0.0058288574,-0.09082031,0.01171875,0.031982422,-0.05053711,0.20117188,-0.06640625,-0.056152344,-0.063964844,-0.11621094,0.049560547,-0.123535156,-0.047851562,-0.1484375,0.07519531,0.039794922,-0.08496094,-0.14453125,-0.10888672,0.12597656,-0.088378906,-0.041748047,-0.20214844,-0.16503906,-0.030761719,-0.044189453,-0.020019531,-0.123535156,-0.064453125,0.1015625,-0.10058594,0.034179688,-0.045654297,-0.07714844,-0.10498047,-0.014038086,0.14257812,0.024780273,0.122558594,0.09716797,-0.10498047,0.050048828,-0.03515625,-0.140625,-0.026855469,0.087402344,0.08691406,0.28710938,-0.17871094,0.10058594,-0.059814453,-0.0703125,0.22363281,-0.16210938,-0.056640625,-0.26757812,0.031982422,-0.008117676,0.0038452148,-0.06542969,-0.034423828,-0.013916016,0.04272461,0.0390625,0.080078125,-0.12158203,0.22558594,0.052246094,0.046142578,0.045410156,-0.072753906,0.014770508,-0.020874023,-0.07128906,-0.03173828,-0.10839844,0.05517578,0.07861328,0.111328125,0.044677734,0.08203125,-0.296875,-0.25976562,0.09326172,-0.203125,-0.04321289,-0.0007209778,-0.08300781,0.012817383,-0.0011672974,0.052978516,-0.022583008,0.040527344,-0.10498047,0.15625,-0.037109375,-0.09472656,-0.008728027,-0.17480469,-0.056640625,-0.04248047,0.18066406,-0.15527344,-0.25976562,0.017456055,-0.10253906,0.1484375,-0.15722656,0.006286621,0.020019531,0.0027618408,0.122558594,-0.061035156,-0.38085938,0.088378906,-0.06298828,0.016235352,0.017456055,0.03930664,-0.19140625,-0.072265625,0.041748047,0.028686523,-0.15136719,-0.10253906,-0.13964844,-0.09863281,0.095703125,-0.078125,-0.123535156,0.1484375,0.071777344,-0.005554199,-0.028198242,0.17578125,-0.20605469,0.010009766,0.025878906,0.103027344,-0.14941406,-0.048339844,0.035888672,-0.036865234,-0.03125,-0.030517578,-0.14648438,0.029907227,0.080078125,0.15332031,-0.099121094,0.068847656,0.015563965,0.018554688,0.09863281,-0.048095703,-0.122558594,-0.008605957,-0.011230469,-0.24121094,0.04711914,-0.13085938,-0.18359375,-0.092285156,-0.2265625,0.045654297,0.12695312,-0.21386719,0.09375,-0.100097656,0.057861328,0.13574219,0.029052734,0.11230469,-0.111816406,0.005706787,0.026000977,-0.123535156,0.044921875,-0.11328125,-0.050048828,-0.017089844,-0.0016021729,-0.036865234,-0.29296875,0.009643555,-0.025390625,-0.004333496,-0.042236328,0.016113281,-0.16601562,-0.0859375,-0.13964844,0.061523438,-0.12792969,0.0546875,-0.048828125,0.012207031,-0.100097656,0.09082031,0.014770508,-0.08251953,-0.22265625,0.16210938,-0.046875,0.002243042,-0.048583984,-0.060546875,-0.071777344,-0.07128906,-0.19824219,0.068847656,0.096191406,0.00047302246,0.22167969,0.052001953,-0.2578125,-0.043945312,0.052734375,0.13671875,-0.12890625,-0.08300781,0.03930664,0.11230469,-0.12451172,0.087402344,0.061767578,-0.091308594,0.14257812,0.064941406,-0.02758789,0.09423828,0.053222656,0.04248047,0.08984375,0.11425781,0.03149414,0.053222656,-0.10839844,0.0018539429,0.16308594,-0.016967773,0.071777344,-0.13476562,-0.10498047,0.10546875,-0.21582031,0.079589844,0.048339844,0.04663086,-0.028808594,0.026611328,-0.24707031,-0.01171875,0.010375977,0.0703125,0.032958984,-0.11425781,0.044677734,-0.20800781,-0.15136719,-0.072265625,-0.24414062,-0.21875,-0.12109375,-0.044189453,-0.16015625,-0.060302734,0.013366699,0.08300781,-0.03173828,-0.16699219,-0.10888672,-0.05444336,-0.03112793,-0.023803711,-0.033447266,-0.19921875,0.026611328,0.115722656,0.009643555,-0.06591797,-0.27148438,0.19335938,0.15917969,-0.06542969,0.08886719,-0.103515625,-0.08300781,0.0036621094,0.19335938,0.026611328,0.048095703,-0.012634277,-0.12792969,0.09375,-0.03515625,-0.091796875,-0.17480469,0.13671875,-0.063964844,-0.036865234,0.014282227,-0.013061523,-0.10058594,-0.012268066,0.21289062,-0.068359375,0.14746094,-0.08203125,-0.23632812,-0.024902344,-0.15039062,-0.006225586,0.08935547,0.01550293,-0.25585938,-0.1015625,-0.07519531,0.060791016,-0.03930664,-0.017333984,0.2109375,-0.20214844,0.017578125,-0.09667969,-0.09423828,0.017700195,-0.028686523,0.022583008,0.16601562,0.14648438,-0.265625,0.010620117,-0.028564453,0.12011719,-0.00579834,0.057128906,0.24414062,-0.16992188,-0.024902344,-0.09814453,-0.080078125,-0.0013580322,-0.41601562,-0.034179688,0.057373047,-0.036621094,-0.10498047,-0.09082031,-0.110839844,0.010375977,0.107910156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.052490234,-0.16699219,0.19335938,0.18945312,0.10205078,0.03173828,-0.072753906,-0.111328125,-0.038085938,-0.16992188,0.119140625,0.08642578,-0.122558594,0.22460938,-0.21972656,0.01940918,0.08642578,-0.18261719,0.12890625,0.18945312,0.17871094,0.08984375,-0.012878418,0.15625,0.031982422,-0.033203125,0.19238281,0.30273438,-0.037353516,-0.08691406,0.004638672,-0.06201172,0.17871094,-0.012512207,0.125,-0.111816406,-0.11328125,0.033691406,0.0859375,0.12695312,-0.0073242188,-0.11425781,0.17480469,0.03173828,-0.11328125,-0.171875,-0.040771484,0.056152344,0.18652344,-0.021606445,0.037109375,-0.25976562,-0.11621094,-0.17089844,-0.22460938,-0.0703125,0.024780273,-0.20996094,0.080566406,-0.28710938,0.099609375,-0.3125,0.11621094,0.13183594,-0.115722656,0.030883789,-0.10839844,-0.22460938,-0.203125,-0.011291504,0.038330078,-0.265625,-0.044189453,-0.34570312,-0.03491211,-0.171875,0.099609375,-0.16601562,-0.025024414,-0.020141602,0.12890625,-0.23925781,0.009094238,0.110839844,-0.03564453,-0.11376953,-0.17871094,-0.13183594,-0.08203125,-0.27734375,0.017089844,0.16894531,0.048095703,0.16503906,-0.063964844,0.24414062,-0.068359375,-0.17871094,0.13671875,0.20996094,-0.011230469,0.072265625,0.04638672,-0.052246094,-0.017944336,0.053710938,-0.021240234,0.16699219,-0.05029297,0.12011719,-0.111328125,0.036621094,0.025268555,0.19433594,0.15722656,-0.15820312,0.16210938,-0.064941406,-0.13183594,0.072753906,0.03173828,-0.078125,0.16699219,0.015319824,-0.06591797,-0.13964844,0.12109375,0.04272461,0.06542969,0.10449219,-0.14160156,-0.35546875,0.111328125,-0.140625,-0.015075684,-0.013122559,0.083496094,-0.12890625,-0.01550293,-0.07519531,-0.087402344,-0.20898438,-0.118652344,-0.31640625,-0.12988281,0.018554688,-0.06933594,-0.17089844,-0.2734375,-0.049316406,0.022094727,-0.123535156,-0.096191406,-0.30078125,0.044921875,-0.25195312,0.08642578,-0.17382812,-0.12988281,-0.19042969,0.09716797,-0.2890625,0.17675781,0.20507812,-0.115234375,-0.13964844,-0.027954102,-0.040283203,0.056152344,0.022705078,-0.16210938,0.051757812,0.068847656,-0.013977051,0.02355957,0.103027344,-0.0390625,-0.08642578,-0.047851562,-0.064453125,0.08251953,0.15820312,-0.084472656,-0.005126953,-0.076660156,-0.09033203,0.17089844,-0.041503906,-0.022460938,0.048095703,0.028686523,0.118652344,0.076660156,0.17871094,-0.053710938,-0.09082031,-0.059570312,-0.19726562,-0.17382812,0.052978516,0.0034484863,-0.119628906,0.039794922,0.13476562,-0.106933594,0.06201172,0.079589844,0.05908203,-0.10888672,-0.08300781,-0.037841797,-0.19335938,-0.0005912781,0.042236328,0.009765625,0.051513672,0.15136719,-0.13183594,0.11230469,-0.28125,0.017822266,-0.15625,0.059814453,-0.140625,0.09082031,0.2734375,-0.13476562,-0.057373047,-0.24316406,-0.011291504,0.087402344,-0.3203125,-0.103515625,-0.15625,-0.114746094,-0.24609375,0.055908203,-0.06225586,0.00390625,0.017089844,0.07861328,0.013000488,-0.003112793,-0.038330078,-0.114746094,-0.103515625,-0.18066406,-0.12792969,0.07714844,0.024047852,-0.12695312,-0.00982666,0.103027344,0.068847656,0.060546875,0.06225586,0.040771484,0.016845703,0.01953125,0.045166016,0.036376953,-0.07861328,0.061279297,0.08642578,-0.049560547,0.0031738281,-0.033935547,-0.10253906,0.012756348,0.044921875,-0.09082031,0.083984375,-0.022338867,0.106933594,0.056396484,-0.084472656,-0.17578125,-0.1015625,-0.15039062,0.017089844,0.06982422,0.024291992,-0.023803711,0.10595703,-0.080566406,-0.0126953125,-0.049804688,0.0050354004,0.025024414,0.0625,-0.00491333,-0.171875,-0.12402344,-0.1953125,0.032470703,-0.06298828,-0.04345703,0.09423828,0.005584717,-0.056640625,-0.03857422,0.23339844,0.060546875,0.07128906,0.034179688,0.115722656,-0.079589844,0.026611328,-0.08251953,-0.006134033,0.021850586,-0.28125,0.16796875,0.13964844,-0.16601562,-0.068359375,0.111328125,-0.30078125,0.055419922,0.20507812,-0.140625,0.24804688,0.075683594,-0.078125,-0.076171875,-0.06591797,-0.023803711,-0.04248047,0.084472656,0.037109375,0.01184082,-0.11230469,-0.017089844,0.106933594,-0.18652344,-0.21484375,-0.114746094,-0.00579834,0.07714844,0.02368164,-0.16796875,-0.20117188,0.016967773,0.041992188,0.03930664,-0.064453125,-0.099121094,-0.06738281,-0.028320312,0.03857422,-0.23144531,-0.19042969,-0.20898438,0.17480469,0.014770508,-0.1875,-0.09033203,-0.20214844,0.048095703,0.1875,0.03515625,-0.11230469,0.04296875,0.041503906,0.032470703,-0.13867188,0.03930664,-0.06738281,-0.17285156,0.041748047,0.107910156,0.056640625,-0.08300781,-0.05493164,-0.021118164,0.13378906,0.061035156,0.029541016,0.026000977,0.01159668,0.12597656,-0.05053711,0.04321289,-0.10253906,-0.056396484,0.14257812,-0.048828125,0.024047852,-0.1640625,-0.28710938,-0.16699219,-0.25585938,-0.071777344,0.18847656,0.15136719,-0.21484375,0.056396484,-0.18261719,-0.083984375,-0.095214844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13574219,-0.10986328,-0.08496094,0.10839844,-0.008972168,0.18457031,0.053222656,0.0067749023,0.013000488,0.00024604797,0.011230469,0.063964844,0.0059509277,-0.046142578,-0.06591797,-0.030029297,-0.12792969,0.080078125,-0.16699219,-0.3125,-0.020385742,0.020874023,-0.14941406,0.1640625,-0.09277344,0.080078125,0.0028839111,-0.01550293,-0.19628906,-0.16796875,-0.08544922,0.18945312,-0.12597656,0.23046875,-0.29492188,0.111816406,-0.13085938,-0.02355957,-0.09814453,-0.2890625,-0.040527344,0.0027618408,-0.18554688,-0.08203125,-0.13867188,-0.22070312,0.07128906,0.12890625,-0.07910156,0.14550781,-0.07421875,-0.08886719,-0.1953125,0.08984375,-0.035888672,-0.15625,-0.053222656,-0.05834961,-0.14160156,-0.1484375,-0.064941406,-0.12695312,-0.04272461,-0.10595703,-0.107910156,0.22851562,-0.020751953,-0.12597656,-0.15136719,0.055419922,-0.08496094,-0.24804688,-0.025512695,-0.1484375,0.059326172,-0.15527344,0.032958984,-0.018920898,-0.15722656,-0.14160156,-0.079589844,-0.026855469,-0.17285156,-0.07763672,0.07080078,0.004486084,0.012390137,0.07421875,0.029541016,0.1015625,-0.14160156,-0.055908203,0.104003906,-0.08544922,0.072265625,-0.14257812,-0.07763672,-0.19921875,0.047851562,-0.09814453,-0.057617188,-0.12695312,-0.07763672,0.099121094,-0.009765625,0.14550781,-0.028442383,-0.123535156,-0.14941406,0.05419922,0.17578125,0.044433594,-0.12988281,-0.05859375,-0.053222656,0.048583984,-0.09472656,-0.12988281,0.17285156,0.055419922,-0.016357422,-0.055419922,-0.029541016,-0.030151367,-0.11621094,-0.119628906,0.15136719,-0.13183594,-0.06689453,0.18847656,-0.19824219,-0.046142578,0.028076172,0.18457031,0.014221191,-0.09033203,0.083496094,-0.030883789,0.13867188,0.036132812,0.010131836,-0.01953125,0.04736328,-0.21484375,-0.030151367,0.24609375,-0.005279541,0.029663086,0.015319824,-0.018432617,0.10888672,-0.09082031,0.010009766,-0.10058594,-0.020141602,0.026367188,0.080078125,-0.041748047,-0.087402344,0.033203125,0.0015640259,-0.10644531,0.005706787,0.053955078,-0.0024719238,0.07714844,0.11279297,0.08886719,0.05102539,0.032470703,-0.037353516,-0.16699219,0.01586914,0.09423828,-0.00018501282,-0.15429688,-0.12695312,0.013122559,-0.14355469,-0.13964844,-0.05810547,-0.24511719,-0.22558594,0.16113281,0.080078125,0.060302734,0.13574219,0.03857422,0.017089844,-0.030883789,0.13671875,-0.08984375,-0.24902344,-0.009155273,-0.14941406,0.052978516,0.0009841919,0.022705078,-0.265625,0.15136719,0.08691406,0.13769531,-0.07324219,0.010314941,0.111816406,-0.01159668,-0.04638672,-0.23632812,0.15136719,-0.15820312,-0.08984375,0.008544922,0.04272461,-0.15136719,0.087402344,-0.005859375,0.033203125,0.11328125,-5.8174133e-05,0.2578125,0.092285156,-0.13867188,-0.14160156,0.021118164,0.053710938,-0.026367188,-0.083496094,0.076660156,0.12451172,0.1484375,-0.07519531,-0.21972656,0.07861328,-0.08642578,-0.14746094,0.15917969,0.087402344,-0.084472656,-0.03466797,0.068847656,0.030639648,0.106933594,0.01940918,0.05834961,0.011169434,-0.17773438,-0.19433594,-0.026611328,-0.06933594,0.14550781,-0.17675781,-0.057373047,0.08203125,-0.012573242,-0.16308594,-0.15234375,-0.041992188,0.13183594,-0.2265625,-0.061279297,-0.09716797,-0.053955078,-0.05493164,0.18359375,-0.099609375,-0.16699219,0.08544922,0.15820312,0.118652344,0.14648438,-0.012023926,-0.10546875,-0.13574219,-0.055419922,-0.24804688,0.05908203,-0.08984375,-0.04638672,-0.13867188,0.171875,0.049316406,-0.095214844,0.060302734,0.13671875,0.055664062,0.119628906,-0.026977539,-0.23925781,0.2578125,-0.119628906,-0.10888672,-0.05419922,-0.045898438,-0.041992188,-0.022094727,-0.03857422,0.099121094,0.012145996,0.014831543,0.05102539,-0.118652344,-0.11767578,-0.1640625,-0.0859375,0.15917969,0.060546875,0.16015625,0.115234375,0.26953125,-0.15136719,0.10595703,0.019042969,0.05908203,-0.087890625,-0.06225586,-0.0064697266,-0.03173828,0.2578125,-0.06201172,-0.08544922,-0.29882812,-0.16210938,0.14257812,-0.0072021484,-0.17285156,0.032958984,0.09375,-0.26757812,-0.030761719,-0.07910156,-0.09716797,0.119140625,0.016235352,-0.14550781,-0.18164062,0.024902344,0.07910156,-0.03100586,-0.06591797,0.19140625,-0.024291992,0.032958984,-0.15332031,-0.115234375,0.088378906,0.014770508,-0.029296875,0.007232666,0.06689453,-0.064453125,-0.24023438,-0.17285156,-0.059326172,-0.17773438,-0.024536133,0.048828125,0.067871094,0.107910156,-0.103515625,0.056152344,0.04638672,0.17773438,0.10546875,-0.10449219,0.056396484,-0.037353516,0.18945312,-0.044189453,0.15332031,0.0014343262,-0.14453125,0.018432617,-0.015319824,0.021850586,0.041503906,-0.09423828,0.07861328,0.11230469,0.119628906,-0.084472656,0.051757812,-0.19921875,-0.029174805,0.04736328,0.061523438,-0.03881836,-0.026489258,-0.06689453,0.076660156,-0.03491211,0.16992188,-0.37109375,0.037109375,0.01184082,-0.11376953,-0.08691406,-0.10205078,-0.007537842,0.0050964355,-0.006713867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16113281,-0.0014648438,0.20019531,-0.13378906,0.03173828,-0.026611328,-0.10839844,0.22949219,-0.055419922,0.0046081543,0.22363281,0.05810547,-0.051513672,-0.029174805,-0.13476562,-0.13085938,-0.12890625,-0.09277344,-0.0154418945,-0.011230469,-0.072753906,-0.018676758,0.22753906,0.11767578,0.083496094,-0.0046691895,-0.013549805,-0.025512695,0.107910156,0.10839844,0.02734375,-0.22167969,0.091796875,0.032470703,0.014953613,-0.01965332,0.011230469,-0.099609375,-0.33203125,0.061767578,-0.014343262,-0.11035156,-0.10986328,-0.13964844,0.012634277,0.03881836,-0.15039062,-0.36523438,0.02709961,0.10839844,-0.06347656,0.037353516,0.01550293,-0.2578125,0.099121094,0.015380859,0.027954102,-0.171875,0.12011719,-0.08642578,0.060546875,0.06738281,-0.17773438,-0.18945312,0.072753906,-0.30273438,0.091308594,0.19628906,-0.18847656,0.20996094,0.12792969,0.0119018555,-0.07910156,0.026000977,-0.06298828,-0.078125,0.015014648,-0.15039062,0.08886719,-0.08105469,-0.1953125,0.13476562,0.061767578,-0.19824219,0.005706787,0.12207031,-0.11816406,0.037597656,-0.02758789,0.140625,-0.06933594,0.045410156,0.016845703,-0.18066406,-0.21679688,0.23535156,-0.19335938,-0.14648438,-0.055908203,-0.11816406,0.07373047,-0.029052734,-0.005493164,0.08496094,0.076660156,-0.08203125,0.016357422,6.2942505e-05,-0.092285156,-0.024902344,-0.15820312,-0.00020122528,-0.0023956299,0.092285156,0.15722656,-0.0095825195,0.06982422,0.13183594,0.05908203,0.020996094,0.037109375,0.028686523,-0.06591797,0.14746094,-0.04296875,0.084472656,-0.06640625,0.022583008,-0.31054688,0.056152344,-0.045654297,-0.07861328,0.09667969,-0.034179688,-0.12890625,-0.06738281,0.06640625,0.008483887,0.022583008,-0.087402344,0.029785156,0.18164062,-0.018310547,0.119628906,-0.034423828,0.053710938,0.06591797,-0.032714844,0.01574707,-0.061279297,-0.083496094,-0.21191406,0.087890625,-0.016113281,0.14746094,-0.031982422,-0.071777344,-0.06933594,0.076171875,0.050048828,0.15722656,-0.17578125,0.11376953,-0.13867188,-0.088378906,-0.034423828,-0.025756836,-0.004058838,0.15625,-0.047851562,-0.0043029785,-0.115722656,0.0037078857,-0.02722168,0.10107422,0.13476562,-0.13476562,0.08154297,-0.08935547,-0.1171875,0.15917969,0.20996094,0.12988281,-0.00088882446,-0.087890625,-0.08544922,0.044921875,0.16503906,0.029052734,0.021362305,0.027709961,-0.10888672,-0.08203125,0.063964844,-0.15527344,0.011474609,0.15332031,0.2265625,0.107421875,0.001411438,-0.01574707,-0.07861328,0.026367188,-0.01977539,-0.16894531,0.018920898,-0.09082031,-0.09033203,-0.19628906,-0.067871094,-0.16503906,-0.0031738281,-0.034179688,-0.07128906,0.13867188,0.015197754,0.12597656,0.042236328,0.063964844,0.010620117,0.052978516,-0.16699219,0.19140625,0.052001953,-0.018798828,0.14257812,0.10546875,-0.072265625,-0.16601562,-0.008972168,0.06298828,0.028198242,-0.06933594,0.13476562,-0.04711914,0.056152344,-0.22753906,0.03125,0.06933594,0.17773438,0.18164062,0.04736328,-0.07861328,0.09814453,0.03857422,-0.17089844,0.028198242,-0.1015625,0.041259766,-0.03564453,-0.08203125,-0.039794922,0.103515625,-0.010620117,-0.0019073486,0.1640625,0.021484375,-0.03564453,-0.24414062,0.022216797,-0.13085938,-0.022827148,0.12060547,0.100097656,0.099609375,-0.125,-0.091308594,0.18652344,-0.07910156,-0.20410156,-0.10888672,0.057861328,0.049072266,-0.16503906,-0.18554688,0.033935547,-0.23339844,-0.0005378723,-0.104003906,0.052734375,0.1171875,-0.07763672,-0.18261719,0.1796875,0.048095703,-0.05419922,0.005706787,0.028442383,-0.033447266,0.076660156,-0.12988281,0.27539062,-0.1484375,0.05029297,0.13574219,0.00793457,0.06689453,-0.06689453,-0.14648438,0.030761719,0.040527344,-0.043945312,0.06933594,0.05493164,-0.11425781,0.061035156,-0.13378906,-0.052490234,-0.103027344,0.115234375,0.06640625,0.02368164,0.07080078,0.099609375,-0.12011719,0.09814453,-0.035888672,-0.18554688,0.08105469,0.07470703,0.045410156,0.0037994385,-0.07080078,0.16113281,0.23144531,0.2109375,0.049072266,-0.032958984,0.100097656,-0.034423828,-0.13183594,0.16015625,0.023925781,0.19238281,0.0115356445,0.0703125,-0.053222656,-0.032470703,-0.25195312,0.055908203,0.13964844,0.099121094,-0.033447266,-0.10449219,0.06640625,-0.095214844,-0.106933594,0.106933594,0.10449219,-0.08203125,0.03930664,0.16796875,-0.0061035156,-0.1484375,-0.09423828,0.22851562,0.13671875,-0.1015625,0.067871094,0.05102539,-0.025146484,-0.14160156,0.016845703,0.07080078,0.045654297,0.171875,0.12451172,0.17871094,-0.09472656,0.024902344,-0.049560547,0.20507812,0.08984375,0.111816406,0.037353516,0.18164062,-0.04345703,0.012573242,-0.09375,0.12792969,0.027954102,0.14648438,0.052001953,0.038085938,-0.039794922,-0.07373047,-0.13671875,-0.080078125,0.10595703,-0.14648438,-0.0020599365,-0.092285156,0.032958984,0.037353516,-0.014465332,0.08642578,0.13574219,0.04711914,0.057128906,0.106933594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12988281,0.12597656,-0.114746094,0.24902344,0.10498047,0.10205078,0.16601562,0.026245117,0.040039062,0.0048828125,0.10986328,-0.17675781,0.107421875,0.10595703,-0.023925781,0.038085938,-0.2734375,0.026367188,0.15527344,0.21679688,0.036865234,0.12695312,0.10498047,-0.11376953,-0.041992188,-0.030273438,-0.038330078,0.025024414,0.026245117,0.16601562,-0.13671875,0.088378906,-0.18066406,-0.09472656,0.07470703,0.110839844,-0.02368164,-0.020751953,-0.12695312,-0.107910156,0.008422852,-0.049316406,-0.15527344,0.10546875,0.08300781,-0.007507324,-0.06347656,0.10205078,-0.18066406,0.15332031,0.084472656,0.08300781,0.17773438,0.15136719,0.12597656,0.055664062,0.03112793,0.15136719,0.018676758,0.15136719,0.035888672,0.12011719,-0.06298828,0.08984375,-0.111328125,0.10107422,0.06640625,0.044921875,0.036621094,-0.12109375,-0.29882812,0.265625,0.013427734,-0.06933594,-0.056396484,0.19140625,-0.02355957,0.0625,0.07080078,0.16015625,-0.03564453,0.03930664,-0.072753906,-0.0041503906,-0.068847656,-0.08154297,0.12109375,0.14257812,0.09033203,-0.012817383,0.056396484,0.03881836,0.20410156,0.15625,-0.12597656,-0.002670288,-0.123046875,0.03930664,0.03491211,0.03955078,0.11669922,-0.07324219,-0.07519531,0.050048828,0.049072266,-0.020996094,-0.03881836,0.09716797,0.041259766,0.13769531,0.053466797,-0.031982422,-0.04272461,-0.04272461,-0.01373291,0.091796875,0.0546875,-0.020629883,-0.06225586,-0.118652344,0.048339844,0.0703125,0.123535156,0.09863281,-0.028930664,0.2890625,0.020385742,0.044189453,-0.087890625,-0.060058594,0.15527344,-0.1328125,0.25585938,-0.17773438,0.020874023,0.19921875,0.016357422,-0.08300781,0.092285156,-0.049560547,-0.076660156,0.11279297,-0.15917969,-0.14550781,-0.14648438,-0.10107422,0.08496094,-0.22753906,-0.013916016,-0.09814453,-0.28125,-0.080078125,-0.14160156,-0.048583984,0.12207031,0.20898438,-0.06201172,0.017822266,-0.12402344,-0.061523438,0.010864258,0.012878418,-0.014221191,0.0032196045,0.008300781,0.033935547,-0.083496094,0.19921875,-0.030029297,-0.029052734,0.024414062,-0.079589844,0.13476562,-0.072753906,-0.06201172,-0.15527344,0.099121094,0.014282227,0.0032043457,-0.14550781,-0.057128906,7.05719e-05,-0.09326172,0.20703125,-0.043701172,-0.12402344,-0.06347656,0.02709961,-0.1484375,-0.15820312,-0.057373047,0.119628906,-0.028198242,-0.14941406,-0.0154418945,-0.25585938,-0.099121094,-0.296875,-0.016967773,-0.12890625,0.034179688,-0.140625,0.011291504,0.061279297,0.0061950684,0.19628906,-0.03564453,-0.037353516,0.030761719,-0.03564453,-0.03564453,-0.075683594,-0.103515625,-0.0068969727,-0.040527344,-0.15917969,0.016845703,-0.1640625,0.103027344,-0.08544922,-0.04345703,0.119628906,-0.13574219,0.07324219,-0.19824219,-0.14648438,0.0055236816,-0.109375,0.080078125,0.23828125,-0.03564453,-0.052978516,-0.03857422,-0.13867188,-0.057617188,-0.024658203,-0.21386719,0.03955078,-0.09033203,-0.011413574,0.11376953,0.25390625,-0.020019531,0.040039062,0.039794922,-0.012878418,-0.18164062,0.14746094,0.15234375,0.019042969,-0.13085938,-0.0005912781,-0.018920898,0.23242188,-0.068359375,-0.011108398,0.014160156,0.04272461,0.040771484,-0.15527344,0.10449219,-0.06298828,0.0011520386,0.06933594,0.03173828,-0.20214844,0.059326172,-0.36523438,-0.12011719,-0.064453125,-0.055419922,-0.033203125,0.15917969,-0.21972656,-0.118652344,-0.2421875,0.14746094,0.0107421875,0.087890625,-0.11328125,0.06347656,-0.38671875,-0.25390625,-0.08300781,-0.11230469,0.023925781,-0.16308594,-0.068359375,-0.021728516,0.076660156,0.010681152,0.07714844,0.033691406,-0.1875,0.08984375,-0.15136719,-0.067871094,-0.16308594,0.28320312,0.057128906,-0.118652344,0.25976562,-0.16894531,0.0026855469,-0.37890625,0.064941406,0.07519531,-0.2421875,0.12597656,0.0390625,0.060791016,-0.3046875,-0.05883789,-0.04296875,0.083984375,-0.017700195,-0.18847656,0.13574219,0.19726562,0.06982422,-0.05053711,0.11230469,0.051757812,0.032470703,0.103515625,0.19628906,-0.018066406,0.045898438,0.067871094,0.14160156,-0.106933594,0.05517578,-0.16503906,0.009460449,-0.07080078,-0.033691406,-0.11621094,-0.021728516,-0.14453125,-0.02758789,-0.09423828,0.100097656,-0.08984375,-0.109375,-0.05810547,-0.091796875,0.10107422,0.12158203,-0.18261719,-0.119628906,-0.2109375,-0.20800781,-0.07714844,-0.078125,-0.12695312,0.0018310547,0.012207031,0.00059890747,-0.09472656,0.0074768066,0.0006828308,-0.026733398,0.13671875,0.063964844,0.022949219,-0.0060424805,-0.25195312,-0.0040893555,0.016845703,0.036376953,-0.16796875,0.03173828,-0.02355957,0.2734375,0.13085938,-0.28125,-0.09472656,-0.140625,0.016845703,0.07470703,-0.16308594,-0.044921875,0.002029419,-0.10107422,-0.016479492,-0.024902344,0.024658203,-0.24707031,0.10546875,0.053222656,0.027954102,0.071777344,-0.08544922,0.002105713,0.087402344,0.11669922,-0.052246094,0.41992188,0.08886719,0.27539062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.17480469,-0.0068969727,-0.017089844,-0.16308594,0.20507812,-0.03515625,-0.4140625,-0.013305664,0.0036621094,-0.041503906,0.022583008,0.007080078,-0.15234375,-0.048339844,-0.0859375,0.05883789,0.14550781,0.0067749023,-0.0390625,-0.10595703,-0.028076172,-0.07714844,0.052001953,-0.0011901855,0.024658203,0.15722656,-0.041992188,0.016967773,0.03881836,-0.053710938,0.14746094,0.17675781,0.31640625,0.15234375,-0.14550781,0.21972656,0.10644531,-0.14941406,-0.052246094,-0.107910156,-0.061767578,-0.010131836,-0.19335938,-0.026977539,0.028808594,0.01550293,0.103027344,0.084472656,-0.078125,0.01965332,-0.10107422,-0.05883789,-0.012512207,0.25585938,0.11328125,-0.051513672,-0.0030670166,0.111328125,0.033691406,0.09375,-0.071777344,0.088378906,0.016357422,-0.15039062,-0.13183594,-0.18652344,-0.024536133,-0.021728516,0.23925781,-0.10644531,-0.22460938,0.030151367,-0.0119018555,0.040527344,0.13964844,-0.2578125,0.05419922,0.24316406,-0.056640625,-0.43554688,-0.046875,0.123535156,-0.061279297,-0.115234375,0.16992188,-0.076171875,0.033203125,-0.17871094,-0.08935547,0.04272461,-0.107910156,-0.06738281,-0.092285156,-0.10546875,0.17871094,0.10107422,0.024169922,0.18457031,-0.021240234,-0.15917969,0.12890625,0.24902344,0.07763672,0.052490234,0.08203125,0.092285156,-0.008544922,0.018310547,-0.07714844,-0.07470703,0.06591797,0.07373047,-0.21972656,0.039794922,-0.076660156,0.13574219,0.013366699,-0.044677734,0.061035156,-0.0703125,0.06689453,-0.18164062,0.044677734,-0.11425781,0.087402344,0.052246094,-0.076171875,0.0023040771,-0.08154297,-0.27734375,0.019165039,-0.035888672,0.10595703,0.011962891,0.068359375,-0.0013427734,-0.046875,-0.16992188,0.07519531,-0.09375,0.06591797,-0.03955078,-0.029296875,0.017211914,0.18457031,-0.16699219,-0.11035156,-0.06640625,0.2890625,0.10449219,0.088378906,-0.14550781,0.10888672,0.0050964355,0.03564453,-0.030761719,0.1328125,0.018066406,0.27929688,-0.05053711,0.023925781,0.023071289,0.14453125,0.10546875,-0.13378906,0.052490234,-0.10888672,-0.19238281,-0.083496094,-0.040283203,0.107421875,-0.088378906,-0.099121094,0.087890625,-0.033691406,-0.019042969,0.19140625,0.08886719,0.021240234,-0.1484375,-0.05859375,0.021728516,-0.012878418,0.13671875,0.068847656,0.0023498535,-0.119140625,-0.15039062,0.05908203,-0.031982422,0.14453125,0.114746094,-0.13378906,-0.06225586,0.08691406,-0.055664062,-0.29101562,0.20019531,-0.19042969,0.076171875,-0.041259766,-0.06542969,-0.011047363,-0.12597656,0.1484375,0.23046875,0.13183594,0.002670288,0.14257812,0.11279297,0.13183594,-0.111816406,-0.07861328,0.13378906,-0.17089844,-0.0065307617,-0.13183594,-0.05078125,-0.10595703,0.044189453,-0.11035156,0.06298828,0.14160156,0.09765625,0.122558594,0.27539062,-0.09277344,-0.23144531,0.028076172,0.060058594,0.053955078,0.013122559,-0.055419922,0.027832031,-0.06933594,0.26367188,0.096191406,-0.06982422,-0.096191406,0.026245117,-0.10546875,0.10839844,0.078125,0.0041503906,-0.044677734,0.18652344,-0.119140625,-0.19238281,0.057617188,-0.04248047,0.15722656,-0.06933594,-0.07763672,-0.08935547,-0.12597656,-0.033203125,0.02758789,0.10205078,0.080078125,0.007873535,-0.08886719,0.028198242,0.017456055,0.001045227,0.010009766,-0.07519531,0.15136719,-0.18359375,-0.09667969,-0.027954102,0.14160156,-0.026489258,0.022583008,0.18066406,0.008361816,-0.08984375,0.026977539,-0.12597656,-0.02319336,0.13476562,0.06933594,-0.06542969,0.095703125,-0.06298828,0.15820312,0.03881836,-0.13964844,0.04711914,0.05053711,0.06347656,-0.007873535,-0.049072266,0.11230469,0.05053711,-0.014709473,0.11767578,0.08935547,0.05419922,0.05102539,0.10253906,0.045654297,0.12402344,0.11767578,0.12207031,-0.18847656,0.036376953,-0.021118164,-0.1640625,0.047851562,-0.08203125,-0.05078125,0.033203125,-0.0703125,0.028564453,-0.02709961,-0.20996094,0.08886719,-0.16308594,-0.12060547,-0.0039978027,-0.052978516,-0.22558594,-0.049072266,-0.16699219,0.12695312,0.12060547,0.11425781,-0.15429688,-0.100097656,0.01574707,-0.0390625,-0.09863281,-0.15136719,-0.18945312,-0.15234375,-0.016479492,0.025878906,-0.06933594,-0.07080078,0.061035156,0.061767578,0.19335938,0.07470703,0.048339844,0.0067749023,-0.14941406,-0.12011719,0.012084961,-0.10546875,-0.125,-0.13476562,-0.15820312,0.08203125,-0.39257812,0.096191406,-0.076171875,0.26171875,0.15136719,0.091796875,0.32226562,-0.09375,-0.095214844,-0.057861328,0.00050735474,0.15332031,0.103027344,-0.13476562,-0.14550781,0.03491211,-0.14746094,0.0625,-0.1953125,0.11816406,0.12890625,0.30078125,0.21679688,-0.064941406,-0.09667969,0.08886719,-0.061035156,-0.037841797,0.08984375,-0.07714844,-0.2109375,-0.27929688,-0.047607422,0.015991211,-0.27734375,0.12402344,-0.11669922,0.047607422,0.106933594,0.057861328,-0.16992188,-0.03173828,-0.29882812,-0.09277344,-0.23242188,0.091796875,-0.09277344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.021850586,0.0013122559,-0.07080078,-0.18066406,0.079589844,0.21484375,-0.0049743652,-0.008422852,0.080566406,-0.025756836,0.13183594,-0.015991211,0.091308594,0.12695312,-0.15722656,-0.06738281,-0.03515625,-0.016113281,0.15917969,-0.016479492,0.06689453,0.12597656,0.076171875,-0.22167969,-0.080566406,0.06201172,0.23730469,0.072265625,0.072265625,-0.22558594,0.0009651184,0.06298828,-0.1328125,0.016113281,0.017333984,0.017333984,0.15234375,0.05834961,0.19042969,0.052978516,-0.09765625,0.24316406,-0.0625,0.19726562,0.045898438,0.064453125,0.12792969,0.140625,0.111816406,0.13964844,-0.053710938,0.09082031,0.08642578,-0.109375,0.21777344,-0.030639648,0.037597656,0.16601562,-0.095703125,-0.044433594,0.061279297,-0.068359375,-0.044921875,0.06347656,0.075683594,0.07373047,-0.03491211,-0.11230469,0.106933594,-0.17773438,0.15429688,0.030273438,0.06933594,-0.013122559,0.13085938,-0.26757812,-0.06542969,0.03466797,-0.035888672,-0.22949219,-0.044677734,-0.08105469,-0.080566406,-0.25390625,0.021240234,0.114746094,0.015075684,-0.2109375,-0.0054626465,0.020019531,0.012512207,-0.072265625,0.080566406,-0.0138549805,-0.0134887695,0.028686523,-0.16015625,-0.12597656,0.06982422,-0.13671875,-0.15136719,0.04736328,0.00579834,-0.18261719,0.025024414,0.020751953,-0.21777344,-0.0015106201,0.063964844,0.19042969,-0.014831543,0.099121094,0.020385742,-0.041992188,-0.030151367,-0.030761719,-0.010498047,-0.11816406,0.063964844,-0.009765625,-0.008483887,-0.048339844,0.140625,-0.14355469,-0.030151367,-0.092285156,-0.06225586,0.10839844,0.21582031,-0.013671875,-0.16015625,0.15820312,-0.04321289,-0.10546875,0.11425781,-0.08105469,0.05102539,0.12207031,0.024536133,-0.27929688,0.19238281,0.10986328,-0.26171875,-0.026367188,0.115722656,-0.048095703,-0.08105469,-0.022094727,-0.08935547,0.034423828,0.26367188,-0.076660156,-0.123535156,-0.17480469,-0.038085938,-0.14453125,0.03930664,-0.072753906,-0.076660156,-0.13769531,-0.18554688,-0.04248047,0.009094238,-0.13769531,-0.031982422,0.29101562,-0.037353516,-0.26367188,-0.049072266,0.0032806396,0.015319824,-0.20605469,-0.11035156,-0.068847656,0.18261719,0.037841797,-0.17578125,-0.13085938,0.047607422,-0.109375,-0.16796875,-0.017944336,-0.06982422,-0.11035156,0.040283203,-0.171875,-0.16894531,0.05053711,-0.10253906,0.029785156,-0.053466797,-0.12792969,-0.014160156,0.119140625,-0.026000977,-0.016723633,0.015075684,0.072265625,0.033203125,0.095703125,0.016845703,-0.11230469,0.061523438,-0.20507812,-0.06201172,-0.12011719,-0.12890625,0.006286621,0.08251953,0.15722656,-0.045410156,0.21484375,-0.03857422,0.100097656,-0.0039978027,0.023803711,0.064941406,0.09375,0.057128906,-0.23535156,0.17578125,0.021240234,0.026000977,-0.15039062,-0.041992188,0.122558594,0.013977051,0.029418945,0.056152344,0.032714844,0.045654297,-0.036132812,0.040039062,-0.11376953,-0.03112793,-0.1484375,0.12988281,-0.048095703,-0.044677734,-0.17480469,-0.13769531,0.1640625,-0.046875,-0.04272461,0.08886719,0.035888672,0.010559082,0.0079956055,-0.0079956055,-0.06738281,0.06347656,0.06347656,0.025268555,0.119628906,-0.072265625,-0.18359375,-0.024169922,0.14355469,-0.15039062,-0.036376953,0.16601562,-0.12988281,-0.010681152,0.018554688,0.025756836,0.015991211,0.017578125,-0.15820312,-0.07080078,0.15722656,-0.045654297,-0.15917969,-0.06640625,0.05810547,-0.09277344,-0.037841797,0.16015625,-0.022827148,0.09472656,0.057617188,-0.055908203,0.12988281,-0.013793945,-0.109375,-0.12109375,-0.15917969,-0.03149414,-0.13378906,-0.0056762695,-0.15136719,-0.091796875,0.04638672,0.022338867,0.20507812,-0.110839844,-0.06738281,0.09033203,0.057861328,0.02746582,-0.16699219,-0.111328125,-0.033447266,0.01940918,-0.2578125,-0.06225586,-0.13769531,0.07519531,-0.008972168,-0.1796875,0.100097656,0.072265625,-0.15136719,-0.10107422,-0.076660156,0.029418945,-0.19921875,0.034179688,-0.052978516,-0.05810547,-0.002105713,-0.044677734,0.022460938,0.13378906,-0.15527344,0.14257812,0.1640625,0.06689453,-0.13085938,-0.046875,-0.111328125,0.13378906,0.12060547,-0.021362305,0.04272461,0.05029297,-0.05053711,-0.049316406,0.01940918,0.075683594,-0.038085938,0.083496094,-0.09765625,0.07080078,-0.15039062,-0.09326172,0.056396484,0.13867188,-0.041503906,-0.040771484,-0.010620117,-0.13378906,-0.22265625,-0.07910156,-0.036865234,-0.14453125,-0.087402344,0.1328125,0.09863281,0.0019683838,-0.023071289,-0.025390625,-0.076171875,-0.030395508,-0.1015625,-0.00793457,0.24414062,0.013977051,-0.059570312,-0.092285156,0.0058288574,0.05053711,-0.16210938,0.0074768066,0.07421875,0.19140625,0.123046875,-0.032226562,0.060302734,0.15722656,0.006134033,-0.071777344,0.15234375,0.083984375,-0.09765625,-0.15332031,-0.06640625,0.07470703,-0.10205078,-0.11816406,-0.092285156,-0.06542969,-0.115722656,-0.042236328,-0.063964844,0.08544922,-0.16308594,-0.055908203,-0.10546875,-0.022949219,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05102539,-0.028564453,0.020629883,-0.05834961,0.09472656,-0.095214844,-0.390625,0.115234375,-0.011108398,0.009338379,-0.21777344,0.059570312,-0.19824219,0.15527344,0.24511719,-0.11376953,0.17578125,0.19140625,0.015075684,0.022460938,-0.20898438,0.012329102,0.087890625,0.014892578,-0.013244629,0.025268555,-0.20605469,0.09082031,-0.13964844,-0.16113281,-0.21484375,0.19628906,0.040771484,0.0069274902,-0.016479492,-0.004058838,-0.48632812,0.20605469,0.107910156,0.09375,-0.16894531,-0.05444336,0.033935547,-0.095214844,-0.15527344,-0.02368164,-0.06201172,0.10205078,-0.05493164,-0.17871094,0.07128906,0.06640625,-0.30078125,-0.30273438,0.16699219,0.12890625,-0.17285156,0.091308594,0.026000977,0.052734375,-0.11816406,0.203125,-0.1484375,-0.34375,0.095214844,-0.111816406,-0.23144531,0.24511719,-0.45507812,-0.21582031,-0.027954102,0.03149414,-0.27148438,-0.033691406,0.052001953,-0.083984375,0.12451172,0.16699219,0.013000488,-0.006439209,-0.1328125,0.13574219,0.032470703,0.0154418945,0.03466797,0.08496094,-0.03112793,0.08691406,-0.09814453,0.010925293,-0.0703125,0.06640625,0.0040893555,0.09765625,-0.01159668,-0.23242188,0.080566406,0.01159668,-0.075683594,0.095703125,-0.22558594,0.0045166016,-0.18945312,0.072753906,0.064453125,0.045654297,-0.017700195,0.087402344,-0.076660156,-0.022460938,-0.14160156,0.059814453,0.09863281,-0.17089844,0.13867188,-0.012390137,-0.16210938,0.22851562,-0.032714844,0.10888672,-0.10546875,0.17285156,0.056884766,0.08105469,0.16015625,0.10498047,0.17382812,-0.083496094,-0.26171875,0.0006980896,0.00982666,0.043701172,-0.11035156,-0.17382812,-0.024169922,0.13476562,0.072753906,0.1328125,0.24316406,0.1875,0.106933594,0.052978516,-0.0066223145,-0.21386719,0.06591797,-0.025512695,0.048828125,0.017700195,0.092285156,-0.08935547,-0.107910156,0.028564453,0.13574219,-0.09326172,-0.22363281,-0.096191406,0.07470703,0.024536133,-0.119140625,-0.13476562,-0.30664062,0.048095703,0.080566406,-0.048828125,0.1015625,-0.029418945,-0.07373047,0.010437012,-0.24511719,-0.122558594,-0.039794922,0.029907227,-0.06347656,0.022705078,0.16503906,-0.15136719,0.010009766,0.17675781,0.067871094,0.12988281,0.048095703,0.26757812,-0.14648438,-0.048583984,-0.19433594,-0.13769531,-0.33984375,-0.09082031,-0.036376953,0.11669922,0.15527344,0.23730469,-0.09863281,0.122558594,0.12988281,0.049072266,-0.15820312,-0.025024414,-0.060546875,0.11816406,-0.068359375,-0.0066223145,-0.16992188,-0.0002708435,0.12695312,0.13867188,0.017211914,0.021484375,-0.092285156,-0.1484375,-0.10595703,0.15429688,-0.1484375,0.13867188,0.026000977,0.06298828,-0.13964844,0.123046875,0.080566406,-0.04663086,0.041503906,-0.08300781,-0.1796875,-0.07421875,0.03515625,-0.23730469,-0.087402344,0.088378906,0.13378906,0.05444336,-0.26367188,0.10058594,-0.08496094,-0.15820312,-0.1328125,-0.084472656,0.049072266,-0.14160156,-0.1640625,-0.20996094,-0.029663086,-0.20117188,0.0063171387,-0.22753906,0.016479492,0.22949219,0.029541016,-0.09667969,-0.013977051,-0.37109375,0.025146484,0.09765625,-0.08154297,0.13867188,0.061767578,-0.25195312,-0.16015625,-0.18164062,-0.01574707,0.11035156,0.036865234,0.061523438,0.052734375,0.020263672,-0.014221191,-0.104003906,0.01184082,-0.09326172,0.0021820068,-0.009277344,-0.16601562,-0.021484375,-0.064941406,-0.107421875,-0.14648438,-0.00680542,-0.1171875,-0.099609375,-0.076660156,0.17285156,-0.20507812,-0.006500244,-0.23730469,0.0051879883,0.036621094,0.028442383,0.28710938,0.064453125,-0.23242188,-0.11376953,0.0027923584,-0.05810547,-0.0035095215,0.16015625,-0.056884766,0.0154418945,-0.052001953,-0.057128906,-0.13964844,-0.011291504,-0.12890625,-0.16601562,0.18554688,-0.07324219,0.15136719,-0.18847656,0.040283203,0.1484375,-0.13867188,-0.10839844,-0.115722656,0.056640625,-0.17871094,-0.19824219,0.033203125,0.0015487671,0.0016326904,-0.048095703,-0.08496094,0.13574219,0.059326172,0.006439209,-0.027709961,-0.328125,0.34375,0.007873535,-0.057617188,0.15136719,-0.064941406,-0.27539062,-0.10839844,0.10107422,-0.07324219,-0.17871094,-0.14746094,-0.30664062,0.003967285,-0.33007812,0.016845703,0.027832031,0.033691406,0.0014343262,-0.18457031,0.009094238,0.1875,-0.099121094,-0.041748047,-0.06640625,-0.03881836,-0.12890625,0.109375,0.0077819824,-0.009765625,-0.04296875,-0.20214844,-0.021850586,-0.19238281,0.00020599365,0.21972656,0.16113281,-0.14257812,-0.09375,0.18066406,-0.08984375,0.15625,-0.22753906,0.078125,0.111816406,0.03930664,-0.042236328,-0.234375,0.08642578,0.039794922,0.08105469,0.06982422,-0.106933594,-0.03125,-0.13476562,0.04296875,-0.08105469,0.0030212402,0.028564453,0.084472656,-0.041503906,-0.047851562,0.19238281,-0.12158203,0.16015625,0.018432617,0.25,0.09863281,-0.048095703,-0.07763672,-0.28320312,0.037597656,-0.3046875,0.119628906,-0.13867188,0.052978516,-0.15429688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.14941406,0.13183594,-0.3828125,0.025146484,-0.024291992,0.31640625,0.10644531,-0.36914062,0.03491211,-0.060058594,0.044189453,-0.22460938,0.12792969,0.0050354004,-0.006958008,0.035888672,-0.011474609,-0.064453125,-0.11669922,-0.123046875,0.017944336,-0.1953125,0.20214844,0.007080078,0.033447266,-0.14160156,0.045898438,-0.06738281,0.08203125,0.05493164,-0.0703125,0.10839844,-0.04711914,-0.34179688,-0.18945312,0.038085938,-0.1015625,0.20898438,0.076660156,-0.0008583069,0.072753906,-0.13476562,0.13964844,-0.23046875,0.0625,0.0071411133,-0.09814453,0.05029297,0.20214844,0.032470703,-0.06298828,-0.203125,0.14257812,-0.022460938,-0.01965332,0.037109375,-0.053710938,-0.068847656,-0.092285156,-0.16894531,-0.20214844,-0.04321289,-0.06347656,0.0087890625,-0.07763672,-0.06982422,-0.11328125,-0.1328125,0.0061950684,0.053466797,-0.1953125,-0.21679688,0.03112793,0.041503906,0.10449219,0.28515625,-0.13085938,0.007171631,-0.063964844,0.056884766,-0.038330078,-0.041992188,-0.265625,0.018798828,0.027954102,0.15234375,0.110839844,-0.051513672,-0.023803711,-0.012817383,0.17480469,0.053222656,0.14648438,-0.0546875,0.068847656,-0.047851562,-0.076660156,0.09863281,-0.10107422,-0.07714844,-0.080566406,0.27734375,0.25976562,0.31835938,-0.052978516,-0.15917969,-0.12890625,-0.12597656,0.06982422,0.07470703,0.057128906,0.096191406,-0.14550781,0.071777344,-0.07373047,-0.08984375,-0.038330078,0.040039062,-0.12890625,-0.04248047,0.004119873,-0.14257812,-0.067871094,0.13769531,-0.055664062,-0.06298828,-0.0011825562,0.0703125,-0.020019531,-0.03149414,0.13183594,-0.20800781,-0.06591797,0.19140625,-0.14257812,0.30859375,0.078125,-0.17773438,-0.11669922,0.036865234,0.024291992,-0.047607422,0.031982422,-0.12060547,0.19042969,0.022460938,-0.08203125,0.048095703,0.051757812,0.011230469,-0.10205078,0.040527344,0.028564453,-0.0546875,-0.12451172,0.16210938,0.01953125,0.13769531,0.15234375,0.09326172,-0.009460449,0.06591797,0.033447266,0.056396484,0.00982666,0.024536133,0.06933594,0.20117188,-0.10644531,0.072265625,-0.010925293,-0.1328125,0.02758789,-0.234375,0.02368164,0.11230469,-0.11376953,-0.05444336,-0.091796875,-0.03112793,-0.15039062,0.16503906,-0.10644531,0.095214844,-0.14160156,-0.103027344,-0.08203125,-0.05908203,-0.036132812,0.029296875,0.044677734,0.111816406,-0.13183594,-0.28710938,-0.23632812,0.08251953,-0.12402344,-0.01184082,-0.032714844,0.10546875,0.007598877,-0.038085938,-0.028076172,-0.032958984,0.02758789,-0.064453125,-0.071777344,-0.023925781,-0.15820312,-0.10644531,0.041748047,-0.18457031,0.15820312,0.20898438,-0.030151367,0.1171875,0.049072266,0.047851562,-0.064453125,-0.014770508,-0.02709961,0.012878418,-0.07470703,-0.08642578,-0.075683594,0.016235352,-0.044433594,-0.07714844,-0.025634766,-0.18652344,-0.10839844,-0.27734375,-0.080078125,0.07324219,0.07861328,0.014831543,-0.049072266,0.18359375,0.040771484,-0.049560547,-0.046875,-0.12402344,0.14453125,-0.047851562,0.06738281,0.21484375,0.080078125,0.06640625,-0.11425781,0.10595703,0.14160156,-0.13671875,-0.12890625,-0.10107422,0.04296875,0.13085938,0.032226562,0.036621094,0.20019531,-0.18066406,-0.13671875,0.12158203,0.115722656,-0.1875,0.06738281,0.052978516,-0.1171875,-0.075683594,0.04638672,-0.07470703,-0.034179688,0.075683594,-0.13867188,-0.11816406,-0.037597656,-0.18652344,-0.16796875,-0.100097656,0.125,-0.08642578,-0.09423828,0.10107422,0.036865234,0.07324219,-0.0077209473,-0.029541016,0.08984375,-0.088378906,-0.038330078,0.22265625,-0.059814453,-0.27929688,0.11328125,-0.031982422,0.096191406,0.010375977,0.021118164,0.05053711,-0.064941406,-0.083984375,0.06738281,-0.20703125,0.03955078,-0.25390625,-0.12597656,-0.08496094,-0.03515625,-0.060791016,-0.008911133,-0.1015625,-0.0859375,-0.29296875,0.10595703,0.123535156,0.08984375,0.06982422,0.10644531,0.115234375,0.04272461,0.015136719,0.06738281,-0.14257812,0.04711914,0.03112793,-0.16601562,0.06225586,-0.12402344,0.19335938,-0.020751953,0.16308594,0.07714844,0.023803711,0.07128906,0.07324219,0.055664062,0.024902344,0.111816406,0.104003906,0.17675781,-0.111328125,-0.12695312,0.0012435913,0.005432129,0.19042969,-0.024414062,0.017456055,-0.09082031,-0.03857422,-0.011474609,-0.05859375,0.03955078,-0.029052734,0.40039062,0.037597656,0.1640625,-0.095703125,0.13476562,0.087402344,-0.13378906,0.14453125,0.080566406,-0.0048217773,0.05029297,0.15429688,0.0390625,0.19335938,-0.048583984,-0.17773438,0.19628906,-0.009216309,-0.044433594,-0.13378906,0.2421875,-0.12158203,0.02331543,-0.036132812,0.010070801,-0.075683594,-0.115722656,-0.07763672,0.055419922,0.107421875,0.092285156,-0.028198242,0.088378906,0.02709961,-0.13964844,-0.08935547,0.123535156,0.002029419,-0.064941406,-0.03540039,-0.10986328,-0.16503906,0.099121094,-0.061035156,-0.056640625,0.072753906,-0.033691406,-0.056884766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05053711,-0.12988281,-0.25195312,0.04296875,-0.12109375,0.031982422,-0.12158203,-0.08935547,-0.05493164,0.0037078857,0.09326172,-0.16113281,-0.076171875,0.032958984,-0.29296875,-0.063964844,-0.02722168,-0.025390625,-0.024047852,-0.18554688,-0.040771484,-0.083984375,-0.14160156,-0.018188477,-0.0030822754,-0.030395508,0.05444336,0.048828125,0.016113281,0.23242188,-0.057373047,-0.1171875,-0.16503906,-0.14648438,-0.022216797,-0.15136719,-0.13671875,0.014099121,-0.08300781,-0.08251953,0.076171875,0.023071289,-0.034179688,0.14355469,0.017944336,-0.07519531,-0.20800781,-0.10058594,-0.10595703,-0.003829956,-0.13867188,-0.18847656,-0.18261719,0.060302734,0.13183594,0.18261719,-0.0023956299,0.014526367,0.013977051,0.14746094,-0.09472656,-0.09375,-0.111816406,0.06933594,-0.12597656,-0.23828125,0.12890625,-0.15429688,0.017089844,-0.024291992,-0.057373047,0.08154297,0.03125,0.15234375,0.13671875,0.06933594,0.021362305,0.032714844,-0.015319824,-0.042236328,0.109375,-0.09423828,-0.15136719,0.111328125,-0.060302734,-0.044433594,-0.008422852,-0.12890625,0.078125,-0.06982422,0.063964844,-0.21484375,-0.002319336,-0.13085938,0.010314941,-0.019042969,-0.23242188,-0.037353516,-0.021728516,0.037597656,0.052490234,0.3515625,0.05908203,-0.038085938,0.024047852,-0.012939453,0.0390625,0.0032196045,-0.15234375,-0.049072266,-0.049804688,0.011047363,-0.09472656,-0.010620117,-0.16992188,-0.17871094,0.056884766,-0.03466797,-0.06298828,0.13574219,-0.047607422,-0.09277344,0.046875,0.002319336,0.087890625,-0.026733398,-0.053955078,-0.16113281,-0.025268555,0.10253906,0.052490234,-0.2109375,-0.030029297,-0.03125,0.007446289,0.061523438,-0.041748047,-0.091796875,0.1640625,0.13085938,0.0546875,-0.032958984,-0.13378906,-0.01928711,-0.088378906,-0.060791016,0.020141602,-0.21582031,0.044677734,0.019042969,-0.013671875,0.043945312,-0.114746094,-0.020263672,0.028198242,-0.03149414,-0.20117188,-0.040771484,0.1328125,-0.16601562,0.083984375,-0.122558594,-0.03491211,0.114746094,0.052246094,-0.091308594,-0.23242188,-0.099121094,-0.041992188,0.06640625,-0.087890625,0.021118164,-0.015991211,0.0087890625,0.028686523,-0.053222656,-0.091308594,0.033691406,0.060546875,-0.1875,0.06591797,0.028198242,-0.14160156,0.096191406,-0.07714844,0.060302734,-0.078125,0.08154297,-0.14257812,-0.20703125,0.16015625,-0.006072998,-0.024780273,0.09716797,0.18164062,-0.21875,0.12451172,-0.13476562,-0.025634766,0.114746094,0.040283203,-0.19140625,0.06689453,0.012145996,-0.14257812,0.029418945,0.10498047,-0.110839844,0.20117188,-0.0625,0.23535156,-0.37109375,0.14257812,-0.091796875,0.024658203,-0.017333984,0.0037078857,-0.13769531,-0.084472656,-0.122558594,0.13964844,-0.14550781,-0.014892578,-0.12402344,0.043701172,0.022705078,0.11279297,-0.17285156,0.067871094,0.068359375,-0.016967773,-0.16796875,-0.009399414,-0.103515625,0.109375,0.0075683594,-0.19433594,0.10644531,0.11767578,-0.052246094,0.020507812,-0.08203125,-0.033691406,-0.06542969,-0.14648438,-0.02368164,-0.13867188,-0.16601562,-0.049072266,0.111328125,-0.08105469,0.03540039,0.049560547,0.13085938,-0.140625,0.057861328,-0.0046081543,-0.18164062,0.16601562,0.20410156,-0.17285156,0.087402344,-0.16601562,-0.0026245117,0.0040893555,-0.04248047,-0.24414062,0.013122559,-0.05029297,-0.20996094,-0.115722656,0.09814453,0.00051116943,0.07324219,0.10839844,-0.37109375,0.046142578,0.2421875,0.09814453,0.05883789,0.045166016,0.042236328,-0.043945312,-0.03515625,-0.032226562,-0.07373047,-0.09033203,-0.07373047,-0.09765625,-0.12207031,-0.023071289,-0.05126953,-0.009521484,-0.04663086,0.07519531,0.00032424927,0.053466797,-0.23144531,0.044433594,-0.10253906,0.14257812,-0.032470703,-0.15820312,-0.13183594,0.057373047,-0.15625,0.037597656,-0.12060547,0.10595703,0.06982422,0.072753906,-0.22949219,0.026123047,-0.16699219,-0.095703125,-0.16210938,-0.18164062,-0.18359375,-0.057373047,-0.12402344,-0.15917969,0.013916016,0.20996094,0.10546875,0.087890625,-0.07421875,0.015991211,0.27929688,-0.05517578,-0.08105469,0.103027344,-0.09423828,0.15527344,-0.06201172,-0.1171875,-0.14160156,0.026977539,0.14648438,0.018310547,0.14453125,0.008239746,0.119140625,-0.07080078,-0.043945312,-0.024414062,-0.029418945,0.29296875,0.030761719,-0.16894531,0.047607422,-0.20996094,0.14746094,-0.14941406,-0.06298828,0.016113281,-0.125,0.19921875,-0.020263672,0.1953125,0.067871094,-0.031982422,0.045410156,-0.10253906,-0.12695312,-0.11230469,0.21679688,-0.07714844,-0.06591797,-0.11621094,0.09716797,-0.11669922,-0.119140625,0.265625,-0.05810547,-0.024169922,-0.018310547,-0.06298828,0.052490234,-0.014465332,-0.10644531,-0.18164062,0.044677734,0.15136719,-0.06298828,0.08691406,0.088378906,-0.03149414,-0.1953125,0.14941406,-0.0056762695,-0.071777344,-0.265625,0.06933594,0.15820312,0.14746094,-0.08544922,-0.10986328,-0.0037231445,-0.071777344,-0.03466797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.31054688,0.053955078,0.0025787354,0.01171875,-0.04296875,-0.060302734,-0.03100586,0.016235352,0.14355469,0.01574707,-0.053466797,0.100097656,-0.024780273,-0.11816406,-0.041259766,-0.13183594,0.07080078,0.12792969,0.15039062,0.09716797,0.13769531,0.09716797,0.0043640137,-0.21777344,0.010925293,-0.008605957,0.049804688,-0.095214844,-0.15234375,0.0234375,-0.13671875,-0.16601562,-0.0005378723,-0.25,0.10644531,-0.061767578,0.15332031,0.13183594,-0.06201172,-0.265625,0.080078125,0.17089844,0.107910156,-0.084472656,0.023071289,-0.0015029907,-0.028564453,-0.114746094,0.099121094,-0.15820312,0.006652832,-0.015136719,0.14648438,0.26367188,-0.030517578,-0.111816406,-0.064453125,0.11816406,0.07470703,0.010314941,-0.08105469,-0.2109375,-0.010437012,-0.095703125,0.11279297,0.30273438,0.107421875,0.09814453,0.032470703,0.23535156,-0.29101562,0.04711914,0.05517578,0.12695312,-0.091796875,-0.0073547363,-0.091308594,0.12890625,-0.075683594,-0.012512207,0.014892578,0.103027344,-0.033691406,-0.013183594,0.08544922,-0.203125,-0.25,0.03149414,-0.048583984,-0.041748047,0.032470703,0.21875,-0.12060547,-0.04638672,0.017456055,-0.1171875,0.025024414,0.057373047,0.009643555,0.07861328,0.25,0.08935547,-0.038330078,-0.10839844,-0.055908203,-0.029052734,-0.020507812,-0.26171875,-0.1484375,-0.10644531,-0.18554688,-0.076171875,-0.14941406,-0.045654297,-0.033447266,0.025634766,-0.045166016,0.14355469,-0.044433594,-0.15332031,-0.03955078,-0.07373047,0.19433594,-0.22265625,-0.056396484,-0.052001953,-0.0012207031,-0.06982422,0.09375,-0.08154297,-0.057373047,-0.14746094,0.05444336,-0.013671875,0.03173828,0.21289062,-0.0058288574,-0.031982422,0.038085938,0.056884766,0.029907227,-0.2421875,-0.02355957,-0.0546875,0.028686523,0.13964844,0.040283203,0.076660156,-0.14160156,0.029663086,0.24414062,0.06298828,-0.08691406,-0.020019531,-0.088378906,0.064941406,-0.17871094,-0.0134887695,-0.0053710938,0.07080078,0.017700195,-0.11376953,-0.18945312,-0.25976562,0.07128906,-0.19433594,-0.18066406,0.05102539,0.103515625,0.036865234,-0.009094238,0.123535156,-0.03930664,0.22265625,-0.015625,0.13085938,-0.36132812,-0.15722656,-0.09033203,0.13867188,0.13769531,0.07470703,0.023803711,0.0016098022,-0.08300781,-0.13378906,0.025512695,-0.048828125,-0.171875,-0.03857422,-0.091796875,-0.20117188,-0.25390625,-0.0018615723,-0.064941406,0.04248047,-0.028930664,0.087890625,0.010314941,-0.115234375,0.111328125,-0.16601562,0.20605469,-0.16503906,0.032226562,-0.16210938,-0.05029297,0.057373047,-0.20605469,0.20214844,0.11816406,-0.14648438,-0.03466797,-0.0038452148,-0.016967773,0.2890625,0.03881836,0.0016555786,0.05419922,0.015014648,-0.09472656,0.022460938,0.08935547,0.046875,0.10839844,0.13085938,-0.063964844,0.13085938,0.044921875,-0.25585938,-0.061279297,-0.22363281,0.12597656,-0.13867188,-0.10449219,-0.061523438,-0.19726562,0.115722656,-0.19140625,0.080566406,-0.11669922,0.14453125,-0.10888672,-0.19921875,0.008422852,-0.14160156,0.064941406,0.01940918,0.04248047,-0.036132812,-0.05102539,-0.06933594,0.09472656,0.20214844,0.12011719,0.087402344,-0.41992188,-0.1015625,-0.060791016,0.044189453,-0.0154418945,-0.28125,-0.06298828,-0.125,0.05126953,0.026733398,0.0053710938,-0.099609375,-0.14355469,0.19628906,0.033691406,-0.07470703,-0.33789062,-0.203125,0.123046875,0.010681152,0.03515625,0.21289062,-0.26757812,0.17675781,0.09326172,-0.0134887695,-0.011291504,0.010192871,0.15039062,0.12158203,-0.07714844,-0.0087890625,0.20410156,-0.029418945,-0.125,0.13085938,-0.0013809204,-0.32617188,0.012207031,0.3046875,-0.018066406,0.026000977,0.008728027,0.092285156,0.10058594,0.033691406,0.09667969,-0.072753906,-0.04248047,0.041748047,0.13085938,0.114746094,0.33203125,-0.03491211,0.027954102,-0.07910156,0.080566406,-0.056396484,-0.024658203,0.18066406,0.035888672,0.083984375,0.10449219,-0.08691406,0.010620117,-0.059570312,-0.15820312,-0.100097656,-0.140625,0.19140625,-0.10839844,-0.16796875,0.09814453,0.08251953,-0.068359375,-0.41796875,0.12695312,-0.1328125,-0.025268555,-0.19726562,-0.296875,-0.003540039,-0.063964844,-0.08105469,-0.111816406,-0.10839844,0.030029297,-0.37109375,0.06933594,-0.03125,-0.08251953,-0.14355469,-0.119628906,-0.0002412796,-0.010864258,0.03515625,0.021240234,-0.15136719,0.053466797,0.046142578,-0.0062561035,-0.15722656,0.047607422,-8.8214874e-05,0.016357422,0.10595703,-0.008666992,-0.06591797,-0.17871094,0.06640625,-0.12988281,0.0046081543,0.12988281,-0.008056641,-0.100097656,-0.023803711,0.10498047,-0.111328125,0.021728516,0.26171875,0.045166016,-0.012878418,-0.171875,0.06640625,-0.028198242,0.0859375,0.015014648,0.110839844,0.0020446777,-0.20117188,-0.030639648,-0.19042969,0.10644531,-0.076660156,-0.22851562,0.26757812,0.003829956,-0.092285156,-0.15625,-0.015319824,0.071777344,-0.068847656,-0.042236328,0.041748047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15625,-0.119140625,-0.025390625,0.011108398,0.099121094,-0.08251953,-0.15136719,0.05834961,-0.022705078,0.096191406,-0.035888672,0.056640625,0.017822266,-0.14941406,0.15039062,0.15136719,0.05029297,-0.08300781,0.10058594,-0.048339844,0.056640625,-0.16503906,0.030395508,-0.08886719,0.016723633,-0.020141602,-0.123535156,0.02746582,0.052001953,-0.032714844,0.17480469,0.034179688,-0.013671875,0.045166016,0.12158203,-0.203125,0.04663086,-0.20117188,0.072265625,-0.123046875,-0.026977539,-0.13085938,-0.028930664,-0.21972656,0.047607422,0.09326172,0.028320312,0.09375,0.028930664,0.07714844,0.03515625,-0.13671875,0.15332031,-0.08691406,-0.06347656,-0.17089844,-0.08251953,0.044921875,0.13769531,-0.15332031,-0.07763672,0.11328125,0.092285156,-0.0126953125,-0.1015625,-0.05029297,0.026367188,-0.18847656,-0.076660156,0.0038146973,-0.05834961,-0.10595703,-0.0051879883,0.016723633,-0.03564453,-0.0077819824,-0.0038757324,-0.28125,-0.0036315918,-0.35546875,-0.031982422,-0.08984375,-0.07910156,-0.106933594,-0.049804688,0.04736328,0.119628906,0.016967773,0.022460938,0.044677734,0.08300781,-0.17675781,0.1328125,-0.29492188,0.01953125,-0.05029297,0.028564453,0.10205078,0.012329102,-0.13476562,-0.018432617,0.08105469,-0.051757812,-0.10888672,0.11035156,0.068359375,-0.0024261475,-0.12402344,0.061279297,-0.18847656,0.008239746,-0.12060547,-0.14257812,0.13867188,0.03515625,-0.1484375,-0.05834961,-0.071777344,-0.203125,-0.051757812,0.056640625,-0.123535156,-0.16503906,-0.15136719,0.14648438,0.014343262,-0.044921875,0.040283203,-0.40820312,0.12011719,0.033691406,-0.15625,0.079589844,0.15429688,-0.25,-0.12890625,0.017333984,-0.020141602,0.035888672,-0.12060547,0.0703125,-0.091308594,-0.021606445,0.16796875,-0.28515625,0.08642578,0.07128906,-0.18457031,-0.00491333,-0.024658203,-0.119628906,-0.18066406,-0.084472656,0.060302734,0.103515625,0.14257812,-0.1640625,0.060058594,-0.07714844,-0.12402344,-0.0054626465,0.0026245117,0.046142578,0.125,0.072265625,0.00077438354,0.29492188,0.012512207,-0.05883789,0.16210938,0.025756836,-0.041503906,-0.053955078,0.034179688,0.107421875,-0.05053711,0.1875,-0.016235352,0.08544922,-0.11376953,-0.024536133,0.083984375,0.096191406,-0.045654297,0.08496094,0.15722656,-0.056640625,-0.13183594,-0.016479492,-0.28710938,-0.015991211,-0.25585938,0.23242188,0.045898438,0.099609375,0.029785156,-0.10205078,-0.061523438,-0.1171875,0.021484375,0.0007324219,-0.05419922,-0.20703125,0.059814453,0.055664062,-0.05126953,-0.078125,-0.034423828,-0.20898438,-0.12451172,0.013671875,-0.11621094,-0.025390625,0.18847656,-0.20117188,0.05908203,0.064453125,-0.014892578,-0.07519531,-0.104003906,0.010131836,-0.18261719,-0.13378906,0.10498047,-0.052978516,-0.03149414,0.1796875,-0.11035156,0.012145996,0.07470703,-0.17285156,-0.07910156,-0.057861328,0.02722168,0.08203125,0.08154297,0.06347656,-0.018432617,-0.19238281,0.17089844,-0.14160156,-0.061767578,-0.040283203,0.017211914,0.04321289,0.17285156,0.25195312,0.104003906,0.08105469,0.007232666,0.052978516,0.12158203,0.06591797,0.076171875,-0.047607422,-0.04711914,-0.08251953,0.09423828,0.055664062,0.0859375,-0.012451172,-0.010620117,0.2109375,-0.140625,0.10986328,0.119140625,0.045654297,0.09765625,0.059814453,-0.01550293,-0.0059814453,-0.09033203,-0.095214844,-0.12988281,0.16015625,0.010009766,0.032714844,-0.083984375,0.07080078,0.03491211,-0.072265625,0.053222656,0.10888672,0.14453125,-0.055419922,-0.055664062,0.03564453,-0.16992188,-0.045166016,0.000869751,0.103515625,-0.0025787354,0.040039062,0.09716797,0.09472656,0.19042969,-0.0021209717,-0.0017929077,-0.20214844,-0.0065612793,-0.037109375,-0.19335938,0.012756348,0.119140625,-0.09375,0.14355469,0.234375,-0.037353516,-0.018188477,-0.075683594,-0.07714844,0.010803223,0.053955078,-0.13964844,-0.21191406,0.01977539,0.079589844,-0.007873535,-0.05053711,0.21289062,-0.17578125,0.0009994507,-0.049804688,-0.115722656,-0.05810547,-0.17089844,0.040527344,0.0012969971,0.03540039,-0.13476562,0.015625,0.13671875,0.024414062,-0.060546875,0.043701172,-0.026245117,-0.08544922,0.03515625,-0.09716797,-0.042236328,-0.088378906,-0.07714844,0.15136719,-0.06347656,0.060791016,0.03955078,-0.018310547,-0.029296875,0.08984375,-0.012145996,-0.107910156,-0.05834961,-0.033447266,0.018554688,0.16113281,0.15039062,-0.025512695,-0.30078125,0.114746094,0.024291992,-0.06591797,-0.03112793,0.012084961,0.008605957,0.1328125,-0.056152344,0.07910156,-0.1484375,-0.16503906,0.053710938,0.059570312,0.06689453,0.024169922,0.080078125,0.04272461,0.103027344,0.08691406,0.08544922,-0.043701172,-0.053222656,-0.044189453,0.02734375,0.171875,-0.016723633,-0.111328125,0.09667969,0.1640625,-0.125,-0.0017623901,-0.421875,0.111816406,-0.067871094,-0.026855469,0.00340271,-0.007751465,0.1484375,0.12402344,-0.08691406,-0.045654297,0.107910156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12988281,-0.08300781,-0.18164062,-0.15625,0.059814453,0.119140625,0.04345703,0.06591797,-0.0033874512,0.053710938,0.08544922,0.19042969,-0.0062561035,0.032470703,0.041748047,-0.060546875,0.13574219,-0.12597656,-0.047851562,0.08691406,0.21875,-0.017578125,0.17382812,0.19042969,0.06933594,0.0020446777,-0.24707031,0.0009841919,0.09716797,-0.23046875,-0.017333984,0.009338379,0.32617188,-0.03564453,-0.07714844,0.057861328,-0.041503906,-0.03881836,-0.20996094,0.15234375,0.009277344,0.017944336,0.14941406,0.045654297,0.072753906,0.14453125,-0.21875,0.33007812,0.10449219,0.07128906,0.10595703,0.04345703,-0.21679688,0.20996094,0.034179688,0.14550781,-0.017944336,0.10253906,0.026977539,-0.07324219,-0.06982422,0.1953125,0.10546875,-0.0038452148,0.107910156,0.053222656,0.17089844,0.17773438,-0.35351562,0.13378906,0.030761719,-0.19921875,0.052001953,-0.1875,0.083496094,-0.06201172,-0.29492188,0.099121094,-0.032470703,0.009460449,-0.026489258,0.044189453,-0.08496094,0.008911133,-0.003036499,-0.072265625,0.10253906,0.13769531,0.09472656,0.010314941,-0.080078125,0.045166016,0.16113281,0.048583984,0.08154297,-0.046142578,0.017089844,0.068359375,-0.036621094,0.013305664,0.16894531,-0.022705078,-0.12792969,0.026611328,0.08984375,0.0057678223,-0.048583984,-0.06982422,0.111328125,-0.057128906,-0.037109375,0.08154297,0.14453125,-0.06225586,0.06298828,-0.08154297,0.055419922,0.03173828,-0.049804688,0.057617188,-0.0035247803,-0.028808594,0.16601562,-0.09765625,0.06542969,-0.01928711,-0.21289062,-0.12207031,-0.018798828,-0.22753906,0.057861328,-0.08496094,-0.080566406,0.14648438,0.14941406,0.17480469,0.083496094,0.036132812,0.25976562,-0.083984375,-0.033935547,0.13574219,0.20996094,0.18164062,0.041748047,-0.076660156,0.032714844,-0.08544922,-0.18847656,-0.040527344,-0.07128906,0.0390625,0.012207031,0.026611328,0.068847656,-0.002456665,-0.20996094,-0.020751953,-0.14550781,0.33789062,0.009460449,0.12695312,0.052734375,-0.06591797,0.09716797,0.029785156,0.19335938,-0.0018005371,-0.100097656,-0.049804688,0.017578125,0.056152344,0.111328125,-0.022583008,0.026977539,-0.123046875,0.045410156,0.071777344,-0.12695312,0.05810547,-0.16894531,-0.01586914,-0.0546875,-0.010253906,-0.005432129,-0.16894531,-0.053222656,-0.053222656,0.18261719,0.064941406,-0.06347656,-0.03149414,0.009216309,-0.20214844,-0.17773438,-0.07861328,-0.1953125,-0.10205078,0.19433594,0.22753906,-0.034423828,-0.103027344,0.03491211,-0.19824219,0.0042419434,0.106933594,-0.024047852,-0.072753906,0.046142578,-0.0048828125,-0.08105469,-0.04272461,-0.11767578,0.22070312,-0.007171631,0.045654297,-0.05810547,-0.106933594,0.171875,-0.032958984,0.08105469,-0.13378906,-0.06689453,-0.013916016,-0.06933594,-0.19824219,-0.03466797,-0.046142578,-0.083496094,-0.004333496,0.24707031,-0.06933594,-0.06298828,-0.18652344,-0.06542969,-0.04248047,0.028076172,-0.057861328,0.08691406,0.29101562,-0.17578125,0.033935547,0.025634766,-0.13183594,0.023071289,-0.16699219,-0.114746094,0.09423828,-0.040039062,-0.17578125,0.07714844,0.0027923584,0.05444336,-0.018920898,0.12792969,-0.05419922,0.056640625,-0.15527344,-0.0032043457,-0.13183594,-0.107910156,0.021972656,-0.075683594,-0.08154297,0.10644531,-0.26171875,0.18261719,0.026977539,-0.025390625,-0.096191406,-0.13867188,-0.08984375,-0.037841797,-0.10058594,-0.14941406,-0.06982422,-0.1640625,-0.16796875,0.20507812,-0.06738281,0.059570312,-0.23925781,0.11816406,-0.234375,-0.171875,0.12207031,-0.041748047,-0.029418945,-0.03125,-0.26171875,-0.046142578,-0.15039062,-0.12988281,0.11035156,0.06298828,-0.21386719,0.09667969,-0.11621094,-0.087402344,-0.29882812,0.013122559,-0.018432617,-0.1171875,0.0048828125,0.095703125,-0.1171875,-0.057373047,-0.09765625,-0.14453125,0.06982422,-0.09277344,-0.20117188,-0.052490234,-0.296875,0.12792969,-0.115234375,-0.15917969,-0.111328125,-0.07763672,-0.091308594,-0.140625,-0.13085938,-0.06542969,-0.018798828,0.08886719,0.10888672,0.09814453,0.24414062,0.09375,0.030151367,0.018188477,0.080566406,-0.050048828,-0.11328125,0.13378906,-0.16015625,0.060546875,-0.037597656,-0.12695312,-0.1953125,0.11035156,-0.13183594,0.078125,-0.004425049,0.091308594,-0.20214844,-0.12109375,0.052490234,-0.06298828,0.15722656,0.052734375,-0.13183594,-0.17089844,-0.045654297,-0.20507812,0.080078125,-0.00074386597,-0.053955078,0.018310547,0.100097656,0.05419922,-0.30078125,0.100097656,-0.100097656,-0.05102539,0.040771484,-0.0010299683,-0.072753906,0.0390625,0.044921875,-0.05419922,-0.10205078,0.07861328,-0.009338379,-0.0070495605,-0.01574707,-0.033935547,0.09326172,-0.061279297,-0.16601562,-0.024658203,0.01940918,-0.043701172,-0.0390625,-0.0020446777,-0.1953125,-0.13085938,0.046875,0.1484375,-0.017211914,0.12597656,-0.025268555,-0.072265625,-0.021118164,0.20800781,-0.17089844,-0.052490234,-0.022460938,-0.03100586,-0.17382812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.013000488,-0.18261719,-0.17773438,-0.03491211,-0.107910156,0.12792969,-0.029663086,0.1640625,-0.0059509277,-0.008666992,0.012939453,-0.046142578,-0.13085938,0.18164062,0.13964844,-0.2109375,-0.08642578,0.059814453,0.002532959,-0.20703125,0.049316406,-0.040039062,-0.026977539,-0.11376953,0.051757812,-0.20800781,-0.03930664,-0.18164062,-0.059814453,-0.017944336,0.119140625,-0.16992188,-0.11376953,-0.037841797,-0.12109375,-0.104003906,-0.24316406,-0.061035156,0.029907227,0.08544922,0.024780273,-0.02709961,0.034179688,-0.09326172,-0.03125,0.039794922,-0.018188477,-0.23046875,-0.20605469,0.088378906,-0.008422852,-0.328125,-0.017456055,-0.22460938,-0.06640625,-0.014465332,0.044921875,0.037109375,0.20214844,0.119628906,0.020629883,0.020629883,0.13671875,-0.01361084,-0.099121094,-0.10205078,0.08984375,-0.19238281,0.0065307617,-0.018432617,-0.09814453,-0.09277344,0.06542969,0.10498047,-0.111816406,0.018676758,0.005645752,0.12792969,-0.096191406,0.027709961,-0.119140625,-0.25,-0.0067443848,-0.16699219,0.07519531,-0.0010757446,-0.23925781,0.2890625,0.032470703,0.063964844,-0.02331543,-0.06982422,-0.08935547,0.038330078,0.1875,0.10644531,-0.068847656,0.23828125,-0.032714844,0.0095825195,-0.011474609,-0.13671875,-0.14355469,-0.119140625,-0.10595703,0.0056152344,0.010131836,0.018188477,-0.091796875,-0.0066223145,-0.05078125,0.014038086,-0.08642578,0.08300781,-0.057861328,0.09033203,-0.111816406,0.36328125,0.03173828,-0.20117188,0.061767578,-0.0034332275,0.08886719,0.063964844,-0.04663086,-0.03125,-0.12158203,-0.03466797,-0.026611328,-0.021240234,0.08203125,-0.36914062,0.068359375,0.07519531,-0.20703125,0.13183594,0.08984375,0.041748047,0.07080078,-0.12988281,0.04638672,-0.12402344,-0.23925781,-0.09765625,-0.2578125,-0.07421875,-0.12451172,-0.21289062,0.020751953,-0.030517578,0.021118164,-0.107421875,-0.067871094,-0.05834961,-0.016113281,-0.034423828,0.032958984,-0.079589844,-0.19238281,-0.09814453,-0.21386719,-0.17285156,0.1015625,-0.051757812,0.041992188,-0.07470703,-0.080566406,0.09765625,-0.0017929077,0.1640625,-0.00036621094,-0.048583984,0.038085938,0.18164062,0.055908203,0.08886719,-0.05078125,-0.032714844,0.09814453,0.063964844,0.028442383,-0.014892578,-0.087402344,-0.111328125,0.08203125,0.09375,-0.091308594,0.04248047,-0.030273438,0.13964844,0.052490234,0.10205078,-0.07470703,-0.07324219,0.012756348,0.23144531,-0.08544922,0.16601562,0.0059509277,0.03930664,0.087890625,0.0099487305,0.07373047,0.12451172,-0.068847656,0.06640625,-0.16113281,-0.106933594,0.14648438,-0.107910156,0.053222656,-0.15917969,0.024414062,0.056640625,0.20605469,0.15039062,0.10595703,-0.072753906,-0.051513672,-0.056640625,-0.1171875,-0.22070312,0.059814453,-0.15429688,-0.1953125,0.016723633,-0.171875,-0.140625,0.19921875,-0.15234375,0.053466797,0.02368164,-0.013305664,-0.171875,-0.111816406,-0.19238281,-0.13476562,-0.17089844,-0.0051879883,-0.18457031,-0.20898438,-0.20605469,-0.023925781,-0.048828125,0.076171875,0.0013809204,0.044189453,0.21191406,0.014526367,-0.03491211,-0.16113281,-0.06591797,-0.091308594,-0.0068969727,-0.21679688,0.18261719,-0.083984375,-0.031982422,0.11230469,-0.015563965,-0.057861328,-0.007873535,0.0859375,-0.23339844,0.03491211,-0.12597656,0.07519531,-0.04638672,0.023071289,0.013122559,-0.0234375,0.03515625,-0.036376953,-0.0076293945,-0.042236328,-0.19628906,-0.15917969,-0.13183594,0.1328125,0.12207031,-0.059326172,-0.017944336,0.15722656,-0.018798828,0.01965332,-0.012817383,0.122558594,0.15527344,-0.017944336,-0.057861328,0.16015625,0.009460449,0.14648438,-0.099121094,0.20019531,-0.039794922,0.048095703,-0.05859375,-0.14550781,0.06591797,-0.103027344,0.049804688,0.053955078,-0.04296875,-0.16308594,-0.04736328,-0.09765625,-0.13964844,-0.076171875,-0.24804688,0.10839844,-0.01574707,0.016845703,-0.014953613,0.087890625,-0.12988281,-0.017211914,0.106933594,-0.032226562,-0.10839844,0.029052734,-0.049804688,-0.15136719,-0.10058594,-0.030883789,7.6293945e-05,-0.035888672,0.022827148,0.07470703,-0.09667969,-0.14257812,-0.2109375,0.022216797,-2.9802322e-05,-0.13867188,0.122558594,-0.076171875,-0.118652344,-0.047607422,-0.011657715,-0.0625,-0.21191406,-0.013549805,-0.24316406,-0.021972656,0.064453125,-0.04638672,-0.00970459,0.09765625,-0.16992188,-0.15625,-0.013122559,-0.125,-0.053466797,0.008728027,-0.27929688,0.076171875,-0.047851562,0.011779785,0.28710938,0.042236328,0.009155273,0.091796875,-0.17578125,0.2734375,0.06542969,-0.06347656,0.11621094,-0.26757812,0.106933594,0.04248047,-0.19726562,0.107910156,-0.07080078,-0.012512207,0.14160156,0.106933594,0.021240234,0.0059509277,0.06347656,0.16992188,0.041748047,-0.026245117,0.044921875,-0.088378906,0.043701172,-0.13671875,-0.033691406,-0.037597656,-0.06542969,-0.041503906,0.06982422,0.022094727,0.107910156,-0.076660156,-0.024658203,-0.047851562,-0.123046875,-0.16796875,0.020263672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.044189453,0.3359375,-0.12451172,0.09277344,0.024780273,-0.096191406,-0.22949219,-0.12109375,0.26367188,0.16308594,-0.036132812,0.021606445,-0.032714844,0.0023651123,-0.017578125,-0.15039062,-0.07080078,0.16796875,0.203125,0.11425781,0.017578125,0.064453125,-0.034423828,-0.0625,-0.0012283325,-0.11621094,-0.14453125,-0.00018692017,0.008728027,-0.26757812,-0.049072266,0.0032196045,-0.06982422,-0.14257812,0.07519531,0.1328125,-0.14453125,-0.0703125,0.25390625,-0.023925781,-0.13574219,0.09814453,0.09277344,0.171875,0.118652344,0.17578125,0.09667969,-0.021850586,0.042236328,-0.09033203,0.21777344,0.06982422,0.053710938,0.055664062,-0.15332031,0.16308594,0.0099487305,0.0032196045,-0.004180908,0.043701172,-0.11767578,0.09082031,-0.048095703,0.008728027,0.08300781,0.27539062,0.022583008,-0.012145996,-0.03125,0.06738281,-0.12695312,-0.100097656,-0.02331543,0.025024414,-0.0064086914,-0.05517578,-0.26953125,-0.0032043457,0.024047852,0.16992188,-0.092285156,0.14746094,0.14746094,0.05444336,0.12988281,-0.072753906,-0.22460938,0.061035156,-0.01574707,0.100097656,-0.09716797,0.08935547,-0.025634766,-0.008728027,-0.067871094,-0.015380859,-0.16308594,0.10058594,0.003036499,0.016235352,0.18261719,0.103515625,-0.07861328,0.0037078857,0.032958984,-0.0034942627,-0.041748047,0.053466797,-0.107910156,0.107910156,-0.11328125,-0.045410156,-0.056396484,-0.04296875,-0.01159668,-0.0053100586,0.05908203,-0.107421875,0.072265625,-0.083984375,-0.021362305,0.03112793,0.0039978027,-0.029541016,-0.041992188,0.10986328,0.080566406,-0.083984375,0.03564453,0.18652344,0.060302734,0.06640625,0.23730469,-0.375,-0.021728516,-0.0014648438,-0.19335938,0.067871094,-0.13671875,-0.056396484,-0.14257812,0.067871094,-0.18652344,0.10253906,0.022949219,0.080078125,0.049804688,0.125,0.10058594,0.0546875,-0.17480469,-0.049316406,0.03100586,0.09082031,0.037353516,0.0037231445,-0.12060547,0.028808594,-5.2690506e-05,0.06201172,-0.05126953,0.056152344,-0.01940918,0.11279297,0.040283203,0.087890625,-0.072753906,0.091308594,0.056152344,-0.25976562,-0.27929688,0.018920898,-0.13867188,0.035888672,0.16894531,0.05908203,-0.26757812,-0.020874023,-0.00014209747,0.0390625,-0.080078125,-0.057617188,-0.115234375,0.030517578,-0.28515625,-0.06689453,0.034423828,0.09033203,-0.079589844,-0.0066833496,0.24804688,-0.052001953,-0.10205078,0.084472656,-0.106933594,0.083496094,-0.18652344,-0.111816406,0.080566406,-0.046875,-0.16992188,-0.115722656,0.016601562,0.025268555,-0.16308594,0.06201172,0.122558594,0.03491211,-0.042236328,0.072265625,0.036376953,0.09033203,-0.030639648,-0.032958984,0.060546875,0.15527344,0.06933594,-0.080078125,-0.06689453,0.125,-0.13085938,0.15429688,0.05078125,-0.091796875,0.044189453,0.11816406,-0.10498047,0.0028533936,-0.18554688,0.107910156,-0.123046875,0.24609375,-0.14550781,-0.06689453,0.018554688,-0.12451172,0.026245117,0.1953125,0.12109375,0.0064697266,-0.051513672,0.0048828125,0.106933594,-0.10449219,0.060791016,0.09277344,-0.16113281,0.18164062,-0.025390625,-0.23925781,-0.17675781,0.045898438,0.18066406,-0.03540039,0.13769531,0.056396484,-0.08105469,0.037841797,-0.022949219,-0.103027344,-0.20898438,0.023803711,-0.09472656,0.18554688,-0.095703125,-0.04663086,-0.125,-0.0056762695,-0.03466797,0.13769531,0.107910156,-0.041503906,-0.36914062,-0.016845703,0.033447266,-0.06542969,-0.06689453,0.12988281,-0.012512207,-0.017089844,0.083984375,0.038330078,0.055908203,-0.06689453,-0.022094727,-0.07519531,0.040527344,0.024780273,-0.22753906,-0.051513672,-0.03955078,-0.0051574707,0.041015625,0.0070495605,-0.104003906,0.024658203,0.088378906,0.04272461,-0.024780273,-0.099609375,0.018188477,0.13085938,-0.038330078,0.23535156,0.017944336,0.025146484,-0.06689453,0.115722656,0.008666992,0.09277344,-0.23828125,0.04345703,-0.040771484,-0.044433594,0.029785156,-0.14941406,0.040527344,0.04321289,-0.027954102,0.15136719,0.018188477,0.09277344,0.005554199,-0.110839844,0.20703125,-0.010437012,0.11816406,0.14453125,0.009277344,-0.20800781,-0.07519531,0.057861328,0.18945312,0.080566406,-0.14257812,-0.04321289,0.14355469,-0.13574219,0.030883789,-0.12597656,0.04345703,0.15136719,-0.12011719,0.29882812,0.018310547,-0.13476562,-0.020385742,0.053955078,0.13867188,0.080078125,0.08642578,-0.036621094,-0.15917969,-0.08642578,-0.017944336,-0.057861328,0.125,0.17675781,-0.0023498535,0.26171875,-0.06542969,0.036132812,-0.123046875,-0.13085938,0.21289062,0.13867188,-0.06933594,-0.03955078,-0.27929688,0.10888672,-0.0053710938,0.07421875,0.14941406,0.12011719,-0.057373047,0.24511719,0.07128906,-0.09033203,-0.072265625,0.059814453,0.23242188,0.115234375,0.078125,0.09277344,-0.38476562,-0.11376953,-0.0154418945,0.12695312,0.0008544922,0.34375,-0.0066223145,0.2578125,0.091796875,-0.13085938,0.06933594,-0.24121094,0.16113281,0.16796875,-0.107421875,-0.15332031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.055908203,-0.07421875,0.095703125,0.22558594,-0.036132812,0.026977539,-0.056640625,-0.24023438,-0.140625,0.08251953,0.15332031,-0.18359375,0.14257812,-0.063964844,-0.17578125,0.11035156,0.053222656,0.013671875,0.04663086,0.13378906,-0.057617188,0.27539062,-0.017333984,-0.111328125,-0.091308594,0.026000977,0.0033874512,0.15332031,0.01977539,0.11376953,0.049072266,-0.10644531,0.08691406,0.04711914,0.26757812,-0.10498047,-0.09814453,-0.071777344,0.041503906,-0.11767578,0.022583008,0.091308594,-0.16601562,0.16894531,-0.009216309,0.1796875,-0.044189453,-0.06347656,-0.17675781,0.16601562,0.2578125,0.012512207,-0.11767578,-0.038085938,-0.026000977,-0.10449219,-0.04272461,0.03564453,-0.100097656,0.0011138916,0.12402344,-0.009216309,0.010559082,-0.045654297,-0.10498047,0.01977539,0.063964844,0.014343262,-0.0107421875,0.17480469,0.022216797,0.18847656,-0.03857422,0.0625,-0.08496094,0.0017852783,0.036376953,-0.04272461,0.010009766,-0.071777344,-0.017211914,-0.021118164,-0.05444336,0.09326172,-0.111816406,-0.060546875,-0.072753906,-0.05810547,-0.071777344,-0.14941406,0.012451172,0.01928711,0.03515625,-0.20214844,-0.055908203,-0.095703125,-0.19140625,0.21484375,0.0625,0.05419922,-0.1171875,0.2578125,0.013793945,-0.07080078,-0.033691406,0.040283203,-0.048583984,0.10107422,-0.12695312,-0.3359375,-0.025512695,0.013916016,0.007080078,0.06591797,-0.028076172,-0.14355469,-0.052001953,0.2578125,0.095214844,-0.010437012,0.06982422,0.07324219,-0.080566406,-0.008850098,0.08935547,-0.043701172,0.011230469,-0.007537842,-0.12792969,0.0011825562,0.095214844,0.09765625,-0.095214844,0.08642578,0.25390625,-0.17480469,0.002105713,-0.06225586,0.06591797,0.1875,0.08691406,-0.12890625,-0.060546875,-0.25,-0.22949219,-0.05126953,0.15332031,0.088378906,-0.075683594,0.19140625,0.1875,-0.007751465,0.03857422,-0.12011719,0.0546875,0.010253906,-0.104003906,0.05053711,0.12988281,-0.17382812,-0.06298828,0.053955078,0.0066223145,0.049560547,-0.072265625,-0.0049743652,-0.14648438,0.044433594,0.0027770996,-0.07324219,0.052001953,0.13867188,0.17675781,-0.09716797,0.008239746,0.044921875,0.010925293,0.078125,-0.11425781,0.046875,-0.032958984,0.111328125,-0.076660156,-0.17089844,0.04711914,-0.056640625,0.056396484,-0.026000977,0.008911133,-0.12792969,-0.0047302246,-0.16113281,0.07080078,-0.08935547,-0.09667969,-0.118652344,-0.14355469,-0.0069274902,0.096191406,-0.18359375,0.05834961,0.06298828,-0.07470703,0.10546875,0.021118164,-0.20800781,-0.19042969,-0.029541016,-0.26367188,-0.0054016113,0.07910156,-0.044189453,0.013977051,-0.12597656,-0.06689453,-0.12695312,-0.09667969,0.09667969,0.03149414,-0.013183594,-0.107910156,-0.103027344,0.007507324,-0.049804688,-0.12060547,0.04736328,-0.036132812,0.032714844,-0.03955078,0.24121094,-0.004638672,-0.14746094,0.008483887,0.05908203,0.078125,0.09716797,-0.07373047,-0.0005912781,-0.07763672,0.084472656,0.107421875,0.032226562,-0.12890625,0.15722656,-0.11621094,0.17578125,0.23925781,0.19628906,-0.008605957,-0.18066406,0.10253906,0.026245117,0.07421875,-0.15136719,-0.078125,0.080078125,0.022094727,0.08154297,-0.103027344,0.075683594,-0.20117188,0.03491211,-0.0234375,0.11376953,-0.01965332,-0.014465332,-0.07373047,-0.05493164,-0.025634766,0.024902344,-0.041992188,-0.14257812,0.0052490234,-0.25976562,-0.040771484,-0.18652344,-0.27148438,-0.14746094,-0.071777344,-0.07324219,0.0134887695,0.095214844,0.040527344,-0.16796875,-0.1640625,-0.04736328,-0.035888672,0.03930664,0.039794922,0.01953125,-0.06298828,-0.033203125,-0.23632812,-0.19726562,-0.029785156,0.036865234,-0.079589844,0.10888672,0.13574219,0.05810547,-0.06933594,-0.1328125,-0.099121094,0.060546875,-0.010559082,0.06982422,0.08496094,-0.059570312,-0.088378906,0.1015625,0.28710938,-0.09082031,-0.055664062,0.15625,0.02355957,0.22753906,-0.07763672,-0.061279297,-0.063964844,0.037353516,-0.07910156,0.15722656,-0.17773438,0.07128906,-0.04736328,0.19433594,-0.16113281,0.0029144287,-0.012084961,-0.044433594,0.048339844,0.026000977,-0.057128906,0.040771484,-0.20507812,-0.039794922,-0.020507812,-0.4375,-0.12597656,9.346008e-05,-0.04638672,0.32421875,-0.09863281,-0.119628906,0.033935547,-0.07080078,0.18457031,0.030517578,-0.071777344,-0.03930664,-0.25195312,-0.21972656,-0.0018615723,-0.078125,-0.33984375,-0.028930664,-0.036376953,0.080078125,0.20019531,-0.25195312,-0.024902344,-0.07421875,0.049316406,0.053710938,-0.13183594,-0.0625,-0.06298828,-0.060791016,0.09814453,0.0010299683,-0.27148438,0.015197754,-0.026123047,-0.0023040771,-0.111816406,-0.22949219,0.007293701,-0.04638672,0.04248047,0.033447266,-0.05078125,-0.123535156,-0.060791016,0.07128906,0.20898438,0.0546875,-0.14648438,0.052246094,-0.11376953,0.09375,-0.26953125,-0.16894531,-0.04321289,-0.017700195,0.15527344,-0.021850586,-0.20703125,0.23632812,0.18554688,-0.01965332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.080566406,-0.12695312,-0.017700195,0.11425781,0.052246094,-0.17480469,0.036621094,0.1640625,-0.09716797,-0.114746094,-0.0038757324,0.11279297,0.08251953,0.06738281,0.24902344,0.07373047,0.044433594,0.012451172,0.11816406,-0.083984375,0.03149414,0.3984375,-0.04248047,0.22460938,0.026367188,-0.1640625,-0.031982422,0.171875,0.08203125,-0.10595703,0.12890625,0.22460938,-0.028076172,0.06225586,-0.083496094,0.05517578,-0.16894531,-0.115234375,-0.12792969,-0.023803711,-0.08154297,-0.18847656,-0.17480469,0.061767578,0.037841797,-0.15429688,0.009033203,0.20507812,0.07861328,0.051513672,0.22363281,-0.0022583008,-0.13671875,0.10595703,0.06738281,-0.007232666,-0.091308594,-0.027709961,0.030883789,-0.016601562,0.12695312,-0.21582031,0.034423828,0.12890625,-0.11035156,-0.045898438,0.059814453,0.064453125,0.115722656,0.16210938,-0.32226562,-0.107421875,-0.033203125,0.07470703,0.063964844,0.08203125,-0.0099487305,-0.13378906,0.10253906,0.099609375,-0.111328125,-0.06982422,-0.041748047,0.11230469,0.03466797,0.11279297,0.18164062,-0.06591797,0.122558594,-0.04248047,0.15917969,0.15625,-0.15234375,-0.11669922,0.072753906,0.059814453,-0.19140625,0.08105469,0.03955078,0.046875,0.05102539,0.017578125,-0.099609375,0.16015625,-0.057861328,-0.08642578,-0.20800781,-0.040771484,0.13769531,0.013000488,-0.067871094,0.099121094,-0.06738281,-0.07324219,-0.032958984,-0.038330078,-0.063964844,-0.044921875,0.114746094,0.00579834,-0.12597656,0.021484375,-0.05419922,-0.041992188,0.053710938,0.040527344,0.063964844,0.038330078,0.018432617,-0.23144531,0.075683594,-0.056152344,0.05517578,0.05029297,0.03955078,-0.2109375,-0.030273438,-0.14648438,-0.005706787,0.10595703,0.04736328,-0.010070801,0.052001953,0.140625,0.08691406,-0.13183594,0.13964844,0.017578125,-0.017333984,-0.091308594,0.040771484,0.017944336,0.017089844,0.07763672,-0.003768921,0.18457031,0.09814453,0.11279297,0.1484375,0.020874023,0.037597656,0.103027344,-0.095703125,-0.040283203,-0.100097656,0.10205078,0.04296875,0.171875,0.095703125,0.030883789,0.1328125,-0.15820312,-0.04248047,-0.11328125,0.22851562,0.0044555664,-0.0138549805,0.12792969,-0.17578125,-0.122558594,-0.11816406,0.16210938,-0.13183594,0.067871094,0.007507324,-0.18652344,-0.019897461,0.072753906,0.09082031,0.027954102,0.049560547,0.15332031,0.18945312,-0.050048828,0.10839844,0.035888672,0.16992188,0.123046875,-0.09082031,-0.17480469,-0.02758789,-0.010620117,-0.027832031,-0.071777344,-0.09082031,-0.064941406,-0.028442383,-0.0044555664,0.12695312,0.09375,-0.15429688,0.080078125,-0.020996094,-0.13183594,-0.08496094,0.06640625,-0.029907227,0.02319336,0.014160156,0.1328125,0.014221191,-0.007446289,0.10253906,0.12109375,-0.030639648,-0.03491211,-0.06738281,0.014587402,0.22265625,0.027832031,0.0033721924,-0.10888672,0.08935547,-0.15039062,0.2578125,0.016601562,0.107910156,0.08496094,0.076660156,0.16015625,-0.027709961,-0.048828125,-0.20507812,0.06298828,0.17382812,-0.115234375,-0.012207031,-0.07861328,0.011413574,-0.14648438,0.06201172,-0.10107422,-0.045166016,0.02746582,0.11816406,0.07519531,-0.053466797,0.16503906,-0.30273438,-0.079589844,-0.014465332,0.16894531,-0.15527344,-0.068847656,-0.096191406,-0.14355469,-0.056396484,0.1015625,0.07714844,0.028808594,-0.015014648,-0.01373291,0.091308594,0.008666992,-0.15332031,-0.13085938,-0.008117676,0.17773438,0.049804688,0.13769531,-0.0076293945,-0.0390625,-0.051513672,0.071777344,-0.0703125,-0.0546875,0.024536133,-0.021972656,0.10107422,-0.12988281,-0.2890625,-0.010864258,-0.07324219,-0.1328125,-0.080078125,0.021850586,-0.03857422,-0.33398438,-0.12890625,-0.14453125,0.11328125,-0.19726562,0.04248047,-0.049316406,-0.103515625,-0.041503906,-0.21875,-0.11328125,-0.11035156,0.03564453,-0.03881836,-0.03515625,0.025512695,-0.16113281,-0.28320312,-0.12695312,0.07324219,-0.13085938,-0.20996094,0.08496094,-0.06347656,-0.1484375,-0.27539062,0.048339844,-0.041259766,-0.111328125,-0.22558594,-0.06298828,0.107910156,-0.2109375,0.064453125,-0.072753906,-0.033203125,0.07080078,-0.037109375,-0.12109375,-0.23535156,-0.07080078,-0.3359375,-0.1640625,0.07421875,0.08544922,-0.13769531,-0.0134887695,0.08105469,-0.19042969,-0.17285156,-0.13476562,-0.012512207,-0.091308594,0.0035095215,-0.0011901855,-0.12597656,0.08544922,-0.16113281,-0.1171875,-0.0025024414,-0.064941406,0.07080078,0.019165039,-0.09667969,-0.19042969,-0.12988281,-0.104003906,0.007232666,-0.16503906,-0.048095703,-0.10107422,-0.03515625,0.04321289,-0.29492188,-0.15917969,-0.013000488,-0.203125,-0.06640625,-0.017211914,0.075683594,-0.29882812,0.035888672,-0.046875,0.03930664,-0.15039062,-0.14453125,-0.15917969,0.03491211,-0.040527344,-0.08642578,0.08300781,0.115234375,-0.0060424805,0.083496094,-0.12451172,-0.06347656,-0.24707031,-0.09375,-0.19238281,-0.15234375,-0.051513672,-0.05859375,0.05029297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.22167969,0.026855469,-0.024902344,-0.19726562,-0.06982422,-0.08300781,-0.17773438,-0.40039062,0.12792969,-0.22753906,-0.061767578,0.07519531,-0.0029754639,0.03540039,-0.27148438,-0.21875,-0.10888672,-0.08642578,0.05493164,0.002609253,0.12451172,-0.061523438,0.11376953,-0.13476562,-0.04736328,-0.14648438,0.064941406,0.087402344,0.14355469,0.20214844,-0.056396484,-0.05444336,-0.05517578,-0.34570312,0.12695312,0.05102539,0.099609375,0.14648438,-0.08691406,-0.017333984,0.056640625,-0.09375,0.14648438,0.043701172,-0.011413574,0.06640625,-0.08203125,-0.0016784668,-0.110839844,0.07519531,-0.057373047,-0.29492188,0.01953125,-0.12207031,-0.07714844,0.01171875,-0.0026245117,-0.20898438,-0.15625,-0.13183594,-0.048339844,-0.0059509277,-0.110839844,0.020385742,-0.08251953,-0.088378906,-0.061767578,-0.12792969,-0.1796875,0.07324219,-0.05053711,-0.14160156,0.046142578,-0.119628906,-0.004058838,0.118652344,-0.0064086914,-0.23144531,-0.036132812,-0.17382812,-0.2734375,-0.19824219,-0.047607422,-0.17675781,-0.15625,-0.21484375,-0.114746094,-0.19140625,0.078125,-0.13476562,-0.025512695,-0.011230469,-0.05810547,0.04345703,-0.033447266,-0.25976562,0.027832031,-0.087402344,-0.013916016,0.04663086,-0.08105469,-0.052734375,0.2578125,0.17578125,-0.019042969,-0.03881836,-0.033203125,-0.24316406,0.06689453,0.18847656,0.16503906,-0.026367188,0.12890625,-0.13867188,0.13574219,0.12597656,-0.053466797,0.053710938,-0.03564453,-0.09667969,0.087890625,0.037109375,0.015014648,0.025756836,0.0859375,0.118652344,-0.09667969,-0.0018463135,-0.05883789,0.09082031,-0.020629883,0.037841797,0.06542969,0.020507812,0.04711914,0.13574219,0.04638672,0.08544922,0.07324219,0.0859375,-0.084472656,-0.02746582,-0.11816406,0.0022888184,-0.15332031,-0.044921875,-0.140625,-0.21484375,-0.0065307617,0.071777344,0.048583984,-0.06933594,0.071777344,-0.075683594,-0.036132812,0.24902344,-0.05102539,-0.020874023,-0.013427734,-0.09472656,-0.27929688,0.057617188,-0.115234375,-0.16503906,-0.20117188,-0.15234375,0.13476562,-0.19921875,-0.055664062,-0.27539062,-0.27148438,-0.14453125,0.12890625,-0.25195312,-0.079589844,-0.23046875,-0.27539062,-0.20019531,-0.23535156,-0.023925781,0.14453125,0.08251953,-0.07861328,-0.022949219,-0.051757812,-0.21679688,0.10449219,-0.096191406,0.12792969,0.26757812,-0.018432617,0.02355957,0.09863281,-0.14550781,0.018554688,0.24707031,0.08544922,0.032470703,0.20019531,-0.21582031,0.079589844,0.08984375,0.18164062,-0.039794922,0.14355469,0.16015625,0.023071289,0.16796875,-0.06225586,-0.048583984,-0.0014877319,-0.017089844,0.067871094,0.05029297,-0.032714844,0.024291992,0.07128906,0.048583984,0.06933594,0.05859375,0.061279297,0.11767578,-0.13964844,0.21289062,-0.064453125,-0.12597656,0.024414062,0.0027770996,-0.004180908,-0.007659912,0.29492188,-0.12109375,0.015319824,-0.029052734,-0.031982422,-0.0625,-0.10546875,-0.023071289,0.115722656,0.022216797,-0.095214844,0.07128906,-0.0703125,-0.296875,-0.029052734,-0.095214844,-0.10449219,-0.28710938,-0.02758789,-0.083496094,-0.05102539,-0.26367188,0.12011719,0.043945312,-0.09033203,-0.08203125,-0.15625,0.040039062,0.0050964355,-0.13769531,-0.025756836,0.021118164,-0.060546875,-0.072265625,-0.06347656,-0.19824219,0.068847656,-0.040039062,0.014099121,-0.05078125,-0.11621094,-0.19238281,0.12695312,0.084472656,-0.06689453,0.030517578,0.03100586,-0.20214844,-0.24609375,-0.22167969,0.036865234,-0.0044555664,0.16308594,-0.12060547,0.13085938,0.16210938,-0.018676758,0.13183594,-0.05102539,0.09716797,0.056152344,0.17382812,-0.099121094,-0.20800781,-0.111328125,-0.33789062,0.13476562,-0.083496094,0.15917969,-0.020751953,-0.0020446777,0.18652344,-0.07714844,0.05078125,-0.15625,-0.049804688,0.087402344,0.118652344,-0.048339844,-0.19140625,0.114746094,-0.023071289,0.08544922,0.20605469,0.11767578,0.017089844,-0.0040893555,0.014160156,0.048339844,0.11767578,-0.25976562,0.049560547,0.014587402,-0.1015625,-0.048583984,-0.020507812,-0.17285156,-0.25,-0.075683594,-0.10839844,-0.1953125,-0.16210938,0.04345703,0.06689453,0.045898438,-0.024536133,0.0099487305,0.02368164,0.10107422,-0.22949219,-0.0546875,0.049072266,-0.0046691895,0.036376953,-0.09863281,-0.03100586,0.028198242,-0.032714844,0.07861328,-0.06591797,-0.07861328,-0.12695312,-0.009643555,0.099121094,0.22167969,0.0043640137,0.0390625,0.04638672,-0.052001953,-0.05493164,0.04321289,-0.12597656,0.16503906,-0.16015625,-0.052978516,0.18554688,-0.012451172,0.064453125,0.11328125,0.15722656,0.0546875,0.05834961,-0.10253906,-0.079589844,0.029663086,-0.16796875,-0.08935547,0.03149414,0.18359375,-0.0146484375,0.06542969,0.18847656,-0.107421875,0.110839844,-0.056152344,-0.17871094,0.10888672,0.048583984,-0.06225586,-0.038330078,-0.083496094,-0.0023040771,-0.103027344,0.021972656,0.24707031,-0.011779785,-0.107910156,0.25585938,0.17285156,-0.052490234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05102539,-0.18554688,-0.36523438,0.0087890625,0.013061523,-0.026123047,-0.051757812,0.052978516,-0.05444336,0.11767578,-0.07421875,-0.08642578,0.056396484,0.14648438,-0.0074768066,-0.110839844,-0.033447266,-0.2578125,-0.29492188,-0.12988281,-0.030883789,-0.014465332,-0.05126953,0.099609375,0.026245117,-0.071777344,0.08251953,0.12109375,0.16503906,-0.107910156,0.012573242,0.096191406,-0.10205078,-0.20996094,-0.16601562,-0.03881836,-0.056396484,0.13183594,-0.17871094,0.17578125,0.0034484863,0.05053711,0.109375,0.100097656,0.0546875,-0.21582031,0.06640625,0.010009766,-0.011291504,-0.057617188,0.040527344,-0.044677734,-0.041259766,0.05126953,0.06591797,0.05126953,-0.087402344,0.05908203,0.068847656,-0.06201172,0.08544922,0.103027344,0.10986328,-0.16601562,0.05126953,-0.12451172,-0.18457031,-0.17675781,0.016113281,0.08154297,0.06933594,0.044433594,-0.11279297,0.040039062,-0.12695312,0.005218506,-0.15234375,-0.07714844,0.035888672,-0.07080078,-0.15332031,-0.038085938,-0.22167969,-0.04663086,-0.11669922,0.055664062,0.15332031,-0.0039978027,0.05419922,-0.014587402,-0.21582031,-0.15820312,0.14648438,0.07861328,-0.110839844,-0.028808594,-0.23242188,0.06689453,-0.12890625,-0.014160156,-0.071777344,-0.13964844,-0.037353516,0.10058594,-0.1015625,-0.024169922,-0.16601562,0.06689453,0.12207031,-0.018066406,-0.14941406,-0.038085938,-0.14160156,-0.02368164,0.02331543,-0.020996094,-0.01928711,0.20117188,-0.02709961,-0.027954102,-0.106933594,0.05126953,-0.008178711,0.002380371,0.024780273,-0.02355957,0.006591797,-0.12792969,-0.18847656,0.014770508,0.060791016,-0.017089844,-0.043701172,0.18554688,-0.049072266,0.13574219,0.041992188,-0.06933594,-0.12890625,0.026245117,0.032714844,0.04638672,0.18457031,-0.00018310547,0.0014648438,-0.13769531,-0.10498047,-0.07470703,0.13574219,0.106933594,-0.30078125,0.10644531,-0.019042969,0.110839844,-0.043701172,0.13769531,-0.052978516,-0.029418945,0.09472656,-0.16308594,-0.03173828,-0.14160156,-0.053466797,0.027954102,-0.12109375,0.1328125,-0.026245117,-0.05102539,0.10253906,0.0234375,-0.15429688,-0.115234375,0.06591797,0.08300781,-0.041748047,-0.08105469,-0.25976562,0.01171875,0.038085938,-0.035888672,-0.032958984,0.12695312,0.00049972534,0.025390625,0.07519531,-0.022216797,0.007751465,-0.15722656,0.091308594,-0.07763672,0.024780273,-0.006652832,-0.014953613,-0.13378906,0.19238281,0.12451172,-0.006713867,0.07519531,-0.16894531,0.16015625,-0.064941406,0.04711914,-0.109375,-0.12597656,0.05493164,0.13964844,0.0017776489,-0.16015625,-0.24414062,-0.06201172,0.19238281,0.099121094,0.059326172,0.359375,0.07470703,0.22558594,-0.095214844,-0.052246094,-0.106933594,-0.14257812,-0.061523438,0.20410156,0.03149414,-0.11669922,0.06347656,-0.27148438,0.0005531311,-0.060302734,0.14550781,0.072753906,0.092285156,0.20019531,0.10546875,0.075683594,-0.08642578,-0.028686523,0.011291504,0.076660156,0.025024414,0.01977539,0.05883789,0.123046875,-0.06201172,-0.03515625,0.0099487305,-0.07714844,-0.12988281,0.079589844,-0.079589844,-0.06982422,0.076171875,-0.06689453,0.13867188,0.087402344,-0.02722168,0.04638672,-0.12988281,0.011047363,-0.0059814453,0.13476562,-0.22753906,-0.18066406,-0.28710938,0.099121094,-0.02722168,0.072265625,-0.10888672,-0.16894531,-0.036376953,0.041748047,0.0021820068,0.08984375,0.03466797,0.14941406,0.13574219,0.079589844,-0.122558594,-0.05078125,-0.05517578,-0.111816406,-0.07519531,0.0625,0.15136719,-0.028808594,0.095703125,-0.0008506775,-0.1328125,0.15429688,0.003829956,0.002105713,0.041748047,0.053222656,0.06542969,0.014038086,0.07470703,0.09375,-0.071777344,-0.026000977,-0.03857422,-0.057128906,-0.0048217773,0.037841797,-0.03173828,0.24902344,0.068847656,0.01586914,0.18652344,0.08935547,0.024780273,-0.12695312,0.045410156,0.10449219,0.055908203,0.14453125,-0.07910156,-0.08300781,-0.05517578,0.24023438,-0.0015182495,0.068359375,0.037597656,0.17285156,0.13964844,-0.07910156,-0.017578125,-0.20996094,0.08105469,0.16015625,0.055419922,-0.03857422,-0.17089844,-0.111328125,0.12060547,0.044189453,-0.059326172,0.036621094,0.12792969,0.12060547,0.106933594,-0.008850098,-0.055664062,-0.111816406,-0.080566406,0.056152344,-0.13183594,0.040771484,0.049804688,-0.005706787,0.1015625,0.24023438,-0.15917969,0.0020446777,0.057128906,0.063964844,0.087402344,-0.13378906,0.12890625,-0.19140625,-0.07519531,0.017578125,-0.07080078,-0.011474609,-0.12597656,0.020385742,-0.04663086,0.04345703,-0.025512695,0.055908203,0.17285156,-0.122558594,0.033691406,-0.083984375,-0.017700195,-0.2578125,-0.23339844,0.005340576,0.09375,-0.06689453,0.01928711,0.064453125,-0.020751953,0.10839844,-0.068847656,0.09082031,-0.10644531,0.18652344,0.08496094,-0.004272461,0.10546875,0.06591797,-0.07714844,0.06591797,-0.022460938,0.10888672,0.080078125,-0.020629883,-0.0234375,0.05883789,0.047607422,0.032714844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16210938,0.21679688,-0.06591797,-0.118652344,-0.011291504,0.091308594,-0.03125,-0.51953125,0.103515625,0.17675781,0.119140625,-0.015075684,0.12060547,0.09033203,-0.0061035156,-0.07763672,0.09814453,-0.018432617,0.15039062,-0.23828125,-0.020263672,0.14453125,0.19433594,-0.32617188,-0.08251953,0.23535156,0.10058594,-0.05810547,0.032958984,0.12011719,0.18652344,0.12011719,-0.17578125,0.07128906,0.0859375,0.11376953,-0.023071289,0.0079956055,0.079589844,0.08544922,-0.010498047,0.08642578,0.103027344,-0.023925781,0.03125,-0.10839844,-0.07861328,-0.0126953125,-0.10839844,-0.025024414,-0.040283203,-0.20800781,-0.0030517578,0.052246094,0.075683594,-0.06738281,0.011779785,0.19335938,0.064453125,0.0044555664,0.07910156,-0.15625,0.13867188,0.056152344,-0.118652344,0.064453125,-0.059814453,0.10888672,-0.018798828,-0.24511719,-0.0069274902,-0.010253906,-0.021484375,0.10595703,0.19921875,0.08984375,0.04711914,0.03857422,-0.042236328,0.035888672,0.07080078,0.057617188,0.15917969,-0.03955078,0.057128906,-0.036621094,0.064453125,-0.12158203,-0.017578125,0.06591797,-0.061035156,-0.29101562,-0.053955078,0.025512695,0.037353516,-0.12207031,0.17480469,-0.052246094,0.013916016,-0.12011719,0.052978516,0.029296875,-0.09375,-0.052734375,0.026611328,-0.104003906,-0.10595703,0.05810547,-0.03515625,0.028564453,-0.12597656,-0.15234375,0.06347656,-0.15722656,-0.10253906,0.0546875,0.07763672,-0.16699219,0.12207031,0.050048828,-0.064941406,-0.14941406,0.045654297,-0.17285156,0.06738281,-0.11230469,0.18652344,-0.009460449,0.09375,-0.25,0.047851562,-0.012817383,0.17480469,0.068359375,0.12792969,0.07910156,0.06225586,-0.05126953,-0.16210938,-0.041748047,0.14941406,-0.05053711,-0.013366699,-0.0033721924,-0.099121094,-0.109375,-0.10986328,0.0025024414,-0.0859375,-0.057373047,0.057373047,0.060302734,-0.03466797,-0.08886719,-0.0036773682,-0.1328125,-0.1875,-0.068359375,-0.10205078,-0.034423828,-0.05859375,0.03930664,-0.056396484,-0.20410156,-0.20800781,-0.060058594,-0.0016326904,-0.057617188,-0.07714844,-0.109375,0.0025634766,-0.03930664,0.07714844,0.083984375,-0.15722656,-0.030151367,-0.0073547363,-0.004547119,0.09326172,0.0703125,0.033447266,-0.103027344,-0.14453125,0.0625,-0.033447266,-0.26367188,0.012023926,-0.2578125,-0.056396484,-0.061523438,0.037109375,0.060302734,-0.04345703,0.03173828,0.03173828,0.06347656,0.1328125,-0.12890625,-0.06591797,-0.044189453,0.047851562,-0.13769531,0.060058594,-0.02331543,0.08496094,0.006500244,-0.057128906,-0.12109375,-0.12597656,-0.10546875,-0.00970459,-0.084472656,0.004486084,0.010925293,-0.22558594,0.046875,0.028564453,-0.20117188,-0.122558594,0.08984375,0.061279297,-0.0005683899,0.034179688,-0.19140625,-0.0055236816,-0.08300781,-0.110839844,-0.21582031,0.11621094,0.107910156,-0.080566406,-0.11376953,-0.06982422,-0.23535156,-0.05078125,-0.024047852,-0.06689453,-0.14648438,-0.125,-0.10595703,-0.07910156,-0.019897461,-0.06689453,0.02355957,-0.21582031,0.008850098,0.053466797,-0.11376953,0.110839844,-0.16796875,0.004211426,0.08886719,-0.15136719,-0.020629883,-0.20703125,-0.14257812,0.0134887695,-0.13671875,-0.08935547,-0.07763672,-0.03125,-0.018676758,-0.052001953,0.01940918,-0.08105469,0.002822876,0.106933594,0.22949219,-0.12597656,-0.17675781,-0.08691406,-0.14648438,0.08544922,-0.125,0.20703125,-0.076660156,0.07373047,0.12890625,-0.10644531,0.09765625,0.026000977,-0.14941406,-0.14453125,0.095703125,-0.13378906,0.05883789,0.040527344,-0.057617188,-0.16015625,0.08496094,-0.13476562,-0.03100586,-0.040527344,0.091308594,0.01586914,-0.022216797,0.030151367,-0.14648438,-0.15429688,-0.13867188,-0.03540039,-0.02709961,0.057617188,0.021118164,-0.07470703,-0.19335938,0.044921875,0.00579834,0.07519531,0.02355957,-0.018188477,-0.05517578,-0.016235352,-0.1171875,-0.0050964355,0.032958984,-0.040771484,-0.024291992,0.06640625,-0.04736328,0.059570312,-0.1328125,-0.0013046265,-0.06347656,-0.20019531,-0.057617188,0.046875,0.048828125,0.10107422,-0.09814453,0.22363281,-0.041992188,-0.038085938,-0.15722656,0.08544922,-0.06689453,0.0859375,-0.21777344,0.12695312,0.07470703,-0.111328125,-0.125,-0.18945312,-0.040771484,-0.048583984,0.083496094,0.15039062,0.05029297,-0.13574219,-0.063964844,-0.0031585693,-0.07373047,0.15429688,-0.09423828,-0.10498047,0.048828125,0.09765625,0.03466797,0.08300781,0.057861328,-0.052978516,0.09863281,-0.024780273,-0.140625,-0.17773438,0.17871094,-0.0015487671,-0.0859375,0.025146484,-0.063964844,-0.055908203,0.0077209473,0.109375,0.045410156,-0.040527344,0.10644531,0.008605957,0.045898438,-0.041992188,0.009338379,-0.036865234,-0.11425781,0.11279297,-0.0013427734,-0.13574219,-0.15820312,-0.12695312,-0.060058594,-0.07861328,0.12207031,-0.118652344,-0.09716797,-0.08300781,-0.057617188,0.048828125,-0.09667969,0.014221191,-0.27734375,-0.114746094,-0.15722656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.10888672,-0.036621094,-0.1328125,-0.04736328,0.016357422,0.014831543,0.021728516,0.171875,0.011413574,0.068847656,0.19238281,-0.003326416,-0.09082031,0.09667969,-0.053710938,-0.10449219,0.005554199,-0.075683594,0.049804688,-0.15234375,-0.034179688,0.08691406,0.16796875,-0.005554199,-0.0625,-0.024658203,-0.09326172,-0.053222656,-0.00340271,0.032958984,-0.079589844,0.063964844,0.15136719,-0.21777344,-0.099609375,0.087402344,0.05126953,0.10498047,0.09472656,-0.21289062,0.007019043,-0.11328125,0.14550781,0.022949219,0.057861328,0.12695312,-0.087402344,-0.025512695,-0.13183594,0.017211914,-0.13867188,0.061523438,-0.064941406,-0.119628906,0.045410156,0.051513672,0.006439209,-0.083984375,0.012451172,0.0065612793,0.12011719,0.037597656,-0.11035156,0.0059814453,-0.11767578,0.09765625,-0.107421875,0.06738281,0.030883789,-0.15136719,-0.0016174316,0.27734375,0.042236328,-0.14355469,0.064453125,-0.06689453,0.025024414,-0.09277344,-0.021972656,0.0014343262,-0.02331543,-0.067871094,0.026977539,-0.072265625,0.12792969,-0.22558594,-0.057128906,0.16601562,0.055419922,0.17382812,0.016723633,0.0703125,-0.0625,-0.03881836,0.049804688,0.013916016,-0.12792969,-0.052734375,-0.00017547607,-0.050048828,-0.0058898926,-0.059326172,0.017089844,0.39257812,-0.1015625,-0.021972656,0.123535156,0.06738281,-0.17382812,-0.07373047,0.017333984,-0.12597656,-0.030029297,-0.00022792816,-0.17382812,-0.015319824,-0.05078125,0.08300781,0.20117188,-0.11767578,0.07373047,0.034179688,0.20117188,-0.075683594,0.04321289,-0.109375,0.012207031,-0.25195312,-0.16699219,-0.06298828,0.042236328,-0.18945312,-0.06347656,0.04296875,0.1875,0.046875,0.08203125,-0.06542969,0.08984375,0.051757812,-0.040283203,-0.0077209473,0.034179688,0.003250122,0.05493164,-0.23925781,0.01953125,0.13867188,0.05908203,-0.020996094,-0.029663086,0.080566406,-0.07519531,-0.049560547,-0.01550293,0.040283203,-0.09326172,-0.15917969,-0.122558594,-0.18261719,0.033203125,0.010437012,0.111328125,0.087890625,-0.034179688,-0.12792969,0.09277344,0.115234375,-0.05493164,0.013671875,-0.21289062,-0.075683594,0.0036010742,0.13769531,-0.020751953,0.042236328,-0.08886719,-0.064453125,0.08691406,-0.17285156,-0.014160156,-0.072753906,0.032470703,0.26171875,-0.07910156,-0.15039062,0.044921875,0.07861328,-0.07763672,-0.033203125,-0.11376953,-0.110839844,-0.025268555,-0.13964844,-0.0021514893,-0.0063171387,0.17480469,-0.05517578,-0.07324219,-0.22851562,0.001335144,-0.072753906,-0.021972656,0.14257812,0.109375,-0.11621094,-0.079589844,-0.048095703,-0.041503906,0.024047852,-0.03955078,0.04296875,-0.023803711,0.12402344,-0.057128906,0.059814453,0.06225586,0.055908203,-0.25585938,0.03955078,-0.05126953,-0.029296875,0.071777344,-0.026367188,-0.06347656,0.11425781,-0.02722168,0.04296875,0.04321289,-0.0703125,0.07421875,0.096191406,0.0057678223,-0.055664062,0.02319336,0.2578125,-0.049072266,-0.2109375,-0.04321289,0.107421875,-0.104003906,0.027954102,-0.060791016,0.16699219,0.014099121,-0.21386719,-0.21191406,-0.060546875,0.06591797,0.052490234,-0.103027344,-0.049804688,0.12011719,0.14550781,0.106933594,0.30664062,-0.021606445,0.265625,0.119140625,-0.091308594,0.076171875,-0.12451172,-0.04296875,0.19042969,-0.10595703,-0.09472656,-0.10839844,-0.033935547,0.04345703,0.020385742,0.06689453,0.14941406,-0.08642578,0.12988281,-0.040039062,-0.19921875,-0.05908203,-0.079589844,-0.103515625,-0.12597656,-0.05444336,0.007537842,-0.053466797,0.17773438,-0.041992188,-0.020141602,-0.053466797,0.083984375,-0.03125,0.08105469,-0.16699219,0.09667969,0.002532959,-0.0054626465,0.060546875,0.029785156,0.036865234,0.04736328,0.02734375,-0.07373047,-0.19628906,-0.092285156,0.055419922,0.06933594,-0.21191406,0.016479492,-0.15625,-0.05053711,-0.24609375,-0.0022735596,0.111816406,-0.19824219,-0.08496094,0.12451172,-0.06738281,0.00060272217,-0.059814453,-0.22070312,0.2578125,0.1328125,0.0115356445,0.16699219,-0.03540039,0.06982422,-0.057373047,-0.10888672,-0.0067443848,0.1015625,0.06347656,-0.15234375,0.22167969,0.043701172,0.0061950684,0.080566406,-0.064453125,0.13574219,-0.041748047,0.03125,-0.08154297,-0.0625,-0.19140625,-0.12207031,0.072753906,0.013671875,-0.055908203,-0.16503906,-0.14550781,-0.047851562,-0.09423828,0.122558594,-0.234375,0.0041503906,-0.18847656,0.22851562,-0.16992188,-0.2890625,-0.19238281,-0.056152344,0.067871094,0.014953613,-0.028442383,-0.078125,-0.017456055,-0.095214844,-0.16992188,0.087890625,-0.13085938,4.4703484e-06,-0.28710938,-0.020751953,-0.07910156,-0.15625,0.092285156,-0.12011719,0.14746094,-0.21875,0.053466797,-0.11425781,0.051513672,-0.08105469,-0.014526367,-0.060791016,0.07128906,-0.01586914,-0.21875,0.08203125,-0.106933594,0.0034484863,-0.0010528564,-0.01184082,0.1953125,-0.30859375,0.091796875,0.12988281,-0.013244629,0.13574219,-0.20410156,0.14355469,0.036376953,0.08691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16796875,0.07470703,0.013671875,0.11035156,0.063964844,0.11425781,-0.24316406,0.013122559,-0.17578125,0.19140625,-0.110839844,0.083496094,-0.20410156,-0.13085938,0.26171875,0.24023438,-0.04321289,-0.0703125,-0.0703125,-0.029541016,0.16503906,-0.05053711,-0.3046875,-0.17871094,-0.06689453,-0.0049743652,-0.27929688,0.010253906,-0.09716797,-0.020507812,0.088378906,0.048828125,0.027832031,0.18457031,-0.052734375,-0.171875,0.091796875,-0.04711914,-0.15527344,-0.17773438,-0.080078125,0.04638672,-0.16699219,0.22851562,-0.005645752,0.026733398,0.05493164,-0.0066833496,0.36132812,0.099609375,-0.17871094,-0.27539062,-0.045410156,-0.30664062,-0.19140625,-0.033691406,-0.057128906,-0.060791016,-0.18652344,0.23925781,-0.14648438,-0.061279297,-0.13476562,0.16015625,0.060546875,-0.203125,-0.03173828,0.08935547,0.049072266,-0.35546875,-0.115234375,-0.19921875,0.07763672,0.107421875,0.1875,0.045898438,-0.37695312,-0.14160156,-0.012329102,0.2109375,-0.21777344,-0.07470703,0.056396484,0.15332031,-0.17089844,0.10058594,-0.17480469,0.123046875,0.015991211,0.04321289,-0.1640625,0.095703125,-0.18164062,-0.16503906,-0.10546875,0.008361816,-0.40625,0.06591797,-0.14355469,-0.040771484,-0.09033203,-0.20703125,-0.30078125,0.020507812,-0.084472656,-0.12060547,-0.01586914,-0.16113281,-0.18164062,0.18652344,0.27539062,0.13867188,-0.06640625,-0.0077819824,-0.10107422,0.044677734,-0.080078125,0.021728516,0.044921875,-0.063964844,0.01953125,-0.05126953,-0.11035156,-0.033691406,-2.3245811e-05,0.1640625,0.10253906,-0.076171875,0.3046875,0.10498047,-0.028198242,-0.07324219,-0.027954102,-0.29101562,-0.27539062,-0.26757812,0.060302734,-0.060546875,-0.10498047,0.09814453,-0.079589844,0.1015625,0.15039062,-0.08691406,0.13964844,0.05078125,0.07324219,-0.053710938,0.16503906,-0.234375,0.23144531,0.07519531,0.052978516,0.1328125,-0.045654297,0.021362305,0.103027344,-0.1640625,-0.019165039,0.10253906,0.017089844,-0.171875,0.033691406,0.029541016,0.2265625,-0.16503906,-0.020874023,-0.0703125,-0.061035156,0.020874023,-0.16699219,-0.01373291,0.10253906,0.115722656,-0.034179688,-0.15234375,-0.32226562,0.0038757324,0.042236328,0.017822266,0.043945312,-0.13085938,-0.18359375,-0.06982422,-0.061035156,0.057861328,-0.05493164,-0.06225586,0.091796875,0.037109375,0.09375,0.20410156,-0.19433594,0.14453125,-0.088378906,-0.09082031,0.024780273,-0.14746094,0.18359375,-0.24804688,0.07519531,0.011108398,-0.079589844,-0.103515625,0.036865234,0.087890625,0.018554688,0.16699219,0.04321289,0.036621094,-0.125,-0.0011444092,-0.14941406,-0.057861328,-0.057128906,-0.21582031,-0.09375,-0.13183594,-0.234375,-0.01171875,-0.00016498566,0.123046875,-0.0024261475,0.059326172,0.18164062,-0.44726562,-0.045166016,-0.0018539429,0.104003906,-0.18261719,0.017089844,-0.0095825195,-0.0077819824,0.035888672,-0.012756348,-0.083984375,0.01550293,0.09277344,0.04663086,-0.012390137,-0.096191406,-0.119628906,-0.045654297,0.006958008,0.12011719,-0.234375,-0.11279297,0.035888672,-0.106933594,0.080078125,-0.38085938,0.039794922,0.095214844,0.09863281,0.026977539,-0.21875,-0.064453125,-0.18457031,0.114746094,-0.10449219,0.115234375,0.087890625,0.114746094,0.10839844,-0.1328125,0.123535156,-0.25390625,-0.22753906,0.017700195,0.076660156,0.03125,-0.10546875,-0.13183594,-0.043701172,-0.09082031,-0.14355469,0.072753906,0.022827148,0.09277344,0.20117188,0.01361084,-0.06542969,-0.055419922,-0.16503906,0.04663086,0.07373047,0.107910156,-0.056396484,-0.10107422,-0.265625,0.092285156,-0.013122559,-0.13574219,-0.025878906,0.00048828125,0.13378906,-0.0087890625,0.012878418,-0.12988281,-0.06738281,0.072265625,0.17285156,-0.036376953,0.009887695,0.08300781,-0.15917969,0.036865234,0.038085938,0.0625,0.14746094,0.044677734,0.03881836,-0.08105469,-0.024902344,0.12695312,-0.31835938,-0.052734375,0.15820312,0.046142578,-0.16210938,-0.23242188,-0.14648438,0.031982422,-0.107910156,-0.0053710938,-0.12597656,-0.080566406,0.06201172,0.09082031,0.056884766,-0.002319336,-0.03881836,0.06591797,-0.012756348,-0.05908203,-0.20214844,-0.05078125,-0.07128906,0.059326172,-0.125,0.099609375,-0.05908203,-0.013000488,0.07128906,0.059814453,0.075683594,-0.029907227,-0.27539062,0.10449219,-0.041748047,-0.034179688,-0.203125,-0.21972656,-0.019165039,-0.048095703,-0.09423828,0.040283203,-0.25195312,-0.092285156,-0.025024414,0.028930664,-0.04272461,0.025268555,-0.12890625,0.05859375,-0.0032806396,-0.0625,-0.17871094,-0.32617188,-0.052978516,0.109375,-0.0028381348,-0.119140625,-0.14160156,-0.029663086,0.05419922,-0.030029297,0.084472656,-0.07861328,-0.099121094,0.09423828,-0.04736328,0.17871094,-0.05517578,-0.079589844,-0.28710938,0.1640625,-0.07470703,0.16015625,0.27929688,-0.00982666,0.23828125,-0.021240234,0.080566406,0.01550293,-0.37695312,0.13964844,0.020263672,-0.030639648,-0.30859375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.21484375,-0.16992188,0.06689453,-0.04736328,-0.10449219,-0.3046875,0.118652344,0.022094727,-0.08496094,0.0703125,0.11376953,0.08886719,-0.044921875,-0.014526367,0.17480469,-0.052001953,-0.01361084,-0.171875,0.061523438,-0.24511719,-0.039794922,0.0859375,0.15820312,-0.04321289,-0.013916016,0.04272461,0.109375,0.140625,-0.06298828,0.015136719,0.12402344,-0.095214844,0.09423828,-0.052001953,0.10058594,-0.24121094,-0.036132812,-0.16113281,0.103027344,-0.056396484,-0.05444336,-0.023925781,0.03564453,0.092285156,0.049804688,0.17578125,0.07324219,-0.009887695,0.28125,-0.061767578,0.07080078,-0.15136719,0.10253906,-0.107910156,0.14746094,-0.18457031,0.076171875,0.0087890625,0.14941406,0.16015625,-0.11035156,0.044189453,-0.0049743652,0.03466797,-0.111816406,-0.09277344,0.030395508,-0.12060547,-0.10498047,-0.024902344,0.14550781,-0.076171875,0.023925781,-0.053710938,-0.060791016,0.11425781,-0.12792969,-0.0703125,0.055664062,0.091796875,0.01361084,-0.24707031,0.15039062,0.10205078,0.036621094,-0.056152344,0.15722656,-0.09326172,0.061523438,0.09375,0.067871094,0.114746094,0.02734375,-0.05078125,0.0625,-0.099609375,0.099121094,-0.07128906,0.09326172,-0.15136719,0.05517578,0.0050354004,0.0079956055,0.003479004,-0.08154297,-0.037109375,0.25,-0.019042969,-0.02758789,-0.08154297,0.12402344,-0.19433594,0.12792969,-0.05883789,0.19140625,-0.23828125,0.0057373047,-0.09716797,0.01171875,-0.030273438,0.018188477,0.028198242,-0.15722656,0.09765625,0.10205078,-0.15234375,0.024780273,-0.30859375,-0.099121094,-0.13183594,0.1640625,0.005432129,-0.2578125,0.045654297,-0.08691406,-0.080566406,0.02746582,-0.045898438,0.14941406,0.11425781,0.08300781,-0.14648438,-0.0703125,-0.12011719,-0.28125,-0.041503906,0.26171875,-0.12011719,0.17773438,0.025268555,-0.024291992,-0.10107422,-0.014343262,-0.056396484,-0.104003906,0.119628906,-0.049560547,0.046875,-0.045654297,-0.11621094,0.055664062,-0.25195312,0.123535156,0.03930664,-0.21191406,-0.064453125,0.15429688,0.08251953,-0.10253906,0.02368164,0.049560547,-0.040039062,0.02758789,0.030273438,-0.008361816,0.0030517578,-0.021606445,-0.1015625,0.008178711,0.06738281,-0.234375,0.14355469,0.05444336,0.057861328,-0.08691406,0.01373291,0.001953125,-0.0013122559,-0.09863281,-0.04248047,-0.22070312,-0.32226562,0.084472656,-0.095214844,0.096191406,-0.05493164,-0.19433594,0.140625,-0.15429688,-0.21777344,0.067871094,-0.14355469,0.0046691895,0.068359375,0.020141602,-0.27539062,-0.13476562,-0.2578125,-0.21484375,-0.025268555,0.15625,0.048828125,-0.22558594,-0.15917969,0.076660156,-0.19921875,0.029418945,-0.07910156,-0.03930664,0.033935547,-0.018920898,-0.29492188,-0.31445312,-0.23730469,-0.107421875,-0.0045166016,0.16992188,-0.023925781,-0.053955078,-0.24121094,0.004119873,-0.048095703,0.048095703,-0.021484375,-0.014099121,-0.032470703,0.064453125,0.05908203,-0.16308594,-0.037841797,0.011413574,-0.1640625,0.045166016,0.045898438,-0.22460938,-0.006713867,0.13476562,-0.032226562,-0.02331543,0.027832031,0.12011719,0.12988281,-0.078125,-0.13476562,0.030883789,0.012084961,-0.24414062,-0.08691406,0.008239746,-0.0010986328,-0.06225586,-0.13964844,0.08691406,-0.09765625,-0.114746094,0.055908203,0.04321289,0.103515625,0.028198242,0.07763672,-0.017822266,-0.12207031,-0.26953125,-0.18554688,-0.041992188,0.16015625,-0.110839844,-0.095703125,-0.07470703,-0.076660156,0.08105469,-0.14355469,0.08886719,-0.10644531,0.036865234,-0.041992188,-0.09863281,-0.28125,-0.23730469,-0.025512695,0.16699219,0.026489258,0.083984375,-0.035888672,-0.072265625,-0.064941406,-0.05908203,0.010681152,-0.06689453,0.049316406,0.010253906,-0.068359375,-0.049316406,-0.20605469,0.006500244,-0.002822876,0.15527344,0.08886719,-0.037841797,-0.03491211,0.0625,-0.064453125,-0.057373047,0.00047302246,0.07763672,0.110839844,-0.05444336,0.04711914,-0.051757812,0.020507812,0.0011672974,0.12207031,0.012329102,0.15820312,-0.12890625,0.002746582,0.06933594,-0.08544922,0.015380859,0.008728027,0.13183594,-0.01373291,-0.23144531,-0.099121094,0.024902344,0.011474609,-0.10449219,0.18164062,0.024414062,0.063964844,-0.059326172,-0.079589844,0.15625,-0.076171875,0.09472656,-0.03149414,-0.0034484863,0.0546875,-0.1015625,-0.09716797,0.072753906,-0.28515625,-0.20507812,0.048828125,0.06640625,0.0079956055,0.09472656,-0.17773438,0.095214844,-0.027832031,0.01953125,0.043945312,-0.06982422,0.12402344,0.013793945,-0.15917969,-2.1606684e-06,-0.20898438,-0.16113281,-0.019165039,0.06933594,0.095214844,-0.041503906,-0.31835938,0.11621094,-0.18652344,-0.12890625,0.018554688,0.27539062,0.019165039,-0.005218506,0.043701172,-0.22753906,-0.22851562,0.109375,0.044433594,0.02355957,0.02758789,-0.17089844,-0.23730469,-0.015380859,-0.09667969,0.091796875,-0.103027344,-0.171875,0.19628906,-0.13867188,0.061523438,-0.080566406,0.0859375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.21972656,0.056396484,0.012023926,0.1796875,-0.14550781,0.17773438,-0.092285156,-0.04321289,-0.06347656,-0.10449219,-0.12597656,-0.122558594,-0.10107422,0.021728516,0.13085938,-0.057128906,-0.13769531,-0.104003906,-0.12158203,0.15820312,0.016967773,0.1875,-0.23046875,-0.2265625,-0.041259766,-0.234375,-0.12890625,-0.057128906,0.01586914,0.13085938,0.22851562,0.0020751953,-0.31640625,-0.026977539,0.13183594,0.16308594,0.09814453,0.11376953,-0.021606445,-0.025878906,0.022216797,-0.10986328,0.02319336,-0.06542969,-0.07861328,0.13378906,0.15136719,0.032470703,-0.23730469,0.1640625,0.023925781,0.021850586,0.053466797,0.33398438,-0.056152344,0.14453125,0.024169922,-0.07763672,-0.10888672,0.051513672,-0.040527344,-0.08935547,-0.004211426,0.087890625,-0.14355469,-0.08203125,0.0047302246,-0.14550781,0.043945312,0.14550781,-0.23046875,0.0077209473,0.008117676,-0.29101562,-0.234375,0.09423828,-0.0703125,-0.18457031,0.03491211,0.13671875,-0.104003906,0.17871094,-0.041503906,0.009399414,-0.2265625,-0.099121094,-0.091796875,-0.17773438,-0.032226562,-0.05419922,-0.125,-0.026489258,0.05810547,0.04638672,0.026855469,-0.046142578,-0.099609375,0.15136719,0.0057678223,0.18652344,-0.06982422,0.12890625,-0.17675781,-0.18652344,-0.005218506,-0.13867188,0.119628906,-0.0703125,-0.087890625,0.14746094,-0.016235352,-0.0020141602,-0.17578125,0.079589844,0.04345703,0.12011719,-0.0072631836,-0.002090454,0.021362305,-0.17578125,0.091308594,0.036621094,-0.045166016,-0.057617188,-0.10253906,0.033203125,-0.08300781,0.12597656,-0.083984375,0.16601562,-0.0390625,0.057861328,-0.0032806396,0.03515625,-0.07128906,-0.057617188,0.067871094,0.067871094,-0.123535156,0.09033203,0.084472656,-0.038330078,0.057373047,0.026855469,0.064941406,-0.16601562,0.12060547,0.19726562,-0.17675781,-0.09863281,-0.119628906,-0.033447266,0.056396484,-0.051513672,-0.13769531,0.09716797,0.11621094,-0.09082031,0.0625,0.04663086,-0.068359375,0.29882812,0.05859375,-0.45117188,-0.012573242,-0.017211914,0.20019531,-0.08642578,-0.10107422,0.057617188,0.041748047,-0.010070801,0.110839844,0.15039062,-0.10986328,-0.071777344,-0.0038452148,-0.11035156,-0.061767578,-0.15136719,-0.21386719,0.19433594,0.08984375,-0.023925781,0.010864258,-0.091796875,-0.063964844,-0.043701172,-0.09716797,-0.05078125,-0.08984375,0.036132812,-0.05883789,0.13378906,0.002090454,0.07470703,-0.072265625,-0.09765625,0.08935547,-0.16796875,-0.030883789,0.044189453,-0.06982422,-0.00062179565,-0.0095825195,-0.076171875,0.03112793,-0.072265625,0.06542969,0.083984375,-0.15722656,0.038085938,-0.10546875,-0.18554688,-0.05908203,-0.18261719,0.060302734,0.029296875,0.107421875,0.096191406,0.078125,0.088378906,-0.059814453,-0.23046875,0.16699219,0.203125,-0.20214844,-0.029418945,-0.0045166016,-0.08886719,0.106933594,-0.11035156,-0.025268555,0.059570312,0.1171875,-0.0018081665,0.037353516,0.052490234,-0.011291504,-0.10205078,-0.029052734,0.025268555,0.18066406,0.020996094,0.080566406,-0.052246094,-0.028198242,-0.17578125,-0.01184082,-0.055419922,0.012145996,0.013793945,0.06689453,0.10888672,-0.10498047,0.06640625,0.03173828,-0.09033203,0.17382812,-0.13476562,0.05126953,0.125,0.15527344,-0.20800781,0.07421875,0.05810547,-0.1328125,0.06225586,0.0030822754,0.022583008,-0.042236328,-0.010131836,-0.16992188,-0.2421875,0.087890625,0.14746094,0.16699219,0.16699219,-0.071777344,-0.022949219,-0.068847656,0.12402344,0.09472656,-0.029663086,-0.004425049,-0.10546875,0.03466797,-0.27734375,0.03466797,0.08203125,-0.22851562,-0.049804688,0.0390625,0.08984375,-0.15625,0.115234375,-0.072265625,0.023071289,0.095214844,0.048095703,-0.009521484,0.050048828,-0.20996094,-0.29101562,0.017822266,0.11279297,-0.032958984,-0.10058594,0.17285156,-0.123046875,0.17089844,-0.0028076172,-0.08300781,0.059326172,0.12988281,-0.05029297,0.095703125,0.10595703,0.10546875,-0.12988281,0.16894531,0.17089844,0.06640625,-0.1796875,0.06982422,0.12695312,-0.030395508,-0.28125,-0.030151367,-0.092285156,-0.04345703,0.12890625,0.13085938,0.0625,-0.115722656,-0.06640625,0.11230469,0.045654297,0.15234375,-0.27734375,0.059814453,0.092285156,-0.15332031,-0.034423828,0.032958984,-0.015258789,0.16699219,0.048339844,-0.087402344,0.037109375,0.030517578,0.10644531,0.023803711,-0.027954102,0.10107422,0.14550781,0.125,0.17089844,-0.030517578,-0.0051574707,0.006378174,0.119628906,0.10058594,0.04638672,0.040527344,0.32226562,0.13671875,0.038085938,-0.032714844,0.100097656,0.100097656,-0.10449219,0.13867188,0.00037193298,0.05102539,0.057373047,-0.041748047,-0.051757812,0.12988281,-0.26171875,0.11669922,0.00680542,0.012329102,0.05029297,-0.29492188,-0.19433594,-0.036865234,-0.092285156,0.029907227,-0.14746094,-0.08691406,0.092285156,-0.023925781,-0.030273438,0.125,-0.3125,0.11279297,0.03955078,0.05126953,-0.15136719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.060058594,-0.045166016,0.041992188,0.06298828,0.19628906,-0.15234375,-0.05834961,0.025634766,0.0703125,0.09667969,-0.203125,0.06738281,-0.16894531,-0.13574219,0.10986328,-0.08105469,-0.14453125,-0.10595703,0.13867188,-0.017578125,0.21484375,-0.036132812,-0.046142578,-0.1328125,0.01184082,-0.004425049,-0.011352539,0.059326172,0.08642578,-0.11816406,-0.050048828,-0.22558594,-0.028076172,-0.047851562,0.19628906,-0.15429688,0.10058594,-0.06298828,-0.06933594,-0.06933594,0.042236328,-0.13085938,-0.06933594,0.09082031,0.14257812,0.013000488,-0.03515625,-0.0546875,-0.06640625,-0.064941406,0.16699219,0.06689453,0.20117188,0.049560547,-0.1015625,-0.15429688,-0.07910156,-0.028320312,-0.08691406,0.014770508,-0.003616333,0.05029297,-0.067871094,-0.15722656,-0.032714844,0.11328125,0.14941406,0.14941406,0.23828125,0.000957489,-0.19824219,0.030395508,-0.115234375,0.06542969,0.0077209473,0.08886719,0.060791016,-0.08105469,-0.041748047,-0.072753906,-0.033447266,0.10644531,0.10595703,0.078125,0.19433594,-0.01373291,0.100097656,-0.052978516,-0.05810547,-0.07910156,-0.13378906,-0.096191406,0.079589844,-0.06689453,-0.021240234,-0.0057678223,0.06591797,0.0008773804,0.0146484375,0.095214844,0.2265625,-0.0051574707,0.24414062,0.029052734,-0.01586914,0.09667969,-0.008972168,-0.015563965,0.140625,0.21484375,0.030151367,-0.038330078,0.032226562,0.06542969,-0.009277344,-0.1328125,0.10449219,-0.068847656,0.21386719,-0.13867188,-0.052246094,-0.0076293945,-0.056396484,0.030395508,0.045410156,0.026977539,-0.014343262,0.06738281,-0.08642578,0.09326172,-0.07324219,-0.12060547,0.07470703,-0.05078125,-0.048583984,-0.13574219,-0.13183594,-0.00793457,0.017211914,-0.032226562,-0.08496094,-0.021728516,-0.064941406,0.114746094,0.0018081665,0.041503906,0.010681152,-0.009460449,0.1953125,0.059326172,-0.048583984,0.056152344,0.14746094,-0.103027344,0.08251953,0.08984375,-0.09667969,0.14746094,-0.2265625,-0.018920898,0.030761719,-0.12011719,0.06640625,0.072753906,0.091308594,0.080566406,0.12792969,-0.03149414,-0.109375,-0.059814453,0.10205078,0.0063476562,0.044189453,-0.01373291,0.13867188,0.04663086,-0.061279297,-0.21386719,0.056396484,0.08251953,0.125,-0.072265625,-0.18066406,-0.030639648,-0.17285156,-0.03857422,0.08691406,-0.1328125,0.019042969,0.064941406,-0.022949219,-0.03857422,-0.00970459,0.26757812,-0.03857422,-0.061767578,0.19238281,-0.04663086,-0.025878906,0.13671875,-0.064941406,0.044677734,-0.014953613,0.122558594,0.038085938,0.22070312,0.11425781,0.12158203,0.10498047,0.25195312,-0.046875,-0.08496094,0.15527344,-0.063964844,-0.030883789,-0.040527344,0.028686523,0.06982422,0.029052734,-0.047607422,-0.052001953,0.087890625,-0.19238281,0.19238281,0.13378906,-0.13769531,-0.061035156,-0.06640625,0.140625,0.020751953,0.015075684,0.0033874512,0.13964844,-0.07910156,0.05102539,-0.12402344,-0.04248047,0.083496094,-0.15722656,0.052734375,-0.060791016,-0.048583984,0.042236328,-0.06225586,-0.18164062,-0.049316406,-0.09667969,-0.080078125,-0.16015625,-0.0546875,0.002090454,0.010375977,-0.0703125,-0.06591797,0.1015625,0.06591797,0.091796875,-0.08642578,0.08203125,0.035888672,0.061279297,-0.03930664,-0.044921875,0.053710938,-0.0067443848,-0.07763672,0.07861328,0.09082031,0.01586914,0.056884766,0.11767578,0.06347656,0.026245117,0.15820312,0.056884766,0.109375,0.21484375,-0.14941406,0.022949219,0.05493164,-0.10839844,0.029052734,0.14453125,0.11376953,-0.032714844,0.22949219,0.037353516,0.1484375,-0.0047302246,-0.015136719,-0.064453125,0.044433594,-0.052490234,-0.45507812,-0.033203125,0.07763672,0.032226562,0.042236328,-0.1015625,0.114746094,-0.10986328,0.13574219,0.13183594,0.059814453,0.057617188,-0.047851562,0.07763672,0.01574707,0.056396484,-0.19628906,0.11279297,-0.0064086914,-0.14550781,0.053466797,0.111328125,0.05834961,-0.0017089844,0.15332031,-0.014892578,0.115722656,-0.41796875,-0.0703125,0.16699219,-0.08886719,-0.12890625,-0.27929688,0.19628906,-0.14550781,-0.049804688,-0.1796875,-0.028686523,-0.1640625,0.14648438,0.02746582,0.21875,-0.06738281,-0.01586914,-0.10888672,0.16113281,0.076660156,-0.029052734,-0.08984375,0.04272461,-0.003692627,-0.048583984,-0.0028381348,-0.044433594,-0.038330078,0.27539062,0.17871094,0.1640625,0.07080078,-0.012145996,-0.036132812,0.09326172,0.07080078,-0.09765625,0.060546875,-0.15234375,0.11621094,-0.06933594,-0.092285156,-0.087402344,-0.14257812,0.15917969,0.068359375,0.16894531,0.076171875,0.011169434,-0.052490234,0.19335938,0.12109375,-0.27539062,0.09716797,-0.0703125,0.23925781,-0.12597656,-0.023071289,-0.11816406,-0.010681152,0.19335938,0.07421875,0.19824219,0.05029297,-0.11816406,-0.0050354004,0.06201172,-0.06689453,-0.022827148,-0.234375,0.030395508,0.096191406,0.052246094,-0.16796875,-0.09814453,-0.041992188,0.35351562,0.0047302246,0.00022888184,0.10205078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.049316406,-0.22167969,-0.07324219,-0.08105469,-0.08984375,-0.091308594,-0.076171875,-0.13964844,-0.044921875,0.111328125,-0.061523438,0.10253906,0.08544922,-0.09863281,-0.04321289,0.15820312,0.05883789,0.13671875,-0.23828125,-0.100097656,-0.1484375,-0.095214844,0.12402344,0.079589844,0.06738281,0.14550781,0.022705078,-0.033203125,0.039794922,-0.25585938,-0.12792969,0.05493164,-0.049072266,0.013671875,-0.25585938,-0.22070312,0.045410156,0.044921875,-0.14453125,0.08105469,0.05444336,-0.004180908,-0.03466797,0.15625,0.0234375,-0.01928711,-0.24804688,-0.08154297,-0.02746582,-0.08496094,-0.27148438,-0.14355469,-0.12011719,0.08203125,-0.13574219,0.11328125,0.067871094,0.040527344,0.041992188,-0.057861328,0.050048828,-0.099609375,-0.023925781,0.055664062,-0.039794922,-0.30664062,-0.034179688,-0.18164062,0.020019531,0.15136719,0.068359375,-0.125,0.01586914,-0.10888672,-0.07373047,-0.047851562,0.025756836,-0.041015625,-0.0154418945,-0.13867188,0.03564453,0.0095825195,-0.24902344,-0.08691406,0.04345703,-0.27148438,-0.045166016,0.09716797,-0.005065918,0.060791016,0.087402344,0.123046875,0.029907227,0.056640625,0.044433594,-0.012329102,0.016967773,-0.16308594,-0.13183594,-0.013977051,-0.07519531,-0.021484375,0.15722656,0.17773438,-0.123535156,0.078125,0.17773438,0.0859375,-0.057128906,-0.22265625,-0.004333496,0.017944336,-0.14160156,0.013122559,-0.19726562,-0.23242188,-0.13671875,-0.016967773,-0.002822876,0.07324219,-0.07519531,-0.07470703,-0.14355469,-0.052978516,-0.02758789,-0.033203125,-0.049316406,-0.026000977,0.017822266,0.068847656,-0.076660156,-0.106933594,-0.016967773,0.07080078,0.034179688,-0.13476562,0.033203125,0.1015625,0.13769531,0.17871094,0.16796875,0.10595703,-0.16796875,-0.038085938,0.0077209473,0.036376953,-0.0009536743,-0.119140625,0.19335938,0.11230469,-0.14941406,-0.06689453,0.07373047,0.072753906,0.095214844,-0.0003376007,0.072753906,0.028564453,0.20703125,0.0390625,-0.020507812,-0.13476562,0.049072266,0.028076172,-0.21875,0.118652344,0.067871094,0.10253906,0.08935547,0.12207031,-0.064453125,0.060546875,-0.026855469,-0.10986328,0.010070801,-0.12597656,0.061279297,-0.13183594,-0.14257812,0.026123047,-0.26757812,0.06738281,-0.0036468506,-0.110839844,0.096191406,0.059570312,-0.12109375,0.037109375,0.03881836,-0.08935547,-0.13378906,0.041748047,0.06982422,0.033691406,-0.119628906,-0.003768921,-0.28320312,-0.14257812,0.02746582,-0.17578125,0.061279297,-0.118652344,0.005126953,0.026489258,-0.12597656,-0.14257812,-0.27539062,0.056884766,-0.2109375,-0.026245117,-0.025878906,-0.024658203,0.15234375,-0.096191406,-0.107910156,-0.265625,-0.11669922,0.14941406,-0.08984375,0.084472656,0.057373047,0.083496094,-0.21679688,0.06982422,-0.14453125,0.123535156,-0.17871094,-0.19726562,-0.079589844,0.033691406,-0.13378906,-0.107421875,-0.040039062,0.1484375,0.020141602,-0.048828125,-0.052246094,0.16113281,0.103515625,0.14941406,-0.006652832,-0.35742188,-0.041503906,0.23632812,-0.041992188,0.095703125,-0.03100586,0.012145996,-0.076660156,-0.028198242,0.088378906,0.24121094,0.0126953125,-0.110839844,-0.052246094,-0.16796875,0.06591797,-0.08691406,-0.041992188,0.09423828,-0.16113281,0.103027344,0.12597656,0.18261719,-0.09472656,-0.103027344,0.0126953125,-0.04711914,-0.04711914,-0.13085938,-0.002105713,-0.171875,0.016601562,0.029418945,-0.080566406,-0.16308594,-0.14160156,-0.045654297,0.0703125,-0.11035156,0.02709961,-0.13183594,0.034423828,-0.09277344,0.043945312,-0.23925781,-0.27539062,0.04736328,-0.11816406,0.006072998,-0.016967773,-0.084472656,-0.25585938,-0.103027344,0.020874023,0.030517578,-0.030029297,0.09277344,0.020507812,0.053710938,0.05029297,-0.04663086,-0.11816406,0.06933594,-0.24804688,-0.34570312,-0.0029296875,-0.0017318726,-0.103027344,-0.02722168,0.078125,-0.05102539,0.099121094,0.050048828,0.064941406,-0.010070801,0.029663086,-0.10595703,-0.17089844,0.20117188,0.09326172,0.026855469,0.06542969,0.25390625,0.12792969,0.10644531,0.09814453,0.007019043,-0.07714844,-0.033935547,0.13183594,0.18652344,-0.12158203,-0.1328125,-0.046875,-0.10107422,-0.118652344,-0.006378174,-0.034179688,0.0703125,0.13476562,0.0053710938,-0.20898438,0.14550781,-0.09033203,-0.123046875,0.15527344,0.14257812,0.03466797,0.20605469,0.039794922,-0.10205078,0.053222656,0.14257812,-0.31640625,-0.26953125,-0.0061950684,-0.2265625,-0.012573242,-0.079589844,0.02722168,-0.13476562,0.12451172,0.011962891,0.045898438,-0.016357422,-0.1875,-0.18261719,-0.010986328,-0.12060547,-0.28125,-0.11425781,-0.1484375,0.0703125,0.075683594,-0.041503906,0.018066406,-0.18457031,0.049804688,-0.18554688,-0.078125,-0.046142578,-0.16992188,0.11621094,-0.14257812,-0.075683594,-0.107910156,-0.15625,-0.22363281,-0.04663086,-0.15625,-0.15332031,-0.059814453,-0.18457031,-0.0026245117,-0.009887695,0.052978516,0.053466797,-0.13769531,-0.0029449463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.19433594,0.007446289,-0.28125,-0.203125,-0.03540039,-0.087402344,0.1015625,-0.14160156,-0.07861328,0.06542969,0.041748047,-0.024291992,-0.0061950684,0.010437012,-0.028808594,-0.07080078,-0.171875,-0.114746094,-0.14355469,-0.20507812,-0.14550781,-0.0107421875,-0.11035156,0.0625,-0.0048217773,0.063964844,0.076171875,0.045898438,0.13476562,-0.1875,-0.047607422,-0.05029297,-0.034423828,-0.05419922,-0.072753906,-0.1640625,-0.08642578,-0.087890625,0.053466797,-0.21289062,0.0013580322,0.13574219,0.1875,-0.106933594,0.03955078,-0.14160156,0.06591797,-0.040527344,-0.067871094,-0.05859375,0.07763672,-0.030883789,-0.10058594,-0.037597656,-0.027954102,0.011047363,-0.047607422,-0.022583008,0.044433594,-0.022094727,0.10253906,-0.05078125,0.21972656,0.011779785,-0.084472656,0.060302734,-0.12792969,-0.39257812,-0.12597656,0.057861328,-0.055908203,-0.036132812,-0.09667969,0.171875,-0.08935547,-0.123535156,-0.0546875,-0.063964844,-0.064453125,-0.080078125,-0.15429688,-0.021972656,-0.38085938,-0.25,-0.16992188,-0.15429688,0.035888672,-0.17382812,0.02368164,-0.0013580322,-0.22070312,0.03173828,0.24023438,-0.09667969,-0.12988281,-0.12207031,-0.14160156,-0.10986328,0.05029297,-0.18359375,-0.010803223,-0.23632812,0.09765625,0.107421875,0.013061523,-0.010131836,0.060058594,-0.10888672,0.096191406,-0.071777344,-0.014099121,-0.03515625,-0.07714844,-0.13574219,0.025756836,0.01159668,-0.018676758,-0.016357422,-0.00033569336,0.12207031,-0.057128906,-0.02319336,0.099609375,-0.107421875,0.25195312,-0.109375,0.072753906,-0.111328125,0.111816406,-0.10595703,0.22265625,-0.037841797,0.014831543,-0.14257812,-0.050048828,0.052734375,0.095703125,-0.0077209473,-0.1875,0.037841797,0.03857422,-0.18652344,-0.115234375,0.0107421875,-0.11425781,0.17773438,-0.18359375,-0.125,-0.036132812,-0.09423828,0.09033203,0.00064086914,-0.04296875,0.01965332,0.106933594,-0.19140625,-0.03125,-0.10644531,0.26367188,-0.052490234,0.05810547,0.009765625,-0.12597656,-0.1015625,-0.11669922,-0.03491211,-0.040527344,0.003189087,-0.10107422,0.33789062,-0.14160156,0.140625,0.06298828,0.15429688,-0.06347656,-0.16601562,-0.006378174,-0.05517578,-0.03491211,-0.092285156,-0.06347656,-0.15332031,0.053710938,-0.0029144287,0.08300781,0.014709473,0.076171875,0.0107421875,0.23046875,-0.052246094,-0.110839844,-0.118652344,-0.04296875,-0.0019836426,0.048828125,-0.17578125,0.13183594,-0.022094727,0.27148438,-0.09472656,-0.05908203,0.055419922,0.16015625,0.056640625,0.16210938,-0.045166016,-0.061035156,-0.14941406,0.018798828,0.12890625,-0.09472656,0.122558594,0.17480469,0.048339844,0.052001953,-0.068847656,-0.024414062,-0.009155273,0.11230469,0.19238281,0.20800781,-0.08251953,-0.08642578,-0.09423828,-0.08984375,-0.017822266,-0.07714844,0.05126953,-0.110839844,-0.08154297,-0.052001953,0.2109375,-0.052978516,-0.16308594,0.19042969,0.031982422,-0.05859375,-0.007659912,-0.040527344,-0.19335938,-0.17382812,0.021850586,-0.12451172,-0.17480469,-0.068847656,0.20019531,0.10595703,-0.08105469,-0.0071411133,-0.14160156,-0.092285156,0.05859375,-0.0015487671,0.20214844,0.18066406,0.024414062,-0.110839844,0.15429688,-0.084472656,-0.18847656,-0.13867188,0.15625,0.10498047,-0.024902344,-0.013793945,-0.023925781,0.08203125,-0.09765625,0.01928711,0.21972656,-0.14257812,0.07910156,-0.123046875,0.092285156,-0.21289062,-0.09814453,-0.1484375,0.036865234,-0.12451172,-0.14355469,-0.084472656,-0.034179688,-0.095214844,0.12060547,0.22070312,-0.095703125,0.032226562,0.12890625,-0.00592041,0.06298828,-0.0068969727,-0.13183594,0.011230469,0.048583984,-0.07324219,-0.19140625,-0.10058594,-0.064453125,0.029174805,-0.040771484,0.12695312,-0.08886719,-0.049560547,0.14648438,-0.068847656,0.13671875,-0.17382812,0.014099121,-0.3828125,0.064453125,-0.16601562,-0.052490234,0.057617188,-0.12158203,0.03955078,-0.068359375,-0.006591797,-0.07861328,0.10449219,0.12988281,0.015136719,0.07128906,-0.31835938,-0.019897461,-0.096191406,0.110839844,0.10058594,-0.20019531,0.100097656,0.10107422,0.011352539,-0.25976562,0.040771484,0.16503906,-0.11425781,0.17480469,-0.04736328,-0.010559082,-0.19335938,-0.012023926,-0.028320312,0.14746094,0.25390625,0.048339844,0.040527344,-0.0042419434,-0.140625,-0.20996094,0.053466797,0.1953125,-0.2890625,0.18847656,-0.010620117,-0.053710938,-0.079589844,-0.20117188,-0.1484375,0.20898438,0.095703125,-0.08642578,-0.024291992,0.06738281,0.041015625,-0.13378906,-0.10888672,-0.119628906,-0.27734375,0.04711914,0.030639648,0.056396484,-0.13964844,-0.18066406,-0.23144531,-0.044433594,-0.06591797,0.05444336,0.004119873,0.0033874512,0.11767578,0.055908203,-0.012084961,0.03100586,-0.20800781,0.028686523,0.111328125,0.061523438,-0.055908203,0.096191406,-0.13574219,0.1953125,-0.123535156,0.072753906,0.080078125,0.16015625,0.07324219,0.19726562,-0.06225586,0.21582031,-0.17578125,0.013671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.011108398,0.034423828,0.068847656,0.021484375,-0.14453125,-0.15136719,0.16308594,-0.1484375,0.0024261475,0.11425781,-0.034423828,0.076171875,-0.07470703,0.064453125,0.078125,0.07080078,-0.11816406,0.111816406,0.15039062,-0.06591797,-0.13574219,0.0625,0.008300781,-0.15820312,0.08984375,-0.045898438,0.04272461,0.15625,-0.11767578,-0.040527344,0.13574219,-0.110839844,-0.012878418,0.053955078,0.22851562,-0.18945312,-0.17675781,-0.083496094,-0.24902344,-0.16308594,-0.026367188,0.11279297,-0.10888672,0.0015869141,-0.067871094,-0.22949219,0.052734375,0.019165039,-0.03149414,0.0078125,0.12597656,-0.07763672,-0.075683594,0.21582031,-0.13183594,-0.09472656,-0.10644531,0.030029297,-0.033691406,0.083496094,0.032470703,0.12109375,-0.01977539,0.107910156,-0.22363281,0.15136719,0.1796875,-0.004119873,-0.1328125,-0.06982422,-0.063964844,-0.18945312,0.111328125,0.17285156,-0.26953125,-0.07519531,-0.13378906,-0.17480469,0.048583984,0.10986328,-0.01965332,0.07373047,-0.039794922,0.091796875,-0.109375,0.1328125,-0.17675781,-0.15429688,0.043701172,0.061279297,-0.091796875,0.123535156,0.011413574,-0.040039062,-0.109375,-0.3515625,0.12060547,0.10253906,-0.014770508,-0.203125,0.088378906,0.20898438,-0.013671875,-0.27539062,0.016113281,0.024658203,0.1328125,0.10058594,0.012939453,0.05493164,-0.09326172,-0.18066406,0.12890625,-0.04711914,0.049316406,-0.20507812,0.19140625,-0.02709961,0.08203125,0.08154297,-0.012268066,-0.115722656,-0.12060547,0.005432129,-0.049316406,-0.0015258789,-0.0010070801,-0.24902344,0.036865234,0.045654297,0.052734375,-0.30664062,0.24511719,-0.11376953,0.0047912598,-0.040039062,0.00970459,0.051513672,-0.18945312,0.080566406,-0.03881836,0.049560547,0.041992188,-0.076660156,-0.13964844,0.067871094,0.014404297,-0.18261719,-0.053710938,-0.045166016,-0.11669922,-0.36914062,-0.12597656,-0.076171875,-0.059326172,-0.0625,-0.16894531,0.0023956299,-0.041748047,0.071777344,-0.057617188,-0.04272461,-0.0029144287,-0.16503906,-0.15332031,-0.05810547,-0.1875,-0.0074157715,-0.11425781,-0.12695312,0.0024261475,-0.07080078,-0.24023438,-0.09326172,0.06591797,0.028686523,0.18164062,0.060546875,0.09033203,0.05834961,0.028076172,0.033935547,-0.24316406,-0.33789062,-0.016967773,-0.15820312,-0.123535156,-0.010375977,-0.08300781,0.118652344,0.03125,-0.12890625,0.017089844,0.052490234,-0.05078125,0.12451172,0.16992188,0.006378174,-0.15136719,-0.13183594,0.1015625,-0.061035156,-0.15234375,0.123535156,-0.15136719,-0.010803223,-0.030761719,-0.25585938,0.072265625,-0.13085938,0.13085938,-0.12695312,0.20800781,0.05078125,0.18945312,0.023071289,-0.06640625,-0.018310547,-0.031982422,0.10058594,-0.21386719,-0.19921875,-0.12695312,-0.060546875,0.0134887695,0.06591797,-0.03930664,-0.15234375,0.04296875,0.24414062,-0.038085938,-0.10498047,0.084472656,-0.028686523,-0.12597656,0.0859375,-0.18164062,-0.060546875,-0.21679688,-0.11425781,0.0078125,-0.29296875,-0.22460938,-0.004547119,0.1484375,-0.006652832,0.021484375,-0.040283203,-0.08300781,0.0546875,0.02368164,0.008422852,-0.012817383,-0.06640625,0.03125,-0.13574219,-0.011108398,-0.08203125,-0.003540039,0.19433594,-0.040771484,0.045166016,-0.041992188,0.09667969,0.103027344,-0.009521484,-0.14355469,0.048828125,-0.018920898,-0.040771484,-0.012634277,-0.14453125,0.03540039,-0.1484375,0.053710938,0.088378906,-0.034179688,-0.043945312,-0.031982422,0.049316406,-0.118652344,0.107421875,0.041992188,0.088378906,-0.05517578,0.046875,0.09277344,0.014709473,0.25,-0.10058594,0.14648438,0.12792969,-0.04321289,-0.18457031,-0.12158203,-0.09765625,0.09765625,-0.048095703,-0.12792969,0.1171875,-0.025878906,-0.05859375,0.17382812,0.040283203,0.1640625,0.12597656,0.078125,-0.05810547,-0.19335938,-0.07763672,0.08300781,-0.083496094,-0.015625,0.004699707,-0.140625,0.063964844,-0.080566406,0.20214844,0.064453125,-0.002090454,-0.14941406,-0.09472656,-0.05859375,-0.03100586,-0.07373047,0.22265625,-0.125,0.032226562,0.08935547,0.087890625,0.11816406,-0.03540039,-0.026489258,-0.04663086,-0.004211426,-0.19140625,-0.111328125,-0.07861328,-0.13183594,0.048828125,-0.051513672,-0.045654297,-0.057861328,-0.10058594,-0.08203125,-0.026855469,0.19238281,-0.0859375,0.21972656,0.029785156,-0.010131836,-0.10644531,-0.122558594,-0.123046875,-0.0703125,-0.006134033,-0.14257812,-0.07080078,0.026855469,0.030639648,0.080078125,0.06982422,0.060546875,-0.023071289,0.15332031,0.024291992,0.024291992,-0.100097656,-0.049804688,-0.03955078,0.027832031,-0.061035156,-0.088378906,0.041748047,-0.0023498535,0.0546875,0.043701172,0.061767578,-0.008544922,0.037841797,0.15332031,0.06591797,-0.12451172,0.033203125,0.107421875,0.076171875,0.09765625,-0.0072021484,-0.21777344,0.029541016,0.022094727,0.08886719,0.021728516,-0.15234375,-0.083984375,0.20214844,-0.11425781,0.123046875,-0.1640625,0.14355469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.10449219,-0.079589844,-0.11035156,0.009338379,-0.1796875,-0.12597656,0.012207031,0.22265625,0.016845703,0.09375,0.13574219,-0.026123047,-0.014953613,0.13574219,-0.05493164,0.08300781,-0.0005531311,0.1328125,-0.110839844,-0.010375977,-0.06201172,0.095214844,0.08935547,0.091308594,-0.01965332,-0.03955078,0.104003906,-0.26367188,-0.050048828,0.20507812,0.26953125,0.10205078,0.25,-0.076660156,0.034179688,-0.026367188,-0.025756836,-0.24902344,0.09765625,-0.020996094,-0.03515625,0.003036499,-0.115722656,0.053222656,-0.00010061264,0.003967285,0.030395508,0.05029297,0.110839844,-0.053222656,0.012023926,0.007873535,-0.1015625,-0.1015625,0.10253906,0.103027344,-0.01977539,-0.006011963,-0.043701172,0.05102539,-0.07861328,0.25585938,-0.03149414,-0.265625,0.049804688,-0.006164551,0.12890625,-0.0072631836,0.27148438,0.012329102,0.09326172,0.26171875,-0.012878418,0.14941406,-0.29296875,0.111816406,-0.045654297,0.47070312,0.033203125,-0.23730469,0.009033203,-0.19042969,-0.15039062,0.07373047,0.079589844,0.115722656,-0.014770508,0.041992188,0.026245117,-0.045166016,-0.012756348,-0.06591797,0.0053100586,0.002746582,-0.00063705444,-0.041503906,0.07714844,-0.056640625,0.021972656,-0.040283203,0.12109375,-0.041503906,0.012939453,-0.18457031,-0.044433594,-0.24316406,0.17382812,-0.12011719,-0.12695312,0.017700195,-0.012817383,0.0625,0.021606445,-0.06738281,-0.13183594,-0.14941406,-0.16601562,0.09472656,-0.068847656,0.10107422,0.005645752,-0.16796875,0.008361816,-0.05908203,0.05493164,0.027709961,0.020019531,0.067871094,-0.19042969,0.14160156,-0.00062942505,-0.15625,-0.10253906,0.10888672,0.078125,0.080566406,-0.046142578,-0.07861328,-0.037353516,0.051513672,-0.027832031,-0.017578125,-0.08691406,-0.072753906,-0.02734375,-0.030029297,0.19042969,0.2578125,0.1875,-0.033203125,0.06298828,-0.1796875,0.06933594,0.079589844,-0.022094727,-0.36914062,0.08300781,0.061279297,0.1328125,-0.10986328,-0.07519531,-0.099609375,-0.09082031,0.076660156,0.27539062,0.08642578,0.07519531,-0.08300781,-0.056884766,-0.057617188,0.038085938,-0.026245117,-0.09082031,0.12988281,-0.03491211,-0.030029297,0.022583008,-0.13671875,-0.06933594,0.110839844,-0.0042419434,-0.07861328,-0.17871094,0.13574219,-0.00793457,-0.16601562,-0.08251953,-0.026367188,-0.07861328,-0.15039062,0.09814453,0.068847656,0.041503906,0.107910156,0.087402344,-0.076171875,-0.055419922,-0.115234375,-0.2578125,-0.045898438,0.021850586,-0.18066406,0.14453125,0.05517578,0.13671875,0.072265625,-0.111816406,-0.055664062,-0.14453125,0.15136719,0.021606445,-0.052978516,-0.12207031,0.106933594,-0.296875,-0.068847656,0.013671875,0.022094727,-0.17675781,-0.03491211,0.13378906,-0.15136719,0.05053711,-0.021728516,0.12597656,-0.07421875,0.040527344,0.13183594,-0.0077209473,-0.328125,0.076660156,-0.07470703,-0.008056641,0.0039978027,0.0119018555,-0.13085938,0.042236328,0.007659912,-0.14746094,-0.103027344,-0.16015625,0.060302734,0.032714844,0.03466797,0.18554688,-0.119140625,-0.03515625,0.01940918,0.08105469,-0.21972656,0.059326172,-0.21582031,0.0061950684,0.099121094,0.037353516,0.072753906,0.24316406,0.0546875,0.048583984,0.072265625,-0.03881836,-0.033935547,-0.0047302246,-0.16015625,-0.0020599365,-0.024902344,-0.10595703,-0.068359375,0.02722168,0.06347656,-0.14160156,0.18164062,-0.088378906,0.12011719,0.049560547,-0.10498047,-0.23144531,0.16601562,-0.23339844,0.064941406,0.11035156,-0.15429688,-0.03125,0.14453125,-0.0087890625,-0.023803711,-0.11279297,0.072265625,-0.1875,0.03149414,0.03100586,0.064941406,-0.013427734,0.22070312,-0.2109375,-0.044921875,-0.053466797,-0.12597656,0.019042969,0.010864258,0.078125,-0.13476562,-0.045654297,0.0119018555,-0.13867188,0.114746094,0.24804688,0.1796875,0.060302734,-0.068847656,0.092285156,0.09716797,-0.019165039,0.022216797,-0.044433594,-0.23828125,-0.08935547,0.056152344,0.0390625,-0.09667969,0.08935547,-0.020751953,0.0099487305,0.033691406,-0.079589844,0.006225586,-0.018798828,0.061523438,-0.011291504,-0.29882812,-0.091796875,-0.15429688,-0.078125,-0.011169434,-0.0035858154,0.022949219,0.056152344,-0.08154297,-0.013244629,0.052246094,0.0019378662,0.14355469,-0.092285156,0.2109375,-0.021240234,-0.11035156,-0.011047363,0.032470703,0.080566406,-0.0018310547,-0.12597656,-0.048339844,-0.03930664,0.09033203,0.0027923584,-0.080078125,-0.13378906,-0.0058288574,-0.061035156,-0.026733398,0.10498047,-0.08203125,0.014343262,0.022216797,-0.05078125,0.28515625,-0.07080078,-0.13964844,-0.15527344,0.040771484,0.14453125,-0.037597656,-0.05883789,-0.21191406,-0.099121094,0.07519531,0.08886719,-0.14355469,0.22363281,0.033691406,-0.053955078,-0.056152344,0.12060547,-0.076660156,-0.11425781,0.17675781,0.15625,0.26367188,-0.08105469,-0.10058594,-0.03466797,0.0011978149,0.040771484,0.025634766,-0.17773438,0.13574219,-0.045898438,-0.018676758,-0.040283203,-0.07519531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15234375,-0.34960938,-0.099609375,-0.045898438,-0.24511719,0.28710938,-0.06347656,0.0134887695,-0.078125,-0.040527344,-0.072265625,-0.04345703,-0.09326172,-0.16796875,0.015991211,-0.027709961,-0.13671875,-0.35742188,-0.21386719,-0.004699707,-0.29101562,-0.12890625,-0.119140625,0.140625,0.08544922,-0.079589844,0.018310547,0.15332031,-0.05419922,-0.14550781,0.028686523,-0.087890625,0.08300781,-0.025390625,-0.08251953,-0.20117188,-0.028198242,-0.15820312,0.056884766,0.08154297,-0.023071289,-0.15332031,0.0087890625,0.125,-0.12109375,0.024169922,0.04272461,-0.17089844,0.04345703,0.10595703,-0.1484375,-0.22753906,0.021484375,0.18652344,0.02758789,0.15234375,-0.103515625,-0.15625,0.021728516,0.024658203,0.05078125,-0.017944336,0.049560547,-0.2578125,0.048828125,-0.1484375,-0.25976562,-0.17578125,0.044921875,-0.2578125,0.05029297,-0.12402344,0.032958984,-0.15625,-0.06201172,-0.09326172,0.016845703,-0.06591797,-0.021972656,-0.11621094,-0.3359375,0.07373047,-0.19140625,0.100097656,-0.23144531,-0.029541016,-0.044189453,0.15039062,0.04272461,-0.030395508,0.08203125,0.034179688,0.1015625,-0.09423828,-0.13769531,-0.0043945312,-0.1171875,0.033203125,-0.15820312,0.08935547,-0.05078125,-0.022949219,-0.04272461,0.0030517578,0.08642578,0.07763672,-0.09863281,0.052978516,0.017089844,-0.16699219,-0.13085938,-0.13378906,-0.0018920898,-0.0012207031,-0.13183594,-0.16601562,0.030761719,0.00078582764,-0.15429688,0.2421875,-0.091796875,0.030883789,-0.083984375,-0.11621094,-0.008605957,-0.09082031,0.18066406,-0.15234375,0.20117188,0.140625,-0.29492188,0.0079956055,0.11279297,0.36914062,-0.08642578,-0.03564453,-0.026611328,-0.036865234,0.12060547,-0.076171875,0.15039062,0.12792969,-0.007385254,0.038330078,-0.05053711,0.018066406,-0.2578125,-0.20117188,0.13867188,-0.14355469,-0.015319824,-0.14453125,0.092285156,0.049316406,-0.16503906,0.12158203,0.10253906,-0.046875,0.12402344,0.009155273,-0.12890625,-0.20703125,-0.19628906,0.056396484,-0.16503906,0.15136719,-0.088378906,-0.061279297,0.104003906,0.12109375,0.05859375,0.18457031,-0.01940918,0.01586914,0.078125,-0.044433594,-0.032958984,-0.1640625,-0.05029297,0.09863281,0.09326172,0.07080078,-0.09033203,0.014892578,-0.03930664,-0.0052490234,-0.030151367,-0.16015625,-0.08544922,0.008422852,-0.08154297,-0.03857422,-0.06689453,-0.21679688,0.0049438477,-0.06982422,-0.016967773,-0.059570312,-0.17871094,-0.11279297,0.028442383,0.03112793,0.010803223,-0.05493164,-0.047851562,-0.067871094,-0.09082031,-0.15429688,0.02758789,-0.044433594,-0.09277344,-0.015197754,-0.03515625,-0.0546875,-0.029296875,-0.07763672,-0.07373047,0.040771484,0.015136719,0.060302734,-0.08642578,-0.0077819824,-0.036865234,0.07373047,-0.05029297,0.004119873,-0.10839844,0.023925781,0.05517578,-0.14648438,-0.044189453,-0.13964844,-0.057128906,0.0058898926,0.037841797,0.19335938,0.029663086,-0.024536133,0.09423828,0.047607422,-0.16308594,-0.103027344,-0.20800781,0.08691406,0.19921875,0.07861328,-0.13085938,-0.23046875,0.088378906,0.010864258,0.09472656,-0.0146484375,0.17578125,0.15625,-0.13867188,0.10546875,0.16699219,-0.10205078,0.04638672,0.21777344,0.1171875,-0.037109375,0.15917969,-0.19921875,0.100097656,-0.064453125,-0.020874023,0.044921875,-0.071777344,0.05078125,-0.16308594,0.03125,-0.08300781,-0.04711914,0.010498047,-0.06591797,-0.04711914,-0.29101562,0.05126953,-0.083984375,0.013549805,0.09814453,0.043701172,0.026123047,0.016723633,-0.040527344,0.088378906,-0.22265625,0.016845703,-0.056640625,0.079589844,-0.006500244,0.0072631836,-0.061035156,-0.032958984,-0.0050354004,-0.09472656,0.040283203,-0.06347656,0.020874023,-0.080078125,0.0021514893,0.010009766,-0.083984375,-0.08251953,0.07910156,0.044921875,0.06591797,0.16601562,-0.07861328,-0.08203125,-0.14257812,0.03125,0.014709473,0.035888672,0.14746094,0.072265625,0.103515625,0.08105469,0.20214844,-0.24414062,-0.080078125,-0.25390625,-0.12890625,0.044433594,0.0546875,-0.061523438,-0.30859375,-0.019042969,-0.13671875,-0.18554688,-0.07714844,0.19433594,-0.118652344,-0.06225586,0.08886719,-0.3046875,-0.17871094,-0.012634277,0.053222656,0.09472656,0.140625,0.13183594,-0.19824219,-0.04638672,-0.14160156,-0.07324219,0.064453125,0.06542969,0.03173828,-0.048583984,-0.008605957,-0.171875,-0.13378906,0.07861328,-0.13671875,0.057617188,-0.053955078,-0.09375,0.17773438,0.010620117,-0.091308594,-0.08935547,0.076660156,0.075683594,0.03515625,-0.036865234,-0.014038086,0.042236328,-0.037109375,0.049072266,-0.04321289,0.119628906,-0.23828125,0.04663086,-0.024291992,0.09814453,-0.08544922,0.16894531,0.12988281,0.16210938,-0.08642578,0.0053100586,0.024536133,-0.20703125,0.048339844,0.056884766,0.10595703,0.103027344,0.007080078,0.017822266,0.068359375,-0.04638672,-0.013916016,0.0063476562,-0.0069274902,0.12207031,0.05517578,-0.12158203,-0.031982422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.24609375,0.10107422,0.03515625,0.015991211,-0.0034637451,-0.15820312,-0.08251953,-0.015319824,0.055664062,-0.09472656,-0.10107422,0.031982422,-0.068847656,0.076171875,-0.27148438,0.068359375,-0.09423828,-0.111816406,-0.056396484,-0.049316406,0.084472656,-0.11230469,0.09716797,-0.09814453,-0.061035156,0.08935547,-0.02734375,0.030273438,0.091308594,0.068847656,-0.016357422,0.07470703,-0.14257812,-0.111816406,0.005645752,-0.05810547,0.19042969,-0.052734375,-0.079589844,-0.00390625,-0.01550293,-0.07373047,-0.1015625,0.026855469,-0.19433594,0.14550781,0.08984375,-0.03857422,-0.09277344,0.11279297,-0.015563965,-0.091308594,0.12109375,-0.19140625,0.095214844,0.16992188,0.09375,0.033935547,0.03466797,0.025268555,0.08886719,0.16992188,0.052001953,0.05078125,0.01586914,-0.171875,0.08691406,-0.068359375,-0.032714844,-0.22265625,-0.15527344,-0.15234375,0.022583008,-0.16601562,-0.027832031,0.05444336,0.09033203,0.22851562,0.052734375,0.0859375,-0.12597656,0.044677734,0.19628906,-0.045410156,0.042236328,0.12988281,-0.10205078,0.072265625,-0.047851562,0.032958984,-0.014160156,0.053710938,-0.06933594,0.13085938,0.071777344,-0.08251953,-0.14355469,-0.05834961,0.056640625,0.0028839111,-0.1015625,-0.15332031,-0.03955078,-0.061035156,-0.12109375,0.055908203,-0.2109375,0.10986328,-0.012023926,0.017333984,0.16210938,0.008361816,-0.08105469,-0.012756348,0.006225586,-0.042236328,0.013549805,0.14257812,0.05517578,0.125,0.03955078,0.079589844,-0.06689453,-0.03100586,-0.016601562,0.0049743652,-0.18066406,0.09863281,0.13867188,0.22070312,0.040771484,0.045654297,-0.100097656,-0.19335938,0.06689453,0.05810547,0.033447266,-0.0065612793,0.047851562,0.0019073486,0.02709961,-0.18847656,-0.006866455,0.09033203,0.007873535,-0.08886719,0.078125,0.010864258,-0.104003906,-0.08691406,-0.07373047,0.080566406,-0.06225586,-0.018310547,-0.07763672,-0.067871094,-0.0017318726,-0.18457031,0.018798828,0.23046875,-0.011657715,0.037109375,0.1796875,0.071777344,-0.04296875,-0.30859375,-0.12060547,0.140625,-0.02758789,-0.016113281,-0.088378906,0.029052734,0.118652344,0.052001953,0.09472656,-0.096191406,-0.050048828,0.203125,0.09423828,-0.021728516,-0.028442383,0.17480469,0.17285156,-0.001411438,0.09472656,-0.038085938,-0.018676758,0.002456665,-0.04248047,0.10644531,0.2109375,0.032714844,-0.171875,-0.16796875,0.068847656,-0.040527344,0.052978516,0.26171875,0.087402344,0.020507812,0.096191406,-0.00390625,0.11328125,-0.0074157715,0.028320312,0.046142578,0.047607422,0.024414062,-0.06982422,0.049560547,0.05859375,0.06738281,0.095214844,-0.045166016,-0.022460938,0.063964844,-0.104003906,0.034179688,-0.15820312,-0.030883789,0.114746094,-0.04663086,-0.17285156,-0.14941406,-0.060302734,-0.14355469,0.08544922,0.09863281,-0.122558594,-0.095703125,0.20019531,0.08886719,-0.0079956055,-0.022216797,-0.043701172,-0.140625,-0.140625,0.17578125,-0.1640625,0.033203125,-0.06201172,-0.05419922,0.04638672,0.08886719,0.088378906,0.022460938,0.10253906,0.16699219,0.017944336,-0.10107422,0.13671875,-0.072265625,0.083984375,0.06542969,0.055664062,-0.09033203,-0.017578125,-0.030273438,-0.0035552979,-0.123535156,-0.11669922,0.24414062,0.09472656,0.09423828,0.07763672,-0.0040893555,0.010803223,0.064453125,-0.049072266,0.0049743652,0.021606445,-0.17480469,-0.032958984,0.05859375,-0.005126953,0.03881836,-0.08642578,-0.06542969,-0.10888672,0.09423828,0.030517578,-0.013000488,-0.10449219,0.029174805,0.07519531,-0.03930664,-0.030517578,-0.15332031,-0.107421875,-0.14941406,0.068847656,0.13964844,-0.21777344,-0.18847656,-0.03564453,0.020263672,0.1015625,-0.14648438,0.048339844,0.08154297,-0.057617188,0.033691406,-0.029296875,-0.14550781,0.076171875,-0.19238281,0.044189453,-0.006866455,-0.014587402,-0.068359375,-0.0025787354,0.110839844,-0.083496094,0.015563965,-0.21875,0.07519531,-0.030029297,-0.03540039,-0.15429688,-0.14355469,-0.047607422,-0.22363281,-0.10498047,0.13085938,-0.20605469,0.15527344,0.045898438,-0.06347656,0.041503906,0.10498047,0.14453125,0.030639648,0.030639648,-0.23144531,0.049316406,0.11767578,-0.18066406,-0.125,-0.14453125,0.026489258,-0.1796875,-0.03491211,-0.22265625,-0.0008621216,0.11621094,-0.04296875,0.08691406,0.100097656,-0.00970459,-0.03955078,0.043945312,0.017700195,-0.16308594,0.17675781,-0.21875,0.032714844,-0.20507812,-0.17480469,0.08544922,-0.1171875,0.08300781,-0.03515625,-0.011108398,0.14648438,-0.008911133,-0.22070312,0.14648438,0.06738281,-0.18554688,0.099609375,-0.19628906,0.022827148,-0.25585938,-0.10058594,-0.08203125,-0.14453125,-0.099609375,0.049072266,-0.20019531,0.063964844,-0.037353516,-0.012268066,0.053710938,0.033203125,-0.07080078,0.203125,-0.07128906,0.055419922,-0.19238281,-0.03491211,0.049316406,0.0099487305,-0.076660156,-0.05444336,-0.024780273,0.17285156,-0.099609375,0.022216797,0.091796875,0.15136719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.359375,-0.048828125,-0.076660156,0.16210938,0.020019531,0.008178711,-0.10253906,0.14257812,-0.0037384033,0.021484375,-0.11376953,-0.21875,0.109375,0.16992188,-0.30664062,0.010986328,-0.099609375,0.03149414,0.12207031,0.064941406,-0.10449219,0.22558594,0.091796875,0.1875,-0.08691406,0.122558594,-0.03466797,0.13964844,0.061279297,0.11328125,-0.1875,-0.17089844,-0.00046920776,-0.091308594,0.08154297,0.07714844,0.047607422,0.007873535,0.03491211,0.021484375,0.17089844,-0.06542969,0.09716797,-0.09863281,0.14355469,-0.05102539,-0.042236328,-0.26953125,0.125,-0.19140625,0.12158203,-0.051513672,0.05883789,0.111816406,-0.017211914,0.072753906,0.057861328,0.06298828,0.14746094,0.1640625,0.25,0.039794922,-0.040527344,0.015258789,-0.048095703,-0.17480469,0.27539062,-0.09326172,0.12792969,-0.15234375,0.14355469,0.10888672,0.051757812,0.04736328,-0.21289062,0.23535156,0.048339844,0.07714844,0.15429688,-0.084472656,-0.52734375,-0.14257812,-0.06982422,0.13476562,-0.22167969,-0.072753906,-0.14160156,-0.055419922,0.072753906,-0.038330078,0.040283203,-0.27539062,0.092285156,-0.08251953,0.02355957,0.19433594,-0.076660156,-0.07324219,0.026245117,0.052978516,-0.049804688,0.05126953,0.002960205,-0.018676758,-0.00680542,0.21191406,-0.08251953,0.026611328,0.107421875,-0.03149414,0.026000977,0.005493164,0.022827148,-0.087890625,0.087402344,-0.033447266,0.16796875,0.050048828,0.0076904297,-0.022460938,-0.15039062,0.03149414,0.07421875,0.04736328,0.091308594,-0.1328125,-0.053710938,-0.16796875,0.08691406,0.079589844,0.27929688,-0.029296875,0.09667969,0.057373047,0.064941406,0.010070801,-0.080078125,0.16308594,0.09667969,-0.0008773804,0.048828125,0.06225586,-0.12988281,-0.037109375,0.083984375,0.1875,0.16113281,-0.047607422,-0.022094727,0.046142578,-0.047607422,-0.14160156,0.015563965,0.005584717,-0.13574219,0.1796875,0.0087890625,0.14550781,0.22363281,0.1953125,-0.2421875,0.1640625,0.068847656,-0.053222656,-0.20214844,-0.20898438,0.08886719,-0.30664062,0.07714844,-0.20214844,0.014099121,0.13085938,0.068847656,-0.13867188,-0.040283203,0.01965332,-0.088378906,-0.0078125,0.06640625,0.14746094,-0.103515625,0.024169922,-0.17285156,-0.16210938,0.07861328,-0.071777344,0.17285156,-0.031982422,0.1796875,-0.125,0.061035156,-0.0041503906,-0.13671875,-0.012573242,-0.02746582,0.099121094,0.001953125,0.083984375,-0.31835938,-0.14550781,-0.007507324,-0.059570312,0.033935547,-0.13085938,-0.09863281,-0.034423828,-0.09765625,0.111328125,-0.04736328,0.171875,0.080078125,0.067871094,0.07373047,-0.1328125,0.203125,0.16503906,0.13574219,-0.1015625,0.14257812,-0.09277344,-0.028198242,0.0625,0.15136719,-0.025390625,-0.0058898926,0.2421875,0.05078125,-0.007659912,0.14550781,-0.02722168,-0.030151367,0.07470703,0.13964844,0.035888672,-0.12695312,0.11816406,-0.040039062,0.05859375,-0.03515625,0.055419922,-0.12158203,0.123535156,-0.04711914,0.04248047,-0.23339844,0.15722656,0.20996094,-0.21582031,0.12207031,-0.33398438,0.21777344,0.18652344,-0.078125,0.025512695,0.08203125,-0.15039062,-0.05078125,-0.0859375,0.051757812,-0.072753906,-0.15820312,-0.03125,0.21289062,0.07910156,-0.07714844,-0.14941406,0.084472656,0.061035156,0.07421875,0.08154297,-0.080078125,-0.036621094,-0.064453125,-0.08251953,0.057128906,0.027709961,-0.012878418,0.13085938,-0.20214844,-0.23535156,0.011779785,-0.09082031,0.18652344,0.023925781,0.064941406,-0.14941406,0.013305664,-0.012023926,-0.13867188,0.22558594,-0.033691406,-0.028564453,0.007659912,0.006652832,0.0009918213,-0.078125,0.03149414,-0.0010528564,-0.13671875,-0.22460938,-0.03125,0.05419922,0.09326172,0.060546875,-0.20117188,0.36523438,-0.12597656,-0.027832031,0.11816406,0.14257812,-0.0070495605,0.08691406,-0.00049209595,0.0625,-0.13378906,0.055419922,-0.06738281,-0.09082031,0.19921875,0.015197754,-0.26757812,0.14941406,-0.12695312,-0.16210938,-0.049316406,0.21679688,-0.34570312,-0.22460938,0.18359375,-0.14941406,-0.23144531,0.13964844,0.060791016,-0.052734375,-0.13476562,-0.078125,-0.01940918,-0.11230469,-0.18359375,-0.14648438,-0.09082031,-0.057373047,-0.060058594,-0.31445312,0.01361084,-0.010314941,0.005065918,-0.030273438,0.051757812,-0.15625,-0.09277344,0.06689453,0.119628906,0.029296875,-0.10644531,0.022949219,-0.25585938,0.06640625,-0.16992188,-0.17675781,0.15429688,-0.12158203,0.044433594,-0.11621094,0.19921875,0.123535156,-0.26367188,0.13769531,0.104003906,-0.11328125,-0.087890625,0.0014801025,0.043701172,-0.08642578,-0.12207031,-0.06347656,-0.061523438,0.029907227,-0.08105469,-0.18457031,0.07763672,0.023925781,0.16015625,-0.0073547363,-0.14355469,0.16503906,-0.14746094,0.17871094,-0.03149414,-0.083496094,0.15527344,0.010925293,0.040527344,-0.21582031,0.025634766,-0.06738281,-0.052001953,0.099609375,0.026123047,-0.09326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.123535156,0.10595703,0.045166016,-0.19140625,-0.020751953,0.16210938,0.08691406,0.19140625,0.1015625,0.12158203,0.019165039,-0.028930664,0.045410156,-0.24511719,0.12109375,-0.068359375,-0.017944336,-0.06298828,0.033447266,0.019165039,0.029541016,0.18457031,0.028442383,0.20703125,-0.026855469,-0.087402344,0.10644531,0.016479492,-0.037109375,-0.14257812,-0.16503906,0.17480469,0.10253906,-0.1875,-0.092285156,-0.15527344,-0.03149414,0.20605469,0.0009765625,-0.030761719,0.049316406,0.12011719,-0.024536133,-0.21484375,-0.0065612793,-0.10546875,0.11328125,0.022705078,-0.28515625,-0.033203125,-0.09326172,0.111328125,-0.04248047,0.036132812,0.05908203,-0.12890625,0.029907227,0.014038086,0.14453125,0.23144531,0.020751953,-0.08984375,-0.051513672,0.008422852,-0.14257812,0.049560547,-0.072753906,0.076660156,-0.08251953,-0.0546875,0.015258789,0.34375,-0.0078125,-0.06982422,0.07080078,-0.05444336,-0.06738281,-0.10498047,-0.11230469,0.009460449,0.076171875,0.15917969,-0.01586914,-0.14257812,-0.01965332,-0.06982422,-0.17675781,0.13964844,-0.037353516,0.0049438477,-0.19824219,0.055664062,-0.15625,-0.14648438,-0.08251953,0.05419922,-0.03955078,0.123046875,-0.26171875,0.071777344,-0.053710938,-0.07324219,0.07910156,0.051513672,0.061279297,0.07421875,-0.099609375,-0.050048828,-0.041748047,-0.31054688,-0.09033203,0.01953125,-0.20117188,-0.16699219,0.05810547,-0.19140625,-0.22265625,-0.11621094,-0.12695312,0.13671875,0.059570312,-0.14355469,0.19238281,-0.008850098,-0.060791016,-0.11669922,0.06298828,-0.17480469,-0.18066406,-0.115722656,-0.048339844,-0.17382812,0.024047852,0.064453125,-0.013916016,-0.021850586,0.012573242,0.0017700195,0.028198242,-0.0078125,0.016235352,-0.008300781,-0.14746094,-0.37890625,-0.049560547,-0.21875,-0.057373047,-0.009887695,-0.103515625,-0.10253906,-0.025024414,0.078125,-0.016113281,0.060058594,0.15917969,-0.123046875,0.060302734,-0.028442383,-0.13867188,0.06347656,-0.02722168,-0.15722656,-0.016235352,0.11376953,-0.053710938,0.0546875,0.03173828,0.06933594,0.03857422,0.060791016,-0.15625,-0.0390625,-0.072753906,-0.13085938,-0.030883789,0.06298828,-0.25390625,-0.11669922,0.0005493164,0.076171875,-0.021728516,-0.17578125,0.115722656,0.10644531,-0.07080078,-0.00579834,0.008728027,-0.06347656,-0.04272461,-0.06347656,-0.07714844,-0.16308594,-0.09033203,-0.12695312,-0.080566406,0.13574219,-0.079589844,-0.25585938,-0.072753906,0.10449219,9.250641e-05,0.083496094,0.0546875,0.0013809204,-0.064941406,0.09277344,0.060302734,0.080566406,-0.26171875,-0.026000977,-0.051757812,0.13183594,0.02319336,-0.038330078,-0.031982422,-0.011230469,0.04638672,-0.12109375,0.018432617,-0.020751953,0.012268066,0.046875,-0.06738281,-0.3359375,0.26953125,-0.171875,-0.22753906,0.03515625,0.122558594,-0.15625,0.00491333,-0.030395508,0.008361816,-0.125,-0.08935547,0.14160156,-0.09423828,0.06347656,-0.06298828,-0.2890625,-0.13378906,-0.10546875,-0.06640625,0.18359375,-0.057373047,-0.0003528595,-0.100097656,-0.19238281,-0.10839844,-0.01574707,0.014709473,0.123535156,-0.020019531,-0.053955078,-0.09423828,-0.08984375,-0.17382812,0.0010604858,0.08154297,-0.13085938,-0.07470703,-0.0005455017,-0.08105469,0.06640625,-0.029907227,-0.07714844,0.1015625,0.040771484,0.017456055,0.05029297,-0.03491211,-0.11376953,-0.17285156,0.02319336,-0.11621094,0.024902344,0.00041007996,0.008666992,-0.014099121,-0.025878906,0.067871094,0.015075684,-0.032470703,-0.06542969,-0.08935547,0.107421875,0.11621094,-0.044921875,-0.107910156,-0.13378906,-0.15429688,0.011352539,-0.020141602,-0.024780273,-0.072265625,0.04711914,0.1015625,-0.045166016,0.042236328,-0.024658203,-0.18652344,0.013061523,-0.087402344,-0.24707031,0.16796875,0.14160156,-0.15429688,0.055908203,-0.06542969,0.091308594,0.1171875,0.01940918,-0.052978516,0.09765625,0.053222656,0.15527344,-0.048339844,0.0077209473,0.15917969,-0.123535156,0.03125,-0.2890625,-0.07763672,-0.084472656,0.012939453,-0.03857422,0.03515625,-0.002090454,-0.060058594,0.0030517578,0.016113281,0.092285156,-0.08154297,0.051757812,-0.03491211,-0.27539062,-0.27148438,0.09375,0.045166016,0.103515625,-0.08496094,-0.0015335083,-0.12451172,-0.12988281,0.08886719,-0.11767578,0.011108398,0.03540039,0.08154297,0.104003906,-0.13964844,-0.05859375,-0.071777344,-0.35351562,-0.0075683594,0.041503906,-0.140625,-0.06933594,-0.06933594,0.10839844,0.080078125,0.056396484,0.12060547,0.047607422,-0.09716797,-0.099609375,-0.05126953,-0.11279297,-0.032958984,-0.07763672,0.28320312,-0.1640625,0.048583984,0.12158203,0.00037765503,0.15039062,0.033447266,-0.036865234,0.13378906,-0.008483887,-0.05078125,0.03955078,0.061279297,-0.2734375,-0.14941406,0.059814453,0.15332031,0.048339844,0.0071105957,0.056152344,0.044433594,0.024658203,0.0010070801,0.14941406,0.057861328,0.045898438,0.02319336,0.01184082,0.008728027,-0.390625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13476562,-0.064453125,0.1796875,-0.19726562,-0.020507812,-0.016845703,0.016113281,0.15429688,0.041503906,-0.16113281,-0.1640625,0.04663086,0.013366699,0.16015625,-0.072753906,-0.16015625,-0.13085938,-0.025512695,0.13183594,0.038085938,0.16796875,-0.04345703,-0.10205078,0.16601562,-0.03930664,-0.17773438,0.0138549805,0.18066406,-0.14453125,0.16113281,-0.033935547,-0.021118164,-0.19628906,-0.04345703,-0.029052734,-0.037109375,-0.026611328,0.036376953,-0.17382812,0.040527344,0.115722656,-0.056640625,0.2890625,0.14453125,0.014587402,0.171875,0.08544922,-0.12890625,-0.00340271,0.033447266,-0.111328125,-0.055908203,-0.05444336,-0.021362305,0.17382812,-0.23242188,0.12890625,0.0014953613,-0.091308594,-0.07373047,0.01928711,-0.09472656,0.051757812,-0.26367188,-0.22363281,0.032226562,-0.06298828,0.0390625,-0.20214844,-0.25195312,0.25976562,-0.125,-0.060058594,0.06689453,-0.16992188,-0.35546875,0.021972656,-0.14453125,-0.068359375,-0.11425781,-0.14941406,0.018798828,-0.03564453,-0.18164062,-0.0625,0.060302734,0.064941406,0.22558594,0.0046081543,-0.20800781,0.03515625,-0.029418945,-0.15917969,0.047607422,-0.109375,-0.12890625,0.05908203,0.006225586,0.021728516,-0.12792969,-0.016845703,0.0023345947,0.04638672,0.11669922,0.11425781,-0.15039062,-0.02331543,0.234375,-0.020019531,0.004058838,0.111328125,0.08154297,-0.055664062,0.20019531,0.033447266,-0.2265625,-0.015991211,-0.15527344,-0.075683594,0.015197754,-0.016845703,0.016113281,-0.008056641,0.11279297,0.033203125,0.16503906,0.171875,-0.31640625,0.13085938,0.25,0.048339844,0.15625,0.042236328,-0.12695312,-0.053222656,-0.027954102,0.04638672,-0.08935547,0.06738281,0.06591797,0.13964844,0.25976562,-0.02331543,-0.063964844,-0.04638672,0.10058594,-0.00680542,-0.02709961,-0.027709961,-0.12597656,0.15332031,-0.076171875,-0.10205078,0.018066406,-0.03149414,0.026977539,-0.09082031,0.13476562,-0.12207031,-0.17480469,-0.115234375,-0.15527344,-0.10888672,-0.076171875,-0.08642578,0.3125,0.15917969,0.083496094,-0.009643555,-0.17382812,-0.103515625,-0.09033203,-0.15234375,0.171875,0.053710938,-0.25195312,-0.0078125,-0.09667969,0.037841797,-0.20019531,-0.114746094,0.061523438,0.16113281,0.08251953,0.06347656,-0.06689453,0.14746094,-0.15820312,0.0087890625,0.07324219,0.0005302429,0.028564453,-0.04296875,0.17089844,-0.18847656,-0.16796875,-0.015380859,0.020019531,0.013183594,0.017822266,-0.08251953,-0.014770508,0.12890625,-0.009216309,-0.018676758,0.3046875,-0.061523438,-0.18652344,0.015625,-0.076171875,0.055664062,0.20019531,0.122558594,-0.11328125,-0.051757812,0.0034942627,-0.06640625,0.11669922,0.059814453,0.18945312,0.041992188,0.040283203,0.1796875,0.076171875,-0.056152344,0.12451172,0.13378906,-0.088378906,0.0859375,0.09277344,-0.19628906,-0.115234375,0.0154418945,0.041015625,0.08984375,0.1953125,-0.030151367,-0.008666992,0.12011719,-0.06201172,-0.045166016,-0.18652344,-0.19921875,-0.083984375,-0.13671875,0.06982422,0.06298828,-0.13671875,0.122558594,-0.21582031,0.007537842,-0.30078125,-0.03100586,0.01184082,0.13964844,-0.11767578,0.03515625,-0.011962891,-0.16601562,-0.140625,-0.14550781,0.0115356445,0.115234375,-0.010864258,0.14941406,-0.15332031,0.22070312,0.10205078,0.028442383,-0.012084961,-0.0546875,-0.042236328,-0.012268066,0.12988281,-0.22753906,-0.1484375,-0.10888672,-0.0022125244,0.02319336,0.1171875,0.05444336,-0.007446289,0.17578125,0.17285156,-0.0061950684,0.20996094,-0.083496094,-0.1640625,-0.099121094,-0.18164062,-0.22949219,-0.022583008,-0.03857422,0.025878906,0.13769531,-0.107421875,0.087402344,0.06298828,0.109375,-0.01940918,0.017211914,-0.10839844,0.06591797,-0.2109375,0.1015625,-0.025024414,-0.095214844,0.057128906,-0.17089844,-0.25976562,0.078125,0.119140625,-0.104003906,-0.08203125,-0.10644531,0.01159668,0.10107422,-0.09326172,-0.033935547,0.030883789,-0.25976562,-0.011962891,0.11230469,0.0390625,-0.14550781,-0.08886719,-0.045898438,-0.04711914,0.072265625,-0.115234375,0.140625,-0.265625,-0.18359375,0.016967773,0.03515625,0.096191406,0.091308594,0.029541016,-0.048339844,-0.1328125,0.16796875,-0.010314941,0.063964844,-0.030395508,0.00012874603,-0.12158203,-0.041259766,-0.08203125,-0.12158203,-0.015197754,0.234375,-0.16894531,-0.028808594,0.024902344,-0.09716797,-0.06225586,-0.234375,0.30664062,-0.075683594,0.22460938,0.05834961,-0.033203125,-0.05883789,0.010986328,0.080566406,0.0018005371,0.099121094,-0.2109375,-0.07861328,0.009887695,-0.060058594,-0.060546875,-0.05859375,0.011474609,-0.056396484,0.19140625,-0.056152344,-0.10107422,0.043701172,0.0054016113,-0.103027344,0.13378906,0.05053711,0.041748047,0.06201172,0.16308594,0.03173828,0.22558594,0.0703125,0.123535156,-0.022094727,-0.075683594,0.026123047,-0.10644531,-0.053955078,0.03857422,0.012145996,-0.068359375,0.16113281,-0.059326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.11376953,-0.064941406,-0.13574219,0.1171875,-0.032714844,0.07421875,-0.06347656,0.048828125,-0.020019531,0.07421875,-0.045654297,-0.18261719,-0.19042969,-0.08154297,-0.08300781,-0.018066406,0.057861328,0.119628906,-0.15429688,-0.014099121,-0.064453125,0.17773438,-0.016113281,-0.13476562,-0.012390137,0.06933594,0.088378906,0.14453125,0.0019836426,0.0076904297,-0.005340576,-0.18066406,-0.076171875,0.1796875,-0.07080078,-0.15917969,0.15039062,0.12695312,0.21484375,0.078125,-0.11816406,-0.04638672,0.11035156,-0.14257812,0.05883789,-0.05834961,0.13378906,-0.34375,0.23144531,0.008544922,-0.34375,-0.072265625,-0.05834961,0.056396484,0.110839844,-0.30273438,0.022216797,-0.09033203,-0.022705078,-0.012878418,0.10839844,0.030761719,0.092285156,-0.09326172,0.051757812,-0.2578125,-0.03149414,-0.044433594,-0.060302734,0.20214844,0.13085938,0.0859375,-0.076660156,0.05029297,0.09716797,0.19824219,0.08496094,-0.12011719,0.072753906,0.026977539,0.0033874512,0.028320312,0.07080078,0.18359375,-0.1796875,0.04638672,-0.088378906,-0.33203125,-0.027709961,-0.011962891,0.046142578,-0.13378906,-0.15527344,-0.03540039,0.049560547,0.15820312,0.026611328,0.072265625,-0.068847656,0.08251953,-0.019165039,-0.049072266,-0.05419922,-0.024658203,-0.033935547,-0.06225586,0.026245117,-0.036132812,-0.12109375,0.14257812,-0.013061523,-0.07373047,-0.042236328,-0.012023926,-0.037597656,0.005493164,-0.09667969,-0.063964844,-0.021728516,0.15625,0.016113281,-0.016723633,0.067871094,-0.26367188,0.019897461,-0.08642578,0.09472656,-0.024658203,-0.020507812,-0.16699219,0.10107422,-0.0077209473,0.008850098,-0.04345703,0.087890625,-0.115234375,-0.048828125,0.026489258,-0.0063476562,0.09472656,0.24707031,0.103027344,0.06689453,-0.024780273,0.06738281,0.05517578,0.13867188,0.11425781,-0.003479004,-0.016479492,0.13769531,-0.044677734,0.033447266,0.06982422,-0.075683594,0.19824219,-0.087890625,0.12988281,0.11328125,0.35742188,-0.03112793,0.1328125,0.044189453,0.06689453,-0.10253906,0.115722656,0.012084961,-0.25976562,-0.13671875,-0.12792969,-0.18847656,-0.114746094,-0.09375,-0.053955078,-0.10253906,-0.045166016,-0.21484375,-0.15625,-0.044677734,0.042236328,-0.109375,0.16015625,0.008911133,-0.024536133,-0.037109375,0.046142578,0.12011719,0.17382812,0.00036621094,-0.22363281,-0.031982422,0.22363281,-0.07080078,-0.20019531,0.049316406,0.17578125,-0.31835938,-0.008361816,0.16894531,0.22460938,0.041259766,-0.0390625,0.010070801,0.084472656,-0.118652344,-0.13476562,0.023803711,0.140625,0.00060653687,-0.15039062,-0.07910156,0.04345703,0.01586914,0.042236328,0.16503906,-0.034423828,0.0024261475,-0.0859375,-0.008117676,0.06225586,-0.091796875,-0.05883789,-0.026489258,0.15136719,0.05493164,0.16503906,-0.06225586,-0.028686523,0.0134887695,0.0154418945,0.29101562,-0.04248047,-0.13085938,-0.10205078,-0.003326416,0.099121094,0.09863281,0.19140625,-0.027709961,0.061035156,0.004638672,-0.115722656,-0.016357422,0.06933594,0.0005455017,0.08496094,0.033203125,0.03930664,0.037109375,-0.045166016,0.048339844,0.19433594,-0.14355469,0.099121094,0.037109375,0.064941406,-0.09716797,-0.032226562,0.12792969,0.140625,0.02758789,0.009155273,-0.032226562,0.11669922,0.067871094,-0.059570312,-0.048095703,0.026245117,0.006652832,0.15625,0.087402344,-0.009460449,0.015258789,-0.043701172,-0.15820312,-0.055419922,-0.08935547,0.07373047,0.21972656,0.08105469,0.029174805,0.052490234,-0.045166016,-0.111816406,-0.034423828,0.09033203,0.1015625,0.10888672,0.072753906,-0.10644531,-0.016967773,0.0703125,0.017822266,-0.21386719,-0.234375,-0.0859375,-0.103515625,-0.09326172,0.06542969,-0.037109375,-0.027832031,0.053222656,-0.11816406,0.018310547,-0.107910156,0.12792969,-0.0055236816,-0.15722656,0.05883789,0.06982422,-0.09765625,-0.1328125,-0.060302734,-0.12158203,-0.0859375,-0.05859375,-0.048583984,-0.056640625,-0.19433594,0.07128906,0.20605469,-0.016845703,-0.14941406,0.05883789,0.09277344,-0.07128906,-0.014709473,0.13867188,-0.096191406,-0.1484375,0.08203125,0.063964844,-0.12451172,0.0115356445,-0.15722656,0.18164062,0.14746094,-0.06298828,-0.15527344,0.010620117,0.0138549805,0.17871094,0.15136719,-0.041503906,0.02709961,-0.12207031,-0.08886719,0.004760742,-0.12890625,-0.044921875,-0.026489258,-0.023925781,0.111816406,-0.24414062,-0.0054016113,0.016967773,0.16015625,-0.15917969,0.15039062,0.06591797,-0.075683594,-0.03515625,0.091796875,-0.0013961792,0.08105469,0.18554688,0.076171875,0.064941406,0.068359375,-0.296875,-0.26367188,0.008422852,0.104003906,-0.21875,0.0625,0.21972656,-0.006011963,-0.10595703,-0.0234375,0.024902344,0.027832031,-0.060791016,-0.14355469,0.21875,-0.10595703,-0.19140625,0.10449219,-0.32421875,0.00033950806,0.018188477,-0.06298828,0.28125,-0.009216309,-0.107910156,0.10253906,-0.24511719,-0.053710938,-0.08544922,0.037841797,0.080078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.19921875,0.020141602,0.08691406,0.100097656,0.091308594,0.30078125,0.0064697266,0.068359375,0.051513672,0.042236328,-0.15039062,0.17871094,-0.080566406,0.001739502,-0.025268555,0.234375,0.14941406,-0.03930664,0.008300781,-0.092285156,-0.0061035156,-0.21679688,-0.15722656,0.019042969,-0.1171875,-0.13085938,-0.24707031,-0.023925781,-0.03491211,-0.3203125,-0.19042969,-0.15527344,0.09326172,-0.15625,0.004547119,0.07373047,0.02355957,-0.10058594,-0.092285156,-0.11376953,-0.01953125,-0.0107421875,0.061279297,-0.035888672,0.009277344,-0.13671875,0.011962891,0.16699219,-0.34960938,0.14355469,0.03540039,0.047607422,0.020751953,-0.05517578,-0.15527344,-0.16796875,-0.114746094,-0.061767578,-0.25976562,-0.001953125,-0.14355469,-0.1875,-0.03491211,0.171875,-0.060302734,-0.0119018555,-0.016357422,-0.05126953,0.16894531,-0.16894531,0.18164062,-0.0146484375,0.04736328,0.024169922,-0.014221191,0.18457031,0.0029449463,-0.07714844,-0.12402344,0.11279297,0.00491333,0.07910156,0.057617188,-0.09277344,-0.13671875,-0.10595703,-0.03564453,-0.203125,-0.0703125,0.087890625,-0.060058594,-0.03955078,-0.32617188,-0.049316406,0.09326172,0.12207031,0.23242188,0.23730469,-0.07763672,-0.17089844,-0.055908203,-0.09814453,-0.27929688,-0.20800781,0.056884766,0.020874023,-0.14453125,0.24414062,-0.20019531,-0.21777344,-0.12792969,0.049316406,0.043945312,0.08984375,-0.024414062,-0.09863281,-0.15332031,-0.15625,-0.21386719,-0.21777344,-0.023071289,0.13964844,-0.056640625,0.00982666,-0.017700195,-0.09033203,-0.06933594,-0.17773438,-0.09765625,-0.012390137,-0.140625,-0.09033203,-0.30273438,-0.08251953,-0.28515625,-0.48828125,-0.016235352,0.020629883,-0.04663086,-0.061523438,-0.203125,-0.00793457,-0.080566406,-0.17480469,-0.10498047,0.061767578,0.037597656,-0.045654297,-0.13964844,-0.056884766,-0.15429688,-0.16113281,0.028198242,0.06225586,-0.14355469,0.037597656,-0.17871094,-0.27148438,0.07128906,0.04272461,-0.026000977,0.103515625,0.037597656,0.111816406,0.17480469,-0.09423828,-0.17285156,-0.18847656,-0.017822266,0.13183594,0.012878418,-0.083984375,-0.25195312,0.13476562,0.140625,-0.026367188,-0.05834961,-0.037841797,-0.109375,-0.078125,-0.17871094,-0.049072266,-0.13378906,-0.12695312,-0.12011719,0.04736328,-0.14648438,0.13671875,-0.19628906,-0.006866455,0.09326172,0.10595703,0.14550781,0.015197754,-0.016235352,-0.21191406,-0.07519531,0.028686523,-0.20410156,0.08691406,-0.13183594,-0.01965332,0.016113281,-0.02355957,-0.16503906,0.08642578,0.046142578,0.109375,0.16210938,0.009338379,0.016479492,-0.21679688,-0.17773438,0.06542969,-0.12792969,-0.25,-0.12011719,-0.061523438,-0.13964844,-0.037353516,0.00092697144,0.095214844,0.060546875,0.052734375,0.17480469,0.075683594,0.0119018555,-0.12792969,0.109375,-0.020263672,0.053955078,-0.25390625,-0.0015716553,-0.033203125,-0.095214844,0.05810547,0.0058898926,0.04638672,0.1328125,-0.13769531,-0.29882812,0.09326172,0.022827148,-0.08105469,0.17578125,-0.2109375,0.20117188,-0.030151367,0.06347656,0.027954102,-0.1796875,0.008972168,0.10498047,0.12792969,0.16601562,0.03466797,0.045654297,-0.020751953,-0.107910156,-0.115234375,-0.023803711,0.024536133,-0.20117188,-0.024536133,0.035888672,0.15625,-0.07910156,-0.0036315918,-0.11035156,0.032226562,0.21875,0.08251953,0.14453125,-0.071777344,-0.067871094,-0.16894531,0.083496094,0.20214844,0.0062561035,-0.056884766,-0.06640625,-0.017333984,0.13671875,0.15429688,0.027954102,-0.21777344,0.17089844,-0.02368164,0.1953125,0.15527344,-0.033691406,-0.123046875,0.10107422,-0.053466797,-0.13964844,-0.079589844,0.036621094,0.051513672,-0.053955078,-0.047851562,0.12451172,-0.014953613,0.026000977,-0.09082031,0.092285156,0.17089844,0.16210938,0.018310547,0.16601562,0.140625,0.11328125,0.003250122,0.026000977,-0.011962891,0.03857422,0.26757812,0.30859375,-0.14355469,0.11035156,-0.07128906,-0.020019531,0.03540039,-0.20800781,-0.32421875,0.018310547,-0.0063171387,-0.08935547,-0.18945312,-0.079589844,0.10888672,0.072265625,0.0234375,0.052246094,-0.040771484,-0.09326172,-0.40820312,0.27539062,-0.041748047,-0.22558594,-0.031982422,0.016601562,0.03564453,-0.11621094,-0.118652344,0.08691406,0.013305664,-0.076660156,-0.12597656,0.12890625,0.080078125,-0.09033203,-0.11669922,-0.017578125,-0.29492188,-0.07470703,-0.23828125,0.123535156,0.19238281,0.12207031,-0.11376953,0.061767578,0.0049438477,-0.010253906,0.14746094,0.17285156,0.09375,0.071777344,-0.32421875,0.011230469,0.05493164,0.026000977,-0.022460938,-0.041992188,-0.15820312,-0.040771484,-0.15722656,0.05053711,-0.04638672,-0.008178711,0.01184082,0.16015625,-0.032958984,-0.061035156,-0.42382812,0.22753906,-0.12890625,-0.0033721924,-0.20996094,0.12060547,-0.14550781,-0.044677734,-0.07373047,0.00579834,-0.21386719,0.140625,0.0078125,0.14355469,-0.34765625,0.05834961,-0.24316406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.046875,0.07324219,0.047607422,0.075683594,0.32226562,-0.17675781,-0.20410156,-0.004425049,-0.06542969,0.040527344,-0.24707031,0.15136719,-0.107421875,-0.048828125,0.15820312,-0.035888672,0.08544922,0.012512207,-0.007751465,-0.025146484,0.095214844,0.011169434,-0.025146484,-0.045410156,0.052246094,0.095703125,0.008544922,0.07861328,-0.11230469,0.010009766,-0.09082031,-0.0010223389,0.13867188,-0.0030059814,-0.049316406,0.059570312,-0.013061523,-0.2421875,-0.017578125,0.08154297,0.028320312,0.020996094,-0.010681152,0.071777344,-0.10839844,-0.15234375,0.040527344,-0.12158203,0.05126953,-0.024780273,-0.20898438,0.08691406,0.07470703,-0.092285156,-0.007171631,0.16699219,0.02368164,-0.10546875,-0.11621094,-0.080078125,-0.091308594,0.063964844,0.076171875,0.107910156,0.057373047,-0.051757812,0.043945312,0.13476562,0.14453125,-0.25390625,-0.23925781,-0.010009766,-0.06640625,0.07128906,-0.17675781,-0.24023438,-0.004760742,0.25195312,0.12451172,-0.0703125,-0.16308594,0.13574219,0.071777344,0.091796875,-0.11035156,0.029174805,0.016845703,0.107910156,0.060791016,-0.03466797,-0.22460938,-0.032226562,0.17871094,-0.110839844,0.22851562,0.16113281,-0.0076293945,-0.037109375,0.10546875,0.0021209717,-0.03881836,-0.18066406,-0.056152344,0.07324219,0.08154297,-0.020996094,-0.296875,-0.13378906,-0.055664062,-0.13085938,0.00045967102,-0.008483887,-0.16601562,-0.11621094,-0.22460938,0.11425781,-0.05883789,0.20507812,-0.19824219,0.03930664,-0.0049743652,0.09423828,0.2578125,-0.040527344,0.13476562,0.04321289,-0.030395508,-0.08300781,0.110839844,-0.041259766,0.076171875,-0.021606445,0.04321289,-0.005706787,0.20507812,-0.03173828,-0.008972168,-0.010803223,-0.17480469,-0.044677734,-0.021850586,-0.36523438,-0.04272461,-0.052490234,0.008239746,-0.014770508,0.056884766,0.15039062,-0.020263672,-0.067871094,-0.053222656,0.047607422,-0.08642578,-0.032226562,-0.16503906,-0.11425781,-0.04272461,-0.016601562,0.19238281,-0.22167969,0.010925293,-0.022216797,0.048095703,0.032714844,-0.19042969,0.09326172,-0.076171875,-0.049804688,-0.099121094,-0.0027618408,-0.13476562,0.16601562,0.16894531,-0.122558594,-0.03100586,-0.234375,-0.119628906,0.111816406,0.20019531,-0.017944336,0.060546875,-0.19042969,-0.33789062,-0.03173828,0.056396484,-0.024658203,-0.20117188,0.033447266,0.1328125,-0.037109375,0.035888672,-0.15527344,0.05908203,-0.12792969,-0.104003906,0.014465332,0.057128906,-0.27929688,-0.23828125,-0.0859375,0.030395508,0.018432617,-0.099609375,0.20996094,0.09033203,-0.014465332,-0.12451172,0.09423828,-0.15039062,-0.004272461,0.009887695,0.028686523,0.18652344,0.07128906,-0.045654297,0.05908203,-0.14355469,-0.08105469,-0.08886719,0.103027344,0.08886719,-0.016479492,0.0126953125,-0.13378906,-0.31640625,0.30859375,0.24609375,0.12988281,0.0119018555,-0.037841797,0.014709473,0.08105469,-0.036132812,-0.0859375,-0.15820312,0.024047852,-0.11035156,0.008666992,-0.026611328,-0.15722656,0.080078125,0.10888672,-0.21582031,-0.14550781,-0.04663086,0.02368164,0.021728516,-0.038330078,0.07470703,0.088378906,0.07080078,0.009399414,0.059814453,0.018920898,0.01965332,0.012023926,0.006134033,0.047607422,-0.12792969,-0.020385742,-0.08642578,-0.123046875,-0.24023438,-0.05053711,-0.053222656,0.008911133,-0.20117188,0.17675781,0.10839844,0.040039062,-0.07861328,0.010681152,-0.07861328,-0.13476562,-0.20117188,-0.15429688,-0.123046875,-0.115234375,-0.037597656,-0.23925781,0.091308594,-0.087402344,-0.078125,0.052246094,-0.020507812,-0.13671875,-0.40039062,-0.034179688,-0.16894531,0.051757812,-0.049804688,0.040039062,-0.048828125,-0.07080078,-0.3828125,-0.09375,0.09277344,-0.045410156,-0.2109375,-0.04345703,0.052734375,-0.06933594,-0.25390625,0.14550781,-0.25976562,0.052490234,0.19238281,0.10058594,-0.25195312,-0.052490234,-0.265625,-0.09863281,0.028808594,-0.008666992,0.11279297,0.040771484,-0.043701172,0.15429688,-0.21777344,0.067871094,-0.20214844,0.21972656,-0.15625,-0.16992188,-0.1328125,-0.104003906,0.091308594,0.091308594,0.016601562,-0.037597656,-0.08642578,-0.34375,-0.075683594,0.14648438,0.100097656,-0.016601562,-0.061279297,-0.21875,-0.33007812,-0.32617188,-0.12890625,0.0703125,-0.07324219,0.12988281,-0.096191406,0.13964844,0.25976562,-0.55078125,-0.12890625,0.29101562,-0.10839844,0.024780273,-0.057861328,-0.19335938,-0.45507812,-0.41015625,-0.040039062,-0.041992188,0.21582031,-0.41015625,-0.09814453,0.12597656,0.10253906,-0.390625,-0.076171875,0.068359375,-0.15429688,-0.033203125,0.15625,-0.21679688,-0.40820312,-0.10986328,-0.080566406,0.1796875,-0.057861328,-0.25390625,0.07421875,0.19628906,-0.010498047,-0.10205078,-0.1171875,0.18945312,-0.22167969,-0.091308594,0.07080078,-0.08691406,-0.3125,-0.11230469,-0.34179688,0.23730469,-0.2578125,0.051513672,0.08496094,0.25585938,-0.14355469,0.29492188,-0.14257812,0.06298828,-0.15234375,0.123046875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.059814453,-0.026855469,-0.21289062,-0.11279297,-0.03491211,0.203125,-0.20410156,-0.12597656,0.09814453,-0.14550781,-0.14160156,-0.023071289,-0.07373047,0.08300781,0.0077209473,0.0027160645,-0.01940918,0.16796875,0.07080078,-0.06225586,-0.08691406,0.055419922,-0.016967773,-0.063964844,0.037841797,-0.08984375,-0.021484375,-0.22949219,0.107421875,0.052490234,0.037841797,-0.115234375,-0.34375,0.22167969,-0.10205078,-0.15332031,0.026611328,-0.06640625,-0.20117188,0.014099121,0.055664062,-0.03466797,0.107910156,0.095214844,-0.06738281,0.36132812,-0.0069274902,-0.037109375,-0.049316406,-0.13964844,0.015380859,-0.07861328,0.18945312,0.075683594,0.107910156,-0.07910156,-0.107421875,0.21289062,0.09472656,0.044921875,-0.14257812,0.052001953,-0.12597656,0.022094727,0.00063705444,-0.12011719,0.02746582,-0.036621094,0.030395508,0.11279297,0.06738281,0.08642578,0.13574219,0.15332031,-0.05834961,-0.07128906,-0.21875,0.051757812,-0.12988281,0.106933594,-0.16308594,0.032714844,-0.22851562,-0.14550781,-0.063964844,-0.018920898,-0.12158203,0.021606445,-0.09472656,-0.09863281,-0.07910156,0.037353516,-0.04321289,-0.07324219,0.10546875,0.15820312,-0.328125,0.030273438,0.018676758,0.03173828,-0.28710938,-0.10449219,-0.13769531,0.109375,-0.041503906,-0.020629883,0.08251953,0.079589844,0.14453125,0.064941406,-0.12109375,-0.064941406,-0.03149414,-0.22851562,0.044921875,-0.10888672,0.071777344,0.18457031,-0.045166016,0.06933594,0.10205078,0.0012054443,0.100097656,0.044433594,0.047851562,0.045898438,0.14160156,-0.20507812,-0.12988281,0.030273438,0.16015625,-0.032714844,-0.007293701,-0.01171875,-0.001953125,0.051757812,0.046142578,-0.08984375,0.10205078,-0.043701172,-0.07373047,0.046142578,-0.15820312,0.049072266,0.13183594,-0.21289062,0.096191406,-0.12695312,0.07128906,-0.115722656,0.022338867,-0.15527344,-0.068847656,-0.020874023,-0.125,-0.13183594,-0.16503906,-0.037597656,0.08251953,0.052490234,-0.041015625,-0.14941406,-0.119140625,-0.095214844,-0.0859375,0.047851562,0.16992188,0.08300781,-0.104003906,0.03149414,-0.109375,-0.06640625,0.01373291,-0.1328125,-0.012084961,0.053222656,-0.029663086,-0.26367188,-0.10205078,0.059570312,0.015014648,0.037109375,0.012817383,0.27734375,-0.052001953,0.115234375,-0.15136719,0.08544922,0.15136719,-0.096191406,-0.018432617,0.017700195,-0.13378906,-0.16503906,0.049316406,-0.13769531,0.07080078,0.030029297,0.0072021484,-0.061279297,0.07910156,0.080078125,0.123535156,-0.018310547,0.0625,-0.12109375,0.16796875,-0.27929688,-0.033203125,-0.19042969,0.100097656,0.060302734,-0.103515625,-0.010803223,-0.09716797,-0.046142578,0.099609375,-0.13769531,-0.018188477,0.03125,-0.017578125,-0.005859375,-0.06542969,0.0010528564,-0.08105469,-0.26367188,0.14160156,-0.118652344,-0.08154297,0.11230469,-0.24023438,-0.068847656,-0.041503906,-0.00030708313,0.055908203,-0.11376953,-0.32421875,-0.020019531,0.0022125244,-0.043945312,-0.119140625,-0.04272461,0.03930664,-0.1640625,-0.19433594,-0.13769531,-0.05078125,-0.053222656,0.05102539,0.15234375,-0.067871094,0.033935547,0.079589844,-0.2578125,-0.14453125,-0.03491211,0.048339844,0.018066406,-0.07519531,0.10253906,0.09326172,-0.09814453,-0.088378906,0.24902344,-0.10546875,-0.22558594,-0.05102539,-0.15136719,-0.0031433105,0.040039062,-0.06542969,-0.17382812,-0.048583984,-0.23339844,0.07373047,-0.076171875,-0.095703125,-0.18261719,-0.03125,-0.171875,0.05517578,-0.119140625,0.11035156,0.008178711,0.004425049,0.07470703,-0.16308594,-0.10498047,-0.030639648,-0.007598877,0.048095703,-0.107421875,0.004058838,0.048583984,-0.20703125,-0.100097656,0.076660156,-0.18261719,0.012634277,0.09423828,-0.1875,-0.015991211,-0.020141602,-0.114746094,0.013366699,-0.07421875,0.08496094,0.04711914,-0.095214844,0.23925781,0.0032348633,-0.111328125,0.02319336,-0.08203125,0.07714844,-0.061035156,-0.123046875,-0.119140625,0.09765625,0.07714844,0.009643555,-0.14648438,-0.025756836,0.06738281,-0.10546875,0.040527344,-0.011352539,0.056884766,-0.036621094,0.09375,0.021118164,0.068359375,-0.012512207,-0.099609375,-0.3125,0.111328125,-0.12109375,-0.026977539,0.019042969,0.0021209717,0.0390625,0.008911133,0.0029907227,0.11425781,-0.052978516,0.09277344,-0.009643555,0.026123047,0.064453125,-0.0703125,-0.09033203,0.022216797,-0.042236328,0.012329102,0.10107422,0.064941406,-0.20117188,-0.040771484,-0.0052490234,-0.04321289,0.0071105957,-0.036376953,-0.020629883,0.30273438,-0.08496094,-0.07470703,-0.12890625,-0.03955078,0.27539062,-0.22265625,0.08691406,0.0054016113,-0.060058594,-0.0703125,-0.014892578,0.100097656,-0.04736328,-0.11816406,-0.10205078,-0.03173828,-0.020874023,0.064941406,-0.08496094,0.0015258789,0.17675781,-0.08691406,0.003692627,0.13574219,0.019042969,0.31445312,-0.022949219,-0.046875,0.0154418945,-0.052490234,-0.08300781,0.17675781,-0.265625,-0.19628906,-0.019042969,0.18945312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.29296875,-0.053466797,-0.09375,-0.10498047,-0.072265625,0.011474609,0.026489258,-0.28515625,-0.012145996,0.049072266,0.014526367,-0.15625,0.12597656,-0.104003906,-0.007385254,0.030639648,-0.096191406,-0.14355469,-0.013427734,0.08496094,-0.020019531,-0.049804688,-0.12158203,-0.20507812,-0.0050964355,-0.10107422,-0.025756836,-0.25195312,-0.119628906,0.0036621094,0.032470703,-0.015197754,-0.008544922,-0.21386719,-0.034179688,-0.052001953,-0.036376953,-0.14160156,-0.07763672,-0.03564453,-0.07080078,0.026123047,0.067871094,-0.10498047,0.0859375,-0.25195312,0.02758789,-0.024780273,-0.064453125,-0.26367188,-0.040039062,0.13964844,-0.020263672,-0.1796875,-0.026977539,-0.15332031,-0.11669922,-0.064941406,-0.03515625,-0.12011719,0.03930664,0.08300781,0.0703125,-0.049072266,-0.075683594,-0.26171875,0.16308594,-0.030883789,-0.022216797,-0.12988281,-0.14257812,-0.33789062,0.055419922,0.0038452148,-0.23144531,-0.05078125,0.0099487305,-0.053710938,0.0061035156,0.041259766,-0.22460938,0.05517578,-0.008972168,-0.27148438,0.08886719,-0.059570312,-0.024780273,-0.04711914,0.07080078,-0.13476562,-0.12207031,-0.16992188,0.10498047,-0.103515625,0.020019531,-0.026245117,-0.15527344,0.055419922,-0.044677734,-0.29296875,0.10498047,0.051513672,0.015380859,-0.37890625,0.025146484,-0.056884766,0.06201172,-0.056884766,-0.012878418,0.04638672,-0.10888672,0.087402344,-0.18652344,-0.03173828,-0.01373291,0.047607422,-0.087890625,-0.111816406,0.110839844,-0.27148438,0.06201172,-0.023071289,-0.060302734,0.030883789,-0.039794922,0.023925781,-0.018310547,0.19238281,-0.10449219,-0.12597656,0.013061523,0.115722656,-0.095214844,0.23730469,-0.05859375,-0.18847656,0.1015625,0.11376953,-0.13671875,-0.034423828,0.080078125,0.12158203,-0.027832031,-0.103027344,-0.1015625,-0.0031738281,0.05444336,0.05053711,0.0030670166,0.19042969,-0.09082031,0.20019531,0.060302734,0.008911133,-0.02734375,-0.100097656,-0.075683594,-0.049804688,0.13867188,-0.12597656,-0.14941406,0.09765625,-0.071777344,-0.09423828,0.25976562,0.12109375,-0.28515625,0.076171875,-0.020874023,0.014160156,-0.23828125,-0.13671875,-0.18261719,-0.080078125,0.13574219,0.1875,-0.20703125,0.10644531,-0.11230469,-0.28515625,0.28320312,0.033935547,-0.13769531,-0.020996094,-0.07470703,-0.029418945,-0.014343262,-0.21777344,0.014770508,0.103515625,0.087890625,-0.016479492,-0.14355469,0.016479492,-0.05834961,-0.07470703,0.12988281,-0.064453125,0.17382812,-0.19921875,0.034423828,-0.013000488,-0.11816406,-0.067871094,0.03540039,0.12402344,-0.16308594,-0.14550781,-0.021606445,-0.075683594,0.09765625,0.12597656,0.0018310547,0.20996094,0.1796875,0.091308594,0.08105469,-0.115722656,-0.030883789,0.049804688,-0.08984375,0.171875,-0.06640625,-0.06738281,0.123535156,-0.22753906,0.16308594,-0.040527344,-0.06738281,0.20410156,0.040527344,0.115722656,0.041748047,-0.029418945,0.003326416,-0.08886719,0.078125,0.23730469,-0.057128906,-0.11230469,-0.072265625,0.15332031,0.16015625,0.140625,0.087402344,0.17675781,-0.23339844,-0.100097656,0.033203125,0.053955078,0.05126953,0.064453125,-0.041992188,0.010864258,0.10839844,-0.09814453,-0.171875,0.2890625,0.03173828,-0.22363281,0.060058594,-0.118652344,0.041748047,-0.049316406,0.068847656,0.14453125,-0.13769531,-0.2578125,-0.084472656,0.1171875,0.091796875,0.072753906,0.111816406,-0.010375977,-0.13964844,-0.080566406,-0.14550781,-0.22070312,-0.04248047,-0.13671875,0.005554199,-0.041992188,0.04711914,0.06982422,-0.110839844,0.19433594,0.05029297,0.040771484,0.09277344,0.07470703,0.16601562,-0.0035095215,0.083984375,0.025390625,-0.08154297,-0.107421875,-0.03466797,-0.12890625,-0.095703125,0.08886719,-0.111328125,-0.0046081543,-0.123046875,0.063964844,0.118652344,-0.15820312,-0.049804688,-0.17089844,0.04345703,0.18554688,0.03955078,0.047607422,0.045410156,-0.18652344,-0.08300781,0.043701172,-0.022827148,0.12890625,-0.030761719,-0.13964844,0.10107422,0.14355469,0.35351562,0.091308594,-0.13574219,0.020751953,0.08203125,0.28125,0.087402344,0.10986328,0.053710938,0.030273438,0.032714844,0.050048828,-0.0005455017,0.20117188,-0.017700195,0.11328125,0.12695312,0.023071289,-0.056396484,0.031982422,-0.048095703,0.055908203,-0.008483887,0.0390625,-0.12011719,-0.028198242,-0.05908203,-0.048583984,-0.010070801,0.07861328,-0.025756836,-0.16699219,0.017211914,0.06542969,-0.16601562,0.02758789,0.12402344,0.14941406,-0.11230469,0.059326172,0.06689453,0.072265625,-0.021850586,0.0033416748,-0.014892578,0.02368164,0.047607422,-0.18261719,0.010314941,-0.07763672,0.07373047,-0.22558594,0.1875,0.20605469,-0.08984375,-0.20410156,0.05126953,0.10986328,-0.11230469,-0.14941406,-0.029541016,-0.037841797,0.057373047,-0.17382812,-0.0703125,-0.20410156,0.16503906,0.028442383,0.18554688,0.140625,0.07470703,-0.16699219,0.12792969,-0.011474609,-0.083984375,-0.0015792847,-0.06347656,-0.07373047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.21679688,0.002319336,-0.119140625,-0.007598877,0.20507812,-0.0021209717,-0.0015945435,0.03955078,0.067871094,0.04272461,-0.05102539,0.15136719,-0.021606445,0.12890625,-0.041503906,0.018310547,0.025878906,0.12890625,-0.046142578,0.024047852,0.10205078,0.079589844,-0.05053711,0.17480469,-0.06982422,-0.06347656,-0.041503906,0.07763672,-0.00390625,0.026977539,0.07910156,-0.015136719,-0.20410156,-0.10546875,-0.1875,0.0003376007,0.002105713,-0.14453125,-0.328125,-0.07470703,-0.07373047,-0.115234375,0.030029297,-0.06933594,0.025512695,0.0016021729,-0.025146484,-0.0126953125,0.056396484,-0.10205078,-0.20410156,-0.36523438,-0.16308594,-0.016601562,-0.03515625,-0.13476562,0.009521484,-0.0014343262,0.07861328,0.023925781,0.09033203,0.10107422,0.07861328,-0.059326172,0.029907227,-0.05834961,-0.19921875,-0.09277344,-0.12597656,-0.09814453,-0.2890625,-0.020629883,-0.048583984,0.008239746,-0.063964844,0.22460938,-0.024291992,0.020019531,0.020141602,-0.1015625,0.060058594,0.104003906,0.1875,0.234375,-0.088378906,0.08886719,0.1875,0.029785156,0.0067749023,0.032958984,0.02355957,0.016357422,0.088378906,0.06689453,0.110839844,0.13183594,0.21679688,-0.12988281,0.13769531,0.071777344,-0.10058594,0.10986328,-0.068359375,0.067871094,-0.0859375,0.056640625,-0.1015625,-0.008422852,-0.012451172,-0.09423828,0.038085938,-0.045654297,-0.0054016113,0.13671875,0.0625,-0.032470703,-0.036132812,-0.032226562,-0.011291504,0.011230469,-0.05102539,0.06225586,-0.16699219,0.048828125,0.079589844,0.3359375,0.15917969,-0.110839844,-0.008544922,-0.016723633,0.043945312,-0.30273438,-0.040771484,-0.20800781,0.031982422,-0.07910156,-0.056640625,-0.045898438,-0.0017471313,0.24511719,0.04248047,0.030883789,-0.041259766,0.00390625,-0.01953125,-0.019897461,-0.011962891,-0.095214844,-0.072753906,-0.033447266,-0.12597656,0.028198242,-0.040283203,0.04296875,0.072753906,0.03857422,-0.033691406,0.078125,0.061279297,0.019042969,-0.036865234,-0.11328125,-0.046875,0.03491211,-0.15332031,0.17382812,-0.16699219,0.018676758,-0.11376953,-0.05834961,-0.08496094,0.09814453,-0.0036468506,-0.026000977,0.15625,-0.12988281,0.11669922,0.1484375,0.22949219,0.08105469,-0.2265625,-0.0028381348,-0.15820312,-0.119140625,-0.033691406,-0.09667969,-0.11035156,-0.028686523,0.061767578,-0.27929688,0.018188477,-0.32226562,0.045654297,0.35351562,-0.059326172,-0.2578125,0.12597656,-0.10107422,-0.08496094,-0.119140625,0.08300781,-0.07373047,0.125,-0.015136719,0.14648438,-0.018310547,-0.10107422,-0.15332031,-0.32617188,0.11621094,0.061035156,-0.328125,-0.2578125,-0.15722656,-0.12695312,0.013061523,-0.043701172,-0.01953125,0.03564453,0.0038909912,0.014953613,-0.16601562,-0.17285156,-0.21582031,-0.2265625,-0.09716797,-0.13964844,-0.26367188,-0.10498047,0.053710938,0.10205078,0.024047852,0.049560547,0.103027344,-0.052978516,0.08251953,0.055664062,-0.22363281,0.14355469,-0.25976562,-0.067871094,-0.39453125,0.012329102,0.14257812,0.083984375,0.24121094,-0.014404297,-0.07910156,-0.08251953,0.03466797,-0.057128906,0.0390625,-0.08496094,-0.22070312,-0.13085938,-0.23535156,-0.12890625,-0.16503906,0.007873535,-0.05078125,-0.09472656,0.06738281,0.20117188,-0.052490234,-0.040771484,-0.024414062,-0.17089844,0.09326172,-0.11279297,-0.19042969,-0.04345703,-0.30078125,-0.076171875,0.15722656,0.16992188,-0.016357422,-0.047607422,0.19433594,0.035888672,-0.04321289,-0.043945312,0.048095703,0.053710938,0.06640625,-0.07421875,-0.234375,-0.0005302429,-0.38671875,-0.03466797,0.068847656,-0.048095703,-0.22070312,0.09326172,-0.048583984,0.11767578,-0.08984375,-0.16015625,0.080566406,0.10546875,0.119628906,-0.03149414,-0.1796875,0.026611328,-0.18359375,0.10644531,0.020019531,-0.15039062,-0.15332031,0.16015625,-0.060546875,-0.029541016,-0.13574219,-0.15136719,0.08642578,-0.053710938,-0.043945312,0.056152344,-0.025268555,0.09716797,-0.18066406,0.05102539,-0.25390625,0.1484375,0.17382812,-0.23925781,0.26171875,0.068847656,0.029785156,0.083984375,0.0076904297,0.24023438,0.19238281,-0.080078125,-0.21875,-0.22070312,-0.032958984,-0.056884766,-0.087890625,0.068359375,0.109375,-0.26367188,-0.16113281,-0.021118164,-0.05126953,-0.10644531,0.052001953,-0.10107422,0.19921875,-0.14257812,-0.1328125,-0.16503906,-0.15136719,0.15527344,0.088378906,0.1953125,0.10107422,-0.11767578,-0.002029419,-0.06738281,-0.0069885254,0.0703125,0.007537842,-0.05102539,-0.0051574707,-0.16113281,0.053955078,0.087402344,-0.1015625,0.06689453,0.080566406,0.044433594,0.091796875,-0.0079956055,-0.35546875,-0.110839844,-0.15136719,-0.020629883,-0.068359375,0.06933594,0.110839844,0.032226562,-0.23339844,-0.22070312,-0.25,-0.16015625,-0.18066406,0.0146484375,-0.013000488,-0.08300781,-0.21777344,-0.18554688,0.075683594,-0.037109375,-0.052001953,0.14453125,-0.36328125,-0.055908203,-0.08544922,-0.1953125,-0.2265625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.05126953,0.056640625,0.1953125,0.076171875,0.104003906,0.09765625,0.10205078,-0.003112793,0.06347656,-0.050048828,0.20214844,-0.1796875,0.041015625,0.14941406,0.036132812,0.10839844,0.13085938,-0.107910156,-0.024902344,-0.06933594,-0.033203125,0.26367188,-0.059326172,0.020263672,0.09716797,-0.19628906,-0.092285156,0.111328125,0.01586914,-0.12451172,-0.26953125,0.19238281,0.23046875,-0.026245117,-0.13183594,-0.0021972656,0.048583984,-0.088378906,0.052978516,0.0073547363,0.096191406,-0.26367188,-0.12060547,0.08300781,-0.060302734,0.0022583008,-0.16894531,-0.036865234,-0.20703125,-0.12890625,0.18457031,-0.08544922,-0.03857422,0.022583008,-0.041259766,0.11425781,0.049316406,-0.21484375,0.15332031,-0.08544922,-0.20410156,0.022583008,-0.110839844,0.025146484,0.17285156,-0.14160156,0.047607422,0.027709961,0.009216309,0.014892578,0.0013580322,-0.111328125,-0.032226562,-0.012878418,0.13378906,-0.09863281,-0.13964844,0.27148438,0.16210938,-0.05029297,0.1484375,-0.109375,0.10205078,-0.041015625,0.06738281,0.17480469,-0.07470703,0.057617188,0.005493164,-0.11328125,-0.109375,-0.15722656,0.048339844,-0.15429688,0.05859375,0.23144531,-0.032958984,-0.17675781,-0.075683594,-0.21777344,-0.19238281,0.15625,-0.20507812,-0.22460938,0.06298828,-0.32226562,-0.15039062,0.0064697266,0.03173828,0.067871094,-0.22460938,0.037597656,0.018798828,-0.01574707,-0.028930664,0.0040893555,-0.030029297,-0.14550781,-0.11621094,-0.018432617,-0.07128906,-0.5234375,-0.17773438,0.091308594,-0.15332031,0.07080078,-0.09326172,0.057861328,-0.049072266,0.014526367,0.0033569336,-0.044921875,-0.087890625,0.024291992,-2.515316e-05,0.064941406,0.05053711,-0.21679688,0.12597656,-0.028076172,0.017578125,0.14941406,-0.02368164,-0.059570312,0.095703125,-0.10986328,-0.012207031,0.13476562,0.1953125,-0.010375977,0.13671875,0.010559082,-0.07714844,0.1484375,-0.0390625,0.096191406,-0.16601562,-0.030883789,0.13867188,-0.078125,0.04248047,-0.15722656,0.0012588501,0.012390137,0.16601562,0.16503906,-0.20605469,0.044677734,0.025024414,-0.072265625,-0.03112793,-0.15039062,0.11425781,0.015991211,-0.075683594,0.087890625,-0.22363281,0.0033721924,-0.17578125,-0.10253906,0.16503906,0.028442383,0.064453125,0.022583008,-0.09472656,-0.21582031,0.044433594,-0.24316406,0.026245117,0.15039062,0.016967773,-0.140625,-0.045898438,0.17773438,0.084472656,-0.023925781,-0.09765625,0.023071289,-0.087402344,-0.15332031,-0.10253906,-0.39453125,0.09667969,0.12207031,-0.15527344,0.030151367,0.11767578,-0.032470703,0.0115356445,0.18261719,-0.05078125,0.03149414,0.23046875,-0.06347656,0.020385742,-0.037841797,-0.072753906,-0.15136719,-0.0021514893,-0.15625,-0.13671875,0.100097656,-0.000957489,-0.038085938,0.18554688,-0.052734375,0.02368164,0.10107422,0.045166016,0.100097656,0.04711914,-0.10498047,0.068847656,0.17382812,0.0126953125,0.21386719,0.016357422,-0.05908203,0.16015625,0.017211914,0.055908203,0.013122559,0.0859375,0.17773438,0.11425781,0.17578125,-0.035888672,0.052490234,-0.028930664,0.020141602,0.0099487305,-0.30664062,-0.01977539,-0.111816406,0.08300781,0.118652344,-0.103027344,0.26171875,0.14746094,-0.17285156,-0.068359375,-0.09326172,-0.13769531,-0.067871094,-0.08544922,-0.19433594,0.125,0.0014038086,-0.036132812,0.00025177002,0.0859375,0.03955078,-0.23925781,0.001739502,0.08691406,-0.11425781,0.008422852,0.009216309,-0.10449219,-0.036376953,-0.06225586,-0.067871094,0.006378174,-0.08105469,0.006652832,-0.09033203,0.051513672,-0.013305664,0.015136719,-0.0059509277,-0.083496094,-0.03857422,0.22265625,0.020019531,0.03540039,-0.11669922,-0.10595703,0.12695312,0.07714844,-0.0031280518,-0.140625,0.09326172,0.040039062,0.0146484375,0.06542969,-0.106933594,-0.08105469,-0.17480469,0.07324219,0.12158203,0.059814453,-0.18847656,0.04321289,0.071777344,0.19726562,0.20019531,-0.020996094,0.06542969,-0.020629883,-0.013183594,0.14355469,0.02368164,0.15136719,0.012512207,-0.015380859,0.20507812,-0.055664062,0.095214844,-0.09863281,-0.10839844,0.00018692017,-0.044189453,0.04736328,0.100097656,-0.0859375,-0.0390625,-0.20507812,0.059326172,0.11035156,0.092285156,0.0044555664,-0.009338379,-0.048339844,-0.083496094,-0.115234375,-0.033203125,0.12060547,-0.052246094,0.087890625,-0.22070312,0.04248047,0.099609375,-0.07861328,-0.0034332275,-0.020141602,-0.107421875,0.019897461,-0.02355957,0.09667969,0.07910156,0.12890625,0.084472656,0.0021820068,0.010925293,0.05493164,0.095214844,0.15527344,-0.06933594,-0.028076172,0.019165039,0.0020141602,-0.006439209,-0.13476562,-0.20898438,0.09375,-0.203125,-0.0072021484,0.13183594,-0.07470703,0.008544922,-0.07421875,-0.21289062,-0.115722656,0.10498047,0.22460938,0.06982422,-0.18359375,-0.040283203,-0.09033203,0.18847656,0.26367188,-0.032470703,0.0046691895,0.030639648,0.032714844,0.072753906,-0.033203125,0.29101562,0.111816406,-0.00039482117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.25390625,-0.080566406,-0.016479492,0.052490234,0.076171875,-0.122558594,-0.13378906,-0.07910156,-0.018432617,-0.06542969,0.18847656,-0.12792969,0.11669922,-0.061035156,0.20410156,-0.16601562,-0.13769531,-0.15820312,0.0546875,0.034423828,-0.18261719,0.0027313232,-0.10644531,-0.043701172,0.115722656,-0.13769531,-0.20703125,-0.018066406,0.140625,-0.053222656,0.08203125,-0.26757812,-0.13769531,0.020996094,-0.07763672,0.031982422,-0.15722656,0.2578125,0.0055236816,-0.05517578,0.053466797,-0.037597656,-0.16699219,-0.16113281,0.07080078,-0.055908203,0.0625,-0.19140625,-0.119628906,-0.103027344,0.04321289,-0.13769531,-0.13574219,0.049560547,-0.012451172,-0.052734375,-0.04736328,-0.15429688,0.12988281,0.071777344,0.06738281,-0.08544922,-0.0027008057,-0.25195312,-0.099609375,-0.33203125,-0.0546875,0.018676758,-0.28125,0.026855469,0.0034332275,0.05908203,-0.040283203,-0.091308594,-0.13085938,0.11425781,0.010681152,-0.25195312,0.07324219,-0.22949219,-0.12011719,0.23925781,-0.14941406,-0.07910156,0.17285156,-0.20605469,-0.014282227,-0.1640625,-0.04248047,-0.09277344,-0.09814453,-0.20019531,0.030395508,-0.12792969,0.12451172,0.07861328,-0.03881836,0.15429688,-0.24023438,0.12695312,0.19042969,0.08300781,0.014160156,-0.08935547,0.072753906,0.08154297,0.049072266,-0.30664062,0.11279297,-0.056396484,-0.1015625,-0.091796875,-0.11035156,0.15234375,-0.076171875,0.10498047,0.022949219,-0.11376953,-0.083496094,-0.19140625,-0.11328125,-0.048339844,0.009887695,-0.119140625,0.122558594,-0.12451172,-0.12060547,-0.076660156,-0.19921875,0.05126953,0.00041770935,0.01928711,-0.15722656,0.096191406,0.115722656,-0.09863281,0.092285156,-0.03149414,-0.026611328,-0.025268555,0.0134887695,-0.035888672,0.034423828,-0.033935547,-0.18261719,-0.040527344,0.07763672,0.044433594,-0.0007972717,0.13183594,0.28515625,0.09277344,-0.06347656,0.068847656,-0.037841797,0.08300781,0.06738281,0.06738281,-0.0010681152,0.037597656,0.060791016,0.018066406,-0.022216797,0.16308594,0.17382812,0.08203125,0.040771484,-0.14453125,0.048339844,0.12988281,0.12597656,-0.32421875,-0.057861328,-0.024902344,-0.02734375,-0.032226562,0.037353516,-0.012451172,-0.0029296875,0.12402344,0.12695312,-0.103515625,0.14355469,-0.017578125,-0.05908203,0.10986328,-0.18945312,-0.024658203,0.12060547,0.018920898,-0.0008468628,-0.19433594,-0.18359375,0.028442383,-0.09472656,-0.027954102,-0.10595703,-0.068359375,-0.20996094,0.059570312,0.076171875,0.056396484,-0.111328125,0.12060547,-0.12988281,-0.05419922,-0.14648438,-0.05078125,-0.033935547,-0.14453125,0.109375,-0.140625,-0.040527344,0.15234375,-0.045898438,0.068359375,-0.08496094,-0.050048828,0.13769531,0.15136719,0.114746094,-0.19140625,-0.03540039,0.13867188,-0.03955078,-0.25976562,-0.009460449,-0.11621094,0.09765625,0.16894531,0.100097656,0.12451172,-0.063964844,-0.125,-0.20605469,-0.110839844,0.05102539,-0.036132812,-0.056640625,-0.0017776489,0.055908203,0.14355469,0.052978516,0.11230469,0.024291992,0.27148438,0.13476562,-0.17675781,0.076660156,0.049804688,0.10498047,0.15917969,-0.071777344,-0.0154418945,-0.0029144287,-8.4877014e-05,-0.19140625,0.24023438,-0.07080078,-0.041992188,-0.07714844,0.12451172,0.0063171387,0.17578125,-0.12451172,0.07470703,0.1484375,0.14746094,-0.11035156,-0.064453125,0.02722168,0.072753906,-0.036132812,-0.04321289,-0.22753906,-0.14160156,-0.049560547,-0.33398438,-0.0043945312,0.18847656,-0.05517578,-0.00023460388,0.07421875,0.18847656,-0.05053711,-0.032226562,-0.09326172,-0.016235352,0.07470703,-0.041259766,0.061279297,-0.071777344,-0.096191406,-0.24414062,-0.036621094,0.095214844,-0.0010604858,-0.002166748,-0.14453125,0.0063476562,0.06591797,-0.107421875,0.15625,0.059570312,0.067871094,-0.0072021484,-0.028930664,-0.07421875,0.12890625,-0.012756348,0.03857422,-0.030517578,-0.055419922,-0.00031661987,-0.05126953,-0.22265625,-0.060058594,-0.13476562,-0.30859375,-0.056396484,0.05078125,0.13378906,0.14746094,0.07470703,-0.0049438477,0.18066406,0.05102539,0.14453125,0.018432617,-0.016357422,0.076171875,0.20996094,0.033935547,0.22265625,0.014282227,0.22363281,0.057617188,-0.020263672,0.111328125,0.060058594,-0.119140625,0.31640625,0.049072266,0.22070312,-0.08544922,0.021484375,-0.09033203,0.03857422,-0.15429688,0.010192871,-0.09716797,0.07763672,0.076660156,-0.044677734,-0.018676758,0.15625,0.20019531,0.17089844,0.0019989014,0.025268555,-0.0138549805,-0.040283203,0.13378906,0.049072266,-0.05126953,-0.017089844,-0.019042969,-0.03564453,0.13964844,0.061279297,-0.10888672,-0.12060547,0.096191406,-0.033447266,-0.12988281,0.022705078,0.071777344,-0.076660156,0.115722656,-0.091308594,0.028808594,-0.050048828,0.203125,-0.038085938,-0.1328125,0.17871094,-0.02746582,-0.0054016113,0.076171875,0.1015625,-0.16796875,-0.08105469,0.109375,-0.14550781,0.0859375,-0.328125,-0.06933594,-0.22753906,-0.10205078,-0.15625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.07470703,-0.12792969,-0.36914062,0.078125,-0.17773438,0.09082031,-0.078125,-0.27539062,-0.12988281,-0.34960938,-0.3203125,-0.08691406,-0.16699219,0.031982422,0.07714844,-0.12597656,-0.20703125,-0.13183594,-0.15234375,0.03930664,-0.03930664,0.03491211,-0.40820312,0.22265625,-0.04663086,-0.29882812,0.012573242,0.078125,-0.034179688,0.087402344,0.12890625,-0.15527344,-0.12695312,0.07861328,-0.38671875,0.19824219,0.12011719,0.02709961,-0.006439209,0.33984375,-0.013061523,-0.21386719,0.056152344,0.068359375,-0.018432617,-0.07910156,0.015075684,-0.010375977,0.017211914,0.083496094,-0.20800781,0.061523438,0.011352539,-0.083496094,-0.11328125,0.20117188,-0.075683594,-0.19042969,-0.20410156,0.07373047,-0.016479492,0.17382812,0.021972656,-0.0703125,0.051513672,0.0703125,-0.24316406,-0.2890625,0.040527344,-0.20703125,0.0036621094,0.13867188,-0.063964844,-0.14746094,-0.029663086,0.0057373047,-0.024047852,0.009643555,0.104003906,-0.01977539,0.014892578,-0.12695312,-0.47851562,-0.038330078,-0.111816406,0.10546875,-0.11279297,-0.095703125,-0.045166016,-0.009765625,0.06640625,0.107910156,0.072265625,-0.24414062,0.12988281,-0.14160156,-0.07910156,0.203125,-0.18261719,0.076660156,0.05078125,-0.13671875,-0.19628906,0.012390137,-0.06542969,-0.061279297,0.076171875,-0.05126953,0.067871094,0.111816406,0.08691406,-0.06201172,0.0859375,0.14160156,-0.19238281,0.033691406,0.018798828,0.14355469,0.0076904297,-0.067871094,-0.024902344,-0.10498047,-0.12402344,0.030517578,0.16992188,0.010314941,-0.017944336,-0.016601562,0.037109375,0.08544922,-0.11669922,-0.032226562,0.12597656,0.13671875,0.10253906,0.09277344,0.08984375,-0.13574219,-0.053955078,0.036376953,0.118652344,-0.047851562,0.25585938,0.072265625,-0.0047912598,0.100097656,-0.07861328,-0.071777344,-0.008911133,-0.106933594,0.08691406,0.10986328,-0.100097656,0.13867188,0.23925781,0.014160156,0.003967285,0.030395508,0.1328125,0.111328125,0.040039062,0.076660156,-0.29882812,-0.059570312,-0.053222656,-0.008239746,-0.038330078,-0.15722656,-0.080566406,0.20019531,-0.00289917,0.091796875,0.041259766,-0.038085938,0.04711914,-0.044433594,-0.05810547,0.036376953,-0.09375,0.024536133,0.06689453,-0.012329102,0.044921875,0.021118164,0.068847656,0.13378906,0.11621094,0.029907227,0.059570312,-0.12060547,0.075683594,-0.047607422,0.07080078,-0.06738281,-0.16503906,-0.056152344,0.10546875,0.010314941,-0.061035156,0.09863281,0.05053711,0.043701172,0.140625,-0.14746094,-0.041503906,0.12890625,0.016967773,-0.028442383,0.022827148,0.140625,-0.10595703,0.060058594,0.05102539,0.08886719,-0.06347656,0.07128906,-0.026367188,0.12109375,-0.025634766,-0.033447266,0.12988281,0.049316406,0.12988281,-0.119140625,0.13085938,0.083496094,-0.10595703,0.056884766,-0.028198242,-0.12890625,0.080078125,-0.04711914,0.095214844,0.33398438,0.06542969,0.15234375,0.01928711,-0.17285156,-0.0067749023,0.012451172,-0.03564453,0.08251953,-0.15527344,0.20703125,0.018188477,0.123535156,0.17675781,-0.15527344,-0.0009994507,-0.04296875,0.2734375,0.095214844,0.09277344,-0.08203125,-0.026977539,-0.1484375,0.07324219,0.11425781,-0.21679688,0.0062561035,-0.07128906,0.11425781,0.10449219,0.14257812,-0.050048828,-0.12597656,0.087402344,-0.004425049,0.0390625,0.026123047,-0.010803223,-0.010192871,0.12207031,0.20410156,-0.1953125,-0.09326172,-0.10253906,-0.043945312,0.076660156,-0.13183594,-0.13378906,-0.087402344,0.27148438,-0.010192871,-0.100097656,0.16503906,0.16601562,-0.03857422,-0.0058288574,0.05053711,-0.038330078,0.052490234,0.11376953,-0.1640625,-0.115722656,0.18457031,-0.050048828,-0.16210938,0.17871094,-0.18261719,0.107910156,-0.08886719,0.09033203,-0.064453125,0.14355469,0.14257812,0.068847656,-0.071777344,0.09326172,0.26757812,-0.049804688,0.028686523,0.104003906,-0.06298828,-0.17773438,0.011657715,-0.033447266,-0.15820312,-0.047607422,-0.095703125,-0.24121094,0.15527344,-0.41601562,0.083984375,-0.33203125,0.00046157837,-0.06933594,-0.38476562,-0.00025749207,0.14941406,0.005340576,-0.09765625,-0.030517578,-0.15039062,0.0119018555,0.087402344,-0.15527344,-0.002746582,-0.24707031,0.013244629,-0.13378906,0.12890625,0.060791016,-0.006439209,-0.057128906,0.20410156,-0.0011520386,-0.11621094,-0.025268555,0.13574219,-0.09716797,0.025268555,0.0019989014,0.03466797,-0.16796875,0.17285156,0.017456055,-0.032226562,0.26171875,0.07128906,-0.063964844,0.10839844,-0.030151367,-0.02368164,-0.04711914,0.080078125,-0.14550781,0.09375,0.08154297,-0.012207031,-0.16015625,0.052001953,-0.12451172,-0.123046875,-0.009155273,-0.17871094,0.01574707,0.14941406,-0.036865234,-0.140625,-0.09716797,-0.022949219,-0.22753906,0.12158203,-0.15136719,0.056152344,-0.30078125,-0.16210938,-0.29882812,0.09472656,-0.028198242,0.072265625,-0.10986328,0.04711914,0.23242188,0.032714844,-0.18359375,-0.03930664,-0.044921875,0.15234375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16992188,0.10888672,0.1875,0.02734375,0.19238281,0.056152344,0.08935547,-0.008728027,-0.15820312,0.09716797,0.18164062,-0.06347656,-0.031982422,-0.06982422,0.056884766,0.2265625,0.010375977,0.013183594,0.018554688,0.18066406,0.059814453,0.019042969,-0.06542969,-0.06689453,0.103027344,0.12451172,-0.14160156,-0.16503906,0.15039062,0.28710938,0.140625,0.023803711,0.02758789,0.07519531,0.096191406,0.13671875,0.041992188,-0.047851562,0.09375,-0.1328125,0.043945312,-0.0050354004,-0.15234375,-0.091308594,0.029785156,0.03955078,0.04296875,0.040283203,0.02722168,-0.025512695,0.03173828,0.15332031,-0.07324219,-0.052246094,-0.17285156,-0.15722656,-0.01550293,0.05810547,0.037841797,-0.06640625,0.19726562,-0.12402344,0.091308594,0.18457031,-0.09863281,-0.002166748,0.2734375,-0.03930664,-0.119628906,-0.22167969,-0.21972656,-0.087402344,-0.004852295,-0.12011719,0.13183594,0.10058594,0.07373047,-0.13867188,0.16894531,0.18554688,-0.13085938,0.1640625,0.16699219,0.061767578,-0.0005302429,0.10253906,-0.068847656,-0.068847656,0.0019683838,0.16601562,-0.00680542,0.11816406,-0.15136719,-0.08496094,-0.23535156,-0.13378906,-0.115722656,0.115722656,-0.06640625,0.016357422,0.007080078,0.061035156,0.1953125,-0.09814453,-0.059814453,0.0005493164,-0.21777344,-0.030395508,-0.08251953,-0.038330078,-0.016723633,0.103027344,-0.24902344,-0.13378906,0.025390625,0.11035156,-0.010375977,0.05859375,-0.018310547,-0.053222656,-0.026977539,0.052001953,-0.084472656,-0.15527344,0.06298828,0.01940918,-0.16503906,-0.00089263916,-0.24316406,-0.099121094,-0.100097656,0.09863281,-0.14160156,-0.11376953,0.14941406,-0.46484375,0.09814453,0.14648438,-0.07470703,-0.0033111572,0.07080078,-0.15722656,-0.22949219,0.064453125,-0.20410156,0.048095703,0.02758789,-0.04296875,0.010498047,-0.13964844,0.04663086,-0.3359375,0.07080078,0.03564453,0.10644531,-0.07763672,-0.040283203,0.12158203,-0.104003906,0.07910156,-0.08935547,-0.053466797,-0.17578125,-0.1796875,0.16894531,-0.0063171387,-0.17578125,-0.053710938,0.114746094,-0.055908203,-0.016357422,-0.203125,-0.118652344,0.072265625,0.1015625,-0.08203125,-0.421875,0.041259766,-0.048583984,-0.05859375,0.017944336,0.044433594,0.040039062,-0.2109375,-0.004852295,-0.05444336,0.025634766,-0.068847656,-0.10546875,-0.01928711,-0.052734375,-0.48632812,-0.09423828,0.23339844,-0.23242188,0.026367188,-0.0071411133,0.16210938,0.067871094,-0.17382812,0.02722168,-0.09277344,-0.072753906,0.06542969,-0.19824219,-0.09716797,-0.16015625,-0.28320312,-0.067871094,0.13964844,-0.13671875,-0.040527344,-0.26757812,-0.087890625,0.07861328,-0.3046875,-0.087402344,0.031982422,-0.119628906,-0.008178711,-0.20214844,-0.029785156,-0.008972168,-0.09082031,-0.34765625,0.03540039,-0.038085938,-0.075683594,-0.20507812,-0.13476562,0.08935547,-0.115234375,-0.028442383,-0.024780273,0.006378174,0.03149414,-0.29296875,-0.33984375,-0.28515625,0.019165039,-0.28710938,0.119140625,0.12011719,0.11328125,0.13183594,0.106933594,-0.106933594,-0.095703125,0.08642578,-0.071777344,0.059326172,0.20214844,-0.31445312,-0.0076293945,0.060546875,0.0119018555,-0.421875,0.25585938,-0.010620117,0.0066833496,0.026489258,-0.047607422,-0.06933594,0.07470703,0.068847656,-0.03930664,0.06201172,0.18652344,-0.07128906,0.046875,0.026977539,-0.123535156,0.033935547,-0.009887695,-0.03857422,0.025878906,-0.21972656,0.026733398,0.21386719,0.13476562,0.032470703,-0.091796875,-0.00019073486,0.040039062,-0.18847656,-0.096191406,0.17675781,-0.33984375,-0.07373047,-0.032714844,-0.20117188,0.0054016113,-0.05810547,-0.025878906,-0.14746094,0.088378906,0.053955078,0.053955078,-0.13085938,-0.15136719,-0.15527344,-0.008483887,0.09472656,-0.13378906,-0.10888672,0.111328125,-0.025878906,-0.095214844,0.03881836,0.09033203,0.0053100586,-0.11230469,-0.13964844,0.14941406,0.037597656,0.057617188,-0.15625,-0.14941406,-0.05078125,-0.27539062,-0.3125,-0.14257812,-0.014343262,-0.030273438,-0.02734375,-0.04321289,0.006591797,0.17871094,0.07324219,-0.06347656,0.3359375,-0.083984375,0.17480469,0.029418945,-0.052246094,-0.23144531,-0.26757812,0.107910156,0.09716797,0.15820312,-0.13964844,0.0063476562,0.20507812,0.041503906,-0.087402344,-0.17382812,0.05493164,0.043945312,0.11376953,0.10986328,-0.025024414,-0.22753906,-0.24707031,-0.11328125,0.067871094,-0.00018024445,0.15917969,-0.096191406,0.044189453,0.076171875,-0.08544922,0.041259766,0.11279297,0.028808594,0.16796875,0.22265625,0.048095703,-0.27929688,-0.29882812,0.0703125,0.038085938,-0.05053711,0.0077819824,0.041503906,-0.048095703,-0.049072266,-0.118652344,0.12011719,-0.18066406,-0.1953125,-0.15527344,0.024169922,0.096191406,-0.34960938,0.042236328,-0.08203125,-0.27929688,0.1953125,-0.044677734,-0.21777344,-0.08496094,-0.28515625,-0.18457031,0.18457031,0.010375977,-0.095214844,-0.12109375,-0.052490234,0.04736328,-0.1953125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.08203125,0.103515625,-0.3203125,-0.18945312,0.018310547,-0.05053711,-0.026611328,-0.09765625,-0.027954102,-0.067871094,-0.024291992,0.052490234,0.01586914,-0.067871094,-0.057128906,0.04345703,-0.23339844,0.0019226074,-0.38085938,-0.076171875,0.14160156,-0.13671875,-0.033447266,0.08203125,-0.10058594,0.103027344,0.057128906,-0.064941406,0.059570312,-0.03857422,0.15527344,-0.01586914,0.014160156,-0.029907227,-0.265625,-0.115722656,0.06347656,-0.027832031,0.026123047,-0.20117188,-0.043945312,-0.057861328,0.059814453,0.04711914,-0.10595703,0.21972656,0.14550781,-0.05078125,0.06738281,-0.13378906,-0.119628906,-0.20800781,0.08251953,-0.04345703,-0.14257812,-0.049804688,-0.083984375,-0.076660156,0.16210938,0.005432129,-0.025268555,-0.0546875,0.14355469,-0.25390625,0.171875,0.07714844,-0.15429688,-0.14941406,-0.06689453,0.10595703,0.14160156,0.12109375,-0.07373047,0.092285156,0.16796875,0.19042969,0.059814453,0.043945312,0.119628906,-0.29492188,-0.16601562,-0.023071289,-0.15332031,-0.24316406,-0.0019073486,-0.17578125,-0.009277344,0.13085938,0.076171875,0.092285156,0.111816406,-0.018676758,-0.080078125,0.2578125,-0.06738281,-0.05834961,0.010192871,-0.05517578,-0.19726562,-0.18164062,0.03466797,-0.07373047,-0.07861328,0.052246094,0.009887695,-0.04736328,-0.07421875,-0.012878418,-0.016479492,0.08642578,0.010620117,-0.122558594,0.20996094,-0.06689453,-0.13378906,-0.072753906,0.106933594,-0.055419922,-0.107421875,-0.016357422,0.061523438,-0.040527344,0.12988281,-0.013549805,0.12158203,0.018676758,-0.012878418,-0.024780273,0.24609375,-0.16796875,-0.17285156,-0.19238281,0.087890625,-0.05517578,-0.08984375,-0.107421875,0.045166016,-0.006286621,0.12402344,0.040771484,0.024780273,0.09814453,0.15527344,0.17089844,0.043945312,-0.20507812,-0.18554688,-0.05834961,-0.17089844,0.1328125,-0.055908203,0.049316406,-0.0859375,-0.012512207,0.12109375,0.10595703,0.083496094,0.10839844,0.038330078,-0.103515625,-0.14160156,-0.1484375,-0.007751465,-0.123535156,-0.041748047,0.036865234,0.24414062,0.10498047,0.080566406,-0.041748047,-0.12402344,0.01159668,0.017822266,0.09326172,0.05029297,0.017333984,0.33398438,-0.087890625,-0.033935547,-0.09765625,0.08886719,-0.021972656,0.052001953,0.016479492,-0.09326172,-0.04272461,0.08154297,0.03173828,0.13476562,0.06201172,0.109375,0.017700195,0.24316406,-0.078125,-0.19628906,-0.20117188,-0.092285156,-0.21679688,-0.16210938,-0.039794922,-0.06982422,-0.13378906,-0.012268066,0.07910156,0.13964844,0.036865234,-0.055664062,-0.025512695,0.14941406,-0.06591797,-0.08642578,-0.22558594,-0.015563965,-0.09326172,-0.009887695,-0.06640625,-0.0107421875,-0.22265625,0.0058288574,-0.029541016,0.109375,-0.083496094,0.14941406,0.048339844,-0.11279297,-0.20898438,-0.07714844,0.00063323975,-0.22070312,0.115722656,0.041992188,0.045898438,0.0069274902,-0.234375,0.24511719,0.17480469,0.072265625,-0.114746094,-0.09277344,-0.07519531,0.072265625,-0.045654297,0.11621094,-0.13769531,0.025268555,-0.020629883,-0.06225586,0.19726562,0.0015869141,-0.030517578,-0.15722656,-0.17382812,-0.07519531,-0.12890625,-0.005218506,0.009033203,0.15820312,0.084472656,-0.14941406,-0.14941406,0.04321289,0.009155273,0.0859375,-0.09863281,0.079589844,-0.15332031,-0.21679688,-0.024169922,-0.08691406,0.06689453,-0.04272461,-0.13867188,-0.07714844,-0.018798828,-0.18457031,-0.22167969,-0.0054626465,-0.22753906,-0.0546875,0.119628906,-0.04345703,-0.060546875,-0.040039062,-0.16796875,0.06542969,-0.20019531,-0.13867188,-0.03955078,0.019042969,-0.07128906,-0.171875,-0.19628906,-0.09814453,0.14355469,-0.088378906,-0.07470703,0.06640625,-0.01586914,-0.11767578,-0.059814453,0.03564453,0.013427734,0.10205078,0.022460938,-0.17773438,0.009277344,-0.17089844,-0.17578125,-0.1015625,-0.05419922,-0.05444336,0.07519531,0.044921875,-0.063964844,0.10205078,0.048828125,-0.045410156,-0.01928711,0.05126953,0.0034179688,-0.040527344,0.17773438,-0.09472656,0.099121094,-0.013549805,-0.19238281,-0.05834961,-0.006134033,-0.020019531,0.10498047,0.13769531,0.111328125,-0.18652344,0.0009460449,0.020996094,-0.076660156,-0.12207031,0.16308594,-0.115722656,-0.14355469,-0.029174805,0.22558594,-0.30859375,0.1484375,0.05493164,0.060791016,-0.16308594,0.13183594,-0.052246094,0.07519531,0.059570312,-0.020263672,0.21582031,-0.12597656,-0.125,0.099121094,0.123046875,0.06225586,0.068847656,0.03540039,0.01586914,-0.0014266968,-0.087890625,0.046875,-0.07763672,0.33007812,0.020019531,0.038085938,-0.12988281,0.017822266,-0.047607422,-0.064453125,-0.044189453,0.12451172,0.034423828,0.064453125,-0.002609253,0.20117188,-0.07421875,0.013122559,-0.020385742,-0.032714844,0.1484375,0.06738281,-0.009460449,0.076660156,-0.057617188,-0.026000977,-0.14648438,-0.18554688,-0.11279297,0.11621094,-0.03515625,0.14355469,0.056396484,-0.03149414,0.027709961,0.002960205,0.15429688,0.044921875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.0071411133,0.014465332,-0.057373047,-0.019165039,0.03930664,0.057373047,0.016601562,0.12060547,0.08496094,-0.07324219,-0.026855469,-0.022338867,0.017211914,0.12597656,-0.032226562,-0.030151367,0.104003906,-0.11035156,-0.08691406,-0.12060547,-0.011657715,0.0024414062,-0.087402344,-0.021362305,0.07861328,-0.07421875,-0.01586914,-0.13085938,-0.061279297,0.0051879883,-0.072265625,-0.015319824,0.0073547363,-0.016845703,-0.14746094,-0.107421875,-0.021118164,0.028320312,0.08154297,0.14355469,-0.099121094,-0.09863281,0.0056762695,-0.07763672,0.03149414,0.0546875,0.088378906,0.023071289,-0.06933594,0.18066406,-0.12988281,-0.06738281,-0.076171875,-0.00021457672,0.006652832,-0.08203125,0.013061523,-0.064453125,-0.15136719,0.296875,-0.020996094,-0.09326172,-0.029296875,0.064941406,-0.09375,0.21484375,0.026489258,-0.13574219,-0.053222656,0.045166016,-0.023925781,-0.14355469,-0.056396484,0.053466797,-0.13964844,0.23242188,0.030517578,-0.123046875,0.11035156,-0.053710938,0.07519531,-0.049560547,-0.030273438,0.06542969,0.007751465,-0.039794922,-0.08105469,0.091308594,0.026123047,0.09863281,0.008361816,0.0041503906,-0.095703125,0.13085938,0.022705078,-0.060546875,0.00063323975,-0.030639648,-0.1015625,-0.015991211,0.16308594,-0.07373047,0.048583984,0.043945312,-0.09033203,0.010925293,-0.08642578,-0.17773438,0.020385742,0.048095703,0.061767578,-0.099609375,-0.078125,0.13867188,-0.13574219,-0.12792969,0.16113281,0.09814453,-0.09277344,0.11279297,0.09423828,-0.14941406,0.0028533936,0.17675781,0.056396484,0.0019073486,0.14648438,-0.016113281,0.123046875,0.028320312,0.00019931793,-0.1015625,-0.07519531,-0.0154418945,0.096191406,0.0073547363,-0.11279297,0.025634766,0.063964844,0.15136719,0.022705078,-0.079589844,-0.05493164,0.16699219,-0.015258789,0.14453125,-0.092285156,-0.091308594,0.06689453,-0.06689453,0.056640625,0.114746094,0.032470703,0.030395508,0.063964844,-0.04345703,-0.08496094,0.006286621,-0.072753906,0.0032196045,-0.021606445,0.091308594,-0.14257812,-0.05908203,0.08251953,-0.15039062,-0.05444336,0.18554688,0.048583984,0.13867188,-0.04663086,0.08251953,-0.01965332,0.10498047,0.2734375,0.06933594,-0.095703125,0.104003906,-0.14648438,0.07714844,0.057617188,-0.12597656,0.00390625,-0.12792969,-0.053710938,-0.09472656,0.024291992,-0.02355957,0.015563965,0.078125,0.13867188,0.052001953,-0.088378906,0.021362305,-0.03491211,-0.07421875,-0.06933594,0.119628906,-0.044433594,-0.13378906,0.06542969,-0.10644531,-0.044189453,0.084472656,-0.018554688,0.033447266,0.10839844,0.018798828,-0.07861328,0.15332031,-0.083496094,-0.13769531,-0.22753906,-0.19140625,0.12597656,-0.05908203,-0.07421875,-0.114746094,0.035888672,-0.09375,-0.043945312,0.047851562,0.036132812,-0.022216797,-0.16894531,-0.09082031,-0.14453125,-0.22167969,0.08251953,0.06347656,-0.084472656,-0.036865234,0.007751465,-0.10644531,-0.021728516,0.13183594,-0.19726562,-0.100097656,-0.14160156,0.104003906,-0.018188477,-0.04345703,-0.15527344,-0.109375,0.040283203,-0.01940918,0.0703125,0.05078125,-0.021362305,-0.08496094,-0.119628906,-0.06542969,-0.064453125,0.022949219,0.045410156,0.00090789795,0.0703125,-0.031982422,-0.10058594,-0.17089844,-0.05444336,0.041015625,-0.01361084,-0.140625,-0.12158203,-0.096191406,-0.049560547,0.080078125,0.028930664,0.015197754,-0.10058594,-0.18261719,0.059570312,0.011291504,-0.10839844,0.01159668,0.002670288,-0.13867188,-0.01977539,-0.1640625,0.06689453,-0.14746094,-0.095703125,0.048339844,-0.15527344,-0.06542969,0.060302734,-0.16894531,-0.018310547,0.029296875,-0.04345703,-0.14648438,0.010498047,0.005065918,0.076660156,-0.11425781,0.038330078,-0.14648438,-0.0008087158,0.049804688,-0.1328125,-0.109375,-0.03100586,-0.10253906,-0.08496094,-0.008056641,-0.10888672,-0.12402344,-0.051757812,0.072265625,-0.03881836,0.06542969,-0.027832031,-0.118652344,0.041503906,0.04272461,-0.13183594,0.0007133484,-0.09863281,-0.123046875,0.0154418945,0.11328125,0.0095825195,-0.043701172,-0.103515625,-0.021362305,0.021728516,-0.059326172,-0.091796875,-0.19824219,0.072753906,0.15625,-0.234375,-0.13867188,-0.11376953,-0.14648438,-0.020874023,-0.12597656,-0.072265625,-0.13964844,-0.18261719,0.017089844,-0.02734375,-0.115234375,-0.03491211,-0.20117188,0.010009766,-0.08935547,-0.022705078,-0.002822876,-0.068359375,0.15820312,-0.0138549805,-0.032226562,-0.14257812,0.012390137,-0.064941406,0.0057678223,0.0034637451,-0.103027344,-0.064453125,-0.16308594,0.09814453,0.14550781,-0.010131836,-0.015258789,-0.0015716553,0.04296875,-0.008544922,0.05029297,-0.045410156,-0.1328125,-0.1953125,-0.107421875,0.04296875,0.02355957,0.07763672,-0.07714844,-0.018310547,-0.083496094,-0.14941406,0.049560547,-0.0859375,-0.11425781,-0.13867188,-0.07470703,1.3291836e-05,-0.040771484,-0.04663086,0.002822876,0.052978516,-0.068359375,0.04321289,-0.13183594,-0.018066406,-0.048828125,-0.18261719,0.034179688,-0.052001953,-0.033203125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.19628906,-0.06689453,-0.1953125,0.015136719,0.15625,0.13867188,0.30664062,-0.16113281,-0.12890625,-0.1328125,0.10839844,-0.0625,0.15527344,0.19042969,-0.013061523,0.119140625,-0.19140625,0.11767578,-0.15039062,-0.11376953,-0.011230469,-0.13085938,0.079589844,-0.095703125,-0.11425781,-0.0075683594,-0.07519531,-0.13476562,-0.111328125,-0.09082031,-0.02758789,0.05029297,0.09814453,-0.20410156,-0.14941406,-0.059570312,0.19824219,0.24121094,0.13183594,-0.31054688,0.048339844,-0.18164062,-0.06225586,-0.060546875,-0.07714844,-0.17382812,-0.016845703,0.036376953,0.12792969,-0.083984375,-0.19238281,-0.076171875,0.06347656,-0.12109375,-0.23632812,-0.40625,-0.115722656,-0.15332031,-0.22167969,-0.0053100586,0.013549805,-0.29296875,0.042236328,0.18945312,-0.071777344,0.028930664,-0.092285156,-0.05517578,-0.20117188,-0.09863281,-0.12792969,-0.07519531,-0.080078125,-0.15722656,-0.1640625,-0.0018386841,0.047851562,-0.12451172,-0.06689453,0.10449219,-0.040283203,-0.1484375,-0.13964844,-0.07714844,0.072753906,0.05493164,-0.0037231445,-0.057128906,-0.079589844,-0.07128906,0.23730469,-0.30859375,0.088378906,-0.15625,-0.068847656,0.12890625,-0.12695312,0.063964844,-0.11328125,0.088378906,0.08105469,-0.05517578,-0.063964844,-0.2109375,-0.07861328,0.012939453,-0.03540039,0.076660156,0.08544922,-0.05102539,-0.03857422,-0.06689453,0.13085938,-0.036621094,-0.041015625,-0.00029182434,0.03515625,0.12402344,-0.099609375,0.13574219,0.034179688,-0.0041503906,-0.17089844,0.08642578,0.056396484,0.20507812,0.009521484,-0.043945312,0.072265625,-0.06640625,-0.18652344,0.118652344,0.19238281,-0.0024108887,0.05126953,-0.17578125,0.049804688,-0.06591797,-0.037109375,0.12695312,0.041259766,-0.19433594,-0.033691406,-0.0064697266,0.08886719,-0.091308594,-0.12158203,0.068847656,0.07861328,0.095703125,-0.021850586,-0.1640625,0.021118164,-0.14453125,-0.017822266,0.047851562,-0.0050354004,0.006652832,-0.15429688,0.12011719,0.1875,0.048339844,-0.14355469,-0.052246094,0.010559082,-0.072753906,-0.17578125,-0.18652344,-0.013793945,-0.067871094,-0.19824219,-0.29882812,-0.018066406,-0.021850586,-0.05078125,0.076171875,-0.08935547,-0.10546875,0.1640625,0.03930664,0.053222656,0.14355469,0.033203125,-0.15820312,-0.125,0.107910156,0.055419922,0.03930664,0.115234375,-0.042236328,-0.18261719,0.19042969,-0.080078125,-0.11035156,0.060302734,0.12890625,-0.13085938,-0.1328125,0.013427734,-0.0030212402,0.038085938,0.35742188,0.07373047,0.22558594,0.079589844,-0.087402344,-0.14453125,0.087890625,-0.16015625,-0.13671875,-0.032714844,0.025024414,-0.11328125,0.029541016,0.25585938,0.025878906,-0.0062561035,0.14453125,-0.016845703,-0.00045204163,-0.11328125,-0.12597656,-0.26757812,0.040771484,-0.20800781,0.009521484,-0.08642578,0.12011719,-0.03930664,-0.07714844,-0.20214844,-0.3046875,0.02331543,0.17578125,0.05908203,0.068847656,-0.103515625,0.171875,-0.07519531,0.14550781,0.006072998,0.021118164,0.045898438,-0.059814453,-0.40039062,-0.0010299683,0.21679688,-0.10449219,-0.061523438,-0.080566406,-0.030395508,-0.096191406,-0.09375,0.18554688,-0.27148438,0.12597656,-0.10595703,-0.15429688,0.021728516,-0.09033203,-0.28515625,-0.004180908,0.11328125,0.057861328,0.05908203,0.067871094,0.25976562,-0.0071411133,0.036132812,0.13183594,-0.0859375,0.23046875,-0.30859375,-0.053222656,-0.1171875,0.11816406,-0.32617188,0.079589844,0.095214844,-0.072753906,0.010559082,0.041503906,0.055664062,0.115234375,0.13769531,-0.037841797,-0.1640625,-0.020507812,-0.12890625,-0.2890625,-0.119140625,0.049316406,-0.049316406,-0.009765625,0.06225586,0.11669922,-0.099121094,0.002670288,0.11328125,-0.091796875,-0.12988281,-0.009399414,-0.114746094,0.08886719,-0.016967773,-0.21484375,0.021850586,-0.047607422,-0.13574219,-0.05126953,0.15136719,-0.12890625,-0.07763672,-0.09814453,-0.15332031,-0.0048217773,-0.103515625,-0.123046875,-0.37890625,0.040527344,0.024536133,-0.15234375,-0.033203125,-0.24511719,-0.068847656,0.11816406,-0.15722656,-0.04638672,0.055419922,-0.23242188,-0.12988281,-0.020751953,-0.23925781,-0.11669922,0.03491211,0.14257812,0.021240234,-0.092285156,-0.057861328,-0.13183594,-0.095214844,0.07373047,0.21679688,-0.31054688,-0.0087890625,-0.16601562,-0.37695312,0.07861328,-0.08300781,0.012634277,0.006011963,0.076660156,0.036865234,-0.07470703,0.015075684,0.171875,-0.020141602,0.14257812,0.21191406,-0.09082031,0.056396484,-0.23535156,-0.07714844,-0.13085938,-0.10546875,-0.059814453,-0.15917969,-0.02368164,0.021972656,-0.07373047,-0.031982422,0.111328125,0.036132812,-0.041259766,0.08251953,-0.24316406,0.018920898,-0.013061523,-0.03955078,0.099121094,0.08544922,0.05493164,-0.23242188,0.17480469,-0.060546875,-0.01965332,0.0070495605,-0.03515625,-0.13085938,0.029907227,0.012573242,0.002090454,0.006011963,-0.03881836,0.084472656,0.115722656,-0.06591797,-0.08154297,-0.18261719,0.09326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.14746094,0.13476562,0.17480469,-0.092285156,0.09033203,0.29492188,0.096191406,0.104003906,0.064453125,-0.022705078,-0.025878906,-0.03564453,-0.07714844,0.21191406,-0.0024261475,0.19726562,-0.030029297,-0.103515625,-0.05078125,-0.0034484863,0.043701172,-0.015625,-0.06689453,0.1640625,0.106933594,0.171875,0.13964844,-0.07324219,-0.002380371,0.11621094,0.08984375,0.11669922,-0.08984375,0.030273438,-0.068359375,-0.087402344,0.0032806396,0.22753906,-0.044921875,0.18066406,0.044433594,-0.036132812,-0.21289062,-0.123046875,0.051757812,-0.018310547,-0.2109375,0.067871094,-0.05517578,-0.1640625,0.025390625,-0.09423828,-0.12792969,0.047607422,-0.095214844,-0.044921875,-0.056152344,-0.012207031,-0.29296875,-0.06591797,-0.12207031,0.020019531,-0.0859375,0.011962891,0.056152344,-0.075683594,-0.19238281,-0.3125,-0.23925781,-0.041992188,-0.013244629,0.03930664,0.075683594,-0.19433594,0.026855469,0.072265625,-0.04345703,-0.09375,-0.27148438,-0.3359375,-0.071777344,-0.052246094,0.16015625,-0.12011719,-0.114746094,0.09716797,0.18164062,-0.22753906,-0.09667969,0.079589844,-0.19042969,0.045898438,-0.068359375,0.27148438,-0.013366699,0.075683594,-0.10498047,-0.022338867,-0.07519531,-0.064941406,0.0047302246,0.24511719,0.16210938,-0.100097656,-0.016357422,0.09765625,0.10595703,-0.01550293,0.053222656,0.036376953,-0.10205078,0.23925781,0.045898438,0.031982422,-0.051757812,0.03173828,0.05493164,0.11279297,-0.080078125,0.087402344,-0.0019836426,-0.014953613,-0.02734375,0.03857422,0.084472656,-0.080566406,-0.11816406,0.140625,0.057617188,-0.19433594,0.080078125,-0.01574707,0.17578125,0.03955078,0.076660156,0.12207031,0.019165039,-0.12060547,-0.0051879883,-0.022705078,-0.123535156,0.010986328,0.001876831,-0.16601562,-0.059570312,-0.171875,-0.16894531,-0.27929688,0.13378906,-0.107421875,-0.096191406,0.07421875,0.023925781,-0.20410156,-0.0045776367,0.12597656,-0.041015625,-0.27148438,-0.17773438,-0.11328125,-0.20410156,-0.1015625,0.12011719,0.099121094,-0.35742188,-0.17773438,-0.10449219,-0.14648438,-0.08642578,0.09814453,-0.011230469,-0.080566406,0.043945312,0.032958984,-0.006286621,0.19335938,-0.11425781,-0.328125,0.06640625,-0.00793457,-0.17089844,0.34375,-0.001121521,-0.015563965,-0.0010223389,-0.103515625,-0.028686523,-0.29492188,0.12695312,0.099609375,-0.19335938,0.17871094,0.03149414,-0.04248047,-0.12451172,0.16308594,-0.19921875,0.08203125,0.119628906,-0.013671875,-0.08203125,-0.15136719,0.033203125,-0.16699219,0.052246094,-0.06689453,-0.15039062,0.092285156,-0.025024414,-0.010864258,-0.013122559,-0.045410156,-0.0138549805,-0.09375,0.25195312,0.04248047,-0.11816406,-0.20019531,0.10644531,0.234375,-0.030273438,-0.09423828,-0.017822266,-0.26171875,-0.029418945,0.011291504,-0.14453125,-0.3046875,0.09277344,-0.053955078,0.048828125,0.071777344,0.021850586,-0.06347656,0.10058594,-0.07373047,0.23828125,-0.01940918,-0.0018463135,-0.31835938,-0.18261719,0.050048828,0.020019531,0.13085938,0.0099487305,-0.08642578,0.13085938,-0.14746094,0.04321289,-0.05029297,-0.040283203,-0.12792969,-0.068359375,0.22558594,-0.17382812,0.34570312,-0.20019531,-0.052001953,-0.10644531,-0.08642578,0.0038146973,-0.13964844,0.03173828,-0.12402344,-0.0859375,0.10058594,-0.028564453,-0.15820312,-0.09326172,0.057373047,-0.16210938,0.24804688,-0.16796875,0.15722656,0.013061523,0.034179688,-0.10644531,-0.09667969,-0.041992188,-0.010314941,-0.111328125,0.029052734,-0.088378906,-0.09423828,0.01550293,-0.051757812,-0.00061416626,0.055664062,0.16015625,0.12207031,-0.14257812,-0.14453125,-0.091308594,-0.02709961,0.045654297,-0.013916016,0.033691406,-0.016845703,0.048828125,-0.0062561035,0.10839844,0.037597656,-0.06201172,-0.20703125,0.045410156,0.072753906,-0.02368164,-0.03173828,-0.041748047,-0.011962891,-0.104003906,-0.047851562,0.083984375,0.11816406,0.09082031,-0.088378906,0.12597656,0.014160156,0.09326172,-0.1796875,-0.072753906,-0.23144531,0.028442383,-0.14941406,0.078125,-0.052490234,-0.11328125,-0.12792969,-0.11669922,-0.056396484,0.05834961,0.076171875,-0.088378906,-0.19628906,0.14355469,0.14355469,0.022827148,-0.17382812,0.0070495605,-0.09716797,0.030151367,0.17871094,0.119140625,0.067871094,-0.07714844,0.04736328,-0.030517578,-0.014526367,-0.06982422,-0.11279297,0.023925781,-0.053955078,0.14453125,0.078125,-0.02319336,-0.14941406,0.059326172,-0.10058594,-0.057617188,0.005493164,-0.05444336,0.040283203,0.033447266,-0.052246094,-0.13378906,-0.024902344,-0.022705078,-0.0076904297,0.1015625,-0.028808594,-0.10546875,-0.10449219,-0.03466797,0.15722656,0.026123047,0.15722656,0.055908203,0.07714844,0.09472656,0.09863281,-0.01940918,-0.10644531,0.14160156,-0.22070312,0.01965332,-0.26171875,0.095703125,-0.26757812,0.23242188,-0.008239746,-0.0066223145,-0.123535156,0.09863281,0.040527344,0.17089844,0.18066406,0.044677734,-0.013366699,0.045410156,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.076660156,-0.07861328,-0.0073547363,0.2421875,-0.022583008,0.19335938,-0.018188477,0.083496094,-0.008239746,-0.018676758,0.076171875,0.020263672,-0.16113281,0.12988281,-0.0051574707,0.12792969,-0.11230469,0.068847656,0.0069885254,0.115234375,-0.033935547,0.076171875,0.026489258,-0.06347656,0.080078125,0.15136719,-0.027832031,0.03149414,-0.17480469,0.17285156,0.0099487305,0.099121094,-0.3828125,-0.080566406,-0.19335938,-0.019042969,-0.16601562,-0.02709961,-0.040283203,-0.18945312,-0.072265625,0.028076172,0.021240234,-0.29296875,-0.057861328,-0.09277344,0.0030670166,-0.053222656,0.1328125,-0.19921875,-0.1640625,-0.06640625,-0.16503906,-0.052490234,0.021850586,-0.32421875,0.07373047,-0.22167969,0.07080078,-0.118652344,0.22167969,-0.13964844,-0.009521484,-0.00982666,0.12597656,-0.29101562,-0.016113281,-0.15917969,0.11425781,-0.036621094,-0.08203125,-0.091796875,-0.03857422,-0.056884766,0.032714844,-0.024780273,0.1328125,-0.24414062,0.050048828,-0.22558594,0.20507812,0.01953125,0.12451172,0.15917969,0.07470703,-0.080078125,0.05883789,0.14648438,0.05883789,0.05419922,0.024047852,-0.006500244,-0.05444336,0.104003906,-0.0009994507,0.15917969,0.008056641,0.030761719,0.08203125,0.0625,0.040039062,0.13671875,-0.08984375,-0.016113281,-0.041992188,-0.0058288574,0.114746094,-0.1875,0.09423828,0.064941406,0.06640625,0.15234375,0.06640625,0.21777344,-0.10449219,-0.039794922,-0.04272461,-0.09667969,-0.12451172,-0.07373047,0.03491211,-0.011230469,-0.091308594,-0.09375,-0.13964844,-0.012939453,0.044677734,0.061279297,0.25390625,0.08886719,-0.23730469,-0.072265625,-0.103515625,-0.059326172,0.03857422,-0.296875,0.049804688,0.1015625,0.009521484,0.021728516,0.14257812,-0.16796875,0.12792969,-0.083984375,0.017700195,0.095214844,0.15234375,-0.18652344,0.07373047,0.009521484,0.096191406,-0.24804688,0.123046875,-0.14453125,-0.119140625,0.087890625,0.095214844,-0.265625,0.048828125,-0.28125,-0.05102539,0.12597656,0.15039062,0.006164551,0.106933594,-0.18847656,0.04638672,-0.035888672,-0.03173828,0.06347656,0.044677734,-0.12207031,0.039794922,0.0134887695,0.002090454,0.103027344,0.022827148,0.026611328,-0.055908203,0.018066406,-0.1484375,-0.19042969,-0.107910156,-0.15917969,0.052001953,0.18457031,0.02746582,-0.033935547,-0.050048828,-0.111328125,0.119140625,-0.057617188,-0.025268555,0.040283203,-0.0234375,-0.122558594,-0.1015625,-0.328125,0.04272461,-0.24121094,0.037597656,0.021362305,0.12890625,0.022583008,0.040771484,0.075683594,0.010559082,-0.08105469,0.12988281,-0.140625,0.05126953,-0.056640625,-0.08154297,-0.07470703,0.20507812,-0.23339844,-0.042236328,0.014404297,0.1875,0.087890625,0.014953613,-0.39453125,-0.04296875,-0.19921875,-0.21679688,0.048095703,0.05493164,-0.13476562,0.18261719,0.19238281,0.24023438,-0.110839844,-0.052246094,0.104003906,-0.17285156,-0.11669922,0.03564453,-0.17578125,-0.030517578,-0.18554688,-0.023803711,-0.14453125,-0.10546875,-0.009460449,0.1796875,0.107421875,-0.08496094,-0.036621094,0.020874023,-0.20019531,0.06347656,-0.27539062,0.13867188,0.11669922,-0.051757812,-0.06347656,0.17675781,0.14648438,-0.07519531,0.13964844,0.079589844,-0.18945312,0.016357422,-0.13671875,-0.10205078,0.026733398,-0.056884766,-0.036132812,-0.09277344,-0.04736328,-0.07763672,-0.19726562,-0.10888672,-0.016723633,0.051757812,-0.100097656,-0.05029297,-0.040039062,-0.19335938,0.03540039,0.078125,-0.05834961,-0.047607422,0.14355469,0.060791016,-0.08300781,0.050048828,-0.025146484,0.14257812,0.16308594,0.07080078,-0.15429688,0.05444336,-0.27148438,-0.044677734,0.00075531006,-0.08154297,0.07861328,0.15039062,0.09814453,0.12402344,0.004699707,-0.0033111572,-0.05102539,-0.11669922,-0.083984375,-0.08691406,-0.16601562,0.24414062,-0.36132812,-0.037353516,-0.20019531,0.03540039,-0.016235352,0.12597656,-0.40039062,-0.026977539,-0.32421875,-0.034423828,-0.29296875,0.063964844,-0.061035156,-0.041015625,0.092285156,-0.05908203,0.26367188,-0.080566406,-0.3359375,-0.05029297,-0.15527344,0.0859375,-0.16015625,-0.060058594,-0.036376953,-0.106933594,0.06298828,0.16796875,-0.11376953,-0.02368164,0.09326172,0.006439209,-0.0057373047,-0.21679688,0.0234375,-0.1171875,0.103515625,0.024536133,0.037841797,0.115722656,0.03149414,-0.067871094,-0.0020141602,0.12792969,-0.03857422,0.0115356445,-0.045166016,0.064453125,0.13085938,-0.1875,0.16699219,0.017089844,0.02758789,-0.1796875,-0.029418945,0.03930664,0.01977539,-0.0146484375,0.076171875,0.13476562,0.080078125,0.17382812,-0.18066406,0.092285156,-0.13769531,0.021728516,0.15722656,0.030395508,0.041503906,0.111816406,-0.08886719,0.07324219,-0.08544922,-0.022583008,0.025390625,-0.022338867,-0.17480469,-0.051513672,-0.03930664,-0.018188477,-0.3671875,-0.20996094,0.09667969,-0.123046875,-0.05908203,0.24121094,-0.46484375,0.07421875,-0.21582031,-0.096191406,-0.13476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.07763672,-0.002380371,0.16308594,0.06201172,0.060791016,0.21972656,0.18457031,0.0065612793,-0.052001953,-0.10986328,0.10986328,-0.13183594,-0.026977539,0.08642578,0.07470703,-0.052246094,0.07421875,-0.022949219,0.11376953,0.100097656,-0.18164062,0.09375,0.10644531,0.048339844,0.10644531,0.025878906,0.12695312,0.20410156,-0.057373047,0.041748047,0.07128906,-0.03149414,0.057128906,0.005340576,0.07470703,0.021972656,-0.1015625,-0.20898438,0.09814453,0.08154297,0.022827148,0.035888672,0.09033203,0.04711914,0.03955078,0.033935547,-0.06689453,-0.09033203,0.06591797,0.10253906,0.19726562,0.07324219,0.030151367,-0.010437012,0.14355469,0.11230469,-0.08642578,-0.013916016,0.045410156,-0.030517578,-0.023925781,0.087890625,0.08105469,0.025390625,0.13476562,-0.15625,0.0067443848,0.0059509277,-0.08886719,-0.11767578,0.234375,0.052978516,-0.08691406,0.09667969,0.17382812,0.012817383,-0.020629883,0.103515625,0.2890625,-0.072265625,0.016113281,-0.12011719,-0.10107422,-0.02722168,-0.23242188,0.25390625,0.03125,0.114746094,0.04296875,-0.07714844,0.10498047,-0.041015625,-0.004211426,0.079589844,-0.099609375,0.20605469,0.0546875,0.017211914,-0.044921875,0.056884766,-0.00037002563,0.12109375,-0.18066406,0.06689453,-0.07324219,-0.014892578,0.059326172,0.114746094,0.03515625,-0.016235352,-0.111816406,0.12988281,-0.19140625,0.08544922,-0.049316406,-0.09033203,0.099121094,0.046142578,0.006134033,0.059814453,0.06982422,-0.041259766,0.13085938,0.125,-0.031982422,0.12109375,-0.11621094,-0.083496094,-0.00016975403,-0.013549805,0.17871094,0.01361084,0.10839844,-0.079589844,-0.16601562,0.052978516,0.100097656,0.0703125,0.11279297,0.030273438,-0.049804688,0.056396484,0.123535156,-0.16992188,0.18164062,0.11669922,-0.024414062,-0.037353516,0.03857422,-0.14941406,0.3359375,0.08886719,0.040283203,0.012634277,-0.19140625,0.09472656,-0.07763672,-0.13085938,-0.057128906,0.08886719,0.024536133,-0.08300781,-0.21386719,-0.009460449,-0.12402344,0.07861328,0.064941406,0.14550781,0.060546875,-0.203125,0.068847656,-0.20605469,0.079589844,-0.13476562,-0.10888672,0.12451172,0.020996094,-0.08544922,-0.06982422,-0.088378906,0.091796875,-0.057617188,-0.17773438,0.029541016,-0.056640625,-0.056152344,-0.010681152,0.050048828,0.03515625,0.048095703,-0.12158203,-0.056640625,0.13964844,0.076171875,-0.048095703,-0.08300781,0.22363281,-0.11376953,-0.04296875,-0.111816406,-0.08203125,-0.13476562,0.14746094,-0.006652832,0.119140625,-0.0046081543,-0.04711914,-0.10644531,0.047851562,-0.0234375,-0.09472656,-0.017578125,0.036865234,0.05908203,-0.0028076172,0.03930664,0.041992188,-0.08935547,-0.059814453,0.087402344,-0.0030212402,0.08300781,0.11035156,-0.06933594,0.078125,-0.03857422,-0.017700195,0.10595703,0.09863281,-0.07421875,0.19726562,0.08203125,-0.099121094,-0.24511719,0.044921875,-0.11328125,-0.068359375,-0.029663086,0.01977539,-0.016967773,-0.29882812,0.042236328,-0.1484375,0.11035156,-0.18164062,-0.049560547,0.10839844,-0.14550781,-0.025878906,-0.22753906,0.06591797,0.104003906,-0.24804688,-0.2578125,-0.019165039,-0.3515625,0.11279297,0.015991211,-0.1484375,0.017456055,-0.13769531,0.0043945312,0.068359375,-0.03881836,0.041992188,-0.13574219,0.026489258,-0.1796875,0.03857422,-0.029418945,-0.15332031,-0.37304688,0.1640625,0.05834961,0.012573242,0.09082031,-0.1015625,0.15234375,0.1484375,0.019165039,-0.092285156,-0.04296875,-0.10644531,-0.04663086,-0.16992188,-0.22167969,0.06201172,-0.08300781,0.021606445,0.037597656,-0.10205078,-0.21777344,-0.23242188,0.08691406,0.13574219,0.040771484,0.060791016,-0.1875,-0.15917969,-0.20605469,-0.005340576,-0.096191406,-0.03100586,0.029663086,-0.16992188,0.053955078,-0.0079956055,-0.13574219,0.072265625,-0.09716797,0.123046875,-0.020263672,0.06640625,-0.20898438,-0.0046081543,0.12695312,-0.068847656,0.12060547,0.03857422,0.0146484375,-0.23828125,0.095703125,-0.14257812,0.051757812,-0.09082031,-0.114746094,0.007537842,-0.26757812,-0.07470703,-0.02319336,0.20019531,0.07324219,-0.11230469,0.03540039,-0.13964844,0.064941406,0.025756836,-0.19726562,-0.109375,0.05883789,0.046875,-0.027709961,-0.018310547,-0.0115356445,-0.072265625,0.17089844,-0.052001953,0.033691406,-0.10205078,0.10546875,-0.007171631,-0.13476562,-0.21972656,-0.07910156,-0.10986328,0.10986328,-0.08886719,-0.0099487305,-0.20800781,0.103515625,0.0020141602,0.14550781,-0.071777344,-0.07763672,0.0859375,0.025146484,-0.09033203,-0.13769531,0.0027923584,3.194809e-05,-0.005065918,0.118652344,-0.15820312,0.022216797,-0.08203125,-0.08300781,-0.030029297,0.13378906,-0.044189453,0.1640625,-0.068359375,-0.20410156,-0.0625,0.12060547,0.0625,0.046142578,-0.107421875,-0.014892578,0.1015625,-0.14746094,-0.099609375,0.19921875,-0.014770508,-0.1796875,0.033447266,0.0002937317,-0.0099487305,0.09375,-0.10644531,0.103515625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12988281,-0.063964844,0.122558594,0.024536133,0.0039367676,-0.045654297,-0.17675781,0.29101562,-0.171875,-0.10986328,-0.06225586,0.044189453,0.076171875,-0.09375,-0.03112793,0.107910156,-0.0028381348,-0.06347656,0.025756836,-0.115722656,0.111816406,-0.01159668,0.033203125,0.03491211,0.072753906,-0.09423828,0.06591797,0.024536133,0.024780273,-0.071777344,-0.036376953,-0.07080078,-0.08886719,0.22753906,0.046142578,-0.13574219,0.14648438,-0.025878906,0.0859375,-0.019042969,-0.05126953,-0.053222656,0.041992188,-0.15820312,-0.103027344,0.07519531,0.048828125,0.0703125,0.083496094,0.203125,0.07470703,-0.06982422,-0.06542969,-0.048339844,-0.17089844,-0.06225586,0.06738281,0.026000977,-0.056396484,-0.16113281,-0.05810547,0.09667969,0.11035156,0.091308594,0.043701172,-0.15136719,0.13671875,0.31835938,-0.009460449,-0.084472656,0.125,0.048583984,0.007019043,-0.25585938,-0.083496094,0.017089844,-0.03930664,0.26171875,-0.11279297,0.10253906,0.00982666,-0.119628906,-0.0390625,0.08691406,-0.13183594,0.09765625,0.033203125,0.0099487305,-0.045898438,-0.08203125,0.0017166138,0.14746094,0.12402344,-0.014099121,0.05102539,0.020019531,0.08886719,0.03564453,-0.023925781,-0.053710938,-0.07080078,0.17285156,0.140625,0.0390625,0.09863281,0.09472656,0.08984375,0.19238281,-0.037841797,0.029052734,0.018066406,-0.0027923584,0.12011719,0.21386719,0.029785156,0.076171875,-0.049072266,0.31640625,-0.026611328,0.04663086,0.07470703,0.083984375,0.006072998,0.044433594,0.04248047,-0.010620117,0.08154297,0.07128906,-0.091308594,-0.09716797,0.012023926,0.01550293,-0.1015625,-0.030517578,-0.002609253,0.021240234,-0.0018157959,0.044921875,0.026489258,-0.034179688,-0.10986328,0.125,0.08154297,-0.099609375,0.0022277832,0.123535156,0.07324219,0.06542969,-0.0703125,0.039794922,-0.016479492,-0.010437012,-0.026000977,-0.19824219,-0.22265625,-0.032470703,-0.17480469,0.010559082,0.0054016113,0.096191406,0.12792969,0.015319824,0.052490234,-0.016479492,-0.06640625,0.0019378662,0.032470703,0.110839844,-0.13769531,-0.072265625,0.18261719,0.036132812,0.11230469,0.11230469,0.14648438,0.084472656,-0.0054626465,0.13183594,0.010803223,0.09667969,0.0119018555,0.08251953,-0.005493164,0.13867188,-0.118652344,0.11621094,0.019165039,0.075683594,0.033691406,0.078125,0.015991211,-0.09863281,-0.009094238,0.068847656,0.099121094,0.10205078,0.07519531,0.09472656,0.15136719,0.08984375,-0.07128906,0.0050354004,0.22363281,0.021118164,0.049316406,0.056884766,-0.07324219,-0.13183594,-0.107910156,0.0075683594,0.118652344,0.07080078,0.028930664,-0.018432617,0.2578125,0.091796875,-0.06640625,-0.04736328,-0.05029297,0.122558594,0.025268555,0.029296875,-0.007873535,-0.15820312,-0.08544922,0.06738281,-0.09814453,0.088378906,-0.13769531,-0.06689453,0.12890625,0.024780273,0.099121094,-0.32421875,-0.16992188,0.0859375,0.009277344,-0.02722168,0.017333984,0.014709473,-0.0025634766,-0.09667969,-0.07910156,0.125,-0.19824219,0.13476562,0.087402344,0.008850098,-0.017700195,-0.049316406,0.068847656,0.16113281,0.010559082,0.036621094,0.0030975342,0.091796875,0.032714844,0.04663086,-0.09716797,0.07080078,-0.034179688,-0.03112793,0.017211914,0.029541016,-0.14746094,0.107421875,0.21191406,0.09472656,-0.100097656,0.0859375,0.03173828,0.017578125,0.05859375,0.0079956055,-0.171875,0.10595703,-0.09814453,-0.27929688,-0.0026245117,0.051513672,0.12060547,-0.068847656,0.016357422,-0.03564453,-0.07910156,0.03955078,0.0625,-0.103515625,0.11621094,-0.20019531,-0.026000977,-0.115234375,-0.06347656,-0.27734375,0.10888672,0.203125,0.0013122559,-0.07080078,-0.04711914,0.05517578,-0.0087890625,-0.015136719,-0.072753906,-0.0015869141,-0.07470703,-0.20703125,-0.122558594,0.024414062,-0.051513672,-0.07324219,0.043945312,-0.02319336,-0.004058838,-0.21679688,-0.16894531,-0.028076172,0.015319824,0.064453125,-0.15917969,-0.064453125,-0.080566406,-0.171875,-0.067871094,0.17871094,-0.10644531,-0.06933594,-0.024414062,0.1875,-0.048339844,0.0703125,-0.016845703,-0.05883789,0.091308594,0.06689453,-0.0017547607,0.005584717,-0.0390625,0.12402344,0.043945312,0.12988281,0.049316406,0.07421875,0.04345703,-0.11376953,0.025146484,-0.06347656,0.018920898,-0.16113281,0.1328125,0.16992188,-0.017333984,-0.019165039,-0.14746094,0.16601562,0.087890625,0.0390625,0.07763672,0.18164062,-0.017944336,-0.008666992,-0.0095825195,0.01965332,0.013671875,-0.036376953,0.014343262,-0.0053100586,3.015995e-05,-0.0119018555,0.107910156,-0.07910156,-0.041259766,0.18066406,0.080078125,0.091308594,0.044677734,0.0044555664,-0.059326172,-0.14941406,0.016357422,-0.05444336,0.09814453,0.015991211,0.18261719,0.0028381348,0.10595703,0.087890625,-0.12011719,-0.053955078,-0.07128906,0.005432129,0.04248047,0.087402344,-0.0703125,-0.21386719,-0.13964844,0.1953125,0.18359375,-0.014343262,-0.08935547,0.012512207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.11230469,-0.10449219,-0.103515625,0.25585938,-0.037597656,0.0703125,0.14648438,0.1640625,0.079589844,-0.014709473,-0.0009994507,-0.12695312,0.14453125,0.011413574,0.095703125,0.14453125,-0.044189453,-0.068359375,0.02709961,-0.063964844,0.080566406,-0.020263672,-0.096191406,0.00024986267,0.10449219,0.03112793,0.15722656,0.09814453,-0.15136719,0.031982422,-0.06542969,0.072753906,0.009399414,-0.04663086,0.080078125,-0.09326172,0.08105469,0.052490234,0.13476562,0.29492188,-0.078125,-0.12988281,0.15332031,-0.024658203,-0.048583984,0.100097656,-0.09082031,0.115722656,-0.123535156,0.10205078,0.12158203,0.017700195,0.075683594,0.08105469,0.25195312,0.11279297,-0.016235352,-0.052734375,0.103027344,-0.028686523,0.056884766,-0.076660156,0.061279297,0.0059509277,-0.063964844,-0.05908203,0.09472656,0.09423828,-0.100097656,0.11376953,0.022705078,-0.234375,-0.023925781,-0.10986328,0.19726562,0.08886719,-0.23144531,0.13183594,-0.19921875,0.041503906,-0.067871094,0.007537842,-0.09814453,0.07763672,0.08984375,0.0138549805,-0.1015625,-0.06591797,-0.07861328,0.118652344,-0.0059509277,-0.14160156,-0.023803711,0.028686523,-0.15917969,0.045166016,0.052490234,-0.080566406,-0.20410156,-0.026977539,-0.12207031,0.12890625,-0.104003906,-0.021118164,0.059814453,-0.072753906,0.068847656,0.04272461,0.09667969,0.11767578,-0.19140625,0.030029297,0.09814453,-0.07763672,0.068847656,0.12158203,-0.099121094,0.27148438,-0.07080078,0.041015625,-0.100097656,-0.05078125,0.14355469,-0.041992188,0.15917969,-0.103027344,-0.03930664,-0.018798828,0.12109375,-0.018676758,-0.045166016,-0.104003906,0.036865234,-0.05834961,-0.030883789,-0.057128906,-0.057617188,0.05053711,0.12011719,0.29296875,-0.061767578,-0.07910156,-0.0015258789,-0.048828125,-0.16113281,-0.014587402,0.12792969,0.10986328,0.021972656,0.27539062,0.06689453,0.021606445,0.016967773,0.020507812,0.11425781,0.13867188,0.0107421875,0.028564453,0.07861328,0.123535156,-0.024414062,0.053466797,-0.25976562,-0.09375,-0.10888672,-0.08251953,-0.033691406,-0.017333984,-0.11621094,-0.1640625,-0.079589844,-0.18847656,0.06347656,-0.0115356445,-0.26757812,0.05102539,0.057373047,0.045166016,-0.26953125,0.015136719,-0.20214844,0.09863281,0.013671875,-0.15234375,0.007659912,-0.11767578,0.1328125,0.16015625,0.16601562,0.016357422,0.104003906,-0.052978516,0.19433594,-0.19335938,-0.13574219,-0.09667969,0.10986328,0.32617188,-0.016479492,0.12597656,-0.028930664,-0.051757812,-0.06640625,0.17773438,0.20507812,0.009033203,0.11816406,0.109375,0.06225586,0.15917969,-0.15722656,0.03881836,0.046875,-0.034423828,0.041259766,-0.08300781,-0.09326172,-0.051513672,0.1953125,-0.011657715,-0.068359375,0.0018920898,0.003967285,-0.038085938,-0.13574219,-0.15039062,0.100097656,0.15917969,0.053955078,-0.012023926,-0.020996094,0.087402344,-0.045654297,0.021728516,-0.14550781,0.18261719,0.056152344,0.22265625,0.106933594,0.13085938,-0.026977539,-0.15527344,-0.15234375,-0.14160156,-0.10888672,0.05834961,0.100097656,-0.05102539,-0.047607422,-0.0031433105,0.032714844,-0.15136719,0.026611328,-0.10839844,0.08300781,-0.14453125,0.20214844,-0.030761719,-0.3125,0.0075683594,-0.1796875,0.041015625,-0.25195312,0.12597656,-0.099609375,-0.24023438,-0.13867188,0.055908203,0.13085938,-0.12695312,-0.22753906,-0.06347656,0.11279297,-0.055664062,-0.28125,-0.048339844,-0.10644531,-0.14648438,-0.02319336,0.095703125,-0.06542969,-0.029418945,-0.014038086,-0.31445312,0.05078125,0.13183594,-0.009887695,0.06738281,0.07861328,0.15429688,-0.21582031,-0.13183594,0.15722656,0.035888672,0.041992188,0.0040283203,0.000579834,-0.13964844,0.064941406,-0.053466797,-0.05859375,-0.057373047,0.24707031,-0.23339844,0.17675781,-0.026489258,0.04736328,-0.059326172,0.056396484,-0.27734375,-0.015197754,0.13183594,0.049316406,-0.21679688,-0.072753906,-0.09033203,0.13378906,0.05053711,-0.028198242,0.171875,0.23730469,-0.051757812,-0.061279297,0.08496094,-0.125,0.19628906,0.15820312,0.09082031,-0.025512695,0.03173828,0.03881836,-0.15332031,0.037841797,-0.25390625,-0.107910156,-0.011169434,-0.027832031,0.0138549805,-0.34375,-0.14160156,0.020141602,0.10205078,-0.020141602,0.099121094,0.014709473,-0.18261719,-0.022583008,-0.14355469,0.02709961,-0.038085938,-0.064453125,-0.06933594,0.083496094,0.08203125,-0.07861328,-0.234375,0.041992188,0.18945312,-0.16796875,0.024047852,0.053955078,-0.15136719,-0.10449219,-0.03857422,0.0040893555,-0.08203125,-0.15136719,-0.11279297,-0.015319824,-0.011779785,-0.22851562,-0.107421875,-0.119628906,0.059570312,0.0036773682,-0.171875,-0.032714844,-0.3125,-0.265625,0.042236328,-0.14160156,0.028198242,-0.076660156,-0.22363281,0.115234375,0.030761719,-0.2890625,0.04663086,0.039794922,-0.029541016,-0.10546875,-0.05078125,-0.0138549805,-0.20800781,-0.012023926,-0.084472656,0.018798828,-0.11816406,-0.15917969,-0.079589844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.030761719,-0.10205078,0.21972656,-0.123046875,0.16210938,-0.015258789,0.115722656,0.17578125,0.018432617,0.14160156,-0.06982422,0.061523438,0.10888672,0.068359375,0.07763672,-0.017700195,0.10449219,-0.050048828,0.16894531,0.23828125,0.20800781,0.08984375,0.15429688,-0.09082031,0.029663086,0.024414062,-0.22949219,0.20996094,-0.0043945312,0.040039062,-0.10107422,0.08691406,-0.0042419434,0.080566406,0.13378906,-0.09472656,0.20898438,-0.016845703,0.29882812,0.21972656,-0.037841797,-0.09472656,0.012023926,0.08642578,0.049072266,0.20410156,-0.07080078,-0.0625,-0.23828125,0.0048217773,0.06640625,-0.050048828,0.20507812,0.015136719,-0.07324219,-0.06982422,-0.09716797,-0.19140625,0.055419922,0.07324219,-0.008605957,0.15625,-0.01965332,0.059570312,-0.01953125,-0.040527344,-0.025024414,0.01977539,-0.019897461,0.09033203,0.092285156,-0.050048828,-0.029418945,-0.026367188,0.041015625,-0.028686523,0.061767578,0.0012283325,-0.09472656,-0.041259766,-0.03857422,0.041748047,0.18945312,-0.13183594,-0.13574219,-0.24023438,-0.05444336,-0.067871094,0.04345703,0.096191406,-0.063964844,0.07519531,-0.04248047,0.072265625,0.115722656,0.04272461,-0.055664062,-0.20507812,0.024414062,0.09375,0.06738281,-0.022094727,0.007659912,0.13378906,0.056640625,-0.096191406,-0.12158203,-0.09765625,-0.11035156,0.03540039,-0.051513672,-0.04248047,0.087890625,-0.107910156,-0.0390625,-0.19238281,0.091308594,-0.15136719,0.059814453,0.15625,-0.03881836,-0.09472656,-0.16113281,-0.29101562,0.15234375,-0.091796875,0.018432617,0.052978516,0.107910156,0.06542969,-0.16894531,-0.04296875,-0.030273438,0.0703125,-0.13574219,-0.08984375,-0.07080078,-0.24511719,-0.10595703,-0.19726562,-0.10595703,0.22265625,-0.13476562,-0.09863281,0.18554688,-0.30273438,-0.12988281,-0.110839844,0.071777344,-0.020141602,-0.055664062,-0.12792969,-0.011657715,-0.24023438,-0.07128906,0.018920898,-0.083984375,-0.017578125,-0.15429688,0.14941406,-0.08496094,0.14160156,0.052001953,-0.012878418,0.06201172,-0.34375,0.23925781,0.08203125,0.084472656,-0.16015625,0.020751953,-0.064453125,-0.049072266,0.10058594,-0.203125,0.04638672,-0.1328125,-0.119140625,-0.055419922,-0.0546875,0.103515625,-0.29882812,0.12158203,-0.042236328,-0.05126953,-0.15917969,-0.07763672,0.08642578,-0.10888672,-0.12792969,-0.052978516,-0.03540039,0.033691406,-0.17773438,-0.13183594,-0.30664062,-0.017333984,-0.22753906,0.1796875,-0.095703125,0.0126953125,-0.26171875,-0.057617188,0.005432129,-0.07519531,0.026000977,-0.035888672,0.10546875,-0.063964844,-0.06347656,-0.06225586,-0.1875,-0.0072631836,0.12792969,-0.009765625,-0.0052490234,-0.00045967102,-0.08203125,0.040283203,-0.049560547,-0.047851562,0.018554688,-0.080078125,-0.19628906,0.032470703,-0.09814453,-0.041748047,-0.15527344,-0.076171875,-0.00970459,0.118652344,-0.083984375,0.061523438,-0.11621094,-0.12890625,-0.02746582,0.122558594,-0.09814453,0.08154297,0.059570312,-0.025878906,-0.16894531,-0.115722656,-0.030029297,0.024414062,-0.17285156,0.06591797,-0.20898438,0.02746582,-0.09423828,-0.099609375,0.0043945312,0.053710938,-0.08496094,-0.123046875,-0.03857422,-0.032714844,0.11279297,-0.037841797,-0.13378906,-0.16601562,-0.21972656,0.07373047,-0.063964844,-0.095703125,-0.13867188,0.016601562,0.20410156,-0.08935547,0.12695312,0.008666992,0.04272461,-0.072753906,0.09667969,0.0012435913,-0.016235352,-0.13085938,0.0049743652,-0.17773438,-0.056884766,-0.04711914,-0.03149414,0.11230469,-0.13378906,0.021362305,0.0014648438,-0.08251953,-0.10107422,0.08300781,0.099609375,-0.25195312,-0.07519531,-0.029418945,0.107421875,-0.25390625,-0.11425781,-0.083496094,-0.008056641,-0.27539062,0.025756836,-0.11279297,-0.15625,0.025024414,0.057617188,-0.15625,0.23828125,-0.18359375,-0.049072266,-0.33203125,-0.12890625,-0.109375,0.13378906,0.0024871826,0.11230469,-0.041259766,-0.010803223,-0.033691406,-0.07519531,0.1796875,-0.22753906,-0.19824219,-0.09033203,-0.16015625,0.12207031,-0.17871094,-0.052246094,-0.051757812,-0.024169922,-0.04711914,-0.100097656,-0.13574219,0.13964844,-0.041992188,-0.13867188,-0.2265625,-0.099609375,-0.091796875,0.23046875,0.11035156,-0.02331543,-0.12109375,-0.019042969,-0.140625,0.03930664,-0.03515625,0.025024414,-0.12158203,0.19140625,0.09667969,-0.0015182495,0.099609375,-0.016479492,-0.064453125,0.19238281,-0.107910156,0.07470703,-0.091796875,-0.028442383,-0.03515625,0.005493164,0.041015625,0.032470703,0.140625,0.20019531,-0.055908203,0.103515625,-0.0064086914,0.010925293,0.18261719,-0.02368164,0.13574219,-0.19140625,-0.07080078,-0.10644531,-0.037841797,-0.15722656,0.09765625,0.17773438,0.04321289,0.04272461,-0.140625,0.0625,0.071777344,0.067871094,-0.13671875,-0.122558594,-0.19824219,0.03125,-0.21875,-0.18945312,-0.1875,0.18066406,0.08251953,0.020507812,-0.037353516,-0.08544922,0.03466797,-0.10253906,0.013977051,-0.078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.09472656,0.17285156,-0.07080078,-0.28710938,0.06738281,0.13867188,-0.09814453,-0.106933594,0.09863281,-0.048828125,0.037597656,0.026367188,-0.15039062,0.0138549805,-0.007873535,0.24902344,-0.15039062,0.171875,0.067871094,0.0016174316,0.04638672,-0.05102539,-0.109375,-0.03149414,0.10888672,-0.07421875,-0.087890625,-0.25390625,0.083984375,-0.2109375,-0.11230469,-0.029052734,-0.087402344,0.10839844,-0.13085938,0.0859375,-0.24316406,0.13476562,0.08496094,-0.16699219,-0.09375,0.11230469,0.020141602,-0.080078125,0.01953125,-0.16699219,-0.045654297,-0.05493164,-0.0005569458,-0.0055236816,-0.15820312,0.079589844,-0.10449219,-0.076660156,0.047607422,-0.055908203,0.064941406,-0.13671875,-0.07910156,-0.087402344,-0.017700195,-0.018798828,0.14355469,0.16894531,0.03881836,-0.06542969,0.0703125,-0.050048828,-0.0859375,0.004760742,0.08984375,0.018676758,-0.08251953,0.018798828,-0.037841797,-0.036621094,-0.171875,0.1640625,0.026245117,0.075683594,-0.041992188,-0.057373047,0.13964844,-0.19628906,0.10546875,-0.042236328,-0.072265625,0.12060547,0.06689453,0.043945312,0.080566406,0.123535156,-0.04345703,0.16308594,0.12792969,0.12402344,0.04638672,-0.18359375,0.107910156,0.1328125,-0.067871094,-0.075683594,-0.021972656,0.1875,-0.049804688,0.020751953,0.12695312,0.019042969,0.040039062,-0.09863281,0.087402344,-0.15429688,0.09033203,-0.12988281,-0.03149414,0.03173828,0.008178711,-0.13964844,-0.05859375,-0.06640625,-0.04711914,-0.15820312,-0.09716797,-0.018798828,0.013061523,-0.20605469,0.053466797,0.045898438,-0.10205078,0.041503906,0.020385742,0.11767578,-0.07373047,-0.07470703,-0.096191406,0.001159668,0.08886719,-0.12597656,0.06201172,-0.19628906,-0.104003906,-0.020629883,-0.011413574,0.15332031,0.025756836,0.052734375,-0.057861328,-0.11669922,0.09863281,0.12988281,-0.08251953,-0.028930664,0.096191406,-0.05419922,-0.099121094,-0.0047912598,0.0012969971,0.11230469,-0.013916016,0.091308594,0.09375,-0.11816406,0.056884766,-0.063964844,0.16503906,-0.1328125,-0.041992188,0.16015625,0.07861328,0.10449219,-0.04638672,0.061279297,-0.053955078,0.14550781,0.045654297,0.0095825195,0.015991211,-0.07128906,0.0025024414,0.20898438,0.049316406,0.13964844,-0.053955078,0.071777344,-0.09277344,-0.0625,0.00680542,-0.060058594,-0.007293701,0.16503906,0.16015625,-0.11376953,-0.26953125,-0.19042969,0.017944336,-0.22363281,0.13183594,0.049072266,-0.23925781,-0.07421875,0.055908203,-0.20703125,-0.19433594,-0.11328125,-0.080078125,-0.04663086,0.11621094,-0.14160156,0.026245117,-0.24121094,0.088378906,0.13671875,0.033935547,-0.029541016,-0.084472656,-0.009521484,0.09667969,-0.12109375,0.067871094,-0.1640625,0.01159668,-0.010070801,-0.033447266,-0.021362305,-0.068847656,0.0008506775,-0.007659912,0.044189453,-0.140625,-0.15234375,-0.06982422,0.16308594,-0.012939453,-0.016113281,-0.079589844,-0.27734375,-0.055419922,-0.09423828,-0.12207031,0.024780273,-0.24511719,0.021240234,-0.057128906,-0.13671875,0.003829956,-0.13769531,-0.044433594,0.103027344,-0.07324219,0.041992188,0.021118164,-0.03125,-0.0066223145,-0.08642578,-0.028808594,-0.26171875,-0.023925781,0.09863281,0.067871094,0.07714844,0.16601562,0.24804688,0.041259766,-0.026611328,0.05419922,-0.10839844,-0.091308594,-0.06689453,0.125,0.0020446777,0.11279297,-0.051757812,-0.12890625,0.1875,-0.04272461,-0.15039062,0.002532959,0.1796875,-0.1328125,-0.020507812,-0.043945312,0.014343262,-0.17285156,-0.030151367,0.022949219,-0.092285156,0.04248047,-0.17578125,-0.14257812,0.055908203,-0.09472656,-0.04663086,-0.045410156,0.1015625,-0.076171875,-0.060546875,0.08886719,-0.17480469,-0.087890625,-0.0063171387,0.04296875,0.06689453,-0.14160156,-0.07861328,-0.21679688,0.0074768066,-0.13671875,0.068359375,-0.015563965,-0.21777344,0.08251953,-0.080566406,0.036376953,-0.17675781,-0.044433594,-0.017211914,0.04736328,-0.0072021484,0.048583984,0.019165039,-0.095703125,-0.12988281,0.15527344,0.014465332,-0.111816406,-0.049316406,0.020263672,-0.17578125,-0.033935547,-0.011169434,0.022705078,-0.100097656,-0.13378906,-0.012817383,-0.16992188,0.029418945,-0.001373291,-0.04638672,-0.014831543,0.0703125,0.031982422,0.0859375,-0.08203125,-0.14648438,-0.103027344,0.012451172,-0.004058838,0.15332031,0.045410156,-0.061279297,-0.08886719,0.06689453,0.0045776367,-0.03564453,-0.044677734,-0.1171875,-0.0859375,0.13671875,0.025390625,-0.084472656,-0.0048217773,-0.052490234,0.023803711,-0.05517578,-0.11669922,-0.018798828,-0.036132812,0.076171875,-0.13671875,0.13476562,-0.28515625,-0.016845703,-0.13964844,0.17285156,-0.12988281,-0.10253906,0.07421875,-0.083984375,-0.0046081543,-0.111816406,-0.15039062,0.056396484,-0.18847656,-0.027954102,-0.095214844,-0.012145996,-0.03540039,-0.0126953125,-0.14648438,-0.07373047,0.004486084,-0.08935547,0.06689453,-0.06201172,-0.08496094,0.04663086,0.11230469,0.01574707,0.13769531,-0.026977539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.09033203,0.16601562,-0.3046875,-0.390625,-0.021118164,0.28320312,-0.04638672,-0.38476562,-0.12060547,0.0031738281,0.044677734,-0.18945312,0.08691406,-0.10058594,0.012390137,-0.0029144287,-0.123046875,-0.020996094,-0.31835938,-0.27734375,-0.014099121,0.16015625,-0.076660156,0.052978516,0.013305664,0.010314941,-0.08691406,-0.017944336,0.059326172,-0.07519531,0.2421875,0.0076904297,-0.067871094,-0.047607422,-0.10498047,-0.34375,-0.10107422,-0.0087890625,-0.08251953,-0.22167969,-0.0045166016,0.07128906,0.27539062,0.106933594,0.029907227,-0.24902344,0.0625,0.067871094,0.11035156,-0.018066406,-0.13671875,-0.08691406,-0.24902344,0.023925781,-0.07470703,-0.02758789,0.06201172,-0.026367188,0.11669922,-0.076171875,-1.1026859e-05,-0.20117188,0.03173828,0.061279297,-0.31640625,0.063964844,-0.13378906,-0.24511719,-0.12011719,0.13085938,-0.14648438,-0.22558594,0.016113281,0.06933594,-0.026611328,-0.0036468506,-0.18554688,-0.103515625,0.001625061,-0.05444336,-0.030151367,0.123535156,-0.07324219,0.024414062,0.08496094,0.02746582,0.09423828,-0.23828125,-0.06591797,0.18652344,-0.053466797,-0.099609375,0.13867188,0.17089844,0.051757812,-0.1328125,-0.09814453,-0.13867188,-0.1875,-0.01550293,-0.06982422,0.25195312,0.0047912598,-0.072265625,0.018432617,0.0390625,0.030151367,-0.0021514893,-0.14941406,-0.122558594,0.05029297,-0.063964844,-0.0031433105,0.036376953,0.13867188,0.03515625,-0.04663086,-0.072753906,-0.16601562,0.21289062,0.078125,0.06542969,-0.018188477,0.06738281,-0.12597656,-0.1015625,-0.043701172,0.0010604858,-0.030761719,-0.044189453,0.14941406,0.036132812,-0.26171875,-0.18359375,-0.0053710938,0.028564453,-0.05078125,0.18066406,-0.18066406,0.036376953,-0.009216309,-0.11376953,-0.072265625,-0.07373047,-0.11816406,0.0079956055,0.048339844,0.1484375,-0.06738281,0.11425781,-0.103515625,-0.07080078,-0.099609375,0.09423828,0.018310547,0.049560547,-0.13867188,-0.2421875,0.005279541,-0.09082031,-0.075683594,0.08691406,0.041259766,-0.08105469,0.15625,-0.21972656,-0.16992188,-0.06982422,0.06591797,-0.106933594,-0.037841797,0.14550781,0.05102539,0.034179688,-0.08691406,-0.034179688,-0.21972656,-0.10058594,0.09667969,-0.056152344,0.09814453,0.15820312,-0.0625,0.043945312,0.078125,-0.061279297,0.11767578,-0.20019531,-0.067871094,-0.07763672,-0.11376953,-0.09423828,0.017578125,-0.18847656,-0.16015625,-0.040039062,-0.006439209,-0.083496094,-0.1953125,0.072753906,-0.06738281,-0.068359375,-0.03955078,-0.042236328,-0.09716797,0.0073547363,-0.19824219,0.06933594,0.13085938,-0.087402344,-0.06689453,-0.09814453,0.15429688,-0.13378906,-0.083984375,-0.010559082,0.12988281,0.12060547,-0.045898438,-0.15234375,0.15429688,0.09326172,-0.07910156,-0.039794922,-0.16796875,0.011047363,0.016845703,-0.039794922,0.13476562,-0.27539062,0.04321289,-0.09814453,0.06542969,0.07714844,-0.08935547,-0.033691406,0.037109375,0.0703125,-0.030395508,-0.19140625,-0.15136719,0.28515625,-0.12792969,-0.02734375,0.041259766,-0.046142578,-0.049804688,-0.18847656,-0.01965332,0.12207031,0.032226562,-0.12890625,-0.012084961,0.03564453,-0.07861328,0.1015625,-0.020263672,-0.009521484,-0.12158203,0.10058594,-0.109375,0.18847656,0.24902344,-0.018676758,0.10058594,0.09277344,-0.07421875,-0.0043945312,-0.08935547,-0.05419922,-0.15332031,0.13085938,0.10644531,0.0020141602,-0.23046875,-0.09277344,-0.0018920898,0.044433594,0.20898438,-0.00065612793,-0.03100586,0.110839844,-0.008056641,-0.10498047,0.012817383,0.010559082,-0.017211914,0.15429688,0.007019043,-0.060791016,-0.1328125,-0.29101562,0.099121094,-0.13085938,0.11376953,0.067871094,-0.049560547,0.16113281,-0.17578125,-0.005004883,0.06738281,-0.017333984,-0.072265625,0.1015625,-0.06738281,-0.11376953,0.107910156,-0.34765625,0.05053711,-0.09716797,-0.07910156,0.036865234,0.008544922,0.011352539,0.0020599365,-0.029907227,0.011413574,-0.014709473,-0.19824219,0.03173828,0.09375,0.014221191,-0.019042969,0.08300781,0.043701172,-0.068847656,-0.046142578,-0.049072266,0.05102539,-0.08251953,0.026733398,-0.1328125,0.17285156,-0.16894531,-0.12988281,0.0703125,-0.01373291,0.044921875,-0.020019531,-0.10986328,0.079589844,0.03125,-0.0138549805,0.21777344,0.024902344,0.0703125,-0.17871094,0.034179688,-0.03515625,0.008666992,-0.24902344,0.032714844,-0.060546875,-0.02722168,0.026733398,-0.08691406,0.06982422,0.041748047,0.01586914,0.07714844,0.010070801,-0.096191406,-0.03173828,-0.043701172,-0.020019531,0.01159668,-0.13183594,0.01574707,0.048828125,0.0067749023,-0.25976562,-0.43945312,0.026489258,0.05810547,0.18652344,-0.18261719,-0.061767578,-0.107910156,0.061767578,-0.19238281,0.07861328,-0.024169922,-0.053222656,0.053710938,-0.026733398,0.008300781,-0.008728027,-0.40234375,-0.21191406,-0.016845703,-0.21777344,-0.09765625,0.068847656,-0.17675781,0.29882812,-0.13574219,-0.046875,-0.125,-0.22558594,-0.059326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.08935547,0.23242188,0.01373291,-0.13085938,0.37695312,0.12402344,-0.08935547,0.10546875,-0.041015625,-0.21875,-0.052734375,0.10058594,-0.21972656,0.11425781,-0.06689453,-0.088378906,-0.033203125,0.3515625,0.02709961,0.2421875,0.08984375,-0.045654297,-0.19824219,-0.010437012,0.020019531,-0.16894531,0.021972656,-0.008666992,0.0011749268,-0.041503906,-0.032958984,-0.1328125,0.015197754,-0.12988281,0.032226562,0.100097656,0.014892578,-0.045410156,0.16015625,0.18359375,0.06933594,0.040771484,0.055664062,0.04711914,-0.09033203,0.11279297,0.07128906,0.22167969,-0.033203125,-0.04296875,0.16601562,0.015625,-0.011169434,0.15332031,0.16894531,0.12158203,-0.07470703,-0.0087890625,0.041748047,0.046875,-0.24316406,-0.0390625,0.061767578,-0.0146484375,-0.21777344,0.016967773,0.15039062,0.14648438,-0.36328125,-0.021240234,-0.072753906,0.020751953,-0.026123047,0.13769531,-0.048583984,0.036865234,-0.19238281,0.008117676,0.008056641,0.072265625,-0.21582031,0.016845703,0.056884766,0.18847656,-0.096191406,-0.030273438,-0.06542969,-0.076660156,0.01940918,-0.19042969,-0.05126953,0.17089844,0.10888672,0.107421875,-0.11767578,-0.040283203,-3.504753e-05,0.10546875,-0.029418945,-0.05883789,-0.0107421875,0.011169434,-0.068847656,-0.08496094,-0.06738281,0.09082031,-0.14257812,-0.1171875,0.00491333,-0.13574219,0.15234375,-0.11376953,0.14355469,0.114746094,0.0012054443,-0.045898438,0.034179688,-0.052246094,0.0056762695,0.024658203,0.115234375,-0.22851562,0.05883789,0.11767578,0.10644531,0.099121094,-0.1875,-0.14648438,0.016601562,0.064453125,0.11230469,-0.03112793,-0.265625,0.005493164,-0.036132812,0.28125,-0.09863281,-0.09667969,-0.014770508,-0.05419922,-0.056884766,-0.002243042,-0.25585938,0.050048828,-0.09326172,-0.16601562,-0.08251953,0.014831543,-0.11279297,-0.010009766,0.08154297,0.017700195,0.04663086,-0.09765625,0.07714844,-0.041992188,-0.13671875,0.072753906,0.0234375,0.16601562,-0.14941406,0.05859375,0.024536133,0.08544922,0.092285156,-0.10888672,-0.1640625,0.02319336,0.06347656,-0.14453125,-0.03515625,-0.13183594,-0.028442383,-0.21972656,-0.24609375,-0.024291992,-0.08886719,0.18457031,0.049560547,0.033203125,0.067871094,0.019897461,0.063964844,-0.056640625,0.0061950684,-0.17773438,-0.110839844,0.17675781,0.08691406,-0.021850586,0.087890625,-0.032226562,-0.106933594,0.10449219,0.05493164,-0.15722656,0.10253906,0.05908203,0.1875,-0.15136719,0.0050964355,-0.15332031,-0.08496094,-0.0066223145,0.0072021484,-0.16601562,-0.12890625,0.028808594,0.099609375,0.07519531,-0.19335938,-0.008666992,-0.056640625,-0.012268066,-0.01940918,-0.030151367,0.0859375,-0.12792969,0.09716797,-0.26171875,0.18945312,-0.01361084,-0.10644531,0.007080078,0.01586914,0.040771484,-0.009155273,-0.10205078,-0.020751953,0.049072266,0.09814453,-0.11767578,-0.049072266,-0.036621094,0.12158203,-0.08251953,-0.09326172,0.10205078,0.084472656,0.14355469,0.00061416626,0.087890625,-0.018554688,-0.06542969,-0.010498047,-0.17089844,0.018432617,0.03540039,0.013977051,-0.14746094,-0.17382812,-0.0115356445,-0.16796875,-0.03149414,-0.076660156,0.04736328,-0.027954102,0.104003906,-0.15917969,-0.30078125,-0.095214844,0.071777344,0.0234375,-0.11621094,0.0625,-0.33007812,-0.026123047,-0.12988281,-0.103515625,0.041748047,-0.15625,-0.033691406,-0.18164062,0.01586914,-0.24316406,-0.18945312,0.034179688,0.034179688,-0.25390625,0.027709961,-0.045898438,-0.034423828,-0.11328125,-0.19140625,-0.096191406,0.00090408325,-0.14355469,-0.08251953,0.04638672,0.08105469,-0.16210938,0.265625,0.09423828,0.16894531,0.08691406,-0.17382812,-0.10546875,-0.08691406,-0.045898438,0.013000488,-0.087402344,-0.15722656,0.041748047,0.05029297,0.15136719,0.18457031,0.115722656,-0.053222656,-0.004852295,0.0017242432,-0.044921875,0.103515625,-0.022827148,-0.11376953,-0.056152344,-0.044189453,-0.100097656,0.063964844,0.049804688,0.095214844,0.103515625,-0.029785156,-0.171875,0.07519531,-0.021972656,-0.1484375,0.059570312,-0.0546875,0.09472656,-0.06640625,0.20703125,-0.037841797,-0.047851562,-0.099121094,-0.0703125,0.013122559,-0.15332031,0.115234375,-0.10546875,-0.08886719,-0.12792969,0.0061950684,-0.05126953,0.000333786,0.07324219,-0.08642578,-0.19042969,-0.064941406,-0.07763672,-0.20019531,-0.096191406,0.10644531,-0.00049209595,0.10449219,-0.12597656,-0.115234375,-0.099121094,0.00063705444,0.0067443848,0.060302734,0.14257812,0.033447266,-0.114746094,-0.06298828,-0.14453125,-0.23242188,0.033203125,-0.0703125,0.21191406,0.07080078,-0.067871094,-0.025268555,-0.21679688,0.07470703,-0.036621094,-0.055908203,0.013122559,-0.025390625,0.17871094,-0.14355469,-0.05517578,-0.2421875,0.06640625,-0.1171875,0.03100586,0.10986328,-0.103515625,-0.13671875,-0.052978516,0.037353516,-0.033447266,0.067871094,0.06591797,-0.07714844,-0.16796875,0.01586914,-0.09667969,-0.01953125,0.083496094,0.125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16699219,-0.014953613,-0.15429688,-0.16992188,-0.05517578,-0.234375,0.03857422,0.08691406,0.007507324,-0.12158203,-0.11621094,-0.16992188,0.024291992,0.03149414,0.15429688,-0.036376953,-0.13671875,0.06738281,-0.12695312,-0.14746094,-0.00046730042,0.056884766,-0.1484375,-0.11376953,-0.04272461,-0.17578125,0.056396484,-0.025756836,-0.0030975342,-0.26953125,-0.076171875,0.0033416748,-0.16699219,-0.044189453,-0.17578125,-0.040283203,-0.023803711,0.140625,-0.13671875,0.043701172,0.07128906,-0.0029754639,-0.13964844,0.084472656,-0.08886719,-0.09082031,-0.044921875,-0.14648438,-0.14355469,-0.12695312,-0.09716797,-0.09814453,-0.13476562,-0.17089844,-0.20605469,-0.057373047,-0.06640625,-0.18945312,-0.140625,0.033691406,-0.01928711,-0.25195312,-0.11035156,0.026855469,-0.32617188,0.07714844,-0.034179688,-0.15527344,-0.091796875,-0.020996094,0.07128906,0.10253906,-0.012084961,-0.05517578,-0.17480469,-0.017944336,-0.10498047,-0.038085938,0.07128906,-0.103027344,0.001739502,-0.096191406,-0.265625,0.022338867,-0.111328125,0.16015625,-0.05810547,-0.12988281,0.040283203,-0.088378906,0.16113281,-0.17285156,-0.110839844,0.18359375,0.029663086,-0.032958984,-0.12451172,-0.03149414,-0.15917969,0.13867188,-0.072265625,-0.024780273,-0.09082031,-0.23925781,0.11669922,-0.012268066,0.24414062,0.017944336,0.0014343262,-0.041015625,0.0022583008,-0.10058594,-0.19042969,0.01928711,-0.008911133,-0.046142578,-0.036865234,0.05810547,-0.19238281,-0.15332031,-0.059326172,-0.04321289,-0.037597656,-0.08984375,0.071777344,-0.09375,-0.09814453,-0.05517578,-0.23339844,0.18847656,-0.0859375,-0.10546875,-0.07373047,-0.13476562,-0.14746094,0.06591797,0.036132812,0.012634277,-0.17285156,0.027954102,0.0055236816,-0.11816406,-0.048583984,0.023803711,-0.12207031,0.20507812,0.13867188,-0.0115356445,-0.029296875,0.13476562,-0.14550781,0.07861328,-0.05517578,-0.048095703,-0.18066406,0.014343262,-0.068847656,-0.12109375,-0.040771484,-0.040771484,0.018310547,-0.16796875,-0.24121094,0.06738281,0.068847656,0.01586914,0.10253906,-0.016357422,0.09423828,0.111328125,-0.040283203,-0.036621094,0.12011719,0.18945312,0.024169922,0.08691406,0.14746094,-0.055908203,0.12597656,0.15722656,-0.0053710938,-0.028320312,-0.06201172,-0.008850098,0.08496094,0.05859375,0.009094238,-0.08203125,-0.050048828,0.08251953,-0.15527344,0.15722656,0.17089844,0.111328125,0.08203125,-0.04296875,0.17773438,0.103027344,-0.030273438,0.033691406,0.015258789,0.0068969727,-0.106933594,0.016601562,-0.010498047,0.10986328,-0.07763672,0.016845703,0.013671875,0.021240234,0.115722656,0.19140625,0.18945312,-0.1484375,0.12890625,0.14746094,0.091796875,0.035888672,0.06591797,0.0038909912,-0.018066406,0.16503906,0.088378906,-0.10058594,-0.045898438,-0.13378906,-0.04321289,0.033447266,0.031982422,0.02746582,0.1015625,0.15722656,-0.12890625,0.07861328,-0.13476562,-0.053466797,0.079589844,-0.0054626465,-0.13085938,-0.010620117,-0.061279297,-0.32421875,-0.14160156,-0.05029297,-0.025756836,-0.09375,0.28125,0.08691406,-0.07421875,-0.07910156,0.15429688,0.107421875,0.060791016,-0.03491211,0.031982422,-0.068847656,0.16015625,-0.18554688,-0.103515625,0.203125,0.107910156,-0.059814453,0.19824219,0.043701172,-0.06933594,-0.16113281,0.0025482178,-0.08935547,-0.017211914,-0.00793457,-0.099121094,0.0066223145,0.10986328,-0.26171875,0.0154418945,0.023925781,0.057373047,0.3828125,0.038085938,0.17480469,-0.09375,-0.0028686523,-0.072265625,-0.17773438,-0.01940918,0.20703125,0.2109375,-0.060302734,0.20996094,0.056640625,0.079589844,-0.061523438,0.09667969,-0.17578125,0.26367188,-0.012512207,0.08251953,-0.012512207,0.019042969,-0.052490234,0.049804688,-0.052734375,0.17871094,-0.12792969,0.30273438,0.26953125,-0.033691406,-0.055419922,-0.103027344,0.05126953,-0.17578125,0.1640625,-0.021240234,0.15820312,-0.008300781,0.064453125,-0.037109375,-0.07470703,0.043701172,0.0076904297,-0.1640625,-0.0020751953,-0.25390625,-0.08544922,0.09082031,0.012268066,0.0703125,0.07421875,-0.011962891,-0.12109375,-0.010803223,-0.24902344,0.024414062,-0.06933594,0.05493164,-0.16210938,0.007751465,0.0040283203,-0.12988281,0.11376953,-0.08642578,-0.16992188,0.06542969,-0.17480469,0.0015640259,-0.21191406,0.13769531,-0.25195312,-0.008178711,-0.08984375,-0.11328125,-0.12890625,-0.050048828,0.033935547,-0.109375,-0.0146484375,-0.04248047,-0.16503906,-0.12792969,-0.19433594,-0.040771484,-0.09277344,-0.12109375,-0.33203125,-0.06933594,0.0029296875,-0.15625,0.052734375,0.080566406,-0.080566406,-0.017822266,0.16992188,-0.10595703,0.018432617,0.06689453,-0.27148438,-0.049316406,0.05493164,-0.045410156,-0.056152344,0.07519531,0.07128906,-0.055664062,0.096191406,-0.15527344,-0.07470703,0.02734375,0.049316406,-0.13769531,-0.01574707,-0.014160156,-0.014526367,0.061523438,0.30078125,0.1484375,0.09277344,-0.09277344,0.104003906,-0.08251953,-0.040771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.038085938,-0.0052490234,0.099609375,0.19042969,0.036376953,0.04711914,0.068359375,-0.3515625,-0.064941406,0.052490234,0.08154297,-0.14941406,0.016845703,-0.030883789,0.060791016,-0.0017471313,0.27929688,-0.0028076172,-0.05053711,-0.004180908,-0.05053711,-0.049560547,-0.10644531,0.07861328,-0.016357422,-0.057861328,-0.008056641,-0.2578125,-0.024414062,0.16503906,-0.11035156,-0.104003906,0.23339844,0.064941406,0.16113281,-0.09765625,0.10888672,0.10498047,0.10888672,-0.12597656,-0.035888672,-0.033447266,-0.049804688,-0.079589844,0.016113281,-0.047607422,0.045410156,-0.14648438,-0.087402344,0.15722656,0.13671875,-0.2265625,0.16210938,-0.028320312,-0.21484375,-0.03466797,-0.096191406,0.083984375,-0.017211914,-0.012145996,-0.028930664,0.021850586,0.10107422,-0.030029297,0.0037078857,0.13769531,-0.03857422,-0.14941406,0.11425781,-0.11425781,0.2265625,-0.125,0.04248047,0.032958984,-0.07421875,-0.14746094,-0.0043640137,0.19335938,0.08935547,-0.084472656,-0.10058594,-0.02319336,-0.014770508,-0.010681152,0.14355469,-0.1484375,0.22851562,-0.13867188,0.05053711,-0.08105469,0.14355469,-0.16699219,-0.032958984,0.10839844,0.20019531,-0.061035156,-0.32226562,0.21875,0.13378906,-0.15527344,-0.0006713867,-0.0859375,-0.02746582,-0.3125,0.044433594,0.047607422,-0.26367188,-0.07861328,-0.005706787,-0.045654297,0.092285156,-0.29492188,-0.09814453,0.36132812,-0.056396484,-0.045410156,-0.16796875,0.119140625,-0.019165039,-0.22558594,-0.03857422,0.015380859,-0.011230469,0.00011062622,0.009887695,-0.27148438,0.0011749268,-0.1953125,-0.06933594,0.26367188,-0.067871094,-0.04663086,0.037109375,0.13085938,0.028198242,0.20898438,0.026855469,-0.021972656,0.021606445,-0.12792969,-0.08642578,0.088378906,0.0013809204,-0.25,-0.27148438,0.40039062,0.11621094,-0.140625,-0.087890625,-0.0030975342,0.13964844,-0.2109375,0.0703125,-0.15039062,-0.01550293,0.013793945,-0.029541016,-0.032714844,0.171875,-0.203125,-0.32226562,-0.03540039,-0.11328125,-0.057373047,-0.053466797,-0.13867188,0.076660156,-0.23046875,-0.038085938,0.042236328,0.0048828125,-0.017089844,-0.11279297,-0.15136719,-0.07080078,0.10107422,0.022460938,0.0546875,-0.07763672,-0.111328125,-0.17773438,0.0859375,-0.029418945,-0.09326172,0.032714844,0.09765625,-0.056884766,0.08935547,-0.048828125,-0.021606445,-0.22167969,0.041748047,-0.1953125,0.22070312,-0.017578125,-0.1640625,-0.234375,-0.107421875,0.18847656,-0.104003906,0.072265625,-0.125,0.08496094,-0.07470703,-0.049072266,-0.07519531,-0.12207031,0.0154418945,-0.43945312,-0.068847656,0.12597656,0.14160156,-0.14355469,-0.034423828,0.3046875,-0.26171875,-0.059570312,0.08691406,0.06640625,0.114746094,0.039794922,0.031982422,-0.07861328,-0.024658203,-0.36914062,0.31835938,0.064453125,-0.041503906,-0.10498047,0.011291504,-0.100097656,-0.14550781,-0.07080078,-0.00062942505,-0.010070801,-0.19433594,-0.11376953,-0.14453125,0.25390625,0.10253906,-0.2265625,-0.064453125,-0.0029907227,0.053955078,-0.12109375,0.0138549805,0.12402344,-0.11035156,-0.10888672,-0.032958984,-0.045654297,0.06933594,-0.10595703,-0.037353516,0.071777344,0.11230469,0.024291992,-0.08984375,0.033691406,0.00023078918,-0.018432617,-0.19238281,-0.026245117,0.10498047,0.023803711,0.11230469,0.12597656,-0.092285156,-0.0030670166,0.056396484,-0.18457031,0.08105469,0.07714844,-0.22753906,-0.16308594,-0.03515625,-0.24414062,-0.095703125,-0.17675781,-0.024291992,0.032470703,-0.11279297,-0.08300781,-0.14746094,-0.017944336,-0.049560547,0.075683594,0.010498047,0.04711914,0.06225586,0.036865234,-0.004119873,-0.16113281,-0.049560547,0.14453125,-0.05908203,0.017822266,0.06689453,0.08886719,-0.104003906,-0.025512695,0.09472656,-0.0035095215,0.12597656,0.048339844,-0.22265625,-0.171875,0.045410156,-0.018432617,-0.034179688,0.18261719,0.051757812,0.07910156,-0.04638672,-0.12597656,0.09277344,-0.20996094,0.068359375,0.05834961,0.103027344,0.0047912598,0.04345703,-0.16308594,0.009094238,0.24609375,0.12695312,0.016723633,0.030639648,-0.119140625,-0.025512695,-0.06738281,0.018188477,-0.018188477,0.203125,0.22460938,-0.083496094,0.19628906,0.056640625,-0.0703125,-0.01586914,0.18164062,-0.04711914,0.036621094,-0.09033203,0.041503906,0.022583008,-0.029418945,0.067871094,0.07421875,-0.023803711,0.022338867,0.10205078,0.06542969,-0.44921875,0.033691406,-0.10205078,0.04321289,-0.234375,-0.05102539,-0.09814453,-0.01977539,-0.0072631836,-0.037597656,-0.07861328,-0.07421875,0.119140625,-0.10058594,0.048339844,-0.045898438,-0.20410156,-0.07861328,0.03466797,0.09082031,0.021118164,0.15527344,-0.0703125,-0.08203125,0.02734375,0.013122559,-0.01928711,0.10253906,0.21875,0.087402344,-0.055908203,0.23535156,-0.34570312,0.029663086,-0.09667969,0.23144531,-0.00074768066,0.110839844,-0.018798828,0.025390625,-0.05126953,0.14550781,-0.038085938,0.05908203,-0.032958984,0.2734375,-0.018432617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.09765625,0.05078125,0.1328125,-0.060546875,0.0115356445,-0.20117188,-0.19140625,-0.16503906,-0.025146484,0.0107421875,0.11621094,-0.014953613,0.053955078,-0.104003906,0.02319336,0.08691406,0.11816406,0.096191406,-0.017700195,0.07861328,0.09472656,-0.06689453,-0.01184082,0.091308594,0.08300781,0.030151367,-0.00019168854,0.06738281,-0.029907227,-0.059570312,0.099121094,-0.047851562,-0.008605957,-0.026000977,-0.0546875,-0.03173828,0.040527344,-0.040527344,-0.036376953,0.084472656,-0.036865234,-0.014038086,-0.13769531,-0.07910156,-0.15136719,0.06933594,0.010498047,0.014831543,0.17871094,-0.1328125,-0.057617188,-0.15136719,-0.107421875,0.15527344,0.020385742,-0.095703125,-0.083496094,-0.23925781,-0.018432617,-0.057373047,0.021118164,0.009216309,0.09423828,-0.15332031,0.19726562,-0.35351562,-0.21972656,-0.13867188,0.0024108887,0.030029297,-0.10986328,0.13671875,-0.026977539,0.072265625,-0.052490234,0.16699219,-0.041748047,0.0039367676,0.0625,-0.20800781,-0.012390137,0.103027344,-0.100097656,0.091796875,0.06542969,-0.06347656,0.07861328,0.0064697266,0.11669922,-0.111328125,0.09814453,-0.010620117,0.17285156,-0.041992188,-0.08251953,0.123046875,0.18945312,0.019897461,0.057617188,-0.037597656,0.0625,0.1640625,0.24023438,0.063964844,0.03881836,0.14746094,0.10839844,0.03149414,0.072265625,0.13964844,0.046142578,0.17480469,0.18554688,-0.06689453,-0.009338379,-0.07763672,-0.09765625,0.1875,-0.040039062,0.008972168,0.015991211,0.13964844,-0.014892578,0.0059509277,-0.076660156,0.008972168,0.014404297,0.13574219,0.18066406,-0.078125,0.024291992,-0.028320312,-0.056396484,0.0068969727,0.0234375,0.009033203,0.08105469,-0.17382812,0.08984375,0.06347656,-0.111328125,-0.018676758,0.01574707,-0.20996094,-0.09033203,-0.10107422,-0.13183594,-0.26367188,-0.203125,0.0048217773,-0.024169922,-0.11279297,0.068359375,-0.16503906,-0.099121094,-0.036865234,-0.122558594,-0.08642578,-0.21289062,-0.025390625,-0.064453125,0.19335938,-0.029418945,-0.15820312,-0.10595703,0.04736328,0.060546875,-0.26171875,-0.10839844,-0.09667969,0.25390625,-0.08642578,0.024047852,0.08154297,-0.09326172,-0.072753906,-0.03857422,0.03564453,-0.095214844,0.19335938,-0.028076172,0.17675781,-0.096191406,-0.25976562,-0.10107422,0.17578125,0.023071289,-0.18261719,0.0134887695,0.041748047,-0.063964844,0.14160156,-0.10058594,-0.05053711,-0.18847656,0.17773438,0.033447266,-0.12451172,-0.125,-0.35742188,0.06933594,0.0023345947,0.23632812,0.064453125,-0.008972168,0.0033569336,-0.04248047,0.008728027,0.043945312,0.032470703,0.026611328,-0.008911133,-0.14355469,0.12060547,-0.2734375,-0.03125,0.03540039,0.016967773,0.0138549805,-0.03149414,-0.12109375,-0.23339844,0.007873535,-0.2109375,-0.27929688,0.005859375,-0.08544922,0.0026245117,-0.0625,0.24121094,-0.029907227,-0.04248047,0.075683594,-0.075683594,0.08300781,-0.14257812,-0.10839844,-0.0026855469,0.17382812,-0.21777344,-0.18359375,-0.13378906,-0.22167969,-0.25976562,0.0049438477,0.08496094,-0.17480469,-0.18457031,0.047607422,-0.007873535,0.140625,-0.09423828,-0.015014648,-0.07470703,0.027832031,-0.0070495605,-0.14550781,-0.067871094,-0.15332031,-0.1796875,-0.12060547,0.10888672,-0.01586914,-0.08300781,0.067871094,0.12451172,0.016357422,-0.16894531,0.111816406,-0.055664062,0.028686523,-0.029541016,-0.17285156,-0.03491211,-0.060058594,0.07080078,-0.123046875,-0.092285156,-0.19238281,-0.16015625,-0.100097656,0.044921875,0.034423828,0.12597656,0.13476562,0.008178711,-0.296875,-0.03930664,-0.16796875,0.009094238,0.104003906,0.040283203,-0.123535156,-0.02331543,-0.060791016,-0.0066223145,0.017578125,-0.032226562,0.29492188,-0.05493164,-0.12402344,0.17675781,-0.18945312,0.107421875,-0.13378906,0.28710938,-0.11621094,-0.050048828,-0.04663086,0.12451172,-0.103515625,-0.061767578,-0.020874023,0.17382812,0.07421875,-0.234375,-0.0023040771,0.0390625,0.010131836,-0.08984375,-0.033691406,0.16503906,-0.072753906,0.055908203,0.017456055,-0.020385742,-0.057128906,-0.087402344,0.10253906,-0.07861328,0.08935547,-0.004638672,-0.015991211,-0.06689453,-0.07128906,0.034179688,0.13964844,-0.30859375,-0.048583984,-0.012573242,0.083496094,0.08105469,-0.10498047,-0.024902344,-0.045654297,0.024902344,0.059570312,0.15136719,0.092285156,-0.04711914,-0.26171875,0.021606445,0.053222656,-0.07324219,-0.0146484375,-0.09375,-0.1015625,0.032958984,-0.18945312,0.046142578,0.033691406,-0.00016212463,-0.19824219,-0.02722168,-0.005554199,-0.07714844,-0.09033203,-0.15136719,0.06982422,-0.060302734,-0.15722656,0.024047852,-0.020141602,0.27539062,-0.017944336,0.25390625,0.08105469,-0.015563965,0.1328125,-0.11230469,-0.083984375,-0.05883789,-0.2578125,-0.06933594,-0.05126953,-0.2578125,-0.095214844,0.041748047,-0.18164062,-0.114746094,0.078125,0.08203125,0.09033203,-0.0043640137,0.20507812,0.028076172,-0.32226562,0.106933594,-0.15039062,-0.040527344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.0005302429,-0.04248047,0.23242188,0.026855469,-0.03930664,-0.018676758,-0.028564453,-0.15332031,0.024414062,0.19726562,0.11669922,0.14941406,-0.14453125,-0.46484375,-0.040771484,0.06591797,-0.011413574,-0.0119018555,0.22753906,0.024780273,-0.12207031,0.068847656,-0.09326172,-0.123535156,-0.05883789,0.17089844,-0.118652344,-0.18554688,-0.06640625,-0.057861328,0.0015869141,-0.0703125,0.140625,0.09277344,0.017333984,0.16503906,-0.140625,-0.21386719,0.024780273,-0.24804688,-0.078125,-0.21289062,-0.17382812,-0.122558594,-0.010131836,-0.10498047,0.15722656,-0.12402344,-0.020263672,0.08105469,-0.024536133,-0.12207031,-0.07763672,-0.078125,0.17480469,-0.0063476562,-0.029052734,0.014465332,-0.14648438,-0.12792969,-0.033447266,-0.030883789,-0.033203125,0.04663086,-0.24902344,0.019897461,0.064453125,0.08105469,-0.19726562,0.25195312,-0.21679688,-0.1640625,-0.088378906,0.026123047,0.20605469,0.06225586,0.09082031,0.080566406,0.08886719,0.011352539,-0.02331543,-0.07421875,0.22949219,0.21972656,0.12695312,-0.22460938,0.05029297,0.048095703,0.09375,0.106933594,0.0703125,-0.060058594,-0.038085938,0.044677734,0.033935547,0.12597656,-0.087402344,-0.24023438,0.16992188,0.17675781,0.048339844,0.118652344,-0.055908203,0.08300781,0.07519531,0.110839844,0.088378906,0.02319336,0.005340576,-0.107421875,0.10839844,-0.140625,-0.010803223,-0.22167969,-0.020996094,-0.022216797,-0.14453125,0.171875,0.12011719,-0.025634766,-0.064941406,-0.04638672,-0.021362305,0.12695312,-0.12109375,-0.20703125,-0.055664062,0.04638672,-0.25976562,0.053466797,-0.027832031,-0.18066406,-0.076171875,-0.09033203,0.024291992,0.10888672,-0.08642578,-0.16894531,0.008056641,-0.038330078,0.06738281,-0.2890625,0.12988281,0.057861328,-0.10595703,-0.078125,-0.14746094,-0.09716797,-0.092285156,0.13085938,-0.03930664,-0.09375,-0.083496094,-0.14550781,0.125,0.10058594,0.03125,0.15625,0.03491211,-0.084472656,0.16894531,-0.23632812,0.072753906,0.02722168,0.01977539,-0.36132812,-0.01928711,0.18945312,0.037353516,-0.014892578,-0.05908203,0.12988281,0.045410156,0.05053711,-0.087402344,0.052978516,-0.07373047,0.0625,0.042236328,-0.068359375,0.091308594,-0.14160156,-0.0005226135,0.009887695,-0.018310547,-0.018432617,-0.005584717,-0.08496094,-0.018066406,0.088378906,0.03515625,-0.15332031,-0.067871094,-0.115722656,0.1171875,0.060058594,-0.012390137,0.032470703,0.007537842,-0.051513672,-0.091308594,0.032958984,-0.029296875,0.080566406,0.04345703,-0.16992188,-0.0703125,0.044677734,-0.041015625,-0.03173828,-0.13671875,-0.15917969,0.076660156,0.037597656,0.11816406,-0.08300781,-0.0390625,-0.08691406,0.09863281,0.15234375,-0.009399414,-0.19042969,0.30273438,-0.123046875,0.092285156,0.119140625,-0.2734375,-0.15234375,0.080566406,0.18945312,0.10498047,-0.076660156,0.030761719,-0.12988281,-0.125,-0.001739502,-0.09863281,-0.034179688,-0.048095703,-0.13671875,0.10546875,0.107910156,-0.076660156,0.075683594,-0.024169922,-0.061035156,0.036865234,0.09082031,0.067871094,0.016357422,-0.025268555,0.06201172,0.057373047,-0.063964844,-0.052001953,0.063964844,-0.12988281,-0.15429688,-0.04711914,0.011962891,-0.029174805,-0.10986328,0.00075912476,0.27734375,-0.080566406,-0.043701172,-0.025390625,-0.09667969,-0.025390625,-0.10888672,-0.111816406,-0.17382812,0.033935547,0.05834961,-0.10498047,-0.103027344,0.20507812,-0.17480469,-0.04638672,-0.14941406,-0.07128906,-0.025146484,0.06591797,0.025390625,-0.19042969,-0.01977539,0.068847656,-0.083496094,-0.07519531,-0.075683594,-0.100097656,0.095703125,0.084472656,-0.079589844,0.10498047,-0.036376953,-0.045410156,-0.024780273,-0.11816406,0.14160156,-0.16699219,0.004058838,-0.23144531,-0.17871094,0.19042969,0.1640625,-0.18261719,-0.119140625,0.08984375,0.18652344,-0.20605469,0.14648438,-0.045166016,-0.14941406,-0.14160156,-0.14257812,0.0859375,-0.20898438,0.14257812,0.075683594,0.17675781,0.11425781,-0.16113281,0.083496094,-0.039794922,0.099609375,0.08496094,0.02758789,0.032714844,0.0859375,0.041992188,-0.14941406,0.115234375,-0.048583984,0.015991211,-0.12060547,-0.015991211,-0.029296875,-0.38867188,0.10986328,-0.1796875,0.10205078,0.09765625,-0.011291504,-0.072753906,-0.014831543,-0.0134887695,-0.26953125,0.072265625,0.20214844,-0.04296875,-0.029907227,-0.079589844,0.092285156,-0.37109375,-0.018676758,-0.016601562,-0.10986328,0.07373047,-0.2890625,0.046142578,-0.012084961,0.09423828,0.05834961,-0.04296875,0.051757812,0.08642578,-0.18847656,0.05834961,0.0625,-0.16796875,0.10595703,-0.00046730042,-0.07861328,0.08935547,0.00390625,0.044921875,-0.16992188,-0.12890625,-0.0030975342,0.06298828,0.052978516,-0.026000977,-0.15917969,0.21289062,0.045166016,-0.030761719,0.03881836,0.057373047,0.046142578,0.11669922,0.14257812,0.09277344,-0.061279297,-0.10888672,-0.0067749023,-0.0138549805,-0.13085938,-0.08105469,0.07373047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.03955078,-0.09863281,-0.34960938,-0.18457031,-0.123046875,0.11279297,0.018676758,-0.140625,-0.22265625,0.044433594,0.19042969,-0.13769531,0.025512695,0.057128906,-0.08544922,-0.37109375,-0.095703125,-0.08154297,-0.17089844,-0.025756836,-0.015991211,-0.068847656,0.11669922,-0.18359375,-0.11425781,0.0107421875,-0.087890625,-0.03564453,0.10839844,-0.23730469,0.005126953,-0.44335938,-0.02722168,0.006225586,-0.08691406,-0.2890625,0.017456055,-0.115722656,-0.005340576,-0.17285156,-0.19628906,0.07373047,-0.09667969,-0.03881836,0.13183594,-0.110839844,0.009460449,0.036132812,-0.24511719,0.23046875,-0.01928711,-0.19238281,-0.19042969,0.1328125,0.037841797,0.03955078,-0.026733398,-0.0625,-0.0546875,-0.050048828,-0.13769531,-0.12597656,0.09277344,-0.09667969,-0.18359375,0.005859375,-0.080078125,-0.24316406,0.010253906,0.10058594,-0.09472656,0.09375,-0.061279297,-0.24707031,0.067871094,0.10449219,0.03515625,0.076660156,-0.17480469,-0.13183594,-0.0546875,-0.14746094,-0.104003906,0.09472656,0.016845703,0.16210938,-0.1484375,0.05053711,-0.040283203,0.16601562,0.21582031,0.079589844,0.12451172,0.16015625,0.021240234,-0.06542969,-0.29101562,-0.061523438,0.104003906,0.044189453,-0.055664062,-0.022216797,-0.15136719,-0.32617188,0.13671875,-0.061035156,-0.014099121,0.0061035156,0.019897461,-0.09667969,0.08496094,-0.020996094,-0.24414062,0.07080078,-0.095214844,-0.03930664,-0.02355957,0.08984375,-0.08886719,0.020874023,-0.16601562,0.003540039,-0.013427734,0.008972168,-0.06542969,-0.04296875,-0.033447266,-0.16113281,-0.051513672,-0.1640625,0.15429688,0.06738281,0.004180908,0.050048828,0.044433594,0.09326172,0.0703125,0.041015625,0.109375,0.099121094,-0.08984375,-0.26171875,-0.12060547,-0.10449219,-0.02746582,-0.103515625,-0.068359375,0.048583984,0.04638672,0.09667969,-0.012268066,-0.012084961,0.006378174,0.04711914,0.12207031,0.061035156,0.07763672,0.048583984,-0.203125,-0.1875,0.0546875,-0.24707031,-0.18457031,-0.15234375,-0.16210938,0.013916016,0.022216797,0.12451172,0.076660156,0.18164062,0.053710938,-0.045898438,-0.020507812,0.013916016,-0.057617188,0.0625,-0.029541016,-0.30078125,-0.15429688,0.07714844,-0.15234375,0.028198242,0.110839844,-0.23828125,0.024414062,0.15234375,-0.104003906,-0.08984375,0.05029297,-0.009277344,-0.11816406,0.04711914,-0.17675781,-0.21289062,0.060302734,0.04296875,-0.18945312,-0.111328125,0.052246094,0.055908203,-0.042236328,0.24707031,-0.1953125,0.119628906,0.06347656,0.011474609,0.026367188,0.08203125,0.00045585632,-0.15136719,-0.07421875,0.17285156,-0.06640625,0.019165039,-0.14746094,0.025268555,0.016723633,0.17578125,0.12060547,-0.03173828,0.022460938,-0.0021209717,0.0034179688,-0.061279297,0.25390625,-0.071777344,0.06347656,0.017578125,0.041992188,0.095214844,-0.12597656,-0.5,-0.028320312,0.072265625,0.15039062,0.080078125,0.02355957,0.10058594,-0.104003906,-0.07910156,0.024291992,0.19238281,-0.26953125,0.08691406,-0.2265625,0.123535156,-0.21777344,0.053466797,-0.03881836,-0.13085938,0.1796875,-0.16308594,0.084472656,-0.0053100586,-0.020507812,0.07324219,-0.04296875,-0.045898438,-0.20019531,-0.09375,-0.21679688,0.20605469,0.14746094,-0.0859375,-0.115234375,-0.18847656,-0.05126953,0.14453125,-0.032714844,-0.13671875,0.14941406,0.060302734,0.01586914,-0.26171875,-0.036132812,-0.19824219,0.040283203,-0.020019531,0.07421875,0.0546875,-0.12011719,-0.23925781,-0.068847656,-0.16113281,-0.076171875,0.107910156,0.009216309,0.068359375,0.10058594,0.07324219,-0.07763672,0.12011719,0.07128906,-0.11279297,0.12695312,0.04345703,0.100097656,-0.040039062,0.022216797,0.053222656,-0.06738281,0.31835938,0.07128906,0.038085938,-0.08691406,0.19824219,-0.09033203,-7.009506e-05,-0.37109375,0.049804688,0.095703125,-0.056396484,0.110839844,-0.0008201599,-0.12695312,0.21484375,0.025756836,0.11425781,0.061523438,0.111328125,0.23730469,-0.12597656,-0.087890625,0.25585938,-0.14355469,-0.045410156,0.06982422,-0.21679688,0.022094727,-0.22167969,0.024414062,0.09277344,-0.02368164,-0.07324219,-0.07714844,0.24121094,-0.17675781,-0.091796875,-0.18066406,-0.0703125,-0.2265625,0.18652344,0.20996094,-0.20410156,-0.04638672,-0.22851562,-0.13183594,-0.14453125,-0.010803223,-0.103515625,-0.31054688,-0.021118164,-0.08544922,0.06689453,-0.34179688,-0.087402344,-0.0703125,0.22753906,0.016479492,-0.21386719,-0.06933594,-0.09423828,0.091796875,-0.26367188,-0.067871094,0.09326172,-0.15234375,0.045654297,0.16894531,-0.099609375,-0.23828125,0.041015625,-0.23046875,-0.27148438,0.011962891,-0.296875,0.110839844,-0.07519531,-0.096191406,-0.10644531,-0.041748047,0.099609375,-0.033935547,0.016235352,-0.17773438,0.11816406,-0.028320312,0.15332031,-0.06298828,0.118652344,-0.16601562,0.029296875,-0.056152344,-0.057373047,0.19824219,-0.008972168,-0.036376953,0.140625,-0.011962891,0.001449585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.09667969,-0.012756348,0.0390625,0.06298828,-0.13867188,-0.18066406,-0.009521484,0.07714844,-0.084472656,0.016601562,0.14746094,0.11035156,-0.08300781,0.20800781,0.0028839111,0.09423828,0.12695312,0.19433594,-0.08203125,-0.046142578,-0.083984375,0.029907227,-0.06298828,0.067871094,-0.007080078,0.003967285,-0.033935547,0.22363281,0.04638672,-0.1875,-0.04272461,-0.09716797,0.12695312,0.091796875,0.06689453,-0.25,-0.088378906,-0.092285156,-0.091796875,-0.032958984,0.09765625,-0.071777344,0.017822266,0.16308594,0.015075684,-0.075683594,0.114746094,-0.029418945,0.12792969,0.125,0.18457031,-0.19140625,-0.12597656,-0.10107422,0.091796875,-0.041503906,-0.096191406,-0.05126953,-0.05102539,0.110839844,0.05883789,0.06225586,0.040039062,0.072753906,0.08984375,0.119628906,0.12207031,0.025634766,-0.08154297,0.13476562,-0.19433594,-0.079589844,-0.0050964355,-0.16308594,-0.041992188,-0.11230469,-0.12695312,-0.040039062,0.14550781,-0.051757812,0.14746094,-0.14746094,-0.030639648,-0.11230469,0.0008392334,-0.18945312,0.084472656,0.10644531,0.028198242,-0.03540039,0.045410156,0.020996094,0.07714844,-0.057128906,-0.01373291,-0.35351562,0.17773438,-0.123535156,-0.032226562,-0.18261719,-0.036865234,-0.13964844,0.0045166016,0.012145996,-0.05078125,-0.30664062,0.045898438,0.088378906,0.0047302246,-0.15722656,-0.1796875,-0.052978516,-0.029785156,0.11425781,-0.013244629,0.11279297,-0.12109375,-0.076660156,-0.2265625,0.08642578,-0.05126953,-0.41601562,-0.1875,-0.011108398,0.12792969,-0.16992188,-0.010986328,-0.03491211,-0.07324219,0.031982422,0.008117676,0.048339844,-0.022583008,0.09326172,-0.02758789,-0.0038909912,0.028198242,-0.43554688,0.24511719,-0.109375,0.20019531,0.016723633,-0.14355469,-0.16015625,-0.07128906,-0.032714844,0.12597656,-0.060546875,-0.021240234,0.13671875,-0.12451172,-0.16503906,0.083496094,-0.16992188,0.12597656,0.096191406,-0.1015625,0.11425781,0.05102539,-0.12695312,0.016723633,0.12109375,-0.06298828,-0.0099487305,-0.20214844,-0.12792969,0.2109375,0.12988281,0.12695312,-0.111816406,-0.033935547,-0.095703125,0.052490234,-0.09472656,-0.061523438,-0.19335938,-0.09277344,0.09814453,-0.09082031,-0.26757812,-0.015991211,0.017333984,-0.05908203,0.022705078,-0.109375,-0.23730469,-0.014587402,0.0025939941,0.0051879883,-0.13085938,-0.14257812,-0.18457031,0.061523438,0.14453125,-0.12402344,-0.018432617,0.10546875,0.017089844,0.12792969,-0.07861328,0.033447266,-0.35351562,-0.029296875,-0.091308594,0.14648438,-0.12011719,-0.22949219,-0.005065918,0.07470703,-0.052978516,0.064941406,0.23242188,0.13476562,0.0015487671,-0.015380859,-0.140625,-0.022583008,-0.2578125,0.140625,0.012634277,0.18457031,-0.110839844,-0.06347656,-0.10058594,0.100097656,-0.359375,0.030517578,0.10107422,0.03491211,-0.010803223,-0.0037994385,-0.24414062,0.09033203,-0.08251953,-0.01928711,0.18945312,-0.06640625,-0.19433594,-0.10986328,-0.15429688,-0.16210938,-0.012451172,-0.18164062,0.060058594,-0.07080078,-0.095214844,-0.007537842,-0.006072998,-0.14355469,-0.0063171387,-0.03540039,0.0045166016,-0.011352539,-0.03149414,0.041748047,-0.18652344,-0.19335938,-0.078125,-0.0703125,-0.1171875,-0.0068969727,-0.18554688,-0.31640625,0.17382812,0.004180908,-0.11376953,0.1328125,-0.084472656,-0.050048828,0.03881836,-0.05102539,0.068847656,0.041259766,-0.06225586,0.006225586,0.025756836,0.12060547,0.12451172,-0.07421875,-0.15625,0.02319336,-0.10644531,-0.03955078,-0.036865234,0.038330078,0.09277344,-0.044677734,-0.04272461,0.061523438,-0.12158203,0.07470703,0.032470703,0.18945312,-0.100097656,0.23144531,0.020385742,0.07861328,0.12597656,-0.12451172,0.055664062,0.06640625,0.20019531,-0.075683594,-0.0067749023,0.11669922,0.0154418945,0.020629883,0.061523438,0.14648438,-0.13378906,-0.107910156,-0.07421875,-0.03149414,0.046875,-0.09423828,-0.021850586,-0.22851562,0.103027344,-0.04272461,-0.12451172,-0.24316406,0.1328125,0.016479492,-0.16015625,-0.12890625,0.021118164,0.06689453,0.14941406,0.010559082,0.04345703,0.16308594,-0.123535156,0.010864258,0.020996094,-0.114746094,-0.21777344,-0.32617188,-0.14160156,-0.08642578,0.019165039,0.20996094,-0.083984375,-0.110839844,0.071777344,-0.044677734,-0.09375,-0.02709961,-0.18164062,-0.063964844,0.11621094,-0.23046875,-0.18847656,0.03857422,-0.036865234,-0.13769531,-0.08251953,0.15429688,-0.21386719,0.12695312,-0.047607422,-0.064941406,0.11230469,-0.059326172,-0.09472656,-0.109375,0.107910156,0.04736328,-0.14648438,0.09423828,-0.16113281,-0.0079956055,-0.033203125,0.0017700195,-0.15234375,-0.068847656,-0.008544922,0.07763672,-0.041992188,-0.04711914,0.17773438,0.03881836,0.022460938,-0.07519531,-0.19335938,0.16796875,-0.16894531,0.05517578,0.13867188,0.11230469,-0.067871094,0.33984375,0.17675781,0.019042969,-0.07861328,-0.17382812,0.052978516,-0.15429688,-0.12207031,0.008178711,-0.08886719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.14355469,-0.060058594,0.25195312,-0.15722656,-0.006652832,0.055664062,-0.01965332,0.0006866455,-0.040283203,-0.19628906,-0.10839844,0.030517578,-0.05908203,0.06542969,-0.17871094,-0.26367188,0.05053711,-0.048095703,0.00680542,0.08154297,0.111328125,-0.19726562,0.006652832,0.016967773,0.056396484,0.045898438,-0.005432129,0.048583984,-0.06201172,-0.11376953,-0.076660156,-0.027709961,0.004760742,-0.064453125,-0.00982666,0.061279297,-0.032714844,-0.2109375,0.17089844,0.13574219,0.06982422,-0.0063171387,0.21289062,-0.020996094,0.002532959,0.09082031,-0.25390625,-0.057373047,0.057617188,-0.12207031,-0.05517578,0.123535156,-0.15039062,-0.123046875,0.029174805,0.25585938,-0.080078125,-0.048828125,-0.08691406,-0.05126953,0.032470703,0.067871094,-0.1484375,0.012268066,-0.0057373047,-0.03564453,0.13183594,0.13574219,-0.025390625,-0.111328125,0.08300781,-0.20996094,-0.10449219,-0.052734375,-0.040771484,-0.30859375,0.02709961,0.012817383,-0.024047852,0.07373047,-0.18554688,-0.16699219,0.04638672,-0.14941406,0.09033203,-0.07470703,0.06982422,0.125,0.020629883,-0.18945312,-0.03881836,-0.078125,0.071777344,-0.024536133,0.10888672,-0.15039062,0.1484375,-0.20898438,0.0027160645,0.030761719,0.020263672,-0.12109375,-0.048095703,-0.114746094,0.119628906,0.025024414,-0.16699219,0.07470703,0.119628906,-0.12890625,0.13476562,0.15136719,0.036132812,-0.05493164,0.026367188,0.041992188,-0.01586914,-0.07421875,0.12792969,0.11230469,0.095214844,0.07470703,0.012207031,0.19628906,0.072265625,0.18652344,0.020385742,0.234375,0.328125,0.09472656,-0.17871094,0.007537842,0.05444336,0.036132812,-0.0703125,0.111328125,0.08251953,0.05053711,0.16015625,-0.13867188,-0.10888672,0.087890625,0.03540039,0.0703125,0.033203125,-0.04345703,-0.12402344,0.072753906,0.048583984,0.13964844,0.13378906,0.072265625,-0.025878906,-0.07080078,-0.029296875,-0.030151367,0.06347656,0.087890625,-0.22753906,0.028930664,-0.31640625,-0.09375,0.103515625,-0.16894531,0.0011138916,-0.15136719,0.030517578,0.01928711,-0.047607422,-0.23242188,0.28320312,0.01928711,0.16601562,0.0012435913,0.12988281,0.06542969,0.15722656,-0.21289062,-0.06591797,0.123535156,0.088378906,0.04248047,-0.08642578,-0.20019531,0.04272461,0.030883789,-0.07421875,0.09082031,0.10449219,-0.060546875,0.028686523,0.22167969,-0.16992188,0.296875,0.030029297,0.08251953,0.0022277832,-0.017700195,0.035888672,-0.10546875,-0.00680542,0.12158203,0.018554688,0.06640625,0.042236328,0.0072021484,0.036376953,0.234375,-0.017944336,0.14257812,-0.11230469,-0.07714844,-0.049072266,0.015380859,0.1171875,0.04663086,0.036621094,0.018432617,0.095703125,0.17089844,0.099121094,0.0049743652,0.068847656,0.021728516,-0.07714844,-0.03881836,-0.032470703,-0.049560547,-0.11425781,0.2265625,0.087890625,-0.015380859,-0.06542969,-0.03515625,-0.12890625,-0.10839844,0.09863281,-0.008911133,-0.095703125,-0.27148438,-0.32421875,0.024536133,0.06542969,-0.14355469,0.020019531,-0.099121094,-0.029174805,0.039794922,0.07714844,-0.07080078,0.01940918,0.06298828,0.07763672,0.03125,-0.09423828,0.01159668,0.0859375,0.049316406,0.07910156,-0.05029297,0.09667969,0.05419922,0.026245117,-0.122558594,-0.010925293,0.0087890625,0.16601562,-0.1640625,-0.0126953125,-0.00970459,-0.10986328,0.13378906,0.012451172,0.12451172,-0.0036315918,-0.007385254,-0.009887695,-0.22363281,0.049560547,-0.100097656,0.053955078,0.08154297,-0.1796875,0.015380859,0.064941406,-0.043945312,0.07714844,0.19140625,-0.11669922,0.024780273,0.083984375,-0.023803711,0.011169434,0.14355469,0.140625,-0.041259766,0.095214844,0.043945312,-0.068847656,0.087890625,0.0625,-0.19042969,0.0068969727,-0.20410156,-0.18652344,-0.06298828,-0.028320312,-0.040283203,-0.05102539,-0.18652344,0.16992188,-0.013305664,-0.041748047,-0.075683594,-0.019042969,-0.24511719,-0.021484375,-0.026489258,0.107421875,-0.3125,-0.099121094,0.11816406,0.100097656,-0.09814453,-0.09375,-0.017089844,-0.13769531,-0.07128906,0.044921875,-0.03955078,-0.09472656,-0.024902344,-0.1953125,-0.2578125,0.026611328,-0.22167969,0.047607422,0.13378906,-0.008239746,0.072753906,-0.031982422,-0.17382812,0.103515625,-0.14746094,0.005218506,0.072265625,0.05053711,-0.0859375,-0.11230469,-0.15527344,0.11816406,-0.07373047,0.041748047,-0.0010375977,-0.041992188,0.061767578,-0.092285156,0.111328125,0.029541016,0.040527344,0.09863281,0.0079956055,-0.03149414,0.026733398,-0.07373047,0.049316406,-0.28320312,-0.15917969,0.022583008,-0.24707031,-0.04711914,-0.02319336,0.034179688,0.15332031,-0.026611328,0.026123047,0.064941406,0.030761719,0.106933594,0.045654297,-0.09472656,-0.017211914,-0.044433594,-0.28125,-0.09863281,0.0073547363,-0.025512695,-0.08544922,0.19140625,0.08105469,0.095703125,-0.048828125,-0.02746582,-0.059570312,-0.09814453,-0.013427734,0.06347656,0.10058594,0.05859375,-0.35351562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.021484375,-0.100097656,-0.083496094,-0.060058594,0.22949219,0.14453125,0.14941406,0.018188477,0.06201172,-0.02734375,0.05444336,0.26171875,0.12402344,0.17089844,-0.0037384033,0.09472656,-0.018066406,-0.013000488,-0.25585938,-0.08886719,-0.0027770996,-0.118652344,-0.17480469,0.025756836,0.030761719,0.036132812,0.12890625,0.15234375,0.1328125,0.041992188,-0.0390625,-0.12207031,0.27148438,-0.10449219,-0.14941406,-0.08984375,-0.03564453,-0.16015625,0.0625,0.09326172,-0.107421875,0.05053711,-0.041748047,-0.0079956055,0.21289062,-0.051757812,-0.12792969,-0.09326172,-0.028442383,-0.034179688,-0.10205078,-0.057861328,-0.045654297,0.07470703,-0.14746094,0.11376953,-0.096191406,-0.12890625,-0.15039062,-0.084472656,0.15136719,-0.083496094,-0.025390625,0.091796875,0.010192871,-0.2890625,-0.12207031,-0.11230469,0.11425781,-0.072265625,-0.06982422,0.061523438,-0.078125,-0.012451172,-0.07128906,-0.025390625,0.041015625,-0.064941406,-0.059326172,-0.045898438,-0.10546875,-0.049560547,-0.024902344,-0.020385742,-0.10888672,0.055419922,0.038330078,0.049316406,0.004119873,-0.06640625,0.039794922,-0.15136719,0.025878906,-0.14746094,-0.16992188,-0.14257812,-0.119140625,-0.21484375,-0.0052490234,-0.080566406,-0.036865234,-0.08886719,0.05419922,-0.16113281,-0.021728516,-0.21875,-0.0015640259,0.05908203,0.17480469,-0.076171875,0.05517578,-0.14160156,-0.007446289,-0.014709473,0.020629883,-0.057128906,-0.047851562,-0.01550293,0.13671875,-0.122558594,-0.083984375,-0.072753906,0.099121094,-0.14257812,0.07470703,0.07910156,-0.083496094,-0.016845703,-0.15039062,-0.015563965,0.0107421875,0.08691406,0.004852295,0.05883789,-0.032714844,-0.00970459,-0.08642578,-0.052978516,0.056640625,-0.026123047,-0.0055236816,0.12109375,0.05029297,0.04296875,-0.09082031,-0.07324219,-0.104003906,0.034423828,0.012878418,0.17773438,0.08300781,0.05029297,-0.08886719,-0.068359375,0.022094727,-0.056640625,-0.05908203,0.020385742,0.123046875,0.00579834,0.16601562,-0.08105469,-0.03466797,-0.053710938,-0.034179688,-0.055419922,-0.0058898926,0.15429688,0.0062561035,-0.20898438,0.03955078,-0.056640625,-0.032470703,-0.083984375,-0.17675781,-0.19824219,0.11621094,0.19433594,-0.052490234,0.0053100586,-0.057617188,-0.064941406,0.01586914,0.08886719,0.063964844,0.023925781,0.038330078,0.06738281,0.103515625,-0.087402344,-0.10449219,0.068847656,0.10986328,0.30859375,0.020385742,-0.17578125,-0.119628906,-0.056152344,0.037353516,-0.09863281,-0.10449219,0.051513672,0.026489258,-0.049316406,0.034179688,0.14160156,-0.0076904297,-0.1171875,0.017578125,-0.0077819824,-0.14648438,0.18164062,-0.23925781,-0.061523438,-0.18164062,-0.009277344,-0.0060424805,-0.043945312,0.14746094,-0.041748047,0.107421875,0.171875,0.140625,-0.056884766,-0.19824219,-0.02709961,-0.19628906,-0.14648438,-0.055908203,-0.029785156,-0.049072266,0.111328125,-0.021606445,-0.14355469,0.08886719,-0.20898438,-0.15527344,0.12060547,0.13476562,-0.10205078,0.14453125,0.111328125,0.038085938,-0.05126953,-0.068847656,0.11328125,-0.025390625,-0.009643555,0.088378906,-0.14160156,0.119140625,-0.034179688,-0.20214844,0.092285156,0.008239746,-0.20410156,0.08154297,0.038085938,-0.019042969,0.032714844,0.11767578,-0.026611328,0.005493164,-0.064941406,0.0051574707,0.03857422,0.23828125,-0.08300781,-0.060302734,-0.014953613,0.12402344,-0.048828125,-0.025634766,0.18164062,-0.107421875,-0.026123047,0.02746582,0.083984375,-0.023071289,-0.23730469,-0.12695312,0.07861328,0.09033203,0.12988281,-0.28125,0.040527344,0.07324219,-0.0016860962,-0.18945312,0.04248047,-0.068359375,0.17480469,-0.15625,0.05517578,0.008056641,-0.18164062,-0.09375,0.014587402,0.11816406,0.18847656,0.02319336,-0.039794922,-0.091308594,-0.015014648,-0.28515625,0.041015625,0.0032958984,-0.21289062,-0.234375,0.014709473,-0.023925781,0.18652344,-0.018798828,-0.00065612793,-0.1328125,-0.053710938,-0.14648438,-0.0703125,-0.10888672,-0.20117188,-0.060302734,-0.027954102,0.036376953,0.026245117,-0.00051116943,-0.0050354004,-0.119628906,-0.11621094,-0.0073547363,-0.00340271,0.040283203,0.08203125,0.033935547,0.095214844,0.08154297,-0.0035858154,0.0002155304,0.056396484,-0.11035156,0.049560547,0.11425781,0.02734375,0.12158203,-0.16503906,0.041015625,-0.05419922,0.10839844,0.22753906,-0.27929688,-0.110839844,0.04321289,-0.110839844,0.061035156,0.031982422,-0.10253906,-0.013793945,0.05810547,-0.064453125,-0.17480469,-0.07470703,-0.056640625,-0.14453125,-0.17773438,0.2109375,-0.111328125,-0.025512695,-0.0066833496,0.10449219,-0.02746582,0.119628906,-0.15234375,0.13964844,0.1484375,-0.13964844,-0.03955078,0.013671875,-0.12109375,-0.0859375,-0.106933594,0.08691406,0.045166016,-0.16308594,-0.16113281,0.016601562,0.07373047,-0.20019531,-0.100097656,0.13671875,-0.18066406,0.02355957,0.15234375,0.11621094,0.072265625,-0.09667969,0.075683594,-0.0022735596,-0.060302734,-0.037841797,-0.20703125,-0.08154297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15332031,-0.030151367,-0.09082031,-0.08154297,-0.28515625,0.09472656,-0.033203125,0.10449219,0.0390625,0.12109375,0.18164062,0.04663086,0.03125,0.036865234,0.10546875,-0.15332031,-0.13671875,-0.034423828,-0.01977539,0.016479492,-0.087890625,-0.03564453,0.2421875,0.029174805,0.075683594,-0.053710938,0.19042969,-0.04248047,0.1171875,0.13378906,0.0546875,-0.12158203,-0.008178711,-0.25390625,0.012268066,0.041503906,-0.14257812,0.11669922,0.0077819824,0.12792969,0.09472656,0.1015625,0.045654297,0.028320312,0.071777344,0.16113281,0.0051574707,-0.015319824,0.05859375,-0.12011719,0.1171875,0.025024414,-0.20800781,0.040771484,0.32617188,0.20507812,-0.02319336,0.03466797,0.08544922,0.1015625,0.025024414,-0.23339844,0.114746094,-0.052001953,0.115722656,0.20410156,-0.13476562,-0.171875,-0.26757812,-0.06347656,0.10888672,0.16015625,0.008056641,-0.078125,-0.07421875,0.068847656,-0.0076904297,-0.11376953,-0.014953613,-0.03491211,0.0052490234,0.15039062,-0.022583008,-0.031982422,-0.10546875,-0.03540039,-0.045898438,-0.021484375,0.03125,0.11621094,-0.014099121,-0.20703125,0.05126953,-0.016235352,-0.07421875,-0.115722656,0.030883789,0.11376953,0.037353516,0.040039062,0.06298828,0.053222656,0.005554199,-0.16796875,0.06542969,-0.013793945,0.22949219,-0.24511719,-0.10644531,-0.26953125,-0.044921875,-0.110839844,-0.03149414,-0.018554688,-0.119140625,0.036376953,-0.03149414,0.21191406,0.1484375,0.10058594,0.009460449,0.045166016,0.21289062,-0.13769531,-0.032958984,0.00017929077,0.08886719,-0.06298828,-0.026489258,-0.080078125,0.11425781,-0.05908203,0.029174805,-0.044677734,-0.00793457,-0.01574707,-0.02758789,0.049316406,-0.0546875,0.056152344,0.059570312,-0.048828125,-0.08203125,-0.09863281,-0.22851562,-0.03466797,-0.035888672,-0.055908203,-0.22460938,0.21289062,0.07861328,-0.13085938,0.026489258,-0.060058594,-0.091308594,0.040771484,0.009887695,-0.008483887,-0.17382812,-0.16796875,0.119628906,-0.011108398,-0.09423828,-0.14257812,0.25390625,0.08203125,0.024658203,0.016113281,-0.036865234,0.12988281,-0.15234375,-0.0050964355,-0.084472656,0.071777344,0.1875,0.09326172,0.06591797,-0.041503906,-0.080566406,-0.091796875,-0.12207031,0.060791016,0.052978516,0.029785156,0.053466797,0.104003906,-0.10205078,0.0057678223,-0.08496094,0.025878906,0.08984375,-0.016113281,-0.13085938,-0.023925781,0.011413574,-0.26171875,-0.09375,0.2578125,0.083496094,-0.16894531,-0.057373047,0.01977539,0.109375,-0.056396484,0.013549805,-0.075683594,-0.01586914,0.029052734,0.06689453,-0.08203125,0.104003906,-0.061767578,-0.027709961,0.17089844,0.33203125,0.0027313232,-0.0066833496,0.106933594,0.006225586,0.140625,0.20800781,0.052490234,-0.09765625,0.047607422,0.15625,-0.21777344,-0.063964844,-0.13476562,-0.04248047,-0.067871094,0.048828125,-0.16113281,-0.03564453,-0.21386719,-0.045898438,0.05029297,-0.091796875,0.041748047,-0.13574219,-0.048583984,0.21582031,0.042236328,0.1328125,0.014099121,0.17480469,0.23828125,0.0052490234,0.03491211,-0.1328125,0.13867188,0.12060547,-0.036621094,-0.22558594,0.08203125,0.063964844,0.16699219,-0.052978516,0.18554688,-0.21777344,0.08496094,0.049804688,0.064941406,-0.087890625,-0.03955078,-0.0072631836,0.06933594,0.071777344,0.0032348633,-0.15039062,0.104003906,0.17773438,0.045898438,0.24121094,0.045898438,-0.052978516,-0.23535156,0.09326172,0.10644531,-0.15722656,-0.056884766,-0.040527344,0.021484375,-0.013427734,-0.099609375,-0.045410156,-0.1171875,0.087402344,-0.035888672,0.11425781,0.15136719,-0.14941406,-0.33984375,0.0625,0.12597656,-0.04736328,0.12988281,0.016479492,-0.16992188,0.036376953,0.14648438,0.046142578,-0.19921875,0.020874023,-0.09326172,0.2890625,0.020629883,0.044921875,-0.17285156,-0.009460449,-0.107421875,0.06542969,0.06640625,-0.0055236816,-0.35742188,0.008117676,-0.06738281,0.0146484375,0.14746094,-0.23242188,0.01977539,0.13671875,0.15527344,-0.028930664,0.08544922,-0.20410156,0.34765625,-0.017822266,-0.003753662,-0.037109375,0.14355469,-0.11767578,-0.09814453,0.11230469,0.10205078,0.1328125,0.06640625,0.01940918,-0.09667969,-0.0126953125,-0.11767578,0.0025482178,-0.1640625,-0.080566406,-0.075683594,-0.048828125,0.095703125,0.004272461,-0.15136719,-0.051757812,-0.09033203,0.16503906,-0.1328125,0.078125,0.10449219,0.1328125,-0.17480469,0.014953613,-0.027832031,-0.083496094,-0.050048828,-0.03173828,0.15527344,-0.078125,-0.06542969,0.041259766,-0.016235352,0.15136719,-0.061767578,-0.044921875,-0.0021209717,-0.048095703,-0.22070312,0.052734375,0.063964844,0.099121094,-0.040771484,0.13476562,-0.12695312,-0.096191406,0.013183594,0.043945312,-0.09082031,0.091796875,-0.083496094,0.018188477,0.042236328,0.063964844,-0.30273438,0.061523438,-0.28320312,-0.14648438,-0.01550293,0.015625,-0.31835938,0.071777344,0.18652344,-0.08935547,0.0057678223,-0.12207031,0.057373047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.09667969,-0.203125,0.052734375,0.024658203,0.029785156,-0.10595703,0.1640625,-0.10839844,-0.10498047,0.10986328,0.18457031,-0.20410156,-0.084472656,0.22460938,-0.09667969,-0.03173828,0.051757812,-0.17285156,0.024169922,-0.07421875,-0.05126953,-0.07519531,0.09765625,-0.023071289,-0.15625,0.014892578,-0.09082031,-0.07519531,-0.19042969,0.0625,-0.08935547,-0.017456055,0.1484375,0.0019073486,-0.084472656,-0.053710938,-0.08154297,0.075683594,0.04321289,-0.014404297,0.037353516,0.07910156,0.14453125,-0.033447266,-0.1953125,0.030517578,0.004638672,-0.048339844,-0.15917969,0.0859375,-0.056396484,-0.12402344,-0.118652344,0.16894531,0.13476562,0.083984375,0.060058594,-0.080078125,0.20996094,0.025024414,0.05810547,0.048583984,0.029418945,-0.07519531,0.122558594,-0.14746094,-0.053710938,0.125,-0.35742188,-0.005584717,0.27929688,-0.13769531,0.014587402,0.107910156,0.24707031,-0.056640625,0.19140625,0.063964844,0.08544922,-0.37109375,-0.019897461,-0.17675781,-0.04638672,-0.25585938,-0.029174805,0.1875,0.088378906,0.0044555664,-0.099121094,-0.041992188,-0.049560547,0.119628906,-0.17382812,-0.0066223145,-0.075683594,0.026733398,-0.16601562,-0.028930664,0.027832031,0.05859375,-0.01171875,-0.13476562,0.014892578,0.025512695,-0.061523438,-0.140625,0.12109375,-0.07373047,-0.088378906,0.088378906,0.03930664,0.09423828,0.27734375,0.19335938,-0.037841797,-0.029541016,-0.16796875,0.037353516,0.14355469,0.09082031,-0.056396484,0.0119018555,-0.23632812,0.20507812,-0.19726562,0.05834961,0.07080078,0.021118164,-0.041015625,0.3984375,-0.111328125,-0.33398438,-0.044189453,0.110839844,-0.09716797,0.03540039,-0.044677734,0.012023926,0.075683594,0.16503906,-0.100097656,-0.05029297,0.24121094,-0.053710938,0.09765625,0.28125,-0.01361084,0.22753906,-0.16992188,-0.20507812,-0.08935547,0.30078125,0.080566406,0.07763672,0.071777344,-0.076171875,0.09375,-0.14257812,0.056884766,-0.15527344,-0.067871094,0.063964844,0.0013275146,-0.119628906,0.004638672,0.049072266,0.14648438,0.078125,-0.04345703,-0.1640625,0.06542969,-0.05493164,-0.18847656,-0.100097656,-0.123046875,-0.19921875,-0.171875,-0.04321289,0.083496094,0.026123047,0.05029297,0.10107422,0.22949219,0.032226562,-0.07519531,-0.17675781,0.02709961,-0.022827148,-0.107421875,0.12109375,0.0052490234,-0.068847656,-0.19335938,0.16894531,-0.057861328,0.0038909912,-0.033935547,0.07470703,-0.19726562,0.036132812,0.118652344,-0.07373047,0.036865234,0.06738281,-0.053710938,0.014160156,0.09716797,-0.16113281,-0.00039672852,0.11621094,-0.084472656,-0.11230469,-0.036865234,0.027832031,0.119628906,0.07910156,-0.111816406,-0.1875,-0.0154418945,0.16796875,-0.09375,0.22265625,0.1171875,-0.22363281,0.099609375,0.12109375,-0.04663086,-0.08105469,0.18554688,0.022338867,-0.0703125,-0.0056762695,-0.18066406,-0.026611328,0.1640625,-0.14941406,0.08154297,-0.052001953,-0.09326172,-0.15527344,-0.038330078,0.036376953,-0.099121094,0.036376953,-0.016845703,0.11279297,-0.10253906,0.020629883,-0.107910156,-0.056884766,-0.048339844,0.04736328,-0.09472656,-0.06640625,-0.023925781,-0.06982422,-0.16699219,0.057617188,-0.057617188,0.06298828,-0.095703125,0.0859375,-0.018066406,0.15039062,0.047851562,-0.096191406,-0.020141602,0.01965332,-0.15332031,0.15917969,-0.109375,-0.063964844,-0.03857422,0.18554688,-0.09814453,-0.20019531,-0.18554688,0.14355469,-0.114746094,0.028686523,0.09033203,0.04321289,-0.052978516,-0.14257812,-0.072265625,0.064453125,0.02319336,-0.10205078,-0.13183594,0.37304688,-0.20507812,-0.13867188,0.1328125,0.20019531,0.015319824,-0.056640625,0.012451172,0.06982422,0.12988281,0.057861328,-0.01977539,0.061035156,0.107910156,-0.0015640259,0.0036773682,0.25390625,-0.21386719,-0.115234375,0.22460938,0.012878418,0.01977539,0.08935547,0.010009766,0.13769531,-0.05810547,0.1875,0.05419922,0.25390625,0.010437012,-0.15234375,-0.18554688,-0.004272461,0.11376953,-0.078125,-0.25585938,0.22265625,-0.1484375,0.026123047,-0.012084961,-0.18164062,0.29492188,-0.11669922,0.10546875,0.017700195,-0.140625,-0.12060547,-0.064453125,0.07763672,0.0005950928,-0.20117188,-0.08496094,0.06933594,-0.06933594,0.16699219,-0.09863281,-0.2109375,0.06591797,-0.24511719,-0.18164062,0.0017166138,-0.22265625,-0.24316406,0.087402344,0.34179688,-0.20410156,-0.24316406,0.041748047,0.19238281,-0.22558594,-0.024658203,0.028930664,0.049072266,-0.03125,-0.016967773,-0.10058594,0.106933594,0.03100586,0.02758789,0.049560547,0.20605469,-0.15039062,-0.025878906,0.04272461,0.053710938,-0.27148438,0.16015625,0.16210938,0.072753906,0.140625,0.046875,-0.15527344,-0.123535156,-0.25585938,0.13867188,0.053466797,0.08544922,-0.17089844,-0.045166016,0.03515625,0.24804688,-0.19335938,-0.053222656,0.071777344,-0.040039062,0.20507812,-0.0859375,-0.09863281,0.106933594,0.010559082,0.05883789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.14453125,-0.059570312,0.031982422,-0.026000977,0.14648438,0.23535156,-0.13769531,-0.03857422,0.12109375,-0.076660156,0.25390625,0.10644531,0.17285156,0.063964844,-0.02368164,0.041503906,-0.0043029785,-0.21191406,-0.022583008,0.030883789,0.008239746,0.17675781,-0.140625,0.22753906,0.106933594,0.015075684,0.17871094,0.095214844,0.19726562,0.064453125,0.010925293,0.09277344,-0.071777344,-0.027709961,0.044677734,-0.076171875,-0.02758789,0.026855469,0.060058594,-0.29882812,-0.056396484,0.13769531,0.012451172,0.16015625,-0.20117188,0.103027344,0.118652344,0.08642578,0.036865234,-0.10595703,-0.18261719,-0.01928711,0.07519531,0.099609375,-0.28710938,0.22363281,-0.005706787,0.029296875,-0.16796875,0.033935547,-0.15039062,-0.008850098,-0.17089844,0.14550781,-0.09716797,0.11230469,-0.14550781,-0.18652344,-0.024658203,-0.03149414,-0.24121094,0.16601562,-0.048339844,0.059814453,-0.083984375,0.088378906,-0.37695312,-0.05078125,-0.026000977,-0.026367188,-0.05908203,-0.011047363,-0.07910156,0.018920898,-0.20117188,0.10058594,-0.07421875,0.12988281,0.21386719,0.024536133,-0.068847656,0.19042969,0.038330078,-0.13476562,0.17285156,-0.048828125,0.016967773,-0.0625,0.17382812,-0.0006828308,-0.18652344,0.20898438,0.068359375,-0.03149414,-0.020385742,0.048583984,-0.46484375,-0.016479492,0.07080078,0.23242188,0.06689453,0.08886719,0.15136719,-0.16796875,0.10595703,0.060791016,0.014038086,0.021118164,0.1796875,0.072265625,0.075683594,0.003540039,-0.022338867,-0.076660156,-0.10888672,0.21875,0.1015625,0.14941406,-0.08300781,-0.16503906,0.20800781,-0.048095703,0.010559082,-0.053955078,-0.10644531,-0.00050354004,0.06933594,0.04321289,0.1015625,-0.0010681152,-0.14453125,0.13476562,0.053955078,-0.01586914,-0.23046875,0.064941406,-0.104003906,-0.07910156,-0.26953125,0.06298828,0.16210938,0.053710938,0.0024261475,-0.09765625,-0.06933594,-0.17285156,-0.14941406,-0.01953125,0.080078125,-0.030151367,-0.17578125,0.01574707,-0.23144531,-0.0703125,-0.19042969,0.035888672,-0.1328125,0.026123047,0.118652344,0.110839844,-0.118652344,-0.008056641,0.14257812,-0.06640625,-0.061035156,0.20214844,-0.125,0.15820312,-0.05859375,-0.012756348,-0.23339844,-0.08203125,-0.14941406,0.11035156,-0.01940918,0.050048828,-0.078125,-0.2421875,0.29296875,0.0024871826,-0.107910156,0.19824219,-0.06689453,-0.14355469,-0.099609375,-0.15332031,-0.265625,0.14746094,0.040771484,0.06347656,0.0018386841,0.08251953,-0.27539062,-0.20410156,0.06347656,-0.07421875,-0.030517578,0.16796875,0.008850098,-0.07910156,-0.008300781,0.024658203,0.0045166016,0.22558594,-0.068359375,0.071777344,-0.029907227,0.10986328,-0.04296875,-0.008605957,0.072753906,0.045410156,-0.0107421875,-0.06640625,-0.068359375,-0.040771484,-0.21191406,-0.08886719,0.05834961,0.07714844,-0.076171875,-0.15429688,-0.030151367,0.09375,-0.021240234,-0.17382812,-0.234375,0.19824219,-0.061035156,-0.16894531,0.072753906,-0.09082031,-0.13085938,-0.080566406,-0.005340576,-0.056152344,-0.26171875,0.115234375,0.00031280518,0.14746094,-0.19824219,-0.111328125,-0.025390625,0.16894531,-0.009521484,0.033691406,-0.026000977,0.010314941,-0.09082031,-0.07763672,0.15136719,-0.15234375,-0.25,0.05859375,-0.107910156,0.119140625,0.12109375,-0.14550781,0.15332031,0.1640625,-0.099121094,-0.078125,0.16503906,-0.014953613,-0.13476562,-0.1875,0.10546875,-0.09863281,-0.13476562,-0.05053711,0.10839844,-0.068359375,0.028808594,-0.08886719,-0.080078125,-0.15136719,-0.04736328,0.16113281,0.032226562,-0.055908203,-0.041259766,0.026733398,-0.044677734,0.15429688,0.22851562,0.03149414,0.01586914,-0.171875,0.037841797,-0.06982422,-0.0025787354,0.29882812,0.13183594,-0.030029297,-0.01373291,0.005493164,-0.039794922,-0.019897461,-0.03857422,-0.13574219,-0.07324219,0.052001953,0.140625,0.028686523,0.123046875,0.096191406,-0.24316406,0.22460938,-0.07324219,0.09716797,0.19726562,0.15527344,-0.27929688,0.18164062,-0.12402344,0.24511719,-0.14550781,0.057617188,-0.22167969,-0.03466797,0.076660156,-0.23339844,0.123046875,-0.171875,-0.23339844,0.056640625,0.2265625,0.103027344,-0.0146484375,0.03857422,0.11816406,-0.018554688,0.027709961,0.1875,0.026611328,-0.096191406,0.23828125,0.03112793,-0.095214844,-0.026245117,-0.080566406,-0.044677734,0.10253906,-0.15429688,-0.0859375,0.012084961,-0.071777344,0.15136719,0.1796875,-0.012878418,0.044921875,-0.055664062,0.12060547,0.013366699,-0.05029297,0.026000977,-0.12988281,0.017822266,0.037841797,-0.2890625,-0.068359375,-0.13574219,0.25195312,0.16894531,-0.07373047,0.0057678223,-0.09033203,-0.33398438,0.09765625,-0.049316406,-0.03515625,0.063964844,0.0063171387,-0.06640625,0.22851562,-0.23535156,-0.1171875,-0.09277344,-0.1640625,0.2578125,0.10107422,-0.107421875,0.06738281,-0.40039062,0.036376953,0.1796875,-0.234375,0.21386719,-0.20410156,0.0069274902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.35546875,-0.049804688,-0.024536133,0.015319824,-0.14257812,0.203125,-0.14550781,-0.17773438,-0.06591797,-0.006591797,0.1953125,-0.0043029785,-0.018432617,-0.04736328,0.11328125,-0.15527344,-0.009460449,0.25195312,-0.04345703,0.02709961,-0.114746094,0.20507812,-0.12597656,-0.061523438,0.034423828,0.0011367798,0.08300781,-0.010864258,-0.16210938,-0.15917969,0.14550781,-0.11230469,0.075683594,0.16308594,0.002456665,0.025756836,-0.10546875,0.019042969,-0.15234375,-0.02709961,-0.092285156,-0.014465332,0.08691406,0.087402344,-0.16894531,0.079589844,-0.030639648,-0.1171875,0.10449219,0.29882812,-0.1328125,-0.033447266,-0.026855469,0.10888672,-0.040283203,-0.12060547,-0.13769531,-0.103515625,0.0042419434,0.10498047,-0.022338867,-0.09863281,0.030395508,-0.03564453,0.100097656,0.234375,0.009338379,-0.11669922,-0.06933594,0.12988281,-0.09326172,-0.07763672,-0.13964844,0.15625,0.109375,0.29882812,0.072753906,-0.03173828,0.17382812,-0.10253906,-0.017456055,0.13378906,0.13574219,0.017211914,-0.16308594,-0.043945312,-0.02722168,0.0044555664,-0.05078125,0.12695312,0.04711914,-0.15820312,0.068359375,0.11816406,-0.22558594,-0.088378906,0.21972656,-0.10253906,-0.067871094,0.13378906,0.046875,-0.017822266,-0.06542969,-0.38476562,0.022460938,0.13085938,0.18847656,0.17773438,-0.15722656,0.0134887695,0.17871094,0.021972656,0.053466797,-0.053710938,-0.12597656,-0.23046875,0.026245117,-0.07128906,-0.32617188,-0.16210938,-0.13671875,0.060302734,-0.13085938,0.14746094,-0.087402344,-0.080078125,-0.08642578,-0.08496094,-0.016845703,0.13183594,0.15820312,-0.08300781,-0.18066406,-0.14355469,0.055908203,-0.03540039,0.09033203,0.091308594,-0.08984375,0.0052490234,-0.033691406,-0.13378906,0.055908203,-0.04711914,0.123535156,0.06201172,0.063964844,-0.06933594,0.06298828,0.10546875,0.04272461,-0.061035156,0.005432129,0.084472656,0.068847656,-0.029541016,-0.05053711,0.08691406,0.048583984,0.048828125,-0.11621094,-0.23242188,0.072753906,-0.099609375,0.13671875,0.0126953125,-0.10205078,-0.16796875,0.07910156,0.15234375,0.076660156,-0.0036010742,0.103027344,0.18945312,-0.19335938,-0.14257812,0.12792969,-0.22167969,0.16992188,0.14453125,0.15039062,-0.12695312,-0.015197754,-0.16992188,-0.016479492,0.20898438,-0.06738281,0.0234375,0.0057373047,-0.038330078,-0.14355469,0.10986328,-0.11767578,0.0032196045,-0.08544922,-0.084472656,-0.15527344,-0.09667969,-0.09423828,-0.11621094,0.06933594,0.12988281,0.016967773,-0.033203125,-0.05493164,-0.02722168,-0.19921875,0.107421875,0.104003906,0.024291992,-0.033203125,-0.036132812,0.13964844,0.04321289,-0.04321289,0.08886719,-0.07373047,-0.021606445,0.056884766,-0.08300781,-0.07763672,-0.09082031,0.007446289,-0.013366699,0.15722656,0.05029297,-0.057373047,0.040039062,0.18652344,0.18847656,0.20019531,0.032958984,-0.17675781,0.092285156,0.068847656,0.0390625,-0.05029297,-0.0011520386,-0.111328125,-0.029296875,-0.045898438,-0.014465332,-0.091308594,-0.28125,0.10498047,0.023925781,0.068359375,-0.12695312,0.14550781,-0.050048828,0.31835938,0.16210938,0.118652344,0.13964844,-0.27929688,-0.119628906,-0.15625,0.22070312,-0.10839844,0.015075684,0.15527344,0.06542969,0.10595703,-0.1015625,-0.021118164,-0.00680542,0.057128906,0.0012283325,0.041259766,0.1640625,-0.17675781,-0.068359375,-0.18066406,-0.08496094,0.053466797,0.049316406,0.03881836,0.13574219,0.05419922,-0.25390625,-0.115722656,-0.061035156,0.1953125,-0.1640625,0.11621094,-0.051757812,-0.12988281,-0.020874023,0.11425781,-0.14257812,0.020263672,0.030029297,0.043701172,-0.012756348,0.19726562,0.11425781,0.035888672,-0.047851562,0.038085938,-0.22753906,-0.072753906,-0.028808594,-0.114746094,-0.21289062,-0.056152344,0.080078125,-0.09863281,0.020141602,0.044189453,0.09277344,0.061035156,0.18847656,0.013122559,0.21972656,0.10205078,0.056640625,-0.040039062,-0.041259766,0.04345703,0.25195312,-0.15820312,0.0859375,-0.13769531,-0.43554688,-0.042236328,-0.26953125,-0.10253906,-0.14453125,-0.088378906,-0.21582031,-0.064941406,0.0625,0.060302734,-0.032226562,-0.265625,-0.103515625,-0.18457031,-0.07080078,-0.10205078,-0.265625,-0.10205078,0.07373047,-0.024414062,0.06225586,-0.048339844,-0.12597656,0.041992188,0.05810547,0.05053711,0.23339844,-0.19238281,-0.072265625,-0.0062561035,-0.25,-0.016113281,0.037597656,-0.14550781,0.29492188,-0.23242188,-0.009399414,-0.014526367,-0.140625,0.084472656,-0.234375,0.18359375,0.2578125,-0.22949219,-0.09472656,-0.08154297,-0.1328125,-0.059814453,0.18164062,0.06738281,0.16796875,-0.012756348,0.13183594,-0.15429688,-0.09375,0.12890625,-0.3046875,0.036865234,0.05029297,-0.21484375,0.011108398,0.09326172,-0.099609375,-0.036865234,-0.08886719,-0.13085938,0.09667969,0.13867188,0.30273438,0.0029449463,-0.0009994507,-0.16601562,-0.15332031,0.0087890625,0.107421875,-0.036621094,0.0019683838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13085938,-0.21484375,-0.08496094,0.1328125,-0.20410156,0.0546875,-0.1875,-0.08544922,0.083984375,0.114746094,0.015258789,0.06298828,-0.014099121,-0.068359375,-0.088378906,-0.020263672,0.15039062,-0.16015625,-0.09326172,0.07470703,-0.06738281,0.055664062,-0.0064697266,-0.06225586,0.00065231323,0.12695312,0.0021514893,-0.017944336,0.022949219,-0.14941406,0.028198242,0.0008277893,0.06298828,0.014953613,-0.09326172,0.08154297,-0.25195312,0.13574219,0.022827148,-0.17871094,0.0703125,0.07861328,-0.004638672,0.103515625,-0.083496094,0.00037384033,-0.13671875,-0.20117188,-0.09033203,0.24023438,-0.09277344,-0.05029297,-0.18945312,0.104003906,0.10644531,0.0012512207,-0.07324219,0.0095825195,0.049316406,-0.016235352,0.030639648,-0.078125,-0.043945312,-0.17578125,0.15429688,0.091308594,-0.15722656,-0.13378906,-0.25585938,0.08496094,0.15332031,-0.19921875,0.09033203,-0.16894531,0.14941406,-0.115722656,0.068847656,-0.103027344,-0.07080078,-0.11425781,-0.017578125,0.015014648,0.07519531,0.09033203,-0.13183594,-0.104003906,0.12011719,-0.06640625,-0.067871094,0.10449219,-0.07128906,0.16796875,-0.107910156,-0.056396484,0.021728516,-0.12988281,0.048095703,0.08251953,0.010375977,0.15527344,0.083984375,0.1953125,-0.068359375,0.010925293,0.00089645386,0.10205078,-0.003112793,0.06689453,0.0072631836,0.203125,-0.114746094,0.096191406,-0.23535156,-0.11767578,-0.12402344,0.001045227,-0.1640625,0.18261719,0.048095703,0.16308594,0.008666992,0.07470703,0.014404297,0.041992188,0.052490234,0.00014019012,0.0052490234,-0.14160156,0.046875,-0.17578125,-0.119628906,-0.114746094,0.033447266,0.041259766,0.09765625,-0.17773438,0.0027618408,0.0038452148,-0.044433594,-0.067871094,-0.079589844,0.13574219,-0.08496094,-0.20019531,-0.009765625,-0.016967773,-0.053466797,-0.1484375,0.033447266,0.034423828,-0.07763672,-0.16113281,-0.04736328,-0.0040893555,-0.15136719,0.05053711,0.026367188,0.1875,-0.125,-0.123046875,-0.068847656,-0.004547119,-0.110839844,0.04248047,0.30664062,0.19726562,-0.06591797,-0.19238281,-0.016601562,-0.099121094,0.13574219,0.047851562,-0.10253906,-0.064453125,0.06201172,-0.15039062,-0.057128906,0.068359375,-0.16894531,-0.09423828,0.17480469,0.16796875,0.06201172,0.030273438,0.02355957,-0.08496094,0.08203125,0.15136719,0.083984375,0.048583984,0.057617188,-0.13476562,-0.17675781,0.21679688,0.032470703,0.0021362305,-0.18164062,0.2265625,-0.010192871,-0.125,-0.0029754639,-0.07763672,0.056884766,0.023803711,0.09375,-0.021972656,-0.08154297,-0.19140625,-0.12890625,0.24609375,-0.10205078,-0.100097656,0.18261719,0.18066406,-0.05078125,0.05078125,-0.052978516,-0.08203125,0.10644531,-0.18457031,-0.03540039,-0.04663086,0.11816406,-0.016601562,0.106933594,0.27929688,-0.037597656,-0.16699219,0.0009727478,-0.043945312,0.028198242,-0.20019531,-0.044921875,-0.02734375,0.046142578,-0.17871094,-0.15820312,-0.048339844,0.13085938,-0.091796875,-0.16308594,-0.049072266,-0.203125,-0.06640625,-0.076660156,0.067871094,0.0043640137,-0.20019531,-0.021850586,-0.328125,-0.016845703,-0.0024871826,-0.021118164,-0.119140625,-0.06591797,-0.17480469,-0.09423828,0.15625,-0.017700195,0.01940918,-0.040527344,-0.020019531,-0.008117676,-0.071777344,0.011657715,-0.059814453,-0.026000977,0.087890625,0.12988281,0.015258789,-0.055419922,-0.20410156,-0.30273438,0.09472656,0.006500244,-0.11328125,-0.21679688,-0.14160156,-0.083984375,-0.0061035156,-0.049072266,0.033691406,0.09423828,0.038085938,0.1328125,-0.03173828,-0.1328125,-0.09472656,0.015075684,-0.08886719,0.09277344,-0.068847656,0.014953613,-0.027709961,0.020629883,-0.20507812,-0.059326172,-0.19921875,0.14257812,-0.22265625,-0.10058594,-0.068847656,-0.028198242,-0.20117188,-0.10644531,-0.2578125,-0.1328125,-0.006225586,-0.021118164,-0.083496094,0.16894531,-0.16503906,-0.084472656,-0.1171875,0.022338867,-0.037597656,0.007598877,-0.16308594,0.006958008,-0.07763672,-0.203125,-0.09326172,-0.059570312,-0.15234375,0.033447266,0.02758789,0.051757812,-0.07763672,0.04272461,0.024169922,-0.16210938,0.059570312,-0.16503906,-0.075683594,-0.123046875,-0.21582031,-0.032226562,0.1640625,-0.06640625,0.045654297,0.09082031,0.05493164,-0.103515625,-0.11035156,0.068359375,0.05102539,0.00017642975,0.14941406,0.10644531,0.012268066,0.060302734,-0.29882812,0.076171875,-0.06225586,0.10546875,-0.088378906,-0.125,0.032470703,-0.020385742,0.104003906,0.064941406,0.0077209473,0.234375,0.08642578,0.19433594,0.16308594,-0.025268555,-0.047607422,0.09277344,-0.11621094,0.110839844,0.14941406,-0.06640625,0.01550293,-0.10253906,0.014831543,-0.042236328,-0.041015625,-0.06933594,0.043945312,-0.14257812,-0.028198242,-0.118652344,-0.14746094,0.07519531,-0.10107422,0.038085938,0.11230469,-0.076660156,-0.044433594,-0.015380859,-0.17285156,-0.10058594,0.11279297,-0.068359375,-0.013244629,-0.12890625,-0.041748047,-0.14257812,-0.096191406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.140625,0.18261719,-0.1171875,-0.15917969,-0.16503906,0.0032043457,-0.087890625,-0.057861328,-0.107910156,0.07910156,-0.0020751953,0.13378906,-0.030029297,-0.1796875,0.12988281,-0.09423828,-0.056152344,-0.15722656,0.08154297,-0.11230469,-0.099609375,0.27539062,-0.07373047,-0.12890625,0.08105469,-0.21777344,-0.020996094,-0.061279297,-0.12011719,-0.2890625,0.11230469,-0.23632812,-0.07128906,-0.0050964355,0.0154418945,0.03112793,-0.087890625,-0.046142578,0.0859375,0.08886719,-0.125,-0.12890625,0.11621094,-0.13476562,-0.14453125,-0.06933594,0.063964844,-0.22070312,0.13574219,0.059326172,0.036621094,-0.068847656,-0.087402344,-0.04321289,-0.0625,-0.14355469,-0.040771484,-0.15527344,-0.11425781,0.107910156,0.12402344,0.010803223,0.041992188,-0.035888672,0.06542969,-0.16113281,-0.115722656,-0.010986328,-0.017944336,-0.027832031,0.07373047,0.00793457,-0.12109375,-0.07910156,-0.14648438,0.107910156,-0.14941406,-0.018188477,-0.20507812,0.20507812,-0.09082031,-0.044921875,0.045898438,-0.037597656,0.06738281,0.15332031,-0.2109375,0.13183594,-0.096191406,0.029541016,0.05029297,0.17089844,-0.080078125,-0.07861328,-0.17675781,0.15820312,-0.1640625,-0.1328125,0.16113281,-0.0019226074,-0.06542969,0.115722656,-0.296875,0.008544922,0.04272461,0.072753906,-0.0040283203,-0.20703125,-0.16210938,-0.0072631836,-0.1171875,-0.04711914,-0.08544922,-0.11621094,0.12695312,-0.24511719,-0.22558594,-0.15527344,-0.29492188,-0.1484375,0.04736328,-0.037109375,0.18164062,-0.09277344,-0.09667969,-0.22460938,0.08300781,-0.057373047,-0.12988281,0.025756836,0.16992188,0.21875,-0.033935547,0.04296875,-0.028930664,-0.234375,-0.031982422,0.09375,0.00982666,-0.15332031,0.055908203,0.0625,0.008728027,0.08984375,-0.078125,0.16503906,0.08105469,-0.061767578,0.1953125,-0.08203125,-0.19921875,-0.09716797,-0.007507324,0.059570312,-0.07373047,0.23925781,0.03112793,-0.13867188,-0.03173828,0.28320312,-0.14160156,0.15820312,-0.001335144,-0.28515625,-0.007232666,-0.1796875,-0.0010528564,-0.016967773,-0.0011444092,0.14453125,-0.02746582,-0.043945312,0.07714844,-0.12988281,-0.12695312,0.09716797,-0.06298828,-0.025512695,0.052734375,-0.06689453,-0.015014648,0.1640625,0.10888672,0.025512695,0.010253906,0.12402344,-0.061035156,0.17382812,0.10498047,-0.13867188,0.048339844,-0.06640625,-0.12890625,0.12597656,-0.030029297,-0.08886719,-0.043945312,-0.009216309,0.14941406,-0.059326172,0.025024414,0.0041503906,0.12792969,-0.005065918,0.08105469,0.076171875,-0.16894531,0.13183594,0.056640625,-0.053222656,0.08935547,0.024414062,0.05078125,-0.13671875,0.24023438,0.0048828125,0.06689453,0.0859375,-0.10888672,-0.057617188,0.020141602,0.068359375,-0.052246094,-0.021362305,0.18261719,-0.12988281,0.16308594,0.103515625,-0.07861328,-0.08251953,-0.18261719,-0.061767578,0.072753906,0.00088119507,-0.06347656,-0.06542969,0.0390625,-0.14648438,-0.18457031,0.09423828,-0.11328125,-0.044921875,-0.060791016,0.07861328,-0.19628906,-0.15429688,-0.119140625,0.006713867,-0.033935547,-0.034179688,0.064453125,-0.06298828,0.08642578,-0.072753906,-0.16015625,-0.095703125,0.019165039,-0.12792969,0.1484375,-0.095703125,0.115722656,0.23242188,-0.0126953125,-0.002960205,-0.059570312,-0.061767578,0.032226562,-0.15917969,-0.12207031,0.037109375,-0.023071289,-0.12011719,0.011474609,0.010803223,-0.032226562,-0.21582031,0.14257812,0.072265625,0.22558594,-0.044189453,-0.07128906,0.096191406,-0.13671875,-0.09814453,-0.034423828,0.14550781,0.140625,-0.23242188,-0.19335938,0.067871094,-0.031982422,-0.099121094,0.038330078,-0.18847656,-0.14355469,0.013977051,-0.079589844,-0.0390625,-0.016357422,-0.13085938,-0.040283203,-0.016357422,-0.021362305,0.050048828,-0.16113281,-0.06738281,-0.006500244,0.122558594,0.07128906,-0.024902344,-0.076171875,-0.27929688,0.015563965,-0.12597656,0.026367188,-0.016845703,-0.14746094,0.026367188,0.015258789,0.064941406,-0.06542969,-0.046875,-0.100097656,-0.15917969,-0.08251953,0.14257812,-0.16699219,0.07080078,-0.064941406,-0.0065307617,0.01940918,0.040771484,0.04711914,0.020141602,0.04321289,0.17382812,0.35742188,-0.08642578,-0.09375,-0.09375,0.15039062,0.07128906,0.04663086,0.076171875,0.029296875,-0.09472656,-0.018920898,0.15917969,-0.0054626465,-0.06298828,-0.1953125,0.05078125,-0.002532959,-0.1640625,-0.009643555,-0.24804688,0.103515625,0.12695312,0.013061523,-0.016601562,-0.09814453,-0.140625,-0.018554688,-0.16210938,0.07128906,0.06591797,-0.11621094,-0.036376953,-0.375,-0.044921875,-0.087890625,0.09716797,0.09667969,-0.087402344,0.040283203,-0.13867188,-0.037841797,-0.17871094,-0.041992188,-0.15917969,-0.04321289,0.037841797,-0.22949219,0.008544922,-0.06738281,-0.16601562,-0.33789062,-0.006225586,-0.0026397705,0.13183594,0.017089844,-0.13867188,-0.08935547,-0.0015487671,-0.038085938,-0.12988281,0.045898438,0.1015625,0.22265625,0.022094727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.16210938,0.17773438,-0.22167969,0.100097656,-0.041748047,-0.103027344,0.080078125,-0.18554688,0.004699707,-0.00970459,0.0053710938,-0.122558594,-0.12060547,0.07910156,-0.052734375,0.009460449,0.037109375,-0.18164062,-0.050048828,0.0012359619,-0.16503906,-0.18066406,0.076171875,-0.19726562,-0.000289917,-0.056884766,0.0066223145,-0.12109375,-0.17089844,-0.068359375,-0.056152344,-0.34960938,0.057128906,0.020996094,-0.060546875,0.02331543,-0.11230469,0.10888672,0.06298828,-0.15625,0.08886719,-0.007598877,-0.06347656,0.071777344,-0.055419922,0.048828125,0.060546875,-0.06689453,-0.18652344,0.080566406,-0.12792969,0.0028076172,0.16894531,-0.00025558472,0.12597656,-0.104003906,0.026000977,-0.037353516,0.07861328,0.0625,0.05859375,-0.063964844,0.08251953,-0.13671875,0.24121094,0.025634766,-0.11230469,-0.078125,0.18847656,0.00390625,0.18359375,-0.04321289,-0.010681152,-0.018554688,-0.21386719,0.076171875,-0.07128906,0.087890625,0.096191406,-0.27929688,0.25390625,0.17675781,-0.096191406,-0.14453125,0.09033203,0.04345703,-0.104003906,0.016723633,-0.095214844,-0.05810547,-0.0703125,0.032958984,0.10498047,-0.171875,-0.015563965,-0.15625,-0.0072631836,0.041503906,-0.05053711,-0.02734375,-0.010925293,0.10644531,-0.06542969,-0.057128906,-0.06591797,0.012817383,0.0038757324,0.06347656,0.042236328,-0.08251953,0.060302734,-0.30859375,0.059570312,-0.15917969,-0.01574707,-0.02355957,-0.09814453,0.11376953,-0.2265625,0.041748047,-0.030761719,-0.018066406,-0.05810547,-0.07910156,0.015014648,-0.033203125,-0.13085938,-0.41015625,-0.21484375,0.092285156,-0.00793457,-0.013977051,0.18164062,-0.13085938,-0.008544922,-0.080566406,0.052001953,-0.03100586,0.2734375,0.013793945,0.026489258,0.037841797,-0.05126953,-0.3359375,0.030883789,-0.083496094,-0.10058594,0.04736328,0.13378906,0.19433594,-0.096191406,-0.17578125,0.049316406,-0.06640625,-0.067871094,0.03930664,-0.05029297,0.10449219,-0.12011719,-0.31835938,0.076660156,-0.24511719,0.047607422,-0.04663086,-0.00046539307,-0.32421875,0.15820312,0.16210938,0.107421875,0.07861328,-0.14550781,0.04296875,0.18066406,-0.018676758,-0.03955078,-0.05126953,-0.064941406,0.004333496,0.13867188,-0.035888672,0.10107422,-0.010620117,-0.13867188,-0.111816406,0.059814453,-0.12451172,-0.0023040771,0.10205078,-0.017578125,0.08935547,-0.055664062,-0.048095703,-0.20019531,-0.19824219,0.06591797,-0.051757812,-0.09326172,0.03930664,0.044433594,0.15917969,-0.056640625,0.011962891,0.005584717,0.10498047,-0.014160156,0.007019043,0.09814453,0.036865234,-0.12060547,-0.118652344,0.103515625,-0.08251953,-0.07519531,-0.092285156,-0.11328125,0.05517578,-0.064453125,-0.048828125,-0.03100586,-0.061523438,0.07373047,-0.12695312,-0.203125,-0.05859375,-0.30273438,0.06542969,0.14648438,-0.0022888184,0.030517578,0.095214844,-0.079589844,-0.14453125,-0.046142578,0.043945312,-0.10595703,0.106933594,-0.08691406,0.13574219,0.026245117,-0.064453125,-0.123535156,-0.203125,-0.0032043457,-0.12207031,0.030151367,-0.06640625,-0.05859375,0.100097656,0.103027344,0.052001953,-0.09716797,0.063964844,0.067871094,-0.096191406,0.024414062,0.15722656,-0.08251953,0.028320312,0.012329102,-0.084472656,0.02758789,-0.020996094,0.013549805,0.0625,0.020263672,-0.020996094,-0.059326172,0.1953125,0.13964844,0.19433594,-0.044433594,0.2421875,-0.15234375,-0.07910156,0.20410156,0.017822266,0.052978516,0.004119873,0.1640625,0.17578125,-0.111328125,-0.140625,0.12988281,0.18457031,-0.06933594,0.09472656,0.041748047,0.029174805,0.11328125,-0.0017852783,0.060058594,-0.0022735596,0.057861328,-0.12158203,0.24707031,0.063964844,-0.032714844,-0.004852295,0.06689453,-0.061767578,-0.083496094,-0.05908203,-0.055664062,0.22363281,0.026611328,-0.115234375,0.041503906,-0.0039978027,0.029418945,-0.11328125,-0.008605957,-0.26757812,0.08105469,-0.045898438,-0.13378906,0.028076172,-0.04272461,-0.09667969,0.123046875,0.1015625,-0.5390625,0.140625,-0.0036315918,-0.060058594,-0.20117188,-0.041503906,-0.017211914,0.140625,0.037841797,0.21875,-0.13574219,-0.14941406,-0.04296875,-0.12890625,0.05444336,0.12988281,-0.18066406,0.18457031,-0.11767578,-0.095703125,0.013793945,-0.043701172,0.111816406,-0.20800781,0.061279297,-0.052246094,0.01586914,0.010803223,-0.12792969,-0.07373047,-0.07128906,0.068847656,-0.1796875,-0.22363281,-0.09375,0.05102539,0.028564453,-0.23535156,0.24121094,-0.09277344,0.03149414,-0.14941406,-0.072265625,0.27929688,0.075683594,0.040039062,-0.12695312,0.06982422,-0.05444336,0.033447266,0.005554199,-0.052246094,-0.004486084,0.099609375,0.09716797,0.0024719238,0.09375,-0.06738281,-0.09472656,0.029663086,-0.06591797,0.087402344,0.018920898,0.11035156,0.005340576,-0.20507812,0.104003906,-0.00028800964,-0.07861328,-0.0045166016,0.0703125,-0.18847656,0.03930664,0.13867188,0.049804688,-0.06933594,-0.15332031,-0.029296875,-0.059814453,0.16210938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.123535156,-0.084472656,-0.00077819824,0.06201172,0.033935547,0.109375,0.088378906,0.09082031,0.08935547,0.0017547607,0.13964844,-0.080078125,-0.32617188,0.0703125,-0.10498047,0.017089844,0.13183594,0.060302734,-0.06201172,0.02331543,-0.0022125244,0.103515625,-0.018920898,0.1328125,0.052978516,0.026489258,-0.011474609,0.01184082,-0.1796875,-0.078125,0.028198242,-0.049072266,-0.021484375,-0.0064086914,0.020751953,-0.0037841797,-0.084472656,0.026733398,-0.13183594,0.028808594,-0.12158203,0.030639648,-0.095703125,0.13183594,0.030273438,-0.20996094,-0.095703125,0.12207031,-0.01965332,-0.13476562,0.040039062,-0.08496094,-0.23242188,0.07080078,0.100097656,0.26171875,-0.099609375,0.06689453,0.16113281,0.125,0.18359375,-0.20703125,-0.05810547,0.020996094,-0.09277344,0.059570312,-0.05078125,-0.13964844,0.018554688,0.19824219,-0.008850098,0.18554688,-0.072753906,0.022827148,-0.014221191,-0.18457031,0.041259766,-0.25390625,-0.19140625,-0.07861328,0.09033203,-0.037597656,0.13964844,-0.008422852,-0.12890625,-0.013183594,0.076660156,-0.18945312,-0.004333496,0.0058898926,0.035888672,0.12792969,-0.24902344,-0.049316406,-0.032714844,-0.13476562,-0.016235352,0.084472656,0.014953613,-0.088378906,-0.15722656,-0.20019531,-0.049560547,-0.045654297,0.14941406,-0.020019531,-0.14257812,-0.13671875,-0.114746094,0.18261719,0.038085938,-0.22363281,0.022460938,-0.18554688,0.12402344,0.13476562,-0.114746094,0.16503906,0.045166016,-0.1171875,-0.076171875,0.11621094,-0.14746094,0.14355469,-0.036621094,-0.37109375,-0.08203125,-0.29296875,-0.060058594,0.171875,-0.16699219,0.05908203,-0.203125,-0.03955078,0.09082031,0.14160156,-0.07714844,0.036621094,0.10205078,0.16992188,-0.08251953,-0.119628906,-0.25390625,-0.08935547,-0.024658203,-0.24902344,-0.008972168,-0.053955078,-0.15527344,-0.19238281,0.00093078613,0.20800781,0.064941406,-0.045898438,-0.036132812,-0.09863281,0.080566406,-0.12207031,-0.028198242,-0.26367188,0.068847656,0.20214844,0.06933594,0.07470703,-0.21582031,0.09863281,0.18847656,-0.13378906,-0.052246094,-0.18457031,-0.09765625,-0.068359375,-0.15527344,-0.015014648,-0.05883789,-0.01171875,0.084472656,-0.15722656,-0.1328125,-0.051757812,-0.22949219,-0.32421875,-0.044189453,-0.10449219,0.0010986328,-0.07763672,-0.15527344,-0.03491211,-0.15527344,-0.049560547,-0.007598877,-0.17578125,-0.16308594,0.012329102,0.05078125,-0.061767578,-0.12207031,-0.19335938,0.05493164,0.024291992,0.0119018555,0.12792969,-0.22265625,0.14453125,-0.08935547,0.07421875,0.006713867,-0.08105469,0.12207031,-0.114746094,-0.12451172,-0.048095703,-0.07519531,0.16699219,0.046875,0.06298828,-0.03564453,0.01940918,-0.14355469,-0.006591797,-0.049072266,-0.022094727,-0.047851562,0.080566406,-0.022705078,0.13183594,-0.15332031,-0.11816406,-0.109375,-0.05053711,0.0067749023,0.00025177002,-0.0017166138,-0.123046875,-0.06640625,-0.50390625,-0.0021209717,-0.18359375,-0.16015625,0.022460938,0.07128906,0.061279297,-0.092285156,-0.11767578,-0.028930664,-0.05078125,0.007659912,-0.09326172,0.064453125,-0.18554688,0.115234375,0.025512695,-0.12695312,0.12792969,0.08544922,-0.08154297,-0.16601562,-0.10107422,0.18164062,0.047851562,0.092285156,-0.12695312,0.20703125,-0.1796875,0.0043640137,0.15820312,0.16503906,0.024658203,0.003189087,-0.053222656,0.14941406,-0.07861328,-0.15820312,-0.064941406,0.083496094,-0.04321289,0.19433594,-0.109375,-0.03930664,0.15820312,-0.055908203,0.10839844,-0.0625,0.16113281,-0.043945312,0.13574219,-0.09033203,-0.096191406,-0.022338867,0.040771484,0.053955078,-0.045654297,-0.12060547,0.064941406,-0.015991211,-0.107421875,0.059326172,0.06542969,0.011962891,-0.171875,-0.0051574707,-0.0034179688,0.020019531,0.087890625,-0.31445312,-0.07421875,0.006164551,-0.040283203,-0.0053710938,0.08203125,-0.036376953,-0.12792969,0.06542969,-0.0703125,-0.0138549805,-0.3515625,0.0069885254,-0.09716797,-0.12402344,0.013122559,0.083984375,0.075683594,-0.037109375,-0.13769531,0.06738281,0.17675781,-0.12158203,-0.026977539,-0.063964844,-0.0028839111,-0.23828125,0.017700195,-0.095214844,0.09814453,0.08544922,0.0703125,0.099121094,0.13085938,0.002822876,0.001083374,0.13085938,0.08496094,0.16113281,0.18164062,-0.043945312,0.119140625,0.08496094,0.234375,-0.072265625,0.115722656,0.1328125,0.05859375,0.030151367,-0.0029754639,-0.03466797,-0.17480469,0.115722656,-0.122558594,0.0703125,0.09472656,-0.01184082,0.08935547,0.07470703,-0.111328125,-0.07324219,-0.084472656,-0.06640625,0.024902344,0.09716797,0.103515625,-0.19726562,-0.1015625,-0.03515625,-0.08154297,0.10644531,-0.110839844,0.048583984,-0.07128906,-0.10107422,-0.32617188,-0.052246094,-0.04711914,-0.14648438,-0.09716797,-0.15136719,0.037597656,-0.17089844,0.029052734,0.032958984,-0.006500244,0.088378906,-0.24609375,-0.038085938,-0.15625,0.17675781,0.029418945,-0.09423828,-0.21875,-0.3203125,-0.044189453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.20996094,-0.08642578,0.32617188,-0.1484375,0.11328125,-0.22363281,-0.15429688,-0.0703125,-0.084472656,-0.13085938,-0.15917969,0.119140625,0.038330078,-0.12988281,0.0033874512,0.012817383,-0.07470703,0.07128906,0.171875,-0.21191406,0.07910156,-0.12011719,-0.119140625,-0.10205078,-0.030761719,-0.203125,0.06689453,0.04638672,0.026733398,-0.104003906,-0.111328125,0.052978516,0.079589844,0.012878418,0.119140625,-0.087890625,-0.10986328,0.040283203,-0.059326172,-0.23046875,-0.03173828,-0.13671875,-0.09033203,0.12402344,0.17089844,0.03881836,-0.029785156,0.0625,0.05810547,0.076660156,0.039794922,-0.07373047,0.041503906,0.17089844,0.07373047,-0.16601562,-0.0234375,0.012329102,-0.01373291,-0.029541016,0.03564453,-0.107421875,-0.119140625,0.029785156,-0.14648438,0.040039062,0.25390625,0.122558594,0.026123047,0.33007812,-0.07714844,-0.13085938,-0.068359375,0.028808594,0.20507812,-0.05517578,-0.07080078,-0.26953125,-0.14941406,0.11767578,0.07080078,-0.022338867,0.16503906,-0.12890625,0.15332031,-0.0059509277,0.0390625,0.14550781,-0.111328125,-0.06689453,0.09814453,0.15136719,-0.009033203,-0.19140625,0.03564453,-0.14453125,0.079589844,0.095214844,0.19042969,-0.16503906,0.044189453,-0.016357422,-0.11621094,-0.09277344,-0.0058898926,-0.13769531,-0.01574707,0.140625,-0.0038452148,0.048095703,-0.026367188,0.13378906,0.06542969,0.051513672,0.004119873,-0.119140625,-0.06347656,0.0076904297,-0.16210938,-0.09667969,-0.107421875,-0.056884766,0.05834961,-0.022460938,0.091308594,-0.21386719,-0.09326172,0.07421875,0.15429688,0.00970459,-0.09667969,0.032226562,-0.028320312,0.08886719,0.109375,-0.26953125,-0.010314941,-0.052001953,-0.0067749023,0.023803711,-0.021484375,-0.09326172,0.111328125,0.1640625,0.026489258,0.0042419434,0.0703125,0.018066406,-0.19824219,0.13671875,0.29101562,0.022827148,0.0063476562,-0.11328125,0.19433594,0.04345703,0.06298828,0.09863281,-0.043945312,-0.012512207,0.24414062,-0.041748047,0.018310547,-0.055664062,0.0066223145,0.11425781,0.123046875,0.01953125,-0.06738281,-0.16796875,-0.07324219,0.008422852,-0.115234375,-0.0014038086,-0.04638672,-0.09765625,0.03930664,0.016723633,0.06591797,-0.19726562,0.022216797,-0.14355469,0.21875,0.012329102,-0.08300781,0.03173828,0.055908203,-0.27929688,0.0024261475,-0.0035552979,-0.071777344,-0.20605469,0.296875,0.037109375,0.032470703,-0.18945312,0.13574219,-0.05126953,-0.103515625,-0.32226562,0.04321289,0.021362305,0.088378906,-0.115722656,0.037109375,-0.068359375,0.049316406,-0.12695312,0.03100586,0.09863281,-0.06347656,-0.13378906,-0.035888672,0.0015563965,-0.15136719,-0.2109375,-0.037109375,-0.11279297,-0.04736328,0.15234375,0.041503906,-0.1796875,-0.12988281,0.030273438,0.13476562,-0.40234375,0.18945312,0.06591797,-0.13378906,0.026855469,0.122558594,-0.026367188,0.13769531,0.07421875,0.05908203,0.14941406,0.063964844,-0.057617188,-0.0023345947,-0.12451172,0.13867188,0.024658203,0.016235352,0.118652344,-0.028442383,0.109375,-0.032226562,0.055908203,-0.119140625,-0.071777344,0.061767578,-0.075683594,0.061035156,0.10595703,0.16015625,-0.025512695,-0.0119018555,0.019042969,0.099121094,-0.07714844,0.11767578,-0.19726562,-0.022460938,-0.029052734,0.1171875,0.09375,0.049560547,-0.07373047,0.05908203,-0.095703125,-0.03515625,-0.13183594,0.03149414,0.076171875,-0.072753906,-0.17675781,0.14355469,-0.19140625,-0.0625,-0.13183594,-0.078125,0.025390625,0.09667969,-0.05908203,-0.033691406,0.13183594,0.12792969,-0.08300781,-0.02319336,-0.08544922,0.08496094,0.025268555,-0.08105469,0.020874023,0.037841797,-0.111816406,-0.028442383,0.053955078,0.026977539,-0.016235352,-0.06542969,0.12890625,-0.012573242,-0.13867188,0.07421875,-0.1328125,0.11376953,-0.06640625,-0.01184082,-0.21777344,0.23632812,0.024291992,-0.03100586,-0.14257812,0.10595703,-0.068359375,0.06298828,0.061035156,-0.024169922,-0.1484375,0.016601562,-0.037597656,0.16992188,0.0625,0.01953125,-0.024414062,0.17773438,-0.0703125,-0.021362305,-0.08251953,0.20117188,-0.09375,0.032958984,0.07080078,-0.001083374,0.040039062,-0.22753906,-0.14453125,0.13769531,0.15234375,0.0073242188,-0.07763672,0.15527344,-0.021362305,0.024047852,0.05126953,-0.014343262,-0.18359375,0.0012359619,0.13085938,0.018188477,-0.06542969,-0.16113281,-0.032714844,0.13867188,-0.048339844,0.022338867,-0.08496094,0.14941406,0.036865234,0.022705078,0.18554688,0.016967773,-0.01159668,0.012817383,-0.084472656,-0.049072266,-0.19433594,-0.15136719,0.049804688,0.067871094,-0.11230469,-0.030151367,-0.29101562,0.1953125,-0.18554688,-0.0057678223,0.013366699,0.059814453,-0.033447266,0.055908203,-0.047851562,-0.014160156,-0.08544922,-0.11376953,-0.04272461,0.18066406,0.011291504,-0.08300781,0.026855469,0.3125,0.123535156,0.07128906,-0.010498047,-0.107421875,0.18359375,-0.052734375,-0.10107422,-0.03881836,-0.087890625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.31835938,-0.122558594,-0.20214844,0.10546875,0.0005836487,0.13183594,0.24609375,0.018310547,-0.0026245117,-0.0703125,0.3125,-0.18066406,0.01586914,-0.056884766,-0.056152344,-0.055419922,-0.083984375,-0.023071289,-0.111816406,0.010131836,-0.041015625,0.17089844,0.12109375,0.024902344,0.06689453,-0.072265625,0.022338867,-0.03125,0.075683594,4.0769577e-05,0.059814453,-0.047607422,-0.07080078,0.028564453,-0.030761719,0.04272461,-0.075683594,0.15820312,0.10058594,-0.018798828,0.011169434,0.049560547,-0.010192871,-0.100097656,0.044189453,-0.05517578,0.19335938,0.04248047,-0.09472656,-0.17675781,-0.07714844,-0.068359375,0.036621094,0.15234375,0.14453125,-0.20117188,0.033447266,-0.14453125,0.14453125,-0.13183594,-0.028564453,-0.31054688,-0.07128906,0.13183594,-0.17285156,-0.109375,-0.06689453,-0.05883789,-0.02709961,0.15917969,-0.06347656,-0.21679688,-0.068359375,-0.08203125,2.4914742e-05,-0.16015625,-0.14746094,-0.026855469,-0.11328125,-0.018798828,-0.18359375,0.0016555786,-0.15917969,-0.087890625,-0.037597656,0.030639648,-0.09667969,-0.068359375,0.051757812,-0.11816406,0.029296875,-0.15722656,0.057373047,0.16796875,0.049560547,-0.03881836,-0.017944336,-0.014282227,0.0859375,-0.078125,-0.09667969,0.19238281,0.15820312,0.0095825195,0.00030708313,-0.075683594,0.18847656,0.057128906,0.107421875,0.100097656,0.0044555664,0.087402344,-0.14355469,-0.07080078,0.123046875,0.09814453,-0.17773438,-0.12402344,0.00020980835,0.09863281,-0.09033203,0.041992188,0.053466797,-0.15625,0.023071289,-0.13476562,0.0234375,0.20214844,-0.19824219,-0.0042419434,0.045898438,0.123046875,-0.104003906,0.07763672,0.24511719,-0.03125,0.040283203,0.11328125,0.11669922,-0.10546875,0.12451172,-0.096191406,0.11816406,-0.08300781,0.08691406,-0.24511719,-0.10449219,-0.26757812,-0.029418945,-0.11376953,0.09814453,-0.03491211,-0.038085938,0.05078125,0.044433594,0.047851562,-0.0138549805,-0.03112793,-0.09667969,0.123535156,-0.08935547,-0.29101562,-0.20703125,-0.13769531,0.1953125,-0.10449219,0.020996094,-0.038085938,-0.106933594,0.034423828,-0.06201172,-0.17675781,0.0024719238,-0.0030212402,0.04663086,-0.029663086,-0.037841797,-0.22753906,0.015197754,-0.057617188,-0.0041503906,0.14648438,0.033203125,0.0115356445,-0.07128906,0.14746094,-0.00289917,-0.02709961,0.14355469,0.107421875,-0.023071289,-0.0024871826,-0.18164062,0.11376953,-0.015197754,0.16503906,-0.103515625,0.12695312,0.08300781,0.067871094,-0.030883789,0.09082031,0.041259766,0.17675781,-0.0016021729,-0.056396484,0.06347656,-0.009521484,-0.07324219,0.09423828,-0.052246094,-0.018554688,0.014831543,-0.09716797,-0.00047302246,0.028564453,0.041992188,-0.030395508,0.021850586,0.03149414,-0.022827148,0.006286621,-0.171875,0.060058594,0.083496094,-0.02368164,-0.080078125,0.04663086,0.020141602,0.044677734,-0.22460938,0.087402344,0.030029297,-0.095703125,0.025390625,-0.052490234,-0.020019531,-0.12158203,0.00016212463,0.06298828,-0.22265625,0.21972656,-0.15039062,-0.080566406,0.03540039,0.0625,-0.014587402,-0.096191406,-0.083984375,-0.1171875,0.012390137,-0.040771484,0.013549805,0.08642578,-0.04272461,-0.044677734,-0.17382812,-0.026733398,-0.008361816,-0.056152344,0.04248047,0.13183594,0.067871094,-0.23828125,0.06738281,-0.012084961,-0.12695312,0.033203125,-0.104003906,0.15234375,-0.34765625,0.110839844,-0.17089844,-0.1484375,0.019042969,0.103027344,0.14941406,0.031982422,0.052001953,-0.22753906,-0.012573242,0.107910156,0.06933594,0.061767578,-0.07080078,0.044677734,0.056884766,-0.22363281,-0.10107422,-0.048828125,0.13183594,-0.17773438,0.1484375,-0.029663086,0.06982422,0.047851562,-0.014343262,0.0015640259,0.24316406,0.00793457,-0.13378906,-0.08935547,0.028076172,-0.26367188,-0.15039062,-0.14453125,-0.022094727,-0.11767578,0.022583008,0.04248047,-0.011779785,0.1171875,-0.007537842,-0.05493164,-0.10107422,-0.1875,-0.047607422,-0.122558594,0.0056762695,-0.2734375,-0.36132812,0.118652344,-0.21777344,-0.35742188,-0.19726562,0.068359375,0.03930664,-0.12792969,-0.103027344,-0.16601562,0.10888672,0.022583008,-0.033203125,-0.1953125,-0.14355469,0.045166016,-0.047607422,-0.16503906,-0.021972656,0.013916016,-0.099609375,-0.025146484,-0.08203125,-0.06347656,-0.064453125,0.06640625,-0.008483887,0.099609375,-0.033691406,0.044677734,4.6491623e-06,-0.21679688,0.037353516,-0.18554688,0.0095825195,0.021606445,-0.18164062,0.009460449,0.140625,-0.016357422,0.107421875,0.12890625,0.04321289,0.25195312,0.003112793,-0.12011719,-0.13085938,-0.19042969,0.037109375,0.13867188,0.10253906,-0.16894531,-0.026367188,0.25585938,0.14355469,0.19921875,-0.022705078,0.12451172,-0.0234375,0.075683594,-0.021484375,-0.08300781,-0.23339844,0.079589844,-0.12792969,0.008117676,0.15722656,-0.21582031,0.095214844,0.039794922,0.07714844,-0.19238281,0.030517578,-0.140625,0.013122559,-0.41015625,-0.09375,-0.1640625,-0.14941406,0.09472656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13574219,0.19726562,0.27929688,0.05419922,0.25,-0.056884766,-0.006378174,0.029296875,0.17089844,-0.11621094,-0.11230469,0.0044555664,-0.02734375,-0.16210938,-0.050048828,0.13574219,0.015319824,0.078125,0.032714844,0.09765625,-0.041259766,0.0036621094,-0.0057373047,-0.071777344,-0.025512695,-0.092285156,0.17773438,-0.061035156,-0.02368164,0.16894531,-0.10107422,0.084472656,-0.103515625,-0.045410156,0.026855469,0.061279297,0.056640625,-0.10839844,0.064453125,0.088378906,0.123535156,-0.31054688,0.107421875,-0.15527344,-0.23632812,-0.05883789,-0.103027344,-0.034179688,-0.1796875,-0.1171875,-0.10839844,-0.09423828,0.09326172,0.14355469,-0.033935547,-0.23339844,0.020141602,-0.22265625,-0.091796875,-0.06591797,-0.21972656,0.03564453,0.046875,-0.040527344,-0.036376953,-0.1796875,0.04711914,-0.043701172,-0.05810547,0.23046875,0.008056641,0.015136719,-0.03857422,-0.12207031,0.0546875,0.057373047,0.024536133,-0.12207031,0.063964844,0.05078125,-0.11621094,-0.021118164,-0.0073242188,0.09082031,0.060546875,0.18359375,-0.09082031,-0.05810547,-0.18847656,-0.04321289,0.21386719,-0.15917969,0.08251953,-0.08154297,-0.024902344,0.15527344,0.140625,-0.09716797,0.28320312,0.06738281,-0.31054688,-0.0069885254,0.1484375,0.046142578,-0.040039062,-0.22558594,0.118652344,-0.20996094,0.061767578,0.018066406,-0.21875,0.048339844,0.24414062,-0.079589844,0.030883789,0.04711914,-0.17675781,0.10253906,0.15722656,-0.083496094,-0.037597656,-0.1328125,0.05078125,-0.009887695,-0.024047852,-0.060546875,0.115234375,0.11035156,-0.16210938,-0.09375,0.0025787354,0.052734375,-0.16601562,0.11035156,0.002090454,0.057861328,-0.018432617,-0.234375,0.34179688,-0.107910156,-0.18457031,0.09277344,-0.1640625,-0.026855469,-0.08154297,-0.29882812,0.20703125,-0.091308594,-0.034179688,0.057617188,0.068359375,-0.034423828,0.028076172,-0.14257812,0.046875,-0.072753906,-0.10839844,0.09814453,0.024658203,0.13867188,-0.107910156,-0.002380371,-0.087402344,0.09082031,-0.20117188,0.091308594,-0.083496094,-0.017456055,-0.06738281,0.27929688,0.080078125,0.07373047,0.05883789,-0.04296875,0.18359375,-0.15527344,0.025390625,-0.08300781,0.1796875,-0.0066833496,0.06689453,-0.033935547,0.021850586,-0.21777344,0.04321289,-0.02746582,0.22363281,-0.080078125,-0.026123047,-0.012878418,0.027709961,0.018554688,0.19335938,-0.1875,-0.13183594,0.049804688,-0.12402344,-0.07080078,-0.03125,-0.08105469,-0.087402344,-0.26171875,0.16308594,-0.14550781,0.010986328,-0.087402344,-0.09033203,0.12597656,-0.009155273,-0.025512695,-0.012878418,-0.1171875,-0.19433594,-0.048583984,0.09765625,-0.049316406,-0.017578125,-0.37109375,0.34375,0.114746094,-0.0625,-0.042236328,-0.103515625,0.15820312,0.048583984,-0.16210938,0.12597656,-0.0029144287,0.005584717,0.044921875,-0.091796875,0.032958984,-0.049560547,-0.16210938,0.052734375,-0.048339844,-0.24121094,-0.014892578,-0.07421875,0.09814453,-0.010681152,-0.033691406,0.08935547,0.017578125,0.020385742,0.16601562,-0.072753906,-0.111816406,-0.1875,0.06225586,0.29492188,-0.09326172,0.13378906,0.10449219,0.032714844,-0.15527344,-0.06298828,-0.15820312,0.071777344,-0.009033203,0.079589844,-0.15722656,0.095703125,0.010253906,0.064453125,0.057373047,-0.03540039,-0.040527344,0.03564453,0.051757812,-0.08496094,-0.13867188,-0.19433594,-0.18847656,-0.028808594,0.014160156,-0.010375977,-0.13867188,0.16210938,-0.020019531,0.072265625,-0.31054688,-0.10107422,0.04272461,0.048095703,-0.038085938,-0.096191406,-0.010192871,-0.14746094,-0.20117188,-0.10986328,-0.0055236816,0.016967773,-0.1484375,0.0038604736,-0.10644531,-3.194809e-05,-0.29296875,0.033203125,-0.0056152344,-0.05908203,0.13183594,0.072753906,0.100097656,-0.02734375,-0.23632812,0.1015625,-0.029541016,0.012023926,0.12890625,-0.01928711,-0.021606445,-0.036865234,0.06591797,0.28710938,0.11816406,-0.13085938,-0.26757812,-0.07470703,0.079589844,-0.024291992,-0.12695312,0.056884766,-0.103027344,-0.033691406,0.12695312,0.07324219,-0.13671875,-0.06640625,0.010009766,0.020874023,-0.08544922,0.15625,0.17089844,-0.045898438,-0.16894531,-0.040527344,0.140625,0.060546875,-0.0234375,-0.09472656,-0.0390625,0.10498047,-0.12158203,0.080078125,0.006713867,0.14550781,-0.0859375,0.05883789,0.04345703,0.023803711,-0.11767578,-0.033691406,0.05883789,0.05834961,0.04296875,0.060302734,0.1640625,-0.04663086,-0.13085938,0.14746094,0.14453125,-0.061035156,-0.13671875,-0.09326172,0.114746094,0.1484375,0.01977539,0.021118164,0.1875,0.016235352,0.07373047,0.23046875,-0.028808594,0.20410156,0.0859375,0.012451172,0.11328125,0.110839844,-0.051757812,-0.10253906,0.23730469,0.15234375,0.032714844,0.06738281,0.06640625,0.33984375,0.02758789,0.05419922,-0.06542969,-0.030395508,0.12695312,-0.15722656,-0.025024414,-0.16308594,-0.04736328,0.14355469,0.061767578,0.027954102,0.0625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.084472656,-0.07470703,0.20019531,0.234375,-0.036621094,-0.038330078,-0.078125,0.16308594,0.088378906,0.048583984,0.049560547,0.107421875,-0.12597656,-0.17773438,-0.036865234,0.14941406,-0.21191406,-0.045898438,-0.12695312,0.14453125,0.08496094,-0.07714844,0.04321289,-0.0058898926,-0.08984375,-0.14648438,0.096191406,-0.13769531,-0.08105469,-0.00045776367,-0.048828125,0.025268555,-0.114746094,0.10205078,-0.080078125,0.078125,0.12597656,-0.16015625,-0.0030670166,-0.17578125,0.075683594,0.07861328,0.048583984,-0.071777344,-0.07470703,-0.032958984,0.05029297,-0.063964844,0.006011963,0.01977539,0.048828125,-0.16210938,0.16699219,0.019165039,-0.18066406,-0.107910156,-0.026123047,0.091796875,-0.203125,0.17382812,-0.07324219,0.100097656,0.111816406,0.064453125,-0.30664062,0.31835938,0.06738281,0.060546875,0.057861328,-0.13769531,-0.16113281,-0.024414062,-0.021972656,0.08544922,-0.040039062,-0.099121094,-0.14453125,-0.09472656,-0.203125,-0.022216797,-0.07861328,-0.4296875,0.16699219,0.17773438,0.09375,0.056640625,-0.032226562,0.091308594,0.021484375,-0.15722656,0.014038086,0.109375,-0.20507812,0.033203125,-0.049804688,0.016601562,-0.27539062,-0.083496094,-0.072753906,0.118652344,-0.12695312,0.053710938,0.071777344,0.118652344,-0.100097656,-0.33203125,0.11376953,-0.060058594,-0.029907227,0.092285156,0.06347656,-0.057373047,-0.33398438,0.12158203,-0.21484375,-0.07861328,0.08544922,-0.026000977,-0.18457031,0.111816406,-0.083496094,-0.20019531,0.10546875,0.032470703,-0.07910156,0.1484375,0.06298828,0.015197754,-0.19921875,0.21191406,-0.08984375,-0.14746094,0.05517578,0.095214844,0.0066223145,0.02355957,0.053222656,-0.08251953,-0.14355469,-0.020141602,-0.03491211,0.21582031,-0.0008468628,0.051757812,0.08203125,0.010192871,0.004272461,-0.033935547,-0.07910156,-0.11230469,-0.12402344,-0.15917969,-0.017944336,0.045898438,0.09082031,-0.25,-0.064941406,0.14453125,-0.06689453,0.012084961,-0.03173828,-0.44921875,0.006713867,-0.16699219,-0.053710938,-0.26953125,-0.10986328,-0.12060547,-0.076660156,-0.2578125,-0.09667969,-0.13964844,-0.10107422,0.11279297,-0.19042969,-0.18652344,-0.28515625,-0.06591797,0.068359375,0.024658203,-0.057617188,-0.018066406,-0.095703125,0.067871094,-0.06689453,-0.01953125,0.0072021484,-0.18164062,0.12792969,0.106933594,0.22265625,-0.08642578,-0.19140625,0.10498047,0.00076675415,-0.2109375,-0.057373047,-0.044189453,-0.08886719,0.017578125,0.04711914,0.08935547,-0.087402344,0.031982422,0.1328125,0.0076904297,-0.0042419434,0.00044631958,0.0023040771,0.37109375,-0.13476562,-0.06640625,-0.03112793,-0.110839844,-0.099609375,-0.18359375,-0.080078125,-0.08642578,-0.024169922,0.114746094,-0.044433594,0.12451172,-0.04345703,0.12792969,0.16699219,-0.07910156,-0.038085938,0.114746094,0.012878418,-0.036376953,0.005340576,-0.19335938,0.014709473,-0.07128906,-0.025634766,0.038330078,-0.030151367,0.048828125,0.1484375,0.043945312,-0.11669922,-0.21289062,0.0859375,-0.078125,-0.10888672,-0.12890625,-0.036865234,-0.25585938,-0.07324219,-0.15039062,-0.13574219,-0.025634766,0.103027344,0.055908203,-0.07080078,-0.265625,-0.026000977,-0.13378906,-0.07421875,0.12695312,0.25976562,0.14648438,-0.16503906,-0.10205078,-0.084472656,0.022949219,-0.16699219,0.036376953,0.052734375,-0.00033569336,0.06347656,-0.15136719,0.05810547,-0.047851562,-0.09423828,-0.061279297,0.14746094,-0.013305664,-0.21777344,0.24511719,0.0115356445,0.123046875,0.034423828,-0.09765625,0.099609375,-0.045898438,-0.09814453,-0.052246094,-0.17773438,0.043701172,-0.008483887,-0.11425781,0.032226562,-0.1875,0.05834961,-0.05834961,-0.099609375,0.009765625,-0.080078125,0.20214844,-0.020263672,-0.001159668,-0.009338379,-0.0546875,-0.013977051,-0.063964844,0.099121094,0.025512695,0.011962891,0.008361816,0.14257812,-0.006072998,-0.11230469,-0.09814453,-0.15722656,-0.03100586,0.0546875,0.19042969,0.15234375,0.10449219,-0.19335938,0.087402344,0.06225586,-0.111328125,-0.16210938,-0.15820312,-0.064941406,-0.09326172,-0.071777344,-0.037353516,-0.08203125,0.0017776489,0.14550781,-0.06982422,-0.09326172,-0.18261719,-0.1640625,0.00390625,0.123535156,0.087402344,0.122558594,-0.015625,0.14746094,0.060058594,-0.055908203,-0.0703125,-0.0126953125,-0.13671875,0.048095703,-0.17773438,0.100097656,-0.25390625,-0.0390625,-0.29492188,0.11816406,0.02368164,0.020996094,-0.25,-0.0071411133,0.05883789,0.103515625,-0.083984375,0.03100586,-0.017089844,-0.003967285,0.100097656,-0.03857422,-0.34179688,-0.15722656,-0.22753906,0.07421875,0.02319336,-0.16894531,-0.04321289,0.099609375,-0.13671875,0.0040893555,0.119140625,-0.14160156,0.104003906,0.083496094,-0.0011749268,0.07373047,-0.056884766,-0.37890625,-0.12597656,0.018310547,-0.08544922,-0.0234375,-0.15820312,0.037109375,0.064453125,-0.11816406,-0.11328125,-0.006866455,0.19628906,0.19238281,0.20410156,-0.072265625,-0.041748047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.100097656,-0.24121094,-0.04736328,-0.234375,-0.22851562,0.20605469,0.09082031,-0.27929688,-0.0138549805,-0.2734375,-0.076660156,-0.671875,0.09472656,0.27148438,-0.10986328,-0.110839844,0.06591797,-0.04663086,-0.015991211,-0.29296875,-0.21972656,0.18847656,0.064941406,-0.28515625,-0.10058594,-0.18261719,0.18359375,-0.1015625,0.042236328,-0.09375,-0.19140625,-0.036132812,0.18261719,0.13867188,0.13964844,-0.27539062,0.115234375,0.044433594,0.24609375,-0.035888672,0.06640625,-0.011962891,0.17773438,0.044433594,0.09765625,-0.28515625,-0.14257812,-0.13964844,0.046875,-0.08544922,0.06738281,0.040283203,0.15429688,0.24707031,0.12890625,0.15625,0.013061523,0.060791016,0.10546875,0.14550781,0.0055236816,-0.11816406,-0.057373047,0.022827148,0.024536133,-0.008666992,0.009643555,0.18554688,-0.088378906,0.07128906,0.22265625,0.10595703,0.125,0.12890625,0.17871094,0.15820312,-0.012207031,-0.083984375,-0.095214844,0.041503906,0.03149414,0.030395508,-0.05859375,-0.16015625,-0.125,-0.031982422,0.12792969,-0.26757812,0.029052734,-0.22070312,-0.140625,-0.33007812,-0.0023651123,0.07324219,-0.084472656,-0.0390625,-0.012512207,-0.008422852,-0.0032653809,-0.23144531,-0.024414062,0.0033721924,-0.1015625,0.083984375,-0.049560547,-0.17871094,0.25585938,-0.09716797,-0.030395508,0.119140625,0.10253906,-0.06982422,-0.059570312,-0.02734375,0.037353516,0.007446289,0.09375,0.005554199,-0.15429688,-0.045898438,-0.041259766,0.032714844,-0.21972656,0.016357422,0.03125,-0.20898438,-0.017211914,-0.08642578,0.021362305,0.16015625,-0.07861328,-0.00051116943,0.034423828,0.078125,-0.2109375,0.119140625,-0.032226562,0.091308594,-0.1328125,0.16503906,-0.013061523,-0.12792969,-0.044189453,-0.053466797,-0.048095703,-0.17773438,0.020263672,0.18359375,0.08154297,-0.012268066,0.05419922,0.13476562,-0.079589844,0.12597656,0.053222656,-0.13085938,0.018310547,-0.016723633,0.0058288574,-0.17578125,-0.05078125,-0.1953125,-0.0044555664,-0.19335938,-0.33398438,0.15136719,-0.14453125,-0.17871094,-0.18652344,-0.114746094,-0.012939453,-0.029785156,0.08691406,-0.083496094,-0.16992188,-0.103027344,-0.026367188,0.026855469,0.087402344,-0.234375,-0.07128906,-0.07763672,0.16015625,-0.30664062,-0.0020141602,-0.049316406,0.061035156,0.02709961,-0.06591797,-0.024414062,0.09326172,-0.17382812,-0.11621094,-0.109375,0.17382812,-0.17285156,0.09472656,-0.021606445,0.08984375,-0.06347656,0.07080078,-0.0054626465,0.041748047,0.050048828,-0.15917969,0.064453125,-0.028686523,0.109375,0.10644531,0.052978516,-0.006652832,0.06542969,0.076660156,-0.041259766,0.11425781,-0.06982422,-0.14648438,-0.123535156,0.072265625,0.15039062,0.14355469,0.057373047,0.111328125,0.050048828,0.010681152,-0.18066406,-0.07470703,0.115234375,0.072753906,0.20800781,0.03881836,0.05908203,-0.1015625,-0.19238281,0.02709961,-0.06640625,0.19238281,-0.12890625,0.036132812,-0.14453125,-0.02709961,-0.072265625,0.07324219,-0.26757812,-0.16894531,-0.12158203,-0.1484375,-0.34960938,0.106933594,0.25390625,0.03100586,0.06738281,0.026245117,-0.06640625,-0.016967773,0.0065612793,-0.07421875,-0.071777344,0.10205078,-0.061523438,0.017211914,0.05053711,0.057128906,0.01940918,-0.020507812,0.15136719,-0.07324219,0.21972656,-0.034423828,-0.049072266,-0.09863281,-0.17285156,0.05053711,0.103515625,-0.03149414,-0.115722656,-0.09082031,-0.08984375,-0.10107422,-0.14355469,-0.036621094,0.012573242,-0.064453125,0.08935547,-0.07763672,0.005004883,-0.04345703,-0.036865234,0.0038452148,0.04296875,-0.016479492,-0.15820312,0.048095703,0.1796875,-0.12060547,-0.0077209473,-0.08642578,0.026855469,-0.030029297,0.111328125,-0.05493164,-0.009460449,-0.12890625,0.012145996,0.076660156,0.05078125,0.044189453,0.0021514893,0.20507812,-0.06640625,0.1015625,0.099121094,-0.025146484,-0.23632812,0.12597656,-0.01928711,0.140625,-0.053955078,-0.038085938,0.09667969,0.12597656,0.29101562,0.09082031,-0.4453125,0.29296875,-0.07421875,0.10205078,0.017456055,-0.06689453,0.0126953125,0.050048828,0.15820312,-0.15136719,0.061767578,-0.078125,0.049072266,-0.018310547,0.0022888184,0.04736328,3.2901764e-05,0.1875,0.026733398,0.12109375,-0.296875,0.052978516,-0.0859375,0.10205078,-0.107910156,0.020996094,0.22167969,-0.030761719,-0.20800781,-0.07519531,0.12011719,0.053955078,-0.041015625,0.14746094,-0.11376953,0.009033203,-0.21777344,0.044189453,-0.13476562,-0.00038146973,-0.052246094,-0.23339844,-0.091796875,-0.05419922,-0.1796875,-0.053466797,-0.031982422,0.034423828,0.060791016,-0.072265625,0.18457031,-0.25976562,0.033447266,-0.06347656,-0.059326172,0.18457031,0.036376953,-0.18652344,-0.032226562,-0.018798828,-0.032714844,0.13476562,0.06225586,0.05493164,0.16992188,0.048583984,-0.11767578,0.0390625,-0.068847656,-0.015625,0.022705078,0.0020141602,0.15136719,-0.06298828,0.026245117,-0.037353516,-0.025878906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.41992188,-0.024536133,-0.22753906,0.12988281,-0.060302734,0.359375,0.18261719,-0.12890625,-0.08251953,0.02722168,0.27734375,-0.057861328,-0.2109375,0.16796875,0.14160156,-0.0012359619,-0.3046875,0.104003906,-0.039794922,0.043701172,-0.23535156,0.004486084,-0.083984375,5.0783157e-05,0.013427734,-0.076171875,0.100097656,-0.09863281,-0.083496094,0.002456665,0.10253906,0.20214844,-0.053955078,0.09765625,-0.07470703,0.18945312,-0.3515625,0.31640625,-0.010253906,-0.1640625,-0.00090789795,-0.18652344,0.018432617,-0.01965332,-0.048339844,-0.22363281,-0.03125,0.119140625,0.0859375,0.27148438,-0.14550781,-0.106933594,-0.30078125,-0.02319336,0.19921875,-0.027954102,0.056396484,-0.1875,-0.019897461,0.026489258,0.09277344,-0.23046875,0.1328125,0.048828125,0.075683594,0.21484375,0.0055236816,0.043945312,-0.26367188,-0.046875,-0.032714844,0.091796875,0.06933594,-0.041259766,-0.059814453,0.21679688,0.0045776367,-0.09375,0.13964844,0.029052734,-0.26953125,-0.037597656,0.037353516,0.06347656,-0.039794922,-0.057861328,-0.09716797,0.083984375,-0.09277344,0.10644531,0.022216797,0.024536133,-0.24121094,0.20703125,0.23339844,-0.15332031,-0.016479492,-0.041503906,0.0018692017,-0.0703125,0.07470703,-0.080566406,-0.020996094,0.017944336,0.08203125,-0.055908203,-0.06225586,0.018066406,0.0018310547,-0.03149414,0.19824219,-0.30273438,-0.014526367,-0.075683594,-0.07373047,0.076660156,-0.016113281,0.11230469,0.024780273,0.06542969,0.024047852,-0.075683594,0.028930664,-0.026000977,0.0079956055,-0.18554688,0.106933594,-0.15820312,-0.009033203,-0.016967773,-0.0047912598,-0.09326172,-0.00491333,-0.026977539,-0.05810547,-0.026489258,0.044433594,-0.10888672,0.22558594,0.083984375,0.010803223,0.01928711,-0.15136719,-0.21289062,-0.084472656,-0.076171875,-0.12109375,0.08984375,0.057861328,-0.17480469,0.06347656,-0.087402344,-0.016479492,0.083496094,-0.04638672,0.21484375,-0.0021820068,0.087402344,0.016479492,-0.114746094,-0.16503906,-0.064453125,0.05419922,0.076660156,0.15234375,-0.020385742,-0.19335938,0.0038452148,-0.014526367,0.12402344,-0.0625,-0.028320312,-0.034423828,0.18945312,0.13085938,0.07714844,0.040527344,0.06640625,-0.01373291,0.068359375,0.16992188,-0.0703125,-0.084472656,0.0035247803,0.072265625,0.052734375,-0.056640625,0.048339844,-0.16308594,0.019165039,0.031982422,-0.16015625,-0.013916016,-0.033203125,-0.08251953,0.09423828,-0.060302734,-0.39453125,-0.10986328,-0.16796875,0.022583008,0.053955078,-0.039794922,0.12695312,-0.044677734,0.0026550293,0.009643555,-0.19238281,0.10595703,0.14160156,-0.07714844,0.024047852,-0.016235352,-0.31054688,-0.11767578,-0.05029297,0.0050354004,0.043945312,0.07421875,0.15039062,-0.12988281,-0.107910156,0.036865234,-0.08935547,-0.04321289,0.0234375,0.050048828,-0.019042969,0.026977539,-0.4296875,0.06933594,-0.047851562,0.0859375,0.083984375,0.003967285,0.14355469,-0.17089844,-0.075683594,0.013122559,-0.2421875,-0.19921875,-0.011108398,0.11816406,0.11767578,-0.07373047,-0.010559082,0.000207901,0.103027344,-0.030151367,0.053222656,-0.019042969,0.0009727478,-0.07080078,0.07324219,0.02355957,-0.076171875,-0.036132812,0.14355469,-0.032958984,0.13574219,-0.008361816,-0.07080078,-0.055419922,0.064453125,-0.0031585693,0.033691406,-0.13769531,0.17285156,-0.001411438,0.023071289,-0.015991211,-0.035888672,0.010070801,0.2109375,0.025878906,0.08886719,0.018066406,0.03466797,0.076660156,0.07910156,-0.020996094,-0.12695312,-0.04663086,0.125,-0.13867188,-0.140625,-0.07910156,-0.14453125,0.008544922,0.20605469,-0.052001953,0.119140625,-0.029907227,-0.16601562,0.2578125,0.013000488,-0.029174805,-0.0115356445,0.057617188,0.013366699,-0.15820312,0.031982422,0.06640625,-0.14648438,-0.029296875,0.06982422,0.010437012,0.011657715,0.020385742,0.22363281,0.060791016,-0.040771484,0.004119873,0.080566406,-0.12792969,0.072753906,-0.18554688,-0.114746094,-0.07373047,-0.009033203,-0.09423828,0.0043945312,-0.123046875,0.046142578,-0.13964844,-0.13867188,0.09082031,-0.09033203,0.110839844,0.052978516,0.078125,0.068359375,-0.09716797,-0.05517578,-0.119140625,-0.18554688,0.05444336,-0.12011719,-0.043945312,0.21972656,-0.078125,0.014953613,0.025024414,0.02758789,0.052734375,-0.12890625,0.15429688,0.15039062,0.079589844,0.11621094,-0.00032806396,-0.060058594,-0.22558594,-0.034179688,0.027954102,0.22167969,-0.17480469,-0.21582031,-0.024536133,0.22070312,0.028930664,-0.09716797,0.032958984,0.12207031,-0.017456055,-0.05908203,0.055419922,-0.18457031,-0.11279297,0.3125,-0.115234375,0.11816406,-0.052734375,-0.12158203,0.092285156,0.15429688,-0.045654297,-0.064941406,-0.05078125,0.076660156,-0.023925781,-0.13964844,0.100097656,-0.0390625,-0.12158203,-0.043945312,0.06542969,-0.02355957,-0.110839844,0.052246094,0.119628906,-0.039794922,-0.036132812,0.016357422,0.14941406,-0.060546875,-0.071777344,-0.0038604736,-0.14550781,-0.21191406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.055664062,0.059570312,-0.0064697266,-0.15234375,0.18945312,-0.071777344,-0.033691406,0.021972656,-0.059570312,-0.08642578,0.06542969,-0.078125,0.092285156,0.080566406,-0.025146484,-0.22265625,-0.14160156,-0.14160156,0.21875,-0.095214844,0.04711914,-0.16308594,-0.20214844,-0.043701172,0.033691406,0.23925781,0.16796875,-0.023071289,0.05517578,-0.06542969,-0.075683594,-0.08691406,0.053955078,0.16113281,-0.12695312,-0.19628906,0.08154297,-0.059570312,0.026000977,0.14941406,0.015014648,0.14160156,-0.140625,0.020996094,-0.075683594,-0.12695312,-0.20410156,0.037353516,-0.100097656,0.21875,-0.034423828,0.123046875,0.13964844,-0.068359375,0.20996094,-0.08544922,0.027954102,0.1328125,-0.046142578,-0.16308594,0.03466797,0.044189453,0.099121094,0.10449219,-0.07763672,0.075683594,-0.17285156,-0.18261719,0.24707031,0.07763672,0.114746094,-0.064941406,-0.064941406,-0.009094238,-0.06298828,-0.02331543,-0.005065918,-0.021362305,0.048583984,-0.045654297,-0.22363281,-0.13964844,-0.05883789,-0.045654297,0.23144531,0.087402344,-0.024902344,-0.119140625,0.08984375,0.11669922,0.087890625,-0.11230469,-0.07763672,-0.068847656,-0.024658203,-0.02746582,0.032226562,0.0014419556,-0.01965332,-0.17578125,0.05078125,-0.15820312,-0.015991211,0.06225586,-0.020629883,0.05126953,0.071777344,-0.036621094,0.0033874512,0.08105469,-0.12451172,-0.10498047,-0.34960938,-0.21582031,-0.14746094,-0.096191406,0.09277344,0.096191406,0.14941406,0.07861328,0.017578125,0.15917969,-0.29101562,0.041259766,0.056640625,0.16894531,-0.12695312,-0.045654297,-0.068359375,-0.021850586,-0.13964844,-0.03881836,0.15332031,-0.1328125,-0.048339844,0.0146484375,0.07470703,0.111328125,-0.23046875,-0.15527344,0.15332031,-0.16210938,-0.14453125,-0.026123047,-0.092285156,0.0036773682,-0.022949219,-0.10253906,0.20214844,0.06738281,0.019897461,-0.08544922,0.025756836,-0.038085938,-0.10595703,-0.25390625,-0.008361816,0.021728516,0.04711914,-0.119628906,-0.16699219,-0.17871094,-0.10986328,-0.1875,-0.026000977,0.22949219,0.0703125,-0.24902344,-0.109375,-0.025390625,0.22070312,-0.23339844,-0.088378906,-0.007873535,0.010437012,-0.13964844,-0.296875,-0.20410156,-0.10644531,-0.16992188,-0.026855469,-0.13769531,-0.104003906,-0.026855469,0.07714844,0.06591797,-0.115722656,0.032226562,-0.067871094,0.014892578,-0.083984375,-0.029785156,-0.10546875,-0.20898438,0.122558594,-0.12109375,0.016601562,0.24316406,0.17285156,0.12109375,-0.036132812,-0.11279297,0.030517578,0.03491211,0.08300781,0.07861328,0.16308594,0.041259766,0.092285156,0.12890625,-0.030273438,0.19042969,0.21875,-0.07910156,-0.024536133,-0.06689453,-0.13964844,-0.052001953,-0.0134887695,-0.05126953,-0.091796875,0.029418945,0.10449219,0.15234375,0.061523438,0.10449219,-0.032226562,-0.078125,0.01965332,0.08300781,-0.026733398,-0.107421875,0.03173828,-0.09716797,-0.057128906,-0.14648438,0.021972656,-0.08691406,0.07861328,-0.09472656,-0.100097656,-0.043945312,-0.1171875,-0.06591797,-0.026367188,-0.023071289,0.05444336,-0.033203125,-0.03540039,-0.16992188,0.20898438,-0.12792969,-0.032958984,0.23242188,0.1796875,0.04711914,0.12792969,0.015380859,-0.033447266,-0.010681152,0.16015625,-0.25195312,0.092285156,-0.09765625,0.032226562,-0.12158203,-0.055908203,0.26367188,-0.00046157837,-0.016723633,-0.0703125,0.03564453,0.110839844,-0.06933594,-0.095703125,-0.099609375,-0.060058594,0.13085938,0.20800781,0.17480469,0.055664062,-0.18945312,0.047851562,0.100097656,-0.05126953,0.001625061,0.087402344,-0.07763672,0.044433594,-0.09863281,0.103027344,0.008117676,0.0072021484,-0.016357422,0.13183594,0.30664062,-0.1171875,-0.21679688,-0.19042969,-0.17382812,-0.1171875,0.078125,0.11621094,-0.033691406,0.14355469,0.068359375,0.10839844,0.06347656,0.24316406,0.017700195,0.20996094,0.12109375,-0.076171875,-0.18945312,0.0032196045,-0.1875,0.15429688,-0.13476562,0.047851562,0.013671875,-0.06933594,0.05517578,0.006500244,-0.059326172,-0.1953125,-0.011230469,-0.20410156,-0.26367188,0.064941406,-0.1171875,-0.19140625,0.053710938,-0.11279297,-0.16210938,-0.059814453,-0.22265625,-0.026855469,0.12792969,-0.15039062,-0.043945312,-0.22753906,0.08251953,-0.00023078918,0.072753906,0.088378906,-0.31445312,0.09375,-0.017333984,-0.14355469,0.05493164,0.010070801,-0.060546875,0.04321289,0.032226562,-0.15527344,-0.15039062,-0.06225586,-0.002960205,0.265625,0.12402344,-0.11669922,-0.18359375,0.11279297,0.09472656,-0.047851562,0.10058594,-0.0011901855,-0.036865234,0.123535156,-0.2109375,-0.012512207,-0.00027656555,-0.079589844,0.0625,0.118652344,-0.0015258789,0.052978516,0.044677734,-0.029052734,-0.017089844,-0.037109375,-0.14941406,0.08251953,-0.07910156,0.28320312,-0.06933594,-0.14648438,-0.18554688,0.060302734,0.041015625,0.09375,0.11767578,0.024780273,-0.0013809204,-0.05053711,-0.045654297,-0.1015625,-0.096191406,0.087890625,0.092285156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.052001953,0.15820312,-0.0015335083,0.049316406,-0.13964844,-0.041503906,0.028198242,0.29296875,-0.091796875,0.18066406,0.13085938,0.13085938,0.16210938,0.26367188,0.22363281,0.020019531,0.020629883,0.09765625,0.100097656,0.038085938,0.017822266,-0.059326172,-0.11425781,0.048583984,0.119628906,-0.026123047,-0.060791016,-0.12792969,-0.06933594,0.08203125,-0.06982422,0.27734375,-0.025756836,0.12890625,-0.040527344,0.014160156,0.21582031,-0.171875,-0.046875,0.0018615723,0.045166016,-0.1015625,0.25585938,-0.14550781,-0.056884766,0.34765625,0.07519531,0.02319336,0.033691406,0.013671875,0.2734375,0.071777344,0.076171875,-0.10888672,0.119628906,0.18066406,-0.14746094,-0.028930664,-0.08496094,-0.012207031,0.10644531,-0.0029449463,0.12695312,-0.099121094,-0.05883789,0.05419922,-0.14355469,0.17578125,0.06933594,0.16503906,-0.00025177002,0.13964844,0.03515625,-0.25,-0.02368164,0.13183594,-0.28125,0.06591797,-0.032958984,0.19238281,0.017089844,-0.26757812,0.057128906,-0.025390625,-0.12158203,-0.080078125,0.30078125,0.16894531,0.060791016,0.20019531,-0.23828125,0.15332031,0.016601562,-0.07421875,0.11621094,0.111816406,0.022460938,0.20800781,0.13378906,-0.044189453,-0.055419922,0.18261719,0.064941406,0.11279297,0.17089844,-0.17578125,-0.0041503906,-0.114746094,0.037841797,-0.19824219,-0.049316406,0.06738281,0.103515625,-0.025756836,0.1640625,0.09082031,-0.17773438,-0.16894531,0.095214844,-0.13085938,-0.049316406,-0.3046875,-0.07470703,-0.15625,0.17089844,-0.18164062,-0.040283203,-0.004486084,-0.078125,0.016845703,-0.04345703,0.01184082,-0.08251953,0.09814453,0.057128906,-0.17578125,-0.021728516,-0.3046875,0.091308594,0.022338867,0.032226562,-0.15332031,-0.03149414,-0.092285156,0.18945312,-0.265625,0.023803711,0.103027344,0.07470703,-0.18847656,-0.0019454956,-0.05102539,0.033447266,-0.23144531,0.11669922,-0.118652344,-0.20410156,0.15722656,-0.07128906,0.16015625,-0.100097656,0.107421875,0.03125,0.045166016,-0.07763672,-0.020751953,0.21679688,-0.15039062,0.06542969,0.1484375,0.17480469,-0.037353516,-0.087890625,-0.0013961792,-0.060058594,0.118652344,-0.032226562,0.123535156,-0.0015182495,0.09472656,-0.24023438,0.15625,0.1171875,0.037109375,-0.0063171387,-0.0073242188,-0.04736328,0.115234375,0.19042969,0.008605957,0.028686523,-0.13867188,-0.17773438,-0.08642578,-0.028564453,0.12597656,-0.15527344,0.19042969,0.07324219,0.01159668,0.08154297,-0.32617188,0.001914978,0.06738281,0.20117188,-0.34179688,-0.27734375,-0.16308594,-0.046875,0.06933594,0.068847656,0.038330078,-0.10888672,0.009216309,-0.0126953125,-0.34765625,-0.076660156,-0.12451172,0.20996094,-0.026245117,0.18652344,-0.04345703,-0.14355469,0.045166016,-0.11425781,0.26367188,0.022216797,0.037353516,-0.08984375,-0.088378906,-0.02734375,0.018066406,-0.012634277,-0.15136719,-0.03540039,-0.041503906,-0.0046691895,-0.12451172,-0.107421875,0.20117188,0.064453125,0.061523438,0.014587402,-0.12597656,0.05126953,-0.041748047,0.09082031,0.0047912598,0.11230469,-0.041259766,0.17480469,0.12792969,-0.040771484,0.19238281,-0.049316406,0.07861328,-0.07373047,-0.104003906,-0.11230469,0.029907227,0.041015625,-0.107421875,0.20996094,0.07861328,-0.052001953,0.0036315918,0.033203125,0.12207031,-0.083984375,0.1875,-0.14257812,-0.020507812,-0.106933594,-0.052246094,0.05810547,0.11669922,-0.028442383,0.061523438,0.016479492,0.04638672,0.14941406,-0.10107422,0.024780273,0.03881836,0.14550781,-0.17675781,0.057617188,-0.036621094,-0.13671875,-0.057128906,-0.08642578,-0.10107422,-0.119140625,0.02746582,0.20117188,-0.064453125,-0.05126953,-0.17089844,0.030517578,0.15625,0.12890625,-0.05810547,-0.006286621,0.025756836,-0.1484375,-0.18945312,-0.08105469,-0.037597656,0.032958984,0.22558594,0.043701172,-0.13574219,-0.01550293,-0.15332031,0.047607422,-0.20214844,-0.16796875,0.006500244,0.015014648,0.018066406,0.03491211,-0.029418945,-0.12988281,-0.06347656,0.040771484,0.0859375,0.08984375,0.052978516,0.12890625,-0.20117188,0.34960938,0.140625,0.011474609,0.23632812,0.020996094,0.104003906,-0.15917969,0.060302734,-0.09863281,-0.06347656,-0.01574707,0.28515625,0.10107422,-0.07763672,-0.0095825195,-0.01373291,0.14550781,-0.07421875,-0.041503906,0.07861328,0.16894531,0.025146484,-0.03173828,0.14355469,-0.10107422,-0.17675781,-0.07128906,-0.12597656,0.015197754,0.063964844,-0.031982422,-0.16601562,0.18652344,0.06933594,0.018920898,0.05493164,-0.060302734,0.08203125,0.10888672,0.025390625,-0.18359375,-0.123046875,0.171875,-0.37890625,-0.048339844,0.040283203,-0.053710938,-0.123046875,-0.24902344,-0.018676758,-0.0035705566,-0.017700195,-0.13964844,0.11230469,0.028564453,-0.095703125,-0.059326172,0.036132812,0.075683594,0.04663086,0.017700195,-0.12011719,0.033447266,-0.1796875,-0.17578125,0.026489258,-0.09423828,0.009033203,0.052246094,-0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.21582031,0.083984375,-0.12988281,-0.06225586,-0.063964844,-0.1484375,0.07080078,0.15917969,0.044677734,0.09716797,-0.104003906,0.15039062,-0.072753906,-0.010375977,-0.09326172,0.014526367,0.0859375,-0.04248047,0.067871094,0.018798828,0.013427734,-0.044189453,0.049072266,0.13183594,-0.115234375,0.19824219,0.05859375,0.083496094,0.057373047,-0.21191406,0.045166016,0.080078125,-0.025512695,0.140625,0.06982422,-0.08691406,-0.06738281,-0.10107422,0.009521484,-0.10839844,0.076171875,0.03173828,0.08105469,-0.076660156,0.038085938,0.020629883,0.038085938,0.18945312,-0.10498047,-0.23339844,0.0019073486,0.052490234,-0.107910156,-0.13476562,-0.075683594,-0.072753906,0.044433594,0.07861328,-0.25,-0.07080078,0.007232666,-0.037597656,-0.056640625,0.171875,0.067871094,-0.079589844,-0.20214844,0.0011138916,-0.064453125,0.07763672,-0.23046875,-0.19140625,-0.08984375,-0.140625,-0.10595703,0.002609253,-0.099121094,0.09326172,-0.18554688,0.18164062,0.19824219,0.038085938,-0.042236328,0.061523438,-0.23925781,-0.15234375,0.09033203,-0.076660156,0.10595703,0.103515625,0.21386719,-0.022949219,-0.076171875,-0.10986328,-0.04345703,-0.091796875,-0.064941406,-0.011352539,-0.22167969,0.017333984,0.008544922,-0.015075684,0.12158203,0.047607422,0.10205078,-0.017944336,0.41601562,-0.15332031,0.25195312,-0.29492188,-0.10986328,-0.018676758,-0.01550293,-0.075683594,-0.04248047,-0.03173828,0.023071289,-0.017333984,-0.03930664,0.22167969,-0.11621094,0.010192871,-0.091308594,-0.19433594,0.25195312,-0.052001953,-0.11230469,-0.09863281,0.02331543,-0.19921875,-0.011291504,0.111328125,-0.029418945,-0.19824219,0.12695312,0.1484375,0.00491333,-0.122558594,-0.019897461,-0.048095703,0.17480469,0.099121094,-0.025146484,0.053955078,0.021484375,-0.32421875,-0.12597656,0.071777344,0.19042969,0.10595703,0.09423828,0.06933594,-0.060791016,-0.05883789,-0.08691406,-0.08886719,-0.0014343262,-0.08154297,-0.16796875,-0.01977539,0.003112793,-0.071777344,-0.12451172,0.010375977,-0.09375,0.04638672,0.3359375,0.033447266,-0.028930664,0.13867188,0.1484375,-8.9645386e-05,0.009094238,0.05444336,0.022460938,-0.01928711,-0.033691406,-0.19726562,-0.10449219,0.072265625,-0.02331543,0.17285156,0.041015625,0.048583984,0.23632812,-0.052490234,-0.25585938,-0.08203125,0.14746094,0.045898438,-0.18945312,-0.07910156,0.123535156,-0.30273438,-0.008056641,-0.052001953,-0.053710938,-0.052734375,-0.28320312,0.09863281,0.021606445,-0.10546875,-0.0043945312,-0.14746094,0.21484375,0.01928711,-0.12158203,0.100097656,0.019165039,-0.29882812,-0.048583984,-0.026611328,-0.10546875,-0.009460449,-0.030151367,0.10986328,-0.15039062,-0.095703125,0.13867188,0.045898438,0.21679688,-0.25585938,-0.28320312,-0.037353516,-0.0069885254,-0.22460938,-0.08496094,0.061035156,-0.14550781,-0.23242188,0.044677734,0.106933594,-0.12158203,-0.055419922,-0.08886719,-0.24902344,0.11816406,0.115234375,-0.06347656,-0.115234375,0.004211426,0.014892578,0.08300781,-0.083984375,0.044921875,0.12695312,0.1953125,-0.12158203,-0.12011719,0.11376953,-0.15527344,0.103027344,-0.27929688,-0.19335938,0.063964844,-0.061035156,0.021362305,-0.15820312,0.020629883,-0.044189453,-0.104003906,-0.019897461,0.04736328,0.0014572144,-0.0046081543,0.008850098,-0.20117188,-0.14453125,0.039794922,-0.39257812,-0.025390625,-0.06347656,0.027709961,-0.046142578,0.004760742,-0.115234375,-0.11328125,-0.09423828,0.075683594,0.15820312,-0.022949219,-0.171875,-0.106933594,0.107421875,-0.048583984,-0.08300781,-0.15820312,0.119628906,-0.030395508,-0.00970459,0.030883789,0.17285156,0.06542969,-0.13085938,-0.08105469,0.15527344,-0.09033203,-0.087402344,0.02368164,0.00049209595,0.13183594,0.005279541,-0.13964844,-0.09716797,0.14160156,-0.03564453,0.100097656,0.10253906,-0.19140625,-0.31054688,0.18261719,0.067871094,-0.1640625,-0.053955078,-0.37695312,-0.099121094,0.16308594,0.075683594,-0.024780273,-0.042236328,-0.17871094,0.07470703,0.032470703,-0.0038604736,-0.045166016,0.072753906,0.040039062,-0.055419922,0.11230469,-0.004425049,0.21289062,-0.119140625,-0.5859375,-0.01159668,0.16503906,0.055664062,-0.20605469,0.0859375,0.055908203,-0.051513672,0.00061035156,0.080566406,0.37304688,-0.18359375,0.036132812,0.12451172,-0.1640625,0.033935547,-0.23828125,-0.119628906,0.08154297,-0.029663086,-0.00592041,-0.03540039,0.015380859,0.035888672,-0.0079956055,-0.18359375,0.099609375,0.0036773682,-0.119140625,-0.041992188,0.16601562,-0.021728516,-0.123046875,0.08300781,0.05834961,-0.016479492,-0.015625,-0.234375,0.12792969,0.06738281,-0.035888672,-0.32617188,-0.171875,0.10839844,-0.0625,0.072265625,0.061279297,0.16015625,-0.02734375,0.067871094,0.07324219,-0.15429688,0.28515625,-0.29296875,0.0859375,0.096191406,-0.076660156,-0.34375,-0.029296875,-0.040771484,-0.1640625,0.22070312,-0.14257812,0.15136719,-0.038330078,-0.16894531,0.04321289,-0.16113281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.06738281,0.09082031,-0.03881836,-0.15625,0.014221191,-0.14453125,-0.20507812,-0.008178711,0.05053711,-0.055664062,-0.033203125,0.13769531,-0.00340271,-0.2109375,0.050048828,0.13574219,-0.07324219,0.16113281,-0.19433594,-0.037109375,0.07861328,0.03125,-0.095214844,-0.079589844,0.035888672,-0.06933594,0.020263672,0.055908203,0.13183594,-0.023925781,-0.032714844,0.20214844,-0.05810547,-0.07763672,-0.03173828,-0.19433594,-0.06347656,-0.16992188,-0.004058838,-0.091796875,0.06738281,-0.021240234,-0.018432617,0.018310547,0.068359375,-0.2265625,-0.083984375,0.26367188,-0.016113281,0.14160156,-0.039794922,0.010192871,0.12597656,0.028076172,0.017211914,-0.06933594,0.063964844,-0.029541016,-0.17382812,0.022460938,0.12060547,-0.00982666,-0.083984375,0.107421875,-0.19921875,-0.05859375,-0.03466797,-0.07714844,0.16699219,-0.17089844,-0.068359375,-0.103515625,0.017700195,-0.0126953125,-0.092285156,0.010314941,-0.032470703,-0.119140625,-0.038330078,-0.0075683594,-0.048583984,0.36523438,0.07714844,-0.05859375,-0.03125,0.041992188,0.032958984,-0.02709961,0.013122559,-0.035888672,0.057128906,0.19140625,0.014038086,-0.060302734,0.10595703,0.003692627,-0.12207031,0.0390625,-0.048339844,-0.07910156,-0.037841797,0.021606445,-0.004119873,-0.29492188,0.06542969,0.10498047,-0.16796875,0.048095703,0.13867188,-0.22460938,0.0010223389,0.11425781,0.140625,0.14550781,0.0087890625,-0.12695312,0.12011719,-0.15234375,-0.06982422,-0.18945312,0.040771484,0.107910156,-0.106933594,-0.006652832,0.15722656,-0.022949219,-0.0048828125,0.13769531,-0.100097656,-0.107421875,0.014770508,0.09765625,0.1171875,0.029541016,-0.083984375,0.0126953125,-0.021118164,0.106933594,-0.03540039,0.052001953,0.0390625,-0.18652344,0.06982422,0.09375,-0.029663086,0.12451172,0.07470703,0.009521484,0.01965332,-0.068847656,-0.19433594,0.02368164,0.022949219,0.06738281,-0.03466797,0.06982422,0.040283203,-0.18457031,-0.09033203,0.09082031,0.16503906,0.1484375,0.07373047,0.111328125,-0.022094727,0.012268066,0.05810547,0.08691406,-0.030151367,0.17382812,0.13769531,-0.10595703,0.04321289,-0.029663086,0.061523438,-0.1171875,0.061523438,-0.08300781,0.16601562,-0.10888672,0.110839844,-0.07324219,0.006439209,-0.01184082,0.048828125,0.08154297,-0.067871094,-0.03564453,-0.03173828,0.03125,-0.067871094,0.13671875,0.0040893555,-0.07324219,0.033203125,-0.22070312,-0.048339844,-0.06689453,0.07910156,-0.21875,-0.034179688,0.18066406,0.044433594,0.051757812,-0.10644531,-0.17578125,0.030639648,0.171875,-0.14257812,0.06298828,-0.071777344,-0.110839844,0.049804688,-0.06640625,0.13867188,-0.17773438,-0.1171875,0.16308594,0.028076172,-0.10058594,0.055419922,0.13085938,0.0061035156,0.14550781,0.012451172,0.13867188,0.04663086,-0.123535156,-0.042236328,0.01977539,-0.39453125,-0.13085938,0.053955078,0.13671875,0.04272461,0.091308594,0.026367188,-0.045410156,0.17480469,-0.053466797,0.012084961,-0.10595703,-0.017333984,0.05517578,-0.064941406,0.0010910034,-0.11816406,-0.025146484,-0.083496094,0.122558594,0.23144531,-0.18847656,0.03540039,-0.080078125,0.10644531,0.0546875,0.07470703,0.09472656,-0.12158203,-0.21582031,-0.013916016,-0.045654297,0.056396484,-0.22558594,-0.091308594,0.10205078,0.064453125,-0.26757812,-0.1640625,0.0053710938,-0.016235352,-0.013305664,0.15625,0.04711914,-0.053222656,-0.34765625,-0.080078125,0.3203125,0.056640625,-0.15722656,0.05102539,0.14257812,-0.1171875,-0.18847656,0.049072266,-0.095703125,0.03540039,0.10986328,0.0076293945,-0.021118164,-0.034423828,-0.16113281,-0.059570312,0.012634277,0.032958984,-0.15039062,0.0077209473,-0.018188477,0.08203125,0.0076293945,0.045410156,0.00025177002,-0.11669922,0.032470703,-0.041748047,0.036865234,-0.080566406,-0.09667969,-0.265625,-0.08642578,-0.05493164,-0.0546875,0.063964844,0.13183594,-0.019165039,0.16503906,-0.0025482178,-0.10644531,-0.06982422,0.07421875,0.079589844,0.0027008057,-0.18359375,0.12597656,-0.0625,-0.10644531,-0.05444336,0.020874023,-0.012268066,-0.09277344,0.017333984,-0.20019531,-0.011230469,0.08642578,-0.071777344,0.119140625,0.008300781,0.026245117,-0.14746094,-0.032226562,-0.0060424805,-0.044921875,0.041748047,0.033935547,-0.05126953,-0.09472656,0.01940918,-0.38671875,-0.0625,0.091308594,-0.2578125,0.016479492,0.08203125,0.13769531,-0.08984375,-0.18945312,-0.006866455,-0.037841797,-0.1796875,-0.24414062,-0.091796875,-0.012573242,0.068359375,-0.13378906,-0.125,-0.00075149536,-0.103027344,0.045898438,0.16113281,-0.0703125,-0.052978516,-0.20800781,0.059570312,0.05908203,-0.04248047,-0.27539062,-0.042236328,0.01965332,-0.012329102,0.095214844,-0.057861328,-0.15527344,0.006134033,0.08642578,0.359375,0.048828125,-0.011352539,-0.15332031,-0.20800781,0.03149414,-0.22070312,-0.18554688,-0.10888672,-0.11230469,0.14648438,0.23339844,-0.26171875,-0.119140625,0.029663086,0.0008735657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.036865234,-0.0390625,0.049316406,0.04663086,-0.14453125,0.0040893555,-0.16210938,0.16503906,-0.05444336,-0.03491211,-0.071777344,0.052001953,-0.044921875,0.053222656,-0.027709961,0.05517578,-0.13867188,-0.19042969,-0.096191406,-0.2109375,0.091308594,-0.06689453,-0.088378906,-0.005004883,0.056640625,0.018310547,-0.06738281,-0.09033203,-0.11621094,-0.052978516,0.0026855469,-0.083496094,-0.07373047,-0.1484375,-0.03540039,-0.051757812,-0.07128906,-0.016723633,-0.048583984,-0.08203125,0.063964844,-0.01550293,0.13183594,-0.064453125,-0.09326172,-0.061279297,-0.087402344,-0.008361816,0.07373047,0.046875,-0.10839844,0.02746582,-0.07470703,-0.23339844,0.009643555,-0.096191406,0.080566406,0.03857422,0.0041503906,-0.12109375,-0.03564453,-0.10058594,0.12695312,-0.15917969,0.095703125,-0.061767578,-0.07470703,-0.12109375,-0.06689453,0.08154297,-0.027954102,-0.025268555,0.05908203,0.052734375,0.06298828,0.09033203,-0.15332031,-0.010803223,0.099121094,-0.17675781,-0.078125,-0.009460449,-0.17382812,0.041015625,-0.088378906,0.048095703,0.1328125,0.115722656,0.028320312,0.03173828,-0.12988281,0.118652344,-0.05102539,-0.053222656,-0.048828125,-0.13671875,0.079589844,0.18359375,0.018920898,-0.099609375,-0.028930664,0.034179688,-0.099609375,-0.1328125,0.049072266,0.099121094,0.06933594,-0.017944336,0.0390625,-0.111328125,0.16601562,-0.119628906,-0.13183594,0.171875,-0.025390625,-0.203125,-0.15429688,-0.103027344,-0.09814453,-0.034179688,-0.038085938,0.09863281,-0.061767578,0.071777344,0.10253906,0.08984375,0.028198242,-0.076660156,0.026367188,-0.010620117,-0.009338379,-0.18359375,-0.05029297,-0.06347656,-0.05444336,0.12695312,-0.061279297,0.15039062,0.100097656,0.07714844,0.002822876,0.092285156,-0.13378906,-0.040527344,-0.20898438,-0.27734375,0.04711914,-0.0019302368,-0.20703125,-0.025878906,-0.04638672,-0.07861328,-0.095703125,-0.12597656,0.0033569336,-0.15332031,0.06225586,-0.1640625,-0.035888672,-0.037597656,0.045410156,-0.061767578,-0.13183594,0.01184082,-0.103027344,0.09033203,0.06933594,0.025512695,-0.095703125,0.03100586,0.107910156,-0.06298828,0.016723633,0.028320312,-0.053955078,-0.18652344,-0.24804688,0.051513672,0.040039062,0.05029297,-0.2109375,0.08251953,0.115722656,-0.0015716553,0.0012512207,-0.076660156,0.038085938,-0.10253906,-0.03564453,-0.13476562,-0.05493164,-0.23046875,-0.20800781,0.21777344,-0.022460938,-0.056640625,-0.15820312,0.043701172,0.06225586,-0.009277344,0.026855469,-0.06640625,-0.14941406,0.018310547,-0.15332031,0.08935547,-0.03112793,0.014953613,-0.29101562,0.06542969,-0.009521484,-0.0859375,-0.041992188,0.20214844,-0.036132812,-0.045654297,0.06201172,-0.063964844,-0.033691406,-0.032958984,-0.055908203,-0.045410156,-0.088378906,-0.045898438,-0.12451172,-0.21875,0.008666992,-0.16113281,-0.15234375,0.01361084,0.08105469,-0.0032043457,0.08300781,-0.11816406,-0.115722656,0.04736328,-0.20410156,-0.125,-0.14160156,-0.08251953,-0.041503906,-0.072753906,-0.25976562,-0.0073242188,-0.037353516,0.119628906,0.032226562,-0.06982422,-0.041992188,0.0034637451,-0.030395508,0.23046875,0.059814453,-0.09033203,0.0625,-0.09667969,-0.08300781,-0.014465332,-0.17871094,-0.029418945,-0.055664062,-0.031982422,0.19628906,-0.07910156,-0.051513672,-0.16210938,-0.023071289,-0.038085938,0.034423828,-0.118652344,-0.11230469,-0.18457031,0.012756348,-0.14550781,0.000957489,0.13574219,0.06933594,0.19628906,-0.0020751953,-0.15625,-0.079589844,-0.047607422,0.076660156,-0.13867188,-0.04345703,-0.07910156,0.018066406,-0.14355469,-0.33007812,-0.03149414,0.16699219,-0.0234375,0.02331543,0.31640625,0.092285156,-0.15820312,0.00982666,0.033935547,0.11425781,0.15917969,0.033935547,0.0625,0.005065918,0.037353516,0.034423828,0.13964844,0.0003566742,0.017822266,0.11669922,0.056152344,-0.123535156,0.10205078,-0.06225586,0.11328125,0.0234375,-0.048095703,0.048095703,-0.09033203,0.076660156,0.11816406,-0.08154297,-0.15527344,0.029541016,-0.23730469,0.12695312,-0.07421875,-0.22265625,-0.16503906,-0.033203125,-0.061767578,-0.1796875,-0.013671875,0.03564453,-0.014709473,-0.063964844,-0.19824219,-0.061523438,-0.1328125,-0.053710938,-0.115722656,-0.067871094,0.03173828,-0.104003906,0.050048828,-0.071777344,-0.12451172,-0.07421875,-0.09033203,0.063964844,0.11816406,0.041992188,-0.16894531,0.0625,0.061279297,0.08496094,0.09277344,-0.111816406,0.043701172,0.17675781,-0.20507812,0.032714844,-0.107910156,-0.011474609,0.26171875,0.033691406,0.07470703,-0.21191406,-0.10058594,0.18945312,0.03955078,0.017211914,-0.005645752,0.07421875,0.019897461,-0.18066406,0.09472656,-0.04248047,-0.015319824,0.051513672,0.11621094,0.018676758,-0.046875,0.04711914,0.02722168,-0.10058594,-0.140625,-0.047607422,-0.07519531,0.18164062,-0.041992188,-0.02734375,0.060546875,-0.009460449,-0.013061523,0.11767578,0.11669922,-0.040527344,0.06738281,0.13378906,-0.052490234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.041992188,0.053955078,0.057128906,-0.14550781,0.014465332,0.18457031,-0.18261719,0.0033569336,-0.032958984,-0.21582031,0.09814453,0.23828125,0.05517578,0.024047852,-0.009521484,-0.27734375,-0.08642578,0.07519531,0.0071411133,-0.06225586,0.122558594,0.10107422,-0.06298828,0.30859375,0.091308594,-0.21777344,0.018188477,0.18164062,0.096191406,-0.015075684,-0.024047852,0.08984375,0.06542969,-0.12207031,0.18652344,0.25195312,0.16113281,-0.12109375,0.14941406,0.15625,0.040039062,-0.06933594,0.12011719,-0.010498047,0.0390625,0.095214844,-0.096191406,0.018554688,-0.13183594,-0.15917969,0.021118164,0.09375,0.04736328,0.009033203,0.16210938,-0.13085938,-0.12402344,-0.1875,0.1796875,-0.07128906,-0.03881836,0.1015625,-0.040283203,-0.10839844,-0.091308594,-0.029296875,-0.030395508,0.084472656,-0.09277344,0.09472656,0.20703125,-0.06298828,0.03955078,-0.13574219,0.012207031,-0.19042969,0.103515625,0.057617188,-0.119140625,-0.053710938,-0.022338867,0.19824219,0.10107422,-0.016723633,0.006225586,-0.0036010742,0.015991211,0.057861328,0.09082031,-0.27539062,0.16308594,0.19628906,0.08300781,0.11328125,0.02355957,-0.11767578,0.13183594,0.15722656,0.057617188,0.123535156,-0.078125,0.052001953,0.100097656,0.203125,-0.08203125,0.087402344,0.107421875,-0.19335938,0.045898438,0.053955078,0.11279297,0.033203125,-0.19140625,-0.08886719,-0.064453125,-0.051513672,0.044677734,-0.21972656,-0.07128906,0.0625,-0.036865234,-0.045166016,0.041259766,-0.17871094,-0.107421875,0.10888672,0.050048828,-0.16503906,0.16992188,-0.020751953,0.029052734,0.064453125,0.020385742,-0.083496094,0.00078582764,-0.18359375,0.018554688,-0.092285156,0.01184082,-0.068847656,0.088378906,-0.1328125,-0.0054016113,-0.12451172,0.07373047,0.0070495605,0.012939453,0.14746094,-0.16503906,0.042236328,-0.037353516,-0.091796875,-0.0546875,0.03125,-0.0053100586,-0.12158203,0.040039062,-0.008972168,0.029418945,-0.014892578,0.106933594,0.29296875,-0.015991211,0.040771484,0.1875,0.05908203,-0.1328125,0.02734375,-0.036865234,-0.16015625,-0.056152344,0.15234375,-0.20117188,-0.03466797,0.08642578,-0.047851562,0.171875,0.06933594,0.011352539,0.0053710938,0.11425781,-0.053466797,0.032714844,-0.007171631,-0.03466797,0.04321289,0.044189453,-0.02746582,-0.12890625,0.12597656,-0.083984375,0.095703125,-0.009155273,-0.078125,0.015136719,-0.009277344,0.03466797,0.012817383,0.08984375,0.104003906,0.019897461,-0.08154297,-0.04638672,0.026367188,0.04345703,-0.119628906,0.02722168,0.05883789,-0.036621094,-0.030029297,-0.021972656,-0.055419922,-0.16699219,-0.052490234,-0.013183594,0.02734375,0.092285156,-0.026245117,0.10498047,-0.15332031,0.022827148,-0.114746094,0.0006790161,-0.0859375,0.044189453,0.17675781,-0.016845703,0.06298828,-0.123046875,-0.010192871,-0.07910156,-0.12451172,-0.04272461,-0.09472656,0.09277344,0.045410156,0.049072266,-0.033691406,0.07910156,-0.19628906,0.04663086,0.32421875,-0.0009689331,0.036132812,0.030517578,-0.09814453,-0.19433594,0.09716797,0.103515625,-0.015991211,0.13574219,0.08642578,-0.0625,0.020996094,0.15429688,-0.06225586,0.08935547,0.119140625,-0.031982422,-0.034423828,0.03491211,0.051513672,0.049560547,0.037109375,-0.15820312,0.045410156,0.072265625,-0.063964844,-0.018066406,-0.010925293,0.12890625,0.080078125,0.12451172,0.020874023,-0.08105469,0.03564453,0.30078125,0.27734375,-0.06982422,-0.13476562,0.064941406,0.03857422,0.010437012,-0.11816406,0.0034179688,-0.18847656,-0.03930664,-0.28515625,0.09765625,0.114746094,-0.26367188,-0.06640625,-0.05444336,0.20214844,-0.0016784668,-0.234375,0.11035156,-0.016601562,0.06982422,-0.076171875,-0.024780273,-0.07861328,-0.06298828,-0.359375,0.056640625,-0.12109375,0.018920898,-0.12792969,-0.20898438,-0.006652832,0.29296875,-0.5390625,0.09326172,0.018676758,0.20117188,-0.27148438,0.0625,-0.25,-0.06591797,-0.31835938,0.10449219,0.14355469,-0.02355957,0.068847656,-0.13574219,0.091308594,-0.040771484,-0.014282227,0.0119018555,-0.018066406,-0.071777344,0.013549805,-0.16992188,0.15527344,0.10205078,0.16699219,0.12597656,0.1015625,0.09716797,-0.026367188,0.047851562,-0.088378906,0.119140625,0.13183594,0.032470703,-0.020141602,-0.036865234,-0.15136719,-0.15527344,0.010131836,-0.037841797,0.16992188,0.12890625,-0.07470703,-0.050048828,0.119628906,-0.07763672,-0.033691406,0.060058594,0.025390625,0.047607422,-0.087402344,0.21777344,-0.30664062,0.029418945,0.19921875,0.16601562,0.10839844,0.049804688,0.078125,0.05444336,0.051513672,-0.010925293,0.096191406,-0.13085938,0.00010538101,0.0071105957,-0.12988281,0.16210938,-0.12988281,0.013366699,-0.052001953,-0.0076904297,-0.13769531,-0.09375,-0.22851562,0.026367188,-0.01574707,-0.13964844,0.17773438,-0.041992188,-0.30859375,0.096191406,0.040039062,-0.04296875,-0.23144531,-0.12695312,-0.25976562,-0.07470703,-0.20507812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.19238281,0.019897461,-0.16601562,-0.19335938,-0.18554688,-0.20507812,0.022827148,0.057617188,0.07470703,0.040527344,-0.038330078,0.053466797,0.19140625,0.09033203,0.08886719,-0.21289062,-0.11279297,-0.08984375,-0.09033203,-0.103027344,0.12207031,-0.17871094,-0.09863281,0.029663086,-0.047607422,0.026855469,-0.13183594,-0.037109375,-0.040283203,-0.13378906,0.02355957,-0.0025024414,-0.008544922,-0.22460938,-0.036132812,0.07763672,0.011474609,0.014282227,0.13671875,0.25,0.0703125,-0.039794922,-0.12988281,-0.095703125,-0.079589844,-0.015625,-0.061279297,0.11230469,0.05834961,-0.049316406,0.02758789,0.08642578,0.1796875,-0.063964844,-0.12158203,-0.03857422,0.08935547,0.115234375,-0.25585938,-0.03540039,-0.084472656,-0.044433594,-0.060302734,0.11279297,0.0859375,-0.13769531,-0.11328125,-0.25585938,-0.03955078,-0.23632812,0.01159668,0.037109375,0.049804688,-0.10595703,-0.048095703,-0.012145996,0.03515625,-0.15820312,-0.049804688,-0.044189453,0.15527344,0.011413574,0.07128906,0.099121094,0.046875,-0.0154418945,0.083984375,0.087402344,-0.08203125,0.014343262,0.001121521,0.07714844,0.07861328,-0.013671875,0.045654297,-0.36523438,0.020263672,0.21191406,0.10449219,0.076171875,-0.06347656,-0.06933594,0.22167969,-0.08691406,-0.032226562,-0.033691406,0.03930664,0.07714844,0.08203125,-0.17578125,-0.11816406,-0.13183594,0.11035156,0.1015625,0.010864258,0.13183594,-0.09375,-0.07470703,-0.18457031,0.095214844,0.041015625,0.045166016,-0.1328125,0.084472656,0.06982422,0.0234375,-0.07421875,-0.12402344,-0.10107422,0.016479492,0.21679688,0.064941406,-0.034179688,-0.057861328,0.08496094,0.09082031,0.027832031,0.011352539,-0.047607422,0.045898438,0.018676758,-0.23730469,0.04345703,0.1640625,-0.05102539,0.06298828,0.047607422,0.019897461,-0.05859375,-0.12109375,-0.17480469,-0.091308594,0.02746582,0.007537842,0.107421875,0.032226562,-0.025756836,-0.15722656,-0.0057373047,0.123046875,0.114746094,0.006164551,-0.021118164,-0.05908203,-0.018676758,0.05078125,0.14453125,0.095703125,0.083984375,0.00970459,-0.032958984,0.06738281,0.10888672,-0.007171631,-0.043701172,-0.2890625,0.04663086,-0.040527344,-0.13183594,0.012939453,-0.0004825592,0.004425049,-0.010620117,0.014404297,0.031982422,0.07324219,-0.19335938,-0.08496094,0.016113281,-0.13378906,-0.012023926,0.03881836,-0.23632812,0.21777344,0.041503906,0.024658203,-0.059326172,0.15039062,-0.09472656,0.043701172,0.06298828,-0.009765625,0.03930664,0.040039062,-0.032714844,0.033447266,0.091796875,0.13574219,-0.2734375,-0.25390625,-0.14550781,-0.030151367,0.096191406,-0.20605469,0.21191406,-0.008544922,-0.091308594,0.014038086,-0.13867188,0.020263672,-0.096191406,0.24511719,-0.087890625,0.13574219,0.12011719,-0.21289062,-0.014709473,-0.032226562,-0.092285156,-0.14257812,-0.072265625,-0.055908203,-0.13476562,0.114746094,0.15527344,-0.13671875,-0.07519531,0.036865234,0.009887695,0.08203125,0.00970459,-0.095214844,-0.039794922,-0.07763672,-0.076171875,0.009460449,-0.024658203,-0.052246094,0.11816406,0.21777344,-0.0138549805,-0.14941406,0.025390625,0.05444336,0.032714844,-0.06591797,-0.140625,-0.3359375,-0.09277344,-0.15820312,0.08642578,0.053955078,-0.16894531,-0.111328125,-0.024047852,0.06542969,0.07373047,-0.3828125,-0.08642578,0.1484375,-0.075683594,0.033203125,-0.28320312,-0.14941406,-0.1328125,-0.10205078,0.060546875,0.064453125,0.10888672,-0.4453125,0.107910156,0.011474609,-0.14648438,-0.421875,0.06347656,-0.041503906,0.068359375,0.11425781,0.0099487305,-0.004852295,-0.24804688,-0.19628906,-0.15039062,0.13378906,0.051513672,-0.22949219,-0.09472656,0.087402344,-0.032226562,-0.3515625,0.024414062,-0.03881836,0.011657715,-0.011352539,0.021728516,0.18945312,-0.08984375,-0.16210938,-0.044921875,-0.12597656,-0.19824219,-0.12988281,0.064453125,0.104003906,0.009643555,-0.068359375,-0.11328125,-0.0134887695,0.068359375,0.006866455,0.17675781,0.15722656,-0.13183594,0.039794922,0.08105469,0.04711914,0.04321289,0.025634766,0.104003906,0.03149414,0.049804688,-0.3671875,-0.0011749268,0.051513672,-0.04296875,-0.05444336,0.056884766,0.103027344,-0.18457031,-0.16210938,0.096191406,0.11767578,-0.0859375,0.21386719,0.060058594,-0.0546875,-0.1328125,-0.45117188,-0.048828125,0.09814453,-0.007873535,-0.14257812,0.17578125,-0.017211914,-0.030273438,-0.14550781,-0.041748047,-0.008239746,-0.09814453,0.09716797,-0.03466797,-0.11767578,0.024291992,-0.44335938,-0.076660156,-0.118652344,0.08203125,0.012451172,0.0003414154,-0.27929688,-0.028930664,-0.13085938,-0.11376953,0.03930664,-0.083496094,-0.011047363,0.08300781,-0.09472656,-0.060546875,-0.15820312,0.025024414,0.17675781,0.03466797,0.005065918,0.064453125,0.13476562,0.10205078,-0.06982422,-0.28710938,-0.04711914,-0.11035156,0.14257812,-0.1328125,0.11279297,0.046142578,0.114746094,-0.095703125,0.107421875,-0.068847656,0.17285156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16210938,0.099609375,0.21972656,-0.041503906,0.049316406,-0.03173828,0.022338867,0.0625,-0.05883789,0.2578125,0.03466797,-0.084472656,0.15332031,-0.052001953,-0.15820312,-0.037353516,-0.17675781,0.032714844,0.026977539,0.18066406,0.030395508,0.18847656,-0.0075683594,-0.14355469,0.048828125,0.20898438,-0.11767578,0.122558594,0.041015625,0.14453125,-0.10058594,-0.11328125,0.05029297,-0.06933594,-0.029785156,0.0703125,0.09667969,-0.09863281,-0.080078125,-0.030639648,0.040771484,-0.06933594,-0.080078125,-0.06982422,0.034179688,-0.019165039,-0.017700195,-0.10546875,0.11279297,-0.25585938,-0.0625,-0.024047852,-0.16503906,-0.16113281,0.16894531,0.051757812,0.072753906,-0.13476562,-0.0007171631,-0.26953125,0.017578125,-0.025512695,0.010437012,-0.084472656,0.03491211,-0.06738281,-0.18359375,0.09326172,-0.084472656,0.006500244,-0.16601562,0.12988281,-0.012023926,-0.20410156,0.071777344,-0.19726562,-0.017822266,0.22167969,0.068359375,0.028198242,-0.080566406,-0.18554688,0.11621094,0.099609375,0.038330078,0.063964844,0.06933594,0.114746094,0.02746582,0.13964844,0.17480469,-0.036132812,0.096191406,-0.07080078,-0.10058594,-0.2890625,-0.22949219,-0.38476562,-0.0010299683,0.19628906,-0.009094238,-0.033203125,-0.011291504,-0.056640625,-0.056152344,0.06225586,0.115722656,-0.07470703,-0.03540039,0.15917969,-0.048095703,-0.16796875,0.0026550293,-0.24804688,0.0041503906,0.16992188,-0.08251953,-0.084472656,0.10986328,-0.08642578,0.05859375,-0.13964844,-0.11376953,-0.076171875,-0.018554688,-0.04711914,0.05908203,-0.19726562,-0.114746094,-0.34960938,-0.07519531,0.18847656,-0.11816406,0.15527344,0.001663208,-0.007659912,-0.12988281,-0.19726562,-0.110839844,-0.15625,0.09326172,-0.11230469,-0.064453125,0.09814453,-0.032714844,-0.07519531,-0.18457031,-0.13183594,-0.18359375,0.23925781,0.011657715,-0.032714844,0.0625,-0.10595703,-0.13476562,-0.06347656,0.052490234,0.10498047,0.0049438477,0.15234375,-0.08203125,0.04711914,0.07519531,-0.10253906,0.18847656,0.16113281,0.072265625,-0.034179688,0.049560547,0.010314941,-0.011352539,-0.125,0.09375,-0.21679688,-0.0859375,-0.3828125,0.024291992,-0.17578125,-0.080566406,0.057617188,-0.02331543,0.057617188,-0.13378906,-0.044189453,-0.045898438,0.0078125,0.119628906,-0.15527344,-0.028198242,0.044677734,-0.14746094,-0.12695312,-0.08203125,-0.24414062,0.00089263916,0.18066406,-0.111328125,-0.09423828,0.13574219,-0.055664062,-0.028442383,-0.10644531,-0.11816406,-0.091796875,0.044677734,0.100097656,-0.24316406,-0.16503906,0.0005760193,-0.017578125,-0.05102539,0.21484375,-0.034179688,0.12011719,0.04321289,-0.088378906,-0.068847656,-0.103027344,-0.067871094,-0.39257812,0.033447266,-0.19433594,-0.27734375,-0.009033203,-0.17480469,0.04736328,-0.02331543,-0.12890625,-0.18554688,-0.08935547,0.050048828,0.055908203,-0.125,-0.015136719,0.14355469,-0.24902344,-0.008605957,-0.19042969,0.14160156,-0.025756836,-0.29101562,0.0546875,0.03100586,-0.021850586,0.08886719,0.114746094,0.16015625,-0.0018386841,-0.103027344,0.064941406,0.012451172,0.08105469,0.037353516,0.00793457,-0.11230469,-0.16015625,-0.026123047,0.07421875,-0.08984375,0.02368164,0.21972656,-0.03881836,0.109375,-0.07861328,0.05102539,0.072753906,0.12158203,0.07763672,-0.016601562,0.032714844,-0.047851562,-0.076660156,-0.03881836,-0.0059814453,0.057128906,0.059814453,0.061767578,-0.044921875,0.026123047,0.111816406,-0.0049743652,0.079589844,0.0099487305,-0.21484375,0.059326172,0.0014266968,0.16210938,-0.1796875,0.18066406,0.15527344,-0.0018463135,-0.003768921,-0.22753906,-0.084472656,0.10839844,-0.084472656,0.014709473,-0.026367188,0.1796875,-0.08886719,0.052246094,-0.20703125,0.083496094,0.033691406,-0.1640625,0.022583008,0.123046875,0.030517578,-0.0703125,-0.08935547,0.21679688,0.016601562,-0.018554688,0.010314941,0.17773438,0.096191406,-0.068847656,-0.12109375,-0.048339844,0.19726562,-0.041259766,0.09765625,0.035888672,-0.0138549805,-0.063964844,0.0703125,-0.17382812,0.119628906,0.0038757324,0.067871094,-0.051757812,0.13183594,-0.026000977,-0.091796875,0.080078125,0.021728516,-0.087402344,0.018432617,0.1640625,0.0030822754,0.044921875,0.23046875,0.028076172,0.06689453,0.06591797,0.06933594,-0.09472656,0.04272461,-0.14160156,-0.06201172,-0.04638672,-0.20605469,0.15917969,0.053710938,-0.012512207,0.07373047,-0.060302734,-0.14941406,0.21386719,-0.07714844,-0.048583984,0.048583984,-0.19433594,0.18652344,0.028564453,0.010925293,0.053466797,-0.12060547,0.12988281,0.020751953,0.125,0.040527344,-0.13574219,-0.041992188,0.045410156,-0.22558594,-0.0058898926,-0.10449219,-0.096191406,0.048339844,-0.17773438,-0.19433594,-0.029174805,0.028686523,-0.171875,-0.0099487305,0.20410156,-0.061279297,-0.076171875,-0.26171875,0.114746094,-0.020751953,-0.06298828,-0.08496094,0.07519531,0.03112793,0.06933594,-0.08496094,-0.0054626465,-0.049804688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.11425781,-0.034179688,0.3515625,0.01586914,0.06689453,-0.044189453,-0.029052734,-0.0115356445,-0.045166016,0.0023498535,0.0025482178,0.19042969,-0.09472656,-0.09716797,0.011047363,-0.026733398,0.171875,-0.027954102,0.3125,0.03857422,-0.12109375,-0.20996094,-0.13671875,0.022216797,-0.053710938,0.079589844,-0.19628906,0.10205078,-0.15429688,0.37304688,0.030395508,-0.059570312,-0.00062179565,-0.036865234,0.09082031,0.12207031,-0.0859375,-0.14355469,-0.087402344,-0.07324219,-0.052001953,0.05810547,-0.103027344,-0.13085938,-0.13964844,-0.015014648,-0.08300781,-0.06201172,0.08154297,-0.0035095215,-0.06298828,0.31835938,-0.12597656,-0.16015625,-0.16503906,-0.012939453,-0.020629883,0.16113281,-0.020996094,-0.31054688,0.15527344,-0.05053711,-0.068847656,-0.11376953,0.08105469,-0.022338867,-0.009765625,0.24511719,-0.09082031,-0.20214844,0.16699219,-0.049804688,-0.043945312,0.076660156,-0.17382812,-0.1796875,0.19335938,0.13183594,-0.1015625,0.051513672,-0.15625,0.11328125,0.265625,-0.09326172,-0.0029449463,-0.0040283203,-0.34179688,-0.012634277,-0.119628906,-0.10888672,-0.18359375,-0.052246094,-0.09277344,-0.01574707,-0.16308594,0.11669922,0.022705078,0.16015625,0.036132812,-0.103515625,0.18652344,-0.20703125,-0.16992188,-0.078125,-0.18261719,0.019897461,0.05419922,0.005645752,0.043945312,-0.039794922,0.16503906,0.028442383,0.15136719,0.23046875,0.032714844,-0.08251953,0.09814453,0.15039062,-0.047851562,-0.022949219,0.029785156,0.111816406,-0.140625,-0.010009766,-0.06591797,-0.24414062,0.0390625,0.032226562,0.037109375,-0.0050354004,0.028808594,-0.026000977,0.15039062,0.0040283203,0.07128906,-0.053955078,-0.06347656,-0.0048828125,0.114746094,0.026611328,0.05078125,-0.020385742,-0.096191406,0.0625,-0.049072266,-0.01928711,0.15722656,-0.072265625,0.0025787354,-0.13476562,0.027709961,-0.17773438,-0.045166016,-0.056396484,-0.171875,-0.26953125,0.060058594,0.030273438,0.039794922,-0.025024414,0.022827148,-0.028930664,0.016479492,-0.12011719,0.095703125,-0.14355469,-0.045654297,-0.17773438,0.05834961,0.03125,-0.25,0.032226562,-0.20019531,0.040039062,0.051757812,0.16894531,-0.22363281,0.08300781,0.057128906,-0.36328125,0.16210938,0.06298828,-0.06982422,-0.140625,-0.0859375,0.009887695,-0.18652344,0.015258789,0.04638672,-0.07080078,-0.071777344,0.171875,-0.16894531,0.19042969,-0.071777344,-0.15136719,0.16503906,0.19726562,-0.07519531,-0.3515625,0.03857422,0.10839844,-0.09423828,-0.11328125,-0.039794922,-0.19628906,0.009521484,0.091796875,0.036865234,-0.039794922,-0.2421875,0.010803223,0.15429688,-0.060791016,-0.1796875,-0.15136719,-0.092285156,0.026367188,-0.048828125,-0.0021972656,-0.05078125,-0.025634766,-0.05102539,0.14257812,0.021362305,-0.05517578,-0.15722656,-0.02331543,0.037841797,0.0016479492,-0.09082031,-0.29492188,0.014953613,0.040771484,-0.04248047,-0.13574219,0.01184082,0.08691406,-0.09667969,0.09082031,-0.119628906,-0.22851562,0.09863281,-0.12060547,-0.03540039,-0.011169434,0.068359375,0.033935547,0.11621094,0.0054016113,-0.14550781,0.0546875,-0.15917969,-0.095214844,0.15429688,0.13769531,-0.20703125,0.19628906,-0.17871094,-0.23925781,-0.043701172,0.032714844,0.13574219,-0.025146484,-0.013183594,-0.010253906,-0.09765625,0.123046875,-0.0073242188,-0.06201172,0.13867188,0.055664062,0.08886719,-0.07421875,-0.20605469,-0.017089844,0.095703125,-0.0016860962,0.18652344,0.044189453,-0.14160156,-0.005584717,-0.045898438,0.19042969,0.029907227,-0.026977539,0.08544922,0.19433594,0.099121094,0.07910156,-0.12890625,0.09423828,0.033691406,0.1328125,-0.0625,0.026000977,-0.03540039,-0.030151367,-0.076660156,0.16699219,0.052734375,-0.06982422,0.106933594,0.030273438,-0.0036468506,0.037353516,-0.20019531,-0.087890625,-0.0067749023,-0.049560547,0.12402344,0.048339844,-0.1015625,0.11816406,-0.12060547,0.03930664,0.0040283203,-0.28320312,0.06591797,-0.038085938,-0.27148438,-0.17675781,-0.029174805,0.06591797,-0.10888672,0.20117188,-0.07519531,-0.0053100586,0.18847656,0.140625,0.044189453,-0.071777344,-0.1875,0.14160156,0.18457031,-0.044921875,-0.029296875,0.056640625,-0.30664062,0.14160156,-0.026855469,-0.14453125,0.16992188,-0.04638672,0.099121094,0.016357422,0.15625,0.020751953,-0.026000977,-0.15820312,0.22363281,0.10595703,-0.24121094,0.015014648,-0.37890625,0.044677734,-0.12158203,-0.024169922,0.18164062,0.083984375,-0.09277344,0.11669922,0.060302734,0.119140625,-0.040771484,-0.2890625,0.115234375,0.1796875,-0.026489258,0.23144531,-0.19628906,-0.076171875,-0.034179688,0.01977539,0.005584717,0.08886719,-0.048095703,0.104003906,-0.22460938,0.123535156,0.084472656,-0.104003906,0.08251953,0.009521484,0.14550781,0.051757812,-0.06933594,-0.059814453,0.091796875,-0.1640625,0.08105469,-0.024047852,-0.06347656,0.18457031,-0.3125,0.32226562,0.08105469,-0.14257812,-0.07373047,0.01940918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.06298828,-0.10253906,0.024902344,-0.045654297,-0.18945312,-0.033691406,0.07421875,0.06225586,-0.0146484375,-0.2734375,-0.007751465,-0.12695312,0.08642578,-0.18945312,-0.12890625,-0.05810547,0.059570312,-0.26171875,-0.0019378662,-0.15625,0.14550781,-0.08544922,-0.07128906,0.09082031,0.099121094,-0.15136719,0.14355469,0.114746094,0.11767578,0.15820312,-0.16992188,0.103027344,-0.15820312,-0.037597656,0.010131836,-0.13671875,0.056152344,0.07128906,-0.10449219,-0.049072266,-0.044677734,-0.12792969,0.16308594,-0.18066406,0.13769531,0.029663086,-0.075683594,-0.040527344,0.08984375,0.038330078,-0.020629883,-0.06738281,0.07421875,-0.06591797,0.011108398,-0.12597656,0.049316406,-0.025268555,-0.0859375,-0.049804688,-0.048583984,-0.22851562,0.078125,0.19433594,0.30078125,-0.23242188,0.032958984,-0.125,-0.21679688,0.10498047,0.07763672,0.15136719,0.027954102,-0.06640625,0.057617188,0.171875,0.049316406,0.11621094,-0.12988281,0.09033203,0.057128906,-0.053955078,0.027954102,-0.09814453,-0.010925293,-0.12597656,-0.24707031,0.045166016,0.1171875,-0.1796875,0.103515625,-0.072265625,-0.06542969,-0.096191406,-0.06542969,-0.028686523,0.14648438,0.047607422,0.08544922,0.020874023,-0.115722656,-0.23339844,-0.005340576,0.0546875,0.09326172,-0.15820312,0.014709473,-0.00982666,-0.11279297,-0.051513672,-0.020263672,0.025512695,-0.015991211,-0.14941406,0.041503906,-0.12792969,0.1484375,0.13671875,0.003616333,-0.017333984,0.03125,0.02722168,-0.002243042,-0.091796875,-0.048828125,0.099121094,-0.060791016,-0.031982422,-0.02331543,0.104003906,0.115234375,0.027832031,0.056396484,-0.006225586,0.004425049,-0.036865234,0.064941406,0.09863281,0.0039978027,0.08886719,-0.091308594,-0.03466797,-0.053955078,0.0030670166,0.21777344,-0.12695312,0.16992188,-0.0001449585,0.05810547,0.061035156,0.17871094,0.018554688,-0.022583008,0.20410156,-0.05834961,0.13574219,-0.05493164,-0.08300781,-0.11328125,-0.17578125,-0.040283203,-0.026000977,-0.140625,-0.23730469,-0.064941406,-0.0044555664,0.041992188,0.09716797,0.08935547,-0.25,0.01928711,-0.099609375,-0.18847656,-0.023071289,-0.25195312,-0.016357422,0.03173828,-0.064453125,0.0048828125,0.10498047,0.08935547,0.091796875,-0.088378906,0.11376953,0.076660156,-0.040771484,0.14355469,-0.203125,0.08984375,-0.107910156,-0.203125,0.04321289,-0.030273438,-0.18457031,-0.056884766,-0.015563965,0.0019836426,0.022338867,0.0703125,0.012817383,0.03125,0.056396484,-0.08251953,0.11816406,-0.034179688,0.016723633,-0.12451172,-0.043701172,-0.055419922,-0.18554688,0.13574219,0.080566406,0.12109375,0.111328125,0.0234375,0.022705078,0.035888672,0.08300781,0.123046875,0.07470703,-0.15136719,-0.12402344,0.08105469,0.036865234,0.08154297,0.140625,0.09375,-0.0047302246,-0.0063171387,0.16308594,0.088378906,-0.20214844,0.05419922,0.16113281,-0.12988281,0.12890625,-0.2109375,0.028808594,-0.029541016,0.17871094,-0.07470703,-0.25,-0.09667969,-0.103515625,-0.027709961,0.11035156,-0.03173828,-0.064941406,0.032958984,-0.048828125,0.06689453,-0.20019531,0.048583984,0.022827148,0.083984375,-0.015075684,-0.18652344,0.1796875,0.047607422,0.011352539,0.16699219,-0.14550781,0.01965332,-0.10888672,0.021728516,-0.13574219,0.04321289,-0.0046081543,-0.07470703,0.07910156,-0.21289062,0.14941406,0.040771484,0.016479492,0.05810547,-0.2265625,0.16308594,-0.003829956,-0.07470703,-0.040771484,0.021484375,0.055664062,0.12060547,0.05078125,0.15429688,0.042236328,0.041748047,0.051513672,0.119140625,-0.029541016,0.10839844,-0.07763672,-0.14941406,-0.15722656,0.018432617,0.0010910034,0.08935547,0.028198242,0.06982422,0.10449219,-0.09667969,0.18652344,0.0048217773,0.068847656,0.15917969,-0.12158203,0.07714844,-0.07763672,-0.00045204163,-0.072265625,0.22167969,0.017944336,0.026489258,-0.12011719,0.07519531,0.087402344,-0.092285156,0.06225586,-0.049804688,0.04296875,0.012145996,-0.064941406,-0.009765625,0.110839844,-0.14746094,0.23828125,0.17578125,-0.13769531,0.071777344,0.14746094,0.119628906,-0.13183594,-0.024169922,0.095214844,0.033447266,0.13867188,-0.20800781,-0.16796875,0.0008354187,-0.140625,0.018432617,-0.037353516,0.11621094,-0.14648438,0.091796875,0.095214844,0.13769531,0.02368164,0.091308594,0.1796875,0.13183594,0.027709961,-0.011962891,-0.25,0.06933594,-0.09765625,0.009460449,-0.15234375,0.06640625,-0.13574219,0.0048828125,-0.14453125,-0.22851562,0.096191406,0.08154297,-0.28515625,-0.014709473,-0.047851562,0.21289062,-0.088378906,-0.203125,-0.031982422,-0.125,0.07324219,0.088378906,-0.17480469,0.095214844,-0.15136719,-0.1015625,-0.16992188,-0.00088882446,-0.14941406,-0.07324219,0.036865234,0.059814453,-0.053466797,-0.0052490234,-0.18847656,0.19824219,0.012390137,-0.12792969,-0.18652344,-0.096191406,-0.39453125,0.24511719,-0.017944336,-0.060058594,0.064453125,-0.091796875,0.048828125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.2421875,0.18164062,-0.11376953,-0.048339844,0.016479492,-0.023925781,-0.068359375,0.020141602,0.13769531,0.10546875,-0.1171875,-0.02319336,0.016113281,-0.052978516,-0.008544922,-0.13964844,0.19824219,0.1171875,-0.18847656,-0.07421875,-0.022216797,-0.24902344,-0.23046875,0.059326172,-0.076171875,0.15332031,-0.0095825195,-0.041015625,-0.10888672,-0.06298828,-0.07421875,0.041992188,0.103027344,-0.11669922,-0.087890625,0.20996094,-0.059814453,0.027709961,-0.05908203,0.08886719,0.05834961,0.114746094,0.111328125,0.059326172,0.045898438,0.009887695,0.010620117,0.18847656,0.1015625,0.06347656,-0.07519531,0.099121094,-0.0030670166,-0.2265625,-0.07519531,0.15429688,0.041503906,0.11376953,0.04638672,-0.020629883,-0.140625,0.10546875,0.048583984,-0.07421875,-0.09765625,0.08251953,-0.33007812,0.16210938,0.14550781,-0.059326172,-0.036621094,0.17871094,-0.030151367,0.19042969,0.18066406,-0.14648438,-0.03857422,0.15429688,-0.15917969,-0.056884766,0.10498047,0.16503906,-0.12695312,0.037597656,0.13769531,0.006591797,-0.16992188,0.1875,0.001663208,0.03491211,-0.3203125,0.06689453,0.005554199,-0.17382812,-0.018432617,-0.122558594,0.084472656,0.10498047,-0.07080078,0.08203125,-0.067871094,0.05053711,-0.05078125,0.038085938,-0.010375977,-0.040039062,0.045898438,0.0154418945,-0.012023926,0.051757812,0.010009766,-0.01928711,0.060058594,-0.045654297,0.0045166016,0.05419922,-0.06298828,-0.13085938,-0.08935547,0.09277344,0.04638672,0.009155273,0.0051879883,0.12988281,0.08984375,-0.027832031,-0.10498047,0.095703125,0.006134033,-0.056640625,-0.15527344,0.11425781,-0.028930664,-0.25,-0.09423828,0.15136719,0.017700195,-0.09472656,0.024169922,-0.1875,-0.068359375,0.08203125,-0.04638672,0.15429688,-0.07080078,0.049804688,-0.16699219,0.083496094,0.13183594,0.068359375,-0.23535156,0.103027344,0.111328125,0.2109375,-0.014770508,-0.07470703,0.05834961,0.203125,-0.079589844,0.0009994507,-0.02368164,-0.03149414,-0.060058594,0.068847656,0.08300781,0.026000977,-0.056152344,-0.007080078,0.12695312,0.104003906,-0.053955078,0.04321289,0.004333496,-0.068359375,0.053955078,-0.026367188,0.01159668,-0.103027344,-0.08154297,0.015625,0.028320312,-0.27148438,-0.025512695,0.10986328,0.008117676,0.049072266,-0.07128906,-0.013366699,0.021240234,0.10839844,-0.018554688,0.080566406,-0.060791016,-0.08691406,-0.06738281,0.034423828,-0.039794922,-0.37695312,-0.32226562,0.13183594,-0.01171875,-0.045898438,0.005065918,0.03173828,0.05029297,-0.09375,0.020751953,0.14550781,0.095703125,0.036132812,-0.13085938,0.053710938,0.016235352,0.07910156,-0.19824219,0.09423828,0.013000488,0.06298828,-0.08544922,-0.044189453,-0.034423828,0.041259766,0.07080078,0.10253906,-0.0035705566,-0.19921875,-0.114746094,0.0018997192,0.15917969,0.08105469,0.012207031,0.122558594,-0.068847656,0.04638672,0.08154297,-0.20996094,0.078125,0.036621094,0.059814453,0.036865234,-0.078125,-0.072753906,0.039794922,0.076171875,0.17285156,-0.16210938,-0.034179688,-0.0030212402,0.107421875,-0.007873535,-0.24121094,0.035888672,-0.13574219,0.06347656,0.034423828,0.09375,-0.023071289,0.08154297,-0.033447266,-0.115722656,-0.014465332,-0.036132812,-0.016235352,0.08886719,0.030029297,0.03466797,-0.08984375,0.028198242,-0.08300781,0.10888672,0.114746094,0.23632812,-0.13964844,-0.028808594,0.03857422,-0.03491211,0.1015625,-0.119140625,-0.063964844,0.07470703,-0.031982422,-0.096191406,-0.07373047,-0.028686523,0.00970459,0.26171875,0.07470703,0.006134033,-0.080078125,-0.10449219,-0.13574219,-0.01928711,-0.048828125,-0.056640625,-0.025878906,0.025634766,0.10058594,-0.053955078,-0.028076172,-0.07470703,0.13085938,0.21582031,0.13867188,0.12451172,0.019165039,-0.118652344,0.013000488,-0.0095825195,0.12695312,-0.16503906,0.025024414,0.010620117,0.052734375,-0.018066406,0.12597656,-0.16699219,0.12695312,0.052001953,0.08251953,0.028442383,-0.12988281,-0.095703125,0.21484375,-0.20898438,0.088378906,-0.34960938,0.09082031,-0.063964844,-0.10595703,0.13867188,-0.123535156,0.076660156,-0.10986328,0.047851562,0.0703125,-0.088378906,-0.18359375,0.029541016,0.19726562,-0.09375,0.15722656,-0.00592041,-0.060791016,0.16503906,-0.020629883,-0.025146484,-0.0074157715,-0.05493164,-0.020141602,-0.09765625,0.03564453,0.07421875,-0.05126953,-0.11816406,0.12988281,-0.031982422,0.053710938,-0.053466797,-0.080566406,0.17285156,0.1015625,-0.034179688,0.011352539,0.037109375,-0.083496094,0.0040283203,-0.016601562,-0.04663086,0.053466797,-0.14257812,0.10595703,0.033203125,-0.045898438,-0.040283203,0.0065612793,0.04272461,0.028442383,0.046142578,-0.00025177002,-0.06347656,-0.07421875,0.10644531,0.15234375,-0.059326172,-0.037597656,-0.107421875,0.0049743652,0.05883789,0.15625,0.14746094,0.0154418945,0.031982422,0.030639648,0.06298828,-0.12597656,-0.1171875,0.03564453,0.05078125,0.14453125,0.012084961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.0074768066,0.008605957,-0.029663086,0.12597656,0.19824219,-0.18554688,-0.29296875,0.14160156,0.052734375,0.12792969,0.025390625,-0.03112793,-0.19335938,-0.118652344,-0.07763672,-0.011108398,0.2890625,-0.16210938,-0.103027344,0.036132812,0.12060547,0.05126953,-0.19726562,0.0063171387,-0.08496094,0.064453125,-0.15332031,-0.14648438,0.115234375,-0.14550781,0.048583984,-0.11279297,-0.024047852,0.026000977,-0.012634277,-0.05444336,-0.04736328,-0.025878906,-0.17773438,-0.15722656,-0.10546875,0.008422852,-0.030029297,0.044921875,-0.06982422,-0.012634277,0.052978516,0.05834961,0.11621094,-0.13964844,-0.061523438,0.12695312,0.13476562,-0.06689453,-0.18554688,0.071777344,-0.010681152,-0.088378906,-0.40820312,0.15429688,-0.14453125,-0.14550781,0.092285156,-0.068359375,0.009643555,0.022827148,-0.056152344,-0.064453125,0.011779785,-0.296875,-0.0625,-0.09082031,0.1953125,0.056884766,-0.08935547,0.16113281,-0.17773438,0.12597656,-0.024536133,0.060546875,-0.13183594,-0.036621094,0.23046875,0.15722656,-0.19824219,0.15234375,-0.10107422,-0.26171875,0.02319336,-0.036621094,-0.16699219,-0.22851562,-0.17089844,0.12695312,-0.13183594,-0.10546875,-0.15039062,-0.045166016,0.0031280518,0.087402344,-0.12792969,0.14941406,-0.20898438,-0.14160156,0.029663086,-0.11621094,-0.13769531,-0.1796875,-0.18164062,0.064453125,0.039794922,-0.087402344,-0.075683594,0.08154297,0.1015625,0.071777344,-0.0013504028,-0.06933594,-0.13769531,-0.115234375,-0.06640625,0.06542969,0.06542969,0.09863281,-0.12792969,0.0043640137,0.10888672,0.0625,0.12890625,0.17382812,-0.023925781,0.03491211,0.10253906,-0.053222656,-0.103027344,0.17578125,0.040283203,0.09716797,0.026245117,0.2109375,-0.041503906,0.020874023,0.010192871,0.2421875,-0.014160156,0.055664062,0.026245117,-0.014892578,-0.068847656,-0.064453125,-0.1484375,-0.08886719,-0.049316406,0.12988281,-0.14355469,0.016723633,-0.13769531,0.037353516,0.12402344,0.068359375,-0.027709961,-0.107910156,0.13964844,-0.16503906,0.03955078,0.0009536743,-0.21679688,-0.26757812,0.038085938,-0.21191406,0.0546875,0.032226562,0.0010681152,0.072753906,0.033447266,-0.024169922,-0.14453125,-0.14941406,0.10107422,-0.12597656,-0.02709961,0.2421875,-0.23535156,-0.1328125,0.061523438,-0.04711914,0.0079956055,-0.045410156,0.12597656,0.042236328,0.14453125,0.123046875,0.096191406,-0.021972656,0.19824219,0.06982422,-0.125,0.12695312,-0.13769531,0.09814453,0.0057678223,0.051757812,-0.024291992,-0.052978516,0.111328125,-0.1328125,0.028930664,0.16113281,0.04248047,0.103027344,-0.016845703,0.022460938,0.1640625,0.02758789,0.13378906,0.0066833496,-0.0703125,-0.056884766,-0.171875,-0.12451172,0.061767578,-0.091796875,-0.17773438,0.1328125,0.084472656,-0.13769531,0.018676758,0.010253906,-0.09667969,-0.21191406,0.025390625,-0.34570312,0.04296875,-0.13867188,0.045898438,-0.14257812,0.09814453,-0.13867188,0.040283203,0.25195312,-0.080566406,-0.12597656,0.0025787354,-0.42382812,-0.16210938,-0.03100586,-0.14648438,-0.10253906,-0.09472656,-0.083984375,0.015991211,0.22363281,0.04296875,0.21582031,0.011413574,0.01373291,0.09277344,-0.19921875,-0.0074157715,-0.055664062,0.01940918,0.03857422,0.037353516,0.060058594,0.033935547,-0.045654297,0.11035156,-0.17285156,0.09716797,0.24316406,0.080078125,0.11767578,0.015991211,-0.296875,0.13574219,-0.034179688,-0.09667969,0.08691406,-0.1796875,0.107910156,0.01965332,0.06982422,-0.06298828,-0.31445312,0.17382812,-0.026733398,0.12158203,-0.035888672,-0.13476562,-0.25585938,0.009887695,0.029541016,0.15429688,-0.016967773,-0.0012893677,0.05517578,0.020019531,0.03857422,-0.11328125,-0.45898438,0.075683594,0.12792969,-0.092285156,0.041992188,-0.091796875,-0.09765625,0.045898438,-0.023803711,0.029052734,-0.015319824,0.071777344,-0.27148438,-0.07421875,-0.14160156,0.021362305,-0.1953125,0.16699219,0.20117188,-0.25390625,0.09033203,0.05810547,-0.032226562,0.012390137,-0.46679688,-0.23242188,0.038330078,-0.15820312,-0.29101562,0.075683594,0.060302734,0.09033203,-0.12890625,-0.013061523,0.024414062,-0.1640625,0.08642578,-0.05126953,-0.05078125,-0.09033203,-0.12451172,-0.07519531,-0.059814453,0.057861328,-0.28710938,-0.072265625,0.04663086,-0.071777344,-0.22265625,-0.01965332,0.0038757324,0.051757812,-0.042236328,0.051513672,-0.059326172,-0.03881836,-0.118652344,0.05517578,-0.095703125,0.16601562,0.13085938,0.080078125,-0.029174805,0.21777344,-0.31054688,0.12451172,0.019897461,0.034423828,-0.09423828,0.006378174,0.008728027,-0.046875,-0.08203125,0.06689453,0.1171875,0.035888672,-0.1640625,-0.0027008057,-0.03881836,-0.16601562,-0.16601562,0.09326172,-0.071777344,-0.17089844,-0.05517578,-0.06225586,0.05029297,-0.011962891,-0.056640625,-0.19726562,-0.111816406,-0.024291992,0.015563965,0.11425781,-0.0024414062,0.18261719,-0.068359375,0.13085938,0.042236328,-0.11425781,-0.05078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.08203125,0.015625,0.03857422,0.009216309,-0.024658203,-0.0045166016,-0.07324219,0.14648438,-0.061523438,0.034179688,0.02331543,-0.0039978027,-0.11230469,-0.084472656,0.08300781,-0.12988281,-0.14648438,-0.06640625,-0.072753906,-0.100097656,0.10644531,0.16992188,-0.05908203,0.10107422,-0.12695312,-0.025756836,-0.24804688,0.21289062,-0.025512695,0.16210938,-0.091308594,-0.15234375,-0.17480469,-0.119628906,0.203125,-0.1171875,-0.18164062,0.23242188,0.15527344,0.14160156,-0.114746094,-0.122558594,-0.12011719,0.018798828,-0.1171875,-0.20996094,-0.17773438,-0.12890625,0.016967773,-0.31054688,0.03125,-0.23828125,-0.07128906,-0.053222656,-0.099121094,-0.19628906,-0.08544922,-0.16503906,-0.18359375,-0.20898438,-0.26367188,-0.29101562,-0.076171875,-0.19628906,-0.14550781,0.080078125,0.024291992,-0.46484375,-0.049072266,-0.28320312,-0.23828125,-0.38085938,0.011779785,-0.072753906,0.023803711,-0.33398438,-0.18457031,-0.17675781,0.06298828,-0.11328125,-0.057128906,-0.24707031,-0.01977539,0.07910156,0.0390625,-0.08642578,0.008605957,-0.07470703,-0.049560547,0.22558594,-0.050048828,0.08496094,0.024047852,-0.05444336,0.020385742,0.2265625,0.0703125,-0.087890625,0.16601562,-0.10595703,-0.07080078,-0.06982422,-0.006072998,-0.07373047,-0.024291992,-0.028198242,-0.0019073486,0.10546875,0.04736328,-0.10839844,0.009399414,0.05444336,0.10449219,0.00061798096,0.21582031,-0.14160156,-0.072265625,0.17382812,-0.09326172,-0.15917969,-0.016235352,0.13574219,0.28710938,-0.036865234,0.049072266,0.013183594,0.0046081543,0.033935547,-0.01171875,0.060791016,-0.053955078,-0.09765625,0.037353516,-0.092285156,0.00065612793,-0.328125,0.0018386841,-0.03564453,0.037353516,-0.100097656,-0.20214844,0.006439209,-0.028686523,-0.036865234,0.064941406,0.10986328,-0.26171875,-0.15527344,-0.21582031,-0.12792969,0.037109375,-0.13867188,-0.10839844,-0.17773438,-0.040283203,-0.11279297,-0.115234375,-0.328125,0.016845703,-0.27539062,-0.25,-0.10595703,-0.019165039,0.010925293,-0.20117188,0.0154418945,0.029418945,0.040283203,-0.030273438,0.03540039,-0.01361084,0.08642578,-0.08691406,-0.0064086914,0.061767578,0.10888672,0.06298828,-0.18554688,0.1796875,-0.041503906,0.14355469,-0.12060547,-0.107421875,-0.04663086,-0.100097656,0.061767578,0.12158203,0.16503906,-0.004211426,-0.028808594,-0.13378906,-0.11035156,0.028320312,0.20117188,-0.08935547,0.032226562,0.21582031,-0.07324219,-0.015319824,0.06591797,-0.16308594,-0.087890625,0.18847656,0.091308594,0.15039062,0.05859375,-0.11279297,-0.037353516,-0.1328125,0.075683594,-0.033691406,0.10449219,0.19628906,0.0078125,-0.010131836,-0.14160156,0.060546875,-0.02758789,0.111816406,0.06933594,0.04321289,-0.13183594,0.099609375,-0.095214844,0.020629883,-0.21386719,-0.08154297,0.060302734,-0.18945312,-0.16601562,-0.025878906,-0.36328125,0.03857422,-0.1796875,-0.028442383,-0.16699219,-0.068847656,-0.025390625,0.0030822754,-0.15722656,-0.13574219,-0.22363281,-0.07861328,-0.014587402,-0.123535156,0.03125,0.29101562,-0.24902344,0.05834961,-0.076171875,0.051757812,0.16015625,0.10888672,0.109375,-0.21289062,0.025512695,0.06225586,-0.122558594,0.022216797,0.064941406,-0.16894531,-0.100097656,-0.0063476562,-0.13769531,-0.03955078,0.12011719,0.072265625,-0.041503906,-0.09033203,-0.056396484,0.026977539,0.009765625,-0.05078125,0.095703125,-0.13867188,0.13476562,0.09423828,-0.09082031,0.035888672,-0.37304688,-0.084472656,-0.068359375,-0.052734375,0.087402344,0.014709473,-0.14746094,0.05053711,0.05078125,-0.03930664,0.087402344,-0.07519531,0.07470703,0.075683594,0.042236328,-0.036132812,-0.15136719,-0.10546875,0.080566406,0.14453125,0.04321289,-0.030151367,-0.13378906,-0.056396484,0.15429688,0.03515625,0.18945312,-0.010559082,0.100097656,-0.1328125,0.016601562,-0.1015625,0.03857422,-0.13476562,-0.00579834,0.15722656,0.10498047,-0.22363281,0.13085938,0.06982422,-0.13671875,-0.15039062,-0.21289062,-0.0625,-0.08154297,-0.107421875,-0.06347656,0.095703125,-0.15625,-0.005004883,-0.14453125,0.15917969,-0.07763672,0.06738281,0.0546875,-0.13183594,-0.076660156,-0.2890625,-0.092285156,-0.032470703,0.02319336,-0.19628906,-0.061767578,0.21289062,-0.052490234,-0.07128906,-0.18261719,0.10888672,-0.14941406,0.017578125,0.096191406,-0.16308594,0.0014419556,0.06640625,-0.21582031,-0.059326172,0.048095703,-0.19238281,-0.046875,0.08984375,-0.20214844,0.006164551,0.15820312,0.05053711,-0.068359375,0.033447266,0.11425781,0.11328125,0.028320312,0.16796875,-0.07763672,-0.13378906,0.11230469,-0.20605469,-0.103027344,0.095214844,0.053222656,0.046875,0.21191406,0.09716797,0.18847656,-0.055908203,-0.044677734,-0.04638672,0.17773438,0.104003906,-0.024047852,0.011657715,0.0703125,-0.0065307617,-0.017700195,0.14648438,0.026489258,-0.052246094,0.072265625,0.19238281,0.24511719,-0.18652344,-0.10644531,-0.076171875,0.046142578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.084472656,0.12402344,-0.07373047,-0.04296875,0.02368164,-0.07714844,-0.15039062,-0.012573242,-0.047851562,-0.03515625,0.115234375,-0.00048446655,-0.053710938,-0.18164062,0.047851562,-0.24609375,0.045166016,0.06738281,-0.09667969,-0.13867188,-0.037841797,-0.07861328,-0.010253906,0.038330078,0.09472656,0.071777344,-0.02331543,0.030761719,-0.06982422,0.07128906,0.035888672,-0.27734375,0.06591797,0.055908203,-0.18945312,0.09863281,-0.02722168,-0.15527344,-0.15039062,0.13378906,0.088378906,0.103027344,0.055419922,-0.087402344,-0.030029297,0.028442383,-0.026245117,-0.12011719,0.0005722046,-0.100097656,-0.21875,0.021850586,-0.071777344,-0.019897461,-0.13183594,-0.0037384033,0.046142578,-0.009887695,-0.14257812,-0.07470703,0.09423828,-0.0053710938,0.03881836,-0.11767578,0.12060547,-0.045654297,-0.20996094,0.014282227,0.12060547,-0.21191406,-0.20019531,0.1875,-0.13183594,0.1015625,0.030151367,-0.14648438,-0.03112793,0.12988281,0.12890625,0.021118164,-0.15722656,0.16503906,-0.088378906,-0.19628906,0.09716797,0.01373291,-0.19628906,-0.18261719,0.17382812,-0.004699707,-0.12890625,0.075683594,-0.022583008,0.05444336,-0.08300781,0.11669922,-0.06298828,0.10498047,-0.0007286072,-0.1796875,-0.021240234,-0.03857422,0.064453125,0.115722656,-0.060546875,0.0234375,0.1328125,-0.05834961,0.053466797,-0.06689453,-0.028320312,0.079589844,-0.03930664,-0.06591797,-0.04736328,0.060791016,0.13085938,-0.08935547,-0.025634766,0.16308594,-0.06640625,0.03100586,-0.029541016,-0.15136719,0.16894531,-0.09765625,-0.03491211,0.084472656,-0.032714844,-0.017089844,-0.041748047,0.053466797,0.08691406,0.003829956,-0.12597656,0.080078125,-0.026367188,-0.022827148,0.13476562,-0.14746094,0.028442383,0.10058594,0.059570312,0.07861328,-0.09423828,0.17578125,0.0058898926,0.07421875,0.123535156,-0.15625,-0.091308594,0.13378906,-0.0001296997,-0.010375977,-0.13085938,0.043945312,0.025390625,0.08203125,0.0126953125,0.21972656,-0.08935547,-0.051757812,-0.14160156,-0.12597656,0.056396484,-0.11035156,-0.14746094,-0.14550781,0.13867188,0.18847656,-0.016601562,-0.15625,0.032714844,-0.067871094,0.0016021729,0.14746094,-0.03173828,-0.21972656,-0.079589844,-0.095214844,0.050048828,-0.39648438,-0.14355469,0.05053711,-0.044677734,-0.096191406,-0.039794922,-0.16601562,-0.02734375,-0.24511719,-0.07080078,0.22558594,-0.13476562,-0.17382812,-0.014343262,-0.055664062,0.084472656,-0.05078125,0.088378906,0.083496094,-0.040283203,-0.015136719,-0.11425781,-0.12451172,0.033935547,0.001083374,-0.22558594,0.36523438,-0.045410156,-0.05883789,-0.08544922,0.0625,-0.0012130737,-0.12597656,-0.111328125,-0.10253906,0.046875,0.03466797,-0.14355469,-0.099121094,0.13378906,-0.08251953,-0.107421875,0.15917969,0.06640625,0.07421875,0.076660156,-0.103515625,0.07519531,-0.10107422,-0.103515625,-0.045410156,-0.123046875,0.09375,-0.057617188,-0.09765625,-0.024536133,-0.02355957,-0.05126953,0.12402344,-0.09814453,-0.21582031,0.044189453,-0.09277344,0.1484375,0.0034332275,0.026245117,-0.072265625,0.03466797,0.21679688,0.04248047,-0.08251953,-0.103027344,-0.05444336,0.07714844,-0.056884766,0.05859375,-0.12207031,-0.096191406,0.010986328,0.018188477,-0.029907227,0.08300781,-0.036865234,0.052978516,0.0011672974,-0.0859375,0.100097656,0.013916016,-0.078125,-0.016235352,0.029907227,0.07714844,-0.064941406,-0.02722168,-0.1171875,-0.0008430481,-0.16601562,-0.015197754,-0.038330078,-0.19628906,0.0016021729,0.004272461,0.05126953,0.064453125,-0.024658203,0.0099487305,0.037109375,-0.028198242,-0.21972656,-0.12695312,-0.21972656,0.072753906,-0.083496094,-0.18847656,-0.13476562,-0.063964844,0.026123047,-0.087402344,0.06933594,0.021972656,-0.18847656,-0.08203125,0.11669922,0.0036468506,-0.13867188,0.0036621094,-0.15234375,0.010864258,-0.19628906,-0.2578125,-0.07910156,-0.095703125,0.25976562,-0.13671875,-0.008300781,-0.123535156,-0.12597656,-0.011169434,-0.026855469,-0.07470703,-0.33398438,0.11035156,0.027954102,0.1171875,0.021362305,0.002822876,0.092285156,-0.0054016113,0.23925781,0.13183594,0.012512207,-0.18164062,0.08642578,0.2421875,0.17285156,0.041748047,-0.18164062,0.032714844,-0.05859375,-0.038330078,-0.078125,-0.12792969,0.049316406,-0.028808594,0.06640625,0.0032653809,0.038330078,0.08300781,-0.08251953,0.35546875,-0.019897461,-0.08251953,-0.1953125,0.004180908,-0.041748047,0.110839844,-0.33203125,-0.05126953,-0.08935547,0.015563965,0.08251953,-0.041259766,0.076171875,0.04663086,-0.08203125,0.059326172,-0.005706787,-0.19824219,-0.19238281,-0.17871094,-0.20214844,0.055664062,-0.29882812,0.0011062622,-0.10546875,-0.12158203,0.060058594,-0.13378906,-0.04321289,0.03125,0.00090026855,0.10546875,0.0546875,0.01977539,-0.20214844,-0.0126953125,-0.22070312,-0.041992188,-0.4296875,0.06347656,0.026855469,-0.21875,0.22265625,0.009521484,0.33398438,0.091308594,-0.040039062,0.041748047,-0.030151367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.014404297,0.15625,-0.040039062,-0.114746094,-0.017822266,0.032714844,-0.103027344,0.16308594,-0.047851562,0.051513672,0.018920898,-0.056152344,0.05126953,-0.05493164,-0.064453125,0.17675781,0.014404297,0.071777344,-0.013305664,-0.0071411133,-0.18359375,-0.061767578,-0.095214844,0.20019531,0.095703125,-0.044189453,-0.06738281,0.088378906,0.011230469,0.09033203,0.18945312,0.26171875,0.19824219,0.014404297,0.01159668,0.059326172,-0.083984375,0.1484375,-0.008300781,0.09033203,0.011108398,0.11035156,-0.027709961,0.083496094,-0.125,0.19140625,0.05883789,0.14550781,0.19921875,-0.14648438,-0.083496094,0.015380859,0.08203125,-0.12207031,-0.0063476562,0.22851562,-0.050048828,0.030151367,0.041748047,0.16113281,-0.018676758,0.107421875,-0.026611328,0.13378906,-0.13964844,0.036621094,-0.15917969,-0.016723633,-0.008544922,0.09472656,-0.15722656,0.08105469,0.030517578,0.12451172,0.115722656,0.12988281,-0.20703125,0.2734375,0.043945312,0.25390625,0.08544922,-0.00970459,0.0062561035,0.18164062,-0.091796875,-0.016723633,-0.004547119,0.1328125,0.17285156,0.080566406,-0.13964844,0.18261719,-0.014526367,-0.22851562,-0.12890625,0.06298828,0.013793945,-0.08935547,-0.052734375,0.096191406,0.01361084,0.03930664,-0.055419922,0.019165039,-0.07324219,-0.12695312,-0.1484375,0.12890625,-0.016113281,-0.19726562,0.12792969,0.111816406,0.01159668,-0.23632812,-0.021850586,0.08496094,-0.030883789,-0.03930664,-0.16894531,0.15625,0.05053711,-0.123046875,-0.07470703,0.06982422,0.059570312,0.025024414,0.02331543,-0.08496094,0.064941406,0.15429688,0.026855469,0.092285156,0.063964844,-0.20800781,-0.019897461,0.027954102,-0.11621094,-0.07421875,0.08496094,0.09082031,0.06982422,0.10498047,-0.1328125,0.056640625,-0.052001953,0.022949219,-0.056884766,-0.005432129,0.1953125,-0.14355469,-0.10839844,-0.092285156,-0.026123047,0.10058594,0.053466797,0.036132812,-0.15722656,0.34765625,0.029052734,0.16894531,0.0126953125,0.021118164,-0.007019043,-0.06591797,0.0039978027,-0.05810547,-0.056640625,0.17480469,0.15722656,0.047851562,-0.123535156,0.10595703,-0.026611328,-0.027954102,-0.025390625,0.103515625,0.068359375,-0.017089844,0.032226562,-0.0146484375,0.0390625,0.020263672,-0.083984375,0.00793457,-0.018066406,-0.092285156,0.01965332,-0.030029297,-0.057617188,0.060546875,-0.07910156,0.076171875,-0.01940918,-0.18554688,0.020629883,-0.09277344,0.05444336,0.055419922,-0.16699219,0.08935547,-0.04345703,-0.123535156,-0.13867188,0.09667969,0.039794922,-0.08251953,0.047607422,-0.027709961,0.040039062,0.087890625,0.03857422,0.035888672,-0.111816406,-0.21386719,-0.024780273,0.22558594,0.028808594,-0.009338379,0.0074157715,-0.08642578,0.06738281,0.067871094,0.16992188,0.03491211,-0.016479492,0.10449219,0.013305664,0.019042969,-0.067871094,-0.12060547,-0.051757812,0.17773438,-0.014709473,0.27539062,0.0036315918,0.038330078,-0.072265625,0.1484375,0.20703125,0.24609375,0.034179688,0.05834961,-0.072753906,0.009460449,0.12890625,-0.04248047,0.10644531,0.119140625,0.115722656,0.12597656,-0.25976562,0.07373047,-0.17480469,0.08544922,-0.041015625,-0.041503906,-0.034423828,-0.15234375,0.12011719,-0.05859375,-0.0703125,0.05053711,-0.064941406,-0.048828125,-0.033447266,-0.036865234,-0.12695312,0.19433594,-0.013366699,-0.076171875,0.11621094,-0.002960205,-0.064941406,0.12792969,0.052978516,0.022827148,0.111816406,0.053955078,0.0390625,0.055664062,0.11621094,-0.022338867,-0.029907227,0.03564453,0.13183594,-0.024291992,0.123535156,-0.013000488,0.075683594,0.06982422,0.05493164,0.079589844,0.13671875,0.11767578,-0.011962891,-0.16894531,-0.125,0.040283203,0.05517578,-0.17578125,-0.0051879883,0.14648438,0.08984375,-0.14355469,0.032714844,-0.04638672,0.060302734,0.030029297,-0.052978516,0.16699219,-0.030639648,0.009216309,-0.03881836,0.056884766,-0.091308594,-0.107421875,-0.052490234,0.23144531,0.110839844,0.037109375,0.04736328,-0.296875,-0.01977539,-0.011413574,-0.0625,-0.140625,0.10449219,-0.043701172,0.041748047,0.099609375,0.05859375,0.11230469,-0.234375,0.009399414,0.06933594,-0.10205078,0.07763672,-0.049316406,0.0043945312,0.04711914,-0.019897461,-0.095703125,0.07519531,-0.026123047,-0.09082031,0.13867188,0.018432617,0.030273438,-0.203125,-0.15820312,0.036376953,0.05053711,-0.030273438,-0.076171875,0.00075912476,0.036865234,-0.0004234314,-0.14746094,0.041259766,-0.19140625,0.019165039,-0.032470703,0.31445312,-0.03955078,-0.028442383,-0.1015625,0.013366699,0.0063476562,0.033447266,-0.03515625,-0.03515625,-0.038330078,-0.014953613,-0.28515625,0.016479492,-0.1953125,-0.14257812,0.06689453,0.0025634766,-0.016723633,-0.08935547,-0.01586914,0.061523438,-0.00970459,-0.016479492,-0.055419922,0.05053711,-0.02355957,-0.08544922,-0.10546875,-0.042236328,-0.08642578,-0.1171875,0.033203125,-0.042236328,0.09277344,-0.018310547,0.01373291,0.038330078,-0.036865234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.15527344,-0.1328125,-0.24511719,-0.19238281,-0.19140625,0.053955078,0.072753906,-0.19140625,0.0030670166,-0.20703125,-0.11376953,-0.12792969,-0.11767578,-0.06640625,0.1875,-0.15625,-0.16796875,0.140625,-0.20410156,-0.068847656,0.024536133,-0.23925781,0.0859375,0.17480469,-0.09863281,-0.25,0.02709961,-0.057861328,-0.037353516,-0.071777344,-0.13183594,-0.15527344,0.03881836,0.10644531,0.0021820068,-0.041992188,0.0008201599,0.022705078,0.1015625,-0.18457031,-0.099121094,-0.056884766,-0.031982422,-0.080566406,-0.009277344,-0.08251953,0.107421875,-0.024169922,0.031982422,-0.11425781,-0.059326172,0.084472656,-0.123535156,0.13183594,0.040771484,-0.29101562,0.059326172,-0.15234375,-0.040283203,0.036376953,-0.12890625,-0.13769531,-0.03540039,0.07763672,0.14550781,-0.07373047,0.048095703,-0.265625,-0.068847656,0.056152344,-0.15136719,0.0058288574,-0.07519531,-0.20410156,-0.02368164,0.0026855469,-0.14648438,-0.044677734,0.12451172,0.059570312,-0.02355957,-0.079589844,-0.080566406,0.040527344,0.07373047,0.020751953,-0.08691406,-0.026000977,-0.107421875,-0.072753906,0.12988281,-0.1015625,-0.033935547,-0.14746094,0.071777344,0.087890625,-0.23632812,0.23632812,0.022583008,-0.28710938,0.02355957,-0.05029297,-0.09765625,0.015136719,0.0095825195,-0.092285156,-0.122558594,-0.018432617,0.11328125,-0.007537842,-0.040039062,-0.029052734,0.044189453,-0.052001953,0.03466797,0.080078125,0.16601562,0.15820312,0.010131836,-0.16992188,0.0066223145,-0.0027008057,0.18457031,0.048339844,0.083496094,0.19433594,0.19335938,0.21386719,0.19042969,-0.15625,0.08642578,0.22558594,-0.056640625,0.203125,0.03564453,-0.06591797,0.010009766,-0.041748047,-0.12695312,-0.021972656,0.03466797,-0.115234375,-0.10253906,0.037109375,-0.027832031,-0.11621094,0.0025482178,-0.072753906,-0.10498047,0.15136719,0.051513672,0.053466797,-0.104003906,-0.083984375,-0.053222656,0.0014877319,0.0058898926,-0.06298828,-0.03540039,-0.057128906,-0.023071289,0.011962891,-0.043701172,-0.021850586,-0.018798828,-0.099609375,-0.19726562,-0.20214844,-0.044433594,-0.033691406,-0.06982422,0.096191406,0.0703125,-0.10107422,-0.075683594,0.05102539,-0.00680542,-0.07910156,0.0625,0.09375,0.016357422,0.2421875,0.107910156,0.060058594,-0.0146484375,-0.038085938,-0.076171875,0.1875,0.041259766,-0.3125,-0.026000977,0.041259766,0.06542969,-0.0029449463,0.09082031,-0.06347656,0.04321289,-0.014038086,0.25390625,0.10449219,-0.075683594,0.15917969,0.08154297,-0.016113281,0.06689453,0.08496094,0.01928711,-0.026611328,0.045166016,0.11230469,0.14941406,0.028442383,-0.008239746,-0.171875,0.053222656,-0.09814453,-0.07324219,0.0859375,0.022094727,0.019165039,0.16113281,-0.24707031,-0.123046875,-0.07421875,-0.13085938,0.08154297,-0.007751465,-0.22949219,-0.019042969,-0.16699219,-0.05883789,0.05444336,-0.079589844,-0.05102539,-0.12060547,0.04321289,-0.05126953,-0.051757812,-0.022705078,-0.27929688,-0.099121094,-0.012634277,0.09277344,-0.16699219,-0.14453125,0.072753906,-0.0050354004,-0.18066406,0.061523438,-0.0028381348,-0.07470703,-0.12158203,-0.10253906,-0.06933594,-0.13378906,-0.024902344,-0.0027923584,-0.07128906,0.020141602,-0.20898438,0.017089844,0.14648438,-0.028320312,-0.16015625,0.080566406,0.0054626465,0.0039978027,0.12597656,-0.1328125,-0.05102539,-0.16210938,0.10058594,-0.020996094,0.007171631,0.13574219,-0.091796875,0.087402344,-0.099609375,0.099609375,-0.007659912,0.057617188,-0.0134887695,-0.044433594,0.076171875,-0.022583008,-0.095214844,0.10498047,0.0023345947,0.12060547,-0.047607422,-0.03491211,-0.15039062,-0.110839844,-0.075683594,-0.07080078,-0.100097656,-0.0033416748,0.099121094,0.09033203,-0.0027008057,-0.032226562,-0.08984375,-0.006011963,0.0072631836,-0.30664062,0.07080078,0.010314941,-0.24414062,-0.25585938,-0.11425781,0.25390625,0.022583008,-0.0040893555,0.044677734,-0.010498047,0.0078125,-0.020751953,0.05810547,-0.07763672,-0.24609375,-0.072753906,-0.076171875,-0.07373047,-0.010986328,-0.3046875,0.12890625,0.0047912598,-0.07861328,-0.044433594,0.0625,0.13574219,0.10253906,-0.00010204315,-0.041503906,-0.22070312,0.023803711,0.1328125,0.079589844,-0.072753906,-0.088378906,-0.15917969,-0.15917969,-0.23828125,-0.05810547,-0.10546875,0.03564453,-0.13769531,0.0154418945,0.091796875,-0.19140625,-0.1796875,0.03881836,0.078125,0.12792969,0.100097656,0.09716797,-0.075683594,-0.083984375,0.018798828,0.000667572,-0.019165039,0.07421875,-0.009399414,0.087890625,-0.19238281,-0.0048217773,-0.06298828,0.0234375,-0.002380371,0.20800781,0.088378906,-0.055664062,-0.06542969,0.009033203,-0.06640625,-0.13574219,-0.06298828,0.11425781,-0.05834961,-0.11425781,-0.114746094,-0.12792969,0.11376953,-0.095214844,0.08251953,0.12695312,-0.011474609,-0.16113281,0.024902344,-0.1171875,0.009094238,-0.014526367,-0.071777344,-0.0012817383,-0.007446289,-0.016113281,-0.013122559,-0.015625,-0.095703125,0.12060547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.078125,-0.045898438,0.006866455,-0.083984375,-0.234375,0.22949219,0.03564453,0.030761719,-0.06542969,-0.119628906,0.11621094,-0.015991211,-0.11376953,0.18359375,0.24316406,0.028076172,-0.056884766,0.0070495605,-0.0027313232,0.048828125,0.05102539,0.08496094,-0.115722656,0.071777344,0.114746094,-0.123046875,0.032470703,-0.123535156,-0.052978516,-0.19628906,0.045410156,0.037109375,-0.024047852,0.13378906,-0.15039062,-0.084472656,-0.17382812,-0.041503906,0.21386719,0.25390625,0.13476562,0.012451172,0.09326172,-0.020996094,-0.13867188,0.20507812,0.10253906,-0.003189087,0.052978516,-0.11279297,-0.12988281,0.095703125,0.25976562,-0.11230469,0.02319336,-0.10253906,-0.043945312,-0.1171875,0.13574219,-0.095214844,0.018920898,0.09863281,-0.09375,-0.21679688,0.026977539,-0.18652344,-0.045654297,0.0087890625,0.234375,-0.07763672,-0.09472656,0.16601562,-0.037109375,0.17480469,0.33203125,-0.053955078,0.14257812,0.115722656,-0.08544922,-0.10498047,-0.026245117,0.037353516,-0.033203125,-0.19140625,-0.0038452148,0.107910156,0.033203125,0.14160156,0.083984375,-0.10449219,-0.16113281,-0.037597656,0.041259766,0.028320312,0.037353516,-0.028808594,-0.033691406,0.19335938,0.083496094,0.036132812,-0.005584717,-0.03466797,-0.043945312,-0.012512207,-0.0625,-0.26757812,-0.028442383,-0.017089844,0.048339844,-0.17578125,0.06298828,-0.051513672,-0.08251953,0.29882812,-0.103027344,0.025146484,0.076660156,0.07080078,0.12158203,0.1875,0.060546875,-0.103515625,0.22363281,-0.119140625,-0.020385742,0.041992188,-0.13867188,-0.0859375,0.03149414,0.20703125,-0.359375,0.063964844,0.15136719,-0.012084961,0.0041503906,0.15332031,-0.030395508,-0.07128906,0.020507812,-0.05126953,0.20605469,-0.032226562,0.123046875,-0.091308594,0.00592041,0.17675781,-0.07714844,0.011108398,0.20019531,-0.18457031,0.203125,0.111816406,0.04296875,0.080566406,-0.07080078,0.16992188,0.08886719,0.036376953,-0.046875,-0.2578125,-0.076171875,-0.07861328,-0.07128906,-0.06298828,0.044433594,0.01171875,0.10595703,0.2265625,-0.06640625,-0.088378906,-0.006652832,0.032226562,-0.07324219,-0.08642578,-0.060791016,-0.12207031,-0.10888672,-0.07519531,-0.11230469,-0.10986328,0.037353516,0.27734375,0.0055236816,0.07861328,0.10986328,-0.15722656,-0.030639648,0.068359375,-0.013366699,0.005004883,0.12890625,-0.088378906,-0.040527344,0.055664062,-0.13769531,-0.060058594,-0.096191406,0.05029297,-0.080078125,-0.11669922,-0.048828125,-0.08886719,0.04296875,-0.10839844,-0.046142578,-0.10986328,0.007019043,-0.12597656,-0.19433594,0.17382812,-0.032714844,-0.017211914,-0.08691406,0.03515625,-0.09033203,-0.13574219,0.14746094,-0.06982422,0.107421875,-0.052246094,-0.17089844,0.16210938,-0.051513672,-0.095703125,-0.19140625,-0.12695312,-0.12792969,-0.09277344,0.08496094,-0.03125,0.07861328,0.13769531,-0.012451172,-0.26953125,0.083984375,-0.110839844,-0.12158203,0.07910156,-0.1484375,-0.111328125,-0.030395508,0.038330078,0.021972656,-0.10595703,-0.15722656,0.018310547,0.048095703,0.11816406,-0.04272461,-0.12158203,-0.07861328,-0.0859375,-0.12451172,-0.0004310608,-0.027832031,0.079589844,0.0032653809,-0.018310547,-0.24804688,-0.14453125,-0.067871094,0.296875,-0.084472656,0.22949219,-0.08105469,-0.19238281,-0.04663086,0.09814453,-0.123535156,-0.0390625,-0.063964844,0.05053711,0.16699219,-0.22558594,-0.1484375,0.028076172,-0.10546875,0.12597656,-0.0026550293,-0.16015625,-0.10449219,-0.122558594,0.024414062,0.29492188,-0.0028076172,-0.13085938,0.0051574707,0.0033721924,-0.13378906,-0.12988281,-0.28515625,-0.11376953,-0.09814453,0.095703125,0.03112793,0.1484375,0.12060547,-0.11230469,0.071777344,-0.057617188,-0.24121094,0.08642578,-0.12597656,-0.0625,-0.15429688,-0.0041503906,-0.23535156,0.08154297,0.020874023,-0.09472656,0.09082031,0.015136719,0.109375,-0.092285156,-0.001045227,0.025756836,-0.24414062,0.2109375,0.09375,0.022338867,-0.20898438,-0.1171875,-0.111328125,-0.08984375,-0.12207031,0.15820312,0.11425781,0.027954102,0.014587402,-0.123535156,-0.07324219,0.16796875,-0.05419922,-0.08984375,-0.055664062,0.11767578,-0.16699219,-0.20800781,0.080566406,-0.041015625,-0.20507812,0.28320312,0.07373047,0.19433594,-0.106933594,-0.1484375,0.053955078,0.16113281,-0.05908203,-0.0051879883,0.111816406,0.12109375,-0.0064086914,0.10498047,-0.16015625,-0.04272461,-0.15332031,0.17285156,-0.11621094,0.0078125,-0.049804688,-0.12792969,-0.1796875,-0.015625,-0.16210938,-0.18164062,-0.028564453,0.19433594,0.016967773,-0.115722656,-0.15722656,-0.21582031,-0.052490234,0.08984375,-0.048339844,-0.24121094,0.036865234,-0.10546875,-0.027709961,-0.07714844,-0.12695312,-0.09423828,-0.044433594,0.11376953,-0.049804688,-0.078125,-0.19824219,0.010253906,-0.07519531,0.123046875,0.06591797,0.027954102,-0.07080078,-0.03857422,0.12988281,0.068359375,-0.09082031,-0.11376953,0.027709961,0.06689453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12890625,0.061767578,0.045898438,-0.083984375,0.11425781,0.02734375,-0.07080078,0.026367188,0.06542969,0.13378906,0.034423828,-0.21289062,0.056640625,0.083496094,-0.011108398,-0.028930664,0.057373047,-0.31054688,0.009033203,-0.015014648,0.07470703,-0.2109375,-0.28710938,0.057128906,0.0038604736,0.0859375,0.003753662,0.055664062,0.01977539,0.20410156,0.020996094,0.08984375,0.083984375,-0.07714844,0.028564453,-0.072265625,0.25,0.05493164,0.234375,0.03955078,0.056640625,-0.040039062,-0.27539062,-0.036865234,-0.048339844,0.2265625,-0.1640625,-0.048583984,-0.08203125,-0.15332031,0.07080078,0.1328125,0.029785156,-0.14550781,-0.026367188,-0.080078125,0.012268066,0.1015625,0.05883789,0.012756348,0.06225586,-0.041503906,0.049072266,0.12890625,-0.088378906,0.19433594,0.20800781,-0.08154297,0.111816406,0.0057678223,-0.20214844,0.03125,0.012817383,0.15625,-0.15039062,0.103027344,0.12207031,0.080566406,-0.27734375,0.11230469,0.28125,-0.05126953,0.10546875,-0.13085938,-0.007873535,-0.00035858154,-0.20117188,-0.10107422,-0.06542969,0.045166016,-0.14453125,0.015197754,-0.07714844,0.05029297,0.17871094,0.0703125,0.08154297,0.23730469,-0.140625,-0.01977539,0.10644531,-0.21386719,-0.106933594,-0.01965332,-0.036865234,-0.048828125,-0.03564453,0.05126953,-0.040039062,0.05517578,0.016723633,0.21875,0.07519531,0.114746094,-0.09716797,-0.14257812,0.057617188,-0.10205078,0.10888672,0.041503906,0.03466797,0.012268066,0.03564453,0.1328125,-0.14550781,0.024902344,-0.037841797,0.033203125,0.092285156,0.13867188,0.057373047,-0.044921875,0.013916016,-0.041015625,0.22558594,0.028930664,-0.072753906,-0.13574219,-0.04296875,0.044677734,-0.059814453,-0.019165039,-0.05053711,-0.035888672,-0.06542969,0.040283203,0.061523438,0.01928711,0.020385742,-0.1328125,0.007385254,0.057128906,-0.10253906,0.029418945,0.06689453,-0.20214844,0.052734375,0.12792969,-0.23046875,-0.0057678223,0.033935547,0.140625,0.12402344,-0.13964844,0.02319336,0.06591797,0.080078125,0.071777344,-0.03466797,0.052978516,-0.10498047,0.18554688,-0.044189453,0.037353516,0.13183594,0.017089844,0.119628906,0.13085938,-0.010803223,-0.01159668,0.07373047,0.03149414,-0.064941406,-0.028808594,0.07714844,-0.01171875,-0.0006980896,-0.08251953,-0.063964844,-0.07910156,0.016357422,0.203125,-0.17285156,-0.08251953,-0.02319336,0.0859375,-0.08691406,-0.296875,0.14550781,0.060302734,0.09765625,-0.080566406,0.088378906,-0.21972656,-0.057617188,-0.05834961,-0.027954102,0.04736328,0.15722656,-0.055419922,-0.036865234,-0.025024414,0.07763672,0.026733398,0.04638672,-0.019165039,0.026000977,-0.18652344,-0.008300781,-0.027832031,-0.0018081665,-0.022827148,0.15136719,0.08203125,-0.018920898,-0.09472656,-0.13964844,-0.022705078,0.28125,-0.20117188,0.17773438,0.049316406,0.030639648,-0.03955078,0.21484375,-0.27148438,0.048828125,0.12109375,-0.10449219,-0.09033203,-0.08544922,-0.08935547,0.12109375,-0.0703125,0.10595703,-0.16894531,-0.25390625,0.37304688,-0.13476562,0.038330078,0.018188477,-0.056884766,0.068847656,0.123535156,-0.068359375,-0.052978516,-0.0703125,-0.08105469,0.057373047,-0.12451172,-0.17480469,-0.046142578,0.13964844,-0.010498047,0.017700195,0.0021362305,0.0057678223,-0.16113281,0.008239746,0.07861328,-0.10546875,0.0014877319,-0.33398438,-0.06298828,-0.13867188,0.044921875,-0.05834961,0.20019531,-0.044921875,0.010192871,-0.038085938,-0.18066406,-0.037597656,-0.1796875,0.053710938,-0.11621094,-0.10107422,0.11035156,-0.12792969,-0.10058594,-0.05126953,-0.12988281,-0.041015625,0.26953125,-0.18554688,0.12158203,0.100097656,-0.06640625,0.0859375,-0.30078125,0.008239746,0.080566406,-0.021972656,0.09716797,-0.03955078,-0.18164062,-0.12988281,-0.016967773,0.068359375,0.33984375,0.11328125,0.07421875,0.04296875,-0.10595703,0.23242188,-0.18261719,0.13378906,0.099609375,-0.025512695,-0.044189453,-0.031982422,-0.057861328,0.028686523,-0.10205078,-0.125,-0.111328125,-0.06542969,0.234375,0.095703125,-0.17285156,0.10986328,0.014831543,0.038085938,-0.12402344,-0.013671875,0.0095825195,-0.26953125,-0.032226562,0.10595703,-0.3515625,0.063964844,-0.14355469,0.16503906,-0.024414062,0.014587402,-0.095214844,-0.059326172,-0.110839844,0.12207031,0.084472656,-0.011413574,-0.06738281,-0.32421875,-0.083984375,-0.26757812,0.0011367798,-0.19140625,0.0134887695,0.05517578,0.12451172,0.08105469,-0.084472656,0.12060547,-0.12792969,0.091308594,-0.16601562,0.23242188,-0.11621094,0.10449219,0.09277344,-0.0095825195,0.014709473,-0.022338867,0.40429688,0.13867188,-0.0026397705,0.03930664,-0.19824219,-0.03857422,-0.16015625,0.10107422,0.076171875,0.19238281,0.050048828,0.038330078,-0.048828125,-0.11621094,-0.0546875,-0.17871094,0.04711914,0.040771484,-0.13867188,-0.020385742,0.038330078,-0.036376953,-0.17773438,0.079589844,0.016601562,-0.115722656,-0.056884766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.060546875,0.14160156,0.061523438,0.032470703,-0.20214844,0.055908203,-0.09375,-0.08984375,-0.056884766,-0.0076904297,-0.09716797,0.021850586,-0.09423828,-0.18457031,0.055419922,-0.107421875,0.016601562,0.017822266,-0.10595703,0.12695312,-0.15625,-0.0031433105,0.056396484,-0.08935547,0.09375,-0.053710938,0.0030975342,0.07080078,0.045654297,0.0031433105,0.0059814453,0.041992188,0.07470703,0.037109375,0.083496094,0.07128906,0.034179688,0.037353516,0.01586914,-0.12695312,0.05908203,0.049316406,0.0057373047,0.037841797,-0.055908203,-0.13964844,0.10107422,-0.08886719,-0.08300781,0.0012435913,-0.11279297,0.041503906,-0.061523438,-0.092285156,0.03930664,0.26171875,-0.045410156,0.08984375,-0.16503906,-0.020629883,0.053710938,-0.0072021484,0.100097656,-0.03930664,-0.0064697266,0.11328125,-0.0095825195,-0.024291992,-0.0021209717,0.053710938,-0.10595703,-0.03515625,0.010192871,0.14550781,0.01586914,0.10107422,0.067871094,0.03491211,-0.0043640137,-0.171875,0.10205078,-0.020629883,-0.018188477,-0.08984375,-0.14648438,-0.072265625,-0.08496094,-0.027954102,-0.059814453,0.03125,-0.06591797,-0.14257812,-0.09667969,-0.024536133,0.022705078,0.027832031,0.026977539,-0.07373047,-0.1328125,0.0054626465,0.0001373291,0.010070801,-0.005279541,-0.16210938,0.068359375,-0.07470703,0.08886719,0.0703125,0.1328125,-0.041015625,-0.0390625,0.0056762695,-0.05078125,0.09667969,-0.03540039,-0.072265625,-0.14160156,0.0053100586,-0.0859375,-0.010559082,0.03564453,0.00793457,-0.048828125,0.099121094,0.14746094,-0.036376953,-0.09765625,-0.28320312,-0.13085938,0.09375,0.01965332,0.08251953,-0.0046691895,0.04272461,0.033935547,0.030151367,0.048095703,-0.072753906,0.040283203,0.123535156,0.061035156,0.09326172,-0.122558594,-0.19921875,-0.04345703,0.07128906,0.06982422,-0.18066406,-0.037841797,0.083496094,0.10546875,-0.009643555,-0.09326172,0.11816406,0.015380859,0.1484375,-0.079589844,-0.13183594,0.041015625,-0.095703125,0.059570312,0.087890625,-0.0035095215,-0.123535156,-0.104003906,-0.118652344,-0.008483887,-0.107421875,-0.0099487305,-0.03540039,0.0073242188,-0.10498047,-0.012329102,0.036865234,-0.092285156,-0.13671875,0.020141602,-0.07080078,-0.020385742,-0.122558594,0.092285156,-0.103515625,-0.072753906,-0.06347656,-0.10205078,-0.018188477,-0.07470703,-0.06591797,-0.0546875,-0.05908203,0.007293701,0.03149414,0.064941406,-0.04736328,-0.053222656,-0.22949219,0.006134033,0.123046875,0.0064086914,0.021484375,-0.046142578,-0.11035156,0.034179688,0.0234375,0.09423828,-0.021606445,-0.12792969,-0.018066406,0.001121521,0.068847656,-0.041748047,-0.15136719,-0.008544922,0.076171875,0.03491211,-0.12792969,0.080078125,-0.053222656,0.10644531,0.037353516,0.012329102,-0.0040893555,0.08154297,-0.013427734,-0.017822266,-0.026000977,0.000579834,-0.12792969,-0.17089844,0.007232666,-0.032958984,-0.17089844,-0.084472656,-0.0390625,-0.06689453,0.005218506,-0.11035156,0.002822876,-0.10595703,-0.080566406,0.068359375,-0.033203125,-0.20117188,0.008239746,0.011474609,-0.095214844,0.00014972687,-0.16601562,-0.03466797,-0.017578125,-0.045654297,-0.07373047,-0.040283203,-0.1171875,-0.068359375,-0.03100586,-0.14355469,-0.053466797,0.0027008057,-0.11035156,-0.12695312,0.009094238,-0.029541016,-0.03857422,-0.050048828,-0.15722656,-0.076660156,-0.06640625,0.048828125,0.036132812,-0.10498047,-0.018310547,-0.08544922,0.05078125,-0.018676758,-0.10449219,-0.059326172,0.15332031,0.05493164,-0.09716797,-0.005706787,-0.15722656,-0.111816406,-0.03491211,-0.1640625,-0.071777344,-0.07763672,-0.03515625,-0.14355469,0.008239746,0.033691406,-0.091308594,-0.042236328,-0.07861328,0.07128906,-0.0064086914,0.035888672,-0.15039062,0.0066223145,-0.043701172,-0.052246094,-0.1171875,0.092285156,0.0134887695,-0.118652344,0.0065612793,-0.16113281,-0.203125,0.087890625,-0.048828125,0.041992188,0.026367188,0.072265625,-0.099121094,-0.00592041,0.084472656,-0.024780273,0.016601562,-0.100097656,-0.04296875,-0.07861328,0.11425781,-0.06933594,-0.12109375,-0.049316406,0.012817383,-0.10058594,0.11669922,0.020996094,-0.025512695,-0.056396484,-0.024902344,0.008361816,-0.11230469,-0.07519531,0.032958984,-0.07763672,-0.014343262,-0.19433594,-0.19042969,-0.119140625,0.05834961,-0.06640625,-0.009460449,-0.015991211,-0.2109375,0.028320312,-0.095703125,-0.05493164,0.003036499,-0.20996094,-0.05834961,0.056396484,-0.03149414,-0.18164062,-0.019897461,0.08105469,0.0065307617,-0.018920898,-0.026489258,0.08544922,-0.125,0.044921875,-0.02368164,-0.1484375,0.040771484,-0.12988281,-0.11669922,0.03857422,-0.007659912,-0.21875,-0.21289062,-0.0069274902,-0.087402344,-0.11425781,0.0032043457,0.07470703,-0.15527344,-0.09277344,-0.026733398,-0.0625,0.060058594,-0.1328125,-0.048583984,-0.014282227,-0.00793457,-0.05810547,-0.029296875,0.044433594,0.10546875,0.09082031,-0.234375,0.08935547,-0.11328125,-0.060302734,-0.08886719,-0.075683594,-0.14746094,-0.087890625,0.046142578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.044677734,0.053955078,-0.46679688,-0.038085938,-0.1171875,-0.055908203,0.026733398,-0.41992188,0.07324219,-0.006866455,0.020751953,-0.064453125,0.053222656,-0.012939453,-0.053710938,-0.29101562,0.057617188,-0.0390625,-0.12207031,0.017822266,0.008361816,-0.20605469,0.15820312,-0.1328125,-0.11425781,-0.026245117,0.18945312,0.0043029785,0.053955078,0.0016784668,-0.08544922,-0.06738281,-0.040527344,-0.05102539,-0.11279297,0.1171875,-0.08496094,0.12207031,0.087890625,-0.056640625,-0.052246094,-0.007446289,0.15039062,0.09863281,-0.024414062,0.14648438,-0.16992188,-0.029785156,-0.016601562,-0.15332031,-0.11279297,-0.025024414,-0.08203125,-0.16992188,-0.0859375,-0.023071289,0.020141602,-0.025756836,-0.013000488,-0.095214844,-0.027709961,0.071777344,-0.07910156,0.083984375,0.03149414,-0.15820312,-0.037353516,-0.103515625,-0.07128906,0.16015625,0.036132812,0.040283203,0.10498047,0.0009536743,-0.12402344,-0.20703125,-0.13378906,-0.07128906,0.08105469,-0.16113281,0.10546875,-0.03149414,-0.23339844,0.013977051,0.04345703,-0.23339844,0.01977539,-0.18457031,-0.05419922,-0.05834961,-0.26953125,0.05859375,0.04711914,-0.006713867,-0.12011719,-0.25390625,0.04736328,-0.22363281,-0.09667969,0.0032043457,0.068847656,-0.12695312,0.11279297,-0.18457031,-0.10546875,-0.072753906,-0.07470703,-0.104003906,0.06347656,-0.08886719,-0.07324219,0.17675781,0.106933594,-0.22363281,-0.080078125,0.12890625,0.041748047,0.047851562,0.028686523,-0.14941406,-0.087890625,0.004211426,0.111328125,0.024536133,-0.010070801,0.33203125,0.009643555,0.19921875,0.10986328,-0.15136719,-0.16015625,0.017211914,-0.2578125,-0.16015625,0.08886719,0.12060547,0.029296875,0.014770508,0.09472656,-0.20410156,-0.107421875,0.037353516,-0.060546875,-0.08496094,0.07714844,-0.045166016,-0.014587402,-0.118652344,-0.08984375,-0.007659912,0.07421875,0.08984375,-0.0039978027,-0.111328125,-0.08886719,-0.1328125,-0.140625,-0.03173828,-0.026123047,-0.0036010742,-0.052490234,-0.13769531,-0.063964844,0.13574219,-0.104003906,-0.25585938,-0.026855469,-0.063964844,-0.07910156,-0.20800781,0.10644531,-0.13085938,0.09375,-0.010803223,0.10107422,-0.057128906,0.05053711,-0.12109375,0.05908203,0.12451172,0.033691406,-0.068359375,0.12597656,0.036621094,0.106933594,-0.071777344,0.08642578,-0.032226562,-0.056640625,-0.05493164,0.02368164,0.20703125,0.014770508,-0.20703125,0.14550781,-0.099609375,-0.012451172,-0.18164062,-0.03466797,-0.076660156,0.08935547,0.0625,0.037841797,0.072265625,-0.045166016,0.12988281,-0.16796875,-0.0045776367,0.08496094,-0.044677734,0.0859375,-0.13085938,-0.23339844,0.16308594,-0.265625,-0.0703125,0.0546875,0.096191406,0.09667969,0.03491211,0.052978516,0.08300781,0.04345703,0.13867188,-0.0390625,0.13476562,-0.0099487305,-0.140625,-0.140625,-0.0390625,-0.12109375,0.12060547,-0.07714844,0.023803711,-0.19042969,0.064941406,-0.13769531,0.0030975342,0.018432617,-0.24316406,-0.0859375,0.064453125,0.115234375,0.029418945,0.09326172,0.02722168,-0.14550781,-0.16308594,0.03564453,-0.111816406,0.390625,-0.13574219,0.15429688,0.14648438,-0.036865234,-0.028442383,-0.060058594,-0.033935547,0.19921875,0.045898438,0.10888672,0.13769531,0.083496094,-0.15625,-0.02722168,0.13769531,0.025634766,0.053710938,-0.037841797,-0.052978516,-0.041992188,0.03491211,0.2109375,0.19042969,0.25195312,-0.078125,-0.05102539,0.036621094,0.024169922,-0.053955078,0.09667969,0.107421875,-0.015319824,0.057617188,0.020751953,-0.203125,-0.051513672,-0.041503906,-0.040771484,0.16699219,0.18554688,-0.099609375,0.02319336,0.03930664,0.22558594,-0.024291992,0.0014572144,0.057861328,0.026977539,-0.032226562,0.083984375,-0.14746094,0.04638672,-0.111328125,0.11621094,-0.053466797,0.16503906,-0.072265625,0.13085938,-0.25976562,-0.1484375,0.13574219,-0.051513672,-0.21386719,-0.025634766,0.22851562,-0.083496094,-0.15625,-0.016479492,-0.12109375,-0.02331543,0.09667969,-0.26953125,-0.123535156,-0.20117188,-0.032958984,-0.03930664,-0.023925781,-0.060791016,0.10498047,0.05883789,0.020629883,0.095703125,0.07763672,-0.18847656,-0.16894531,-0.02734375,-0.00982666,-0.14648438,-0.1484375,-0.008972168,-0.12792969,0.09033203,-0.27929688,-0.017333984,0.087890625,0.018432617,-0.20898438,0.111816406,0.14648438,-0.23632812,0.061767578,-0.029418945,-0.09716797,0.07470703,-0.00680542,-0.09423828,-0.030761719,-0.0033874512,-0.29492188,-0.0703125,0.103027344,0.10595703,-0.123046875,-0.08300781,-0.053466797,-0.032958984,0.05810547,0.23144531,-0.021850586,-0.022583008,-0.059814453,0.05493164,0.13574219,0.06738281,-0.12988281,0.057128906,0.18261719,0.087402344,0.11230469,-0.14550781,-0.103027344,0.0146484375,0.12792969,0.30664062,0.31054688,-0.12060547,-0.09326172,-0.032226562,0.27929688,-0.23925781,-0.03149414,-0.072753906,0.18066406,-0.010498047,0.2109375,-0.36328125,-0.24316406,-0.1328125,0.020751953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12402344,-0.16992188,-0.083984375,0.021728516,0.18359375,0.12695312,-0.114746094,0.052490234,-0.044677734,0.17578125,0.16113281,-0.20410156,0.011962891,0.103027344,-0.00793457,-0.040283203,0.06225586,-0.087402344,0.047851562,-0.18847656,-0.052246094,0.1953125,0.22363281,-0.080566406,-0.040527344,0.08984375,0.075683594,0.15820312,-0.11328125,-0.037109375,-0.024658203,-0.1796875,-0.095214844,0.025024414,0.06933594,-0.10888672,-0.06225586,-0.055664062,0.16601562,-0.02319336,-0.0053710938,0.0859375,-0.049560547,-0.12890625,0.048828125,-0.2265625,0.008728027,-0.012329102,-0.072265625,-0.15527344,-0.05908203,-0.17089844,-9.2983246e-05,0.18359375,0.07128906,-0.05102539,-0.029174805,-0.028930664,-0.026733398,-0.16894531,0.026123047,-0.203125,0.10058594,-0.044433594,0.08984375,-0.28515625,0.010375977,-0.16992188,-0.007293701,-0.07519531,0.09667969,-0.2265625,-0.032958984,-0.002456665,-0.12890625,-0.24511719,0.060546875,-0.00982666,-0.06933594,-0.20898438,-0.028442383,-0.15722656,-0.037841797,-0.08300781,-0.09667969,0.12158203,-0.24121094,0.08300781,0.10253906,-0.0037078857,-0.1484375,-0.06591797,-0.06982422,0.044433594,0.053710938,0.14550781,0.002166748,-0.1875,0.12695312,-0.025756836,0.017333984,-0.040527344,-0.020751953,-0.014404297,0.06201172,-0.008422852,0.017944336,-0.17871094,-0.06542969,0.055664062,-0.038330078,0.055419922,-0.25195312,-0.056884766,0.16015625,0.16015625,0.009155273,0.047851562,-0.06225586,0.0073242188,-0.107910156,-0.16210938,0.125,-0.09033203,-0.19335938,-0.068359375,0.05493164,-0.23242188,0.095214844,-0.025878906,0.15234375,-0.16601562,0.029418945,0.140625,-0.0234375,0.016357422,0.041503906,-0.08935547,0.010437012,0.013122559,0.103515625,-0.064941406,-0.052246094,-0.33984375,0.015075684,-0.03564453,-0.107421875,-0.052001953,-0.14941406,-0.22753906,-0.063964844,0.11328125,-0.07910156,-0.13183594,-0.11376953,-0.22949219,-0.008728027,-0.11425781,-0.110839844,0.05834961,0.012268066,-0.012512207,0.03564453,-0.33007812,-0.07910156,0.08544922,-0.16699219,0.080078125,0.014770508,-0.13183594,-0.11425781,0.056640625,0.044433594,0.048583984,-0.21972656,-0.18359375,-0.02746582,0.016967773,0.05908203,0.12207031,-0.0859375,0.06591797,0.15820312,-0.31640625,0.026977539,-0.016113281,-0.16210938,0.19628906,-0.0067749023,0.17285156,-0.10546875,-0.01977539,-0.079589844,0.0703125,0.1328125,0.06640625,0.08984375,-0.06982422,-0.109375,0.034423828,0.13769531,-0.0068969727,0.12988281,0.21777344,-0.08642578,0.044921875,-0.09472656,0.13476562,0.08105469,-0.17773438,0.16308594,-0.04321289,-0.09277344,-0.02319336,0.05444336,0.012817383,0.060058594,-0.115722656,0.21386719,-0.064453125,-0.04321289,-0.32617188,0.06982422,-0.20019531,-0.11230469,0.11425781,-0.09814453,-0.26757812,0.029174805,-0.049316406,0.06298828,0.020263672,-0.068359375,-0.06738281,-0.05029297,-0.14941406,-0.045654297,-0.083984375,0.087402344,-0.0005455017,-0.028442383,0.14941406,0.08935547,-0.044433594,0.076171875,0.27734375,-0.055664062,0.20214844,-0.025512695,0.08203125,-0.21191406,-0.029541016,-0.030639648,0.10205078,0.018432617,-0.022705078,-0.05444336,-0.08203125,0.19824219,-0.118652344,0.088378906,0.2109375,-0.39453125,-0.10888672,-0.053710938,-0.13867188,0.029418945,0.23828125,0.071777344,0.099609375,-0.15136719,0.0054016113,-0.04296875,0.0022583008,0.07373047,-0.104003906,0.07714844,-0.05883789,0.006591797,0.025756836,-0.007537842,-0.171875,0.0005607605,-0.09082031,0.07519531,-0.007293701,-0.07763672,-0.25,-0.03881836,0.025756836,0.05029297,0.01184082,0.04736328,-0.023071289,-0.09082031,-0.15429688,-0.052001953,-0.064941406,0.006500244,-0.18554688,-0.099609375,-0.040039062,-0.10253906,-0.15332031,0.049560547,-0.1015625,0.20996094,0.06225586,-0.12207031,0.14746094,0.024780273,-0.15527344,0.111328125,-0.09472656,0.012634277,-0.18359375,-0.041503906,-0.042236328,-0.111816406,-0.0859375,0.076660156,0.22167969,-0.033203125,0.07519531,0.072753906,0.09814453,-0.07861328,0.296875,0.0859375,0.12988281,-0.16308594,0.07128906,0.08642578,0.22070312,0.005706787,0.029296875,0.0859375,-0.022705078,-0.053955078,-0.18359375,0.0029296875,-0.049072266,0.029785156,-0.12792969,-0.072265625,-0.1328125,-0.016601562,-0.19726562,-0.021972656,0.27734375,0.014160156,0.12011719,-0.07080078,0.09667969,0.047851562,-0.21386719,0.1640625,-0.060791016,0.2421875,-0.104003906,0.10839844,-0.09472656,0.28125,-0.18457031,0.22363281,0.13378906,0.05493164,0.14355469,-0.03100586,0.055908203,0.16601562,-0.28320312,-0.033203125,-0.15234375,-0.234375,-0.30273438,0.008972168,-0.087402344,0.041992188,0.0703125,0.01965332,-0.03515625,-0.13964844,0.011413574,0.0013427734,0.057128906,0.051513672,-0.079589844,-0.26171875,0.10058594,0.20898438,-0.14355469,-0.015136719,0.04663086,-0.0060424805,-0.06640625,-0.04345703,-0.20410156,0.02758789,0.049072266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.20019531,-0.265625,-0.34765625,-0.026733398,-0.13085938,0.16113281,-0.06640625,-0.12695312,-0.16308594,-0.31640625,-0.29492188,-0.34375,-0.2578125,-0.15136719,0.056640625,-0.20410156,-0.031982422,-0.12158203,-0.25,-0.18359375,-0.17578125,0.11230469,-0.21484375,-0.26953125,-0.14453125,-0.26367188,-0.0027313232,-0.1953125,-0.12695312,-0.08544922,0.029907227,-0.00592041,0.10595703,-0.110839844,-0.20507812,-0.28515625,-0.15722656,-0.049072266,-0.046875,0.005706787,-0.087890625,-0.30664062,-0.13867188,-0.18164062,-0.203125,-0.08300781,0.083496094,-0.068847656,-0.13085938,-0.3046875,-0.3359375,-0.20898438,-0.044189453,-0.053955078,-0.028564453,0.07519531,-0.03515625,-0.25976562,-0.24511719,-0.084472656,-0.12451172,-0.13964844,-0.036132812,-0.20703125,-0.16894531,-0.050048828,-0.25195312,-0.3828125,0.04663086,-0.005126953,-0.08251953,-0.12988281,0.044433594,-0.47460938,0.11816406,-0.29296875,-0.10449219,-0.1484375,-0.0099487305,-0.13964844,0.18652344,-0.27734375,-0.25390625,0.048339844,0.08105469,0.080078125,-0.14257812,0.18164062,-0.076171875,-0.24414062,-0.17480469,-0.16308594,-0.057617188,-0.091796875,-0.140625,0.05859375,-0.06347656,-0.05834961,-0.13183594,-0.04663086,-0.048828125,-0.05517578,-0.08935547,-0.0040283203,-0.018798828,-0.29296875,0.20800781,0.009155273,-0.037353516,-0.04321289,-0.22070312,-0.076171875,-0.14941406,-0.026123047,-0.16699219,0.035888672,0.05517578,0.3046875,0.045654297,0.2421875,0.057373047,-0.15136719,0.15039062,-0.08984375,0.20996094,-0.0025024414,-0.025146484,-0.033203125,0.07470703,-0.029296875,0.03564453,-0.15527344,0.13378906,-0.029296875,0.123535156,0.08935547,-0.0061950684,-0.125,-0.056884766,0.12158203,0.06225586,0.0076904297,0.07519531,-0.037109375,0.08105469,0.03173828,-0.1484375,0.12109375,0.15722656,0.08984375,-0.13867188,0.0546875,-0.0026397705,-0.22167969,0.011108398,0.067871094,0.09472656,-0.043945312,0.12890625,0.0234375,-0.10888672,-0.17285156,-0.122558594,0.106933594,0.15917969,0.12890625,0.08691406,0.012084961,0.04345703,-0.002380371,-0.22167969,0.09667969,-0.016357422,0.06640625,0.08154297,0.10253906,0.07324219,-0.010070801,-0.12890625,0.033691406,0.030151367,0.25585938,-0.002090454,0.06201172,-0.079589844,-0.0024719238,0.05859375,-0.140625,0.096191406,0.0028686523,-0.04711914,0.09375,-0.0625,-0.16308594,0.22460938,0.10644531,-0.0036010742,0.08935547,0.048339844,0.2734375,0.019897461,-0.19140625,0.1953125,0.13671875,0.047851562,-0.020019531,0.125,0.060546875,-0.083496094,-0.064941406,-0.10449219,-0.10107422,-0.01977539,0.0138549805,0.059326172,0.071777344,0.13085938,-0.045898438,0.012573242,-0.15332031,-0.05126953,0.08154297,0.15039062,-0.013061523,-0.09814453,0.15136719,0.021484375,0.12597656,-0.087402344,0.026611328,-0.10107422,-0.12402344,0.043701172,0.015075684,0.07861328,0.021850586,0.044433594,0.06933594,-0.083984375,0.091796875,0.008666992,0.026855469,0.035888672,-0.11621094,0.10546875,0.13476562,0.21777344,0.14941406,0.053222656,0.21484375,0.0076293945,-0.056640625,0.17089844,-0.0025634766,0.01574707,-0.033691406,-0.13378906,0.17382812,0.04663086,-0.14160156,0.007537842,0.016723633,0.09326172,-0.16699219,0.025024414,0.03491211,0.25390625,0.061279297,0.10595703,0.09277344,-0.072753906,-0.0017623901,0.029663086,0.095703125,0.12597656,-0.048095703,-0.076660156,-0.07470703,0.075683594,0.024169922,-0.08886719,0.076171875,-0.020507812,0.12695312,-0.006713867,-0.05029297,0.10888672,-0.109375,-0.100097656,-0.095703125,-0.044921875,-0.059326172,0.09082031,0.079589844,0.048583984,-0.016479492,-0.08496094,0.10546875,0.26171875,-0.051757812,0.1328125,-0.0032348633,0.008239746,0.18066406,-0.13183594,-0.021850586,-0.020019531,0.115234375,0.0703125,-0.0107421875,0.095703125,0.15625,0.114746094,0.10546875,-0.03149414,-0.008972168,0.018188477,0.053710938,-0.05053711,0.049560547,-0.055664062,0.1484375,-0.07714844,0.046875,0.055419922,0.01361084,-0.09863281,-0.016601562,0.026611328,0.06982422,-0.09082031,-0.12695312,0.067871094,-0.296875,-0.14746094,-0.0075683594,-0.25,-0.05834961,-0.030761719,-0.078125,-0.076660156,-0.026367188,-0.13085938,-0.13085938,0.024658203,-0.099121094,-0.11376953,-0.13964844,0.12988281,0.08105469,-0.11767578,-0.2109375,-0.05834961,0.026367188,0.122558594,-0.015991211,0.19433594,-0.328125,-0.06347656,-0.17285156,0.04321289,0.12792969,-0.061035156,-0.049804688,0.05493164,0.088378906,-0.18457031,-0.033935547,0.036132812,-0.019165039,0.13183594,0.07128906,-0.092285156,0.13378906,0.11328125,0.18457031,-0.12695312,0.17382812,-0.071777344,-0.057373047,0.076660156,0.064941406,-0.057373047,-0.010681152,-0.11279297,-0.20410156,0.08203125,-0.03466797,-0.08300781,-0.123535156,0.23144531,0.123046875,-0.08203125,-0.0099487305,0.028564453,0.111816406,0.055419922,0.103027344,-0.19335938,0.08154297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15136719,0.12451172,-0.15332031,-0.025756836,-0.3203125,0.12207031,-0.13671875,-0.0008430481,0.05053711,-0.06982422,0.13574219,0.14453125,-0.008911133,-0.11376953,-0.07470703,-0.27148438,-0.025878906,-0.012145996,-0.28710938,0.20507812,-0.45117188,0.24902344,-0.011230469,-0.04638672,-0.011047363,-0.27539062,-0.039794922,0.067871094,0.3046875,0.16113281,-0.05517578,-0.06640625,-0.075683594,-0.06591797,0.023071289,0.00970459,-0.15039062,0.033447266,0.09033203,0.006072998,0.043701172,-0.19726562,-0.10253906,-0.10058594,-0.20214844,-0.014831543,0.10986328,0.12597656,-0.13671875,0.11669922,-0.296875,0.05444336,-0.037109375,0.37890625,-0.15625,-0.00015449524,0.068847656,0.067871094,-0.17675781,-0.0234375,-0.21679688,-0.19238281,0.052490234,0.07421875,0.18847656,0.17773438,-0.13183594,-0.16601562,-0.17578125,0.30273438,0.060791016,-0.18359375,-0.057617188,-0.29492188,-0.09765625,-0.011047363,-0.07910156,-0.203125,-0.06347656,0.056152344,0.12890625,-0.20214844,-0.114746094,0.04638672,-0.24316406,0.17480469,0.05053711,0.08935547,0.03540039,-0.096191406,-0.26757812,0.030883789,-0.046142578,-0.011657715,-0.11621094,-0.016479492,0.022460938,-0.1484375,-0.328125,0.013000488,-0.04272461,-0.02319336,0.037109375,0.12597656,0.043945312,-0.20117188,0.047607422,-0.10058594,0.048583984,0.016235352,-0.076171875,-0.08935547,-0.20019531,-0.110839844,-0.0035247803,0.1796875,-0.12597656,0.13964844,-0.16894531,0.0066833496,-0.02734375,-0.119628906,-0.115234375,-0.042236328,0.032714844,0.060302734,-0.05859375,-0.0020599365,-0.010864258,0.083496094,0.0063476562,-0.18945312,0.016967773,0.04248047,0.021118164,-0.05444336,0.015991211,-0.07080078,-0.029418945,-0.103515625,-0.05883789,-0.095214844,0.1953125,0.048095703,-0.15332031,0.11035156,-0.21582031,0.08886719,-0.072265625,0.22363281,0.014282227,-0.07470703,-0.12060547,-0.265625,-0.22265625,0.037841797,-0.115234375,-0.21289062,0.13378906,0.22265625,0.026855469,-0.014038086,-0.057617188,-0.095214844,0.09082031,-0.09423828,-0.115722656,0.12402344,0.06298828,0.033447266,0.03125,0.034423828,0.12451172,0.051513672,0.008911133,-0.12792969,-0.031982422,-0.1328125,-0.19921875,0.09375,-0.26367188,-0.13574219,-0.030395508,0.10888672,0.0011672974,-0.16894531,-0.091308594,-0.06640625,-0.076660156,-0.02368164,-0.20019531,-0.053222656,-0.37890625,-0.0859375,-0.04296875,0.005554199,-0.095214844,-0.05102539,-0.10205078,-0.1796875,0.08105469,-0.10107422,0.080078125,-0.110839844,-0.040039062,-0.15332031,-0.20898438,-0.07910156,-0.16601562,0.08886719,-0.083984375,-0.23925781,-0.3046875,-0.19042969,-0.057861328,-0.24707031,-0.033203125,-0.15917969,-0.15039062,-0.013916016,0.03112793,-0.08105469,-0.024169922,0.078125,-0.27148438,0.0003681183,-0.15332031,0.2578125,-0.09033203,0.12890625,-0.24316406,-0.06982422,-0.07128906,0.050048828,0.13769531,0.041503906,-0.0036773682,0.1484375,0.02746582,0.05078125,0.17773438,0.15332031,-0.22558594,-0.036621094,0.12109375,0.06542969,0.0016021729,-0.023803711,0.03955078,0.064453125,0.05419922,0.0018081665,0.16503906,0.091796875,0.122558594,-0.12988281,0.07128906,-0.15820312,-0.29101562,-0.021606445,0.110839844,-0.017211914,0.071777344,-0.08886719,0.115722656,0.068847656,0.04736328,0.075683594,-0.026977539,-0.14648438,0.03149414,-0.1796875,-0.31445312,-0.02319336,0.018432617,-0.03955078,0.16601562,-0.09472656,0.0063476562,0.044677734,-0.008300781,-0.016601562,-0.08203125,-0.05834961,-0.09863281,-0.17285156,0.10107422,-0.15917969,-0.21386719,-0.046875,-0.09863281,0.010681152,0.06201172,-0.11376953,-0.100097656,0.095214844,0.040283203,-0.118652344,0.11816406,0.037353516,0.011230469,-0.07470703,0.15527344,-0.06933594,0.06689453,-0.16015625,-0.0703125,0.17773438,-0.057617188,-0.017578125,-0.041992188,0.21972656,-0.034423828,-0.028808594,0.05102539,0.12207031,-0.25390625,0.12158203,0.08203125,0.09765625,0.05053711,0.17480469,-0.21972656,0.092285156,0.014221191,-0.13085938,0.063964844,0.1328125,-0.07128906,0.13085938,-0.09375,-0.091308594,-0.046875,-0.06738281,-0.02734375,0.09082031,8.6307526e-05,-0.16210938,0.0011062622,0.27929688,-0.07861328,-0.10205078,0.12792969,-0.21777344,-0.107421875,0.02722168,0.041992188,-0.13085938,0.14550781,0.14355469,0.02722168,0.09326172,-0.16894531,-0.10449219,0.068847656,0.018188477,0.057617188,-0.114746094,-0.0115356445,-0.07080078,0.05419922,0.060302734,0.060791016,0.096191406,-0.08984375,0.15625,-0.08886719,0.0046691895,0.00062179565,-0.00018405914,-0.084472656,-0.029541016,-0.08154297,-0.17871094,-0.13378906,0.16992188,-0.07519531,-0.0027770996,0.20898438,-0.0071411133,-0.025878906,0.041992188,0.07861328,-0.0015869141,0.12158203,0.036132812,0.1953125,0.171875,-0.14355469,0.0126953125,-0.35351562,-0.048095703,-0.013427734,0.0066833496,-0.30859375,0.1171875,-0.056152344,0.07714844,0.1015625,-0.171875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12402344,-0.359375,0.07714844,0.05078125,0.084472656,0.27539062,-0.26757812,-0.06933594,-0.19726562,-0.1953125,-0.1875,0.027709961,0.099121094,0.23535156,-0.104003906,0.06640625,0.016601562,-0.1796875,0.088378906,0.029418945,-0.02331543,0.06347656,0.06640625,0.045410156,-0.08154297,0.11669922,0.16992188,0.13769531,-0.10986328,-0.06982422,-0.10839844,-0.022705078,0.13867188,0.16113281,0.076660156,0.046142578,0.14746094,0.024780273,0.041992188,-0.07373047,-0.011962891,-0.013000488,0.26171875,0.059814453,-0.008239746,0.028686523,0.016479492,0.11230469,0.009216309,0.038085938,-0.123046875,0.16308594,-0.022460938,-0.19335938,0.14160156,-0.08154297,0.032226562,-0.037597656,-0.053955078,-0.21679688,0.072753906,0.0015945435,-0.19824219,-0.063964844,-0.18945312,-0.26953125,-0.07080078,-0.057373047,-0.12695312,-0.037353516,0.041015625,-0.17773438,-0.010314941,-0.2734375,-0.16699219,-0.25585938,0.11767578,-0.021362305,-0.26171875,0.031982422,0.12695312,-0.34179688,0.020507812,-0.05419922,-0.018188477,-0.12890625,-0.10449219,-0.11376953,-0.119140625,-0.1484375,0.110839844,0.027832031,0.17578125,0.11767578,0.056396484,0.064941406,0.0030212402,0.0625,-0.055908203,-0.14355469,-0.038085938,-0.025878906,0.016601562,0.03564453,0.06298828,0.21582031,-0.01928711,0.25,0.0064697266,0.25390625,0.05517578,0.006439209,-0.045898438,0.03125,0.234375,0.14355469,-0.080566406,0.045654297,-0.045410156,-0.039794922,0.07763672,0.29296875,-0.12109375,0.040771484,-0.043945312,-0.02331543,0.041992188,-0.03515625,0.029296875,-0.13574219,-0.099121094,0.13085938,0.059570312,-0.044433594,0.036865234,-0.006958008,-0.016357422,0.05078125,-0.07080078,-0.0048217773,0.14453125,-0.18359375,0.17480469,-0.109375,0.08544922,0.103515625,0.080566406,0.092285156,-0.07128906,-0.064453125,0.16210938,0.14550781,-0.24023438,-0.05029297,-0.05444336,-0.060302734,-0.007019043,-0.15527344,0.00018119812,-0.15527344,0.10498047,0.010864258,-0.17480469,0.023803711,9.727478e-05,-0.019165039,-0.11816406,-0.055908203,-0.09082031,-0.32226562,0.125,-0.07763672,0.21972656,0.078125,-0.048828125,-0.12890625,-0.27539062,-0.13964844,0.010131836,-0.19042969,0.060546875,-0.03515625,-0.27734375,-0.02734375,-0.033691406,-0.13085938,0.06689453,0.1015625,0.036865234,0.13574219,0.11376953,-0.0146484375,0.17382812,-0.109375,0.043701172,0.012207031,0.08544922,-0.27539062,0.008911133,-0.018066406,-0.12060547,0.12988281,0.11425781,0.023071289,-0.11230469,0.111816406,-0.024047852,-0.055908203,0.04321289,-0.08154297,0.091796875,0.23925781,-0.048339844,-0.27929688,0.18554688,0.08935547,-0.07373047,0.051513672,-0.053466797,-0.095214844,-0.16308594,-0.19921875,-0.076660156,-0.015319824,-0.15527344,-0.20019531,-0.10644531,0.049316406,0.2734375,0.19824219,-0.020996094,-0.053466797,0.04638672,0.00045394897,0.24609375,-0.33007812,-0.01184082,0.032714844,-0.071777344,-0.27539062,-0.036865234,-0.114746094,-0.14355469,-0.10449219,-0.10986328,-0.022094727,0.021240234,0.025146484,0.122558594,-0.42578125,-0.15722656,-0.15332031,0.08154297,0.013793945,0.016967773,-0.17480469,0.024291992,-0.063964844,-0.115722656,-0.088378906,-0.123535156,0.046875,-0.02331543,-0.16210938,-0.012451172,-0.26953125,0.16894531,-0.06738281,-0.12207031,0.039794922,-0.2421875,-0.14550781,0.19726562,0.00010967255,0.01940918,-0.08691406,0.27929688,-0.1171875,-0.15527344,0.04272461,0.038085938,-0.12988281,-0.118652344,0.095214844,0.0004711151,0.032714844,0.17578125,0.0703125,0.06542969,0.056152344,0.0012207031,-0.0009918213,-0.04248047,-0.11230469,0.001914978,-0.003753662,-0.15039062,0.046142578,0.009521484,0.068359375,0.023803711,-0.024902344,0.14550781,-0.04638672,0.037353516,0.028930664,-0.013793945,-0.1328125,-0.009887695,-0.032470703,-0.08544922,0.14941406,0.010681152,0.055664062,-0.18457031,-0.010375977,-0.036132812,-0.014343262,-0.15625,-0.022583008,0.029663086,0.12451172,0.08203125,0.0032806396,0.076660156,0.14746094,-0.084472656,-0.048095703,0.17285156,-0.36328125,0.15722656,0.041748047,-0.05029297,-0.07373047,-0.17578125,-0.08203125,-0.024047852,-0.10107422,0.076171875,0.18359375,0.044921875,0.029052734,-0.123535156,0.036865234,0.024414062,-0.265625,0.04345703,0.14941406,-0.12988281,-0.08935547,-0.011962891,0.061523438,-0.07470703,-0.0064697266,-0.008666992,0.005584717,-0.09033203,0.29296875,0.017822266,0.012451172,-0.13574219,-0.2109375,-0.018920898,-0.009216309,-0.12011719,0.125,-0.029052734,-0.020996094,0.171875,0.13085938,0.07910156,-0.03112793,0.05444336,0.10205078,0.03515625,0.13183594,-0.05834961,-0.064453125,0.1953125,0.056152344,0.06542969,0.083984375,-0.06225586,-0.09716797,0.033447266,0.16894531,0.030273438,0.044189453,0.10498047,0.111328125,-0.038085938,0.21582031,0.09814453,-0.056396484,0.114746094,-0.055664062,-0.053710938,0.088378906,0.025268555,0.016357422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.2734375,-0.09667969,0.01171875,0.0115356445,0.07910156,0.07128906,0.013061523,0.17285156,-0.103027344,-0.09082031,-0.11767578,0.06640625,0.08105469,-0.009643555,-0.100097656,-0.0016098022,0.13378906,-0.06689453,0.096191406,-0.04638672,0.016235352,0.052978516,0.03466797,0.25,-0.0063171387,-0.0073242188,0.029174805,0.20019531,0.04663086,-0.13769531,-0.052490234,0.08154297,0.078125,-0.091796875,-0.0039367676,0.021240234,-0.06542969,-0.057861328,0.046142578,0.053466797,-0.123046875,0.115722656,-0.087402344,-0.045166016,-0.15917969,-0.13085938,-0.0008087158,0.0014419556,-0.025390625,-0.087402344,-0.075683594,-0.03491211,-0.07324219,-0.23925781,0.23046875,-0.032470703,0.0075683594,0.012756348,0.079589844,-0.15039062,-0.08251953,-0.12597656,0.087890625,0.03173828,0.038330078,-0.171875,-0.111328125,0.17578125,-0.22070312,-0.18554688,0.06347656,0.0859375,0.10253906,0.0154418945,0.20214844,-0.071777344,-0.043945312,0.30664062,0.16015625,0.14453125,0.21777344,-0.12695312,-0.05126953,0.09277344,0.1171875,-0.048583984,-0.052978516,0.14941406,-0.049804688,-0.20214844,0.03491211,-0.06542969,0.16894531,-0.024169922,-0.025390625,-0.028808594,-0.2421875,-0.26171875,0.05834961,-0.12792969,-0.05859375,0.23144531,-0.20605469,0.125,0.00047683716,-0.024291992,0.09375,0.015258789,-0.011230469,-0.04345703,0.028686523,-0.07714844,-0.018554688,-0.2109375,0.014282227,0.07910156,-0.068359375,0.30273438,-0.21972656,0.18066406,0.107421875,0.08300781,0.011108398,0.013916016,-0.064941406,-0.07714844,0.022338867,-0.15332031,-0.05834961,-0.37304688,0.00970459,0.04736328,-0.078125,0.20117188,-0.025146484,0.051513672,-0.038085938,0.01928711,0.21875,-0.16308594,-0.047851562,-0.008422852,0.19140625,0.080078125,-0.0066833496,-0.2421875,-0.026367188,0.010559082,0.041015625,0.05126953,0.114746094,0.17871094,0.0095825195,0.033447266,-0.013183594,0.0036773682,0.08203125,-0.08642578,0.04321289,-0.010681152,0.056884766,-0.24804688,0.053955078,-0.0546875,0.012023926,0.0016784668,-0.075683594,-0.0068969727,-0.048339844,-0.11376953,0.040771484,-0.044677734,0.095703125,-0.014770508,0.015136719,-0.013916016,-0.19335938,-0.20996094,0.047851562,-0.08105469,-0.13867188,0.026489258,0.029296875,0.19335938,-0.07128906,-0.1796875,0.08935547,0.0703125,0.16992188,0.05078125,0.02734375,-0.0119018555,-0.08300781,-0.36132812,-0.020263672,-0.01361084,-0.08642578,0.19628906,-0.012207031,0.14746094,0.078125,-0.015991211,-0.030761719,-0.08154297,0.03540039,0.04638672,0.103515625,-0.10449219,-0.13476562,-0.16601562,0.024047852,0.09814453,-0.123535156,0.22851562,0.119628906,-0.013793945,0.07519531,0.049804688,0.01953125,-0.036132812,-0.016601562,0.028320312,0.001953125,0.0010375977,-0.096191406,0.033447266,-0.027832031,0.022583008,-0.21972656,0.056152344,0.04345703,-0.026367188,0.022216797,0.025268555,-0.014343262,0.033203125,0.017700195,-0.10449219,-0.038085938,0.079589844,0.09375,-0.071777344,-0.07324219,0.095214844,-0.08251953,-0.008666992,-0.016235352,0.088378906,0.016601562,-0.056152344,0.033935547,-0.18457031,0.06982422,-0.034179688,-0.047851562,-0.018432617,-0.083496094,-0.23046875,-0.13964844,0.096191406,-0.122558594,0.13183594,-0.049560547,0.07080078,0.031982422,-0.21582031,0.0015640259,-0.03173828,0.07861328,-0.14550781,-0.09472656,-0.07421875,-0.052734375,-0.2734375,0.0056762695,-0.029907227,-0.2578125,-0.095214844,0.010498047,0.030029297,0.05078125,-0.114746094,-0.15917969,0.109375,-0.13476562,0.041015625,0.045166016,0.15136719,-0.01965332,0.04321289,0.021240234,0.09375,-0.092285156,0.12597656,0.15917969,0.015991211,-0.03466797,0.014709473,-0.12207031,0.087402344,-0.12207031,0.001876831,0.057373047,-0.15722656,-0.12011719,0.053955078,-0.056396484,0.111328125,-0.025146484,0.013549805,-0.05419922,-0.10546875,0.06738281,0.011108398,0.049072266,0.016967773,0.11425781,0.047607422,0.16503906,0.09667969,-0.14648438,-0.203125,0.13964844,0.13867188,-0.1875,0.00065231323,0.10205078,0.03540039,-0.041503906,0.0050964355,0.039794922,0.14257812,-0.10839844,-0.010192871,0.020019531,0.10595703,-0.20410156,-0.037841797,0.006713867,0.056640625,-0.084472656,-0.0051574707,-0.036376953,0.03955078,0.027954102,-0.057861328,0.07421875,0.028076172,-0.019042969,-0.029052734,0.04296875,0.08203125,-0.013000488,0.13378906,0.095214844,0.107421875,-0.19921875,-0.1484375,0.003540039,-0.12695312,-0.030273438,0.07714844,-0.07080078,0.067871094,-0.099121094,-0.022705078,-0.036132812,0.026977539,-0.045166016,-0.1875,-0.014404297,0.18359375,-0.056884766,-0.1171875,-0.05126953,-0.19726562,0.0030212402,0.03540039,0.087890625,0.1484375,-0.16601562,0.0022583008,-0.072753906,0.03173828,-0.0041503906,-0.12988281,0.1171875,0.011413574,-0.06933594,-0.16601562,-0.057861328,-0.029907227,-0.059814453,0.110839844,0.040039062,0.123535156,-0.092285156,-0.02758789,0.20214844,0.12060547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.16601562,-0.035888672,0.040039062,-0.16894531,0.14550781,-0.16210938,-0.05102539,-0.17480469,0.030761719,-0.026977539,-0.19335938,-0.13671875,-0.060791016,0.09863281,-0.025512695,-0.011291504,-0.14648438,0.08105469,-0.26953125,0.08154297,0.1015625,0.038085938,0.0013046265,0.053466797,-0.020019531,0.07861328,-0.042236328,-0.027832031,0.08203125,0.095703125,0.2578125,0.024414062,0.122558594,-0.15136719,-0.047851562,0.11816406,0.025390625,0.06640625,0.024902344,0.05078125,-0.076660156,-0.075683594,-0.06542969,0.01550293,-0.06933594,0.033203125,0.071777344,0.04321289,0.056396484,-0.20605469,-0.026000977,0.050048828,-0.13085938,-0.31640625,-0.055908203,0.06933594,0.046142578,-0.028320312,-0.029907227,0.07324219,0.09033203,0.029663086,0.045166016,-0.26171875,0.104003906,0.051513672,-0.03515625,-0.07128906,0.15625,0.012329102,-0.05419922,-0.171875,0.056396484,-0.011169434,0.095703125,-0.21777344,-0.010803223,0.18066406,-0.09277344,-0.0703125,-0.203125,0.12158203,-0.043701172,-0.15917969,-0.20019531,0.008239746,0.13085938,-0.23339844,-0.0015258789,-0.11621094,-0.016967773,-0.12890625,0.036621094,-0.10498047,0.119140625,-0.05419922,-0.15332031,0.005859375,-0.099121094,0.02319336,-0.21386719,0.03173828,-0.03149414,0.016601562,-0.018310547,0.036376953,-0.12792969,-0.075683594,-0.1484375,-0.24804688,0.111816406,-0.039794922,0.01940918,0.06347656,-0.12158203,0.0390625,-0.16113281,-0.008728027,0.017822266,0.17285156,0.075683594,-0.12695312,0.0126953125,0.18652344,0.068359375,-0.111816406,0.07080078,-0.017211914,0.17871094,0.053222656,-0.18554688,-0.14746094,0.09375,-0.21484375,-0.087402344,-0.03955078,-0.080566406,-0.067871094,-0.08642578,0.053222656,-0.08691406,0.140625,-0.10644531,-0.07421875,0.12109375,0.12207031,-0.04321289,-0.25585938,0.22558594,-0.055664062,0.115722656,-0.057373047,0.08154297,-0.04272461,0.10107422,-0.068847656,0.15625,-0.140625,0.10595703,-0.14648438,-0.099609375,0.17675781,-0.18945312,-0.140625,0.026245117,0.07080078,0.16601562,-0.111328125,0.03125,-0.003967285,-0.01928711,-0.06298828,-0.015625,-0.033935547,-0.234375,0.107910156,-0.10253906,-0.05810547,0.05419922,0.026611328,0.0013198853,-0.019897461,-0.19433594,0.012329102,0.02331543,0.087890625,0.078125,0.13574219,-0.111816406,-0.07519531,-0.11767578,0.15625,0.15722656,0.14355469,-0.004211426,-0.10498047,0.021606445,0.059570312,0.05053711,0.3203125,0.024780273,0.022460938,0.30859375,0.19335938,0.04638672,0.08691406,-0.106933594,0.10205078,-0.02368164,-0.030395508,-0.019165039,-0.27148438,0.12597656,-0.045410156,0.047851562,0.18945312,0.011962891,-0.20605469,0.05834961,-0.10644531,-0.06542969,0.19140625,-0.09765625,-0.21386719,-0.33398438,-0.17089844,-0.022827148,-0.25585938,0.18945312,-0.1015625,0.008300781,-0.024414062,-0.078125,-0.0703125,-0.10839844,-0.06689453,0.171875,-0.042236328,0.035888672,-0.19042969,-0.099121094,0.09765625,0.11230469,-0.010192871,0.13671875,0.092285156,0.027954102,0.032714844,0.09814453,-0.03149414,-0.032958984,-0.08300781,-0.0390625,0.104003906,0.026855469,0.10595703,-0.021606445,-0.20214844,-0.11816406,0.16113281,0.038085938,0.26953125,0.010803223,-0.12451172,0.114746094,-0.03564453,-0.004638672,0.2265625,-0.13085938,-0.072753906,-0.032226562,0.24414062,0.15917969,-0.057617188,-0.07128906,0.11669922,-0.041015625,0.25390625,-0.037597656,0.11621094,-0.04345703,-0.18066406,-0.08251953,0.072265625,-0.044189453,0.056396484,-0.13671875,0.12109375,0.125,0.020263672,0.01361084,-0.23632812,0.20117188,0.17089844,0.01928711,0.045898438,0.011047363,-0.104003906,0.076660156,-0.036376953,0.061279297,0.09667969,-0.018066406,-0.026977539,-0.029663086,-0.1015625,-0.18359375,-0.13964844,0.15234375,-0.1640625,0.125,-0.20898438,0.06982422,-0.095214844,0.08544922,-0.0001783371,0.03881836,-0.021362305,-0.028930664,0.045410156,-0.17773438,0.14355469,0.056884766,-0.048095703,0.0047912598,0.037597656,-0.01953125,0.01586914,0.046875,-0.091308594,-0.15429688,-0.013122559,0.15234375,0.25,-0.13964844,-0.087402344,-0.041503906,-0.06591797,0.05883789,0.032714844,0.053466797,-0.0018692017,0.071777344,0.11425781,-0.09716797,-0.22949219,-0.057373047,-0.19824219,0.03515625,0.103027344,-0.08154297,0.06933594,0.01928711,-0.15625,0.10058594,0.055908203,0.015136719,0.18066406,-0.17675781,-0.14746094,0.060546875,-0.29101562,0.015991211,0.053955078,0.043701172,0.16796875,-0.026733398,-0.114746094,0.052490234,-0.17675781,-0.020751953,0.19824219,0.111328125,0.06298828,0.015197754,-0.010131836,-0.032226562,0.08886719,-0.12597656,-0.115234375,-0.012268066,-0.099121094,0.05517578,-0.14257812,0.06982422,0.14160156,-0.018798828,-0.049804688,0.003829956,0.14648438,-0.16015625,0.14746094,0.0056762695,0.1015625,0.14550781,-0.046142578,-0.068359375,0.19726562,0.06689453,0.26757812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.123535156,-0.13769531,0.109375,0.15625,-0.107421875,0.2265625,-0.0015945435,0.125,0.06542969,-0.053955078,-0.16015625,-0.17773438,-0.04711914,0.171875,-0.015991211,0.15039062,-0.17480469,-0.2421875,0.24609375,-0.13476562,-0.20996094,0.09326172,-0.051757812,-0.23632812,-0.087890625,-0.061767578,-0.26367188,-0.37109375,-0.19921875,0.23632812,0.03857422,0.17675781,-0.15136719,-0.03491211,-0.14746094,-0.19921875,0.07128906,0.032714844,0.02746582,-0.059326172,-0.053222656,0.041503906,0.08984375,-0.2734375,-0.265625,-0.059570312,0.008117676,0.0859375,-0.02331543,-0.09033203,-0.18652344,0.018798828,0.15136719,-0.083496094,0.014404297,0.18652344,-0.060058594,-0.0048217773,0.017211914,-0.071777344,0.039794922,-0.016357422,0.053710938,0.03515625,0.17773438,0.17480469,-0.037109375,0.026733398,0.13769531,-0.13769531,0.060302734,-0.33007812,-0.16992188,-0.12988281,0.23144531,0.061279297,0.16992188,0.14941406,-0.08203125,0.046875,0.115722656,0.14648438,0.18652344,0.029907227,-0.08935547,0.045166016,-0.115234375,0.12988281,-0.103027344,0.08203125,-0.19140625,0.08496094,-0.12597656,-0.13671875,0.12451172,-0.06933594,0.018432617,0.012268066,0.028442383,0.09765625,-0.080566406,-0.00074768066,-0.15429688,-0.033935547,-0.063964844,-0.07128906,0.087402344,-0.34570312,-0.23632812,0.08105469,0.15722656,0.10839844,-0.14941406,-0.080566406,-0.29296875,-0.17089844,-0.2734375,0.119628906,-0.09326172,-0.03515625,0.041748047,-0.16796875,-0.071777344,-0.18652344,0.018432617,-0.056152344,0.046875,-0.14550781,0.09082031,0.14453125,-0.18359375,-0.19628906,-0.34960938,0.0625,-0.04296875,0.022460938,-0.02734375,-0.19238281,0.056152344,-0.15429688,0.005340576,-0.16503906,-0.06982422,-0.11621094,-0.06347656,0.110839844,-0.034179688,0.12158203,-0.0005836487,-0.14550781,-0.107910156,-0.33203125,-0.08203125,-0.16894531,-0.15527344,0.029418945,0.12695312,-0.10888672,0.035888672,0.028686523,-0.17773438,-0.15917969,-0.049804688,-0.107421875,0.07421875,-0.008850098,-0.11621094,0.037353516,0.08886719,0.16601562,0.107910156,-0.12988281,-0.11621094,0.011474609,-0.16015625,0.111328125,-0.01977539,-0.029296875,-0.16992188,-0.13183594,-0.071777344,-0.11669922,-0.08935547,0.099121094,0.033935547,0.076171875,0.08154297,-0.16015625,-0.020996094,-0.01159668,0.026123047,0.0058898926,-0.14160156,0.0069885254,-0.265625,-0.14160156,-0.23339844,-0.079589844,0.100097656,-0.24707031,-0.045898438,-0.115722656,-0.05078125,-0.06347656,-0.061523438,-0.09863281,-0.22460938,-0.072753906,-0.08886719,-0.011413574,-0.1796875,-0.084472656,-0.09667969,0.036132812,-0.06933594,-0.1484375,0.033935547,-0.01940918,-0.092285156,-0.18164062,-0.02368164,-0.056396484,-0.036865234,-0.13574219,0.15136719,0.15332031,-0.39648438,0.13183594,-0.125,0.05078125,-0.099609375,-0.123046875,-0.13867188,0.09472656,0.0087890625,-0.034423828,-0.1484375,0.08691406,0.1875,0.1484375,-0.056640625,-0.34375,-0.15527344,0.06542969,0.13769531,0.03173828,0.020263672,-0.29492188,-0.09326172,0.03881836,-0.01361084,0.08154297,-0.027832031,-0.016845703,-0.15136719,0.026733398,-0.028198242,-0.03930664,-0.072265625,0.025512695,-0.033203125,-0.024902344,0.19726562,0.106933594,-0.07763672,0.14355469,-0.26757812,0.068359375,-0.022094727,0.109375,-0.05883789,0.078125,-0.18554688,0.033691406,-0.055419922,-0.06591797,-0.15722656,-0.08984375,0.092285156,-0.09082031,0.011047363,-0.006439209,0.10253906,0.15722656,-0.22363281,-0.106933594,-0.095214844,-0.18945312,-0.072265625,-0.10839844,0.049072266,-0.07910156,-0.19140625,0.21582031,-0.17773438,0.13378906,-0.05444336,0.028076172,-0.16503906,0.13085938,-0.18945312,-0.0077819824,-0.06591797,-0.1796875,-0.022338867,0.008728027,0.09375,-0.06201172,0.03125,0.022949219,0.0066833496,-0.06347656,-0.012878418,0.006378174,-0.16113281,0.006225586,-0.16992188,-0.032714844,0.0075683594,-0.13378906,0.012573242,0.10986328,0.084472656,-0.11767578,0.13378906,0.018554688,-0.087890625,0.075683594,-0.021972656,-0.022949219,-0.050048828,-0.037841797,0.19140625,0.09277344,-0.008483887,0.06933594,-0.328125,-0.049316406,-0.044921875,0.10253906,-0.11767578,-0.036621094,-0.09765625,-0.09716797,-0.037841797,0.0703125,-0.33007812,-0.12060547,0.18066406,-0.0053100586,0.004058838,-0.068847656,0.08251953,-0.16992188,0.07373047,-0.16308594,0.20605469,0.10644531,-0.24316406,-0.064453125,-0.03491211,0.053710938,0.17871094,0.27929688,0.078125,0.02722168,0.13769531,-0.18066406,-0.033447266,-0.07763672,-0.0032196045,-0.044921875,0.11035156,-0.017578125,-0.07128906,0.06591797,0.1015625,0.044921875,0.31640625,0.04711914,0.05834961,-0.06689453,-0.00036239624,-0.37109375,0.029174805,-0.38476562,0.13476562,-0.047607422,0.21191406,0.014404297,-0.23730469,0.109375,0.033691406,0.111816406,0.107910156,0.19726562,0.10986328,-0.020141602,-0.11279297,-0.13183594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.15332031,-0.08886719,0.16015625,-0.004272461,0.061279297,0.265625,0.16699219,-0.050048828,-0.06298828,0.07421875,0.12792969,0.04736328,0.068847656,0.115234375,0.005004883,-0.10644531,-0.10595703,-0.021240234,-0.056396484,0.030517578,0.14941406,-0.09082031,0.025634766,-0.0032348633,0.08544922,0.072753906,0.08251953,-0.25195312,-0.12890625,0.072265625,0.15332031,-0.23046875,-0.14160156,-0.048095703,-0.092285156,-0.15820312,-0.09033203,0.064453125,-0.04345703,0.03564453,0.09814453,-0.008056641,0.27148438,0.004852295,-0.099609375,0.33203125,-0.072265625,-0.046142578,0.111816406,0.06982422,-0.11669922,-0.053955078,0.04711914,0.26171875,0.15722656,-0.13183594,-0.0115356445,0.026611328,0.17480469,-0.048095703,-0.027954102,0.09863281,0.06542969,0.006866455,-0.100097656,0.03540039,-0.265625,-0.01171875,0.031982422,0.15917969,0.13183594,0.036621094,-0.11328125,0.05810547,0.08984375,-0.10449219,-0.060546875,0.032714844,0.0703125,-0.14453125,0.013916016,-0.296875,0.104003906,0.022338867,0.122558594,0.039794922,-0.036132812,-0.26171875,0.024291992,0.057617188,0.10986328,0.007751465,-0.044677734,0.28515625,-0.02355957,0.05493164,-0.1953125,0.02758789,0.003036499,-0.06542969,0.16210938,-0.19238281,0.064941406,-0.016723633,-0.08544922,-0.05444336,0.140625,-0.033203125,-0.06298828,-0.053466797,0.111816406,-0.03515625,0.031982422,0.049804688,-0.0052490234,-0.099609375,0.13183594,-0.17773438,-0.015197754,-0.26367188,0.076171875,0.109375,-0.056152344,-0.13085938,-0.203125,0.04296875,-0.10986328,-0.0703125,0.18164062,-0.32421875,0.110839844,-0.14550781,0.16699219,0.17578125,0.011657715,0.11035156,0.072753906,0.11328125,-0.005432129,-0.041503906,-0.0859375,-0.017700195,-0.107910156,-0.03857422,-0.018920898,0.08984375,-0.20996094,-0.100097656,-0.0390625,0.12060547,0.10888672,0.059814453,-0.018066406,0.099609375,-0.122558594,0.032470703,0.11621094,-0.009216309,-0.048583984,-0.10205078,0.052490234,-0.23046875,0.16210938,0.12988281,-0.099609375,0.16796875,0.05078125,-0.16015625,-0.022094727,-0.049560547,0.019165039,-0.059326172,0.053710938,-0.17089844,-0.18164062,0.030395508,0.119140625,-0.022094727,-0.0041503906,-0.0060424805,-0.061279297,-0.104003906,0.071777344,-0.08300781,0.021850586,0.0061035156,-0.22265625,-0.076171875,0.048583984,-0.15332031,-0.109375,-0.100097656,0.044677734,-0.16503906,0.026611328,-0.0012359619,0.063964844,-0.030883789,0.05859375,-0.22558594,-0.051513672,-0.12695312,0.056640625,-0.08544922,-0.15527344,-0.0546875,-0.18847656,-0.15234375,0.02746582,-0.011230469,0.06982422,0.048339844,-0.0011901855,-0.017700195,0.099609375,0.07910156,0.044677734,-0.07714844,0.032958984,-0.056396484,-0.012939453,0.11767578,-0.04663086,-0.24023438,-0.16308594,-0.33203125,-0.02758789,-0.042236328,0.0012359619,0.13867188,-0.01953125,0.11767578,0.07910156,-0.11767578,-0.030029297,0.021484375,0.087890625,0.2578125,-0.042236328,-0.0027770996,-0.052978516,0.068359375,-0.011352539,0.06689453,-0.02319336,0.37304688,0.07714844,-0.26171875,0.015563965,-0.13671875,-0.24316406,0.0014419556,0.115722656,-0.084472656,-0.07421875,0.040283203,0.09814453,0.031982422,-0.048095703,0.045654297,-0.12207031,0.01586914,0.080078125,-0.4921875,-0.042236328,-0.001335144,0.012329102,-0.048339844,0.026977539,-0.21972656,0.036865234,-0.1171875,-0.095214844,-0.028564453,0.09814453,0.14160156,-0.10839844,-0.009338379,0.14941406,-0.31445312,0.040283203,0.001953125,0.24511719,-0.08544922,-0.009155273,-0.24414062,0.012634277,-0.26953125,-0.18847656,0.083496094,0.0069885254,0.0027770996,-0.17382812,-0.009155273,0.08496094,0.04272461,0.034179688,-0.1015625,0.05053711,-0.01586914,0.09667969,0.052734375,-0.10058594,-0.23730469,-0.07080078,0.16308594,-0.016235352,-0.078125,-0.06933594,0.12011719,-0.11376953,0.22363281,0.048095703,0.12695312,-0.11230469,0.17871094,-0.078125,0.171875,0.07373047,-0.20703125,0.115234375,-0.19335938,-0.03149414,-0.025756836,0.028320312,0.083984375,-0.01977539,-0.23925781,-0.07080078,-0.10058594,-0.06347656,0.04321289,0.12207031,-0.34765625,-0.13378906,0.0059509277,-0.017944336,-0.023071289,0.125,-0.038330078,0.022094727,-0.075683594,-0.06689453,-0.25195312,0.038330078,-0.026977539,-0.09472656,0.075683594,0.06298828,-0.17675781,-0.026367188,-0.084472656,-0.05102539,0.17773438,-0.0068359375,-0.095703125,0.024047852,0.16015625,0.10888672,-0.061035156,-0.06689453,-0.12792969,0.12011719,0.1171875,0.064941406,-0.15527344,-0.09716797,-0.011474609,-0.021362305,0.14160156,0.08886719,-0.012573242,0.055908203,-0.13476562,0.1171875,0.038085938,-0.020507812,0.059570312,0.15722656,0.24121094,0.08203125,-0.100097656,-0.06591797,0.03930664,-0.051757812,0.22265625,-0.084472656,-0.25,-0.23730469,-0.171875,0.064941406,0.29101562,0.010986328,0.09814453,-0.012390137,0.20703125,0.0053100586,-0.088378906,-0.0134887695,0.047851562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.140625,0.038330078,0.05834961,-0.12792969,0.044433594,-0.099121094,0.16503906,0.056884766,-0.061767578,-0.12597656,-0.07373047,0.16308594,0.016723633,0.10595703,-0.15820312,0.13964844,-0.15039062,-0.19335938,-0.06982422,-0.041748047,0.021850586,0.012939453,0.055908203,0.18554688,0.04345703,-0.061035156,0.099609375,0.048583984,-0.026000977,0.075683594,-0.027954102,0.17871094,0.1015625,0.087402344,0.0058898926,-0.024047852,-0.087402344,-0.19140625,-0.01361084,-0.075683594,-0.092285156,0.00088119507,-0.036621094,0.034423828,0.11035156,-0.19042969,0.11279297,0.07421875,-0.18554688,0.15917969,0.1875,-0.099121094,0.068847656,-0.1171875,-0.051757812,-0.06738281,0.056640625,-0.06591797,-0.10058594,-0.063964844,0.16699219,-0.008605957,-0.19824219,-0.05419922,-0.045898438,0.16308594,-0.057861328,0.14453125,0.09716797,0.11425781,-0.05810547,-0.15820312,0.040039062,-0.18554688,0.057128906,-0.08642578,0.04663086,0.12207031,0.0546875,-0.052734375,-0.15136719,0.11621094,-0.004333496,0.12792969,-0.07421875,-0.017578125,0.13769531,0.1640625,-0.010131836,-0.0023040771,-0.0703125,-0.14746094,0.16210938,0.16699219,0.25976562,0.10839844,-0.14160156,-0.06982422,-0.24804688,-0.09033203,0.1328125,-0.06738281,0.011474609,0.004852295,0.08300781,0.103515625,0.17089844,0.1640625,0.15332031,0.13476562,-0.047607422,0.0015029907,-0.031982422,-0.14453125,0.047607422,0.076660156,-0.08935547,0.020019531,-0.12158203,0.0029449463,0.07910156,0.07324219,-0.02331543,0.20800781,0.07714844,0.051757812,0.100097656,0.007446289,-0.35351562,0.07714844,0.09716797,-0.27929688,-0.07861328,-0.01977539,-0.06347656,-0.056152344,-0.010803223,0.012207031,-0.0154418945,0.15039062,0.026000977,0.12597656,0.057128906,-0.03930664,-0.12109375,0.123535156,0.063964844,0.12597656,0.099121094,-0.020751953,-0.005065918,0.026733398,-0.079589844,-0.026245117,0.11376953,0.11279297,0.08300781,-0.036865234,0.115722656,0.12792969,-0.0703125,0.19628906,-0.08105469,-0.005706787,-0.025634766,-0.13964844,-0.088378906,0.052978516,0.041015625,0.044677734,0.22558594,-0.06982422,0.068359375,0.021606445,0.109375,-0.06689453,0.021850586,0.0005722046,0.09033203,-0.07128906,-0.31054688,-0.15820312,-0.0154418945,0.09082031,0.013061523,-0.030883789,0.067871094,-0.049804688,0.008972168,0.059570312,-0.044677734,0.036621094,-0.092285156,0.052001953,0.017944336,-0.07714844,-0.08496094,0.010681152,-0.22949219,0.035888672,-0.060302734,-0.234375,0.11816406,0.18359375,0.08544922,-0.10888672,-0.09326172,-0.020507812,-0.047607422,-0.07763672,0.00592041,-0.18945312,-0.05102539,-0.06347656,0.07080078,0.18164062,-0.060058594,-0.25390625,-0.15722656,-0.15722656,-0.0011291504,0.040771484,-0.095214844,-0.09716797,0.08154297,-0.22851562,0.016235352,0.057861328,0.037353516,-0.079589844,-0.0076904297,-0.009094238,-0.04638672,-0.15136719,0.0146484375,0.0029907227,-0.068847656,-0.055419922,-0.057617188,-0.23144531,-0.020385742,0.1328125,-0.06738281,-0.002166748,-0.13085938,-0.0048828125,-0.27148438,-0.14453125,0.076171875,0.010803223,0.008056641,-0.1796875,0.011474609,-0.0043029785,-0.11425781,0.045654297,0.03125,0.17675781,-0.2265625,0.063964844,-0.16308594,-0.07128906,-0.010070801,-0.059570312,-0.0012054443,-0.22558594,0.06689453,-0.08544922,-0.125,0.103027344,-0.011657715,0.07421875,-0.25195312,-0.045166016,-0.26757812,-0.099121094,-0.041015625,-0.045166016,0.17382812,0.091308594,0.012634277,-0.16210938,-0.09716797,-0.003036499,0.06591797,-0.14648438,0.084472656,0.05810547,-0.26757812,-0.042236328,0.03125,-0.0069274902,-0.09082031,-0.010314941,0.08935547,0.09326172,0.036865234,-0.25195312,-0.118652344,-0.07910156,0.029663086,-0.075683594,0.06640625,0.07128906,0.103515625,0.059326172,-0.13964844,0.020507812,-0.017578125,0.026489258,-0.052246094,-0.099609375,-0.036865234,-0.041015625,-0.12890625,-0.06933594,-0.014221191,-0.103515625,0.039794922,-0.099121094,-0.12011719,-0.042236328,0.046142578,-0.20996094,-0.008483887,0.13964844,0.16113281,-0.14941406,0.049804688,-0.025024414,0.072753906,-0.014038086,0.037841797,0.029907227,-0.11376953,0.0625,-0.080566406,-0.041015625,-0.014343262,0.060546875,0.14648438,-0.034423828,0.23632812,-0.02319336,0.118652344,-0.15234375,-0.071777344,-0.234375,-0.109375,0.23632812,-0.014465332,0.08691406,-0.06933594,-0.096191406,-0.036621094,0.063964844,0.08886719,-0.10839844,-0.041259766,-0.21386719,0.06298828,-0.16308594,0.02758789,-0.12695312,-0.075683594,-0.02709961,0.07519531,-0.032958984,0.056640625,0.0066223145,-0.1875,-0.022827148,-0.045410156,-0.16113281,-0.018554688,-0.10498047,0.030029297,-0.07861328,-0.15136719,0.24511719,-0.052001953,-0.07421875,-0.2578125,0.01586914,-0.15722656,-0.20800781,-0.061523438,0.14648438,0.04711914,-0.07861328,0.084472656,0.16699219,-0.033447266,-0.18164062,-0.07373047,-0.053955078,-0.076171875,0.09716797,-0.0020446777,0.19140625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.080566406,-0.053955078,-0.25195312,-0.16894531,-0.010498047,-0.040527344,0.18847656,-0.27929688,0.0064086914,0.05029297,-0.053466797,0.13183594,0.02355957,0.0077209473,0.12060547,-0.02722168,0.055664062,-0.012268066,0.022827148,-0.15722656,-0.076660156,0.16699219,-0.33984375,-0.17285156,0.04321289,0.060546875,0.13574219,0.017822266,0.03149414,-0.06347656,0.055664062,-0.008666992,0.011291504,0.07128906,0.030517578,-0.21484375,-0.19726562,0.18554688,-0.16113281,0.107910156,0.00026130676,-0.013122559,0.012329102,-0.047607422,-0.05029297,-0.15039062,0.12988281,0.0075683594,-0.29296875,0.09814453,-0.15234375,-0.13769531,-0.03466797,-0.20117188,-0.06982422,0.063964844,-0.11425781,0.05102539,-0.053955078,0.07763672,0.15527344,0.040283203,-0.0022888184,-0.032958984,-0.0010604858,0.24707031,-0.21582031,-0.35351562,-0.1953125,0.10595703,-0.09716797,0.08251953,-0.064941406,0.15625,-0.005706787,0.071777344,0.068359375,-0.092285156,-0.27539062,-0.015014648,0.14453125,0.14648438,-0.16796875,-0.06347656,-0.02331543,0.021850586,0.12109375,-0.11279297,-0.0138549805,0.035888672,-0.2734375,0.11376953,0.0107421875,-0.06591797,0.024536133,0.10449219,-0.12792969,0.2578125,-0.13671875,-0.075683594,0.0055236816,0.13769531,-0.21191406,0.075683594,-0.00037956238,-0.08642578,-0.032958984,0.056884766,-0.03491211,0.14550781,-0.029541016,0.15527344,-0.16796875,0.15820312,0.0095825195,-0.0035247803,0.025512695,0.15625,0.10107422,0.17285156,-0.055419922,0.056640625,-0.020629883,0.07763672,-0.095214844,0.099609375,-0.080078125,0.11328125,-0.14746094,0.09716797,-0.088378906,-0.06982422,0.03112793,-0.091796875,-0.028198242,0.12792969,-0.030517578,0.0021972656,0.033691406,0.09326172,0.08544922,-0.10498047,-0.0058288574,0.06640625,-0.091796875,0.09326172,-0.083984375,-0.07324219,-0.15234375,-0.08300781,0.0546875,-0.08203125,0.035888672,-0.119628906,-0.07128906,-0.1171875,0.15136719,0.0042419434,-0.09082031,-0.20507812,0.13867188,-0.099121094,-0.06201172,0.021240234,-0.21484375,0.04663086,0.014953613,-0.107910156,-0.10595703,0.06542969,-0.05419922,-0.05883789,0.07470703,-0.14648438,-0.07910156,0.13574219,0.0063476562,-0.14648438,0.13183594,-0.029174805,-0.15234375,0.029785156,-0.006500244,0.20214844,0.07470703,0.16210938,0.008178711,0.03857422,-0.10253906,-0.15039062,-0.14746094,-0.16503906,-0.07519531,-0.14160156,-0.021850586,-0.09033203,-0.0069885254,0.099121094,0.13769531,0.18261719,-0.045898438,0.0043029785,0.080078125,-0.118652344,-0.0032348633,0.14746094,-0.018188477,0.026367188,-0.11669922,-0.099609375,0.049072266,-0.14355469,-0.040039062,-0.10595703,-0.11230469,-0.20410156,-0.020385742,0.020874023,-0.15136719,-0.24121094,0.026245117,-0.005645752,-0.009460449,0.10205078,0.021362305,-0.037353516,-0.24707031,0.0039978027,-0.1015625,-0.059326172,0.067871094,-0.20800781,0.11767578,-0.13085938,-0.09863281,-0.36328125,0.03540039,-0.071777344,0.16503906,-0.09765625,-0.02355957,-0.2109375,-0.16015625,-0.13085938,-0.099609375,0.13964844,-0.034179688,0.0044555664,-0.02319336,-0.026245117,-0.021118164,0.11425781,0.11669922,0.12207031,-0.11425781,0.095703125,-0.075683594,-0.03881836,0.11767578,-0.06982422,0.09863281,-0.0859375,-0.15625,0.22167969,-0.0025634766,-0.003479004,0.042236328,-0.072265625,-0.052734375,0.13476562,0.038085938,-0.042236328,0.03930664,0.0069274902,0.04711914,0.110839844,0.16308594,0.034423828,0.15820312,0.11669922,-0.109375,0.16992188,0.328125,-0.19726562,-0.099609375,-0.07080078,-0.03540039,-0.0076293945,0.15234375,-0.21875,0.014526367,-0.048339844,0.0025177002,0.080566406,0.118652344,-0.043945312,-0.07763672,0.18554688,-0.109375,-0.22070312,0.0134887695,-0.099609375,-0.14746094,-0.11669922,-0.24707031,0.10644531,-0.079589844,-0.14453125,-0.22851562,0.027709961,0.111328125,0.0030670166,-0.056640625,0.012145996,0.08935547,-0.20019531,-0.10449219,-0.18457031,0.06982422,-0.22558594,0.111816406,0.0039978027,0.06982422,-0.08691406,0.01586914,0.018554688,-0.10546875,0.103515625,-0.028076172,-0.13964844,-0.11767578,-0.265625,-0.088378906,-0.15527344,-0.1328125,-0.028320312,-0.27539062,0.02722168,-0.00970459,-0.014831543,0.017578125,-0.19628906,0.1796875,-0.16699219,-0.0107421875,-0.17871094,-0.04272461,0.06347656,-0.14941406,-0.008666992,-0.15917969,0.046875,0.060058594,0.20410156,-0.029418945,-0.025756836,0.008544922,0.18066406,0.18652344,-0.026733398,-0.06591797,-0.045410156,0.026367188,-0.04296875,-0.0625,0.107421875,-0.033935547,0.018920898,0.0022735596,-0.1640625,-0.068847656,-0.056640625,-0.018920898,-0.11621094,0.15625,0.028198242,0.06982422,-0.140625,0.18652344,0.08496094,0.049316406,0.13867188,-0.014709473,-0.018676758,-0.18652344,-0.11328125,0.22363281,-0.006958008,-0.015991211,0.075683594,0.25195312,0.14355469,-0.009155273,0.095703125,-0.1796875,0.0036468506,0.10986328,-0.11767578,0.015258789,-0.008056641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.088378906,-0.032958984,-0.12988281,-0.084472656,-0.048828125,0.107910156,0.028930664,-0.072265625,-0.0009727478,-0.14550781,0.049804688,-0.040527344,-0.119140625,-0.033447266,-0.020385742,-0.19140625,-0.111328125,-0.055419922,-0.088378906,0.08203125,-0.079589844,-0.08886719,-0.045410156,-0.18457031,-0.0146484375,-0.20117188,0.026245117,-0.15039062,-0.07128906,0.115234375,0.02355957,-0.021972656,-0.075683594,-0.10888672,0.011657715,-0.023071289,0.087890625,0.076660156,-0.15332031,0.01574707,0.041503906,-0.16113281,-0.025756836,-0.07324219,0.012451172,0.123046875,-0.0703125,-0.021972656,-0.17285156,-0.22167969,-0.12109375,-0.048583984,-0.060302734,-0.084472656,0.014282227,0.002456665,-0.038085938,-0.17871094,0.0056152344,-0.091308594,-0.080566406,0.08984375,-0.07324219,-0.111816406,-0.068359375,-0.13671875,0.05834961,0.12792969,0.056396484,0.18359375,-0.034423828,-0.21191406,0.07324219,-0.032714844,0.04711914,0.13476562,-0.104003906,0.030151367,-0.12060547,-0.080078125,-0.088378906,-0.11816406,-0.05102539,-0.1953125,-0.09326172,0.11621094,0.043701172,0.10839844,-0.0050354004,-0.1015625,0.0859375,-0.016845703,0.051757812,0.10546875,-0.10107422,-0.0076293945,-0.15234375,-0.04321289,0.07324219,-0.119140625,-0.05834961,-0.006378174,-0.011962891,0.0046081543,-0.009765625,-0.15332031,0.009277344,-0.08105469,-0.037109375,-0.14160156,0.08935547,0.040771484,0.076171875,0.036376953,-0.038085938,-0.13671875,-0.111816406,-0.07763672,0.09667969,-0.13183594,0.08691406,-0.11621094,-0.0015487671,-0.171875,0.019897461,-0.072753906,0.036865234,0.040771484,0.11328125,-0.017700195,0.032958984,-0.13085938,-0.046142578,0.018066406,0.06640625,0.024291992,-0.10839844,-0.14746094,-0.061767578,0.103027344,0.014465332,0.039794922,-0.15917969,-0.111816406,0.02355957,-0.060546875,-0.02734375,0.0703125,-0.071777344,0.035888672,0.026245117,0.047607422,-0.09863281,0.0390625,0.00042915344,0.06591797,-0.10595703,0.091308594,-0.0039978027,-0.09863281,-0.15136719,0.111328125,-0.055664062,0.037109375,-0.0154418945,0.045166016,-0.12890625,0.030639648,0.025268555,-0.08642578,-0.037109375,-0.072265625,0.015625,-0.050048828,-0.13867188,0.06640625,-0.028930664,0.024780273,0.03112793,-0.080078125,0.14160156,0.11669922,0.05810547,-0.002090454,0.049072266,-0.022949219,-0.045166016,0.048583984,-0.040283203,-0.033203125,0.06298828,0.030151367,-0.12402344,0.044189453,-0.19238281,-0.08251953,0.11425781,0.08935547,-0.0012664795,0.014343262,0.012573242,-0.107910156,-0.0033721924,0.091796875,-0.04321289,0.016601562,-0.05419922,-0.118652344,0.107421875,-0.11279297,-0.06640625,-0.19140625,0.10839844,-0.13867188,0.15527344,-0.075683594,0.013122559,-0.06225586,-0.05493164,0.078125,-0.027709961,0.083984375,-0.1796875,-0.100097656,0.06689453,-0.13476562,0.00592041,-0.14453125,0.014465332,0.02368164,0.096191406,-0.14355469,-0.048583984,-0.1328125,-0.0050354004,-0.022216797,-0.08544922,-0.115722656,-0.001625061,-0.015197754,0.048828125,0.103027344,0.091308594,-0.09375,-0.19433594,0.18457031,0.076171875,0.088378906,0.07519531,0.056640625,-0.044677734,0.16796875,-0.12792969,0.13671875,0.017578125,-0.09863281,0.0061035156,0.06542969,-0.08203125,0.009399414,-0.056396484,-0.01361084,0.061767578,-0.04248047,-0.115234375,-0.07861328,0.080566406,0.040039062,-0.079589844,0.041748047,-0.06298828,-0.04345703,0.0049438477,0.17675781,0.03857422,-0.21191406,-0.017822266,-0.15625,0.0154418945,-0.1796875,0.06347656,-0.035888672,0.056396484,0.027709961,-0.03515625,-0.13574219,-0.018432617,0.011474609,0.060791016,-0.026367188,-0.07128906,-0.002243042,-0.07714844,-0.020141602,0.11621094,-0.0859375,0.015991211,-0.088378906,0.064453125,-0.012207031,0.01928711,-0.14550781,-0.12988281,-0.22460938,-0.0018692017,0.012268066,0.028808594,-0.016357422,0.006652832,-0.00390625,0.13964844,-0.14746094,0.06738281,-0.067871094,-0.0025939941,0.14550781,0.04711914,-0.13183594,-0.044677734,-0.048828125,-0.09082031,-0.11279297,-0.14746094,-0.13867188,-0.028076172,0.25585938,0.028442383,-0.12158203,-0.03881836,-0.05126953,0.096191406,0.14160156,-0.052490234,-0.010681152,-0.061279297,-0.032470703,-0.068359375,-0.05517578,-0.020385742,-0.1484375,0.045410156,-0.05883789,-0.053466797,0.055664062,-0.118652344,0.026367188,-0.040771484,0.23535156,-0.052246094,-0.047851562,-0.06689453,-0.08886719,-0.053466797,-0.026245117,-0.10546875,0.033691406,0.02722168,-0.028564453,0.19628906,0.049072266,-0.084472656,-0.07421875,0.02368164,0.17773438,0.01953125,-0.017944336,-0.096191406,0.01965332,0.030395508,-0.091796875,-0.12207031,0.0703125,-0.11376953,-0.041992188,0.18261719,0.034179688,0.03149414,0.014587402,0.095703125,-0.1328125,-0.14648438,0.041503906,-0.067871094,0.013793945,-0.119628906,-0.03515625,-0.13183594,-0.026855469,-0.18164062,0.16015625,0.091796875,-0.071777344,0.039794922,0.15722656,0.018554688,-0.15527344,-0.008239746,0.07080078,-0.0859375,0.01965332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,}}; static bfloat16_t fc_3_w[128][448] row_align(1); #else static const elem_t fc_3_w[128][448] row_align(1) = {{0.095214844,-0.18945312,-0.09082031,-0.25976562,0.15722656,-0.033935547,-0.016479492,0.009338379,0.006958008,0.057617188,-0.125,-0.25390625,0.11425781,0.203125,0.04663086,0.022338867,-0.28710938,-0.12011719,-0.24316406,-0.110839844,0.080566406,-0.107910156,0.016357422,-0.114746094,-0.014343262,0.04736328,-0.15136719,-0.091308594,0.050048828,0.002319336,-0.010375977,-0.09082031,-0.08300781,-0.0017242432,0.050048828,-0.012756348,-0.019042969,-0.22851562,-0.08886719,0.11328125,-0.03125,-0.016479492,-0.1640625,0.12060547,0.060302734,-0.067871094,0.014221191,-0.24316406,0.005004883,-0.022216797,-0.03173828,0.052246094,0.005279541,-0.0115356445,-0.076660156,-0.010681152,-0.028076172,-0.09082031,-0.009216309,0.017578125,0.068359375,-0.18164062,0.083496094,-0.09277344,-0.203125,0.087890625,-0.017456055,-0.0010604858,0.12060547,-0.31445312,-0.16796875,-0.038085938,0.088378906,0.0014572144,0.009216309,-0.20117188,0.03955078,0.10986328,0.13769531,-0.22265625,0.04638672,-0.10498047,0.00982666,-0.041259766,0.017211914,0.032470703,-0.016479492,-0.016235352,-0.071777344,-0.18652344,-0.1171875,-0.056884766,0.059570312,0.092285156,-0.064941406,-0.13574219,-0.055419922,-0.12109375,0.052001953,-0.007873535,-0.22753906,0.111328125,-0.1796875,0.0546875,-0.030639648,-0.13574219,0.061035156,-0.0038757324,0.09082031,0.056640625,0.009643555,-0.07519531,0.14941406,-0.056640625,-0.03125,0.13769531,-0.122558594,-0.07519531,0.06640625,0.055664062,-0.026489258,-0.025390625,0.119628906,0.10449219,0.13183594,-0.07519531,-0.10595703,-0.171875,0.083496094,-0.21289062,-0.09667969,0.049316406,0.084472656,-0.05908203,0.010498047,0.17871094,-0.018188477,-0.03100586,-0.07519531,-0.03930664,0.06542969,-0.10253906,-0.049804688,-0.30859375,0.18652344,-0.08886719,0.03515625,0.0015716553,0.08203125,-0.009887695,0.03125,0.30664062,0.04296875,-0.15332031,-0.026367188,-0.091796875,-0.026611328,0.119140625,0.07421875,-0.2421875,-0.08300781,0.08935547,0.084472656,0.044433594,-0.036621094,0.014892578,-0.11767578,0.0015106201,0.026977539,-0.16992188,-0.079589844,0.072265625,-0.03100586,0.106933594,-0.0126953125,-0.20410156,-0.024414062,0.11376953,-0.13183594,0.07714844,0.18847656,0.140625,0.2578125,0.20117188,-0.08154297,-0.08691406,-0.08642578,-0.018798828,0.10205078,0.020019531,-0.009155273,-0.16601562,-0.14746094,0.1796875,0.04296875,-0.056152344,-0.057373047,-0.31835938,0.056396484,0.076171875,-0.09423828,-0.11230469,-0.083984375,-0.067871094,-0.004852295,0.033935547,-0.2265625,-0.14453125,0.012329102,-0.19042969,-0.19238281,0.17871094,-0.0039367676,0.008605957,0.08154297,-0.019042969,-0.055908203,0.083984375,0.010253906,-0.022094727,0.08691406,-0.015991211,-0.029663086,-0.01574707,0.09716797,-0.18554688,0.010925293,0.045654297,-0.080566406,0.0022125244,-0.140625,0.1484375,-0.03955078,0.01373291,0.008850098,0.04272461,0.041015625,-0.25585938,-0.01928711,-0.13769531,-0.15039062,0.0076293945,-0.13574219,0.043701172,0.12792969,0.22753906,0.00982666,-0.061035156,-0.049560547,-0.08203125,-0.049072266,-0.09082031,0.005065918,0.11328125,0.140625,-0.12451172,-0.037353516,0.068359375,-0.14746094,-0.06689453,0.19335938,0.15917969,-0.13671875,-0.045166016,0.05102539,0.08203125,0.14453125,-0.025146484,-0.0019378662,-0.013305664,0.044677734,-0.020385742,-0.041259766,-0.045166016,-0.30859375,-0.140625,0.23632812,-0.0012817383,0.16308594,0.042236328,0.0012664795,0.10644531,-0.07519531,-0.28515625,-0.072265625,0.013244629,0.014282227,0.080566406,-0.08154297,-0.265625,-0.03955078,-0.035888672,0.025268555,-0.0703125,0.030639648,-0.08300781,-0.072753906,0.119628906,-0.071777344,0.064453125,0.071777344,0.022094727,0.0625,0.19628906,-0.076660156,-0.07373047,-0.0009460449,-0.08300781,-0.040283203,0.122558594,0.16894531,0.11767578,0.018188477,-0.083984375,-0.13085938,0.095703125,0.021972656,0.14160156,-0.06689453,0.14355469,0.13085938,-0.083984375,-0.045410156,0.125,0.064453125,0.40429688,-0.03149414,-0.009765625,0.045166016,0.114746094,-0.13183594,-0.13574219,-0.072265625,0.0016098022,0.11669922,0.31054688,-0.15234375,0.06298828,-0.021118164,-0.068847656,0.04638672,-0.088378906,-0.026611328,0.10644531,0.064941406,0.014099121,-0.0234375,-0.08544922,-0.13378906,0.012512207,0.12158203,0.21875,0.07128906,0.12597656,-0.048583984,-0.16503906,0.039794922,-0.060302734,0.08300781,-0.04321289,-0.083496094,0.09667969,-0.048339844,0.020629883,-0.07714844,0.018432617,0.107910156,0.22265625,0.046875,0.020263672,-0.018920898,-0.25195312,-0.08544922,0.15332031,0.26171875,0.08496094,-0.08984375,0.007232666,-0.1015625,0.14648438,0.05883789,0.05053711,0.0027008057,0.056396484,-0.08154297,0.04296875,-0.21484375,-0.40820312,-0.083984375,0.22851562,0.12158203,0.10546875,0.04296875,-0.14453125,0.056884766,0.13378906,-0.033935547,0.018676758,-0.07861328,-0.13964844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12792969,-0.087890625,-0.044433594,0.076171875,-0.07861328,0.24902344,0.06201172,-0.016479492,-0.08642578,-0.18945312,-0.033203125,-0.33203125,0.10888672,0.359375,0.17773438,-0.31640625,-0.044433594,0.0625,-0.0079956055,0.048583984,-0.0625,0.28320312,-0.17480469,0.064941406,0.0703125,-0.26953125,-0.06640625,-0.08984375,0.099121094,0.09326172,-0.01953125,-0.11621094,0.10888672,0.07763672,0.0008239746,0.0138549805,-0.034179688,0.18652344,-0.012451172,0.08154297,-0.00970459,-0.48046875,0.10986328,0.012878418,0.0029754639,-0.012634277,-0.13867188,-0.10644531,-0.009887695,-0.07861328,0.068359375,-0.1171875,0.017700195,-0.011962891,-0.016357422,0.022705078,0.030639648,-0.3671875,-0.063964844,0.13378906,0.13671875,-0.01940918,-0.045898438,-0.071777344,0.083984375,0.10546875,0.027954102,-0.031982422,0.011352539,-0.030883789,0.140625,-0.0703125,-0.09472656,-0.390625,-0.110839844,0.10595703,0.16796875,0.067871094,0.08154297,-0.07373047,-0.16601562,0.015625,-0.08984375,-0.03125,-0.0859375,-0.14746094,-0.14550781,-0.16894531,-0.00289917,0.11621094,0.007232666,-0.23632812,0.06225586,-0.071777344,-0.22265625,-0.03515625,-0.080566406,0.08544922,-0.034423828,-0.036376953,0.048583984,-0.095214844,0.087402344,-0.08984375,0.026977539,-0.046875,-0.060791016,-0.009094238,0.072265625,0.01361084,-0.0068969727,-0.25585938,-0.099121094,-0.033447266,0.13671875,0.10449219,0.012268066,0.0625,0.004699707,0.037841797,-0.009338379,-0.21386719,-0.03515625,0.0015563965,-0.063964844,0.09716797,-0.03100586,-0.21582031,-0.17382812,-0.04296875,-0.005218506,-0.106933594,0.19433594,0.22851562,0.045654297,-0.063964844,-0.019042969,-0.07080078,0.09667969,-0.037597656,0.041748047,0.11328125,0.12597656,-0.22558594,0.06738281,0.14550781,0.16210938,-0.10595703,0.02722168,0.008361816,0.20507812,-0.091308594,-0.007171631,-0.17773438,-0.07763672,-0.028686523,0.01928711,-0.016235352,0.25976562,0.11035156,-0.18359375,0.15722656,-0.03540039,-0.072265625,-0.044677734,0.05102539,-0.07324219,0.09033203,-0.103515625,0.068359375,-0.016357422,-0.017089844,-0.028198242,0.1484375,0.041015625,0.15527344,0.140625,-0.10986328,-0.13183594,-0.03149414,0.021240234,0.088378906,0.034179688,0.04663086,0.07519531,0.11230469,0.007080078,0.06347656,0.09326172,0.05493164,-0.1484375,0.06591797,0.080078125,-0.11621094,0.17773438,-0.024902344,-0.09667969,0.09472656,0.036132812,0.15234375,-0.087890625,-0.17578125,-0.091308594,-0.0040893555,-0.09375,0.059570312,-0.1953125,0.023071289,-0.056640625,-0.014282227,0.1171875,0.057373047,0.08544922,0.12158203,0.057373047,-0.092285156,0.103515625,-0.02722168,0.15820312,-0.1484375,0.07128906,-0.1328125,-0.119140625,0.03955078,0.096191406,0.067871094,0.083496094,-2.0623207e-05,0.23242188,0.064453125,0.047851562,-0.05444336,0.12451172,-0.11376953,0.028198242,0.20703125,-0.21582031,-0.10449219,-0.010559082,0.08544922,-0.100097656,0.16796875,0.06982422,-0.0050354004,0.088378906,-0.079589844,-0.16699219,-0.08886719,0.07128906,-0.06982422,0.078125,0.010009766,-0.12792969,0.12988281,0.0038757324,-0.15234375,0.12158203,-0.055664062,-0.018676758,0.080078125,0.018676758,0.05493164,-0.21191406,0.10546875,-0.04321289,-0.07861328,-0.11328125,0.052734375,-0.08935547,0.19628906,0.012817383,-0.04736328,0.3359375,-0.041992188,0.16308594,-0.123535156,0.00019168854,0.12109375,-0.064941406,0.122558594,-0.10546875,-0.055664062,0.1640625,-0.118652344,0.011230469,-0.028686523,-0.04638672,-0.19238281,0.095703125,0.12695312,0.10644531,-0.0045776367,-0.053955078,0.041503906,0.07519531,-0.13378906,-0.03955078,0.063964844,0.009887695,0.021972656,0.115722656,0.009338379,0.10595703,-0.095214844,0.16601562,-0.109375,0.0020141602,-0.026733398,0.14160156,0.014831543,0.044921875,0.064941406,0.068359375,-0.12451172,0.09765625,0.07519531,-0.07763672,-0.087890625,0.103515625,-0.060546875,-0.08691406,-0.021484375,0.20800781,-0.0390625,-0.055664062,0.21875,-0.20507812,-0.053955078,-0.06591797,-0.17871094,0.14550781,0.118652344,-0.08544922,0.051513672,0.009338379,-0.0058898926,0.045898438,-0.09765625,0.076660156,-0.099121094,-0.15136719,0.083984375,-0.08935547,0.040283203,-0.056152344,-0.083496094,0.004638672,0.025512695,-0.10058594,-0.16113281,0.040039062,-0.16992188,0.018066406,0.034179688,0.095703125,0.013366699,-0.047851562,0.007537842,0.015563965,0.15429688,-0.09033203,0.014831543,0.028076172,-0.023925781,0.067871094,0.060058594,-0.07470703,0.008056641,0.027832031,0.27148438,0.13574219,0.103515625,0.19042969,-0.059570312,-0.18554688,-0.04736328,0.08691406,0.005706787,0.21386719,-0.049316406,0.17089844,-0.049072266,-0.047851562,-0.060546875,0.18847656,0.09277344,-0.007659912,0.08935547,0.13378906,-0.045410156,0.012512207,-0.018798828,-0.010986328,-0.15625,0.06347656,0.020751953,0.007751465,-0.09277344,0.040039062,0.03955078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.14355469,-0.061523438,0.24902344,0.12060547,0.021118164,0.20703125,-0.017578125,0.03540039,0.025634766,0.0010681152,-0.06225586,-0.12207031,0.012878418,0.26171875,-0.11279297,0.028320312,0.025634766,0.1328125,0.09716797,0.035888672,0.017700195,0.18066406,0.09765625,0.050048828,0.02758789,0.024536133,-0.0022277832,0.07324219,-0.09326172,0.06982422,-0.05102539,0.088378906,-0.009277344,-0.13378906,-0.028198242,0.114746094,0.029418945,-0.13769531,0.07080078,0.16113281,-0.013244629,0.0027313232,0.15625,0.055908203,-0.045654297,0.111816406,-0.00078964233,0.16015625,0.056152344,-0.21875,-0.020141602,0.075683594,0.038330078,0.088378906,0.17675781,0.123535156,-0.026611328,0.012268066,0.00982666,0.104003906,0.04736328,0.15722656,-0.1328125,-0.010131836,0.12451172,-0.03466797,0.012512207,0.021728516,-0.23925781,0.15234375,0.18652344,0.021850586,0.14550781,-0.03881836,0.056640625,0.21582031,0.17285156,0.26367188,-0.052490234,0.29492188,0.15234375,-0.06689453,0.22949219,-0.020141602,0.100097656,0.091796875,0.051513672,0.013366699,0.03955078,-0.02758789,0.041503906,0.068359375,-0.041015625,0.01574707,0.0027313232,0.171875,0.09863281,-0.09765625,0.014709473,0.083984375,-0.11669922,0.026977539,-0.071777344,0.048583984,0.023925781,0.036376953,0.05908203,0.030273438,0.016601562,0.071777344,0.15039062,0.04321289,0.17675781,-0.10498047,0.06542969,-0.026123047,-0.014953613,0.084472656,0.07373047,0.16210938,0.05834961,-0.095703125,0.21386719,0.028564453,-0.1796875,0.09375,0.09716797,-0.06689453,0.22753906,0.04345703,0.068359375,-0.006072998,-0.06738281,0.0005950928,-0.0034484863,0.10107422,-0.017211914,-0.02709961,-0.064453125,0.019897461,-0.10498047,0.100097656,0.06542969,-0.09765625,0.02734375,0.026733398,-0.010559082,0.08105469,-0.06982422,0.088378906,0.29882812,-0.01928711,0.0050354004,-0.033691406,0.25,-0.10449219,-0.01574707,0.17382812,0.051513672,0.07763672,0.22167969,0.036376953,0.13867188,0.11767578,0.060546875,-0.0052490234,0.0047302246,0.051513672,0.14550781,0.007019043,0.12207031,-0.028564453,-0.048095703,0.031982422,-0.08300781,-0.092285156,0.18066406,0.088378906,0.140625,0.13964844,-0.005706787,-0.008239746,0.12207031,0.06640625,-0.051513672,-0.14355469,0.0546875,0.10253906,-0.053466797,0.11669922,0.08691406,-0.16308594,0.036621094,0.13183594,0.014465332,0.00030708313,-0.22460938,0.12011719,-0.21582031,0.0018539429,-0.103027344,-0.015075684,-0.019042969,-0.0003681183,-0.026855469,0.03930664,-0.02709961,-0.13183594,0.115234375,0.1484375,0.119140625,0.09277344,-0.059570312,0.047851562,-0.056640625,0.013793945,0.056152344,-0.12695312,0.021972656,0.040283203,0.013427734,0.14160156,0.12792969,-0.12695312,0.14160156,0.08935547,-0.078125,0.1484375,-0.19921875,-0.012329102,-0.032958984,0.05883789,-0.021728516,-0.11767578,0.095214844,-0.057373047,0.1875,0.140625,-0.009765625,-0.033203125,-0.037841797,0.16894531,-0.0146484375,0.09765625,0.024780273,0.100097656,-0.014953613,0.05126953,0.087402344,-0.16601562,0.19921875,0.03540039,-0.008178711,0.017822266,0.03515625,-0.21289062,0.049072266,0.11767578,0.092285156,0.01586914,0.06542969,-0.031982422,0.1953125,-0.007171631,0.008544922,-0.071777344,0.07080078,-0.03955078,-0.04345703,0.14550781,-0.06225586,-0.067871094,-0.055908203,0.14941406,0.110839844,0.08642578,-0.13574219,-0.075683594,-0.088378906,0.10253906,0.09423828,-0.053222656,0.1015625,0.16796875,0.046875,0.07373047,0.03491211,-0.053222656,-0.028930664,0.079589844,0.053222656,0.13574219,0.055908203,0.30859375,-0.10888672,0.025512695,0.06347656,-0.055419922,0.10986328,0.076171875,-0.025878906,0.071777344,0.11230469,-0.10546875,0.052490234,0.053955078,0.08544922,0.05078125,-0.123046875,-0.008850098,0.028198242,0.052978516,0.017578125,0.031982422,0.15234375,0.03100586,0.09326172,0.06591797,-0.028808594,-0.03491211,0.029296875,0.28710938,0.08886719,0.045654297,-0.040527344,0.16992188,-0.14257812,0.033203125,0.063964844,-0.11816406,0.04638672,0.03857422,0.09375,0.061523438,0.00029182434,0.056884766,-0.16113281,0.118652344,0.15234375,0.052246094,0.083496094,0.18261719,0.033203125,0.13378906,0.04321289,-0.026123047,-0.047851562,0.024658203,0.068847656,0.0049438477,-0.03173828,-0.091308594,0.05419922,0.14746094,0.15429688,0.091796875,-0.03149414,0.22363281,0.08544922,0.053466797,-0.024780273,-0.078125,0.038085938,0.061767578,0.072265625,-0.07128906,-0.07128906,-0.115722656,-0.008361816,0.11816406,0.083496094,0.14941406,-0.0234375,0.07421875,-0.04272461,-0.12988281,0.16894531,-0.06201172,-0.016723633,0.05444336,-0.06689453,-0.04272461,-0.22265625,-0.012023926,0.013305664,0.18847656,0.03564453,0.05810547,-0.13671875,0.026611328,0.15527344,0.067871094,0.024291992,-0.16503906,0.049316406,0.072265625,0.025878906,-0.011657715,-0.08251953,0.071777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.09326172,0.14941406,-0.19726562,0.075683594,-0.10888672,-0.032958984,0.13671875,0.10205078,-0.036865234,0.004425049,0.09472656,-0.0546875,0.17578125,-0.002029419,0.10253906,0.035888672,-0.10546875,-0.037841797,-0.22851562,0.03881836,-0.06933594,0.08984375,0.007171631,-0.07373047,-0.055664062,-0.07421875,-0.056396484,0.07714844,0.100097656,0.11669922,0.036865234,-0.071777344,0.08691406,0.091796875,0.11621094,-0.111328125,0.016723633,-0.119628906,0.008178711,-0.018310547,0.025024414,-0.084472656,0.01586914,-0.080566406,0.09667969,0.171875,0.025634766,0.008972168,0.13183594,0.11767578,0.023925781,0.08496094,-0.00076293945,0.052001953,-0.0703125,-0.110839844,-0.083984375,-0.092285156,-0.1171875,0.109375,0.041503906,0.114746094,0.006958008,-0.07861328,0.037353516,-0.063964844,-0.02319336,-0.079589844,-0.063964844,-0.1015625,-0.034179688,-0.16796875,0.013977051,-0.20117188,0.048828125,0.0067443848,-0.049072266,0.007232666,0.13183594,0.03881836,0.045654297,0.08496094,-0.04711914,-0.12792969,0.19824219,-0.06591797,-0.10058594,-0.10839844,-0.09863281,0.049560547,-0.05859375,0.17480469,0.063964844,-0.021606445,0.020019531,-0.1484375,0.052001953,-0.015991211,-0.033935547,-0.047607422,0.11767578,-0.04663086,-0.016357422,-0.10058594,-0.056152344,0.06933594,0.13378906,0.14648438,-0.067871094,0.013977051,-0.045654297,-0.12451172,0.080078125,-0.067871094,0.05053711,-0.19238281,0.20214844,0.10253906,0.11425781,0.068359375,0.09082031,-0.107910156,0.09423828,-0.18359375,0.10498047,-0.06542969,-0.083984375,-0.09667969,-0.16210938,0.033691406,-0.016967773,-0.13964844,0.0020599365,0.004760742,-0.15429688,0.048339844,0.029296875,-0.067871094,-0.029541016,0.096191406,0.12988281,-0.16894531,-0.016723633,-0.03515625,-0.19042969,-0.09667969,-0.12597656,-0.08984375,-0.11279297,-0.12792969,0.0010375977,-0.14160156,-0.053466797,-0.055419922,0.07519531,0.05053711,0.021606445,-0.21777344,-0.17675781,-0.07080078,0.059814453,0.0234375,0.23535156,-0.09375,0.14257812,-0.076171875,-0.095703125,0.09082031,0.016967773,0.042236328,-0.048828125,0.03173828,0.013244629,-0.059326172,-0.0390625,-0.053955078,0.07519531,0.071777344,-0.1875,-0.07373047,0.040283203,-0.044433594,0.039794922,0.049072266,-0.08544922,-0.007873535,-0.009460449,-0.100097656,-0.13769531,0.022460938,0.07470703,-0.10205078,-0.020874023,0.0014419556,0.0005683899,-0.25,-0.10888672,0.008117676,-0.07324219,0.118652344,0.068359375,-0.028320312,0.10253906,0.064453125,0.140625,-0.23730469,-0.15332031,-0.21777344,-0.29882812,-0.11376953,0.041992188,-0.15136719,-0.16894531,-0.005859375,-0.08496094,0.18945312,0.0070495605,-0.10498047,0.18164062,-0.013427734,0.10644531,0.0015640259,-0.10595703,-0.09423828,-0.22460938,-0.26171875,-0.12988281,-0.23144531,-0.12695312,-0.045654297,0.006225586,-0.09863281,-0.06591797,-0.18457031,-0.019165039,-0.048095703,0.067871094,-0.17285156,-0.026489258,-0.03540039,0.17089844,-0.05908203,0.01159668,0.060058594,0.10986328,-0.1796875,-0.021240234,0.12402344,0.053466797,0.10888672,-0.068359375,-0.063964844,0.0014038086,-0.049072266,-0.020751953,0.00023555756,-0.114746094,-0.063964844,-0.051513672,-0.32421875,-0.11279297,-0.032226562,-0.08300781,-0.12597656,0.041503906,0.014221191,-0.16601562,0.110839844,0.12890625,0.041748047,0.01940918,0.060546875,0.0015563965,-0.045166016,0.017089844,-0.24902344,-0.12402344,0.00491333,-0.119628906,0.06640625,-0.096191406,-0.12451172,-0.09667969,0.14355469,0.06933594,-0.04321289,-0.25585938,0.115234375,-0.099121094,-0.18457031,0.049560547,-0.20800781,-0.05078125,0.0009651184,0.047851562,0.16503906,0.064453125,-0.0625,-0.06591797,0.09814453,0.08935547,-0.0071105957,-0.13378906,-0.103515625,-0.10839844,-0.048095703,-0.09326172,-0.16308594,0.036621094,0.15625,0.11621094,-0.14257812,-0.05029297,-0.13183594,-0.040283203,-0.010070801,-0.13867188,0.040283203,-0.091796875,-0.11621094,0.010192871,0.21386719,-0.18945312,0.052978516,-0.119628906,0.006011963,0.15917969,-0.02746582,0.052490234,0.022583008,0.08984375,-0.16113281,0.0071411133,0.064453125,0.15136719,0.022460938,-0.009155273,0.057617188,-0.115722656,-0.037109375,-0.1875,0.083984375,0.015014648,0.02368164,-0.07324219,0.107910156,-0.09082031,0.06640625,0.016357422,-0.033691406,0.068847656,0.03515625,-0.100097656,0.09082031,-0.024902344,-0.016235352,-0.049804688,-0.08935547,-0.16308594,0.12109375,0.03564453,-0.15917969,-0.076171875,-0.06225586,0.122558594,-0.084472656,-0.13769531,-0.0859375,-0.079589844,0.10888672,-0.016235352,-0.30273438,-0.11621094,0.032958984,-0.029174805,-0.022583008,-0.013244629,-0.09082031,0.09716797,-0.09863281,-0.030029297,-0.0025177002,-0.14160156,0.043945312,0.010925293,0.16992188,-0.023803711,-0.17089844,-0.060058594,0.012084961,-0.039794922,0.051757812,0.056884766,-0.087402344,-0.11767578,-0.028564453,-0.11621094,0.01586914,-0.10205078,-0.071777344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05908203,0.026855469,-0.16503906,-0.19042969,-0.1484375,-0.067871094,-0.032958984,0.19824219,-0.11279297,-0.119628906,0.10839844,-0.10644531,0.0059814453,0.08300781,0.056152344,0.18261719,-0.16601562,-0.020629883,-0.09765625,0.0054016113,-0.18457031,0.20214844,0.047607422,0.03100586,0.12451172,-0.07763672,-0.14550781,0.0052490234,-0.07861328,-0.10449219,-0.14160156,0.08496094,-0.08496094,0.02758789,-0.21679688,0.16308594,-0.06298828,0.087890625,0.31445312,-0.33398438,-0.036621094,-0.115234375,-0.21191406,0.07080078,0.012878418,0.0014724731,-0.28320312,0.0064697266,0.11376953,-0.16894531,-0.296875,-0.111816406,-0.19042969,0.055664062,-0.030639648,0.20019531,-0.07373047,-0.08105469,-0.0703125,0.13378906,-0.1328125,-0.15136719,0.08984375,0.12060547,0.10058594,-0.025756836,0.013366699,-0.15234375,-0.004547119,0.060791016,0.08544922,0.035888672,0.041015625,-0.123046875,0.13671875,0.08691406,-0.047851562,0.037353516,-0.052246094,-0.022338867,-0.31054688,0.05883789,-0.28125,-0.14257812,-0.24023438,-0.050048828,0.20800781,0.106933594,0.0053710938,-0.13769531,-0.26171875,-0.12890625,-0.16210938,0.05883789,0.044921875,0.03540039,0.0703125,-0.23730469,-0.22851562,-0.075683594,-0.010620117,-0.013305664,-0.0067749023,0.011047363,-0.025268555,-0.29296875,0.22558594,-0.1875,-0.05102539,0.11376953,0.15039062,-0.013183594,0.0625,-0.14257812,-0.006011963,0.13964844,-0.06689453,-0.114746094,0.12597656,-0.16796875,-0.07080078,-0.21191406,0.00062179565,-0.040527344,-0.05029297,0.07910156,0.035888672,-0.27929688,-0.076660156,-0.005706787,-0.008972168,-0.076660156,-0.0390625,-0.0859375,0.087402344,-0.010314941,-0.041015625,-0.08251953,0.17871094,-0.13476562,-0.071777344,0.0011367798,-0.048339844,-0.0029754639,-0.018310547,0.10107422,0.052490234,-0.115234375,-0.056640625,-0.037597656,0.12060547,0.104003906,0.12792969,0.02355957,0.08300781,0.11279297,-0.11328125,-0.06689453,-0.04296875,0.15429688,-0.34765625,-0.26953125,-0.17675781,-0.24707031,-0.06982422,-0.021362305,-0.16308594,-0.036865234,-0.05053711,-0.20507812,0.043945312,-0.36523438,0.013977051,0.10449219,0.064453125,-0.23144531,0.12402344,0.059570312,-0.17089844,0.12695312,-0.021972656,0.12695312,-0.0012512207,-0.25,-0.08691406,-0.040283203,-0.04663086,0.09423828,0.14648438,0.07470703,-0.07470703,-0.024780273,0.014770508,0.140625,0.04638672,0.021362305,-0.24707031,0.0234375,-0.0030975342,0.06982422,-0.08300781,0.012084961,0.100097656,-0.03112793,-0.009887695,-0.19433594,0.13769531,-0.052734375,0.052734375,0.01159668,0.15625,0.04711914,-0.07861328,-0.04663086,-0.14746094,0.19140625,-0.00037002563,-0.088378906,-0.14453125,0.13085938,-0.15039062,0.06738281,-0.0010528564,0.19335938,0.14550781,-0.067871094,-0.06347656,-0.08496094,-0.17578125,-0.063964844,-0.014892578,0.024658203,-0.044189453,-0.06738281,-0.20214844,0.03955078,-0.115722656,-0.10498047,0.076660156,0.06225586,-0.37890625,0.12451172,-0.006652832,-0.103027344,-0.19335938,-0.0012588501,0.08496094,0.005279541,0.09082031,-0.16601562,-0.16992188,0.18945312,0.125,0.040283203,0.122558594,0.076171875,-0.0059509277,-0.018188477,0.04248047,-0.0625,0.05126953,-0.16699219,-0.045898438,0.11376953,-0.061523438,-0.22363281,-0.038085938,0.26757812,0.049560547,-0.08984375,-0.27539062,0.088378906,-0.064941406,-0.13085938,0.029418945,0.075683594,0.10498047,-0.15527344,0.17089844,0.26757812,-0.103515625,-0.14355469,-0.17578125,0.15039062,0.03930664,-0.2890625,-0.10253906,0.060302734,0.0074157715,-0.12158203,0.110839844,0.16992188,0.13964844,-0.17578125,0.12451172,-0.15625,0.10498047,-0.13574219,0.07421875,0.12890625,0.028442383,0.068847656,-0.06591797,-0.26953125,-0.06542969,-0.1328125,0.15820312,0.083496094,-0.09082031,0.030029297,0.26953125,-0.048828125,0.056640625,-0.06347656,0.022460938,-0.025268555,-0.107910156,-0.08154297,0.088378906,-0.014709473,-0.0859375,0.025512695,0.22460938,0.016967773,-0.16210938,0.008605957,0.029541016,0.017700195,0.063964844,0.20703125,-0.12402344,0.10253906,0.037597656,0.03466797,0.04321289,-0.05444336,0.040039062,-0.048095703,0.20800781,-0.111328125,-0.19921875,-0.025634766,0.14453125,-0.265625,-0.087402344,0.010620117,-0.15625,0.06347656,0.12451172,0.01977539,-0.08935547,-0.022338867,-0.10253906,-0.17871094,0.10839844,-0.05419922,0.048095703,-0.030517578,-0.017944336,-0.059326172,-0.036621094,0.091308594,-0.036132812,0.12109375,-0.016845703,-0.03515625,0.018432617,-0.04296875,-0.017944336,-0.25,0.076660156,-0.09716797,-0.11767578,0.05517578,0.060546875,-0.014465332,-0.047607422,-0.021728516,-0.0066223145,0.004119873,-0.030517578,0.021606445,-0.1484375,-0.063964844,0.091308594,-0.19921875,0.08203125,0.19726562,0.0041503906,0.115234375,0.19628906,-0.15917969,0.043701172,0.21191406,0.19824219,-0.013977051,-0.37109375,-0.09716797,-0.08691406,-0.064941406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15625,0.14160156,0.032958984,-0.15429688,0.041992188,-0.047851562,-0.1875,0.013244629,-0.024902344,-0.14160156,0.28710938,0.17675781,0.018066406,-0.107910156,-0.23339844,0.051757812,-0.018188477,0.10205078,-0.04711914,-0.1875,0.20800781,0.014038086,-0.031982422,0.022338867,0.025268555,0.103515625,-0.041503906,-0.0038757324,0.041503906,-0.10449219,0.1796875,-0.17675781,-0.061279297,0.1171875,0.042236328,0.041992188,0.11376953,-0.27148438,-0.22460938,-0.021362305,0.09863281,0.017700195,0.12890625,-0.10546875,-0.00793457,-0.091308594,-0.05859375,0.13671875,-0.21289062,0.068847656,-0.078125,0.014587402,0.041259766,0.068847656,-0.009643555,-0.029907227,0.09082031,0.037597656,0.10595703,-0.11816406,-0.16503906,0.24023438,-0.07861328,0.11816406,-0.115234375,0.07714844,-0.15332031,-0.10839844,-0.18847656,0.060302734,-0.020996094,-0.203125,0.09326172,-0.1171875,-0.026977539,-0.048095703,-0.36914062,0.14160156,-0.002532959,0.30273438,-0.10644531,0.1484375,0.043701172,-0.0859375,0.00078582764,-0.03881836,-0.19335938,0.092285156,0.025390625,-0.009338379,-0.13378906,0.12060547,-0.10253906,-0.091796875,-0.12011719,-0.15234375,0.045410156,0.12792969,0.21289062,-0.04272461,-0.0071105957,-0.012268066,-0.01586914,-0.018798828,-0.048828125,0.07080078,0.046875,-0.041015625,0.12060547,0.07373047,0.08691406,-0.064941406,-0.09423828,0.06298828,0.041259766,0.12695312,0.106933594,0.04736328,0.015014648,0.037841797,0.15625,0.14257812,0.047851562,-0.0057678223,0.17480469,-0.18847656,0.20117188,-0.07714844,-0.067871094,-0.068847656,0.18066406,-0.024658203,0.09716797,-0.107910156,-0.05810547,0.07421875,-0.0019378662,0.087890625,0.008422852,-0.032958984,-0.033691406,-0.05102539,-0.061035156,0.100097656,-0.018310547,-0.004058838,-0.050048828,-0.088378906,-0.049804688,0.119140625,0.0033569336,0.14941406,0.050048828,-0.19042969,-0.14550781,0.07421875,-0.088378906,0.099609375,-0.07861328,0.096191406,-0.008422852,0.17285156,0.018798828,0.115234375,0.071777344,0.0390625,-0.06982422,0.07128906,0.09667969,-0.15527344,0.0009765625,0.19433594,0.041015625,0.023071289,-0.11328125,-0.06542969,-0.0033416748,0.10546875,2.4914742e-05,0.010070801,0.061035156,0.0390625,-0.04248047,-0.029663086,0.05444336,-0.011474609,0.09033203,-0.03173828,0.08105469,0.06933594,0.07373047,0.13183594,-0.11035156,-0.14746094,-0.045654297,0.00015449524,0.061279297,0.119140625,0.04711914,0.045166016,0.12207031,-0.036865234,0.05834961,-0.0003681183,0.05419922,0.0010147095,0.05859375,-0.18457031,-0.0028076172,-0.25976562,0.063964844,0.053710938,0.040527344,-0.25390625,0.09277344,-0.024902344,-0.056884766,0.048828125,-0.07763672,0.060302734,0.21679688,-0.025756836,0.07080078,-0.051757812,-0.092285156,-0.09863281,0.03930664,0.0007324219,-0.08203125,-0.057861328,-0.095703125,0.025390625,0.091308594,-0.18554688,-0.34765625,0.08886719,-0.17871094,0.13085938,0.064941406,-0.29101562,0.15039062,-0.06347656,-0.13574219,0.0032196045,0.0859375,0.046875,-0.25,0.19042969,-0.00680542,-0.04663086,0.13085938,0.12988281,0.16015625,0.115722656,0.05053711,-0.15234375,-0.006439209,-0.11035156,0.0013580322,-0.050048828,-0.079589844,0.053222656,-0.13378906,0.053955078,0.075683594,0.013000488,0.050048828,0.006072998,0.28320312,0.020019531,0.20019531,-0.013427734,-0.017333984,-0.068359375,0.10888672,-0.09814453,0.043701172,-0.010986328,-0.006072998,-0.07519531,0.040283203,0.008972168,0.033935547,0.18164062,0.12988281,-0.005126953,-0.048583984,0.020385742,-0.03930664,-0.2265625,0.046142578,-0.0072021484,0.08203125,-0.024902344,0.029663086,-0.024291992,-0.12792969,-0.05053711,0.02319336,0.11425781,-0.026733398,0.09375,-0.09863281,-0.15234375,-0.05517578,-0.18066406,0.012634277,0.016601562,-0.03930664,-0.022705078,-0.038085938,0.026611328,0.057617188,-0.20410156,0.05126953,0.00970459,-0.125,0.07714844,0.0077819824,-0.13964844,0.07324219,-0.31835938,-0.25585938,0.26953125,-0.25585938,-0.00061798096,0.21679688,0.044677734,0.033691406,0.08203125,0.17089844,-0.09423828,-0.020751953,0.009277344,-0.057861328,0.16796875,-0.05883789,-0.109375,-0.10595703,0.056884766,-0.03173828,0.12890625,0.21289062,0.06201172,-0.125,0.14355469,-0.052978516,-0.079589844,0.045898438,0.119140625,-0.038330078,0.2265625,-0.05102539,0.022949219,-0.021240234,-0.014831543,-0.0035552979,0.10449219,-0.07470703,0.07128906,-0.007232666,0.14160156,0.020629883,0.072265625,-0.012207031,-0.05102539,-0.041259766,0.05810547,-0.04711914,0.15820312,-0.16796875,-0.06298828,-0.11669922,0.0027618408,0.20898438,-0.07470703,-0.009765625,-0.045410156,-0.008605957,0.078125,-0.14257812,0.044189453,-0.25,0.0703125,0.04663086,-0.03173828,-0.22753906,0.09472656,-0.16699219,0.20507812,0.045898438,-0.008850098,0.055908203,0.064453125,0.14355469,0.11328125,-0.40234375,-0.06298828,-0.12207031,0.034423828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12988281,0.1875,0.09326172,-0.096191406,-0.07421875,0.27539062,-0.110839844,-0.11425781,0.15429688,0.18945312,-0.12158203,-0.027832031,0.0022735596,-0.071777344,-0.028686523,0.08203125,-0.1953125,-0.0042419434,0.080078125,0.052246094,-0.03955078,0.10205078,0.19433594,-0.19726562,0.10107422,0.045166016,-0.14257812,-0.09423828,0.031982422,-0.0048828125,0.095214844,-0.026611328,0.08203125,-0.13964844,0.05029297,0.053955078,-0.025512695,-0.050048828,0.08691406,0.067871094,-0.11816406,0.10058594,0.061035156,0.111328125,-0.076171875,-0.16308594,-0.022827148,0.083984375,0.21484375,0.016845703,0.1796875,-0.0051574707,0.110839844,0.047851562,-0.106933594,0.08300781,0.041748047,-0.019042969,-0.12597656,-0.08496094,0.03173828,0.0023498535,0.16601562,-0.13378906,-0.052246094,0.37109375,0.026977539,0.024658203,0.080078125,-0.076171875,-0.067871094,-0.23046875,0.043945312,0.16699219,0.078125,-0.28125,-0.015563965,-0.056640625,0.063964844,-0.18847656,0.0072631836,0.0074157715,0.1796875,0.07519531,-0.106933594,0.04296875,-0.01361084,0.0005378723,0.08251953,-0.05444336,-0.19335938,0.057861328,0.043701172,-0.08105469,-0.028076172,-0.043945312,-0.043701172,0.03515625,0.030639648,0.15039062,0.043701172,0.115722656,-0.119628906,-0.013916016,-0.010620117,-0.020507812,0.036376953,0.099121094,-0.14453125,-0.06542969,-0.10888672,-0.046875,0.047851562,0.009460449,0.080566406,0.06347656,-0.057373047,-0.12890625,-0.18066406,0.100097656,0.068359375,-0.15429688,0.19628906,0.06982422,-0.020141602,-0.11279297,-0.044677734,0.0008468628,-0.09814453,0.05102539,-0.005004883,-0.010070801,0.08886719,-0.103027344,-0.0099487305,0.00982666,-0.09472656,-0.049560547,-0.033935547,-0.16113281,-0.13769531,0.079589844,-0.0063476562,-0.107421875,-0.072265625,-0.046875,-0.034179688,0.06640625,0.118652344,0.17480469,-0.20214844,-0.12597656,0.12207031,-0.021972656,-0.045166016,-0.31835938,0.0032348633,0.12451172,0.07519531,-0.03149414,0.1171875,0.052490234,-0.06689453,0.10253906,-0.059326172,-0.12792969,0.061523438,-0.00491333,0.0146484375,-0.068359375,0.011230469,0.07861328,-0.12158203,-0.014160156,-0.10205078,-0.13574219,-0.08935547,0.0099487305,-0.057128906,0.11230469,0.095703125,0.08935547,-0.04345703,-0.03955078,-0.061279297,-0.10107422,0.030151367,0.12695312,-0.11035156,0.24511719,0.09863281,0.060058594,-0.068359375,-0.025756836,0.0011672974,-0.032958984,0.17285156,-0.032470703,0.09375,0.122558594,-0.015014648,0.044433594,0.083496094,0.03515625,0.016723633,0.18554688,0.13378906,-0.045654297,0.15722656,0.057128906,-0.06542969,0.014587402,0.11376953,-0.18359375,-0.2109375,-0.067871094,-0.06591797,-0.013977051,-0.083496094,0.09033203,-0.19238281,0.083984375,0.0074768066,-0.07714844,0.16796875,-0.10546875,-0.061035156,0.14453125,-0.15820312,0.020141602,-0.24707031,-0.083984375,0.047607422,-0.080078125,0.20605469,0.0018920898,-0.060058594,0.052001953,0.16894531,0.119628906,0.02734375,0.21191406,-0.06542969,-0.068847656,-0.12988281,0.0024871826,-0.1484375,-0.30664062,-0.029907227,0.016967773,0.13964844,-0.20410156,-0.03112793,0.08300781,-0.0859375,-0.092285156,-0.08886719,0.10205078,0.072265625,-0.06201172,-0.016235352,0.12890625,-0.25,-0.25195312,-0.063964844,0.04638672,-0.001159668,0.029418945,0.037353516,0.048828125,-0.11328125,0.016357422,-0.07421875,-0.20898438,-0.119140625,-0.22363281,0.05444336,0.31835938,0.044433594,0.11621094,0.025756836,0.095214844,-0.026000977,0.012634277,0.15234375,0.05908203,-0.07128906,-0.061523438,0.103515625,0.004272461,-0.08300781,-0.056640625,0.09082031,-0.07373047,0.044921875,-0.03515625,0.061035156,0.018798828,-0.036132812,-0.04638672,-0.0047302246,-0.020629883,0.057373047,0.014709473,-0.006591797,-0.118652344,0.068847656,0.16308594,-0.059814453,0.08496094,-0.20800781,-0.265625,0.06298828,0.022460938,0.055419922,-0.067871094,-0.013000488,0.09277344,0.09765625,0.14160156,0.3046875,0.19726562,-0.13671875,-0.038330078,0.014221191,-0.1484375,-0.14746094,-0.41601562,0.003768921,0.031982422,0.029296875,-0.20507812,0.04321289,0.10205078,-0.12011719,-0.05029297,-0.15136719,-0.22460938,0.05834961,-0.12402344,-0.032470703,0.17285156,-0.08251953,-0.10644531,0.010070801,0.087402344,0.13183594,-0.2109375,0.08251953,-0.13378906,0.023803711,-0.078125,-0.057617188,0.03515625,0.0029144287,-0.40820312,0.041259766,0.107910156,-0.049316406,0.22753906,-0.08251953,0.07910156,-0.055664062,-0.3515625,0.1328125,0.16015625,0.0703125,-0.16210938,-0.3046875,-0.072265625,-0.07714844,-0.14550781,-0.020385742,-0.10839844,-0.099121094,-0.03881836,0.10107422,-0.038085938,0.0048828125,-0.2734375,-0.04345703,0.028076172,-0.12011719,-0.07519531,-0.29101562,-0.122558594,0.057861328,-0.028564453,-0.24609375,0.083496094,-0.10058594,-0.038085938,-0.0043640137,0.045654297,0.0033569336,-0.21386719,0.021728516,0.03955078,-0.096191406,0.034179688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.17578125,-0.11621094,-0.08691406,-0.21972656,-0.055419922,0.118652344,-0.30273438,-0.024291992,0.032714844,-0.100097656,-0.068847656,-0.27734375,-0.11279297,-0.33203125,0.07421875,0.055419922,0.16601562,0.020385742,-0.15820312,-0.22949219,-0.09472656,-0.017211914,-0.1484375,-0.060058594,0.10253906,-0.103515625,0.03466797,0.05126953,0.0077209473,-0.31054688,-0.05883789,-0.1796875,0.040283203,-0.1953125,0.092285156,-0.27148438,-0.045654297,-0.03564453,-0.1328125,-0.0037078857,0.059326172,0.024536133,-0.13183594,0.15039062,0.03564453,-0.19238281,0.106933594,-0.109375,0.16601562,-0.24414062,0.08496094,-0.15234375,0.01184082,0.095214844,0.033691406,0.1328125,-0.13378906,-0.01940918,0.16992188,0.2890625,-0.014953613,-0.05126953,-0.100097656,-0.0146484375,0.21875,-0.21191406,0.041015625,-0.22558594,0.25195312,0.05810547,-0.08154297,0.13183594,-0.050048828,-0.12890625,-0.07470703,-0.045166016,-0.083496094,0.043945312,-0.05126953,-0.19726562,-0.09814453,-0.1171875,-0.13378906,-0.0625,0.0014572144,-0.115722656,0.060302734,-0.12695312,0.09863281,-0.01965332,-0.0045166016,0.00970459,0.048339844,-0.13867188,-0.08496094,0.26367188,-0.07519531,0.024658203,0.032226562,-0.076171875,0.023925781,0.28515625,-0.046142578,-0.23339844,0.17578125,0.07763672,0.0234375,0.16796875,0.013244629,-0.22070312,0.13085938,-0.0055236816,0.13671875,0.16894531,0.057861328,-0.15332031,-0.09667969,0.06542969,0.09277344,0.032714844,-0.05419922,-0.008422852,0.022216797,0.08984375,0.012451172,-0.18457031,0.095214844,0.08886719,0.22558594,0.014770508,-0.017333984,-0.01977539,0.13085938,0.017578125,0.28320312,0.11816406,-0.0047912598,-0.19921875,0.072265625,-0.013244629,0.016723633,0.064453125,-0.106933594,0.075683594,-0.024658203,-0.18164062,0.063964844,-0.19140625,0.03491211,-0.15820312,0.25585938,0.17382812,-0.064453125,-0.26171875,0.0059814453,0.022460938,-0.10986328,-0.1875,-0.16015625,-0.0047302246,-0.052001953,-0.07519531,0.07519531,0.17089844,-0.26171875,-0.07324219,0.110839844,-0.03930664,-0.061767578,0.055908203,-0.140625,0.13476562,-0.018066406,-0.1484375,-0.037109375,0.04638672,0.03955078,-0.07324219,-0.013916016,0.022460938,-0.122558594,-0.22363281,0.0390625,0.048583984,0.020996094,0.056396484,0.10253906,0.21582031,0.13476562,-0.10498047,-0.16503906,-0.013977051,0.09765625,0.15429688,0.07421875,-0.22363281,-0.064453125,0.064453125,0.23144531,-0.029785156,-0.11669922,0.0099487305,0.08105469,-0.002029419,-0.021240234,-0.046875,0.056396484,-0.012084961,0.20019531,0.10546875,-0.011047363,-0.23632812,0.095214844,-0.03100586,0.40039062,-0.059326172,0.13378906,-0.34179688,0.013061523,0.10546875,-0.05029297,0.11767578,0.14648438,0.014587402,0.111816406,-0.16503906,-0.0043029785,-0.11035156,0.017333984,-0.07421875,0.22851562,-0.06933594,-0.04321289,-0.33789062,-0.23828125,-0.053710938,0.09765625,-0.17480469,-0.012268066,-0.16210938,-0.13378906,-0.17675781,-0.04711914,-0.0390625,0.0018005371,-0.26171875,-0.12451172,-0.296875,-0.1015625,0.005432129,-0.10449219,0.107910156,0.016479492,-0.140625,-0.19042969,-0.016845703,-0.030517578,0.07519531,0.18261719,0.12695312,0.037841797,-0.07910156,-0.045654297,-0.05419922,-0.048095703,0.13378906,-0.031982422,0.13769531,0.15917969,-0.020874023,0.0008125305,0.12207031,-0.04248047,0.22460938,0.084472656,-0.15722656,0.06738281,0.018432617,0.203125,-0.05053711,-0.099121094,0.010437012,0.15917969,0.07324219,0.0087890625,-0.009094238,-0.027832031,0.032226562,-0.008361816,-0.03955078,0.13183594,-0.22460938,0.1953125,-0.12988281,0.27929688,-0.24414062,0.034423828,0.09814453,-0.13574219,0.02709961,-0.091308594,-0.056152344,-0.087402344,0.044189453,0.13574219,-0.076171875,0.11621094,-0.31640625,-0.036376953,0.09326172,0.27929688,-0.08935547,0.033203125,0.06738281,-0.076171875,-0.080566406,-0.08935547,-0.100097656,0.037841797,-0.053710938,-0.122558594,-0.067871094,0.087402344,0.012512207,0.07470703,-0.04663086,0.04272461,0.060058594,0.020141602,0.02331543,0.05419922,0.013916016,-0.20117188,-0.084472656,-0.15625,-0.064941406,0.11376953,-0.18164062,0.027954102,0.08544922,0.083984375,0.11035156,0.080566406,-0.24804688,-0.020629883,0.059570312,-0.008544922,-0.04248047,0.11767578,-0.21582031,-0.078125,-0.03955078,0.12109375,0.056152344,0.050048828,0.047851562,0.012573242,-0.080078125,0.059814453,-0.017944336,-0.09033203,-0.038085938,0.20214844,-0.07421875,-0.13085938,0.03173828,-0.18945312,-0.11035156,-0.15234375,-0.06542969,0.018676758,-0.026611328,0.17382812,0.1328125,0.07910156,-0.09863281,0.060546875,-0.03173828,0.12109375,0.091308594,-0.07421875,-0.08984375,0.125,0.044921875,0.16210938,0.0134887695,-0.04248047,-0.25195312,0.056884766,-0.024291992,-0.09423828,-0.026611328,0.012634277,0.011779785,-0.14746094,0.16113281,0.00076675415,-0.20996094,-0.104003906,-0.044677734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.096191406,0.007873535,0.12792969,0.028442383,0.08544922,0.16699219,0.26171875,-0.009277344,-0.13574219,0.052246094,-0.08544922,-0.095703125,-0.021118164,-0.01586914,0.11767578,0.020507812,-0.05908203,-0.14355469,-0.08886719,0.00010442734,0.16601562,-0.01574707,0.140625,-0.033447266,-0.004058838,-0.0019302368,0.026245117,-0.15722656,-0.10498047,-0.072265625,-0.1484375,0.12402344,-0.1875,0.072753906,-0.051513672,-0.07763672,0.20410156,-0.030273438,0.079589844,-0.31640625,-0.10986328,-0.10058594,4.220009e-05,-0.296875,0.057617188,0.078125,-0.07373047,0.14648438,-0.32421875,0.16796875,0.07714844,-0.17089844,-0.008972168,0.0028533936,0.03491211,-0.30273438,-0.0027313232,-0.053222656,-0.05810547,-0.23730469,0.06542969,-0.00062561035,-0.053955078,-0.047851562,-0.30078125,-0.13476562,0.16894531,0.020385742,-0.022094727,0.19140625,-0.04638672,-0.007873535,-0.06298828,0.0021209717,-0.00680542,0.057373047,0.09667969,-0.13085938,0.00579834,-0.09765625,-0.07714844,0.0070495605,-0.0055236816,0.13574219,0.03173828,0.2265625,-0.06298828,-0.14257812,-0.013549805,0.099609375,0.087402344,-0.13476562,-0.0859375,0.11279297,0.016113281,0.12597656,-0.14941406,0.006591797,-0.07324219,-0.15722656,-0.16015625,0.18261719,-0.03540039,-0.13671875,-0.03564453,0.057373047,-0.1796875,-0.25585938,-0.0138549805,-0.17382812,0.083496094,0.14257812,-0.08691406,0.13378906,0.0625,0.012023926,-0.05810547,-0.265625,-0.083984375,-0.31445312,0.037353516,-0.119628906,0.10498047,-0.067871094,-0.17578125,-0.34960938,-0.044189453,0.17773438,-0.34960938,-0.05810547,-0.016845703,-0.012634277,-0.13183594,0.021118164,0.059814453,-0.23242188,-0.03466797,0.07910156,-0.11279297,-0.11376953,-0.053466797,0.013977051,0.13867188,0.08496094,-0.111816406,-0.013793945,0.14941406,0.029785156,0.091796875,0.19042969,0.06689453,0.00077056885,0.029663086,0.19921875,0.03515625,0.34570312,0.11669922,0.11816406,0.064941406,0.06738281,-0.026123047,-0.203125,-0.046142578,-0.028808594,0.06298828,0.06933594,0.2421875,-0.10644531,-0.060791016,-0.028076172,0.030761719,-0.32421875,-0.05078125,-0.23535156,-0.005126953,-0.08251953,-0.234375,0.0002374649,-0.11816406,-0.008666992,-0.005645752,0.34960938,0.16894531,-0.048583984,-0.007873535,0.064453125,-0.0030822754,-0.11621094,0.0048828125,-0.122558594,-0.02722168,-0.092285156,0.16992188,-0.1953125,-0.023803711,-0.07763672,-0.055908203,-0.044677734,-0.050048828,-0.20605469,-0.005706787,-0.056396484,0.036132812,-0.16113281,-0.07910156,0.06591797,0.032958984,-0.01361084,-0.087402344,-0.16699219,0.095703125,0.055419922,-0.15136719,-0.07861328,0.11376953,-0.22167969,-0.008850098,-0.095703125,0.15625,-0.12988281,-0.16015625,-0.10058594,-0.07128906,0.096191406,0.003967285,-0.063964844,0.11376953,0.064453125,0.09375,0.114746094,0.18066406,-0.06640625,-0.104003906,0.075683594,-0.1328125,0.19921875,-0.007507324,-0.26367188,0.1640625,-0.052490234,-0.052246094,0.040039062,-0.02331543,-0.013061523,0.14257812,-0.16699219,0.15917969,-0.19433594,-0.15722656,-0.14648438,0.20507812,-0.06933594,0.11376953,0.01977539,0.06201172,0.09716797,-0.12060547,0.011962891,-0.041259766,0.087402344,-0.053222656,0.068847656,0.125,-0.17089844,-0.09423828,0.080566406,0.063964844,0.03100586,0.044433594,-0.12451172,0.071777344,-0.057128906,-0.022583008,-0.07373047,0.06591797,0.032714844,0.067871094,-0.06591797,0.007080078,-0.16015625,0.041259766,0.021850586,-0.045166016,0.02355957,-0.01159668,0.059814453,-0.041748047,-0.07470703,-0.076660156,-0.0138549805,0.028564453,0.08496094,-0.029907227,-0.16992188,0.15136719,0.18359375,-0.028686523,0.015258789,0.079589844,0.21582031,-0.079589844,0.119628906,-0.0032806396,0.046142578,0.029541016,-0.0071105957,0.011657715,-0.12207031,0.038330078,0.10644531,0.203125,-0.044677734,0.09277344,-0.032958984,0.0008621216,-0.06982422,0.021240234,-0.24609375,0.026855469,0.050048828,-0.11669922,-0.03149414,0.012939453,-0.064941406,-0.068847656,-0.08642578,0.083496094,-0.0066833496,-0.04321289,0.021118164,-0.14746094,0.06542969,-0.041259766,0.032958984,0.017578125,0.048339844,-0.35742188,-0.020751953,0.06933594,-0.048339844,-0.18945312,0.17578125,0.064941406,-0.19335938,-0.030517578,0.030639648,-0.076660156,0.075683594,-0.056152344,0.03881836,-0.04296875,-0.036621094,-0.044189453,-0.06591797,0.07910156,0.11035156,-0.001876831,-0.0390625,0.10058594,-0.06640625,0.060058594,0.080566406,0.04711914,0.11621094,-0.20898438,-0.040039062,-0.005554199,0.07324219,-0.021484375,-0.1484375,0.09375,0.030639648,-0.048828125,0.0025024414,0.22070312,-0.0039367676,-0.040771484,0.140625,0.052490234,0.10058594,0.103027344,0.048583984,0.02709961,-0.009643555,0.0234375,-0.053710938,0.045654297,-0.063964844,0.024414062,0.06225586,0.10546875,0.10058594,0.04248047,0.02734375,0.03491211,0.064453125,0.123535156,-0.14160156,-0.008972168,-0.09765625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.24804688,0.041259766,-0.33398438,-0.067871094,-0.115722656,0.171875,-0.27148438,-0.17578125,-0.095214844,-0.119628906,0.08544922,-0.04272461,0.061035156,0.024047852,-0.1796875,-0.08935547,-0.22558594,0.19726562,-0.20898438,-0.021484375,-0.11328125,-0.08935547,-0.11328125,0.040283203,0.030517578,-0.13867188,0.046142578,-0.008544922,0.115722656,0.029296875,0.068847656,-0.203125,-0.1484375,0.07470703,0.026245117,0.06591797,-0.05078125,0.08544922,-0.078125,-0.06298828,0.022949219,-0.22949219,-0.03112793,0.103515625,0.018676758,0.07421875,0.018188477,-0.33007812,-0.010009766,-0.079589844,-0.040283203,-0.0025634766,-0.021972656,0.0071105957,0.103027344,-0.0099487305,-0.09277344,-0.12792969,0.14941406,0.096191406,-0.057128906,0.02722168,0.11035156,-0.09326172,-0.21679688,0.28710938,0.07080078,-0.15722656,0.072753906,-0.057617188,0.26757812,0.009094238,0.06347656,-0.20214844,0.08642578,0.13867188,0.032470703,-0.1484375,0.16210938,-0.1484375,-0.044189453,-0.10449219,-0.12451172,0.09667969,-0.08642578,0.19042969,-0.25,0.11035156,-0.034179688,-0.119140625,0.09326172,0.004211426,0.014465332,-0.087890625,-0.092285156,7.6293945e-05,0.0703125,-0.008178711,-0.064941406,0.1484375,0.06591797,-0.03491211,-0.04736328,0.00982666,0.104003906,-0.009094238,-0.10839844,0.24414062,-0.034179688,0.08105469,0.10644531,-0.11376953,-0.06982422,-0.072753906,-0.052001953,0.12792969,0.119628906,-0.25976562,-0.041259766,-0.03173828,-0.048339844,-0.020751953,0.052490234,0.2265625,-0.025512695,0.025268555,0.111816406,-0.0050964355,0.04321289,0.039794922,0.026489258,0.14550781,0.0625,-0.07519531,0.01965332,0.028808594,0.100097656,-0.01184082,0.036621094,-0.042236328,-0.068359375,-0.0005683899,-0.0703125,-0.072753906,-0.07763672,-0.020385742,-0.0703125,-0.088378906,-0.064941406,-0.091796875,0.12207031,-0.08300781,0.005004883,-0.035888672,0.014770508,0.16210938,0.006378174,-0.044677734,-0.038085938,-0.031982422,-0.1015625,-0.11816406,-0.0009918213,0.125,-0.052978516,0.032714844,0.037353516,0.14746094,-0.0046691895,-0.0234375,-0.09814453,-0.008972168,-0.072265625,-0.11669922,-0.012084961,0.095703125,0.10546875,-0.18554688,-0.043945312,0.021484375,0.10839844,0.08300781,0.095214844,-0.17480469,-0.06933594,-0.03173828,-0.03515625,0.05517578,-0.15429688,-0.140625,0.19726562,0.1015625,0.18847656,0.140625,-0.08251953,-0.020629883,0.084472656,-0.026611328,-0.18554688,-0.04321289,-0.052490234,-0.109375,0.041259766,-0.032714844,-0.028198242,0.056640625,0.04248047,-0.0029449463,0.19921875,0.18554688,-0.053710938,0.014221191,-0.040771484,0.08154297,-0.05053711,-0.12792969,0.014770508,0.047851562,0.19433594,0.19628906,0.060791016,-0.046142578,0.14648438,-0.11035156,0.028686523,0.19824219,-0.030029297,-0.036865234,0.022583008,-0.22167969,-0.16992188,0.040283203,0.09667969,0.059326172,0.04663086,0.007446289,-0.07910156,0.052490234,0.037353516,-0.1015625,0.09277344,0.13964844,0.060791016,0.020385742,-0.122558594,-0.083496094,0.023925781,-0.017944336,0.064941406,0.0021514893,0.088378906,-0.059326172,-0.05029297,-0.12695312,0.0014572144,-0.012268066,0.091796875,-0.061523438,0.20703125,0.07470703,0.035888672,0.13769531,0.030151367,-0.12402344,-0.08886719,-0.12792969,-0.099609375,0.018676758,-0.2265625,-0.041503906,0.021240234,0.0050964355,0.21679688,0.25390625,0.06640625,-0.059570312,0.010070801,0.2109375,0.033447266,-0.15820312,0.024902344,-0.103027344,0.018920898,0.024414062,-0.057861328,-0.12890625,-0.047851562,0.10253906,0.07373047,0.16894531,0.08300781,-0.022705078,-0.20507812,0.007446289,0.06201172,-0.15039062,-0.017578125,-0.029785156,0.25390625,0.16796875,0.10839844,0.04736328,0.083984375,-0.052246094,0.16210938,0.19238281,-0.04296875,-0.100097656,-0.014221191,0.08935547,-0.068847656,0.10644531,0.09472656,0.05053711,0.19042969,-0.026733398,-0.08935547,0.08300781,-0.10449219,0.12792969,-0.15332031,0.114746094,0.100097656,-0.111328125,0.08154297,0.23535156,0.09375,0.20898438,-0.030273438,-0.047851562,0.03491211,0.18261719,-0.05834961,-0.002380371,-0.25195312,-0.064941406,-0.091796875,-0.0546875,0.052978516,-0.08984375,0.08251953,-0.0703125,-0.022460938,0.06542969,-0.043945312,0.026977539,0.12060547,0.013793945,-0.12158203,-0.1328125,-0.14941406,-0.03564453,0.20800781,0.01574707,0.14941406,-0.0009651184,-0.0065307617,0.060791016,0.1328125,0.043701172,0.0010070801,-0.08642578,0.044921875,0.059814453,-0.15527344,0.059814453,-0.12158203,-0.0138549805,-0.087890625,0.13964844,0.104003906,0.05883789,-0.08691406,-0.10058594,0.028686523,0.15625,0.064453125,0.041992188,0.2421875,-0.061035156,0.10644531,0.1015625,-0.12792969,-0.16699219,0.08496094,-0.039794922,-0.017456055,-0.042236328,0.018066406,0.21875,0.041748047,-0.016723633,-0.005493164,0.039794922,0.17089844,-0.17773438,-0.08935547,0.021484375,0.030151367,-0.2109375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.06689453,-0.033935547,-0.3359375,0.07861328,0.07080078,-0.09277344,0.028686523,-0.0054626465,-0.19921875,0.072265625,0.16796875,-0.11376953,-0.087402344,-0.057128906,-0.0625,0.18066406,-0.13085938,0.024780273,-0.19921875,0.020385742,-0.26953125,0.07324219,-0.014587402,-0.038330078,0.07421875,0.076171875,-0.49609375,-0.022216797,-0.23144531,-0.01550293,-0.07128906,0.34375,0.0057373047,-0.17285156,-0.2421875,-0.140625,-0.036376953,-0.021728516,0.1015625,0.06347656,-0.0390625,0.2265625,-0.21191406,0.13183594,-0.040039062,-0.033935547,0.08496094,0.20019531,-0.02355957,-0.15722656,-0.16308594,-0.004852295,-0.020385742,-0.2109375,0.061035156,0.11669922,-0.11621094,0.12988281,0.056640625,0.022460938,0.06298828,0.125,0.021362305,0.14941406,-0.14257812,0.031982422,-0.23632812,-0.17089844,0.019165039,-0.076171875,-0.0007171631,-0.009765625,-0.19042969,0.017211914,0.0066833496,-0.043701172,0.076660156,0.26953125,0.02331543,0.15332031,-0.20605469,0.09423828,-0.28710938,0.109375,-0.029785156,-0.0037231445,-0.0029449463,0.14160156,-0.04321289,0.14941406,-0.08935547,-0.111816406,-0.12158203,0.05810547,0.19824219,0.067871094,-0.0043640137,0.05834961,-0.16210938,0.15722656,-0.092285156,0.13085938,-0.19726562,0.0546875,-0.07421875,0.0054016113,-0.084472656,-0.11621094,-0.28125,-0.04711914,-0.16699219,0.17675781,-0.037353516,-0.05053711,-0.26171875,0.028930664,-0.05126953,0.19628906,-0.28125,0.059814453,-0.20605469,-0.0054626465,0.011474609,0.075683594,0.021972656,0.060546875,-0.080566406,0.021850586,-0.006072998,0.1640625,0.111816406,0.01159668,0.05517578,0.103027344,0.02746582,0.119140625,0.099609375,0.20605469,-0.038085938,-0.013000488,0.103515625,0.050048828,-0.111816406,-0.11767578,-0.1875,0.044677734,-0.27734375,-0.08300781,0.14355469,-0.34960938,0.0073547363,0.021728516,0.047851562,0.008972168,-0.23925781,0.021484375,-0.016357422,0.26367188,-0.076660156,-0.06738281,-0.06982422,0.13867188,-0.111328125,-0.039794922,-0.08300781,-0.021484375,-0.011291504,0.14550781,0.05883789,-0.042236328,0.03955078,-0.0107421875,-0.25585938,0.03112793,-0.16503906,-0.06298828,-0.053466797,0.15234375,-0.17285156,-0.010009766,-0.125,0.23632812,-0.0063171387,0.1640625,0.09277344,0.024780273,0.103515625,-0.06689453,-0.26367188,0.1328125,-0.12597656,0.080566406,-0.05126953,0.05810547,-0.056152344,0.007232666,0.08496094,-0.40039062,0.25195312,0.13964844,-0.072265625,-0.18945312,-0.013061523,-0.08300781,-0.14941406,0.015319824,-0.05883789,0.15039062,-0.26367188,-0.052246094,-0.061279297,-0.040283203,-0.08544922,-0.15136719,0.05517578,0.12792969,-0.017700195,-0.02331543,0.16308594,0.10107422,-0.029541016,0.017578125,-0.18164062,-0.12060547,-0.111816406,-0.05834961,-0.078125,-0.011230469,0.08203125,-0.10498047,-0.10058594,0.0018539429,0.083496094,0.14453125,-0.13378906,-0.09082031,-0.037353516,0.017822266,-0.17773438,0.10107422,-0.06591797,0.057617188,-0.104003906,0.16015625,0.05883789,-0.27734375,0.08544922,0.010192871,0.04345703,0.103027344,-0.08886719,-0.02368164,-0.1640625,-0.08203125,0.01361084,0.076171875,0.049560547,0.028442383,0.16210938,-0.017456055,0.10888672,0.16601562,-0.19335938,0.19628906,-0.12695312,-0.052001953,-0.05102539,-0.060302734,-0.064453125,-0.12597656,0.19140625,0.203125,-0.13378906,-0.11279297,0.022949219,0.04345703,-0.12597656,-0.022583008,0.14648438,0.08105469,-0.028320312,-0.080078125,0.09765625,-0.00062179565,-0.03466797,-0.12695312,0.08154297,0.24609375,-0.17675781,0.02746582,-0.05126953,0.008728027,-0.021728516,-0.12109375,0.018676758,-0.024169922,-0.0051574707,0.009643555,-0.022094727,0.020141602,-0.08105469,0.10205078,-0.03466797,0.15917969,0.17382812,0.034423828,0.10205078,0.039794922,-0.171875,0.013244629,-0.050048828,0.096191406,-0.03540039,0.11621094,0.07714844,-0.072753906,-0.006011963,0.13964844,0.15332031,0.096191406,-0.23632812,-0.28125,0.028076172,-0.088378906,0.020141602,-0.111816406,-0.0030517578,-0.037353516,0.022705078,-0.036376953,-0.23242188,-0.0546875,0.06347656,-0.23242188,0.083496094,-0.11279297,-0.15234375,-0.03881836,-0.059814453,-0.025024414,0.011047363,-0.08251953,0.013183594,0.11376953,0.030883789,0.11376953,-0.12792969,-0.11376953,-0.12402344,-0.36914062,0.13867188,-0.037353516,-0.08642578,-0.037841797,-0.06591797,0.0043029785,0.05859375,-0.27929688,0.08251953,0.036621094,0.033203125,0.078125,0.03564453,-0.11328125,0.012145996,-0.40429688,0.09472656,0.017578125,-0.111816406,0.22851562,-0.12597656,-0.040039062,0.06347656,-0.29101562,-0.123046875,-0.103027344,-0.1328125,-0.08886719,-0.055664062,-0.059570312,-0.031982422,-0.07763672,0.07714844,0.084472656,-0.27734375,0.19726562,-0.14941406,0.0021209717,-0.2109375,-0.0859375,-0.13964844,0.04638672,-0.13671875,0.20605469,0.23925781,-0.06591797,0.07519531,-0.171875,0.0703125,0.0026855469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.2890625,-0.07421875,-0.016479492,-0.107421875,0.025024414,-0.049560547,0.044433594,-0.04321289,0.024047852,0.09277344,-0.020263672,0.04248047,-0.1015625,0.04663086,-0.008728027,-0.03466797,0.06225586,-0.07861328,-0.26953125,-0.028198242,0.18652344,-0.07470703,0.20019531,-0.020141602,-0.11669922,-0.05126953,0.13769531,-0.026123047,0.026367188,-0.06933594,-0.03466797,-0.20410156,-0.20507812,-0.09863281,-0.23339844,0.017211914,0.14355469,0.061035156,-0.06933594,-0.012023926,0.03540039,0.13378906,-0.004058838,0.044433594,-0.07421875,-0.0036468506,0.115234375,-0.061035156,0.0058288574,-0.09082031,0.01171875,0.031982422,-0.05053711,0.20117188,-0.06640625,-0.056152344,-0.063964844,-0.11621094,0.049560547,-0.123535156,-0.047851562,-0.1484375,0.07519531,0.039794922,-0.08496094,-0.14453125,-0.10888672,0.12597656,-0.088378906,-0.041748047,-0.20214844,-0.16503906,-0.030761719,-0.044189453,-0.020019531,-0.123535156,-0.064453125,0.1015625,-0.10058594,0.034179688,-0.045654297,-0.07714844,-0.10498047,-0.014038086,0.14257812,0.024780273,0.122558594,0.09716797,-0.10498047,0.050048828,-0.03515625,-0.140625,-0.026855469,0.087402344,0.08691406,0.28710938,-0.17871094,0.10058594,-0.059814453,-0.0703125,0.22363281,-0.16210938,-0.056640625,-0.26757812,0.031982422,-0.008117676,0.0038452148,-0.06542969,-0.034423828,-0.013916016,0.04272461,0.0390625,0.080078125,-0.12158203,0.22558594,0.052246094,0.046142578,0.045410156,-0.072753906,0.014770508,-0.020874023,-0.07128906,-0.03173828,-0.10839844,0.05517578,0.07861328,0.111328125,0.044677734,0.08203125,-0.296875,-0.25976562,0.09326172,-0.203125,-0.04321289,-0.0007209778,-0.08300781,0.012817383,-0.0011672974,0.052978516,-0.022583008,0.040527344,-0.10498047,0.15625,-0.037109375,-0.09472656,-0.008728027,-0.17480469,-0.056640625,-0.04248047,0.18066406,-0.15527344,-0.25976562,0.017456055,-0.10253906,0.1484375,-0.15722656,0.006286621,0.020019531,0.0027618408,0.122558594,-0.061035156,-0.38085938,0.088378906,-0.06298828,0.016235352,0.017456055,0.03930664,-0.19140625,-0.072265625,0.041748047,0.028686523,-0.15136719,-0.10253906,-0.13964844,-0.09863281,0.095703125,-0.078125,-0.123535156,0.1484375,0.071777344,-0.005554199,-0.028198242,0.17578125,-0.20605469,0.010009766,0.025878906,0.103027344,-0.14941406,-0.048339844,0.035888672,-0.036865234,-0.03125,-0.030517578,-0.14648438,0.029907227,0.080078125,0.15332031,-0.099121094,0.068847656,0.015563965,0.018554688,0.09863281,-0.048095703,-0.122558594,-0.008605957,-0.011230469,-0.24121094,0.04711914,-0.13085938,-0.18359375,-0.092285156,-0.2265625,0.045654297,0.12695312,-0.21386719,0.09375,-0.100097656,0.057861328,0.13574219,0.029052734,0.11230469,-0.111816406,0.005706787,0.026000977,-0.123535156,0.044921875,-0.11328125,-0.050048828,-0.017089844,-0.0016021729,-0.036865234,-0.29296875,0.009643555,-0.025390625,-0.004333496,-0.042236328,0.016113281,-0.16601562,-0.0859375,-0.13964844,0.061523438,-0.12792969,0.0546875,-0.048828125,0.012207031,-0.100097656,0.09082031,0.014770508,-0.08251953,-0.22265625,0.16210938,-0.046875,0.002243042,-0.048583984,-0.060546875,-0.071777344,-0.07128906,-0.19824219,0.068847656,0.096191406,0.00047302246,0.22167969,0.052001953,-0.2578125,-0.043945312,0.052734375,0.13671875,-0.12890625,-0.08300781,0.03930664,0.11230469,-0.12451172,0.087402344,0.061767578,-0.091308594,0.14257812,0.064941406,-0.02758789,0.09423828,0.053222656,0.04248047,0.08984375,0.11425781,0.03149414,0.053222656,-0.10839844,0.0018539429,0.16308594,-0.016967773,0.071777344,-0.13476562,-0.10498047,0.10546875,-0.21582031,0.079589844,0.048339844,0.04663086,-0.028808594,0.026611328,-0.24707031,-0.01171875,0.010375977,0.0703125,0.032958984,-0.11425781,0.044677734,-0.20800781,-0.15136719,-0.072265625,-0.24414062,-0.21875,-0.12109375,-0.044189453,-0.16015625,-0.060302734,0.013366699,0.08300781,-0.03173828,-0.16699219,-0.10888672,-0.05444336,-0.03112793,-0.023803711,-0.033447266,-0.19921875,0.026611328,0.115722656,0.009643555,-0.06591797,-0.27148438,0.19335938,0.15917969,-0.06542969,0.08886719,-0.103515625,-0.08300781,0.0036621094,0.19335938,0.026611328,0.048095703,-0.012634277,-0.12792969,0.09375,-0.03515625,-0.091796875,-0.17480469,0.13671875,-0.063964844,-0.036865234,0.014282227,-0.013061523,-0.10058594,-0.012268066,0.21289062,-0.068359375,0.14746094,-0.08203125,-0.23632812,-0.024902344,-0.15039062,-0.006225586,0.08935547,0.01550293,-0.25585938,-0.1015625,-0.07519531,0.060791016,-0.03930664,-0.017333984,0.2109375,-0.20214844,0.017578125,-0.09667969,-0.09423828,0.017700195,-0.028686523,0.022583008,0.16601562,0.14648438,-0.265625,0.010620117,-0.028564453,0.12011719,-0.00579834,0.057128906,0.24414062,-0.16992188,-0.024902344,-0.09814453,-0.080078125,-0.0013580322,-0.41601562,-0.034179688,0.057373047,-0.036621094,-0.10498047,-0.09082031,-0.110839844,0.010375977,0.107910156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.052490234,-0.16699219,0.19335938,0.18945312,0.10205078,0.03173828,-0.072753906,-0.111328125,-0.038085938,-0.16992188,0.119140625,0.08642578,-0.122558594,0.22460938,-0.21972656,0.01940918,0.08642578,-0.18261719,0.12890625,0.18945312,0.17871094,0.08984375,-0.012878418,0.15625,0.031982422,-0.033203125,0.19238281,0.30273438,-0.037353516,-0.08691406,0.004638672,-0.06201172,0.17871094,-0.012512207,0.125,-0.111816406,-0.11328125,0.033691406,0.0859375,0.12695312,-0.0073242188,-0.11425781,0.17480469,0.03173828,-0.11328125,-0.171875,-0.040771484,0.056152344,0.18652344,-0.021606445,0.037109375,-0.25976562,-0.11621094,-0.17089844,-0.22460938,-0.0703125,0.024780273,-0.20996094,0.080566406,-0.28710938,0.099609375,-0.3125,0.11621094,0.13183594,-0.115722656,0.030883789,-0.10839844,-0.22460938,-0.203125,-0.011291504,0.038330078,-0.265625,-0.044189453,-0.34570312,-0.03491211,-0.171875,0.099609375,-0.16601562,-0.025024414,-0.020141602,0.12890625,-0.23925781,0.009094238,0.110839844,-0.03564453,-0.11376953,-0.17871094,-0.13183594,-0.08203125,-0.27734375,0.017089844,0.16894531,0.048095703,0.16503906,-0.063964844,0.24414062,-0.068359375,-0.17871094,0.13671875,0.20996094,-0.011230469,0.072265625,0.04638672,-0.052246094,-0.017944336,0.053710938,-0.021240234,0.16699219,-0.05029297,0.12011719,-0.111328125,0.036621094,0.025268555,0.19433594,0.15722656,-0.15820312,0.16210938,-0.064941406,-0.13183594,0.072753906,0.03173828,-0.078125,0.16699219,0.015319824,-0.06591797,-0.13964844,0.12109375,0.04272461,0.06542969,0.10449219,-0.14160156,-0.35546875,0.111328125,-0.140625,-0.015075684,-0.013122559,0.083496094,-0.12890625,-0.01550293,-0.07519531,-0.087402344,-0.20898438,-0.118652344,-0.31640625,-0.12988281,0.018554688,-0.06933594,-0.17089844,-0.2734375,-0.049316406,0.022094727,-0.123535156,-0.096191406,-0.30078125,0.044921875,-0.25195312,0.08642578,-0.17382812,-0.12988281,-0.19042969,0.09716797,-0.2890625,0.17675781,0.20507812,-0.115234375,-0.13964844,-0.027954102,-0.040283203,0.056152344,0.022705078,-0.16210938,0.051757812,0.068847656,-0.013977051,0.02355957,0.103027344,-0.0390625,-0.08642578,-0.047851562,-0.064453125,0.08251953,0.15820312,-0.084472656,-0.005126953,-0.076660156,-0.09033203,0.17089844,-0.041503906,-0.022460938,0.048095703,0.028686523,0.118652344,0.076660156,0.17871094,-0.053710938,-0.09082031,-0.059570312,-0.19726562,-0.17382812,0.052978516,0.0034484863,-0.119628906,0.039794922,0.13476562,-0.106933594,0.06201172,0.079589844,0.05908203,-0.10888672,-0.08300781,-0.037841797,-0.19335938,-0.0005912781,0.042236328,0.009765625,0.051513672,0.15136719,-0.13183594,0.11230469,-0.28125,0.017822266,-0.15625,0.059814453,-0.140625,0.09082031,0.2734375,-0.13476562,-0.057373047,-0.24316406,-0.011291504,0.087402344,-0.3203125,-0.103515625,-0.15625,-0.114746094,-0.24609375,0.055908203,-0.06225586,0.00390625,0.017089844,0.07861328,0.013000488,-0.003112793,-0.038330078,-0.114746094,-0.103515625,-0.18066406,-0.12792969,0.07714844,0.024047852,-0.12695312,-0.00982666,0.103027344,0.068847656,0.060546875,0.06225586,0.040771484,0.016845703,0.01953125,0.045166016,0.036376953,-0.07861328,0.061279297,0.08642578,-0.049560547,0.0031738281,-0.033935547,-0.10253906,0.012756348,0.044921875,-0.09082031,0.083984375,-0.022338867,0.106933594,0.056396484,-0.084472656,-0.17578125,-0.1015625,-0.15039062,0.017089844,0.06982422,0.024291992,-0.023803711,0.10595703,-0.080566406,-0.0126953125,-0.049804688,0.0050354004,0.025024414,0.0625,-0.00491333,-0.171875,-0.12402344,-0.1953125,0.032470703,-0.06298828,-0.04345703,0.09423828,0.005584717,-0.056640625,-0.03857422,0.23339844,0.060546875,0.07128906,0.034179688,0.115722656,-0.079589844,0.026611328,-0.08251953,-0.006134033,0.021850586,-0.28125,0.16796875,0.13964844,-0.16601562,-0.068359375,0.111328125,-0.30078125,0.055419922,0.20507812,-0.140625,0.24804688,0.075683594,-0.078125,-0.076171875,-0.06591797,-0.023803711,-0.04248047,0.084472656,0.037109375,0.01184082,-0.11230469,-0.017089844,0.106933594,-0.18652344,-0.21484375,-0.114746094,-0.00579834,0.07714844,0.02368164,-0.16796875,-0.20117188,0.016967773,0.041992188,0.03930664,-0.064453125,-0.099121094,-0.06738281,-0.028320312,0.03857422,-0.23144531,-0.19042969,-0.20898438,0.17480469,0.014770508,-0.1875,-0.09033203,-0.20214844,0.048095703,0.1875,0.03515625,-0.11230469,0.04296875,0.041503906,0.032470703,-0.13867188,0.03930664,-0.06738281,-0.17285156,0.041748047,0.107910156,0.056640625,-0.08300781,-0.05493164,-0.021118164,0.13378906,0.061035156,0.029541016,0.026000977,0.01159668,0.12597656,-0.05053711,0.04321289,-0.10253906,-0.056396484,0.14257812,-0.048828125,0.024047852,-0.1640625,-0.28710938,-0.16699219,-0.25585938,-0.071777344,0.18847656,0.15136719,-0.21484375,0.056396484,-0.18261719,-0.083984375,-0.095214844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13574219,-0.10986328,-0.08496094,0.10839844,-0.008972168,0.18457031,0.053222656,0.0067749023,0.013000488,0.00024604797,0.011230469,0.063964844,0.0059509277,-0.046142578,-0.06591797,-0.030029297,-0.12792969,0.080078125,-0.16699219,-0.3125,-0.020385742,0.020874023,-0.14941406,0.1640625,-0.09277344,0.080078125,0.0028839111,-0.01550293,-0.19628906,-0.16796875,-0.08544922,0.18945312,-0.12597656,0.23046875,-0.29492188,0.111816406,-0.13085938,-0.02355957,-0.09814453,-0.2890625,-0.040527344,0.0027618408,-0.18554688,-0.08203125,-0.13867188,-0.22070312,0.07128906,0.12890625,-0.07910156,0.14550781,-0.07421875,-0.08886719,-0.1953125,0.08984375,-0.035888672,-0.15625,-0.053222656,-0.05834961,-0.14160156,-0.1484375,-0.064941406,-0.12695312,-0.04272461,-0.10595703,-0.107910156,0.22851562,-0.020751953,-0.12597656,-0.15136719,0.055419922,-0.08496094,-0.24804688,-0.025512695,-0.1484375,0.059326172,-0.15527344,0.032958984,-0.018920898,-0.15722656,-0.14160156,-0.079589844,-0.026855469,-0.17285156,-0.07763672,0.07080078,0.004486084,0.012390137,0.07421875,0.029541016,0.1015625,-0.14160156,-0.055908203,0.104003906,-0.08544922,0.072265625,-0.14257812,-0.07763672,-0.19921875,0.047851562,-0.09814453,-0.057617188,-0.12695312,-0.07763672,0.099121094,-0.009765625,0.14550781,-0.028442383,-0.123535156,-0.14941406,0.05419922,0.17578125,0.044433594,-0.12988281,-0.05859375,-0.053222656,0.048583984,-0.09472656,-0.12988281,0.17285156,0.055419922,-0.016357422,-0.055419922,-0.029541016,-0.030151367,-0.11621094,-0.119628906,0.15136719,-0.13183594,-0.06689453,0.18847656,-0.19824219,-0.046142578,0.028076172,0.18457031,0.014221191,-0.09033203,0.083496094,-0.030883789,0.13867188,0.036132812,0.010131836,-0.01953125,0.04736328,-0.21484375,-0.030151367,0.24609375,-0.005279541,0.029663086,0.015319824,-0.018432617,0.10888672,-0.09082031,0.010009766,-0.10058594,-0.020141602,0.026367188,0.080078125,-0.041748047,-0.087402344,0.033203125,0.0015640259,-0.10644531,0.005706787,0.053955078,-0.0024719238,0.07714844,0.11279297,0.08886719,0.05102539,0.032470703,-0.037353516,-0.16699219,0.01586914,0.09423828,-0.00018501282,-0.15429688,-0.12695312,0.013122559,-0.14355469,-0.13964844,-0.05810547,-0.24511719,-0.22558594,0.16113281,0.080078125,0.060302734,0.13574219,0.03857422,0.017089844,-0.030883789,0.13671875,-0.08984375,-0.24902344,-0.009155273,-0.14941406,0.052978516,0.0009841919,0.022705078,-0.265625,0.15136719,0.08691406,0.13769531,-0.07324219,0.010314941,0.111816406,-0.01159668,-0.04638672,-0.23632812,0.15136719,-0.15820312,-0.08984375,0.008544922,0.04272461,-0.15136719,0.087402344,-0.005859375,0.033203125,0.11328125,-5.8174133e-05,0.2578125,0.092285156,-0.13867188,-0.14160156,0.021118164,0.053710938,-0.026367188,-0.083496094,0.076660156,0.12451172,0.1484375,-0.07519531,-0.21972656,0.07861328,-0.08642578,-0.14746094,0.15917969,0.087402344,-0.084472656,-0.03466797,0.068847656,0.030639648,0.106933594,0.01940918,0.05834961,0.011169434,-0.17773438,-0.19433594,-0.026611328,-0.06933594,0.14550781,-0.17675781,-0.057373047,0.08203125,-0.012573242,-0.16308594,-0.15234375,-0.041992188,0.13183594,-0.2265625,-0.061279297,-0.09716797,-0.053955078,-0.05493164,0.18359375,-0.099609375,-0.16699219,0.08544922,0.15820312,0.118652344,0.14648438,-0.012023926,-0.10546875,-0.13574219,-0.055419922,-0.24804688,0.05908203,-0.08984375,-0.04638672,-0.13867188,0.171875,0.049316406,-0.095214844,0.060302734,0.13671875,0.055664062,0.119628906,-0.026977539,-0.23925781,0.2578125,-0.119628906,-0.10888672,-0.05419922,-0.045898438,-0.041992188,-0.022094727,-0.03857422,0.099121094,0.012145996,0.014831543,0.05102539,-0.118652344,-0.11767578,-0.1640625,-0.0859375,0.15917969,0.060546875,0.16015625,0.115234375,0.26953125,-0.15136719,0.10595703,0.019042969,0.05908203,-0.087890625,-0.06225586,-0.0064697266,-0.03173828,0.2578125,-0.06201172,-0.08544922,-0.29882812,-0.16210938,0.14257812,-0.0072021484,-0.17285156,0.032958984,0.09375,-0.26757812,-0.030761719,-0.07910156,-0.09716797,0.119140625,0.016235352,-0.14550781,-0.18164062,0.024902344,0.07910156,-0.03100586,-0.06591797,0.19140625,-0.024291992,0.032958984,-0.15332031,-0.115234375,0.088378906,0.014770508,-0.029296875,0.007232666,0.06689453,-0.064453125,-0.24023438,-0.17285156,-0.059326172,-0.17773438,-0.024536133,0.048828125,0.067871094,0.107910156,-0.103515625,0.056152344,0.04638672,0.17773438,0.10546875,-0.10449219,0.056396484,-0.037353516,0.18945312,-0.044189453,0.15332031,0.0014343262,-0.14453125,0.018432617,-0.015319824,0.021850586,0.041503906,-0.09423828,0.07861328,0.11230469,0.119628906,-0.084472656,0.051757812,-0.19921875,-0.029174805,0.04736328,0.061523438,-0.03881836,-0.026489258,-0.06689453,0.076660156,-0.03491211,0.16992188,-0.37109375,0.037109375,0.01184082,-0.11376953,-0.08691406,-0.10205078,-0.007537842,0.0050964355,-0.006713867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16113281,-0.0014648438,0.20019531,-0.13378906,0.03173828,-0.026611328,-0.10839844,0.22949219,-0.055419922,0.0046081543,0.22363281,0.05810547,-0.051513672,-0.029174805,-0.13476562,-0.13085938,-0.12890625,-0.09277344,-0.0154418945,-0.011230469,-0.072753906,-0.018676758,0.22753906,0.11767578,0.083496094,-0.0046691895,-0.013549805,-0.025512695,0.107910156,0.10839844,0.02734375,-0.22167969,0.091796875,0.032470703,0.014953613,-0.01965332,0.011230469,-0.099609375,-0.33203125,0.061767578,-0.014343262,-0.11035156,-0.10986328,-0.13964844,0.012634277,0.03881836,-0.15039062,-0.36523438,0.02709961,0.10839844,-0.06347656,0.037353516,0.01550293,-0.2578125,0.099121094,0.015380859,0.027954102,-0.171875,0.12011719,-0.08642578,0.060546875,0.06738281,-0.17773438,-0.18945312,0.072753906,-0.30273438,0.091308594,0.19628906,-0.18847656,0.20996094,0.12792969,0.0119018555,-0.07910156,0.026000977,-0.06298828,-0.078125,0.015014648,-0.15039062,0.08886719,-0.08105469,-0.1953125,0.13476562,0.061767578,-0.19824219,0.005706787,0.12207031,-0.11816406,0.037597656,-0.02758789,0.140625,-0.06933594,0.045410156,0.016845703,-0.18066406,-0.21679688,0.23535156,-0.19335938,-0.14648438,-0.055908203,-0.11816406,0.07373047,-0.029052734,-0.005493164,0.08496094,0.076660156,-0.08203125,0.016357422,6.2942505e-05,-0.092285156,-0.024902344,-0.15820312,-0.00020122528,-0.0023956299,0.092285156,0.15722656,-0.0095825195,0.06982422,0.13183594,0.05908203,0.020996094,0.037109375,0.028686523,-0.06591797,0.14746094,-0.04296875,0.084472656,-0.06640625,0.022583008,-0.31054688,0.056152344,-0.045654297,-0.07861328,0.09667969,-0.034179688,-0.12890625,-0.06738281,0.06640625,0.008483887,0.022583008,-0.087402344,0.029785156,0.18164062,-0.018310547,0.119628906,-0.034423828,0.053710938,0.06591797,-0.032714844,0.01574707,-0.061279297,-0.083496094,-0.21191406,0.087890625,-0.016113281,0.14746094,-0.031982422,-0.071777344,-0.06933594,0.076171875,0.050048828,0.15722656,-0.17578125,0.11376953,-0.13867188,-0.088378906,-0.034423828,-0.025756836,-0.004058838,0.15625,-0.047851562,-0.0043029785,-0.115722656,0.0037078857,-0.02722168,0.10107422,0.13476562,-0.13476562,0.08154297,-0.08935547,-0.1171875,0.15917969,0.20996094,0.12988281,-0.00088882446,-0.087890625,-0.08544922,0.044921875,0.16503906,0.029052734,0.021362305,0.027709961,-0.10888672,-0.08203125,0.063964844,-0.15527344,0.011474609,0.15332031,0.2265625,0.107421875,0.001411438,-0.01574707,-0.07861328,0.026367188,-0.01977539,-0.16894531,0.018920898,-0.09082031,-0.09033203,-0.19628906,-0.067871094,-0.16503906,-0.0031738281,-0.034179688,-0.07128906,0.13867188,0.015197754,0.12597656,0.042236328,0.063964844,0.010620117,0.052978516,-0.16699219,0.19140625,0.052001953,-0.018798828,0.14257812,0.10546875,-0.072265625,-0.16601562,-0.008972168,0.06298828,0.028198242,-0.06933594,0.13476562,-0.04711914,0.056152344,-0.22753906,0.03125,0.06933594,0.17773438,0.18164062,0.04736328,-0.07861328,0.09814453,0.03857422,-0.17089844,0.028198242,-0.1015625,0.041259766,-0.03564453,-0.08203125,-0.039794922,0.103515625,-0.010620117,-0.0019073486,0.1640625,0.021484375,-0.03564453,-0.24414062,0.022216797,-0.13085938,-0.022827148,0.12060547,0.100097656,0.099609375,-0.125,-0.091308594,0.18652344,-0.07910156,-0.20410156,-0.10888672,0.057861328,0.049072266,-0.16503906,-0.18554688,0.033935547,-0.23339844,-0.0005378723,-0.104003906,0.052734375,0.1171875,-0.07763672,-0.18261719,0.1796875,0.048095703,-0.05419922,0.005706787,0.028442383,-0.033447266,0.076660156,-0.12988281,0.27539062,-0.1484375,0.05029297,0.13574219,0.00793457,0.06689453,-0.06689453,-0.14648438,0.030761719,0.040527344,-0.043945312,0.06933594,0.05493164,-0.11425781,0.061035156,-0.13378906,-0.052490234,-0.103027344,0.115234375,0.06640625,0.02368164,0.07080078,0.099609375,-0.12011719,0.09814453,-0.035888672,-0.18554688,0.08105469,0.07470703,0.045410156,0.0037994385,-0.07080078,0.16113281,0.23144531,0.2109375,0.049072266,-0.032958984,0.100097656,-0.034423828,-0.13183594,0.16015625,0.023925781,0.19238281,0.0115356445,0.0703125,-0.053222656,-0.032470703,-0.25195312,0.055908203,0.13964844,0.099121094,-0.033447266,-0.10449219,0.06640625,-0.095214844,-0.106933594,0.106933594,0.10449219,-0.08203125,0.03930664,0.16796875,-0.0061035156,-0.1484375,-0.09423828,0.22851562,0.13671875,-0.1015625,0.067871094,0.05102539,-0.025146484,-0.14160156,0.016845703,0.07080078,0.045654297,0.171875,0.12451172,0.17871094,-0.09472656,0.024902344,-0.049560547,0.20507812,0.08984375,0.111816406,0.037353516,0.18164062,-0.04345703,0.012573242,-0.09375,0.12792969,0.027954102,0.14648438,0.052001953,0.038085938,-0.039794922,-0.07373047,-0.13671875,-0.080078125,0.10595703,-0.14648438,-0.0020599365,-0.092285156,0.032958984,0.037353516,-0.014465332,0.08642578,0.13574219,0.04711914,0.057128906,0.106933594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12988281,0.12597656,-0.114746094,0.24902344,0.10498047,0.10205078,0.16601562,0.026245117,0.040039062,0.0048828125,0.10986328,-0.17675781,0.107421875,0.10595703,-0.023925781,0.038085938,-0.2734375,0.026367188,0.15527344,0.21679688,0.036865234,0.12695312,0.10498047,-0.11376953,-0.041992188,-0.030273438,-0.038330078,0.025024414,0.026245117,0.16601562,-0.13671875,0.088378906,-0.18066406,-0.09472656,0.07470703,0.110839844,-0.02368164,-0.020751953,-0.12695312,-0.107910156,0.008422852,-0.049316406,-0.15527344,0.10546875,0.08300781,-0.007507324,-0.06347656,0.10205078,-0.18066406,0.15332031,0.084472656,0.08300781,0.17773438,0.15136719,0.12597656,0.055664062,0.03112793,0.15136719,0.018676758,0.15136719,0.035888672,0.12011719,-0.06298828,0.08984375,-0.111328125,0.10107422,0.06640625,0.044921875,0.036621094,-0.12109375,-0.29882812,0.265625,0.013427734,-0.06933594,-0.056396484,0.19140625,-0.02355957,0.0625,0.07080078,0.16015625,-0.03564453,0.03930664,-0.072753906,-0.0041503906,-0.068847656,-0.08154297,0.12109375,0.14257812,0.09033203,-0.012817383,0.056396484,0.03881836,0.20410156,0.15625,-0.12597656,-0.002670288,-0.123046875,0.03930664,0.03491211,0.03955078,0.11669922,-0.07324219,-0.07519531,0.050048828,0.049072266,-0.020996094,-0.03881836,0.09716797,0.041259766,0.13769531,0.053466797,-0.031982422,-0.04272461,-0.04272461,-0.01373291,0.091796875,0.0546875,-0.020629883,-0.06225586,-0.118652344,0.048339844,0.0703125,0.123535156,0.09863281,-0.028930664,0.2890625,0.020385742,0.044189453,-0.087890625,-0.060058594,0.15527344,-0.1328125,0.25585938,-0.17773438,0.020874023,0.19921875,0.016357422,-0.08300781,0.092285156,-0.049560547,-0.076660156,0.11279297,-0.15917969,-0.14550781,-0.14648438,-0.10107422,0.08496094,-0.22753906,-0.013916016,-0.09814453,-0.28125,-0.080078125,-0.14160156,-0.048583984,0.12207031,0.20898438,-0.06201172,0.017822266,-0.12402344,-0.061523438,0.010864258,0.012878418,-0.014221191,0.0032196045,0.008300781,0.033935547,-0.083496094,0.19921875,-0.030029297,-0.029052734,0.024414062,-0.079589844,0.13476562,-0.072753906,-0.06201172,-0.15527344,0.099121094,0.014282227,0.0032043457,-0.14550781,-0.057128906,7.05719e-05,-0.09326172,0.20703125,-0.043701172,-0.12402344,-0.06347656,0.02709961,-0.1484375,-0.15820312,-0.057373047,0.119628906,-0.028198242,-0.14941406,-0.0154418945,-0.25585938,-0.099121094,-0.296875,-0.016967773,-0.12890625,0.034179688,-0.140625,0.011291504,0.061279297,0.0061950684,0.19628906,-0.03564453,-0.037353516,0.030761719,-0.03564453,-0.03564453,-0.075683594,-0.103515625,-0.0068969727,-0.040527344,-0.15917969,0.016845703,-0.1640625,0.103027344,-0.08544922,-0.04345703,0.119628906,-0.13574219,0.07324219,-0.19824219,-0.14648438,0.0055236816,-0.109375,0.080078125,0.23828125,-0.03564453,-0.052978516,-0.03857422,-0.13867188,-0.057617188,-0.024658203,-0.21386719,0.03955078,-0.09033203,-0.011413574,0.11376953,0.25390625,-0.020019531,0.040039062,0.039794922,-0.012878418,-0.18164062,0.14746094,0.15234375,0.019042969,-0.13085938,-0.0005912781,-0.018920898,0.23242188,-0.068359375,-0.011108398,0.014160156,0.04272461,0.040771484,-0.15527344,0.10449219,-0.06298828,0.0011520386,0.06933594,0.03173828,-0.20214844,0.059326172,-0.36523438,-0.12011719,-0.064453125,-0.055419922,-0.033203125,0.15917969,-0.21972656,-0.118652344,-0.2421875,0.14746094,0.0107421875,0.087890625,-0.11328125,0.06347656,-0.38671875,-0.25390625,-0.08300781,-0.11230469,0.023925781,-0.16308594,-0.068359375,-0.021728516,0.076660156,0.010681152,0.07714844,0.033691406,-0.1875,0.08984375,-0.15136719,-0.067871094,-0.16308594,0.28320312,0.057128906,-0.118652344,0.25976562,-0.16894531,0.0026855469,-0.37890625,0.064941406,0.07519531,-0.2421875,0.12597656,0.0390625,0.060791016,-0.3046875,-0.05883789,-0.04296875,0.083984375,-0.017700195,-0.18847656,0.13574219,0.19726562,0.06982422,-0.05053711,0.11230469,0.051757812,0.032470703,0.103515625,0.19628906,-0.018066406,0.045898438,0.067871094,0.14160156,-0.106933594,0.05517578,-0.16503906,0.009460449,-0.07080078,-0.033691406,-0.11621094,-0.021728516,-0.14453125,-0.02758789,-0.09423828,0.100097656,-0.08984375,-0.109375,-0.05810547,-0.091796875,0.10107422,0.12158203,-0.18261719,-0.119628906,-0.2109375,-0.20800781,-0.07714844,-0.078125,-0.12695312,0.0018310547,0.012207031,0.00059890747,-0.09472656,0.0074768066,0.0006828308,-0.026733398,0.13671875,0.063964844,0.022949219,-0.0060424805,-0.25195312,-0.0040893555,0.016845703,0.036376953,-0.16796875,0.03173828,-0.02355957,0.2734375,0.13085938,-0.28125,-0.09472656,-0.140625,0.016845703,0.07470703,-0.16308594,-0.044921875,0.002029419,-0.10107422,-0.016479492,-0.024902344,0.024658203,-0.24707031,0.10546875,0.053222656,0.027954102,0.071777344,-0.08544922,0.002105713,0.087402344,0.11669922,-0.052246094,0.41992188,0.08886719,0.27539062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.17480469,-0.0068969727,-0.017089844,-0.16308594,0.20507812,-0.03515625,-0.4140625,-0.013305664,0.0036621094,-0.041503906,0.022583008,0.007080078,-0.15234375,-0.048339844,-0.0859375,0.05883789,0.14550781,0.0067749023,-0.0390625,-0.10595703,-0.028076172,-0.07714844,0.052001953,-0.0011901855,0.024658203,0.15722656,-0.041992188,0.016967773,0.03881836,-0.053710938,0.14746094,0.17675781,0.31640625,0.15234375,-0.14550781,0.21972656,0.10644531,-0.14941406,-0.052246094,-0.107910156,-0.061767578,-0.010131836,-0.19335938,-0.026977539,0.028808594,0.01550293,0.103027344,0.084472656,-0.078125,0.01965332,-0.10107422,-0.05883789,-0.012512207,0.25585938,0.11328125,-0.051513672,-0.0030670166,0.111328125,0.033691406,0.09375,-0.071777344,0.088378906,0.016357422,-0.15039062,-0.13183594,-0.18652344,-0.024536133,-0.021728516,0.23925781,-0.10644531,-0.22460938,0.030151367,-0.0119018555,0.040527344,0.13964844,-0.2578125,0.05419922,0.24316406,-0.056640625,-0.43554688,-0.046875,0.123535156,-0.061279297,-0.115234375,0.16992188,-0.076171875,0.033203125,-0.17871094,-0.08935547,0.04272461,-0.107910156,-0.06738281,-0.092285156,-0.10546875,0.17871094,0.10107422,0.024169922,0.18457031,-0.021240234,-0.15917969,0.12890625,0.24902344,0.07763672,0.052490234,0.08203125,0.092285156,-0.008544922,0.018310547,-0.07714844,-0.07470703,0.06591797,0.07373047,-0.21972656,0.039794922,-0.076660156,0.13574219,0.013366699,-0.044677734,0.061035156,-0.0703125,0.06689453,-0.18164062,0.044677734,-0.11425781,0.087402344,0.052246094,-0.076171875,0.0023040771,-0.08154297,-0.27734375,0.019165039,-0.035888672,0.10595703,0.011962891,0.068359375,-0.0013427734,-0.046875,-0.16992188,0.07519531,-0.09375,0.06591797,-0.03955078,-0.029296875,0.017211914,0.18457031,-0.16699219,-0.11035156,-0.06640625,0.2890625,0.10449219,0.088378906,-0.14550781,0.10888672,0.0050964355,0.03564453,-0.030761719,0.1328125,0.018066406,0.27929688,-0.05053711,0.023925781,0.023071289,0.14453125,0.10546875,-0.13378906,0.052490234,-0.10888672,-0.19238281,-0.083496094,-0.040283203,0.107421875,-0.088378906,-0.099121094,0.087890625,-0.033691406,-0.019042969,0.19140625,0.08886719,0.021240234,-0.1484375,-0.05859375,0.021728516,-0.012878418,0.13671875,0.068847656,0.0023498535,-0.119140625,-0.15039062,0.05908203,-0.031982422,0.14453125,0.114746094,-0.13378906,-0.06225586,0.08691406,-0.055664062,-0.29101562,0.20019531,-0.19042969,0.076171875,-0.041259766,-0.06542969,-0.011047363,-0.12597656,0.1484375,0.23046875,0.13183594,0.002670288,0.14257812,0.11279297,0.13183594,-0.111816406,-0.07861328,0.13378906,-0.17089844,-0.0065307617,-0.13183594,-0.05078125,-0.10595703,0.044189453,-0.11035156,0.06298828,0.14160156,0.09765625,0.122558594,0.27539062,-0.09277344,-0.23144531,0.028076172,0.060058594,0.053955078,0.013122559,-0.055419922,0.027832031,-0.06933594,0.26367188,0.096191406,-0.06982422,-0.096191406,0.026245117,-0.10546875,0.10839844,0.078125,0.0041503906,-0.044677734,0.18652344,-0.119140625,-0.19238281,0.057617188,-0.04248047,0.15722656,-0.06933594,-0.07763672,-0.08935547,-0.12597656,-0.033203125,0.02758789,0.10205078,0.080078125,0.007873535,-0.08886719,0.028198242,0.017456055,0.001045227,0.010009766,-0.07519531,0.15136719,-0.18359375,-0.09667969,-0.027954102,0.14160156,-0.026489258,0.022583008,0.18066406,0.008361816,-0.08984375,0.026977539,-0.12597656,-0.02319336,0.13476562,0.06933594,-0.06542969,0.095703125,-0.06298828,0.15820312,0.03881836,-0.13964844,0.04711914,0.05053711,0.06347656,-0.007873535,-0.049072266,0.11230469,0.05053711,-0.014709473,0.11767578,0.08935547,0.05419922,0.05102539,0.10253906,0.045654297,0.12402344,0.11767578,0.12207031,-0.18847656,0.036376953,-0.021118164,-0.1640625,0.047851562,-0.08203125,-0.05078125,0.033203125,-0.0703125,0.028564453,-0.02709961,-0.20996094,0.08886719,-0.16308594,-0.12060547,-0.0039978027,-0.052978516,-0.22558594,-0.049072266,-0.16699219,0.12695312,0.12060547,0.11425781,-0.15429688,-0.100097656,0.01574707,-0.0390625,-0.09863281,-0.15136719,-0.18945312,-0.15234375,-0.016479492,0.025878906,-0.06933594,-0.07080078,0.061035156,0.061767578,0.19335938,0.07470703,0.048339844,0.0067749023,-0.14941406,-0.12011719,0.012084961,-0.10546875,-0.125,-0.13476562,-0.15820312,0.08203125,-0.39257812,0.096191406,-0.076171875,0.26171875,0.15136719,0.091796875,0.32226562,-0.09375,-0.095214844,-0.057861328,0.00050735474,0.15332031,0.103027344,-0.13476562,-0.14550781,0.03491211,-0.14746094,0.0625,-0.1953125,0.11816406,0.12890625,0.30078125,0.21679688,-0.064941406,-0.09667969,0.08886719,-0.061035156,-0.037841797,0.08984375,-0.07714844,-0.2109375,-0.27929688,-0.047607422,0.015991211,-0.27734375,0.12402344,-0.11669922,0.047607422,0.106933594,0.057861328,-0.16992188,-0.03173828,-0.29882812,-0.09277344,-0.23242188,0.091796875,-0.09277344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.021850586,0.0013122559,-0.07080078,-0.18066406,0.079589844,0.21484375,-0.0049743652,-0.008422852,0.080566406,-0.025756836,0.13183594,-0.015991211,0.091308594,0.12695312,-0.15722656,-0.06738281,-0.03515625,-0.016113281,0.15917969,-0.016479492,0.06689453,0.12597656,0.076171875,-0.22167969,-0.080566406,0.06201172,0.23730469,0.072265625,0.072265625,-0.22558594,0.0009651184,0.06298828,-0.1328125,0.016113281,0.017333984,0.017333984,0.15234375,0.05834961,0.19042969,0.052978516,-0.09765625,0.24316406,-0.0625,0.19726562,0.045898438,0.064453125,0.12792969,0.140625,0.111816406,0.13964844,-0.053710938,0.09082031,0.08642578,-0.109375,0.21777344,-0.030639648,0.037597656,0.16601562,-0.095703125,-0.044433594,0.061279297,-0.068359375,-0.044921875,0.06347656,0.075683594,0.07373047,-0.03491211,-0.11230469,0.106933594,-0.17773438,0.15429688,0.030273438,0.06933594,-0.013122559,0.13085938,-0.26757812,-0.06542969,0.03466797,-0.035888672,-0.22949219,-0.044677734,-0.08105469,-0.080566406,-0.25390625,0.021240234,0.114746094,0.015075684,-0.2109375,-0.0054626465,0.020019531,0.012512207,-0.072265625,0.080566406,-0.0138549805,-0.0134887695,0.028686523,-0.16015625,-0.12597656,0.06982422,-0.13671875,-0.15136719,0.04736328,0.00579834,-0.18261719,0.025024414,0.020751953,-0.21777344,-0.0015106201,0.063964844,0.19042969,-0.014831543,0.099121094,0.020385742,-0.041992188,-0.030151367,-0.030761719,-0.010498047,-0.11816406,0.063964844,-0.009765625,-0.008483887,-0.048339844,0.140625,-0.14355469,-0.030151367,-0.092285156,-0.06225586,0.10839844,0.21582031,-0.013671875,-0.16015625,0.15820312,-0.04321289,-0.10546875,0.11425781,-0.08105469,0.05102539,0.12207031,0.024536133,-0.27929688,0.19238281,0.10986328,-0.26171875,-0.026367188,0.115722656,-0.048095703,-0.08105469,-0.022094727,-0.08935547,0.034423828,0.26367188,-0.076660156,-0.123535156,-0.17480469,-0.038085938,-0.14453125,0.03930664,-0.072753906,-0.076660156,-0.13769531,-0.18554688,-0.04248047,0.009094238,-0.13769531,-0.031982422,0.29101562,-0.037353516,-0.26367188,-0.049072266,0.0032806396,0.015319824,-0.20605469,-0.11035156,-0.068847656,0.18261719,0.037841797,-0.17578125,-0.13085938,0.047607422,-0.109375,-0.16796875,-0.017944336,-0.06982422,-0.11035156,0.040283203,-0.171875,-0.16894531,0.05053711,-0.10253906,0.029785156,-0.053466797,-0.12792969,-0.014160156,0.119140625,-0.026000977,-0.016723633,0.015075684,0.072265625,0.033203125,0.095703125,0.016845703,-0.11230469,0.061523438,-0.20507812,-0.06201172,-0.12011719,-0.12890625,0.006286621,0.08251953,0.15722656,-0.045410156,0.21484375,-0.03857422,0.100097656,-0.0039978027,0.023803711,0.064941406,0.09375,0.057128906,-0.23535156,0.17578125,0.021240234,0.026000977,-0.15039062,-0.041992188,0.122558594,0.013977051,0.029418945,0.056152344,0.032714844,0.045654297,-0.036132812,0.040039062,-0.11376953,-0.03112793,-0.1484375,0.12988281,-0.048095703,-0.044677734,-0.17480469,-0.13769531,0.1640625,-0.046875,-0.04272461,0.08886719,0.035888672,0.010559082,0.0079956055,-0.0079956055,-0.06738281,0.06347656,0.06347656,0.025268555,0.119628906,-0.072265625,-0.18359375,-0.024169922,0.14355469,-0.15039062,-0.036376953,0.16601562,-0.12988281,-0.010681152,0.018554688,0.025756836,0.015991211,0.017578125,-0.15820312,-0.07080078,0.15722656,-0.045654297,-0.15917969,-0.06640625,0.05810547,-0.09277344,-0.037841797,0.16015625,-0.022827148,0.09472656,0.057617188,-0.055908203,0.12988281,-0.013793945,-0.109375,-0.12109375,-0.15917969,-0.03149414,-0.13378906,-0.0056762695,-0.15136719,-0.091796875,0.04638672,0.022338867,0.20507812,-0.110839844,-0.06738281,0.09033203,0.057861328,0.02746582,-0.16699219,-0.111328125,-0.033447266,0.01940918,-0.2578125,-0.06225586,-0.13769531,0.07519531,-0.008972168,-0.1796875,0.100097656,0.072265625,-0.15136719,-0.10107422,-0.076660156,0.029418945,-0.19921875,0.034179688,-0.052978516,-0.05810547,-0.002105713,-0.044677734,0.022460938,0.13378906,-0.15527344,0.14257812,0.1640625,0.06689453,-0.13085938,-0.046875,-0.111328125,0.13378906,0.12060547,-0.021362305,0.04272461,0.05029297,-0.05053711,-0.049316406,0.01940918,0.075683594,-0.038085938,0.083496094,-0.09765625,0.07080078,-0.15039062,-0.09326172,0.056396484,0.13867188,-0.041503906,-0.040771484,-0.010620117,-0.13378906,-0.22265625,-0.07910156,-0.036865234,-0.14453125,-0.087402344,0.1328125,0.09863281,0.0019683838,-0.023071289,-0.025390625,-0.076171875,-0.030395508,-0.1015625,-0.00793457,0.24414062,0.013977051,-0.059570312,-0.092285156,0.0058288574,0.05053711,-0.16210938,0.0074768066,0.07421875,0.19140625,0.123046875,-0.032226562,0.060302734,0.15722656,0.006134033,-0.071777344,0.15234375,0.083984375,-0.09765625,-0.15332031,-0.06640625,0.07470703,-0.10205078,-0.11816406,-0.092285156,-0.06542969,-0.115722656,-0.042236328,-0.063964844,0.08544922,-0.16308594,-0.055908203,-0.10546875,-0.022949219,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05102539,-0.028564453,0.020629883,-0.05834961,0.09472656,-0.095214844,-0.390625,0.115234375,-0.011108398,0.009338379,-0.21777344,0.059570312,-0.19824219,0.15527344,0.24511719,-0.11376953,0.17578125,0.19140625,0.015075684,0.022460938,-0.20898438,0.012329102,0.087890625,0.014892578,-0.013244629,0.025268555,-0.20605469,0.09082031,-0.13964844,-0.16113281,-0.21484375,0.19628906,0.040771484,0.0069274902,-0.016479492,-0.004058838,-0.48632812,0.20605469,0.107910156,0.09375,-0.16894531,-0.05444336,0.033935547,-0.095214844,-0.15527344,-0.02368164,-0.06201172,0.10205078,-0.05493164,-0.17871094,0.07128906,0.06640625,-0.30078125,-0.30273438,0.16699219,0.12890625,-0.17285156,0.091308594,0.026000977,0.052734375,-0.11816406,0.203125,-0.1484375,-0.34375,0.095214844,-0.111816406,-0.23144531,0.24511719,-0.45507812,-0.21582031,-0.027954102,0.03149414,-0.27148438,-0.033691406,0.052001953,-0.083984375,0.12451172,0.16699219,0.013000488,-0.006439209,-0.1328125,0.13574219,0.032470703,0.0154418945,0.03466797,0.08496094,-0.03112793,0.08691406,-0.09814453,0.010925293,-0.0703125,0.06640625,0.0040893555,0.09765625,-0.01159668,-0.23242188,0.080566406,0.01159668,-0.075683594,0.095703125,-0.22558594,0.0045166016,-0.18945312,0.072753906,0.064453125,0.045654297,-0.017700195,0.087402344,-0.076660156,-0.022460938,-0.14160156,0.059814453,0.09863281,-0.17089844,0.13867188,-0.012390137,-0.16210938,0.22851562,-0.032714844,0.10888672,-0.10546875,0.17285156,0.056884766,0.08105469,0.16015625,0.10498047,0.17382812,-0.083496094,-0.26171875,0.0006980896,0.00982666,0.043701172,-0.11035156,-0.17382812,-0.024169922,0.13476562,0.072753906,0.1328125,0.24316406,0.1875,0.106933594,0.052978516,-0.0066223145,-0.21386719,0.06591797,-0.025512695,0.048828125,0.017700195,0.092285156,-0.08935547,-0.107910156,0.028564453,0.13574219,-0.09326172,-0.22363281,-0.096191406,0.07470703,0.024536133,-0.119140625,-0.13476562,-0.30664062,0.048095703,0.080566406,-0.048828125,0.1015625,-0.029418945,-0.07373047,0.010437012,-0.24511719,-0.122558594,-0.039794922,0.029907227,-0.06347656,0.022705078,0.16503906,-0.15136719,0.010009766,0.17675781,0.067871094,0.12988281,0.048095703,0.26757812,-0.14648438,-0.048583984,-0.19433594,-0.13769531,-0.33984375,-0.09082031,-0.036376953,0.11669922,0.15527344,0.23730469,-0.09863281,0.122558594,0.12988281,0.049072266,-0.15820312,-0.025024414,-0.060546875,0.11816406,-0.068359375,-0.0066223145,-0.16992188,-0.0002708435,0.12695312,0.13867188,0.017211914,0.021484375,-0.092285156,-0.1484375,-0.10595703,0.15429688,-0.1484375,0.13867188,0.026000977,0.06298828,-0.13964844,0.123046875,0.080566406,-0.04663086,0.041503906,-0.08300781,-0.1796875,-0.07421875,0.03515625,-0.23730469,-0.087402344,0.088378906,0.13378906,0.05444336,-0.26367188,0.10058594,-0.08496094,-0.15820312,-0.1328125,-0.084472656,0.049072266,-0.14160156,-0.1640625,-0.20996094,-0.029663086,-0.20117188,0.0063171387,-0.22753906,0.016479492,0.22949219,0.029541016,-0.09667969,-0.013977051,-0.37109375,0.025146484,0.09765625,-0.08154297,0.13867188,0.061767578,-0.25195312,-0.16015625,-0.18164062,-0.01574707,0.11035156,0.036865234,0.061523438,0.052734375,0.020263672,-0.014221191,-0.104003906,0.01184082,-0.09326172,0.0021820068,-0.009277344,-0.16601562,-0.021484375,-0.064941406,-0.107421875,-0.14648438,-0.00680542,-0.1171875,-0.099609375,-0.076660156,0.17285156,-0.20507812,-0.006500244,-0.23730469,0.0051879883,0.036621094,0.028442383,0.28710938,0.064453125,-0.23242188,-0.11376953,0.0027923584,-0.05810547,-0.0035095215,0.16015625,-0.056884766,0.0154418945,-0.052001953,-0.057128906,-0.13964844,-0.011291504,-0.12890625,-0.16601562,0.18554688,-0.07324219,0.15136719,-0.18847656,0.040283203,0.1484375,-0.13867188,-0.10839844,-0.115722656,0.056640625,-0.17871094,-0.19824219,0.033203125,0.0015487671,0.0016326904,-0.048095703,-0.08496094,0.13574219,0.059326172,0.006439209,-0.027709961,-0.328125,0.34375,0.007873535,-0.057617188,0.15136719,-0.064941406,-0.27539062,-0.10839844,0.10107422,-0.07324219,-0.17871094,-0.14746094,-0.30664062,0.003967285,-0.33007812,0.016845703,0.027832031,0.033691406,0.0014343262,-0.18457031,0.009094238,0.1875,-0.099121094,-0.041748047,-0.06640625,-0.03881836,-0.12890625,0.109375,0.0077819824,-0.009765625,-0.04296875,-0.20214844,-0.021850586,-0.19238281,0.00020599365,0.21972656,0.16113281,-0.14257812,-0.09375,0.18066406,-0.08984375,0.15625,-0.22753906,0.078125,0.111816406,0.03930664,-0.042236328,-0.234375,0.08642578,0.039794922,0.08105469,0.06982422,-0.106933594,-0.03125,-0.13476562,0.04296875,-0.08105469,0.0030212402,0.028564453,0.084472656,-0.041503906,-0.047851562,0.19238281,-0.12158203,0.16015625,0.018432617,0.25,0.09863281,-0.048095703,-0.07763672,-0.28320312,0.037597656,-0.3046875,0.119628906,-0.13867188,0.052978516,-0.15429688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.14941406,0.13183594,-0.3828125,0.025146484,-0.024291992,0.31640625,0.10644531,-0.36914062,0.03491211,-0.060058594,0.044189453,-0.22460938,0.12792969,0.0050354004,-0.006958008,0.035888672,-0.011474609,-0.064453125,-0.11669922,-0.123046875,0.017944336,-0.1953125,0.20214844,0.007080078,0.033447266,-0.14160156,0.045898438,-0.06738281,0.08203125,0.05493164,-0.0703125,0.10839844,-0.04711914,-0.34179688,-0.18945312,0.038085938,-0.1015625,0.20898438,0.076660156,-0.0008583069,0.072753906,-0.13476562,0.13964844,-0.23046875,0.0625,0.0071411133,-0.09814453,0.05029297,0.20214844,0.032470703,-0.06298828,-0.203125,0.14257812,-0.022460938,-0.01965332,0.037109375,-0.053710938,-0.068847656,-0.092285156,-0.16894531,-0.20214844,-0.04321289,-0.06347656,0.0087890625,-0.07763672,-0.06982422,-0.11328125,-0.1328125,0.0061950684,0.053466797,-0.1953125,-0.21679688,0.03112793,0.041503906,0.10449219,0.28515625,-0.13085938,0.007171631,-0.063964844,0.056884766,-0.038330078,-0.041992188,-0.265625,0.018798828,0.027954102,0.15234375,0.110839844,-0.051513672,-0.023803711,-0.012817383,0.17480469,0.053222656,0.14648438,-0.0546875,0.068847656,-0.047851562,-0.076660156,0.09863281,-0.10107422,-0.07714844,-0.080566406,0.27734375,0.25976562,0.31835938,-0.052978516,-0.15917969,-0.12890625,-0.12597656,0.06982422,0.07470703,0.057128906,0.096191406,-0.14550781,0.071777344,-0.07373047,-0.08984375,-0.038330078,0.040039062,-0.12890625,-0.04248047,0.004119873,-0.14257812,-0.067871094,0.13769531,-0.055664062,-0.06298828,-0.0011825562,0.0703125,-0.020019531,-0.03149414,0.13183594,-0.20800781,-0.06591797,0.19140625,-0.14257812,0.30859375,0.078125,-0.17773438,-0.11669922,0.036865234,0.024291992,-0.047607422,0.031982422,-0.12060547,0.19042969,0.022460938,-0.08203125,0.048095703,0.051757812,0.011230469,-0.10205078,0.040527344,0.028564453,-0.0546875,-0.12451172,0.16210938,0.01953125,0.13769531,0.15234375,0.09326172,-0.009460449,0.06591797,0.033447266,0.056396484,0.00982666,0.024536133,0.06933594,0.20117188,-0.10644531,0.072265625,-0.010925293,-0.1328125,0.02758789,-0.234375,0.02368164,0.11230469,-0.11376953,-0.05444336,-0.091796875,-0.03112793,-0.15039062,0.16503906,-0.10644531,0.095214844,-0.14160156,-0.103027344,-0.08203125,-0.05908203,-0.036132812,0.029296875,0.044677734,0.111816406,-0.13183594,-0.28710938,-0.23632812,0.08251953,-0.12402344,-0.01184082,-0.032714844,0.10546875,0.007598877,-0.038085938,-0.028076172,-0.032958984,0.02758789,-0.064453125,-0.071777344,-0.023925781,-0.15820312,-0.10644531,0.041748047,-0.18457031,0.15820312,0.20898438,-0.030151367,0.1171875,0.049072266,0.047851562,-0.064453125,-0.014770508,-0.02709961,0.012878418,-0.07470703,-0.08642578,-0.075683594,0.016235352,-0.044433594,-0.07714844,-0.025634766,-0.18652344,-0.10839844,-0.27734375,-0.080078125,0.07324219,0.07861328,0.014831543,-0.049072266,0.18359375,0.040771484,-0.049560547,-0.046875,-0.12402344,0.14453125,-0.047851562,0.06738281,0.21484375,0.080078125,0.06640625,-0.11425781,0.10595703,0.14160156,-0.13671875,-0.12890625,-0.10107422,0.04296875,0.13085938,0.032226562,0.036621094,0.20019531,-0.18066406,-0.13671875,0.12158203,0.115722656,-0.1875,0.06738281,0.052978516,-0.1171875,-0.075683594,0.04638672,-0.07470703,-0.034179688,0.075683594,-0.13867188,-0.11816406,-0.037597656,-0.18652344,-0.16796875,-0.100097656,0.125,-0.08642578,-0.09423828,0.10107422,0.036865234,0.07324219,-0.0077209473,-0.029541016,0.08984375,-0.088378906,-0.038330078,0.22265625,-0.059814453,-0.27929688,0.11328125,-0.031982422,0.096191406,0.010375977,0.021118164,0.05053711,-0.064941406,-0.083984375,0.06738281,-0.20703125,0.03955078,-0.25390625,-0.12597656,-0.08496094,-0.03515625,-0.060791016,-0.008911133,-0.1015625,-0.0859375,-0.29296875,0.10595703,0.123535156,0.08984375,0.06982422,0.10644531,0.115234375,0.04272461,0.015136719,0.06738281,-0.14257812,0.04711914,0.03112793,-0.16601562,0.06225586,-0.12402344,0.19335938,-0.020751953,0.16308594,0.07714844,0.023803711,0.07128906,0.07324219,0.055664062,0.024902344,0.111816406,0.104003906,0.17675781,-0.111328125,-0.12695312,0.0012435913,0.005432129,0.19042969,-0.024414062,0.017456055,-0.09082031,-0.03857422,-0.011474609,-0.05859375,0.03955078,-0.029052734,0.40039062,0.037597656,0.1640625,-0.095703125,0.13476562,0.087402344,-0.13378906,0.14453125,0.080566406,-0.0048217773,0.05029297,0.15429688,0.0390625,0.19335938,-0.048583984,-0.17773438,0.19628906,-0.009216309,-0.044433594,-0.13378906,0.2421875,-0.12158203,0.02331543,-0.036132812,0.010070801,-0.075683594,-0.115722656,-0.07763672,0.055419922,0.107421875,0.092285156,-0.028198242,0.088378906,0.02709961,-0.13964844,-0.08935547,0.123535156,0.002029419,-0.064941406,-0.03540039,-0.10986328,-0.16503906,0.099121094,-0.061035156,-0.056640625,0.072753906,-0.033691406,-0.056884766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05053711,-0.12988281,-0.25195312,0.04296875,-0.12109375,0.031982422,-0.12158203,-0.08935547,-0.05493164,0.0037078857,0.09326172,-0.16113281,-0.076171875,0.032958984,-0.29296875,-0.063964844,-0.02722168,-0.025390625,-0.024047852,-0.18554688,-0.040771484,-0.083984375,-0.14160156,-0.018188477,-0.0030822754,-0.030395508,0.05444336,0.048828125,0.016113281,0.23242188,-0.057373047,-0.1171875,-0.16503906,-0.14648438,-0.022216797,-0.15136719,-0.13671875,0.014099121,-0.08300781,-0.08251953,0.076171875,0.023071289,-0.034179688,0.14355469,0.017944336,-0.07519531,-0.20800781,-0.10058594,-0.10595703,-0.003829956,-0.13867188,-0.18847656,-0.18261719,0.060302734,0.13183594,0.18261719,-0.0023956299,0.014526367,0.013977051,0.14746094,-0.09472656,-0.09375,-0.111816406,0.06933594,-0.12597656,-0.23828125,0.12890625,-0.15429688,0.017089844,-0.024291992,-0.057373047,0.08154297,0.03125,0.15234375,0.13671875,0.06933594,0.021362305,0.032714844,-0.015319824,-0.042236328,0.109375,-0.09423828,-0.15136719,0.111328125,-0.060302734,-0.044433594,-0.008422852,-0.12890625,0.078125,-0.06982422,0.063964844,-0.21484375,-0.002319336,-0.13085938,0.010314941,-0.019042969,-0.23242188,-0.037353516,-0.021728516,0.037597656,0.052490234,0.3515625,0.05908203,-0.038085938,0.024047852,-0.012939453,0.0390625,0.0032196045,-0.15234375,-0.049072266,-0.049804688,0.011047363,-0.09472656,-0.010620117,-0.16992188,-0.17871094,0.056884766,-0.03466797,-0.06298828,0.13574219,-0.047607422,-0.09277344,0.046875,0.002319336,0.087890625,-0.026733398,-0.053955078,-0.16113281,-0.025268555,0.10253906,0.052490234,-0.2109375,-0.030029297,-0.03125,0.007446289,0.061523438,-0.041748047,-0.091796875,0.1640625,0.13085938,0.0546875,-0.032958984,-0.13378906,-0.01928711,-0.088378906,-0.060791016,0.020141602,-0.21582031,0.044677734,0.019042969,-0.013671875,0.043945312,-0.114746094,-0.020263672,0.028198242,-0.03149414,-0.20117188,-0.040771484,0.1328125,-0.16601562,0.083984375,-0.122558594,-0.03491211,0.114746094,0.052246094,-0.091308594,-0.23242188,-0.099121094,-0.041992188,0.06640625,-0.087890625,0.021118164,-0.015991211,0.0087890625,0.028686523,-0.053222656,-0.091308594,0.033691406,0.060546875,-0.1875,0.06591797,0.028198242,-0.14160156,0.096191406,-0.07714844,0.060302734,-0.078125,0.08154297,-0.14257812,-0.20703125,0.16015625,-0.006072998,-0.024780273,0.09716797,0.18164062,-0.21875,0.12451172,-0.13476562,-0.025634766,0.114746094,0.040283203,-0.19140625,0.06689453,0.012145996,-0.14257812,0.029418945,0.10498047,-0.110839844,0.20117188,-0.0625,0.23535156,-0.37109375,0.14257812,-0.091796875,0.024658203,-0.017333984,0.0037078857,-0.13769531,-0.084472656,-0.122558594,0.13964844,-0.14550781,-0.014892578,-0.12402344,0.043701172,0.022705078,0.11279297,-0.17285156,0.067871094,0.068359375,-0.016967773,-0.16796875,-0.009399414,-0.103515625,0.109375,0.0075683594,-0.19433594,0.10644531,0.11767578,-0.052246094,0.020507812,-0.08203125,-0.033691406,-0.06542969,-0.14648438,-0.02368164,-0.13867188,-0.16601562,-0.049072266,0.111328125,-0.08105469,0.03540039,0.049560547,0.13085938,-0.140625,0.057861328,-0.0046081543,-0.18164062,0.16601562,0.20410156,-0.17285156,0.087402344,-0.16601562,-0.0026245117,0.0040893555,-0.04248047,-0.24414062,0.013122559,-0.05029297,-0.20996094,-0.115722656,0.09814453,0.00051116943,0.07324219,0.10839844,-0.37109375,0.046142578,0.2421875,0.09814453,0.05883789,0.045166016,0.042236328,-0.043945312,-0.03515625,-0.032226562,-0.07373047,-0.09033203,-0.07373047,-0.09765625,-0.12207031,-0.023071289,-0.05126953,-0.009521484,-0.04663086,0.07519531,0.00032424927,0.053466797,-0.23144531,0.044433594,-0.10253906,0.14257812,-0.032470703,-0.15820312,-0.13183594,0.057373047,-0.15625,0.037597656,-0.12060547,0.10595703,0.06982422,0.072753906,-0.22949219,0.026123047,-0.16699219,-0.095703125,-0.16210938,-0.18164062,-0.18359375,-0.057373047,-0.12402344,-0.15917969,0.013916016,0.20996094,0.10546875,0.087890625,-0.07421875,0.015991211,0.27929688,-0.05517578,-0.08105469,0.103027344,-0.09423828,0.15527344,-0.06201172,-0.1171875,-0.14160156,0.026977539,0.14648438,0.018310547,0.14453125,0.008239746,0.119140625,-0.07080078,-0.043945312,-0.024414062,-0.029418945,0.29296875,0.030761719,-0.16894531,0.047607422,-0.20996094,0.14746094,-0.14941406,-0.06298828,0.016113281,-0.125,0.19921875,-0.020263672,0.1953125,0.067871094,-0.031982422,0.045410156,-0.10253906,-0.12695312,-0.11230469,0.21679688,-0.07714844,-0.06591797,-0.11621094,0.09716797,-0.11669922,-0.119140625,0.265625,-0.05810547,-0.024169922,-0.018310547,-0.06298828,0.052490234,-0.014465332,-0.10644531,-0.18164062,0.044677734,0.15136719,-0.06298828,0.08691406,0.088378906,-0.03149414,-0.1953125,0.14941406,-0.0056762695,-0.071777344,-0.265625,0.06933594,0.15820312,0.14746094,-0.08544922,-0.10986328,-0.0037231445,-0.071777344,-0.03466797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.31054688,0.053955078,0.0025787354,0.01171875,-0.04296875,-0.060302734,-0.03100586,0.016235352,0.14355469,0.01574707,-0.053466797,0.100097656,-0.024780273,-0.11816406,-0.041259766,-0.13183594,0.07080078,0.12792969,0.15039062,0.09716797,0.13769531,0.09716797,0.0043640137,-0.21777344,0.010925293,-0.008605957,0.049804688,-0.095214844,-0.15234375,0.0234375,-0.13671875,-0.16601562,-0.0005378723,-0.25,0.10644531,-0.061767578,0.15332031,0.13183594,-0.06201172,-0.265625,0.080078125,0.17089844,0.107910156,-0.084472656,0.023071289,-0.0015029907,-0.028564453,-0.114746094,0.099121094,-0.15820312,0.006652832,-0.015136719,0.14648438,0.26367188,-0.030517578,-0.111816406,-0.064453125,0.11816406,0.07470703,0.010314941,-0.08105469,-0.2109375,-0.010437012,-0.095703125,0.11279297,0.30273438,0.107421875,0.09814453,0.032470703,0.23535156,-0.29101562,0.04711914,0.05517578,0.12695312,-0.091796875,-0.0073547363,-0.091308594,0.12890625,-0.075683594,-0.012512207,0.014892578,0.103027344,-0.033691406,-0.013183594,0.08544922,-0.203125,-0.25,0.03149414,-0.048583984,-0.041748047,0.032470703,0.21875,-0.12060547,-0.04638672,0.017456055,-0.1171875,0.025024414,0.057373047,0.009643555,0.07861328,0.25,0.08935547,-0.038330078,-0.10839844,-0.055908203,-0.029052734,-0.020507812,-0.26171875,-0.1484375,-0.10644531,-0.18554688,-0.076171875,-0.14941406,-0.045654297,-0.033447266,0.025634766,-0.045166016,0.14355469,-0.044433594,-0.15332031,-0.03955078,-0.07373047,0.19433594,-0.22265625,-0.056396484,-0.052001953,-0.0012207031,-0.06982422,0.09375,-0.08154297,-0.057373047,-0.14746094,0.05444336,-0.013671875,0.03173828,0.21289062,-0.0058288574,-0.031982422,0.038085938,0.056884766,0.029907227,-0.2421875,-0.02355957,-0.0546875,0.028686523,0.13964844,0.040283203,0.076660156,-0.14160156,0.029663086,0.24414062,0.06298828,-0.08691406,-0.020019531,-0.088378906,0.064941406,-0.17871094,-0.0134887695,-0.0053710938,0.07080078,0.017700195,-0.11376953,-0.18945312,-0.25976562,0.07128906,-0.19433594,-0.18066406,0.05102539,0.103515625,0.036865234,-0.009094238,0.123535156,-0.03930664,0.22265625,-0.015625,0.13085938,-0.36132812,-0.15722656,-0.09033203,0.13867188,0.13769531,0.07470703,0.023803711,0.0016098022,-0.08300781,-0.13378906,0.025512695,-0.048828125,-0.171875,-0.03857422,-0.091796875,-0.20117188,-0.25390625,-0.0018615723,-0.064941406,0.04248047,-0.028930664,0.087890625,0.010314941,-0.115234375,0.111328125,-0.16601562,0.20605469,-0.16503906,0.032226562,-0.16210938,-0.05029297,0.057373047,-0.20605469,0.20214844,0.11816406,-0.14648438,-0.03466797,-0.0038452148,-0.016967773,0.2890625,0.03881836,0.0016555786,0.05419922,0.015014648,-0.09472656,0.022460938,0.08935547,0.046875,0.10839844,0.13085938,-0.063964844,0.13085938,0.044921875,-0.25585938,-0.061279297,-0.22363281,0.12597656,-0.13867188,-0.10449219,-0.061523438,-0.19726562,0.115722656,-0.19140625,0.080566406,-0.11669922,0.14453125,-0.10888672,-0.19921875,0.008422852,-0.14160156,0.064941406,0.01940918,0.04248047,-0.036132812,-0.05102539,-0.06933594,0.09472656,0.20214844,0.12011719,0.087402344,-0.41992188,-0.1015625,-0.060791016,0.044189453,-0.0154418945,-0.28125,-0.06298828,-0.125,0.05126953,0.026733398,0.0053710938,-0.099609375,-0.14355469,0.19628906,0.033691406,-0.07470703,-0.33789062,-0.203125,0.123046875,0.010681152,0.03515625,0.21289062,-0.26757812,0.17675781,0.09326172,-0.0134887695,-0.011291504,0.010192871,0.15039062,0.12158203,-0.07714844,-0.0087890625,0.20410156,-0.029418945,-0.125,0.13085938,-0.0013809204,-0.32617188,0.012207031,0.3046875,-0.018066406,0.026000977,0.008728027,0.092285156,0.10058594,0.033691406,0.09667969,-0.072753906,-0.04248047,0.041748047,0.13085938,0.114746094,0.33203125,-0.03491211,0.027954102,-0.07910156,0.080566406,-0.056396484,-0.024658203,0.18066406,0.035888672,0.083984375,0.10449219,-0.08691406,0.010620117,-0.059570312,-0.15820312,-0.100097656,-0.140625,0.19140625,-0.10839844,-0.16796875,0.09814453,0.08251953,-0.068359375,-0.41796875,0.12695312,-0.1328125,-0.025268555,-0.19726562,-0.296875,-0.003540039,-0.063964844,-0.08105469,-0.111816406,-0.10839844,0.030029297,-0.37109375,0.06933594,-0.03125,-0.08251953,-0.14355469,-0.119628906,-0.0002412796,-0.010864258,0.03515625,0.021240234,-0.15136719,0.053466797,0.046142578,-0.0062561035,-0.15722656,0.047607422,-8.8214874e-05,0.016357422,0.10595703,-0.008666992,-0.06591797,-0.17871094,0.06640625,-0.12988281,0.0046081543,0.12988281,-0.008056641,-0.100097656,-0.023803711,0.10498047,-0.111328125,0.021728516,0.26171875,0.045166016,-0.012878418,-0.171875,0.06640625,-0.028198242,0.0859375,0.015014648,0.110839844,0.0020446777,-0.20117188,-0.030639648,-0.19042969,0.10644531,-0.076660156,-0.22851562,0.26757812,0.003829956,-0.092285156,-0.15625,-0.015319824,0.071777344,-0.068847656,-0.042236328,0.041748047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15625,-0.119140625,-0.025390625,0.011108398,0.099121094,-0.08251953,-0.15136719,0.05834961,-0.022705078,0.096191406,-0.035888672,0.056640625,0.017822266,-0.14941406,0.15039062,0.15136719,0.05029297,-0.08300781,0.10058594,-0.048339844,0.056640625,-0.16503906,0.030395508,-0.08886719,0.016723633,-0.020141602,-0.123535156,0.02746582,0.052001953,-0.032714844,0.17480469,0.034179688,-0.013671875,0.045166016,0.12158203,-0.203125,0.04663086,-0.20117188,0.072265625,-0.123046875,-0.026977539,-0.13085938,-0.028930664,-0.21972656,0.047607422,0.09326172,0.028320312,0.09375,0.028930664,0.07714844,0.03515625,-0.13671875,0.15332031,-0.08691406,-0.06347656,-0.17089844,-0.08251953,0.044921875,0.13769531,-0.15332031,-0.07763672,0.11328125,0.092285156,-0.0126953125,-0.1015625,-0.05029297,0.026367188,-0.18847656,-0.076660156,0.0038146973,-0.05834961,-0.10595703,-0.0051879883,0.016723633,-0.03564453,-0.0077819824,-0.0038757324,-0.28125,-0.0036315918,-0.35546875,-0.031982422,-0.08984375,-0.07910156,-0.106933594,-0.049804688,0.04736328,0.119628906,0.016967773,0.022460938,0.044677734,0.08300781,-0.17675781,0.1328125,-0.29492188,0.01953125,-0.05029297,0.028564453,0.10205078,0.012329102,-0.13476562,-0.018432617,0.08105469,-0.051757812,-0.10888672,0.11035156,0.068359375,-0.0024261475,-0.12402344,0.061279297,-0.18847656,0.008239746,-0.12060547,-0.14257812,0.13867188,0.03515625,-0.1484375,-0.05834961,-0.071777344,-0.203125,-0.051757812,0.056640625,-0.123535156,-0.16503906,-0.15136719,0.14648438,0.014343262,-0.044921875,0.040283203,-0.40820312,0.12011719,0.033691406,-0.15625,0.079589844,0.15429688,-0.25,-0.12890625,0.017333984,-0.020141602,0.035888672,-0.12060547,0.0703125,-0.091308594,-0.021606445,0.16796875,-0.28515625,0.08642578,0.07128906,-0.18457031,-0.00491333,-0.024658203,-0.119628906,-0.18066406,-0.084472656,0.060302734,0.103515625,0.14257812,-0.1640625,0.060058594,-0.07714844,-0.12402344,-0.0054626465,0.0026245117,0.046142578,0.125,0.072265625,0.00077438354,0.29492188,0.012512207,-0.05883789,0.16210938,0.025756836,-0.041503906,-0.053955078,0.034179688,0.107421875,-0.05053711,0.1875,-0.016235352,0.08544922,-0.11376953,-0.024536133,0.083984375,0.096191406,-0.045654297,0.08496094,0.15722656,-0.056640625,-0.13183594,-0.016479492,-0.28710938,-0.015991211,-0.25585938,0.23242188,0.045898438,0.099609375,0.029785156,-0.10205078,-0.061523438,-0.1171875,0.021484375,0.0007324219,-0.05419922,-0.20703125,0.059814453,0.055664062,-0.05126953,-0.078125,-0.034423828,-0.20898438,-0.12451172,0.013671875,-0.11621094,-0.025390625,0.18847656,-0.20117188,0.05908203,0.064453125,-0.014892578,-0.07519531,-0.104003906,0.010131836,-0.18261719,-0.13378906,0.10498047,-0.052978516,-0.03149414,0.1796875,-0.11035156,0.012145996,0.07470703,-0.17285156,-0.07910156,-0.057861328,0.02722168,0.08203125,0.08154297,0.06347656,-0.018432617,-0.19238281,0.17089844,-0.14160156,-0.061767578,-0.040283203,0.017211914,0.04321289,0.17285156,0.25195312,0.104003906,0.08105469,0.007232666,0.052978516,0.12158203,0.06591797,0.076171875,-0.047607422,-0.04711914,-0.08251953,0.09423828,0.055664062,0.0859375,-0.012451172,-0.010620117,0.2109375,-0.140625,0.10986328,0.119140625,0.045654297,0.09765625,0.059814453,-0.01550293,-0.0059814453,-0.09033203,-0.095214844,-0.12988281,0.16015625,0.010009766,0.032714844,-0.083984375,0.07080078,0.03491211,-0.072265625,0.053222656,0.10888672,0.14453125,-0.055419922,-0.055664062,0.03564453,-0.16992188,-0.045166016,0.000869751,0.103515625,-0.0025787354,0.040039062,0.09716797,0.09472656,0.19042969,-0.0021209717,-0.0017929077,-0.20214844,-0.0065612793,-0.037109375,-0.19335938,0.012756348,0.119140625,-0.09375,0.14355469,0.234375,-0.037353516,-0.018188477,-0.075683594,-0.07714844,0.010803223,0.053955078,-0.13964844,-0.21191406,0.01977539,0.079589844,-0.007873535,-0.05053711,0.21289062,-0.17578125,0.0009994507,-0.049804688,-0.115722656,-0.05810547,-0.17089844,0.040527344,0.0012969971,0.03540039,-0.13476562,0.015625,0.13671875,0.024414062,-0.060546875,0.043701172,-0.026245117,-0.08544922,0.03515625,-0.09716797,-0.042236328,-0.088378906,-0.07714844,0.15136719,-0.06347656,0.060791016,0.03955078,-0.018310547,-0.029296875,0.08984375,-0.012145996,-0.107910156,-0.05834961,-0.033447266,0.018554688,0.16113281,0.15039062,-0.025512695,-0.30078125,0.114746094,0.024291992,-0.06591797,-0.03112793,0.012084961,0.008605957,0.1328125,-0.056152344,0.07910156,-0.1484375,-0.16503906,0.053710938,0.059570312,0.06689453,0.024169922,0.080078125,0.04272461,0.103027344,0.08691406,0.08544922,-0.043701172,-0.053222656,-0.044189453,0.02734375,0.171875,-0.016723633,-0.111328125,0.09667969,0.1640625,-0.125,-0.0017623901,-0.421875,0.111816406,-0.067871094,-0.026855469,0.00340271,-0.007751465,0.1484375,0.12402344,-0.08691406,-0.045654297,0.107910156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.12988281,-0.08300781,-0.18164062,-0.15625,0.059814453,0.119140625,0.04345703,0.06591797,-0.0033874512,0.053710938,0.08544922,0.19042969,-0.0062561035,0.032470703,0.041748047,-0.060546875,0.13574219,-0.12597656,-0.047851562,0.08691406,0.21875,-0.017578125,0.17382812,0.19042969,0.06933594,0.0020446777,-0.24707031,0.0009841919,0.09716797,-0.23046875,-0.017333984,0.009338379,0.32617188,-0.03564453,-0.07714844,0.057861328,-0.041503906,-0.03881836,-0.20996094,0.15234375,0.009277344,0.017944336,0.14941406,0.045654297,0.072753906,0.14453125,-0.21875,0.33007812,0.10449219,0.07128906,0.10595703,0.04345703,-0.21679688,0.20996094,0.034179688,0.14550781,-0.017944336,0.10253906,0.026977539,-0.07324219,-0.06982422,0.1953125,0.10546875,-0.0038452148,0.107910156,0.053222656,0.17089844,0.17773438,-0.35351562,0.13378906,0.030761719,-0.19921875,0.052001953,-0.1875,0.083496094,-0.06201172,-0.29492188,0.099121094,-0.032470703,0.009460449,-0.026489258,0.044189453,-0.08496094,0.008911133,-0.003036499,-0.072265625,0.10253906,0.13769531,0.09472656,0.010314941,-0.080078125,0.045166016,0.16113281,0.048583984,0.08154297,-0.046142578,0.017089844,0.068359375,-0.036621094,0.013305664,0.16894531,-0.022705078,-0.12792969,0.026611328,0.08984375,0.0057678223,-0.048583984,-0.06982422,0.111328125,-0.057128906,-0.037109375,0.08154297,0.14453125,-0.06225586,0.06298828,-0.08154297,0.055419922,0.03173828,-0.049804688,0.057617188,-0.0035247803,-0.028808594,0.16601562,-0.09765625,0.06542969,-0.01928711,-0.21289062,-0.12207031,-0.018798828,-0.22753906,0.057861328,-0.08496094,-0.080566406,0.14648438,0.14941406,0.17480469,0.083496094,0.036132812,0.25976562,-0.083984375,-0.033935547,0.13574219,0.20996094,0.18164062,0.041748047,-0.076660156,0.032714844,-0.08544922,-0.18847656,-0.040527344,-0.07128906,0.0390625,0.012207031,0.026611328,0.068847656,-0.002456665,-0.20996094,-0.020751953,-0.14550781,0.33789062,0.009460449,0.12695312,0.052734375,-0.06591797,0.09716797,0.029785156,0.19335938,-0.0018005371,-0.100097656,-0.049804688,0.017578125,0.056152344,0.111328125,-0.022583008,0.026977539,-0.123046875,0.045410156,0.071777344,-0.12695312,0.05810547,-0.16894531,-0.01586914,-0.0546875,-0.010253906,-0.005432129,-0.16894531,-0.053222656,-0.053222656,0.18261719,0.064941406,-0.06347656,-0.03149414,0.009216309,-0.20214844,-0.17773438,-0.07861328,-0.1953125,-0.10205078,0.19433594,0.22753906,-0.034423828,-0.103027344,0.03491211,-0.19824219,0.0042419434,0.106933594,-0.024047852,-0.072753906,0.046142578,-0.0048828125,-0.08105469,-0.04272461,-0.11767578,0.22070312,-0.007171631,0.045654297,-0.05810547,-0.106933594,0.171875,-0.032958984,0.08105469,-0.13378906,-0.06689453,-0.013916016,-0.06933594,-0.19824219,-0.03466797,-0.046142578,-0.083496094,-0.004333496,0.24707031,-0.06933594,-0.06298828,-0.18652344,-0.06542969,-0.04248047,0.028076172,-0.057861328,0.08691406,0.29101562,-0.17578125,0.033935547,0.025634766,-0.13183594,0.023071289,-0.16699219,-0.114746094,0.09423828,-0.040039062,-0.17578125,0.07714844,0.0027923584,0.05444336,-0.018920898,0.12792969,-0.05419922,0.056640625,-0.15527344,-0.0032043457,-0.13183594,-0.107910156,0.021972656,-0.075683594,-0.08154297,0.10644531,-0.26171875,0.18261719,0.026977539,-0.025390625,-0.096191406,-0.13867188,-0.08984375,-0.037841797,-0.10058594,-0.14941406,-0.06982422,-0.1640625,-0.16796875,0.20507812,-0.06738281,0.059570312,-0.23925781,0.11816406,-0.234375,-0.171875,0.12207031,-0.041748047,-0.029418945,-0.03125,-0.26171875,-0.046142578,-0.15039062,-0.12988281,0.11035156,0.06298828,-0.21386719,0.09667969,-0.11621094,-0.087402344,-0.29882812,0.013122559,-0.018432617,-0.1171875,0.0048828125,0.095703125,-0.1171875,-0.057373047,-0.09765625,-0.14453125,0.06982422,-0.09277344,-0.20117188,-0.052490234,-0.296875,0.12792969,-0.115234375,-0.15917969,-0.111328125,-0.07763672,-0.091308594,-0.140625,-0.13085938,-0.06542969,-0.018798828,0.08886719,0.10888672,0.09814453,0.24414062,0.09375,0.030151367,0.018188477,0.080566406,-0.050048828,-0.11328125,0.13378906,-0.16015625,0.060546875,-0.037597656,-0.12695312,-0.1953125,0.11035156,-0.13183594,0.078125,-0.004425049,0.091308594,-0.20214844,-0.12109375,0.052490234,-0.06298828,0.15722656,0.052734375,-0.13183594,-0.17089844,-0.045654297,-0.20507812,0.080078125,-0.00074386597,-0.053955078,0.018310547,0.100097656,0.05419922,-0.30078125,0.100097656,-0.100097656,-0.05102539,0.040771484,-0.0010299683,-0.072753906,0.0390625,0.044921875,-0.05419922,-0.10205078,0.07861328,-0.009338379,-0.0070495605,-0.01574707,-0.033935547,0.09326172,-0.061279297,-0.16601562,-0.024658203,0.01940918,-0.043701172,-0.0390625,-0.0020446777,-0.1953125,-0.13085938,0.046875,0.1484375,-0.017211914,0.12597656,-0.025268555,-0.072265625,-0.021118164,0.20800781,-0.17089844,-0.052490234,-0.022460938,-0.03100586,-0.17382812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.013000488,-0.18261719,-0.17773438,-0.03491211,-0.107910156,0.12792969,-0.029663086,0.1640625,-0.0059509277,-0.008666992,0.012939453,-0.046142578,-0.13085938,0.18164062,0.13964844,-0.2109375,-0.08642578,0.059814453,0.002532959,-0.20703125,0.049316406,-0.040039062,-0.026977539,-0.11376953,0.051757812,-0.20800781,-0.03930664,-0.18164062,-0.059814453,-0.017944336,0.119140625,-0.16992188,-0.11376953,-0.037841797,-0.12109375,-0.104003906,-0.24316406,-0.061035156,0.029907227,0.08544922,0.024780273,-0.02709961,0.034179688,-0.09326172,-0.03125,0.039794922,-0.018188477,-0.23046875,-0.20605469,0.088378906,-0.008422852,-0.328125,-0.017456055,-0.22460938,-0.06640625,-0.014465332,0.044921875,0.037109375,0.20214844,0.119628906,0.020629883,0.020629883,0.13671875,-0.01361084,-0.099121094,-0.10205078,0.08984375,-0.19238281,0.0065307617,-0.018432617,-0.09814453,-0.09277344,0.06542969,0.10498047,-0.111816406,0.018676758,0.005645752,0.12792969,-0.096191406,0.027709961,-0.119140625,-0.25,-0.0067443848,-0.16699219,0.07519531,-0.0010757446,-0.23925781,0.2890625,0.032470703,0.063964844,-0.02331543,-0.06982422,-0.08935547,0.038330078,0.1875,0.10644531,-0.068847656,0.23828125,-0.032714844,0.0095825195,-0.011474609,-0.13671875,-0.14355469,-0.119140625,-0.10595703,0.0056152344,0.010131836,0.018188477,-0.091796875,-0.0066223145,-0.05078125,0.014038086,-0.08642578,0.08300781,-0.057861328,0.09033203,-0.111816406,0.36328125,0.03173828,-0.20117188,0.061767578,-0.0034332275,0.08886719,0.063964844,-0.04663086,-0.03125,-0.12158203,-0.03466797,-0.026611328,-0.021240234,0.08203125,-0.36914062,0.068359375,0.07519531,-0.20703125,0.13183594,0.08984375,0.041748047,0.07080078,-0.12988281,0.04638672,-0.12402344,-0.23925781,-0.09765625,-0.2578125,-0.07421875,-0.12451172,-0.21289062,0.020751953,-0.030517578,0.021118164,-0.107421875,-0.067871094,-0.05834961,-0.016113281,-0.034423828,0.032958984,-0.079589844,-0.19238281,-0.09814453,-0.21386719,-0.17285156,0.1015625,-0.051757812,0.041992188,-0.07470703,-0.080566406,0.09765625,-0.0017929077,0.1640625,-0.00036621094,-0.048583984,0.038085938,0.18164062,0.055908203,0.08886719,-0.05078125,-0.032714844,0.09814453,0.063964844,0.028442383,-0.014892578,-0.087402344,-0.111328125,0.08203125,0.09375,-0.091308594,0.04248047,-0.030273438,0.13964844,0.052490234,0.10205078,-0.07470703,-0.07324219,0.012756348,0.23144531,-0.08544922,0.16601562,0.0059509277,0.03930664,0.087890625,0.0099487305,0.07373047,0.12451172,-0.068847656,0.06640625,-0.16113281,-0.106933594,0.14648438,-0.107910156,0.053222656,-0.15917969,0.024414062,0.056640625,0.20605469,0.15039062,0.10595703,-0.072753906,-0.051513672,-0.056640625,-0.1171875,-0.22070312,0.059814453,-0.15429688,-0.1953125,0.016723633,-0.171875,-0.140625,0.19921875,-0.15234375,0.053466797,0.02368164,-0.013305664,-0.171875,-0.111816406,-0.19238281,-0.13476562,-0.17089844,-0.0051879883,-0.18457031,-0.20898438,-0.20605469,-0.023925781,-0.048828125,0.076171875,0.0013809204,0.044189453,0.21191406,0.014526367,-0.03491211,-0.16113281,-0.06591797,-0.091308594,-0.0068969727,-0.21679688,0.18261719,-0.083984375,-0.031982422,0.11230469,-0.015563965,-0.057861328,-0.007873535,0.0859375,-0.23339844,0.03491211,-0.12597656,0.07519531,-0.04638672,0.023071289,0.013122559,-0.0234375,0.03515625,-0.036376953,-0.0076293945,-0.042236328,-0.19628906,-0.15917969,-0.13183594,0.1328125,0.12207031,-0.059326172,-0.017944336,0.15722656,-0.018798828,0.01965332,-0.012817383,0.122558594,0.15527344,-0.017944336,-0.057861328,0.16015625,0.009460449,0.14648438,-0.099121094,0.20019531,-0.039794922,0.048095703,-0.05859375,-0.14550781,0.06591797,-0.103027344,0.049804688,0.053955078,-0.04296875,-0.16308594,-0.04736328,-0.09765625,-0.13964844,-0.076171875,-0.24804688,0.10839844,-0.01574707,0.016845703,-0.014953613,0.087890625,-0.12988281,-0.017211914,0.106933594,-0.032226562,-0.10839844,0.029052734,-0.049804688,-0.15136719,-0.10058594,-0.030883789,7.6293945e-05,-0.035888672,0.022827148,0.07470703,-0.09667969,-0.14257812,-0.2109375,0.022216797,-2.9802322e-05,-0.13867188,0.122558594,-0.076171875,-0.118652344,-0.047607422,-0.011657715,-0.0625,-0.21191406,-0.013549805,-0.24316406,-0.021972656,0.064453125,-0.04638672,-0.00970459,0.09765625,-0.16992188,-0.15625,-0.013122559,-0.125,-0.053466797,0.008728027,-0.27929688,0.076171875,-0.047851562,0.011779785,0.28710938,0.042236328,0.009155273,0.091796875,-0.17578125,0.2734375,0.06542969,-0.06347656,0.11621094,-0.26757812,0.106933594,0.04248047,-0.19726562,0.107910156,-0.07080078,-0.012512207,0.14160156,0.106933594,0.021240234,0.0059509277,0.06347656,0.16992188,0.041748047,-0.026245117,0.044921875,-0.088378906,0.043701172,-0.13671875,-0.033691406,-0.037597656,-0.06542969,-0.041503906,0.06982422,0.022094727,0.107910156,-0.076660156,-0.024658203,-0.047851562,-0.123046875,-0.16796875,0.020263672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.044189453,0.3359375,-0.12451172,0.09277344,0.024780273,-0.096191406,-0.22949219,-0.12109375,0.26367188,0.16308594,-0.036132812,0.021606445,-0.032714844,0.0023651123,-0.017578125,-0.15039062,-0.07080078,0.16796875,0.203125,0.11425781,0.017578125,0.064453125,-0.034423828,-0.0625,-0.0012283325,-0.11621094,-0.14453125,-0.00018692017,0.008728027,-0.26757812,-0.049072266,0.0032196045,-0.06982422,-0.14257812,0.07519531,0.1328125,-0.14453125,-0.0703125,0.25390625,-0.023925781,-0.13574219,0.09814453,0.09277344,0.171875,0.118652344,0.17578125,0.09667969,-0.021850586,0.042236328,-0.09033203,0.21777344,0.06982422,0.053710938,0.055664062,-0.15332031,0.16308594,0.0099487305,0.0032196045,-0.004180908,0.043701172,-0.11767578,0.09082031,-0.048095703,0.008728027,0.08300781,0.27539062,0.022583008,-0.012145996,-0.03125,0.06738281,-0.12695312,-0.100097656,-0.02331543,0.025024414,-0.0064086914,-0.05517578,-0.26953125,-0.0032043457,0.024047852,0.16992188,-0.092285156,0.14746094,0.14746094,0.05444336,0.12988281,-0.072753906,-0.22460938,0.061035156,-0.01574707,0.100097656,-0.09716797,0.08935547,-0.025634766,-0.008728027,-0.067871094,-0.015380859,-0.16308594,0.10058594,0.003036499,0.016235352,0.18261719,0.103515625,-0.07861328,0.0037078857,0.032958984,-0.0034942627,-0.041748047,0.053466797,-0.107910156,0.107910156,-0.11328125,-0.045410156,-0.056396484,-0.04296875,-0.01159668,-0.0053100586,0.05908203,-0.107421875,0.072265625,-0.083984375,-0.021362305,0.03112793,0.0039978027,-0.029541016,-0.041992188,0.10986328,0.080566406,-0.083984375,0.03564453,0.18652344,0.060302734,0.06640625,0.23730469,-0.375,-0.021728516,-0.0014648438,-0.19335938,0.067871094,-0.13671875,-0.056396484,-0.14257812,0.067871094,-0.18652344,0.10253906,0.022949219,0.080078125,0.049804688,0.125,0.10058594,0.0546875,-0.17480469,-0.049316406,0.03100586,0.09082031,0.037353516,0.0037231445,-0.12060547,0.028808594,-5.2690506e-05,0.06201172,-0.05126953,0.056152344,-0.01940918,0.11279297,0.040283203,0.087890625,-0.072753906,0.091308594,0.056152344,-0.25976562,-0.27929688,0.018920898,-0.13867188,0.035888672,0.16894531,0.05908203,-0.26757812,-0.020874023,-0.00014209747,0.0390625,-0.080078125,-0.057617188,-0.115234375,0.030517578,-0.28515625,-0.06689453,0.034423828,0.09033203,-0.079589844,-0.0066833496,0.24804688,-0.052001953,-0.10205078,0.084472656,-0.106933594,0.083496094,-0.18652344,-0.111816406,0.080566406,-0.046875,-0.16992188,-0.115722656,0.016601562,0.025268555,-0.16308594,0.06201172,0.122558594,0.03491211,-0.042236328,0.072265625,0.036376953,0.09033203,-0.030639648,-0.032958984,0.060546875,0.15527344,0.06933594,-0.080078125,-0.06689453,0.125,-0.13085938,0.15429688,0.05078125,-0.091796875,0.044189453,0.11816406,-0.10498047,0.0028533936,-0.18554688,0.107910156,-0.123046875,0.24609375,-0.14550781,-0.06689453,0.018554688,-0.12451172,0.026245117,0.1953125,0.12109375,0.0064697266,-0.051513672,0.0048828125,0.106933594,-0.10449219,0.060791016,0.09277344,-0.16113281,0.18164062,-0.025390625,-0.23925781,-0.17675781,0.045898438,0.18066406,-0.03540039,0.13769531,0.056396484,-0.08105469,0.037841797,-0.022949219,-0.103027344,-0.20898438,0.023803711,-0.09472656,0.18554688,-0.095703125,-0.04663086,-0.125,-0.0056762695,-0.03466797,0.13769531,0.107910156,-0.041503906,-0.36914062,-0.016845703,0.033447266,-0.06542969,-0.06689453,0.12988281,-0.012512207,-0.017089844,0.083984375,0.038330078,0.055908203,-0.06689453,-0.022094727,-0.07519531,0.040527344,0.024780273,-0.22753906,-0.051513672,-0.03955078,-0.0051574707,0.041015625,0.0070495605,-0.104003906,0.024658203,0.088378906,0.04272461,-0.024780273,-0.099609375,0.018188477,0.13085938,-0.038330078,0.23535156,0.017944336,0.025146484,-0.06689453,0.115722656,0.008666992,0.09277344,-0.23828125,0.04345703,-0.040771484,-0.044433594,0.029785156,-0.14941406,0.040527344,0.04321289,-0.027954102,0.15136719,0.018188477,0.09277344,0.005554199,-0.110839844,0.20703125,-0.010437012,0.11816406,0.14453125,0.009277344,-0.20800781,-0.07519531,0.057861328,0.18945312,0.080566406,-0.14257812,-0.04321289,0.14355469,-0.13574219,0.030883789,-0.12597656,0.04345703,0.15136719,-0.12011719,0.29882812,0.018310547,-0.13476562,-0.020385742,0.053955078,0.13867188,0.080078125,0.08642578,-0.036621094,-0.15917969,-0.08642578,-0.017944336,-0.057861328,0.125,0.17675781,-0.0023498535,0.26171875,-0.06542969,0.036132812,-0.123046875,-0.13085938,0.21289062,0.13867188,-0.06933594,-0.03955078,-0.27929688,0.10888672,-0.0053710938,0.07421875,0.14941406,0.12011719,-0.057373047,0.24511719,0.07128906,-0.09033203,-0.072265625,0.059814453,0.23242188,0.115234375,0.078125,0.09277344,-0.38476562,-0.11376953,-0.0154418945,0.12695312,0.0008544922,0.34375,-0.0066223145,0.2578125,0.091796875,-0.13085938,0.06933594,-0.24121094,0.16113281,0.16796875,-0.107421875,-0.15332031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.055908203,-0.07421875,0.095703125,0.22558594,-0.036132812,0.026977539,-0.056640625,-0.24023438,-0.140625,0.08251953,0.15332031,-0.18359375,0.14257812,-0.063964844,-0.17578125,0.11035156,0.053222656,0.013671875,0.04663086,0.13378906,-0.057617188,0.27539062,-0.017333984,-0.111328125,-0.091308594,0.026000977,0.0033874512,0.15332031,0.01977539,0.11376953,0.049072266,-0.10644531,0.08691406,0.04711914,0.26757812,-0.10498047,-0.09814453,-0.071777344,0.041503906,-0.11767578,0.022583008,0.091308594,-0.16601562,0.16894531,-0.009216309,0.1796875,-0.044189453,-0.06347656,-0.17675781,0.16601562,0.2578125,0.012512207,-0.11767578,-0.038085938,-0.026000977,-0.10449219,-0.04272461,0.03564453,-0.100097656,0.0011138916,0.12402344,-0.009216309,0.010559082,-0.045654297,-0.10498047,0.01977539,0.063964844,0.014343262,-0.0107421875,0.17480469,0.022216797,0.18847656,-0.03857422,0.0625,-0.08496094,0.0017852783,0.036376953,-0.04272461,0.010009766,-0.071777344,-0.017211914,-0.021118164,-0.05444336,0.09326172,-0.111816406,-0.060546875,-0.072753906,-0.05810547,-0.071777344,-0.14941406,0.012451172,0.01928711,0.03515625,-0.20214844,-0.055908203,-0.095703125,-0.19140625,0.21484375,0.0625,0.05419922,-0.1171875,0.2578125,0.013793945,-0.07080078,-0.033691406,0.040283203,-0.048583984,0.10107422,-0.12695312,-0.3359375,-0.025512695,0.013916016,0.007080078,0.06591797,-0.028076172,-0.14355469,-0.052001953,0.2578125,0.095214844,-0.010437012,0.06982422,0.07324219,-0.080566406,-0.008850098,0.08935547,-0.043701172,0.011230469,-0.007537842,-0.12792969,0.0011825562,0.095214844,0.09765625,-0.095214844,0.08642578,0.25390625,-0.17480469,0.002105713,-0.06225586,0.06591797,0.1875,0.08691406,-0.12890625,-0.060546875,-0.25,-0.22949219,-0.05126953,0.15332031,0.088378906,-0.075683594,0.19140625,0.1875,-0.007751465,0.03857422,-0.12011719,0.0546875,0.010253906,-0.104003906,0.05053711,0.12988281,-0.17382812,-0.06298828,0.053955078,0.0066223145,0.049560547,-0.072265625,-0.0049743652,-0.14648438,0.044433594,0.0027770996,-0.07324219,0.052001953,0.13867188,0.17675781,-0.09716797,0.008239746,0.044921875,0.010925293,0.078125,-0.11425781,0.046875,-0.032958984,0.111328125,-0.076660156,-0.17089844,0.04711914,-0.056640625,0.056396484,-0.026000977,0.008911133,-0.12792969,-0.0047302246,-0.16113281,0.07080078,-0.08935547,-0.09667969,-0.118652344,-0.14355469,-0.0069274902,0.096191406,-0.18359375,0.05834961,0.06298828,-0.07470703,0.10546875,0.021118164,-0.20800781,-0.19042969,-0.029541016,-0.26367188,-0.0054016113,0.07910156,-0.044189453,0.013977051,-0.12597656,-0.06689453,-0.12695312,-0.09667969,0.09667969,0.03149414,-0.013183594,-0.107910156,-0.103027344,0.007507324,-0.049804688,-0.12060547,0.04736328,-0.036132812,0.032714844,-0.03955078,0.24121094,-0.004638672,-0.14746094,0.008483887,0.05908203,0.078125,0.09716797,-0.07373047,-0.0005912781,-0.07763672,0.084472656,0.107421875,0.032226562,-0.12890625,0.15722656,-0.11621094,0.17578125,0.23925781,0.19628906,-0.008605957,-0.18066406,0.10253906,0.026245117,0.07421875,-0.15136719,-0.078125,0.080078125,0.022094727,0.08154297,-0.103027344,0.075683594,-0.20117188,0.03491211,-0.0234375,0.11376953,-0.01965332,-0.014465332,-0.07373047,-0.05493164,-0.025634766,0.024902344,-0.041992188,-0.14257812,0.0052490234,-0.25976562,-0.040771484,-0.18652344,-0.27148438,-0.14746094,-0.071777344,-0.07324219,0.0134887695,0.095214844,0.040527344,-0.16796875,-0.1640625,-0.04736328,-0.035888672,0.03930664,0.039794922,0.01953125,-0.06298828,-0.033203125,-0.23632812,-0.19726562,-0.029785156,0.036865234,-0.079589844,0.10888672,0.13574219,0.05810547,-0.06933594,-0.1328125,-0.099121094,0.060546875,-0.010559082,0.06982422,0.08496094,-0.059570312,-0.088378906,0.1015625,0.28710938,-0.09082031,-0.055664062,0.15625,0.02355957,0.22753906,-0.07763672,-0.061279297,-0.063964844,0.037353516,-0.07910156,0.15722656,-0.17773438,0.07128906,-0.04736328,0.19433594,-0.16113281,0.0029144287,-0.012084961,-0.044433594,0.048339844,0.026000977,-0.057128906,0.040771484,-0.20507812,-0.039794922,-0.020507812,-0.4375,-0.12597656,9.346008e-05,-0.04638672,0.32421875,-0.09863281,-0.119628906,0.033935547,-0.07080078,0.18457031,0.030517578,-0.071777344,-0.03930664,-0.25195312,-0.21972656,-0.0018615723,-0.078125,-0.33984375,-0.028930664,-0.036376953,0.080078125,0.20019531,-0.25195312,-0.024902344,-0.07421875,0.049316406,0.053710938,-0.13183594,-0.0625,-0.06298828,-0.060791016,0.09814453,0.0010299683,-0.27148438,0.015197754,-0.026123047,-0.0023040771,-0.111816406,-0.22949219,0.007293701,-0.04638672,0.04248047,0.033447266,-0.05078125,-0.123535156,-0.060791016,0.07128906,0.20898438,0.0546875,-0.14648438,0.052246094,-0.11376953,0.09375,-0.26953125,-0.16894531,-0.04321289,-0.017700195,0.15527344,-0.021850586,-0.20703125,0.23632812,0.18554688,-0.01965332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.080566406,-0.12695312,-0.017700195,0.11425781,0.052246094,-0.17480469,0.036621094,0.1640625,-0.09716797,-0.114746094,-0.0038757324,0.11279297,0.08251953,0.06738281,0.24902344,0.07373047,0.044433594,0.012451172,0.11816406,-0.083984375,0.03149414,0.3984375,-0.04248047,0.22460938,0.026367188,-0.1640625,-0.031982422,0.171875,0.08203125,-0.10595703,0.12890625,0.22460938,-0.028076172,0.06225586,-0.083496094,0.05517578,-0.16894531,-0.115234375,-0.12792969,-0.023803711,-0.08154297,-0.18847656,-0.17480469,0.061767578,0.037841797,-0.15429688,0.009033203,0.20507812,0.07861328,0.051513672,0.22363281,-0.0022583008,-0.13671875,0.10595703,0.06738281,-0.007232666,-0.091308594,-0.027709961,0.030883789,-0.016601562,0.12695312,-0.21582031,0.034423828,0.12890625,-0.11035156,-0.045898438,0.059814453,0.064453125,0.115722656,0.16210938,-0.32226562,-0.107421875,-0.033203125,0.07470703,0.063964844,0.08203125,-0.0099487305,-0.13378906,0.10253906,0.099609375,-0.111328125,-0.06982422,-0.041748047,0.11230469,0.03466797,0.11279297,0.18164062,-0.06591797,0.122558594,-0.04248047,0.15917969,0.15625,-0.15234375,-0.11669922,0.072753906,0.059814453,-0.19140625,0.08105469,0.03955078,0.046875,0.05102539,0.017578125,-0.099609375,0.16015625,-0.057861328,-0.08642578,-0.20800781,-0.040771484,0.13769531,0.013000488,-0.067871094,0.099121094,-0.06738281,-0.07324219,-0.032958984,-0.038330078,-0.063964844,-0.044921875,0.114746094,0.00579834,-0.12597656,0.021484375,-0.05419922,-0.041992188,0.053710938,0.040527344,0.063964844,0.038330078,0.018432617,-0.23144531,0.075683594,-0.056152344,0.05517578,0.05029297,0.03955078,-0.2109375,-0.030273438,-0.14648438,-0.005706787,0.10595703,0.04736328,-0.010070801,0.052001953,0.140625,0.08691406,-0.13183594,0.13964844,0.017578125,-0.017333984,-0.091308594,0.040771484,0.017944336,0.017089844,0.07763672,-0.003768921,0.18457031,0.09814453,0.11279297,0.1484375,0.020874023,0.037597656,0.103027344,-0.095703125,-0.040283203,-0.100097656,0.10205078,0.04296875,0.171875,0.095703125,0.030883789,0.1328125,-0.15820312,-0.04248047,-0.11328125,0.22851562,0.0044555664,-0.0138549805,0.12792969,-0.17578125,-0.122558594,-0.11816406,0.16210938,-0.13183594,0.067871094,0.007507324,-0.18652344,-0.019897461,0.072753906,0.09082031,0.027954102,0.049560547,0.15332031,0.18945312,-0.050048828,0.10839844,0.035888672,0.16992188,0.123046875,-0.09082031,-0.17480469,-0.02758789,-0.010620117,-0.027832031,-0.071777344,-0.09082031,-0.064941406,-0.028442383,-0.0044555664,0.12695312,0.09375,-0.15429688,0.080078125,-0.020996094,-0.13183594,-0.08496094,0.06640625,-0.029907227,0.02319336,0.014160156,0.1328125,0.014221191,-0.007446289,0.10253906,0.12109375,-0.030639648,-0.03491211,-0.06738281,0.014587402,0.22265625,0.027832031,0.0033721924,-0.10888672,0.08935547,-0.15039062,0.2578125,0.016601562,0.107910156,0.08496094,0.076660156,0.16015625,-0.027709961,-0.048828125,-0.20507812,0.06298828,0.17382812,-0.115234375,-0.012207031,-0.07861328,0.011413574,-0.14648438,0.06201172,-0.10107422,-0.045166016,0.02746582,0.11816406,0.07519531,-0.053466797,0.16503906,-0.30273438,-0.079589844,-0.014465332,0.16894531,-0.15527344,-0.068847656,-0.096191406,-0.14355469,-0.056396484,0.1015625,0.07714844,0.028808594,-0.015014648,-0.01373291,0.091308594,0.008666992,-0.15332031,-0.13085938,-0.008117676,0.17773438,0.049804688,0.13769531,-0.0076293945,-0.0390625,-0.051513672,0.071777344,-0.0703125,-0.0546875,0.024536133,-0.021972656,0.10107422,-0.12988281,-0.2890625,-0.010864258,-0.07324219,-0.1328125,-0.080078125,0.021850586,-0.03857422,-0.33398438,-0.12890625,-0.14453125,0.11328125,-0.19726562,0.04248047,-0.049316406,-0.103515625,-0.041503906,-0.21875,-0.11328125,-0.11035156,0.03564453,-0.03881836,-0.03515625,0.025512695,-0.16113281,-0.28320312,-0.12695312,0.07324219,-0.13085938,-0.20996094,0.08496094,-0.06347656,-0.1484375,-0.27539062,0.048339844,-0.041259766,-0.111328125,-0.22558594,-0.06298828,0.107910156,-0.2109375,0.064453125,-0.072753906,-0.033203125,0.07080078,-0.037109375,-0.12109375,-0.23535156,-0.07080078,-0.3359375,-0.1640625,0.07421875,0.08544922,-0.13769531,-0.0134887695,0.08105469,-0.19042969,-0.17285156,-0.13476562,-0.012512207,-0.091308594,0.0035095215,-0.0011901855,-0.12597656,0.08544922,-0.16113281,-0.1171875,-0.0025024414,-0.064941406,0.07080078,0.019165039,-0.09667969,-0.19042969,-0.12988281,-0.104003906,0.007232666,-0.16503906,-0.048095703,-0.10107422,-0.03515625,0.04321289,-0.29492188,-0.15917969,-0.013000488,-0.203125,-0.06640625,-0.017211914,0.075683594,-0.29882812,0.035888672,-0.046875,0.03930664,-0.15039062,-0.14453125,-0.15917969,0.03491211,-0.040527344,-0.08642578,0.08300781,0.115234375,-0.0060424805,0.083496094,-0.12451172,-0.06347656,-0.24707031,-0.09375,-0.19238281,-0.15234375,-0.051513672,-0.05859375,0.05029297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.22167969,0.026855469,-0.024902344,-0.19726562,-0.06982422,-0.08300781,-0.17773438,-0.40039062,0.12792969,-0.22753906,-0.061767578,0.07519531,-0.0029754639,0.03540039,-0.27148438,-0.21875,-0.10888672,-0.08642578,0.05493164,0.002609253,0.12451172,-0.061523438,0.11376953,-0.13476562,-0.04736328,-0.14648438,0.064941406,0.087402344,0.14355469,0.20214844,-0.056396484,-0.05444336,-0.05517578,-0.34570312,0.12695312,0.05102539,0.099609375,0.14648438,-0.08691406,-0.017333984,0.056640625,-0.09375,0.14648438,0.043701172,-0.011413574,0.06640625,-0.08203125,-0.0016784668,-0.110839844,0.07519531,-0.057373047,-0.29492188,0.01953125,-0.12207031,-0.07714844,0.01171875,-0.0026245117,-0.20898438,-0.15625,-0.13183594,-0.048339844,-0.0059509277,-0.110839844,0.020385742,-0.08251953,-0.088378906,-0.061767578,-0.12792969,-0.1796875,0.07324219,-0.05053711,-0.14160156,0.046142578,-0.119628906,-0.004058838,0.118652344,-0.0064086914,-0.23144531,-0.036132812,-0.17382812,-0.2734375,-0.19824219,-0.047607422,-0.17675781,-0.15625,-0.21484375,-0.114746094,-0.19140625,0.078125,-0.13476562,-0.025512695,-0.011230469,-0.05810547,0.04345703,-0.033447266,-0.25976562,0.027832031,-0.087402344,-0.013916016,0.04663086,-0.08105469,-0.052734375,0.2578125,0.17578125,-0.019042969,-0.03881836,-0.033203125,-0.24316406,0.06689453,0.18847656,0.16503906,-0.026367188,0.12890625,-0.13867188,0.13574219,0.12597656,-0.053466797,0.053710938,-0.03564453,-0.09667969,0.087890625,0.037109375,0.015014648,0.025756836,0.0859375,0.118652344,-0.09667969,-0.0018463135,-0.05883789,0.09082031,-0.020629883,0.037841797,0.06542969,0.020507812,0.04711914,0.13574219,0.04638672,0.08544922,0.07324219,0.0859375,-0.084472656,-0.02746582,-0.11816406,0.0022888184,-0.15332031,-0.044921875,-0.140625,-0.21484375,-0.0065307617,0.071777344,0.048583984,-0.06933594,0.071777344,-0.075683594,-0.036132812,0.24902344,-0.05102539,-0.020874023,-0.013427734,-0.09472656,-0.27929688,0.057617188,-0.115234375,-0.16503906,-0.20117188,-0.15234375,0.13476562,-0.19921875,-0.055664062,-0.27539062,-0.27148438,-0.14453125,0.12890625,-0.25195312,-0.079589844,-0.23046875,-0.27539062,-0.20019531,-0.23535156,-0.023925781,0.14453125,0.08251953,-0.07861328,-0.022949219,-0.051757812,-0.21679688,0.10449219,-0.096191406,0.12792969,0.26757812,-0.018432617,0.02355957,0.09863281,-0.14550781,0.018554688,0.24707031,0.08544922,0.032470703,0.20019531,-0.21582031,0.079589844,0.08984375,0.18164062,-0.039794922,0.14355469,0.16015625,0.023071289,0.16796875,-0.06225586,-0.048583984,-0.0014877319,-0.017089844,0.067871094,0.05029297,-0.032714844,0.024291992,0.07128906,0.048583984,0.06933594,0.05859375,0.061279297,0.11767578,-0.13964844,0.21289062,-0.064453125,-0.12597656,0.024414062,0.0027770996,-0.004180908,-0.007659912,0.29492188,-0.12109375,0.015319824,-0.029052734,-0.031982422,-0.0625,-0.10546875,-0.023071289,0.115722656,0.022216797,-0.095214844,0.07128906,-0.0703125,-0.296875,-0.029052734,-0.095214844,-0.10449219,-0.28710938,-0.02758789,-0.083496094,-0.05102539,-0.26367188,0.12011719,0.043945312,-0.09033203,-0.08203125,-0.15625,0.040039062,0.0050964355,-0.13769531,-0.025756836,0.021118164,-0.060546875,-0.072265625,-0.06347656,-0.19824219,0.068847656,-0.040039062,0.014099121,-0.05078125,-0.11621094,-0.19238281,0.12695312,0.084472656,-0.06689453,0.030517578,0.03100586,-0.20214844,-0.24609375,-0.22167969,0.036865234,-0.0044555664,0.16308594,-0.12060547,0.13085938,0.16210938,-0.018676758,0.13183594,-0.05102539,0.09716797,0.056152344,0.17382812,-0.099121094,-0.20800781,-0.111328125,-0.33789062,0.13476562,-0.083496094,0.15917969,-0.020751953,-0.0020446777,0.18652344,-0.07714844,0.05078125,-0.15625,-0.049804688,0.087402344,0.118652344,-0.048339844,-0.19140625,0.114746094,-0.023071289,0.08544922,0.20605469,0.11767578,0.017089844,-0.0040893555,0.014160156,0.048339844,0.11767578,-0.25976562,0.049560547,0.014587402,-0.1015625,-0.048583984,-0.020507812,-0.17285156,-0.25,-0.075683594,-0.10839844,-0.1953125,-0.16210938,0.04345703,0.06689453,0.045898438,-0.024536133,0.0099487305,0.02368164,0.10107422,-0.22949219,-0.0546875,0.049072266,-0.0046691895,0.036376953,-0.09863281,-0.03100586,0.028198242,-0.032714844,0.07861328,-0.06591797,-0.07861328,-0.12695312,-0.009643555,0.099121094,0.22167969,0.0043640137,0.0390625,0.04638672,-0.052001953,-0.05493164,0.04321289,-0.12597656,0.16503906,-0.16015625,-0.052978516,0.18554688,-0.012451172,0.064453125,0.11328125,0.15722656,0.0546875,0.05834961,-0.10253906,-0.079589844,0.029663086,-0.16796875,-0.08935547,0.03149414,0.18359375,-0.0146484375,0.06542969,0.18847656,-0.107421875,0.110839844,-0.056152344,-0.17871094,0.10888672,0.048583984,-0.06225586,-0.038330078,-0.083496094,-0.0023040771,-0.103027344,0.021972656,0.24707031,-0.011779785,-0.107910156,0.25585938,0.17285156,-0.052490234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.05102539,-0.18554688,-0.36523438,0.0087890625,0.013061523,-0.026123047,-0.051757812,0.052978516,-0.05444336,0.11767578,-0.07421875,-0.08642578,0.056396484,0.14648438,-0.0074768066,-0.110839844,-0.033447266,-0.2578125,-0.29492188,-0.12988281,-0.030883789,-0.014465332,-0.05126953,0.099609375,0.026245117,-0.071777344,0.08251953,0.12109375,0.16503906,-0.107910156,0.012573242,0.096191406,-0.10205078,-0.20996094,-0.16601562,-0.03881836,-0.056396484,0.13183594,-0.17871094,0.17578125,0.0034484863,0.05053711,0.109375,0.100097656,0.0546875,-0.21582031,0.06640625,0.010009766,-0.011291504,-0.057617188,0.040527344,-0.044677734,-0.041259766,0.05126953,0.06591797,0.05126953,-0.087402344,0.05908203,0.068847656,-0.06201172,0.08544922,0.103027344,0.10986328,-0.16601562,0.05126953,-0.12451172,-0.18457031,-0.17675781,0.016113281,0.08154297,0.06933594,0.044433594,-0.11279297,0.040039062,-0.12695312,0.005218506,-0.15234375,-0.07714844,0.035888672,-0.07080078,-0.15332031,-0.038085938,-0.22167969,-0.04663086,-0.11669922,0.055664062,0.15332031,-0.0039978027,0.05419922,-0.014587402,-0.21582031,-0.15820312,0.14648438,0.07861328,-0.110839844,-0.028808594,-0.23242188,0.06689453,-0.12890625,-0.014160156,-0.071777344,-0.13964844,-0.037353516,0.10058594,-0.1015625,-0.024169922,-0.16601562,0.06689453,0.12207031,-0.018066406,-0.14941406,-0.038085938,-0.14160156,-0.02368164,0.02331543,-0.020996094,-0.01928711,0.20117188,-0.02709961,-0.027954102,-0.106933594,0.05126953,-0.008178711,0.002380371,0.024780273,-0.02355957,0.006591797,-0.12792969,-0.18847656,0.014770508,0.060791016,-0.017089844,-0.043701172,0.18554688,-0.049072266,0.13574219,0.041992188,-0.06933594,-0.12890625,0.026245117,0.032714844,0.04638672,0.18457031,-0.00018310547,0.0014648438,-0.13769531,-0.10498047,-0.07470703,0.13574219,0.106933594,-0.30078125,0.10644531,-0.019042969,0.110839844,-0.043701172,0.13769531,-0.052978516,-0.029418945,0.09472656,-0.16308594,-0.03173828,-0.14160156,-0.053466797,0.027954102,-0.12109375,0.1328125,-0.026245117,-0.05102539,0.10253906,0.0234375,-0.15429688,-0.115234375,0.06591797,0.08300781,-0.041748047,-0.08105469,-0.25976562,0.01171875,0.038085938,-0.035888672,-0.032958984,0.12695312,0.00049972534,0.025390625,0.07519531,-0.022216797,0.007751465,-0.15722656,0.091308594,-0.07763672,0.024780273,-0.006652832,-0.014953613,-0.13378906,0.19238281,0.12451172,-0.006713867,0.07519531,-0.16894531,0.16015625,-0.064941406,0.04711914,-0.109375,-0.12597656,0.05493164,0.13964844,0.0017776489,-0.16015625,-0.24414062,-0.06201172,0.19238281,0.099121094,0.059326172,0.359375,0.07470703,0.22558594,-0.095214844,-0.052246094,-0.106933594,-0.14257812,-0.061523438,0.20410156,0.03149414,-0.11669922,0.06347656,-0.27148438,0.0005531311,-0.060302734,0.14550781,0.072753906,0.092285156,0.20019531,0.10546875,0.075683594,-0.08642578,-0.028686523,0.011291504,0.076660156,0.025024414,0.01977539,0.05883789,0.123046875,-0.06201172,-0.03515625,0.0099487305,-0.07714844,-0.12988281,0.079589844,-0.079589844,-0.06982422,0.076171875,-0.06689453,0.13867188,0.087402344,-0.02722168,0.04638672,-0.12988281,0.011047363,-0.0059814453,0.13476562,-0.22753906,-0.18066406,-0.28710938,0.099121094,-0.02722168,0.072265625,-0.10888672,-0.16894531,-0.036376953,0.041748047,0.0021820068,0.08984375,0.03466797,0.14941406,0.13574219,0.079589844,-0.122558594,-0.05078125,-0.05517578,-0.111816406,-0.07519531,0.0625,0.15136719,-0.028808594,0.095703125,-0.0008506775,-0.1328125,0.15429688,0.003829956,0.002105713,0.041748047,0.053222656,0.06542969,0.014038086,0.07470703,0.09375,-0.071777344,-0.026000977,-0.03857422,-0.057128906,-0.0048217773,0.037841797,-0.03173828,0.24902344,0.068847656,0.01586914,0.18652344,0.08935547,0.024780273,-0.12695312,0.045410156,0.10449219,0.055908203,0.14453125,-0.07910156,-0.08300781,-0.05517578,0.24023438,-0.0015182495,0.068359375,0.037597656,0.17285156,0.13964844,-0.07910156,-0.017578125,-0.20996094,0.08105469,0.16015625,0.055419922,-0.03857422,-0.17089844,-0.111328125,0.12060547,0.044189453,-0.059326172,0.036621094,0.12792969,0.12060547,0.106933594,-0.008850098,-0.055664062,-0.111816406,-0.080566406,0.056152344,-0.13183594,0.040771484,0.049804688,-0.005706787,0.1015625,0.24023438,-0.15917969,0.0020446777,0.057128906,0.063964844,0.087402344,-0.13378906,0.12890625,-0.19140625,-0.07519531,0.017578125,-0.07080078,-0.011474609,-0.12597656,0.020385742,-0.04663086,0.04345703,-0.025512695,0.055908203,0.17285156,-0.122558594,0.033691406,-0.083984375,-0.017700195,-0.2578125,-0.23339844,0.005340576,0.09375,-0.06689453,0.01928711,0.064453125,-0.020751953,0.10839844,-0.068847656,0.09082031,-0.10644531,0.18652344,0.08496094,-0.004272461,0.10546875,0.06591797,-0.07714844,0.06591797,-0.022460938,0.10888672,0.080078125,-0.020629883,-0.0234375,0.05883789,0.047607422,0.032714844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16210938,0.21679688,-0.06591797,-0.118652344,-0.011291504,0.091308594,-0.03125,-0.51953125,0.103515625,0.17675781,0.119140625,-0.015075684,0.12060547,0.09033203,-0.0061035156,-0.07763672,0.09814453,-0.018432617,0.15039062,-0.23828125,-0.020263672,0.14453125,0.19433594,-0.32617188,-0.08251953,0.23535156,0.10058594,-0.05810547,0.032958984,0.12011719,0.18652344,0.12011719,-0.17578125,0.07128906,0.0859375,0.11376953,-0.023071289,0.0079956055,0.079589844,0.08544922,-0.010498047,0.08642578,0.103027344,-0.023925781,0.03125,-0.10839844,-0.07861328,-0.0126953125,-0.10839844,-0.025024414,-0.040283203,-0.20800781,-0.0030517578,0.052246094,0.075683594,-0.06738281,0.011779785,0.19335938,0.064453125,0.0044555664,0.07910156,-0.15625,0.13867188,0.056152344,-0.118652344,0.064453125,-0.059814453,0.10888672,-0.018798828,-0.24511719,-0.0069274902,-0.010253906,-0.021484375,0.10595703,0.19921875,0.08984375,0.04711914,0.03857422,-0.042236328,0.035888672,0.07080078,0.057617188,0.15917969,-0.03955078,0.057128906,-0.036621094,0.064453125,-0.12158203,-0.017578125,0.06591797,-0.061035156,-0.29101562,-0.053955078,0.025512695,0.037353516,-0.12207031,0.17480469,-0.052246094,0.013916016,-0.12011719,0.052978516,0.029296875,-0.09375,-0.052734375,0.026611328,-0.104003906,-0.10595703,0.05810547,-0.03515625,0.028564453,-0.12597656,-0.15234375,0.06347656,-0.15722656,-0.10253906,0.0546875,0.07763672,-0.16699219,0.12207031,0.050048828,-0.064941406,-0.14941406,0.045654297,-0.17285156,0.06738281,-0.11230469,0.18652344,-0.009460449,0.09375,-0.25,0.047851562,-0.012817383,0.17480469,0.068359375,0.12792969,0.07910156,0.06225586,-0.05126953,-0.16210938,-0.041748047,0.14941406,-0.05053711,-0.013366699,-0.0033721924,-0.099121094,-0.109375,-0.10986328,0.0025024414,-0.0859375,-0.057373047,0.057373047,0.060302734,-0.03466797,-0.08886719,-0.0036773682,-0.1328125,-0.1875,-0.068359375,-0.10205078,-0.034423828,-0.05859375,0.03930664,-0.056396484,-0.20410156,-0.20800781,-0.060058594,-0.0016326904,-0.057617188,-0.07714844,-0.109375,0.0025634766,-0.03930664,0.07714844,0.083984375,-0.15722656,-0.030151367,-0.0073547363,-0.004547119,0.09326172,0.0703125,0.033447266,-0.103027344,-0.14453125,0.0625,-0.033447266,-0.26367188,0.012023926,-0.2578125,-0.056396484,-0.061523438,0.037109375,0.060302734,-0.04345703,0.03173828,0.03173828,0.06347656,0.1328125,-0.12890625,-0.06591797,-0.044189453,0.047851562,-0.13769531,0.060058594,-0.02331543,0.08496094,0.006500244,-0.057128906,-0.12109375,-0.12597656,-0.10546875,-0.00970459,-0.084472656,0.004486084,0.010925293,-0.22558594,0.046875,0.028564453,-0.20117188,-0.122558594,0.08984375,0.061279297,-0.0005683899,0.034179688,-0.19140625,-0.0055236816,-0.08300781,-0.110839844,-0.21582031,0.11621094,0.107910156,-0.080566406,-0.11376953,-0.06982422,-0.23535156,-0.05078125,-0.024047852,-0.06689453,-0.14648438,-0.125,-0.10595703,-0.07910156,-0.019897461,-0.06689453,0.02355957,-0.21582031,0.008850098,0.053466797,-0.11376953,0.110839844,-0.16796875,0.004211426,0.08886719,-0.15136719,-0.020629883,-0.20703125,-0.14257812,0.0134887695,-0.13671875,-0.08935547,-0.07763672,-0.03125,-0.018676758,-0.052001953,0.01940918,-0.08105469,0.002822876,0.106933594,0.22949219,-0.12597656,-0.17675781,-0.08691406,-0.14648438,0.08544922,-0.125,0.20703125,-0.076660156,0.07373047,0.12890625,-0.10644531,0.09765625,0.026000977,-0.14941406,-0.14453125,0.095703125,-0.13378906,0.05883789,0.040527344,-0.057617188,-0.16015625,0.08496094,-0.13476562,-0.03100586,-0.040527344,0.091308594,0.01586914,-0.022216797,0.030151367,-0.14648438,-0.15429688,-0.13867188,-0.03540039,-0.02709961,0.057617188,0.021118164,-0.07470703,-0.19335938,0.044921875,0.00579834,0.07519531,0.02355957,-0.018188477,-0.05517578,-0.016235352,-0.1171875,-0.0050964355,0.032958984,-0.040771484,-0.024291992,0.06640625,-0.04736328,0.059570312,-0.1328125,-0.0013046265,-0.06347656,-0.20019531,-0.057617188,0.046875,0.048828125,0.10107422,-0.09814453,0.22363281,-0.041992188,-0.038085938,-0.15722656,0.08544922,-0.06689453,0.0859375,-0.21777344,0.12695312,0.07470703,-0.111328125,-0.125,-0.18945312,-0.040771484,-0.048583984,0.083496094,0.15039062,0.05029297,-0.13574219,-0.063964844,-0.0031585693,-0.07373047,0.15429688,-0.09423828,-0.10498047,0.048828125,0.09765625,0.03466797,0.08300781,0.057861328,-0.052978516,0.09863281,-0.024780273,-0.140625,-0.17773438,0.17871094,-0.0015487671,-0.0859375,0.025146484,-0.063964844,-0.055908203,0.0077209473,0.109375,0.045410156,-0.040527344,0.10644531,0.008605957,0.045898438,-0.041992188,0.009338379,-0.036865234,-0.11425781,0.11279297,-0.0013427734,-0.13574219,-0.15820312,-0.12695312,-0.060058594,-0.07861328,0.12207031,-0.118652344,-0.09716797,-0.08300781,-0.057617188,0.048828125,-0.09667969,0.014221191,-0.27734375,-0.114746094,-0.15722656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.10888672,-0.036621094,-0.1328125,-0.04736328,0.016357422,0.014831543,0.021728516,0.171875,0.011413574,0.068847656,0.19238281,-0.003326416,-0.09082031,0.09667969,-0.053710938,-0.10449219,0.005554199,-0.075683594,0.049804688,-0.15234375,-0.034179688,0.08691406,0.16796875,-0.005554199,-0.0625,-0.024658203,-0.09326172,-0.053222656,-0.00340271,0.032958984,-0.079589844,0.063964844,0.15136719,-0.21777344,-0.099609375,0.087402344,0.05126953,0.10498047,0.09472656,-0.21289062,0.007019043,-0.11328125,0.14550781,0.022949219,0.057861328,0.12695312,-0.087402344,-0.025512695,-0.13183594,0.017211914,-0.13867188,0.061523438,-0.064941406,-0.119628906,0.045410156,0.051513672,0.006439209,-0.083984375,0.012451172,0.0065612793,0.12011719,0.037597656,-0.11035156,0.0059814453,-0.11767578,0.09765625,-0.107421875,0.06738281,0.030883789,-0.15136719,-0.0016174316,0.27734375,0.042236328,-0.14355469,0.064453125,-0.06689453,0.025024414,-0.09277344,-0.021972656,0.0014343262,-0.02331543,-0.067871094,0.026977539,-0.072265625,0.12792969,-0.22558594,-0.057128906,0.16601562,0.055419922,0.17382812,0.016723633,0.0703125,-0.0625,-0.03881836,0.049804688,0.013916016,-0.12792969,-0.052734375,-0.00017547607,-0.050048828,-0.0058898926,-0.059326172,0.017089844,0.39257812,-0.1015625,-0.021972656,0.123535156,0.06738281,-0.17382812,-0.07373047,0.017333984,-0.12597656,-0.030029297,-0.00022792816,-0.17382812,-0.015319824,-0.05078125,0.08300781,0.20117188,-0.11767578,0.07373047,0.034179688,0.20117188,-0.075683594,0.04321289,-0.109375,0.012207031,-0.25195312,-0.16699219,-0.06298828,0.042236328,-0.18945312,-0.06347656,0.04296875,0.1875,0.046875,0.08203125,-0.06542969,0.08984375,0.051757812,-0.040283203,-0.0077209473,0.034179688,0.003250122,0.05493164,-0.23925781,0.01953125,0.13867188,0.05908203,-0.020996094,-0.029663086,0.080566406,-0.07519531,-0.049560547,-0.01550293,0.040283203,-0.09326172,-0.15917969,-0.122558594,-0.18261719,0.033203125,0.010437012,0.111328125,0.087890625,-0.034179688,-0.12792969,0.09277344,0.115234375,-0.05493164,0.013671875,-0.21289062,-0.075683594,0.0036010742,0.13769531,-0.020751953,0.042236328,-0.08886719,-0.064453125,0.08691406,-0.17285156,-0.014160156,-0.072753906,0.032470703,0.26171875,-0.07910156,-0.15039062,0.044921875,0.07861328,-0.07763672,-0.033203125,-0.11376953,-0.110839844,-0.025268555,-0.13964844,-0.0021514893,-0.0063171387,0.17480469,-0.05517578,-0.07324219,-0.22851562,0.001335144,-0.072753906,-0.021972656,0.14257812,0.109375,-0.11621094,-0.079589844,-0.048095703,-0.041503906,0.024047852,-0.03955078,0.04296875,-0.023803711,0.12402344,-0.057128906,0.059814453,0.06225586,0.055908203,-0.25585938,0.03955078,-0.05126953,-0.029296875,0.071777344,-0.026367188,-0.06347656,0.11425781,-0.02722168,0.04296875,0.04321289,-0.0703125,0.07421875,0.096191406,0.0057678223,-0.055664062,0.02319336,0.2578125,-0.049072266,-0.2109375,-0.04321289,0.107421875,-0.104003906,0.027954102,-0.060791016,0.16699219,0.014099121,-0.21386719,-0.21191406,-0.060546875,0.06591797,0.052490234,-0.103027344,-0.049804688,0.12011719,0.14550781,0.106933594,0.30664062,-0.021606445,0.265625,0.119140625,-0.091308594,0.076171875,-0.12451172,-0.04296875,0.19042969,-0.10595703,-0.09472656,-0.10839844,-0.033935547,0.04345703,0.020385742,0.06689453,0.14941406,-0.08642578,0.12988281,-0.040039062,-0.19921875,-0.05908203,-0.079589844,-0.103515625,-0.12597656,-0.05444336,0.007537842,-0.053466797,0.17773438,-0.041992188,-0.020141602,-0.053466797,0.083984375,-0.03125,0.08105469,-0.16699219,0.09667969,0.002532959,-0.0054626465,0.060546875,0.029785156,0.036865234,0.04736328,0.02734375,-0.07373047,-0.19628906,-0.092285156,0.055419922,0.06933594,-0.21191406,0.016479492,-0.15625,-0.05053711,-0.24609375,-0.0022735596,0.111816406,-0.19824219,-0.08496094,0.12451172,-0.06738281,0.00060272217,-0.059814453,-0.22070312,0.2578125,0.1328125,0.0115356445,0.16699219,-0.03540039,0.06982422,-0.057373047,-0.10888672,-0.0067443848,0.1015625,0.06347656,-0.15234375,0.22167969,0.043701172,0.0061950684,0.080566406,-0.064453125,0.13574219,-0.041748047,0.03125,-0.08154297,-0.0625,-0.19140625,-0.12207031,0.072753906,0.013671875,-0.055908203,-0.16503906,-0.14550781,-0.047851562,-0.09423828,0.122558594,-0.234375,0.0041503906,-0.18847656,0.22851562,-0.16992188,-0.2890625,-0.19238281,-0.056152344,0.067871094,0.014953613,-0.028442383,-0.078125,-0.017456055,-0.095214844,-0.16992188,0.087890625,-0.13085938,4.4703484e-06,-0.28710938,-0.020751953,-0.07910156,-0.15625,0.092285156,-0.12011719,0.14746094,-0.21875,0.053466797,-0.11425781,0.051513672,-0.08105469,-0.014526367,-0.060791016,0.07128906,-0.01586914,-0.21875,0.08203125,-0.106933594,0.0034484863,-0.0010528564,-0.01184082,0.1953125,-0.30859375,0.091796875,0.12988281,-0.013244629,0.13574219,-0.20410156,0.14355469,0.036376953,0.08691406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16796875,0.07470703,0.013671875,0.11035156,0.063964844,0.11425781,-0.24316406,0.013122559,-0.17578125,0.19140625,-0.110839844,0.083496094,-0.20410156,-0.13085938,0.26171875,0.24023438,-0.04321289,-0.0703125,-0.0703125,-0.029541016,0.16503906,-0.05053711,-0.3046875,-0.17871094,-0.06689453,-0.0049743652,-0.27929688,0.010253906,-0.09716797,-0.020507812,0.088378906,0.048828125,0.027832031,0.18457031,-0.052734375,-0.171875,0.091796875,-0.04711914,-0.15527344,-0.17773438,-0.080078125,0.04638672,-0.16699219,0.22851562,-0.005645752,0.026733398,0.05493164,-0.0066833496,0.36132812,0.099609375,-0.17871094,-0.27539062,-0.045410156,-0.30664062,-0.19140625,-0.033691406,-0.057128906,-0.060791016,-0.18652344,0.23925781,-0.14648438,-0.061279297,-0.13476562,0.16015625,0.060546875,-0.203125,-0.03173828,0.08935547,0.049072266,-0.35546875,-0.115234375,-0.19921875,0.07763672,0.107421875,0.1875,0.045898438,-0.37695312,-0.14160156,-0.012329102,0.2109375,-0.21777344,-0.07470703,0.056396484,0.15332031,-0.17089844,0.10058594,-0.17480469,0.123046875,0.015991211,0.04321289,-0.1640625,0.095703125,-0.18164062,-0.16503906,-0.10546875,0.008361816,-0.40625,0.06591797,-0.14355469,-0.040771484,-0.09033203,-0.20703125,-0.30078125,0.020507812,-0.084472656,-0.12060547,-0.01586914,-0.16113281,-0.18164062,0.18652344,0.27539062,0.13867188,-0.06640625,-0.0077819824,-0.10107422,0.044677734,-0.080078125,0.021728516,0.044921875,-0.063964844,0.01953125,-0.05126953,-0.11035156,-0.033691406,-2.3245811e-05,0.1640625,0.10253906,-0.076171875,0.3046875,0.10498047,-0.028198242,-0.07324219,-0.027954102,-0.29101562,-0.27539062,-0.26757812,0.060302734,-0.060546875,-0.10498047,0.09814453,-0.079589844,0.1015625,0.15039062,-0.08691406,0.13964844,0.05078125,0.07324219,-0.053710938,0.16503906,-0.234375,0.23144531,0.07519531,0.052978516,0.1328125,-0.045654297,0.021362305,0.103027344,-0.1640625,-0.019165039,0.10253906,0.017089844,-0.171875,0.033691406,0.029541016,0.2265625,-0.16503906,-0.020874023,-0.0703125,-0.061035156,0.020874023,-0.16699219,-0.01373291,0.10253906,0.115722656,-0.034179688,-0.15234375,-0.32226562,0.0038757324,0.042236328,0.017822266,0.043945312,-0.13085938,-0.18359375,-0.06982422,-0.061035156,0.057861328,-0.05493164,-0.06225586,0.091796875,0.037109375,0.09375,0.20410156,-0.19433594,0.14453125,-0.088378906,-0.09082031,0.024780273,-0.14746094,0.18359375,-0.24804688,0.07519531,0.011108398,-0.079589844,-0.103515625,0.036865234,0.087890625,0.018554688,0.16699219,0.04321289,0.036621094,-0.125,-0.0011444092,-0.14941406,-0.057861328,-0.057128906,-0.21582031,-0.09375,-0.13183594,-0.234375,-0.01171875,-0.00016498566,0.123046875,-0.0024261475,0.059326172,0.18164062,-0.44726562,-0.045166016,-0.0018539429,0.104003906,-0.18261719,0.017089844,-0.0095825195,-0.0077819824,0.035888672,-0.012756348,-0.083984375,0.01550293,0.09277344,0.04663086,-0.012390137,-0.096191406,-0.119628906,-0.045654297,0.006958008,0.12011719,-0.234375,-0.11279297,0.035888672,-0.106933594,0.080078125,-0.38085938,0.039794922,0.095214844,0.09863281,0.026977539,-0.21875,-0.064453125,-0.18457031,0.114746094,-0.10449219,0.115234375,0.087890625,0.114746094,0.10839844,-0.1328125,0.123535156,-0.25390625,-0.22753906,0.017700195,0.076660156,0.03125,-0.10546875,-0.13183594,-0.043701172,-0.09082031,-0.14355469,0.072753906,0.022827148,0.09277344,0.20117188,0.01361084,-0.06542969,-0.055419922,-0.16503906,0.04663086,0.07373047,0.107910156,-0.056396484,-0.10107422,-0.265625,0.092285156,-0.013122559,-0.13574219,-0.025878906,0.00048828125,0.13378906,-0.0087890625,0.012878418,-0.12988281,-0.06738281,0.072265625,0.17285156,-0.036376953,0.009887695,0.08300781,-0.15917969,0.036865234,0.038085938,0.0625,0.14746094,0.044677734,0.03881836,-0.08105469,-0.024902344,0.12695312,-0.31835938,-0.052734375,0.15820312,0.046142578,-0.16210938,-0.23242188,-0.14648438,0.031982422,-0.107910156,-0.0053710938,-0.12597656,-0.080566406,0.06201172,0.09082031,0.056884766,-0.002319336,-0.03881836,0.06591797,-0.012756348,-0.05908203,-0.20214844,-0.05078125,-0.07128906,0.059326172,-0.125,0.099609375,-0.05908203,-0.013000488,0.07128906,0.059814453,0.075683594,-0.029907227,-0.27539062,0.10449219,-0.041748047,-0.034179688,-0.203125,-0.21972656,-0.019165039,-0.048095703,-0.09423828,0.040283203,-0.25195312,-0.092285156,-0.025024414,0.028930664,-0.04272461,0.025268555,-0.12890625,0.05859375,-0.0032806396,-0.0625,-0.17871094,-0.32617188,-0.052978516,0.109375,-0.0028381348,-0.119140625,-0.14160156,-0.029663086,0.05419922,-0.030029297,0.084472656,-0.07861328,-0.099121094,0.09423828,-0.04736328,0.17871094,-0.05517578,-0.079589844,-0.28710938,0.1640625,-0.07470703,0.16015625,0.27929688,-0.00982666,0.23828125,-0.021240234,0.080566406,0.01550293,-0.37695312,0.13964844,0.020263672,-0.030639648,-0.30859375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.21484375,-0.16992188,0.06689453,-0.04736328,-0.10449219,-0.3046875,0.118652344,0.022094727,-0.08496094,0.0703125,0.11376953,0.08886719,-0.044921875,-0.014526367,0.17480469,-0.052001953,-0.01361084,-0.171875,0.061523438,-0.24511719,-0.039794922,0.0859375,0.15820312,-0.04321289,-0.013916016,0.04272461,0.109375,0.140625,-0.06298828,0.015136719,0.12402344,-0.095214844,0.09423828,-0.052001953,0.10058594,-0.24121094,-0.036132812,-0.16113281,0.103027344,-0.056396484,-0.05444336,-0.023925781,0.03564453,0.092285156,0.049804688,0.17578125,0.07324219,-0.009887695,0.28125,-0.061767578,0.07080078,-0.15136719,0.10253906,-0.107910156,0.14746094,-0.18457031,0.076171875,0.0087890625,0.14941406,0.16015625,-0.11035156,0.044189453,-0.0049743652,0.03466797,-0.111816406,-0.09277344,0.030395508,-0.12060547,-0.10498047,-0.024902344,0.14550781,-0.076171875,0.023925781,-0.053710938,-0.060791016,0.11425781,-0.12792969,-0.0703125,0.055664062,0.091796875,0.01361084,-0.24707031,0.15039062,0.10205078,0.036621094,-0.056152344,0.15722656,-0.09326172,0.061523438,0.09375,0.067871094,0.114746094,0.02734375,-0.05078125,0.0625,-0.099609375,0.099121094,-0.07128906,0.09326172,-0.15136719,0.05517578,0.0050354004,0.0079956055,0.003479004,-0.08154297,-0.037109375,0.25,-0.019042969,-0.02758789,-0.08154297,0.12402344,-0.19433594,0.12792969,-0.05883789,0.19140625,-0.23828125,0.0057373047,-0.09716797,0.01171875,-0.030273438,0.018188477,0.028198242,-0.15722656,0.09765625,0.10205078,-0.15234375,0.024780273,-0.30859375,-0.099121094,-0.13183594,0.1640625,0.005432129,-0.2578125,0.045654297,-0.08691406,-0.080566406,0.02746582,-0.045898438,0.14941406,0.11425781,0.08300781,-0.14648438,-0.0703125,-0.12011719,-0.28125,-0.041503906,0.26171875,-0.12011719,0.17773438,0.025268555,-0.024291992,-0.10107422,-0.014343262,-0.056396484,-0.104003906,0.119628906,-0.049560547,0.046875,-0.045654297,-0.11621094,0.055664062,-0.25195312,0.123535156,0.03930664,-0.21191406,-0.064453125,0.15429688,0.08251953,-0.10253906,0.02368164,0.049560547,-0.040039062,0.02758789,0.030273438,-0.008361816,0.0030517578,-0.021606445,-0.1015625,0.008178711,0.06738281,-0.234375,0.14355469,0.05444336,0.057861328,-0.08691406,0.01373291,0.001953125,-0.0013122559,-0.09863281,-0.04248047,-0.22070312,-0.32226562,0.084472656,-0.095214844,0.096191406,-0.05493164,-0.19433594,0.140625,-0.15429688,-0.21777344,0.067871094,-0.14355469,0.0046691895,0.068359375,0.020141602,-0.27539062,-0.13476562,-0.2578125,-0.21484375,-0.025268555,0.15625,0.048828125,-0.22558594,-0.15917969,0.076660156,-0.19921875,0.029418945,-0.07910156,-0.03930664,0.033935547,-0.018920898,-0.29492188,-0.31445312,-0.23730469,-0.107421875,-0.0045166016,0.16992188,-0.023925781,-0.053955078,-0.24121094,0.004119873,-0.048095703,0.048095703,-0.021484375,-0.014099121,-0.032470703,0.064453125,0.05908203,-0.16308594,-0.037841797,0.011413574,-0.1640625,0.045166016,0.045898438,-0.22460938,-0.006713867,0.13476562,-0.032226562,-0.02331543,0.027832031,0.12011719,0.12988281,-0.078125,-0.13476562,0.030883789,0.012084961,-0.24414062,-0.08691406,0.008239746,-0.0010986328,-0.06225586,-0.13964844,0.08691406,-0.09765625,-0.114746094,0.055908203,0.04321289,0.103515625,0.028198242,0.07763672,-0.017822266,-0.12207031,-0.26953125,-0.18554688,-0.041992188,0.16015625,-0.110839844,-0.095703125,-0.07470703,-0.076660156,0.08105469,-0.14355469,0.08886719,-0.10644531,0.036865234,-0.041992188,-0.09863281,-0.28125,-0.23730469,-0.025512695,0.16699219,0.026489258,0.083984375,-0.035888672,-0.072265625,-0.064941406,-0.05908203,0.010681152,-0.06689453,0.049316406,0.010253906,-0.068359375,-0.049316406,-0.20605469,0.006500244,-0.002822876,0.15527344,0.08886719,-0.037841797,-0.03491211,0.0625,-0.064453125,-0.057373047,0.00047302246,0.07763672,0.110839844,-0.05444336,0.04711914,-0.051757812,0.020507812,0.0011672974,0.12207031,0.012329102,0.15820312,-0.12890625,0.002746582,0.06933594,-0.08544922,0.015380859,0.008728027,0.13183594,-0.01373291,-0.23144531,-0.099121094,0.024902344,0.011474609,-0.10449219,0.18164062,0.024414062,0.063964844,-0.059326172,-0.079589844,0.15625,-0.076171875,0.09472656,-0.03149414,-0.0034484863,0.0546875,-0.1015625,-0.09716797,0.072753906,-0.28515625,-0.20507812,0.048828125,0.06640625,0.0079956055,0.09472656,-0.17773438,0.095214844,-0.027832031,0.01953125,0.043945312,-0.06982422,0.12402344,0.013793945,-0.15917969,-2.1606684e-06,-0.20898438,-0.16113281,-0.019165039,0.06933594,0.095214844,-0.041503906,-0.31835938,0.11621094,-0.18652344,-0.12890625,0.018554688,0.27539062,0.019165039,-0.005218506,0.043701172,-0.22753906,-0.22851562,0.109375,0.044433594,0.02355957,0.02758789,-0.17089844,-0.23730469,-0.015380859,-0.09667969,0.091796875,-0.103027344,-0.171875,0.19628906,-0.13867188,0.061523438,-0.080566406,0.0859375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.21972656,0.056396484,0.012023926,0.1796875,-0.14550781,0.17773438,-0.092285156,-0.04321289,-0.06347656,-0.10449219,-0.12597656,-0.122558594,-0.10107422,0.021728516,0.13085938,-0.057128906,-0.13769531,-0.104003906,-0.12158203,0.15820312,0.016967773,0.1875,-0.23046875,-0.2265625,-0.041259766,-0.234375,-0.12890625,-0.057128906,0.01586914,0.13085938,0.22851562,0.0020751953,-0.31640625,-0.026977539,0.13183594,0.16308594,0.09814453,0.11376953,-0.021606445,-0.025878906,0.022216797,-0.10986328,0.02319336,-0.06542969,-0.07861328,0.13378906,0.15136719,0.032470703,-0.23730469,0.1640625,0.023925781,0.021850586,0.053466797,0.33398438,-0.056152344,0.14453125,0.024169922,-0.07763672,-0.10888672,0.051513672,-0.040527344,-0.08935547,-0.004211426,0.087890625,-0.14355469,-0.08203125,0.0047302246,-0.14550781,0.043945312,0.14550781,-0.23046875,0.0077209473,0.008117676,-0.29101562,-0.234375,0.09423828,-0.0703125,-0.18457031,0.03491211,0.13671875,-0.104003906,0.17871094,-0.041503906,0.009399414,-0.2265625,-0.099121094,-0.091796875,-0.17773438,-0.032226562,-0.05419922,-0.125,-0.026489258,0.05810547,0.04638672,0.026855469,-0.046142578,-0.099609375,0.15136719,0.0057678223,0.18652344,-0.06982422,0.12890625,-0.17675781,-0.18652344,-0.005218506,-0.13867188,0.119628906,-0.0703125,-0.087890625,0.14746094,-0.016235352,-0.0020141602,-0.17578125,0.079589844,0.04345703,0.12011719,-0.0072631836,-0.002090454,0.021362305,-0.17578125,0.091308594,0.036621094,-0.045166016,-0.057617188,-0.10253906,0.033203125,-0.08300781,0.12597656,-0.083984375,0.16601562,-0.0390625,0.057861328,-0.0032806396,0.03515625,-0.07128906,-0.057617188,0.067871094,0.067871094,-0.123535156,0.09033203,0.084472656,-0.038330078,0.057373047,0.026855469,0.064941406,-0.16601562,0.12060547,0.19726562,-0.17675781,-0.09863281,-0.119628906,-0.033447266,0.056396484,-0.051513672,-0.13769531,0.09716797,0.11621094,-0.09082031,0.0625,0.04663086,-0.068359375,0.29882812,0.05859375,-0.45117188,-0.012573242,-0.017211914,0.20019531,-0.08642578,-0.10107422,0.057617188,0.041748047,-0.010070801,0.110839844,0.15039062,-0.10986328,-0.071777344,-0.0038452148,-0.11035156,-0.061767578,-0.15136719,-0.21386719,0.19433594,0.08984375,-0.023925781,0.010864258,-0.091796875,-0.063964844,-0.043701172,-0.09716797,-0.05078125,-0.08984375,0.036132812,-0.05883789,0.13378906,0.002090454,0.07470703,-0.072265625,-0.09765625,0.08935547,-0.16796875,-0.030883789,0.044189453,-0.06982422,-0.00062179565,-0.0095825195,-0.076171875,0.03112793,-0.072265625,0.06542969,0.083984375,-0.15722656,0.038085938,-0.10546875,-0.18554688,-0.05908203,-0.18261719,0.060302734,0.029296875,0.107421875,0.096191406,0.078125,0.088378906,-0.059814453,-0.23046875,0.16699219,0.203125,-0.20214844,-0.029418945,-0.0045166016,-0.08886719,0.106933594,-0.11035156,-0.025268555,0.059570312,0.1171875,-0.0018081665,0.037353516,0.052490234,-0.011291504,-0.10205078,-0.029052734,0.025268555,0.18066406,0.020996094,0.080566406,-0.052246094,-0.028198242,-0.17578125,-0.01184082,-0.055419922,0.012145996,0.013793945,0.06689453,0.10888672,-0.10498047,0.06640625,0.03173828,-0.09033203,0.17382812,-0.13476562,0.05126953,0.125,0.15527344,-0.20800781,0.07421875,0.05810547,-0.1328125,0.06225586,0.0030822754,0.022583008,-0.042236328,-0.010131836,-0.16992188,-0.2421875,0.087890625,0.14746094,0.16699219,0.16699219,-0.071777344,-0.022949219,-0.068847656,0.12402344,0.09472656,-0.029663086,-0.004425049,-0.10546875,0.03466797,-0.27734375,0.03466797,0.08203125,-0.22851562,-0.049804688,0.0390625,0.08984375,-0.15625,0.115234375,-0.072265625,0.023071289,0.095214844,0.048095703,-0.009521484,0.050048828,-0.20996094,-0.29101562,0.017822266,0.11279297,-0.032958984,-0.10058594,0.17285156,-0.123046875,0.17089844,-0.0028076172,-0.08300781,0.059326172,0.12988281,-0.05029297,0.095703125,0.10595703,0.10546875,-0.12988281,0.16894531,0.17089844,0.06640625,-0.1796875,0.06982422,0.12695312,-0.030395508,-0.28125,-0.030151367,-0.092285156,-0.04345703,0.12890625,0.13085938,0.0625,-0.115722656,-0.06640625,0.11230469,0.045654297,0.15234375,-0.27734375,0.059814453,0.092285156,-0.15332031,-0.034423828,0.032958984,-0.015258789,0.16699219,0.048339844,-0.087402344,0.037109375,0.030517578,0.10644531,0.023803711,-0.027954102,0.10107422,0.14550781,0.125,0.17089844,-0.030517578,-0.0051574707,0.006378174,0.119628906,0.10058594,0.04638672,0.040527344,0.32226562,0.13671875,0.038085938,-0.032714844,0.100097656,0.100097656,-0.10449219,0.13867188,0.00037193298,0.05102539,0.057373047,-0.041748047,-0.051757812,0.12988281,-0.26171875,0.11669922,0.00680542,0.012329102,0.05029297,-0.29492188,-0.19433594,-0.036865234,-0.092285156,0.029907227,-0.14746094,-0.08691406,0.092285156,-0.023925781,-0.030273438,0.125,-0.3125,0.11279297,0.03955078,0.05126953,-0.15136719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.060058594,-0.045166016,0.041992188,0.06298828,0.19628906,-0.15234375,-0.05834961,0.025634766,0.0703125,0.09667969,-0.203125,0.06738281,-0.16894531,-0.13574219,0.10986328,-0.08105469,-0.14453125,-0.10595703,0.13867188,-0.017578125,0.21484375,-0.036132812,-0.046142578,-0.1328125,0.01184082,-0.004425049,-0.011352539,0.059326172,0.08642578,-0.11816406,-0.050048828,-0.22558594,-0.028076172,-0.047851562,0.19628906,-0.15429688,0.10058594,-0.06298828,-0.06933594,-0.06933594,0.042236328,-0.13085938,-0.06933594,0.09082031,0.14257812,0.013000488,-0.03515625,-0.0546875,-0.06640625,-0.064941406,0.16699219,0.06689453,0.20117188,0.049560547,-0.1015625,-0.15429688,-0.07910156,-0.028320312,-0.08691406,0.014770508,-0.003616333,0.05029297,-0.067871094,-0.15722656,-0.032714844,0.11328125,0.14941406,0.14941406,0.23828125,0.000957489,-0.19824219,0.030395508,-0.115234375,0.06542969,0.0077209473,0.08886719,0.060791016,-0.08105469,-0.041748047,-0.072753906,-0.033447266,0.10644531,0.10595703,0.078125,0.19433594,-0.01373291,0.100097656,-0.052978516,-0.05810547,-0.07910156,-0.13378906,-0.096191406,0.079589844,-0.06689453,-0.021240234,-0.0057678223,0.06591797,0.0008773804,0.0146484375,0.095214844,0.2265625,-0.0051574707,0.24414062,0.029052734,-0.01586914,0.09667969,-0.008972168,-0.015563965,0.140625,0.21484375,0.030151367,-0.038330078,0.032226562,0.06542969,-0.009277344,-0.1328125,0.10449219,-0.068847656,0.21386719,-0.13867188,-0.052246094,-0.0076293945,-0.056396484,0.030395508,0.045410156,0.026977539,-0.014343262,0.06738281,-0.08642578,0.09326172,-0.07324219,-0.12060547,0.07470703,-0.05078125,-0.048583984,-0.13574219,-0.13183594,-0.00793457,0.017211914,-0.032226562,-0.08496094,-0.021728516,-0.064941406,0.114746094,0.0018081665,0.041503906,0.010681152,-0.009460449,0.1953125,0.059326172,-0.048583984,0.056152344,0.14746094,-0.103027344,0.08251953,0.08984375,-0.09667969,0.14746094,-0.2265625,-0.018920898,0.030761719,-0.12011719,0.06640625,0.072753906,0.091308594,0.080566406,0.12792969,-0.03149414,-0.109375,-0.059814453,0.10205078,0.0063476562,0.044189453,-0.01373291,0.13867188,0.04663086,-0.061279297,-0.21386719,0.056396484,0.08251953,0.125,-0.072265625,-0.18066406,-0.030639648,-0.17285156,-0.03857422,0.08691406,-0.1328125,0.019042969,0.064941406,-0.022949219,-0.03857422,-0.00970459,0.26757812,-0.03857422,-0.061767578,0.19238281,-0.04663086,-0.025878906,0.13671875,-0.064941406,0.044677734,-0.014953613,0.122558594,0.038085938,0.22070312,0.11425781,0.12158203,0.10498047,0.25195312,-0.046875,-0.08496094,0.15527344,-0.063964844,-0.030883789,-0.040527344,0.028686523,0.06982422,0.029052734,-0.047607422,-0.052001953,0.087890625,-0.19238281,0.19238281,0.13378906,-0.13769531,-0.061035156,-0.06640625,0.140625,0.020751953,0.015075684,0.0033874512,0.13964844,-0.07910156,0.05102539,-0.12402344,-0.04248047,0.083496094,-0.15722656,0.052734375,-0.060791016,-0.048583984,0.042236328,-0.06225586,-0.18164062,-0.049316406,-0.09667969,-0.080078125,-0.16015625,-0.0546875,0.002090454,0.010375977,-0.0703125,-0.06591797,0.1015625,0.06591797,0.091796875,-0.08642578,0.08203125,0.035888672,0.061279297,-0.03930664,-0.044921875,0.053710938,-0.0067443848,-0.07763672,0.07861328,0.09082031,0.01586914,0.056884766,0.11767578,0.06347656,0.026245117,0.15820312,0.056884766,0.109375,0.21484375,-0.14941406,0.022949219,0.05493164,-0.10839844,0.029052734,0.14453125,0.11376953,-0.032714844,0.22949219,0.037353516,0.1484375,-0.0047302246,-0.015136719,-0.064453125,0.044433594,-0.052490234,-0.45507812,-0.033203125,0.07763672,0.032226562,0.042236328,-0.1015625,0.114746094,-0.10986328,0.13574219,0.13183594,0.059814453,0.057617188,-0.047851562,0.07763672,0.01574707,0.056396484,-0.19628906,0.11279297,-0.0064086914,-0.14550781,0.053466797,0.111328125,0.05834961,-0.0017089844,0.15332031,-0.014892578,0.115722656,-0.41796875,-0.0703125,0.16699219,-0.08886719,-0.12890625,-0.27929688,0.19628906,-0.14550781,-0.049804688,-0.1796875,-0.028686523,-0.1640625,0.14648438,0.02746582,0.21875,-0.06738281,-0.01586914,-0.10888672,0.16113281,0.076660156,-0.029052734,-0.08984375,0.04272461,-0.003692627,-0.048583984,-0.0028381348,-0.044433594,-0.038330078,0.27539062,0.17871094,0.1640625,0.07080078,-0.012145996,-0.036132812,0.09326172,0.07080078,-0.09765625,0.060546875,-0.15234375,0.11621094,-0.06933594,-0.092285156,-0.087402344,-0.14257812,0.15917969,0.068359375,0.16894531,0.076171875,0.011169434,-0.052490234,0.19335938,0.12109375,-0.27539062,0.09716797,-0.0703125,0.23925781,-0.12597656,-0.023071289,-0.11816406,-0.010681152,0.19335938,0.07421875,0.19824219,0.05029297,-0.11816406,-0.0050354004,0.06201172,-0.06689453,-0.022827148,-0.234375,0.030395508,0.096191406,0.052246094,-0.16796875,-0.09814453,-0.041992188,0.35351562,0.0047302246,0.00022888184,0.10205078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.049316406,-0.22167969,-0.07324219,-0.08105469,-0.08984375,-0.091308594,-0.076171875,-0.13964844,-0.044921875,0.111328125,-0.061523438,0.10253906,0.08544922,-0.09863281,-0.04321289,0.15820312,0.05883789,0.13671875,-0.23828125,-0.100097656,-0.1484375,-0.095214844,0.12402344,0.079589844,0.06738281,0.14550781,0.022705078,-0.033203125,0.039794922,-0.25585938,-0.12792969,0.05493164,-0.049072266,0.013671875,-0.25585938,-0.22070312,0.045410156,0.044921875,-0.14453125,0.08105469,0.05444336,-0.004180908,-0.03466797,0.15625,0.0234375,-0.01928711,-0.24804688,-0.08154297,-0.02746582,-0.08496094,-0.27148438,-0.14355469,-0.12011719,0.08203125,-0.13574219,0.11328125,0.067871094,0.040527344,0.041992188,-0.057861328,0.050048828,-0.099609375,-0.023925781,0.055664062,-0.039794922,-0.30664062,-0.034179688,-0.18164062,0.020019531,0.15136719,0.068359375,-0.125,0.01586914,-0.10888672,-0.07373047,-0.047851562,0.025756836,-0.041015625,-0.0154418945,-0.13867188,0.03564453,0.0095825195,-0.24902344,-0.08691406,0.04345703,-0.27148438,-0.045166016,0.09716797,-0.005065918,0.060791016,0.087402344,0.123046875,0.029907227,0.056640625,0.044433594,-0.012329102,0.016967773,-0.16308594,-0.13183594,-0.013977051,-0.07519531,-0.021484375,0.15722656,0.17773438,-0.123535156,0.078125,0.17773438,0.0859375,-0.057128906,-0.22265625,-0.004333496,0.017944336,-0.14160156,0.013122559,-0.19726562,-0.23242188,-0.13671875,-0.016967773,-0.002822876,0.07324219,-0.07519531,-0.07470703,-0.14355469,-0.052978516,-0.02758789,-0.033203125,-0.049316406,-0.026000977,0.017822266,0.068847656,-0.076660156,-0.106933594,-0.016967773,0.07080078,0.034179688,-0.13476562,0.033203125,0.1015625,0.13769531,0.17871094,0.16796875,0.10595703,-0.16796875,-0.038085938,0.0077209473,0.036376953,-0.0009536743,-0.119140625,0.19335938,0.11230469,-0.14941406,-0.06689453,0.07373047,0.072753906,0.095214844,-0.0003376007,0.072753906,0.028564453,0.20703125,0.0390625,-0.020507812,-0.13476562,0.049072266,0.028076172,-0.21875,0.118652344,0.067871094,0.10253906,0.08935547,0.12207031,-0.064453125,0.060546875,-0.026855469,-0.10986328,0.010070801,-0.12597656,0.061279297,-0.13183594,-0.14257812,0.026123047,-0.26757812,0.06738281,-0.0036468506,-0.110839844,0.096191406,0.059570312,-0.12109375,0.037109375,0.03881836,-0.08935547,-0.13378906,0.041748047,0.06982422,0.033691406,-0.119628906,-0.003768921,-0.28320312,-0.14257812,0.02746582,-0.17578125,0.061279297,-0.118652344,0.005126953,0.026489258,-0.12597656,-0.14257812,-0.27539062,0.056884766,-0.2109375,-0.026245117,-0.025878906,-0.024658203,0.15234375,-0.096191406,-0.107910156,-0.265625,-0.11669922,0.14941406,-0.08984375,0.084472656,0.057373047,0.083496094,-0.21679688,0.06982422,-0.14453125,0.123535156,-0.17871094,-0.19726562,-0.079589844,0.033691406,-0.13378906,-0.107421875,-0.040039062,0.1484375,0.020141602,-0.048828125,-0.052246094,0.16113281,0.103515625,0.14941406,-0.006652832,-0.35742188,-0.041503906,0.23632812,-0.041992188,0.095703125,-0.03100586,0.012145996,-0.076660156,-0.028198242,0.088378906,0.24121094,0.0126953125,-0.110839844,-0.052246094,-0.16796875,0.06591797,-0.08691406,-0.041992188,0.09423828,-0.16113281,0.103027344,0.12597656,0.18261719,-0.09472656,-0.103027344,0.0126953125,-0.04711914,-0.04711914,-0.13085938,-0.002105713,-0.171875,0.016601562,0.029418945,-0.080566406,-0.16308594,-0.14160156,-0.045654297,0.0703125,-0.11035156,0.02709961,-0.13183594,0.034423828,-0.09277344,0.043945312,-0.23925781,-0.27539062,0.04736328,-0.11816406,0.006072998,-0.016967773,-0.084472656,-0.25585938,-0.103027344,0.020874023,0.030517578,-0.030029297,0.09277344,0.020507812,0.053710938,0.05029297,-0.04663086,-0.11816406,0.06933594,-0.24804688,-0.34570312,-0.0029296875,-0.0017318726,-0.103027344,-0.02722168,0.078125,-0.05102539,0.099121094,0.050048828,0.064941406,-0.010070801,0.029663086,-0.10595703,-0.17089844,0.20117188,0.09326172,0.026855469,0.06542969,0.25390625,0.12792969,0.10644531,0.09814453,0.007019043,-0.07714844,-0.033935547,0.13183594,0.18652344,-0.12158203,-0.1328125,-0.046875,-0.10107422,-0.118652344,-0.006378174,-0.034179688,0.0703125,0.13476562,0.0053710938,-0.20898438,0.14550781,-0.09033203,-0.123046875,0.15527344,0.14257812,0.03466797,0.20605469,0.039794922,-0.10205078,0.053222656,0.14257812,-0.31640625,-0.26953125,-0.0061950684,-0.2265625,-0.012573242,-0.079589844,0.02722168,-0.13476562,0.12451172,0.011962891,0.045898438,-0.016357422,-0.1875,-0.18261719,-0.010986328,-0.12060547,-0.28125,-0.11425781,-0.1484375,0.0703125,0.075683594,-0.041503906,0.018066406,-0.18457031,0.049804688,-0.18554688,-0.078125,-0.046142578,-0.16992188,0.11621094,-0.14257812,-0.075683594,-0.107910156,-0.15625,-0.22363281,-0.04663086,-0.15625,-0.15332031,-0.059814453,-0.18457031,-0.0026245117,-0.009887695,0.052978516,0.053466797,-0.13769531,-0.0029449463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.19433594,0.007446289,-0.28125,-0.203125,-0.03540039,-0.087402344,0.1015625,-0.14160156,-0.07861328,0.06542969,0.041748047,-0.024291992,-0.0061950684,0.010437012,-0.028808594,-0.07080078,-0.171875,-0.114746094,-0.14355469,-0.20507812,-0.14550781,-0.0107421875,-0.11035156,0.0625,-0.0048217773,0.063964844,0.076171875,0.045898438,0.13476562,-0.1875,-0.047607422,-0.05029297,-0.034423828,-0.05419922,-0.072753906,-0.1640625,-0.08642578,-0.087890625,0.053466797,-0.21289062,0.0013580322,0.13574219,0.1875,-0.106933594,0.03955078,-0.14160156,0.06591797,-0.040527344,-0.067871094,-0.05859375,0.07763672,-0.030883789,-0.10058594,-0.037597656,-0.027954102,0.011047363,-0.047607422,-0.022583008,0.044433594,-0.022094727,0.10253906,-0.05078125,0.21972656,0.011779785,-0.084472656,0.060302734,-0.12792969,-0.39257812,-0.12597656,0.057861328,-0.055908203,-0.036132812,-0.09667969,0.171875,-0.08935547,-0.123535156,-0.0546875,-0.063964844,-0.064453125,-0.080078125,-0.15429688,-0.021972656,-0.38085938,-0.25,-0.16992188,-0.15429688,0.035888672,-0.17382812,0.02368164,-0.0013580322,-0.22070312,0.03173828,0.24023438,-0.09667969,-0.12988281,-0.12207031,-0.14160156,-0.10986328,0.05029297,-0.18359375,-0.010803223,-0.23632812,0.09765625,0.107421875,0.013061523,-0.010131836,0.060058594,-0.10888672,0.096191406,-0.071777344,-0.014099121,-0.03515625,-0.07714844,-0.13574219,0.025756836,0.01159668,-0.018676758,-0.016357422,-0.00033569336,0.12207031,-0.057128906,-0.02319336,0.099609375,-0.107421875,0.25195312,-0.109375,0.072753906,-0.111328125,0.111816406,-0.10595703,0.22265625,-0.037841797,0.014831543,-0.14257812,-0.050048828,0.052734375,0.095703125,-0.0077209473,-0.1875,0.037841797,0.03857422,-0.18652344,-0.115234375,0.0107421875,-0.11425781,0.17773438,-0.18359375,-0.125,-0.036132812,-0.09423828,0.09033203,0.00064086914,-0.04296875,0.01965332,0.106933594,-0.19140625,-0.03125,-0.10644531,0.26367188,-0.052490234,0.05810547,0.009765625,-0.12597656,-0.1015625,-0.11669922,-0.03491211,-0.040527344,0.003189087,-0.10107422,0.33789062,-0.14160156,0.140625,0.06298828,0.15429688,-0.06347656,-0.16601562,-0.006378174,-0.05517578,-0.03491211,-0.092285156,-0.06347656,-0.15332031,0.053710938,-0.0029144287,0.08300781,0.014709473,0.076171875,0.0107421875,0.23046875,-0.052246094,-0.110839844,-0.118652344,-0.04296875,-0.0019836426,0.048828125,-0.17578125,0.13183594,-0.022094727,0.27148438,-0.09472656,-0.05908203,0.055419922,0.16015625,0.056640625,0.16210938,-0.045166016,-0.061035156,-0.14941406,0.018798828,0.12890625,-0.09472656,0.122558594,0.17480469,0.048339844,0.052001953,-0.068847656,-0.024414062,-0.009155273,0.11230469,0.19238281,0.20800781,-0.08251953,-0.08642578,-0.09423828,-0.08984375,-0.017822266,-0.07714844,0.05126953,-0.110839844,-0.08154297,-0.052001953,0.2109375,-0.052978516,-0.16308594,0.19042969,0.031982422,-0.05859375,-0.007659912,-0.040527344,-0.19335938,-0.17382812,0.021850586,-0.12451172,-0.17480469,-0.068847656,0.20019531,0.10595703,-0.08105469,-0.0071411133,-0.14160156,-0.092285156,0.05859375,-0.0015487671,0.20214844,0.18066406,0.024414062,-0.110839844,0.15429688,-0.084472656,-0.18847656,-0.13867188,0.15625,0.10498047,-0.024902344,-0.013793945,-0.023925781,0.08203125,-0.09765625,0.01928711,0.21972656,-0.14257812,0.07910156,-0.123046875,0.092285156,-0.21289062,-0.09814453,-0.1484375,0.036865234,-0.12451172,-0.14355469,-0.084472656,-0.034179688,-0.095214844,0.12060547,0.22070312,-0.095703125,0.032226562,0.12890625,-0.00592041,0.06298828,-0.0068969727,-0.13183594,0.011230469,0.048583984,-0.07324219,-0.19140625,-0.10058594,-0.064453125,0.029174805,-0.040771484,0.12695312,-0.08886719,-0.049560547,0.14648438,-0.068847656,0.13671875,-0.17382812,0.014099121,-0.3828125,0.064453125,-0.16601562,-0.052490234,0.057617188,-0.12158203,0.03955078,-0.068359375,-0.006591797,-0.07861328,0.10449219,0.12988281,0.015136719,0.07128906,-0.31835938,-0.019897461,-0.096191406,0.110839844,0.10058594,-0.20019531,0.100097656,0.10107422,0.011352539,-0.25976562,0.040771484,0.16503906,-0.11425781,0.17480469,-0.04736328,-0.010559082,-0.19335938,-0.012023926,-0.028320312,0.14746094,0.25390625,0.048339844,0.040527344,-0.0042419434,-0.140625,-0.20996094,0.053466797,0.1953125,-0.2890625,0.18847656,-0.010620117,-0.053710938,-0.079589844,-0.20117188,-0.1484375,0.20898438,0.095703125,-0.08642578,-0.024291992,0.06738281,0.041015625,-0.13378906,-0.10888672,-0.119628906,-0.27734375,0.04711914,0.030639648,0.056396484,-0.13964844,-0.18066406,-0.23144531,-0.044433594,-0.06591797,0.05444336,0.004119873,0.0033874512,0.11767578,0.055908203,-0.012084961,0.03100586,-0.20800781,0.028686523,0.111328125,0.061523438,-0.055908203,0.096191406,-0.13574219,0.1953125,-0.123535156,0.072753906,0.080078125,0.16015625,0.07324219,0.19726562,-0.06225586,0.21582031,-0.17578125,0.013671875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.011108398,0.034423828,0.068847656,0.021484375,-0.14453125,-0.15136719,0.16308594,-0.1484375,0.0024261475,0.11425781,-0.034423828,0.076171875,-0.07470703,0.064453125,0.078125,0.07080078,-0.11816406,0.111816406,0.15039062,-0.06591797,-0.13574219,0.0625,0.008300781,-0.15820312,0.08984375,-0.045898438,0.04272461,0.15625,-0.11767578,-0.040527344,0.13574219,-0.110839844,-0.012878418,0.053955078,0.22851562,-0.18945312,-0.17675781,-0.083496094,-0.24902344,-0.16308594,-0.026367188,0.11279297,-0.10888672,0.0015869141,-0.067871094,-0.22949219,0.052734375,0.019165039,-0.03149414,0.0078125,0.12597656,-0.07763672,-0.075683594,0.21582031,-0.13183594,-0.09472656,-0.10644531,0.030029297,-0.033691406,0.083496094,0.032470703,0.12109375,-0.01977539,0.107910156,-0.22363281,0.15136719,0.1796875,-0.004119873,-0.1328125,-0.06982422,-0.063964844,-0.18945312,0.111328125,0.17285156,-0.26953125,-0.07519531,-0.13378906,-0.17480469,0.048583984,0.10986328,-0.01965332,0.07373047,-0.039794922,0.091796875,-0.109375,0.1328125,-0.17675781,-0.15429688,0.043701172,0.061279297,-0.091796875,0.123535156,0.011413574,-0.040039062,-0.109375,-0.3515625,0.12060547,0.10253906,-0.014770508,-0.203125,0.088378906,0.20898438,-0.013671875,-0.27539062,0.016113281,0.024658203,0.1328125,0.10058594,0.012939453,0.05493164,-0.09326172,-0.18066406,0.12890625,-0.04711914,0.049316406,-0.20507812,0.19140625,-0.02709961,0.08203125,0.08154297,-0.012268066,-0.115722656,-0.12060547,0.005432129,-0.049316406,-0.0015258789,-0.0010070801,-0.24902344,0.036865234,0.045654297,0.052734375,-0.30664062,0.24511719,-0.11376953,0.0047912598,-0.040039062,0.00970459,0.051513672,-0.18945312,0.080566406,-0.03881836,0.049560547,0.041992188,-0.076660156,-0.13964844,0.067871094,0.014404297,-0.18261719,-0.053710938,-0.045166016,-0.11669922,-0.36914062,-0.12597656,-0.076171875,-0.059326172,-0.0625,-0.16894531,0.0023956299,-0.041748047,0.071777344,-0.057617188,-0.04272461,-0.0029144287,-0.16503906,-0.15332031,-0.05810547,-0.1875,-0.0074157715,-0.11425781,-0.12695312,0.0024261475,-0.07080078,-0.24023438,-0.09326172,0.06591797,0.028686523,0.18164062,0.060546875,0.09033203,0.05834961,0.028076172,0.033935547,-0.24316406,-0.33789062,-0.016967773,-0.15820312,-0.123535156,-0.010375977,-0.08300781,0.118652344,0.03125,-0.12890625,0.017089844,0.052490234,-0.05078125,0.12451172,0.16992188,0.006378174,-0.15136719,-0.13183594,0.1015625,-0.061035156,-0.15234375,0.123535156,-0.15136719,-0.010803223,-0.030761719,-0.25585938,0.072265625,-0.13085938,0.13085938,-0.12695312,0.20800781,0.05078125,0.18945312,0.023071289,-0.06640625,-0.018310547,-0.031982422,0.10058594,-0.21386719,-0.19921875,-0.12695312,-0.060546875,0.0134887695,0.06591797,-0.03930664,-0.15234375,0.04296875,0.24414062,-0.038085938,-0.10498047,0.084472656,-0.028686523,-0.12597656,0.0859375,-0.18164062,-0.060546875,-0.21679688,-0.11425781,0.0078125,-0.29296875,-0.22460938,-0.004547119,0.1484375,-0.006652832,0.021484375,-0.040283203,-0.08300781,0.0546875,0.02368164,0.008422852,-0.012817383,-0.06640625,0.03125,-0.13574219,-0.011108398,-0.08203125,-0.003540039,0.19433594,-0.040771484,0.045166016,-0.041992188,0.09667969,0.103027344,-0.009521484,-0.14355469,0.048828125,-0.018920898,-0.040771484,-0.012634277,-0.14453125,0.03540039,-0.1484375,0.053710938,0.088378906,-0.034179688,-0.043945312,-0.031982422,0.049316406,-0.118652344,0.107421875,0.041992188,0.088378906,-0.05517578,0.046875,0.09277344,0.014709473,0.25,-0.10058594,0.14648438,0.12792969,-0.04321289,-0.18457031,-0.12158203,-0.09765625,0.09765625,-0.048095703,-0.12792969,0.1171875,-0.025878906,-0.05859375,0.17382812,0.040283203,0.1640625,0.12597656,0.078125,-0.05810547,-0.19335938,-0.07763672,0.08300781,-0.083496094,-0.015625,0.004699707,-0.140625,0.063964844,-0.080566406,0.20214844,0.064453125,-0.002090454,-0.14941406,-0.09472656,-0.05859375,-0.03100586,-0.07373047,0.22265625,-0.125,0.032226562,0.08935547,0.087890625,0.11816406,-0.03540039,-0.026489258,-0.04663086,-0.004211426,-0.19140625,-0.111328125,-0.07861328,-0.13183594,0.048828125,-0.051513672,-0.045654297,-0.057861328,-0.10058594,-0.08203125,-0.026855469,0.19238281,-0.0859375,0.21972656,0.029785156,-0.010131836,-0.10644531,-0.122558594,-0.123046875,-0.0703125,-0.006134033,-0.14257812,-0.07080078,0.026855469,0.030639648,0.080078125,0.06982422,0.060546875,-0.023071289,0.15332031,0.024291992,0.024291992,-0.100097656,-0.049804688,-0.03955078,0.027832031,-0.061035156,-0.088378906,0.041748047,-0.0023498535,0.0546875,0.043701172,0.061767578,-0.008544922,0.037841797,0.15332031,0.06591797,-0.12451172,0.033203125,0.107421875,0.076171875,0.09765625,-0.0072021484,-0.21777344,0.029541016,0.022094727,0.08886719,0.021728516,-0.15234375,-0.083984375,0.20214844,-0.11425781,0.123046875,-0.1640625,0.14355469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.10449219,-0.079589844,-0.11035156,0.009338379,-0.1796875,-0.12597656,0.012207031,0.22265625,0.016845703,0.09375,0.13574219,-0.026123047,-0.014953613,0.13574219,-0.05493164,0.08300781,-0.0005531311,0.1328125,-0.110839844,-0.010375977,-0.06201172,0.095214844,0.08935547,0.091308594,-0.01965332,-0.03955078,0.104003906,-0.26367188,-0.050048828,0.20507812,0.26953125,0.10205078,0.25,-0.076660156,0.034179688,-0.026367188,-0.025756836,-0.24902344,0.09765625,-0.020996094,-0.03515625,0.003036499,-0.115722656,0.053222656,-0.00010061264,0.003967285,0.030395508,0.05029297,0.110839844,-0.053222656,0.012023926,0.007873535,-0.1015625,-0.1015625,0.10253906,0.103027344,-0.01977539,-0.006011963,-0.043701172,0.05102539,-0.07861328,0.25585938,-0.03149414,-0.265625,0.049804688,-0.006164551,0.12890625,-0.0072631836,0.27148438,0.012329102,0.09326172,0.26171875,-0.012878418,0.14941406,-0.29296875,0.111816406,-0.045654297,0.47070312,0.033203125,-0.23730469,0.009033203,-0.19042969,-0.15039062,0.07373047,0.079589844,0.115722656,-0.014770508,0.041992188,0.026245117,-0.045166016,-0.012756348,-0.06591797,0.0053100586,0.002746582,-0.00063705444,-0.041503906,0.07714844,-0.056640625,0.021972656,-0.040283203,0.12109375,-0.041503906,0.012939453,-0.18457031,-0.044433594,-0.24316406,0.17382812,-0.12011719,-0.12695312,0.017700195,-0.012817383,0.0625,0.021606445,-0.06738281,-0.13183594,-0.14941406,-0.16601562,0.09472656,-0.068847656,0.10107422,0.005645752,-0.16796875,0.008361816,-0.05908203,0.05493164,0.027709961,0.020019531,0.067871094,-0.19042969,0.14160156,-0.00062942505,-0.15625,-0.10253906,0.10888672,0.078125,0.080566406,-0.046142578,-0.07861328,-0.037353516,0.051513672,-0.027832031,-0.017578125,-0.08691406,-0.072753906,-0.02734375,-0.030029297,0.19042969,0.2578125,0.1875,-0.033203125,0.06298828,-0.1796875,0.06933594,0.079589844,-0.022094727,-0.36914062,0.08300781,0.061279297,0.1328125,-0.10986328,-0.07519531,-0.099609375,-0.09082031,0.076660156,0.27539062,0.08642578,0.07519531,-0.08300781,-0.056884766,-0.057617188,0.038085938,-0.026245117,-0.09082031,0.12988281,-0.03491211,-0.030029297,0.022583008,-0.13671875,-0.06933594,0.110839844,-0.0042419434,-0.07861328,-0.17871094,0.13574219,-0.00793457,-0.16601562,-0.08251953,-0.026367188,-0.07861328,-0.15039062,0.09814453,0.068847656,0.041503906,0.107910156,0.087402344,-0.076171875,-0.055419922,-0.115234375,-0.2578125,-0.045898438,0.021850586,-0.18066406,0.14453125,0.05517578,0.13671875,0.072265625,-0.111816406,-0.055664062,-0.14453125,0.15136719,0.021606445,-0.052978516,-0.12207031,0.106933594,-0.296875,-0.068847656,0.013671875,0.022094727,-0.17675781,-0.03491211,0.13378906,-0.15136719,0.05053711,-0.021728516,0.12597656,-0.07421875,0.040527344,0.13183594,-0.0077209473,-0.328125,0.076660156,-0.07470703,-0.008056641,0.0039978027,0.0119018555,-0.13085938,0.042236328,0.007659912,-0.14746094,-0.103027344,-0.16015625,0.060302734,0.032714844,0.03466797,0.18554688,-0.119140625,-0.03515625,0.01940918,0.08105469,-0.21972656,0.059326172,-0.21582031,0.0061950684,0.099121094,0.037353516,0.072753906,0.24316406,0.0546875,0.048583984,0.072265625,-0.03881836,-0.033935547,-0.0047302246,-0.16015625,-0.0020599365,-0.024902344,-0.10595703,-0.068359375,0.02722168,0.06347656,-0.14160156,0.18164062,-0.088378906,0.12011719,0.049560547,-0.10498047,-0.23144531,0.16601562,-0.23339844,0.064941406,0.11035156,-0.15429688,-0.03125,0.14453125,-0.0087890625,-0.023803711,-0.11279297,0.072265625,-0.1875,0.03149414,0.03100586,0.064941406,-0.013427734,0.22070312,-0.2109375,-0.044921875,-0.053466797,-0.12597656,0.019042969,0.010864258,0.078125,-0.13476562,-0.045654297,0.0119018555,-0.13867188,0.114746094,0.24804688,0.1796875,0.060302734,-0.068847656,0.092285156,0.09716797,-0.019165039,0.022216797,-0.044433594,-0.23828125,-0.08935547,0.056152344,0.0390625,-0.09667969,0.08935547,-0.020751953,0.0099487305,0.033691406,-0.079589844,0.006225586,-0.018798828,0.061523438,-0.011291504,-0.29882812,-0.091796875,-0.15429688,-0.078125,-0.011169434,-0.0035858154,0.022949219,0.056152344,-0.08154297,-0.013244629,0.052246094,0.0019378662,0.14355469,-0.092285156,0.2109375,-0.021240234,-0.11035156,-0.011047363,0.032470703,0.080566406,-0.0018310547,-0.12597656,-0.048339844,-0.03930664,0.09033203,0.0027923584,-0.080078125,-0.13378906,-0.0058288574,-0.061035156,-0.026733398,0.10498047,-0.08203125,0.014343262,0.022216797,-0.05078125,0.28515625,-0.07080078,-0.13964844,-0.15527344,0.040771484,0.14453125,-0.037597656,-0.05883789,-0.21191406,-0.099121094,0.07519531,0.08886719,-0.14355469,0.22363281,0.033691406,-0.053955078,-0.056152344,0.12060547,-0.076660156,-0.11425781,0.17675781,0.15625,0.26367188,-0.08105469,-0.10058594,-0.03466797,0.0011978149,0.040771484,0.025634766,-0.17773438,0.13574219,-0.045898438,-0.018676758,-0.040283203,-0.07519531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15234375,-0.34960938,-0.099609375,-0.045898438,-0.24511719,0.28710938,-0.06347656,0.0134887695,-0.078125,-0.040527344,-0.072265625,-0.04345703,-0.09326172,-0.16796875,0.015991211,-0.027709961,-0.13671875,-0.35742188,-0.21386719,-0.004699707,-0.29101562,-0.12890625,-0.119140625,0.140625,0.08544922,-0.079589844,0.018310547,0.15332031,-0.05419922,-0.14550781,0.028686523,-0.087890625,0.08300781,-0.025390625,-0.08251953,-0.20117188,-0.028198242,-0.15820312,0.056884766,0.08154297,-0.023071289,-0.15332031,0.0087890625,0.125,-0.12109375,0.024169922,0.04272461,-0.17089844,0.04345703,0.10595703,-0.1484375,-0.22753906,0.021484375,0.18652344,0.02758789,0.15234375,-0.103515625,-0.15625,0.021728516,0.024658203,0.05078125,-0.017944336,0.049560547,-0.2578125,0.048828125,-0.1484375,-0.25976562,-0.17578125,0.044921875,-0.2578125,0.05029297,-0.12402344,0.032958984,-0.15625,-0.06201172,-0.09326172,0.016845703,-0.06591797,-0.021972656,-0.11621094,-0.3359375,0.07373047,-0.19140625,0.100097656,-0.23144531,-0.029541016,-0.044189453,0.15039062,0.04272461,-0.030395508,0.08203125,0.034179688,0.1015625,-0.09423828,-0.13769531,-0.0043945312,-0.1171875,0.033203125,-0.15820312,0.08935547,-0.05078125,-0.022949219,-0.04272461,0.0030517578,0.08642578,0.07763672,-0.09863281,0.052978516,0.017089844,-0.16699219,-0.13085938,-0.13378906,-0.0018920898,-0.0012207031,-0.13183594,-0.16601562,0.030761719,0.00078582764,-0.15429688,0.2421875,-0.091796875,0.030883789,-0.083984375,-0.11621094,-0.008605957,-0.09082031,0.18066406,-0.15234375,0.20117188,0.140625,-0.29492188,0.0079956055,0.11279297,0.36914062,-0.08642578,-0.03564453,-0.026611328,-0.036865234,0.12060547,-0.076171875,0.15039062,0.12792969,-0.007385254,0.038330078,-0.05053711,0.018066406,-0.2578125,-0.20117188,0.13867188,-0.14355469,-0.015319824,-0.14453125,0.092285156,0.049316406,-0.16503906,0.12158203,0.10253906,-0.046875,0.12402344,0.009155273,-0.12890625,-0.20703125,-0.19628906,0.056396484,-0.16503906,0.15136719,-0.088378906,-0.061279297,0.104003906,0.12109375,0.05859375,0.18457031,-0.01940918,0.01586914,0.078125,-0.044433594,-0.032958984,-0.1640625,-0.05029297,0.09863281,0.09326172,0.07080078,-0.09033203,0.014892578,-0.03930664,-0.0052490234,-0.030151367,-0.16015625,-0.08544922,0.008422852,-0.08154297,-0.03857422,-0.06689453,-0.21679688,0.0049438477,-0.06982422,-0.016967773,-0.059570312,-0.17871094,-0.11279297,0.028442383,0.03112793,0.010803223,-0.05493164,-0.047851562,-0.067871094,-0.09082031,-0.15429688,0.02758789,-0.044433594,-0.09277344,-0.015197754,-0.03515625,-0.0546875,-0.029296875,-0.07763672,-0.07373047,0.040771484,0.015136719,0.060302734,-0.08642578,-0.0077819824,-0.036865234,0.07373047,-0.05029297,0.004119873,-0.10839844,0.023925781,0.05517578,-0.14648438,-0.044189453,-0.13964844,-0.057128906,0.0058898926,0.037841797,0.19335938,0.029663086,-0.024536133,0.09423828,0.047607422,-0.16308594,-0.103027344,-0.20800781,0.08691406,0.19921875,0.07861328,-0.13085938,-0.23046875,0.088378906,0.010864258,0.09472656,-0.0146484375,0.17578125,0.15625,-0.13867188,0.10546875,0.16699219,-0.10205078,0.04638672,0.21777344,0.1171875,-0.037109375,0.15917969,-0.19921875,0.100097656,-0.064453125,-0.020874023,0.044921875,-0.071777344,0.05078125,-0.16308594,0.03125,-0.08300781,-0.04711914,0.010498047,-0.06591797,-0.04711914,-0.29101562,0.05126953,-0.083984375,0.013549805,0.09814453,0.043701172,0.026123047,0.016723633,-0.040527344,0.088378906,-0.22265625,0.016845703,-0.056640625,0.079589844,-0.006500244,0.0072631836,-0.061035156,-0.032958984,-0.0050354004,-0.09472656,0.040283203,-0.06347656,0.020874023,-0.080078125,0.0021514893,0.010009766,-0.083984375,-0.08251953,0.07910156,0.044921875,0.06591797,0.16601562,-0.07861328,-0.08203125,-0.14257812,0.03125,0.014709473,0.035888672,0.14746094,0.072265625,0.103515625,0.08105469,0.20214844,-0.24414062,-0.080078125,-0.25390625,-0.12890625,0.044433594,0.0546875,-0.061523438,-0.30859375,-0.019042969,-0.13671875,-0.18554688,-0.07714844,0.19433594,-0.118652344,-0.06225586,0.08886719,-0.3046875,-0.17871094,-0.012634277,0.053222656,0.09472656,0.140625,0.13183594,-0.19824219,-0.04638672,-0.14160156,-0.07324219,0.064453125,0.06542969,0.03173828,-0.048583984,-0.008605957,-0.171875,-0.13378906,0.07861328,-0.13671875,0.057617188,-0.053955078,-0.09375,0.17773438,0.010620117,-0.091308594,-0.08935547,0.076660156,0.075683594,0.03515625,-0.036865234,-0.014038086,0.042236328,-0.037109375,0.049072266,-0.04321289,0.119628906,-0.23828125,0.04663086,-0.024291992,0.09814453,-0.08544922,0.16894531,0.12988281,0.16210938,-0.08642578,0.0053100586,0.024536133,-0.20703125,0.048339844,0.056884766,0.10595703,0.103027344,0.007080078,0.017822266,0.068359375,-0.04638672,-0.013916016,0.0063476562,-0.0069274902,0.12207031,0.05517578,-0.12158203,-0.031982422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.24609375,0.10107422,0.03515625,0.015991211,-0.0034637451,-0.15820312,-0.08251953,-0.015319824,0.055664062,-0.09472656,-0.10107422,0.031982422,-0.068847656,0.076171875,-0.27148438,0.068359375,-0.09423828,-0.111816406,-0.056396484,-0.049316406,0.084472656,-0.11230469,0.09716797,-0.09814453,-0.061035156,0.08935547,-0.02734375,0.030273438,0.091308594,0.068847656,-0.016357422,0.07470703,-0.14257812,-0.111816406,0.005645752,-0.05810547,0.19042969,-0.052734375,-0.079589844,-0.00390625,-0.01550293,-0.07373047,-0.1015625,0.026855469,-0.19433594,0.14550781,0.08984375,-0.03857422,-0.09277344,0.11279297,-0.015563965,-0.091308594,0.12109375,-0.19140625,0.095214844,0.16992188,0.09375,0.033935547,0.03466797,0.025268555,0.08886719,0.16992188,0.052001953,0.05078125,0.01586914,-0.171875,0.08691406,-0.068359375,-0.032714844,-0.22265625,-0.15527344,-0.15234375,0.022583008,-0.16601562,-0.027832031,0.05444336,0.09033203,0.22851562,0.052734375,0.0859375,-0.12597656,0.044677734,0.19628906,-0.045410156,0.042236328,0.12988281,-0.10205078,0.072265625,-0.047851562,0.032958984,-0.014160156,0.053710938,-0.06933594,0.13085938,0.071777344,-0.08251953,-0.14355469,-0.05834961,0.056640625,0.0028839111,-0.1015625,-0.15332031,-0.03955078,-0.061035156,-0.12109375,0.055908203,-0.2109375,0.10986328,-0.012023926,0.017333984,0.16210938,0.008361816,-0.08105469,-0.012756348,0.006225586,-0.042236328,0.013549805,0.14257812,0.05517578,0.125,0.03955078,0.079589844,-0.06689453,-0.03100586,-0.016601562,0.0049743652,-0.18066406,0.09863281,0.13867188,0.22070312,0.040771484,0.045654297,-0.100097656,-0.19335938,0.06689453,0.05810547,0.033447266,-0.0065612793,0.047851562,0.0019073486,0.02709961,-0.18847656,-0.006866455,0.09033203,0.007873535,-0.08886719,0.078125,0.010864258,-0.104003906,-0.08691406,-0.07373047,0.080566406,-0.06225586,-0.018310547,-0.07763672,-0.067871094,-0.0017318726,-0.18457031,0.018798828,0.23046875,-0.011657715,0.037109375,0.1796875,0.071777344,-0.04296875,-0.30859375,-0.12060547,0.140625,-0.02758789,-0.016113281,-0.088378906,0.029052734,0.118652344,0.052001953,0.09472656,-0.096191406,-0.050048828,0.203125,0.09423828,-0.021728516,-0.028442383,0.17480469,0.17285156,-0.001411438,0.09472656,-0.038085938,-0.018676758,0.002456665,-0.04248047,0.10644531,0.2109375,0.032714844,-0.171875,-0.16796875,0.068847656,-0.040527344,0.052978516,0.26171875,0.087402344,0.020507812,0.096191406,-0.00390625,0.11328125,-0.0074157715,0.028320312,0.046142578,0.047607422,0.024414062,-0.06982422,0.049560547,0.05859375,0.06738281,0.095214844,-0.045166016,-0.022460938,0.063964844,-0.104003906,0.034179688,-0.15820312,-0.030883789,0.114746094,-0.04663086,-0.17285156,-0.14941406,-0.060302734,-0.14355469,0.08544922,0.09863281,-0.122558594,-0.095703125,0.20019531,0.08886719,-0.0079956055,-0.022216797,-0.043701172,-0.140625,-0.140625,0.17578125,-0.1640625,0.033203125,-0.06201172,-0.05419922,0.04638672,0.08886719,0.088378906,0.022460938,0.10253906,0.16699219,0.017944336,-0.10107422,0.13671875,-0.072265625,0.083984375,0.06542969,0.055664062,-0.09033203,-0.017578125,-0.030273438,-0.0035552979,-0.123535156,-0.11669922,0.24414062,0.09472656,0.09423828,0.07763672,-0.0040893555,0.010803223,0.064453125,-0.049072266,0.0049743652,0.021606445,-0.17480469,-0.032958984,0.05859375,-0.005126953,0.03881836,-0.08642578,-0.06542969,-0.10888672,0.09423828,0.030517578,-0.013000488,-0.10449219,0.029174805,0.07519531,-0.03930664,-0.030517578,-0.15332031,-0.107421875,-0.14941406,0.068847656,0.13964844,-0.21777344,-0.18847656,-0.03564453,0.020263672,0.1015625,-0.14648438,0.048339844,0.08154297,-0.057617188,0.033691406,-0.029296875,-0.14550781,0.076171875,-0.19238281,0.044189453,-0.006866455,-0.014587402,-0.068359375,-0.0025787354,0.110839844,-0.083496094,0.015563965,-0.21875,0.07519531,-0.030029297,-0.03540039,-0.15429688,-0.14355469,-0.047607422,-0.22363281,-0.10498047,0.13085938,-0.20605469,0.15527344,0.045898438,-0.06347656,0.041503906,0.10498047,0.14453125,0.030639648,0.030639648,-0.23144531,0.049316406,0.11767578,-0.18066406,-0.125,-0.14453125,0.026489258,-0.1796875,-0.03491211,-0.22265625,-0.0008621216,0.11621094,-0.04296875,0.08691406,0.100097656,-0.00970459,-0.03955078,0.043945312,0.017700195,-0.16308594,0.17675781,-0.21875,0.032714844,-0.20507812,-0.17480469,0.08544922,-0.1171875,0.08300781,-0.03515625,-0.011108398,0.14648438,-0.008911133,-0.22070312,0.14648438,0.06738281,-0.18554688,0.099609375,-0.19628906,0.022827148,-0.25585938,-0.10058594,-0.08203125,-0.14453125,-0.099609375,0.049072266,-0.20019531,0.063964844,-0.037353516,-0.012268066,0.053710938,0.033203125,-0.07080078,0.203125,-0.07128906,0.055419922,-0.19238281,-0.03491211,0.049316406,0.0099487305,-0.076660156,-0.05444336,-0.024780273,0.17285156,-0.099609375,0.022216797,0.091796875,0.15136719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.359375,-0.048828125,-0.076660156,0.16210938,0.020019531,0.008178711,-0.10253906,0.14257812,-0.0037384033,0.021484375,-0.11376953,-0.21875,0.109375,0.16992188,-0.30664062,0.010986328,-0.099609375,0.03149414,0.12207031,0.064941406,-0.10449219,0.22558594,0.091796875,0.1875,-0.08691406,0.122558594,-0.03466797,0.13964844,0.061279297,0.11328125,-0.1875,-0.17089844,-0.00046920776,-0.091308594,0.08154297,0.07714844,0.047607422,0.007873535,0.03491211,0.021484375,0.17089844,-0.06542969,0.09716797,-0.09863281,0.14355469,-0.05102539,-0.042236328,-0.26953125,0.125,-0.19140625,0.12158203,-0.051513672,0.05883789,0.111816406,-0.017211914,0.072753906,0.057861328,0.06298828,0.14746094,0.1640625,0.25,0.039794922,-0.040527344,0.015258789,-0.048095703,-0.17480469,0.27539062,-0.09326172,0.12792969,-0.15234375,0.14355469,0.10888672,0.051757812,0.04736328,-0.21289062,0.23535156,0.048339844,0.07714844,0.15429688,-0.084472656,-0.52734375,-0.14257812,-0.06982422,0.13476562,-0.22167969,-0.072753906,-0.14160156,-0.055419922,0.072753906,-0.038330078,0.040283203,-0.27539062,0.092285156,-0.08251953,0.02355957,0.19433594,-0.076660156,-0.07324219,0.026245117,0.052978516,-0.049804688,0.05126953,0.002960205,-0.018676758,-0.00680542,0.21191406,-0.08251953,0.026611328,0.107421875,-0.03149414,0.026000977,0.005493164,0.022827148,-0.087890625,0.087402344,-0.033447266,0.16796875,0.050048828,0.0076904297,-0.022460938,-0.15039062,0.03149414,0.07421875,0.04736328,0.091308594,-0.1328125,-0.053710938,-0.16796875,0.08691406,0.079589844,0.27929688,-0.029296875,0.09667969,0.057373047,0.064941406,0.010070801,-0.080078125,0.16308594,0.09667969,-0.0008773804,0.048828125,0.06225586,-0.12988281,-0.037109375,0.083984375,0.1875,0.16113281,-0.047607422,-0.022094727,0.046142578,-0.047607422,-0.14160156,0.015563965,0.005584717,-0.13574219,0.1796875,0.0087890625,0.14550781,0.22363281,0.1953125,-0.2421875,0.1640625,0.068847656,-0.053222656,-0.20214844,-0.20898438,0.08886719,-0.30664062,0.07714844,-0.20214844,0.014099121,0.13085938,0.068847656,-0.13867188,-0.040283203,0.01965332,-0.088378906,-0.0078125,0.06640625,0.14746094,-0.103515625,0.024169922,-0.17285156,-0.16210938,0.07861328,-0.071777344,0.17285156,-0.031982422,0.1796875,-0.125,0.061035156,-0.0041503906,-0.13671875,-0.012573242,-0.02746582,0.099121094,0.001953125,0.083984375,-0.31835938,-0.14550781,-0.007507324,-0.059570312,0.033935547,-0.13085938,-0.09863281,-0.034423828,-0.09765625,0.111328125,-0.04736328,0.171875,0.080078125,0.067871094,0.07373047,-0.1328125,0.203125,0.16503906,0.13574219,-0.1015625,0.14257812,-0.09277344,-0.028198242,0.0625,0.15136719,-0.025390625,-0.0058898926,0.2421875,0.05078125,-0.007659912,0.14550781,-0.02722168,-0.030151367,0.07470703,0.13964844,0.035888672,-0.12695312,0.11816406,-0.040039062,0.05859375,-0.03515625,0.055419922,-0.12158203,0.123535156,-0.04711914,0.04248047,-0.23339844,0.15722656,0.20996094,-0.21582031,0.12207031,-0.33398438,0.21777344,0.18652344,-0.078125,0.025512695,0.08203125,-0.15039062,-0.05078125,-0.0859375,0.051757812,-0.072753906,-0.15820312,-0.03125,0.21289062,0.07910156,-0.07714844,-0.14941406,0.084472656,0.061035156,0.07421875,0.08154297,-0.080078125,-0.036621094,-0.064453125,-0.08251953,0.057128906,0.027709961,-0.012878418,0.13085938,-0.20214844,-0.23535156,0.011779785,-0.09082031,0.18652344,0.023925781,0.064941406,-0.14941406,0.013305664,-0.012023926,-0.13867188,0.22558594,-0.033691406,-0.028564453,0.007659912,0.006652832,0.0009918213,-0.078125,0.03149414,-0.0010528564,-0.13671875,-0.22460938,-0.03125,0.05419922,0.09326172,0.060546875,-0.20117188,0.36523438,-0.12597656,-0.027832031,0.11816406,0.14257812,-0.0070495605,0.08691406,-0.00049209595,0.0625,-0.13378906,0.055419922,-0.06738281,-0.09082031,0.19921875,0.015197754,-0.26757812,0.14941406,-0.12695312,-0.16210938,-0.049316406,0.21679688,-0.34570312,-0.22460938,0.18359375,-0.14941406,-0.23144531,0.13964844,0.060791016,-0.052734375,-0.13476562,-0.078125,-0.01940918,-0.11230469,-0.18359375,-0.14648438,-0.09082031,-0.057373047,-0.060058594,-0.31445312,0.01361084,-0.010314941,0.005065918,-0.030273438,0.051757812,-0.15625,-0.09277344,0.06689453,0.119628906,0.029296875,-0.10644531,0.022949219,-0.25585938,0.06640625,-0.16992188,-0.17675781,0.15429688,-0.12158203,0.044433594,-0.11621094,0.19921875,0.123535156,-0.26367188,0.13769531,0.104003906,-0.11328125,-0.087890625,0.0014801025,0.043701172,-0.08642578,-0.12207031,-0.06347656,-0.061523438,0.029907227,-0.08105469,-0.18457031,0.07763672,0.023925781,0.16015625,-0.0073547363,-0.14355469,0.16503906,-0.14746094,0.17871094,-0.03149414,-0.083496094,0.15527344,0.010925293,0.040527344,-0.21582031,0.025634766,-0.06738281,-0.052001953,0.099609375,0.026123047,-0.09326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.123535156,0.10595703,0.045166016,-0.19140625,-0.020751953,0.16210938,0.08691406,0.19140625,0.1015625,0.12158203,0.019165039,-0.028930664,0.045410156,-0.24511719,0.12109375,-0.068359375,-0.017944336,-0.06298828,0.033447266,0.019165039,0.029541016,0.18457031,0.028442383,0.20703125,-0.026855469,-0.087402344,0.10644531,0.016479492,-0.037109375,-0.14257812,-0.16503906,0.17480469,0.10253906,-0.1875,-0.092285156,-0.15527344,-0.03149414,0.20605469,0.0009765625,-0.030761719,0.049316406,0.12011719,-0.024536133,-0.21484375,-0.0065612793,-0.10546875,0.11328125,0.022705078,-0.28515625,-0.033203125,-0.09326172,0.111328125,-0.04248047,0.036132812,0.05908203,-0.12890625,0.029907227,0.014038086,0.14453125,0.23144531,0.020751953,-0.08984375,-0.051513672,0.008422852,-0.14257812,0.049560547,-0.072753906,0.076660156,-0.08251953,-0.0546875,0.015258789,0.34375,-0.0078125,-0.06982422,0.07080078,-0.05444336,-0.06738281,-0.10498047,-0.11230469,0.009460449,0.076171875,0.15917969,-0.01586914,-0.14257812,-0.01965332,-0.06982422,-0.17675781,0.13964844,-0.037353516,0.0049438477,-0.19824219,0.055664062,-0.15625,-0.14648438,-0.08251953,0.05419922,-0.03955078,0.123046875,-0.26171875,0.071777344,-0.053710938,-0.07324219,0.07910156,0.051513672,0.061279297,0.07421875,-0.099609375,-0.050048828,-0.041748047,-0.31054688,-0.09033203,0.01953125,-0.20117188,-0.16699219,0.05810547,-0.19140625,-0.22265625,-0.11621094,-0.12695312,0.13671875,0.059570312,-0.14355469,0.19238281,-0.008850098,-0.060791016,-0.11669922,0.06298828,-0.17480469,-0.18066406,-0.115722656,-0.048339844,-0.17382812,0.024047852,0.064453125,-0.013916016,-0.021850586,0.012573242,0.0017700195,0.028198242,-0.0078125,0.016235352,-0.008300781,-0.14746094,-0.37890625,-0.049560547,-0.21875,-0.057373047,-0.009887695,-0.103515625,-0.10253906,-0.025024414,0.078125,-0.016113281,0.060058594,0.15917969,-0.123046875,0.060302734,-0.028442383,-0.13867188,0.06347656,-0.02722168,-0.15722656,-0.016235352,0.11376953,-0.053710938,0.0546875,0.03173828,0.06933594,0.03857422,0.060791016,-0.15625,-0.0390625,-0.072753906,-0.13085938,-0.030883789,0.06298828,-0.25390625,-0.11669922,0.0005493164,0.076171875,-0.021728516,-0.17578125,0.115722656,0.10644531,-0.07080078,-0.00579834,0.008728027,-0.06347656,-0.04272461,-0.06347656,-0.07714844,-0.16308594,-0.09033203,-0.12695312,-0.080566406,0.13574219,-0.079589844,-0.25585938,-0.072753906,0.10449219,9.250641e-05,0.083496094,0.0546875,0.0013809204,-0.064941406,0.09277344,0.060302734,0.080566406,-0.26171875,-0.026000977,-0.051757812,0.13183594,0.02319336,-0.038330078,-0.031982422,-0.011230469,0.04638672,-0.12109375,0.018432617,-0.020751953,0.012268066,0.046875,-0.06738281,-0.3359375,0.26953125,-0.171875,-0.22753906,0.03515625,0.122558594,-0.15625,0.00491333,-0.030395508,0.008361816,-0.125,-0.08935547,0.14160156,-0.09423828,0.06347656,-0.06298828,-0.2890625,-0.13378906,-0.10546875,-0.06640625,0.18359375,-0.057373047,-0.0003528595,-0.100097656,-0.19238281,-0.10839844,-0.01574707,0.014709473,0.123535156,-0.020019531,-0.053955078,-0.09423828,-0.08984375,-0.17382812,0.0010604858,0.08154297,-0.13085938,-0.07470703,-0.0005455017,-0.08105469,0.06640625,-0.029907227,-0.07714844,0.1015625,0.040771484,0.017456055,0.05029297,-0.03491211,-0.11376953,-0.17285156,0.02319336,-0.11621094,0.024902344,0.00041007996,0.008666992,-0.014099121,-0.025878906,0.067871094,0.015075684,-0.032470703,-0.06542969,-0.08935547,0.107421875,0.11621094,-0.044921875,-0.107910156,-0.13378906,-0.15429688,0.011352539,-0.020141602,-0.024780273,-0.072265625,0.04711914,0.1015625,-0.045166016,0.042236328,-0.024658203,-0.18652344,0.013061523,-0.087402344,-0.24707031,0.16796875,0.14160156,-0.15429688,0.055908203,-0.06542969,0.091308594,0.1171875,0.01940918,-0.052978516,0.09765625,0.053222656,0.15527344,-0.048339844,0.0077209473,0.15917969,-0.123535156,0.03125,-0.2890625,-0.07763672,-0.084472656,0.012939453,-0.03857422,0.03515625,-0.002090454,-0.060058594,0.0030517578,0.016113281,0.092285156,-0.08154297,0.051757812,-0.03491211,-0.27539062,-0.27148438,0.09375,0.045166016,0.103515625,-0.08496094,-0.0015335083,-0.12451172,-0.12988281,0.08886719,-0.11767578,0.011108398,0.03540039,0.08154297,0.104003906,-0.13964844,-0.05859375,-0.071777344,-0.35351562,-0.0075683594,0.041503906,-0.140625,-0.06933594,-0.06933594,0.10839844,0.080078125,0.056396484,0.12060547,0.047607422,-0.09716797,-0.099609375,-0.05126953,-0.11279297,-0.032958984,-0.07763672,0.28320312,-0.1640625,0.048583984,0.12158203,0.00037765503,0.15039062,0.033447266,-0.036865234,0.13378906,-0.008483887,-0.05078125,0.03955078,0.061279297,-0.2734375,-0.14941406,0.059814453,0.15332031,0.048339844,0.0071105957,0.056152344,0.044433594,0.024658203,0.0010070801,0.14941406,0.057861328,0.045898438,0.02319336,0.01184082,0.008728027,-0.390625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13476562,-0.064453125,0.1796875,-0.19726562,-0.020507812,-0.016845703,0.016113281,0.15429688,0.041503906,-0.16113281,-0.1640625,0.04663086,0.013366699,0.16015625,-0.072753906,-0.16015625,-0.13085938,-0.025512695,0.13183594,0.038085938,0.16796875,-0.04345703,-0.10205078,0.16601562,-0.03930664,-0.17773438,0.0138549805,0.18066406,-0.14453125,0.16113281,-0.033935547,-0.021118164,-0.19628906,-0.04345703,-0.029052734,-0.037109375,-0.026611328,0.036376953,-0.17382812,0.040527344,0.115722656,-0.056640625,0.2890625,0.14453125,0.014587402,0.171875,0.08544922,-0.12890625,-0.00340271,0.033447266,-0.111328125,-0.055908203,-0.05444336,-0.021362305,0.17382812,-0.23242188,0.12890625,0.0014953613,-0.091308594,-0.07373047,0.01928711,-0.09472656,0.051757812,-0.26367188,-0.22363281,0.032226562,-0.06298828,0.0390625,-0.20214844,-0.25195312,0.25976562,-0.125,-0.060058594,0.06689453,-0.16992188,-0.35546875,0.021972656,-0.14453125,-0.068359375,-0.11425781,-0.14941406,0.018798828,-0.03564453,-0.18164062,-0.0625,0.060302734,0.064941406,0.22558594,0.0046081543,-0.20800781,0.03515625,-0.029418945,-0.15917969,0.047607422,-0.109375,-0.12890625,0.05908203,0.006225586,0.021728516,-0.12792969,-0.016845703,0.0023345947,0.04638672,0.11669922,0.11425781,-0.15039062,-0.02331543,0.234375,-0.020019531,0.004058838,0.111328125,0.08154297,-0.055664062,0.20019531,0.033447266,-0.2265625,-0.015991211,-0.15527344,-0.075683594,0.015197754,-0.016845703,0.016113281,-0.008056641,0.11279297,0.033203125,0.16503906,0.171875,-0.31640625,0.13085938,0.25,0.048339844,0.15625,0.042236328,-0.12695312,-0.053222656,-0.027954102,0.04638672,-0.08935547,0.06738281,0.06591797,0.13964844,0.25976562,-0.02331543,-0.063964844,-0.04638672,0.10058594,-0.00680542,-0.02709961,-0.027709961,-0.12597656,0.15332031,-0.076171875,-0.10205078,0.018066406,-0.03149414,0.026977539,-0.09082031,0.13476562,-0.12207031,-0.17480469,-0.115234375,-0.15527344,-0.10888672,-0.076171875,-0.08642578,0.3125,0.15917969,0.083496094,-0.009643555,-0.17382812,-0.103515625,-0.09033203,-0.15234375,0.171875,0.053710938,-0.25195312,-0.0078125,-0.09667969,0.037841797,-0.20019531,-0.114746094,0.061523438,0.16113281,0.08251953,0.06347656,-0.06689453,0.14746094,-0.15820312,0.0087890625,0.07324219,0.0005302429,0.028564453,-0.04296875,0.17089844,-0.18847656,-0.16796875,-0.015380859,0.020019531,0.013183594,0.017822266,-0.08251953,-0.014770508,0.12890625,-0.009216309,-0.018676758,0.3046875,-0.061523438,-0.18652344,0.015625,-0.076171875,0.055664062,0.20019531,0.122558594,-0.11328125,-0.051757812,0.0034942627,-0.06640625,0.11669922,0.059814453,0.18945312,0.041992188,0.040283203,0.1796875,0.076171875,-0.056152344,0.12451172,0.13378906,-0.088378906,0.0859375,0.09277344,-0.19628906,-0.115234375,0.0154418945,0.041015625,0.08984375,0.1953125,-0.030151367,-0.008666992,0.12011719,-0.06201172,-0.045166016,-0.18652344,-0.19921875,-0.083984375,-0.13671875,0.06982422,0.06298828,-0.13671875,0.122558594,-0.21582031,0.007537842,-0.30078125,-0.03100586,0.01184082,0.13964844,-0.11767578,0.03515625,-0.011962891,-0.16601562,-0.140625,-0.14550781,0.0115356445,0.115234375,-0.010864258,0.14941406,-0.15332031,0.22070312,0.10205078,0.028442383,-0.012084961,-0.0546875,-0.042236328,-0.012268066,0.12988281,-0.22753906,-0.1484375,-0.10888672,-0.0022125244,0.02319336,0.1171875,0.05444336,-0.007446289,0.17578125,0.17285156,-0.0061950684,0.20996094,-0.083496094,-0.1640625,-0.099121094,-0.18164062,-0.22949219,-0.022583008,-0.03857422,0.025878906,0.13769531,-0.107421875,0.087402344,0.06298828,0.109375,-0.01940918,0.017211914,-0.10839844,0.06591797,-0.2109375,0.1015625,-0.025024414,-0.095214844,0.057128906,-0.17089844,-0.25976562,0.078125,0.119140625,-0.104003906,-0.08203125,-0.10644531,0.01159668,0.10107422,-0.09326172,-0.033935547,0.030883789,-0.25976562,-0.011962891,0.11230469,0.0390625,-0.14550781,-0.08886719,-0.045898438,-0.04711914,0.072265625,-0.115234375,0.140625,-0.265625,-0.18359375,0.016967773,0.03515625,0.096191406,0.091308594,0.029541016,-0.048339844,-0.1328125,0.16796875,-0.010314941,0.063964844,-0.030395508,0.00012874603,-0.12158203,-0.041259766,-0.08203125,-0.12158203,-0.015197754,0.234375,-0.16894531,-0.028808594,0.024902344,-0.09716797,-0.06225586,-0.234375,0.30664062,-0.075683594,0.22460938,0.05834961,-0.033203125,-0.05883789,0.010986328,0.080566406,0.0018005371,0.099121094,-0.2109375,-0.07861328,0.009887695,-0.060058594,-0.060546875,-0.05859375,0.011474609,-0.056396484,0.19140625,-0.056152344,-0.10107422,0.043701172,0.0054016113,-0.103027344,0.13378906,0.05053711,0.041748047,0.06201172,0.16308594,0.03173828,0.22558594,0.0703125,0.123535156,-0.022094727,-0.075683594,0.026123047,-0.10644531,-0.053955078,0.03857422,0.012145996,-0.068359375,0.16113281,-0.059326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.11376953,-0.064941406,-0.13574219,0.1171875,-0.032714844,0.07421875,-0.06347656,0.048828125,-0.020019531,0.07421875,-0.045654297,-0.18261719,-0.19042969,-0.08154297,-0.08300781,-0.018066406,0.057861328,0.119628906,-0.15429688,-0.014099121,-0.064453125,0.17773438,-0.016113281,-0.13476562,-0.012390137,0.06933594,0.088378906,0.14453125,0.0019836426,0.0076904297,-0.005340576,-0.18066406,-0.076171875,0.1796875,-0.07080078,-0.15917969,0.15039062,0.12695312,0.21484375,0.078125,-0.11816406,-0.04638672,0.11035156,-0.14257812,0.05883789,-0.05834961,0.13378906,-0.34375,0.23144531,0.008544922,-0.34375,-0.072265625,-0.05834961,0.056396484,0.110839844,-0.30273438,0.022216797,-0.09033203,-0.022705078,-0.012878418,0.10839844,0.030761719,0.092285156,-0.09326172,0.051757812,-0.2578125,-0.03149414,-0.044433594,-0.060302734,0.20214844,0.13085938,0.0859375,-0.076660156,0.05029297,0.09716797,0.19824219,0.08496094,-0.12011719,0.072753906,0.026977539,0.0033874512,0.028320312,0.07080078,0.18359375,-0.1796875,0.04638672,-0.088378906,-0.33203125,-0.027709961,-0.011962891,0.046142578,-0.13378906,-0.15527344,-0.03540039,0.049560547,0.15820312,0.026611328,0.072265625,-0.068847656,0.08251953,-0.019165039,-0.049072266,-0.05419922,-0.024658203,-0.033935547,-0.06225586,0.026245117,-0.036132812,-0.12109375,0.14257812,-0.013061523,-0.07373047,-0.042236328,-0.012023926,-0.037597656,0.005493164,-0.09667969,-0.063964844,-0.021728516,0.15625,0.016113281,-0.016723633,0.067871094,-0.26367188,0.019897461,-0.08642578,0.09472656,-0.024658203,-0.020507812,-0.16699219,0.10107422,-0.0077209473,0.008850098,-0.04345703,0.087890625,-0.115234375,-0.048828125,0.026489258,-0.0063476562,0.09472656,0.24707031,0.103027344,0.06689453,-0.024780273,0.06738281,0.05517578,0.13867188,0.11425781,-0.003479004,-0.016479492,0.13769531,-0.044677734,0.033447266,0.06982422,-0.075683594,0.19824219,-0.087890625,0.12988281,0.11328125,0.35742188,-0.03112793,0.1328125,0.044189453,0.06689453,-0.10253906,0.115722656,0.012084961,-0.25976562,-0.13671875,-0.12792969,-0.18847656,-0.114746094,-0.09375,-0.053955078,-0.10253906,-0.045166016,-0.21484375,-0.15625,-0.044677734,0.042236328,-0.109375,0.16015625,0.008911133,-0.024536133,-0.037109375,0.046142578,0.12011719,0.17382812,0.00036621094,-0.22363281,-0.031982422,0.22363281,-0.07080078,-0.20019531,0.049316406,0.17578125,-0.31835938,-0.008361816,0.16894531,0.22460938,0.041259766,-0.0390625,0.010070801,0.084472656,-0.118652344,-0.13476562,0.023803711,0.140625,0.00060653687,-0.15039062,-0.07910156,0.04345703,0.01586914,0.042236328,0.16503906,-0.034423828,0.0024261475,-0.0859375,-0.008117676,0.06225586,-0.091796875,-0.05883789,-0.026489258,0.15136719,0.05493164,0.16503906,-0.06225586,-0.028686523,0.0134887695,0.0154418945,0.29101562,-0.04248047,-0.13085938,-0.10205078,-0.003326416,0.099121094,0.09863281,0.19140625,-0.027709961,0.061035156,0.004638672,-0.115722656,-0.016357422,0.06933594,0.0005455017,0.08496094,0.033203125,0.03930664,0.037109375,-0.045166016,0.048339844,0.19433594,-0.14355469,0.099121094,0.037109375,0.064941406,-0.09716797,-0.032226562,0.12792969,0.140625,0.02758789,0.009155273,-0.032226562,0.11669922,0.067871094,-0.059570312,-0.048095703,0.026245117,0.006652832,0.15625,0.087402344,-0.009460449,0.015258789,-0.043701172,-0.15820312,-0.055419922,-0.08935547,0.07373047,0.21972656,0.08105469,0.029174805,0.052490234,-0.045166016,-0.111816406,-0.034423828,0.09033203,0.1015625,0.10888672,0.072753906,-0.10644531,-0.016967773,0.0703125,0.017822266,-0.21386719,-0.234375,-0.0859375,-0.103515625,-0.09326172,0.06542969,-0.037109375,-0.027832031,0.053222656,-0.11816406,0.018310547,-0.107910156,0.12792969,-0.0055236816,-0.15722656,0.05883789,0.06982422,-0.09765625,-0.1328125,-0.060302734,-0.12158203,-0.0859375,-0.05859375,-0.048583984,-0.056640625,-0.19433594,0.07128906,0.20605469,-0.016845703,-0.14941406,0.05883789,0.09277344,-0.07128906,-0.014709473,0.13867188,-0.096191406,-0.1484375,0.08203125,0.063964844,-0.12451172,0.0115356445,-0.15722656,0.18164062,0.14746094,-0.06298828,-0.15527344,0.010620117,0.0138549805,0.17871094,0.15136719,-0.041503906,0.02709961,-0.12207031,-0.08886719,0.004760742,-0.12890625,-0.044921875,-0.026489258,-0.023925781,0.111816406,-0.24414062,-0.0054016113,0.016967773,0.16015625,-0.15917969,0.15039062,0.06591797,-0.075683594,-0.03515625,0.091796875,-0.0013961792,0.08105469,0.18554688,0.076171875,0.064941406,0.068359375,-0.296875,-0.26367188,0.008422852,0.104003906,-0.21875,0.0625,0.21972656,-0.006011963,-0.10595703,-0.0234375,0.024902344,0.027832031,-0.060791016,-0.14355469,0.21875,-0.10595703,-0.19140625,0.10449219,-0.32421875,0.00033950806,0.018188477,-0.06298828,0.28125,-0.009216309,-0.107910156,0.10253906,-0.24511719,-0.053710938,-0.08544922,0.037841797,0.080078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.19921875,0.020141602,0.08691406,0.100097656,0.091308594,0.30078125,0.0064697266,0.068359375,0.051513672,0.042236328,-0.15039062,0.17871094,-0.080566406,0.001739502,-0.025268555,0.234375,0.14941406,-0.03930664,0.008300781,-0.092285156,-0.0061035156,-0.21679688,-0.15722656,0.019042969,-0.1171875,-0.13085938,-0.24707031,-0.023925781,-0.03491211,-0.3203125,-0.19042969,-0.15527344,0.09326172,-0.15625,0.004547119,0.07373047,0.02355957,-0.10058594,-0.092285156,-0.11376953,-0.01953125,-0.0107421875,0.061279297,-0.035888672,0.009277344,-0.13671875,0.011962891,0.16699219,-0.34960938,0.14355469,0.03540039,0.047607422,0.020751953,-0.05517578,-0.15527344,-0.16796875,-0.114746094,-0.061767578,-0.25976562,-0.001953125,-0.14355469,-0.1875,-0.03491211,0.171875,-0.060302734,-0.0119018555,-0.016357422,-0.05126953,0.16894531,-0.16894531,0.18164062,-0.0146484375,0.04736328,0.024169922,-0.014221191,0.18457031,0.0029449463,-0.07714844,-0.12402344,0.11279297,0.00491333,0.07910156,0.057617188,-0.09277344,-0.13671875,-0.10595703,-0.03564453,-0.203125,-0.0703125,0.087890625,-0.060058594,-0.03955078,-0.32617188,-0.049316406,0.09326172,0.12207031,0.23242188,0.23730469,-0.07763672,-0.17089844,-0.055908203,-0.09814453,-0.27929688,-0.20800781,0.056884766,0.020874023,-0.14453125,0.24414062,-0.20019531,-0.21777344,-0.12792969,0.049316406,0.043945312,0.08984375,-0.024414062,-0.09863281,-0.15332031,-0.15625,-0.21386719,-0.21777344,-0.023071289,0.13964844,-0.056640625,0.00982666,-0.017700195,-0.09033203,-0.06933594,-0.17773438,-0.09765625,-0.012390137,-0.140625,-0.09033203,-0.30273438,-0.08251953,-0.28515625,-0.48828125,-0.016235352,0.020629883,-0.04663086,-0.061523438,-0.203125,-0.00793457,-0.080566406,-0.17480469,-0.10498047,0.061767578,0.037597656,-0.045654297,-0.13964844,-0.056884766,-0.15429688,-0.16113281,0.028198242,0.06225586,-0.14355469,0.037597656,-0.17871094,-0.27148438,0.07128906,0.04272461,-0.026000977,0.103515625,0.037597656,0.111816406,0.17480469,-0.09423828,-0.17285156,-0.18847656,-0.017822266,0.13183594,0.012878418,-0.083984375,-0.25195312,0.13476562,0.140625,-0.026367188,-0.05834961,-0.037841797,-0.109375,-0.078125,-0.17871094,-0.049072266,-0.13378906,-0.12695312,-0.12011719,0.04736328,-0.14648438,0.13671875,-0.19628906,-0.006866455,0.09326172,0.10595703,0.14550781,0.015197754,-0.016235352,-0.21191406,-0.07519531,0.028686523,-0.20410156,0.08691406,-0.13183594,-0.01965332,0.016113281,-0.02355957,-0.16503906,0.08642578,0.046142578,0.109375,0.16210938,0.009338379,0.016479492,-0.21679688,-0.17773438,0.06542969,-0.12792969,-0.25,-0.12011719,-0.061523438,-0.13964844,-0.037353516,0.00092697144,0.095214844,0.060546875,0.052734375,0.17480469,0.075683594,0.0119018555,-0.12792969,0.109375,-0.020263672,0.053955078,-0.25390625,-0.0015716553,-0.033203125,-0.095214844,0.05810547,0.0058898926,0.04638672,0.1328125,-0.13769531,-0.29882812,0.09326172,0.022827148,-0.08105469,0.17578125,-0.2109375,0.20117188,-0.030151367,0.06347656,0.027954102,-0.1796875,0.008972168,0.10498047,0.12792969,0.16601562,0.03466797,0.045654297,-0.020751953,-0.107910156,-0.115234375,-0.023803711,0.024536133,-0.20117188,-0.024536133,0.035888672,0.15625,-0.07910156,-0.0036315918,-0.11035156,0.032226562,0.21875,0.08251953,0.14453125,-0.071777344,-0.067871094,-0.16894531,0.083496094,0.20214844,0.0062561035,-0.056884766,-0.06640625,-0.017333984,0.13671875,0.15429688,0.027954102,-0.21777344,0.17089844,-0.02368164,0.1953125,0.15527344,-0.033691406,-0.123046875,0.10107422,-0.053466797,-0.13964844,-0.079589844,0.036621094,0.051513672,-0.053955078,-0.047851562,0.12451172,-0.014953613,0.026000977,-0.09082031,0.092285156,0.17089844,0.16210938,0.018310547,0.16601562,0.140625,0.11328125,0.003250122,0.026000977,-0.011962891,0.03857422,0.26757812,0.30859375,-0.14355469,0.11035156,-0.07128906,-0.020019531,0.03540039,-0.20800781,-0.32421875,0.018310547,-0.0063171387,-0.08935547,-0.18945312,-0.079589844,0.10888672,0.072265625,0.0234375,0.052246094,-0.040771484,-0.09326172,-0.40820312,0.27539062,-0.041748047,-0.22558594,-0.031982422,0.016601562,0.03564453,-0.11621094,-0.118652344,0.08691406,0.013305664,-0.076660156,-0.12597656,0.12890625,0.080078125,-0.09033203,-0.11669922,-0.017578125,-0.29492188,-0.07470703,-0.23828125,0.123535156,0.19238281,0.12207031,-0.11376953,0.061767578,0.0049438477,-0.010253906,0.14746094,0.17285156,0.09375,0.071777344,-0.32421875,0.011230469,0.05493164,0.026000977,-0.022460938,-0.041992188,-0.15820312,-0.040771484,-0.15722656,0.05053711,-0.04638672,-0.008178711,0.01184082,0.16015625,-0.032958984,-0.061035156,-0.42382812,0.22753906,-0.12890625,-0.0033721924,-0.20996094,0.12060547,-0.14550781,-0.044677734,-0.07373047,0.00579834,-0.21386719,0.140625,0.0078125,0.14355469,-0.34765625,0.05834961,-0.24316406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.046875,0.07324219,0.047607422,0.075683594,0.32226562,-0.17675781,-0.20410156,-0.004425049,-0.06542969,0.040527344,-0.24707031,0.15136719,-0.107421875,-0.048828125,0.15820312,-0.035888672,0.08544922,0.012512207,-0.007751465,-0.025146484,0.095214844,0.011169434,-0.025146484,-0.045410156,0.052246094,0.095703125,0.008544922,0.07861328,-0.11230469,0.010009766,-0.09082031,-0.0010223389,0.13867188,-0.0030059814,-0.049316406,0.059570312,-0.013061523,-0.2421875,-0.017578125,0.08154297,0.028320312,0.020996094,-0.010681152,0.071777344,-0.10839844,-0.15234375,0.040527344,-0.12158203,0.05126953,-0.024780273,-0.20898438,0.08691406,0.07470703,-0.092285156,-0.007171631,0.16699219,0.02368164,-0.10546875,-0.11621094,-0.080078125,-0.091308594,0.063964844,0.076171875,0.107910156,0.057373047,-0.051757812,0.043945312,0.13476562,0.14453125,-0.25390625,-0.23925781,-0.010009766,-0.06640625,0.07128906,-0.17675781,-0.24023438,-0.004760742,0.25195312,0.12451172,-0.0703125,-0.16308594,0.13574219,0.071777344,0.091796875,-0.11035156,0.029174805,0.016845703,0.107910156,0.060791016,-0.03466797,-0.22460938,-0.032226562,0.17871094,-0.110839844,0.22851562,0.16113281,-0.0076293945,-0.037109375,0.10546875,0.0021209717,-0.03881836,-0.18066406,-0.056152344,0.07324219,0.08154297,-0.020996094,-0.296875,-0.13378906,-0.055664062,-0.13085938,0.00045967102,-0.008483887,-0.16601562,-0.11621094,-0.22460938,0.11425781,-0.05883789,0.20507812,-0.19824219,0.03930664,-0.0049743652,0.09423828,0.2578125,-0.040527344,0.13476562,0.04321289,-0.030395508,-0.08300781,0.110839844,-0.041259766,0.076171875,-0.021606445,0.04321289,-0.005706787,0.20507812,-0.03173828,-0.008972168,-0.010803223,-0.17480469,-0.044677734,-0.021850586,-0.36523438,-0.04272461,-0.052490234,0.008239746,-0.014770508,0.056884766,0.15039062,-0.020263672,-0.067871094,-0.053222656,0.047607422,-0.08642578,-0.032226562,-0.16503906,-0.11425781,-0.04272461,-0.016601562,0.19238281,-0.22167969,0.010925293,-0.022216797,0.048095703,0.032714844,-0.19042969,0.09326172,-0.076171875,-0.049804688,-0.099121094,-0.0027618408,-0.13476562,0.16601562,0.16894531,-0.122558594,-0.03100586,-0.234375,-0.119628906,0.111816406,0.20019531,-0.017944336,0.060546875,-0.19042969,-0.33789062,-0.03173828,0.056396484,-0.024658203,-0.20117188,0.033447266,0.1328125,-0.037109375,0.035888672,-0.15527344,0.05908203,-0.12792969,-0.104003906,0.014465332,0.057128906,-0.27929688,-0.23828125,-0.0859375,0.030395508,0.018432617,-0.099609375,0.20996094,0.09033203,-0.014465332,-0.12451172,0.09423828,-0.15039062,-0.004272461,0.009887695,0.028686523,0.18652344,0.07128906,-0.045654297,0.05908203,-0.14355469,-0.08105469,-0.08886719,0.103027344,0.08886719,-0.016479492,0.0126953125,-0.13378906,-0.31640625,0.30859375,0.24609375,0.12988281,0.0119018555,-0.037841797,0.014709473,0.08105469,-0.036132812,-0.0859375,-0.15820312,0.024047852,-0.11035156,0.008666992,-0.026611328,-0.15722656,0.080078125,0.10888672,-0.21582031,-0.14550781,-0.04663086,0.02368164,0.021728516,-0.038330078,0.07470703,0.088378906,0.07080078,0.009399414,0.059814453,0.018920898,0.01965332,0.012023926,0.006134033,0.047607422,-0.12792969,-0.020385742,-0.08642578,-0.123046875,-0.24023438,-0.05053711,-0.053222656,0.008911133,-0.20117188,0.17675781,0.10839844,0.040039062,-0.07861328,0.010681152,-0.07861328,-0.13476562,-0.20117188,-0.15429688,-0.123046875,-0.115234375,-0.037597656,-0.23925781,0.091308594,-0.087402344,-0.078125,0.052246094,-0.020507812,-0.13671875,-0.40039062,-0.034179688,-0.16894531,0.051757812,-0.049804688,0.040039062,-0.048828125,-0.07080078,-0.3828125,-0.09375,0.09277344,-0.045410156,-0.2109375,-0.04345703,0.052734375,-0.06933594,-0.25390625,0.14550781,-0.25976562,0.052490234,0.19238281,0.10058594,-0.25195312,-0.052490234,-0.265625,-0.09863281,0.028808594,-0.008666992,0.11279297,0.040771484,-0.043701172,0.15429688,-0.21777344,0.067871094,-0.20214844,0.21972656,-0.15625,-0.16992188,-0.1328125,-0.104003906,0.091308594,0.091308594,0.016601562,-0.037597656,-0.08642578,-0.34375,-0.075683594,0.14648438,0.100097656,-0.016601562,-0.061279297,-0.21875,-0.33007812,-0.32617188,-0.12890625,0.0703125,-0.07324219,0.12988281,-0.096191406,0.13964844,0.25976562,-0.55078125,-0.12890625,0.29101562,-0.10839844,0.024780273,-0.057861328,-0.19335938,-0.45507812,-0.41015625,-0.040039062,-0.041992188,0.21582031,-0.41015625,-0.09814453,0.12597656,0.10253906,-0.390625,-0.076171875,0.068359375,-0.15429688,-0.033203125,0.15625,-0.21679688,-0.40820312,-0.10986328,-0.080566406,0.1796875,-0.057861328,-0.25390625,0.07421875,0.19628906,-0.010498047,-0.10205078,-0.1171875,0.18945312,-0.22167969,-0.091308594,0.07080078,-0.08691406,-0.3125,-0.11230469,-0.34179688,0.23730469,-0.2578125,0.051513672,0.08496094,0.25585938,-0.14355469,0.29492188,-0.14257812,0.06298828,-0.15234375,0.123046875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.059814453,-0.026855469,-0.21289062,-0.11279297,-0.03491211,0.203125,-0.20410156,-0.12597656,0.09814453,-0.14550781,-0.14160156,-0.023071289,-0.07373047,0.08300781,0.0077209473,0.0027160645,-0.01940918,0.16796875,0.07080078,-0.06225586,-0.08691406,0.055419922,-0.016967773,-0.063964844,0.037841797,-0.08984375,-0.021484375,-0.22949219,0.107421875,0.052490234,0.037841797,-0.115234375,-0.34375,0.22167969,-0.10205078,-0.15332031,0.026611328,-0.06640625,-0.20117188,0.014099121,0.055664062,-0.03466797,0.107910156,0.095214844,-0.06738281,0.36132812,-0.0069274902,-0.037109375,-0.049316406,-0.13964844,0.015380859,-0.07861328,0.18945312,0.075683594,0.107910156,-0.07910156,-0.107421875,0.21289062,0.09472656,0.044921875,-0.14257812,0.052001953,-0.12597656,0.022094727,0.00063705444,-0.12011719,0.02746582,-0.036621094,0.030395508,0.11279297,0.06738281,0.08642578,0.13574219,0.15332031,-0.05834961,-0.07128906,-0.21875,0.051757812,-0.12988281,0.106933594,-0.16308594,0.032714844,-0.22851562,-0.14550781,-0.063964844,-0.018920898,-0.12158203,0.021606445,-0.09472656,-0.09863281,-0.07910156,0.037353516,-0.04321289,-0.07324219,0.10546875,0.15820312,-0.328125,0.030273438,0.018676758,0.03173828,-0.28710938,-0.10449219,-0.13769531,0.109375,-0.041503906,-0.020629883,0.08251953,0.079589844,0.14453125,0.064941406,-0.12109375,-0.064941406,-0.03149414,-0.22851562,0.044921875,-0.10888672,0.071777344,0.18457031,-0.045166016,0.06933594,0.10205078,0.0012054443,0.100097656,0.044433594,0.047851562,0.045898438,0.14160156,-0.20507812,-0.12988281,0.030273438,0.16015625,-0.032714844,-0.007293701,-0.01171875,-0.001953125,0.051757812,0.046142578,-0.08984375,0.10205078,-0.043701172,-0.07373047,0.046142578,-0.15820312,0.049072266,0.13183594,-0.21289062,0.096191406,-0.12695312,0.07128906,-0.115722656,0.022338867,-0.15527344,-0.068847656,-0.020874023,-0.125,-0.13183594,-0.16503906,-0.037597656,0.08251953,0.052490234,-0.041015625,-0.14941406,-0.119140625,-0.095214844,-0.0859375,0.047851562,0.16992188,0.08300781,-0.104003906,0.03149414,-0.109375,-0.06640625,0.01373291,-0.1328125,-0.012084961,0.053222656,-0.029663086,-0.26367188,-0.10205078,0.059570312,0.015014648,0.037109375,0.012817383,0.27734375,-0.052001953,0.115234375,-0.15136719,0.08544922,0.15136719,-0.096191406,-0.018432617,0.017700195,-0.13378906,-0.16503906,0.049316406,-0.13769531,0.07080078,0.030029297,0.0072021484,-0.061279297,0.07910156,0.080078125,0.123535156,-0.018310547,0.0625,-0.12109375,0.16796875,-0.27929688,-0.033203125,-0.19042969,0.100097656,0.060302734,-0.103515625,-0.010803223,-0.09716797,-0.046142578,0.099609375,-0.13769531,-0.018188477,0.03125,-0.017578125,-0.005859375,-0.06542969,0.0010528564,-0.08105469,-0.26367188,0.14160156,-0.118652344,-0.08154297,0.11230469,-0.24023438,-0.068847656,-0.041503906,-0.00030708313,0.055908203,-0.11376953,-0.32421875,-0.020019531,0.0022125244,-0.043945312,-0.119140625,-0.04272461,0.03930664,-0.1640625,-0.19433594,-0.13769531,-0.05078125,-0.053222656,0.05102539,0.15234375,-0.067871094,0.033935547,0.079589844,-0.2578125,-0.14453125,-0.03491211,0.048339844,0.018066406,-0.07519531,0.10253906,0.09326172,-0.09814453,-0.088378906,0.24902344,-0.10546875,-0.22558594,-0.05102539,-0.15136719,-0.0031433105,0.040039062,-0.06542969,-0.17382812,-0.048583984,-0.23339844,0.07373047,-0.076171875,-0.095703125,-0.18261719,-0.03125,-0.171875,0.05517578,-0.119140625,0.11035156,0.008178711,0.004425049,0.07470703,-0.16308594,-0.10498047,-0.030639648,-0.007598877,0.048095703,-0.107421875,0.004058838,0.048583984,-0.20703125,-0.100097656,0.076660156,-0.18261719,0.012634277,0.09423828,-0.1875,-0.015991211,-0.020141602,-0.114746094,0.013366699,-0.07421875,0.08496094,0.04711914,-0.095214844,0.23925781,0.0032348633,-0.111328125,0.02319336,-0.08203125,0.07714844,-0.061035156,-0.123046875,-0.119140625,0.09765625,0.07714844,0.009643555,-0.14648438,-0.025756836,0.06738281,-0.10546875,0.040527344,-0.011352539,0.056884766,-0.036621094,0.09375,0.021118164,0.068359375,-0.012512207,-0.099609375,-0.3125,0.111328125,-0.12109375,-0.026977539,0.019042969,0.0021209717,0.0390625,0.008911133,0.0029907227,0.11425781,-0.052978516,0.09277344,-0.009643555,0.026123047,0.064453125,-0.0703125,-0.09033203,0.022216797,-0.042236328,0.012329102,0.10107422,0.064941406,-0.20117188,-0.040771484,-0.0052490234,-0.04321289,0.0071105957,-0.036376953,-0.020629883,0.30273438,-0.08496094,-0.07470703,-0.12890625,-0.03955078,0.27539062,-0.22265625,0.08691406,0.0054016113,-0.060058594,-0.0703125,-0.014892578,0.100097656,-0.04736328,-0.11816406,-0.10205078,-0.03173828,-0.020874023,0.064941406,-0.08496094,0.0015258789,0.17675781,-0.08691406,0.003692627,0.13574219,0.019042969,0.31445312,-0.022949219,-0.046875,0.0154418945,-0.052490234,-0.08300781,0.17675781,-0.265625,-0.19628906,-0.019042969,0.18945312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.29296875,-0.053466797,-0.09375,-0.10498047,-0.072265625,0.011474609,0.026489258,-0.28515625,-0.012145996,0.049072266,0.014526367,-0.15625,0.12597656,-0.104003906,-0.007385254,0.030639648,-0.096191406,-0.14355469,-0.013427734,0.08496094,-0.020019531,-0.049804688,-0.12158203,-0.20507812,-0.0050964355,-0.10107422,-0.025756836,-0.25195312,-0.119628906,0.0036621094,0.032470703,-0.015197754,-0.008544922,-0.21386719,-0.034179688,-0.052001953,-0.036376953,-0.14160156,-0.07763672,-0.03564453,-0.07080078,0.026123047,0.067871094,-0.10498047,0.0859375,-0.25195312,0.02758789,-0.024780273,-0.064453125,-0.26367188,-0.040039062,0.13964844,-0.020263672,-0.1796875,-0.026977539,-0.15332031,-0.11669922,-0.064941406,-0.03515625,-0.12011719,0.03930664,0.08300781,0.0703125,-0.049072266,-0.075683594,-0.26171875,0.16308594,-0.030883789,-0.022216797,-0.12988281,-0.14257812,-0.33789062,0.055419922,0.0038452148,-0.23144531,-0.05078125,0.0099487305,-0.053710938,0.0061035156,0.041259766,-0.22460938,0.05517578,-0.008972168,-0.27148438,0.08886719,-0.059570312,-0.024780273,-0.04711914,0.07080078,-0.13476562,-0.12207031,-0.16992188,0.10498047,-0.103515625,0.020019531,-0.026245117,-0.15527344,0.055419922,-0.044677734,-0.29296875,0.10498047,0.051513672,0.015380859,-0.37890625,0.025146484,-0.056884766,0.06201172,-0.056884766,-0.012878418,0.04638672,-0.10888672,0.087402344,-0.18652344,-0.03173828,-0.01373291,0.047607422,-0.087890625,-0.111816406,0.110839844,-0.27148438,0.06201172,-0.023071289,-0.060302734,0.030883789,-0.039794922,0.023925781,-0.018310547,0.19238281,-0.10449219,-0.12597656,0.013061523,0.115722656,-0.095214844,0.23730469,-0.05859375,-0.18847656,0.1015625,0.11376953,-0.13671875,-0.034423828,0.080078125,0.12158203,-0.027832031,-0.103027344,-0.1015625,-0.0031738281,0.05444336,0.05053711,0.0030670166,0.19042969,-0.09082031,0.20019531,0.060302734,0.008911133,-0.02734375,-0.100097656,-0.075683594,-0.049804688,0.13867188,-0.12597656,-0.14941406,0.09765625,-0.071777344,-0.09423828,0.25976562,0.12109375,-0.28515625,0.076171875,-0.020874023,0.014160156,-0.23828125,-0.13671875,-0.18261719,-0.080078125,0.13574219,0.1875,-0.20703125,0.10644531,-0.11230469,-0.28515625,0.28320312,0.033935547,-0.13769531,-0.020996094,-0.07470703,-0.029418945,-0.014343262,-0.21777344,0.014770508,0.103515625,0.087890625,-0.016479492,-0.14355469,0.016479492,-0.05834961,-0.07470703,0.12988281,-0.064453125,0.17382812,-0.19921875,0.034423828,-0.013000488,-0.11816406,-0.067871094,0.03540039,0.12402344,-0.16308594,-0.14550781,-0.021606445,-0.075683594,0.09765625,0.12597656,0.0018310547,0.20996094,0.1796875,0.091308594,0.08105469,-0.115722656,-0.030883789,0.049804688,-0.08984375,0.171875,-0.06640625,-0.06738281,0.123535156,-0.22753906,0.16308594,-0.040527344,-0.06738281,0.20410156,0.040527344,0.115722656,0.041748047,-0.029418945,0.003326416,-0.08886719,0.078125,0.23730469,-0.057128906,-0.11230469,-0.072265625,0.15332031,0.16015625,0.140625,0.087402344,0.17675781,-0.23339844,-0.100097656,0.033203125,0.053955078,0.05126953,0.064453125,-0.041992188,0.010864258,0.10839844,-0.09814453,-0.171875,0.2890625,0.03173828,-0.22363281,0.060058594,-0.118652344,0.041748047,-0.049316406,0.068847656,0.14453125,-0.13769531,-0.2578125,-0.084472656,0.1171875,0.091796875,0.072753906,0.111816406,-0.010375977,-0.13964844,-0.080566406,-0.14550781,-0.22070312,-0.04248047,-0.13671875,0.005554199,-0.041992188,0.04711914,0.06982422,-0.110839844,0.19433594,0.05029297,0.040771484,0.09277344,0.07470703,0.16601562,-0.0035095215,0.083984375,0.025390625,-0.08154297,-0.107421875,-0.03466797,-0.12890625,-0.095703125,0.08886719,-0.111328125,-0.0046081543,-0.123046875,0.063964844,0.118652344,-0.15820312,-0.049804688,-0.17089844,0.04345703,0.18554688,0.03955078,0.047607422,0.045410156,-0.18652344,-0.08300781,0.043701172,-0.022827148,0.12890625,-0.030761719,-0.13964844,0.10107422,0.14355469,0.35351562,0.091308594,-0.13574219,0.020751953,0.08203125,0.28125,0.087402344,0.10986328,0.053710938,0.030273438,0.032714844,0.050048828,-0.0005455017,0.20117188,-0.017700195,0.11328125,0.12695312,0.023071289,-0.056396484,0.031982422,-0.048095703,0.055908203,-0.008483887,0.0390625,-0.12011719,-0.028198242,-0.05908203,-0.048583984,-0.010070801,0.07861328,-0.025756836,-0.16699219,0.017211914,0.06542969,-0.16601562,0.02758789,0.12402344,0.14941406,-0.11230469,0.059326172,0.06689453,0.072265625,-0.021850586,0.0033416748,-0.014892578,0.02368164,0.047607422,-0.18261719,0.010314941,-0.07763672,0.07373047,-0.22558594,0.1875,0.20605469,-0.08984375,-0.20410156,0.05126953,0.10986328,-0.11230469,-0.14941406,-0.029541016,-0.037841797,0.057373047,-0.17382812,-0.0703125,-0.20410156,0.16503906,0.028442383,0.18554688,0.140625,0.07470703,-0.16699219,0.12792969,-0.011474609,-0.083984375,-0.0015792847,-0.06347656,-0.07373047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.21679688,0.002319336,-0.119140625,-0.007598877,0.20507812,-0.0021209717,-0.0015945435,0.03955078,0.067871094,0.04272461,-0.05102539,0.15136719,-0.021606445,0.12890625,-0.041503906,0.018310547,0.025878906,0.12890625,-0.046142578,0.024047852,0.10205078,0.079589844,-0.05053711,0.17480469,-0.06982422,-0.06347656,-0.041503906,0.07763672,-0.00390625,0.026977539,0.07910156,-0.015136719,-0.20410156,-0.10546875,-0.1875,0.0003376007,0.002105713,-0.14453125,-0.328125,-0.07470703,-0.07373047,-0.115234375,0.030029297,-0.06933594,0.025512695,0.0016021729,-0.025146484,-0.0126953125,0.056396484,-0.10205078,-0.20410156,-0.36523438,-0.16308594,-0.016601562,-0.03515625,-0.13476562,0.009521484,-0.0014343262,0.07861328,0.023925781,0.09033203,0.10107422,0.07861328,-0.059326172,0.029907227,-0.05834961,-0.19921875,-0.09277344,-0.12597656,-0.09814453,-0.2890625,-0.020629883,-0.048583984,0.008239746,-0.063964844,0.22460938,-0.024291992,0.020019531,0.020141602,-0.1015625,0.060058594,0.104003906,0.1875,0.234375,-0.088378906,0.08886719,0.1875,0.029785156,0.0067749023,0.032958984,0.02355957,0.016357422,0.088378906,0.06689453,0.110839844,0.13183594,0.21679688,-0.12988281,0.13769531,0.071777344,-0.10058594,0.10986328,-0.068359375,0.067871094,-0.0859375,0.056640625,-0.1015625,-0.008422852,-0.012451172,-0.09423828,0.038085938,-0.045654297,-0.0054016113,0.13671875,0.0625,-0.032470703,-0.036132812,-0.032226562,-0.011291504,0.011230469,-0.05102539,0.06225586,-0.16699219,0.048828125,0.079589844,0.3359375,0.15917969,-0.110839844,-0.008544922,-0.016723633,0.043945312,-0.30273438,-0.040771484,-0.20800781,0.031982422,-0.07910156,-0.056640625,-0.045898438,-0.0017471313,0.24511719,0.04248047,0.030883789,-0.041259766,0.00390625,-0.01953125,-0.019897461,-0.011962891,-0.095214844,-0.072753906,-0.033447266,-0.12597656,0.028198242,-0.040283203,0.04296875,0.072753906,0.03857422,-0.033691406,0.078125,0.061279297,0.019042969,-0.036865234,-0.11328125,-0.046875,0.03491211,-0.15332031,0.17382812,-0.16699219,0.018676758,-0.11376953,-0.05834961,-0.08496094,0.09814453,-0.0036468506,-0.026000977,0.15625,-0.12988281,0.11669922,0.1484375,0.22949219,0.08105469,-0.2265625,-0.0028381348,-0.15820312,-0.119140625,-0.033691406,-0.09667969,-0.11035156,-0.028686523,0.061767578,-0.27929688,0.018188477,-0.32226562,0.045654297,0.35351562,-0.059326172,-0.2578125,0.12597656,-0.10107422,-0.08496094,-0.119140625,0.08300781,-0.07373047,0.125,-0.015136719,0.14648438,-0.018310547,-0.10107422,-0.15332031,-0.32617188,0.11621094,0.061035156,-0.328125,-0.2578125,-0.15722656,-0.12695312,0.013061523,-0.043701172,-0.01953125,0.03564453,0.0038909912,0.014953613,-0.16601562,-0.17285156,-0.21582031,-0.2265625,-0.09716797,-0.13964844,-0.26367188,-0.10498047,0.053710938,0.10205078,0.024047852,0.049560547,0.103027344,-0.052978516,0.08251953,0.055664062,-0.22363281,0.14355469,-0.25976562,-0.067871094,-0.39453125,0.012329102,0.14257812,0.083984375,0.24121094,-0.014404297,-0.07910156,-0.08251953,0.03466797,-0.057128906,0.0390625,-0.08496094,-0.22070312,-0.13085938,-0.23535156,-0.12890625,-0.16503906,0.007873535,-0.05078125,-0.09472656,0.06738281,0.20117188,-0.052490234,-0.040771484,-0.024414062,-0.17089844,0.09326172,-0.11279297,-0.19042969,-0.04345703,-0.30078125,-0.076171875,0.15722656,0.16992188,-0.016357422,-0.047607422,0.19433594,0.035888672,-0.04321289,-0.043945312,0.048095703,0.053710938,0.06640625,-0.07421875,-0.234375,-0.0005302429,-0.38671875,-0.03466797,0.068847656,-0.048095703,-0.22070312,0.09326172,-0.048583984,0.11767578,-0.08984375,-0.16015625,0.080566406,0.10546875,0.119628906,-0.03149414,-0.1796875,0.026611328,-0.18359375,0.10644531,0.020019531,-0.15039062,-0.15332031,0.16015625,-0.060546875,-0.029541016,-0.13574219,-0.15136719,0.08642578,-0.053710938,-0.043945312,0.056152344,-0.025268555,0.09716797,-0.18066406,0.05102539,-0.25390625,0.1484375,0.17382812,-0.23925781,0.26171875,0.068847656,0.029785156,0.083984375,0.0076904297,0.24023438,0.19238281,-0.080078125,-0.21875,-0.22070312,-0.032958984,-0.056884766,-0.087890625,0.068359375,0.109375,-0.26367188,-0.16113281,-0.021118164,-0.05126953,-0.10644531,0.052001953,-0.10107422,0.19921875,-0.14257812,-0.1328125,-0.16503906,-0.15136719,0.15527344,0.088378906,0.1953125,0.10107422,-0.11767578,-0.002029419,-0.06738281,-0.0069885254,0.0703125,0.007537842,-0.05102539,-0.0051574707,-0.16113281,0.053955078,0.087402344,-0.1015625,0.06689453,0.080566406,0.044433594,0.091796875,-0.0079956055,-0.35546875,-0.110839844,-0.15136719,-0.020629883,-0.068359375,0.06933594,0.110839844,0.032226562,-0.23339844,-0.22070312,-0.25,-0.16015625,-0.18066406,0.0146484375,-0.013000488,-0.08300781,-0.21777344,-0.18554688,0.075683594,-0.037109375,-0.052001953,0.14453125,-0.36328125,-0.055908203,-0.08544922,-0.1953125,-0.2265625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.05126953,0.056640625,0.1953125,0.076171875,0.104003906,0.09765625,0.10205078,-0.003112793,0.06347656,-0.050048828,0.20214844,-0.1796875,0.041015625,0.14941406,0.036132812,0.10839844,0.13085938,-0.107910156,-0.024902344,-0.06933594,-0.033203125,0.26367188,-0.059326172,0.020263672,0.09716797,-0.19628906,-0.092285156,0.111328125,0.01586914,-0.12451172,-0.26953125,0.19238281,0.23046875,-0.026245117,-0.13183594,-0.0021972656,0.048583984,-0.088378906,0.052978516,0.0073547363,0.096191406,-0.26367188,-0.12060547,0.08300781,-0.060302734,0.0022583008,-0.16894531,-0.036865234,-0.20703125,-0.12890625,0.18457031,-0.08544922,-0.03857422,0.022583008,-0.041259766,0.11425781,0.049316406,-0.21484375,0.15332031,-0.08544922,-0.20410156,0.022583008,-0.110839844,0.025146484,0.17285156,-0.14160156,0.047607422,0.027709961,0.009216309,0.014892578,0.0013580322,-0.111328125,-0.032226562,-0.012878418,0.13378906,-0.09863281,-0.13964844,0.27148438,0.16210938,-0.05029297,0.1484375,-0.109375,0.10205078,-0.041015625,0.06738281,0.17480469,-0.07470703,0.057617188,0.005493164,-0.11328125,-0.109375,-0.15722656,0.048339844,-0.15429688,0.05859375,0.23144531,-0.032958984,-0.17675781,-0.075683594,-0.21777344,-0.19238281,0.15625,-0.20507812,-0.22460938,0.06298828,-0.32226562,-0.15039062,0.0064697266,0.03173828,0.067871094,-0.22460938,0.037597656,0.018798828,-0.01574707,-0.028930664,0.0040893555,-0.030029297,-0.14550781,-0.11621094,-0.018432617,-0.07128906,-0.5234375,-0.17773438,0.091308594,-0.15332031,0.07080078,-0.09326172,0.057861328,-0.049072266,0.014526367,0.0033569336,-0.044921875,-0.087890625,0.024291992,-2.515316e-05,0.064941406,0.05053711,-0.21679688,0.12597656,-0.028076172,0.017578125,0.14941406,-0.02368164,-0.059570312,0.095703125,-0.10986328,-0.012207031,0.13476562,0.1953125,-0.010375977,0.13671875,0.010559082,-0.07714844,0.1484375,-0.0390625,0.096191406,-0.16601562,-0.030883789,0.13867188,-0.078125,0.04248047,-0.15722656,0.0012588501,0.012390137,0.16601562,0.16503906,-0.20605469,0.044677734,0.025024414,-0.072265625,-0.03112793,-0.15039062,0.11425781,0.015991211,-0.075683594,0.087890625,-0.22363281,0.0033721924,-0.17578125,-0.10253906,0.16503906,0.028442383,0.064453125,0.022583008,-0.09472656,-0.21582031,0.044433594,-0.24316406,0.026245117,0.15039062,0.016967773,-0.140625,-0.045898438,0.17773438,0.084472656,-0.023925781,-0.09765625,0.023071289,-0.087402344,-0.15332031,-0.10253906,-0.39453125,0.09667969,0.12207031,-0.15527344,0.030151367,0.11767578,-0.032470703,0.0115356445,0.18261719,-0.05078125,0.03149414,0.23046875,-0.06347656,0.020385742,-0.037841797,-0.072753906,-0.15136719,-0.0021514893,-0.15625,-0.13671875,0.100097656,-0.000957489,-0.038085938,0.18554688,-0.052734375,0.02368164,0.10107422,0.045166016,0.100097656,0.04711914,-0.10498047,0.068847656,0.17382812,0.0126953125,0.21386719,0.016357422,-0.05908203,0.16015625,0.017211914,0.055908203,0.013122559,0.0859375,0.17773438,0.11425781,0.17578125,-0.035888672,0.052490234,-0.028930664,0.020141602,0.0099487305,-0.30664062,-0.01977539,-0.111816406,0.08300781,0.118652344,-0.103027344,0.26171875,0.14746094,-0.17285156,-0.068359375,-0.09326172,-0.13769531,-0.067871094,-0.08544922,-0.19433594,0.125,0.0014038086,-0.036132812,0.00025177002,0.0859375,0.03955078,-0.23925781,0.001739502,0.08691406,-0.11425781,0.008422852,0.009216309,-0.10449219,-0.036376953,-0.06225586,-0.067871094,0.006378174,-0.08105469,0.006652832,-0.09033203,0.051513672,-0.013305664,0.015136719,-0.0059509277,-0.083496094,-0.03857422,0.22265625,0.020019531,0.03540039,-0.11669922,-0.10595703,0.12695312,0.07714844,-0.0031280518,-0.140625,0.09326172,0.040039062,0.0146484375,0.06542969,-0.106933594,-0.08105469,-0.17480469,0.07324219,0.12158203,0.059814453,-0.18847656,0.04321289,0.071777344,0.19726562,0.20019531,-0.020996094,0.06542969,-0.020629883,-0.013183594,0.14355469,0.02368164,0.15136719,0.012512207,-0.015380859,0.20507812,-0.055664062,0.095214844,-0.09863281,-0.10839844,0.00018692017,-0.044189453,0.04736328,0.100097656,-0.0859375,-0.0390625,-0.20507812,0.059326172,0.11035156,0.092285156,0.0044555664,-0.009338379,-0.048339844,-0.083496094,-0.115234375,-0.033203125,0.12060547,-0.052246094,0.087890625,-0.22070312,0.04248047,0.099609375,-0.07861328,-0.0034332275,-0.020141602,-0.107421875,0.019897461,-0.02355957,0.09667969,0.07910156,0.12890625,0.084472656,0.0021820068,0.010925293,0.05493164,0.095214844,0.15527344,-0.06933594,-0.028076172,0.019165039,0.0020141602,-0.006439209,-0.13476562,-0.20898438,0.09375,-0.203125,-0.0072021484,0.13183594,-0.07470703,0.008544922,-0.07421875,-0.21289062,-0.115722656,0.10498047,0.22460938,0.06982422,-0.18359375,-0.040283203,-0.09033203,0.18847656,0.26367188,-0.032470703,0.0046691895,0.030639648,0.032714844,0.072753906,-0.033203125,0.29101562,0.111816406,-0.00039482117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.25390625,-0.080566406,-0.016479492,0.052490234,0.076171875,-0.122558594,-0.13378906,-0.07910156,-0.018432617,-0.06542969,0.18847656,-0.12792969,0.11669922,-0.061035156,0.20410156,-0.16601562,-0.13769531,-0.15820312,0.0546875,0.034423828,-0.18261719,0.0027313232,-0.10644531,-0.043701172,0.115722656,-0.13769531,-0.20703125,-0.018066406,0.140625,-0.053222656,0.08203125,-0.26757812,-0.13769531,0.020996094,-0.07763672,0.031982422,-0.15722656,0.2578125,0.0055236816,-0.05517578,0.053466797,-0.037597656,-0.16699219,-0.16113281,0.07080078,-0.055908203,0.0625,-0.19140625,-0.119628906,-0.103027344,0.04321289,-0.13769531,-0.13574219,0.049560547,-0.012451172,-0.052734375,-0.04736328,-0.15429688,0.12988281,0.071777344,0.06738281,-0.08544922,-0.0027008057,-0.25195312,-0.099609375,-0.33203125,-0.0546875,0.018676758,-0.28125,0.026855469,0.0034332275,0.05908203,-0.040283203,-0.091308594,-0.13085938,0.11425781,0.010681152,-0.25195312,0.07324219,-0.22949219,-0.12011719,0.23925781,-0.14941406,-0.07910156,0.17285156,-0.20605469,-0.014282227,-0.1640625,-0.04248047,-0.09277344,-0.09814453,-0.20019531,0.030395508,-0.12792969,0.12451172,0.07861328,-0.03881836,0.15429688,-0.24023438,0.12695312,0.19042969,0.08300781,0.014160156,-0.08935547,0.072753906,0.08154297,0.049072266,-0.30664062,0.11279297,-0.056396484,-0.1015625,-0.091796875,-0.11035156,0.15234375,-0.076171875,0.10498047,0.022949219,-0.11376953,-0.083496094,-0.19140625,-0.11328125,-0.048339844,0.009887695,-0.119140625,0.122558594,-0.12451172,-0.12060547,-0.076660156,-0.19921875,0.05126953,0.00041770935,0.01928711,-0.15722656,0.096191406,0.115722656,-0.09863281,0.092285156,-0.03149414,-0.026611328,-0.025268555,0.0134887695,-0.035888672,0.034423828,-0.033935547,-0.18261719,-0.040527344,0.07763672,0.044433594,-0.0007972717,0.13183594,0.28515625,0.09277344,-0.06347656,0.068847656,-0.037841797,0.08300781,0.06738281,0.06738281,-0.0010681152,0.037597656,0.060791016,0.018066406,-0.022216797,0.16308594,0.17382812,0.08203125,0.040771484,-0.14453125,0.048339844,0.12988281,0.12597656,-0.32421875,-0.057861328,-0.024902344,-0.02734375,-0.032226562,0.037353516,-0.012451172,-0.0029296875,0.12402344,0.12695312,-0.103515625,0.14355469,-0.017578125,-0.05908203,0.10986328,-0.18945312,-0.024658203,0.12060547,0.018920898,-0.0008468628,-0.19433594,-0.18359375,0.028442383,-0.09472656,-0.027954102,-0.10595703,-0.068359375,-0.20996094,0.059570312,0.076171875,0.056396484,-0.111328125,0.12060547,-0.12988281,-0.05419922,-0.14648438,-0.05078125,-0.033935547,-0.14453125,0.109375,-0.140625,-0.040527344,0.15234375,-0.045898438,0.068359375,-0.08496094,-0.050048828,0.13769531,0.15136719,0.114746094,-0.19140625,-0.03540039,0.13867188,-0.03955078,-0.25976562,-0.009460449,-0.11621094,0.09765625,0.16894531,0.100097656,0.12451172,-0.063964844,-0.125,-0.20605469,-0.110839844,0.05102539,-0.036132812,-0.056640625,-0.0017776489,0.055908203,0.14355469,0.052978516,0.11230469,0.024291992,0.27148438,0.13476562,-0.17675781,0.076660156,0.049804688,0.10498047,0.15917969,-0.071777344,-0.0154418945,-0.0029144287,-8.4877014e-05,-0.19140625,0.24023438,-0.07080078,-0.041992188,-0.07714844,0.12451172,0.0063171387,0.17578125,-0.12451172,0.07470703,0.1484375,0.14746094,-0.11035156,-0.064453125,0.02722168,0.072753906,-0.036132812,-0.04321289,-0.22753906,-0.14160156,-0.049560547,-0.33398438,-0.0043945312,0.18847656,-0.05517578,-0.00023460388,0.07421875,0.18847656,-0.05053711,-0.032226562,-0.09326172,-0.016235352,0.07470703,-0.041259766,0.061279297,-0.071777344,-0.096191406,-0.24414062,-0.036621094,0.095214844,-0.0010604858,-0.002166748,-0.14453125,0.0063476562,0.06591797,-0.107421875,0.15625,0.059570312,0.067871094,-0.0072021484,-0.028930664,-0.07421875,0.12890625,-0.012756348,0.03857422,-0.030517578,-0.055419922,-0.00031661987,-0.05126953,-0.22265625,-0.060058594,-0.13476562,-0.30859375,-0.056396484,0.05078125,0.13378906,0.14746094,0.07470703,-0.0049438477,0.18066406,0.05102539,0.14453125,0.018432617,-0.016357422,0.076171875,0.20996094,0.033935547,0.22265625,0.014282227,0.22363281,0.057617188,-0.020263672,0.111328125,0.060058594,-0.119140625,0.31640625,0.049072266,0.22070312,-0.08544922,0.021484375,-0.09033203,0.03857422,-0.15429688,0.010192871,-0.09716797,0.07763672,0.076660156,-0.044677734,-0.018676758,0.15625,0.20019531,0.17089844,0.0019989014,0.025268555,-0.0138549805,-0.040283203,0.13378906,0.049072266,-0.05126953,-0.017089844,-0.019042969,-0.03564453,0.13964844,0.061279297,-0.10888672,-0.12060547,0.096191406,-0.033447266,-0.12988281,0.022705078,0.071777344,-0.076660156,0.115722656,-0.091308594,0.028808594,-0.050048828,0.203125,-0.038085938,-0.1328125,0.17871094,-0.02746582,-0.0054016113,0.076171875,0.1015625,-0.16796875,-0.08105469,0.109375,-0.14550781,0.0859375,-0.328125,-0.06933594,-0.22753906,-0.10205078,-0.15625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.07470703,-0.12792969,-0.36914062,0.078125,-0.17773438,0.09082031,-0.078125,-0.27539062,-0.12988281,-0.34960938,-0.3203125,-0.08691406,-0.16699219,0.031982422,0.07714844,-0.12597656,-0.20703125,-0.13183594,-0.15234375,0.03930664,-0.03930664,0.03491211,-0.40820312,0.22265625,-0.04663086,-0.29882812,0.012573242,0.078125,-0.034179688,0.087402344,0.12890625,-0.15527344,-0.12695312,0.07861328,-0.38671875,0.19824219,0.12011719,0.02709961,-0.006439209,0.33984375,-0.013061523,-0.21386719,0.056152344,0.068359375,-0.018432617,-0.07910156,0.015075684,-0.010375977,0.017211914,0.083496094,-0.20800781,0.061523438,0.011352539,-0.083496094,-0.11328125,0.20117188,-0.075683594,-0.19042969,-0.20410156,0.07373047,-0.016479492,0.17382812,0.021972656,-0.0703125,0.051513672,0.0703125,-0.24316406,-0.2890625,0.040527344,-0.20703125,0.0036621094,0.13867188,-0.063964844,-0.14746094,-0.029663086,0.0057373047,-0.024047852,0.009643555,0.104003906,-0.01977539,0.014892578,-0.12695312,-0.47851562,-0.038330078,-0.111816406,0.10546875,-0.11279297,-0.095703125,-0.045166016,-0.009765625,0.06640625,0.107910156,0.072265625,-0.24414062,0.12988281,-0.14160156,-0.07910156,0.203125,-0.18261719,0.076660156,0.05078125,-0.13671875,-0.19628906,0.012390137,-0.06542969,-0.061279297,0.076171875,-0.05126953,0.067871094,0.111816406,0.08691406,-0.06201172,0.0859375,0.14160156,-0.19238281,0.033691406,0.018798828,0.14355469,0.0076904297,-0.067871094,-0.024902344,-0.10498047,-0.12402344,0.030517578,0.16992188,0.010314941,-0.017944336,-0.016601562,0.037109375,0.08544922,-0.11669922,-0.032226562,0.12597656,0.13671875,0.10253906,0.09277344,0.08984375,-0.13574219,-0.053955078,0.036376953,0.118652344,-0.047851562,0.25585938,0.072265625,-0.0047912598,0.100097656,-0.07861328,-0.071777344,-0.008911133,-0.106933594,0.08691406,0.10986328,-0.100097656,0.13867188,0.23925781,0.014160156,0.003967285,0.030395508,0.1328125,0.111328125,0.040039062,0.076660156,-0.29882812,-0.059570312,-0.053222656,-0.008239746,-0.038330078,-0.15722656,-0.080566406,0.20019531,-0.00289917,0.091796875,0.041259766,-0.038085938,0.04711914,-0.044433594,-0.05810547,0.036376953,-0.09375,0.024536133,0.06689453,-0.012329102,0.044921875,0.021118164,0.068847656,0.13378906,0.11621094,0.029907227,0.059570312,-0.12060547,0.075683594,-0.047607422,0.07080078,-0.06738281,-0.16503906,-0.056152344,0.10546875,0.010314941,-0.061035156,0.09863281,0.05053711,0.043701172,0.140625,-0.14746094,-0.041503906,0.12890625,0.016967773,-0.028442383,0.022827148,0.140625,-0.10595703,0.060058594,0.05102539,0.08886719,-0.06347656,0.07128906,-0.026367188,0.12109375,-0.025634766,-0.033447266,0.12988281,0.049316406,0.12988281,-0.119140625,0.13085938,0.083496094,-0.10595703,0.056884766,-0.028198242,-0.12890625,0.080078125,-0.04711914,0.095214844,0.33398438,0.06542969,0.15234375,0.01928711,-0.17285156,-0.0067749023,0.012451172,-0.03564453,0.08251953,-0.15527344,0.20703125,0.018188477,0.123535156,0.17675781,-0.15527344,-0.0009994507,-0.04296875,0.2734375,0.095214844,0.09277344,-0.08203125,-0.026977539,-0.1484375,0.07324219,0.11425781,-0.21679688,0.0062561035,-0.07128906,0.11425781,0.10449219,0.14257812,-0.050048828,-0.12597656,0.087402344,-0.004425049,0.0390625,0.026123047,-0.010803223,-0.010192871,0.12207031,0.20410156,-0.1953125,-0.09326172,-0.10253906,-0.043945312,0.076660156,-0.13183594,-0.13378906,-0.087402344,0.27148438,-0.010192871,-0.100097656,0.16503906,0.16601562,-0.03857422,-0.0058288574,0.05053711,-0.038330078,0.052490234,0.11376953,-0.1640625,-0.115722656,0.18457031,-0.050048828,-0.16210938,0.17871094,-0.18261719,0.107910156,-0.08886719,0.09033203,-0.064453125,0.14355469,0.14257812,0.068847656,-0.071777344,0.09326172,0.26757812,-0.049804688,0.028686523,0.104003906,-0.06298828,-0.17773438,0.011657715,-0.033447266,-0.15820312,-0.047607422,-0.095703125,-0.24121094,0.15527344,-0.41601562,0.083984375,-0.33203125,0.00046157837,-0.06933594,-0.38476562,-0.00025749207,0.14941406,0.005340576,-0.09765625,-0.030517578,-0.15039062,0.0119018555,0.087402344,-0.15527344,-0.002746582,-0.24707031,0.013244629,-0.13378906,0.12890625,0.060791016,-0.006439209,-0.057128906,0.20410156,-0.0011520386,-0.11621094,-0.025268555,0.13574219,-0.09716797,0.025268555,0.0019989014,0.03466797,-0.16796875,0.17285156,0.017456055,-0.032226562,0.26171875,0.07128906,-0.063964844,0.10839844,-0.030151367,-0.02368164,-0.04711914,0.080078125,-0.14550781,0.09375,0.08154297,-0.012207031,-0.16015625,0.052001953,-0.12451172,-0.123046875,-0.009155273,-0.17871094,0.01574707,0.14941406,-0.036865234,-0.140625,-0.09716797,-0.022949219,-0.22753906,0.12158203,-0.15136719,0.056152344,-0.30078125,-0.16210938,-0.29882812,0.09472656,-0.028198242,0.072265625,-0.10986328,0.04711914,0.23242188,0.032714844,-0.18359375,-0.03930664,-0.044921875,0.15234375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16992188,0.10888672,0.1875,0.02734375,0.19238281,0.056152344,0.08935547,-0.008728027,-0.15820312,0.09716797,0.18164062,-0.06347656,-0.031982422,-0.06982422,0.056884766,0.2265625,0.010375977,0.013183594,0.018554688,0.18066406,0.059814453,0.019042969,-0.06542969,-0.06689453,0.103027344,0.12451172,-0.14160156,-0.16503906,0.15039062,0.28710938,0.140625,0.023803711,0.02758789,0.07519531,0.096191406,0.13671875,0.041992188,-0.047851562,0.09375,-0.1328125,0.043945312,-0.0050354004,-0.15234375,-0.091308594,0.029785156,0.03955078,0.04296875,0.040283203,0.02722168,-0.025512695,0.03173828,0.15332031,-0.07324219,-0.052246094,-0.17285156,-0.15722656,-0.01550293,0.05810547,0.037841797,-0.06640625,0.19726562,-0.12402344,0.091308594,0.18457031,-0.09863281,-0.002166748,0.2734375,-0.03930664,-0.119628906,-0.22167969,-0.21972656,-0.087402344,-0.004852295,-0.12011719,0.13183594,0.10058594,0.07373047,-0.13867188,0.16894531,0.18554688,-0.13085938,0.1640625,0.16699219,0.061767578,-0.0005302429,0.10253906,-0.068847656,-0.068847656,0.0019683838,0.16601562,-0.00680542,0.11816406,-0.15136719,-0.08496094,-0.23535156,-0.13378906,-0.115722656,0.115722656,-0.06640625,0.016357422,0.007080078,0.061035156,0.1953125,-0.09814453,-0.059814453,0.0005493164,-0.21777344,-0.030395508,-0.08251953,-0.038330078,-0.016723633,0.103027344,-0.24902344,-0.13378906,0.025390625,0.11035156,-0.010375977,0.05859375,-0.018310547,-0.053222656,-0.026977539,0.052001953,-0.084472656,-0.15527344,0.06298828,0.01940918,-0.16503906,-0.00089263916,-0.24316406,-0.099121094,-0.100097656,0.09863281,-0.14160156,-0.11376953,0.14941406,-0.46484375,0.09814453,0.14648438,-0.07470703,-0.0033111572,0.07080078,-0.15722656,-0.22949219,0.064453125,-0.20410156,0.048095703,0.02758789,-0.04296875,0.010498047,-0.13964844,0.04663086,-0.3359375,0.07080078,0.03564453,0.10644531,-0.07763672,-0.040283203,0.12158203,-0.104003906,0.07910156,-0.08935547,-0.053466797,-0.17578125,-0.1796875,0.16894531,-0.0063171387,-0.17578125,-0.053710938,0.114746094,-0.055908203,-0.016357422,-0.203125,-0.118652344,0.072265625,0.1015625,-0.08203125,-0.421875,0.041259766,-0.048583984,-0.05859375,0.017944336,0.044433594,0.040039062,-0.2109375,-0.004852295,-0.05444336,0.025634766,-0.068847656,-0.10546875,-0.01928711,-0.052734375,-0.48632812,-0.09423828,0.23339844,-0.23242188,0.026367188,-0.0071411133,0.16210938,0.067871094,-0.17382812,0.02722168,-0.09277344,-0.072753906,0.06542969,-0.19824219,-0.09716797,-0.16015625,-0.28320312,-0.067871094,0.13964844,-0.13671875,-0.040527344,-0.26757812,-0.087890625,0.07861328,-0.3046875,-0.087402344,0.031982422,-0.119628906,-0.008178711,-0.20214844,-0.029785156,-0.008972168,-0.09082031,-0.34765625,0.03540039,-0.038085938,-0.075683594,-0.20507812,-0.13476562,0.08935547,-0.115234375,-0.028442383,-0.024780273,0.006378174,0.03149414,-0.29296875,-0.33984375,-0.28515625,0.019165039,-0.28710938,0.119140625,0.12011719,0.11328125,0.13183594,0.106933594,-0.106933594,-0.095703125,0.08642578,-0.071777344,0.059326172,0.20214844,-0.31445312,-0.0076293945,0.060546875,0.0119018555,-0.421875,0.25585938,-0.010620117,0.0066833496,0.026489258,-0.047607422,-0.06933594,0.07470703,0.068847656,-0.03930664,0.06201172,0.18652344,-0.07128906,0.046875,0.026977539,-0.123535156,0.033935547,-0.009887695,-0.03857422,0.025878906,-0.21972656,0.026733398,0.21386719,0.13476562,0.032470703,-0.091796875,-0.00019073486,0.040039062,-0.18847656,-0.096191406,0.17675781,-0.33984375,-0.07373047,-0.032714844,-0.20117188,0.0054016113,-0.05810547,-0.025878906,-0.14746094,0.088378906,0.053955078,0.053955078,-0.13085938,-0.15136719,-0.15527344,-0.008483887,0.09472656,-0.13378906,-0.10888672,0.111328125,-0.025878906,-0.095214844,0.03881836,0.09033203,0.0053100586,-0.11230469,-0.13964844,0.14941406,0.037597656,0.057617188,-0.15625,-0.14941406,-0.05078125,-0.27539062,-0.3125,-0.14257812,-0.014343262,-0.030273438,-0.02734375,-0.04321289,0.006591797,0.17871094,0.07324219,-0.06347656,0.3359375,-0.083984375,0.17480469,0.029418945,-0.052246094,-0.23144531,-0.26757812,0.107910156,0.09716797,0.15820312,-0.13964844,0.0063476562,0.20507812,0.041503906,-0.087402344,-0.17382812,0.05493164,0.043945312,0.11376953,0.10986328,-0.025024414,-0.22753906,-0.24707031,-0.11328125,0.067871094,-0.00018024445,0.15917969,-0.096191406,0.044189453,0.076171875,-0.08544922,0.041259766,0.11279297,0.028808594,0.16796875,0.22265625,0.048095703,-0.27929688,-0.29882812,0.0703125,0.038085938,-0.05053711,0.0077819824,0.041503906,-0.048095703,-0.049072266,-0.118652344,0.12011719,-0.18066406,-0.1953125,-0.15527344,0.024169922,0.096191406,-0.34960938,0.042236328,-0.08203125,-0.27929688,0.1953125,-0.044677734,-0.21777344,-0.08496094,-0.28515625,-0.18457031,0.18457031,0.010375977,-0.095214844,-0.12109375,-0.052490234,0.04736328,-0.1953125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.08203125,0.103515625,-0.3203125,-0.18945312,0.018310547,-0.05053711,-0.026611328,-0.09765625,-0.027954102,-0.067871094,-0.024291992,0.052490234,0.01586914,-0.067871094,-0.057128906,0.04345703,-0.23339844,0.0019226074,-0.38085938,-0.076171875,0.14160156,-0.13671875,-0.033447266,0.08203125,-0.10058594,0.103027344,0.057128906,-0.064941406,0.059570312,-0.03857422,0.15527344,-0.01586914,0.014160156,-0.029907227,-0.265625,-0.115722656,0.06347656,-0.027832031,0.026123047,-0.20117188,-0.043945312,-0.057861328,0.059814453,0.04711914,-0.10595703,0.21972656,0.14550781,-0.05078125,0.06738281,-0.13378906,-0.119628906,-0.20800781,0.08251953,-0.04345703,-0.14257812,-0.049804688,-0.083984375,-0.076660156,0.16210938,0.005432129,-0.025268555,-0.0546875,0.14355469,-0.25390625,0.171875,0.07714844,-0.15429688,-0.14941406,-0.06689453,0.10595703,0.14160156,0.12109375,-0.07373047,0.092285156,0.16796875,0.19042969,0.059814453,0.043945312,0.119628906,-0.29492188,-0.16601562,-0.023071289,-0.15332031,-0.24316406,-0.0019073486,-0.17578125,-0.009277344,0.13085938,0.076171875,0.092285156,0.111816406,-0.018676758,-0.080078125,0.2578125,-0.06738281,-0.05834961,0.010192871,-0.05517578,-0.19726562,-0.18164062,0.03466797,-0.07373047,-0.07861328,0.052246094,0.009887695,-0.04736328,-0.07421875,-0.012878418,-0.016479492,0.08642578,0.010620117,-0.122558594,0.20996094,-0.06689453,-0.13378906,-0.072753906,0.106933594,-0.055419922,-0.107421875,-0.016357422,0.061523438,-0.040527344,0.12988281,-0.013549805,0.12158203,0.018676758,-0.012878418,-0.024780273,0.24609375,-0.16796875,-0.17285156,-0.19238281,0.087890625,-0.05517578,-0.08984375,-0.107421875,0.045166016,-0.006286621,0.12402344,0.040771484,0.024780273,0.09814453,0.15527344,0.17089844,0.043945312,-0.20507812,-0.18554688,-0.05834961,-0.17089844,0.1328125,-0.055908203,0.049316406,-0.0859375,-0.012512207,0.12109375,0.10595703,0.083496094,0.10839844,0.038330078,-0.103515625,-0.14160156,-0.1484375,-0.007751465,-0.123535156,-0.041748047,0.036865234,0.24414062,0.10498047,0.080566406,-0.041748047,-0.12402344,0.01159668,0.017822266,0.09326172,0.05029297,0.017333984,0.33398438,-0.087890625,-0.033935547,-0.09765625,0.08886719,-0.021972656,0.052001953,0.016479492,-0.09326172,-0.04272461,0.08154297,0.03173828,0.13476562,0.06201172,0.109375,0.017700195,0.24316406,-0.078125,-0.19628906,-0.20117188,-0.092285156,-0.21679688,-0.16210938,-0.039794922,-0.06982422,-0.13378906,-0.012268066,0.07910156,0.13964844,0.036865234,-0.055664062,-0.025512695,0.14941406,-0.06591797,-0.08642578,-0.22558594,-0.015563965,-0.09326172,-0.009887695,-0.06640625,-0.0107421875,-0.22265625,0.0058288574,-0.029541016,0.109375,-0.083496094,0.14941406,0.048339844,-0.11279297,-0.20898438,-0.07714844,0.00063323975,-0.22070312,0.115722656,0.041992188,0.045898438,0.0069274902,-0.234375,0.24511719,0.17480469,0.072265625,-0.114746094,-0.09277344,-0.07519531,0.072265625,-0.045654297,0.11621094,-0.13769531,0.025268555,-0.020629883,-0.06225586,0.19726562,0.0015869141,-0.030517578,-0.15722656,-0.17382812,-0.07519531,-0.12890625,-0.005218506,0.009033203,0.15820312,0.084472656,-0.14941406,-0.14941406,0.04321289,0.009155273,0.0859375,-0.09863281,0.079589844,-0.15332031,-0.21679688,-0.024169922,-0.08691406,0.06689453,-0.04272461,-0.13867188,-0.07714844,-0.018798828,-0.18457031,-0.22167969,-0.0054626465,-0.22753906,-0.0546875,0.119628906,-0.04345703,-0.060546875,-0.040039062,-0.16796875,0.06542969,-0.20019531,-0.13867188,-0.03955078,0.019042969,-0.07128906,-0.171875,-0.19628906,-0.09814453,0.14355469,-0.088378906,-0.07470703,0.06640625,-0.01586914,-0.11767578,-0.059814453,0.03564453,0.013427734,0.10205078,0.022460938,-0.17773438,0.009277344,-0.17089844,-0.17578125,-0.1015625,-0.05419922,-0.05444336,0.07519531,0.044921875,-0.063964844,0.10205078,0.048828125,-0.045410156,-0.01928711,0.05126953,0.0034179688,-0.040527344,0.17773438,-0.09472656,0.099121094,-0.013549805,-0.19238281,-0.05834961,-0.006134033,-0.020019531,0.10498047,0.13769531,0.111328125,-0.18652344,0.0009460449,0.020996094,-0.076660156,-0.12207031,0.16308594,-0.115722656,-0.14355469,-0.029174805,0.22558594,-0.30859375,0.1484375,0.05493164,0.060791016,-0.16308594,0.13183594,-0.052246094,0.07519531,0.059570312,-0.020263672,0.21582031,-0.12597656,-0.125,0.099121094,0.123046875,0.06225586,0.068847656,0.03540039,0.01586914,-0.0014266968,-0.087890625,0.046875,-0.07763672,0.33007812,0.020019531,0.038085938,-0.12988281,0.017822266,-0.047607422,-0.064453125,-0.044189453,0.12451172,0.034423828,0.064453125,-0.002609253,0.20117188,-0.07421875,0.013122559,-0.020385742,-0.032714844,0.1484375,0.06738281,-0.009460449,0.076660156,-0.057617188,-0.026000977,-0.14648438,-0.18554688,-0.11279297,0.11621094,-0.03515625,0.14355469,0.056396484,-0.03149414,0.027709961,0.002960205,0.15429688,0.044921875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.0071411133,0.014465332,-0.057373047,-0.019165039,0.03930664,0.057373047,0.016601562,0.12060547,0.08496094,-0.07324219,-0.026855469,-0.022338867,0.017211914,0.12597656,-0.032226562,-0.030151367,0.104003906,-0.11035156,-0.08691406,-0.12060547,-0.011657715,0.0024414062,-0.087402344,-0.021362305,0.07861328,-0.07421875,-0.01586914,-0.13085938,-0.061279297,0.0051879883,-0.072265625,-0.015319824,0.0073547363,-0.016845703,-0.14746094,-0.107421875,-0.021118164,0.028320312,0.08154297,0.14355469,-0.099121094,-0.09863281,0.0056762695,-0.07763672,0.03149414,0.0546875,0.088378906,0.023071289,-0.06933594,0.18066406,-0.12988281,-0.06738281,-0.076171875,-0.00021457672,0.006652832,-0.08203125,0.013061523,-0.064453125,-0.15136719,0.296875,-0.020996094,-0.09326172,-0.029296875,0.064941406,-0.09375,0.21484375,0.026489258,-0.13574219,-0.053222656,0.045166016,-0.023925781,-0.14355469,-0.056396484,0.053466797,-0.13964844,0.23242188,0.030517578,-0.123046875,0.11035156,-0.053710938,0.07519531,-0.049560547,-0.030273438,0.06542969,0.007751465,-0.039794922,-0.08105469,0.091308594,0.026123047,0.09863281,0.008361816,0.0041503906,-0.095703125,0.13085938,0.022705078,-0.060546875,0.00063323975,-0.030639648,-0.1015625,-0.015991211,0.16308594,-0.07373047,0.048583984,0.043945312,-0.09033203,0.010925293,-0.08642578,-0.17773438,0.020385742,0.048095703,0.061767578,-0.099609375,-0.078125,0.13867188,-0.13574219,-0.12792969,0.16113281,0.09814453,-0.09277344,0.11279297,0.09423828,-0.14941406,0.0028533936,0.17675781,0.056396484,0.0019073486,0.14648438,-0.016113281,0.123046875,0.028320312,0.00019931793,-0.1015625,-0.07519531,-0.0154418945,0.096191406,0.0073547363,-0.11279297,0.025634766,0.063964844,0.15136719,0.022705078,-0.079589844,-0.05493164,0.16699219,-0.015258789,0.14453125,-0.092285156,-0.091308594,0.06689453,-0.06689453,0.056640625,0.114746094,0.032470703,0.030395508,0.063964844,-0.04345703,-0.08496094,0.006286621,-0.072753906,0.0032196045,-0.021606445,0.091308594,-0.14257812,-0.05908203,0.08251953,-0.15039062,-0.05444336,0.18554688,0.048583984,0.13867188,-0.04663086,0.08251953,-0.01965332,0.10498047,0.2734375,0.06933594,-0.095703125,0.104003906,-0.14648438,0.07714844,0.057617188,-0.12597656,0.00390625,-0.12792969,-0.053710938,-0.09472656,0.024291992,-0.02355957,0.015563965,0.078125,0.13867188,0.052001953,-0.088378906,0.021362305,-0.03491211,-0.07421875,-0.06933594,0.119628906,-0.044433594,-0.13378906,0.06542969,-0.10644531,-0.044189453,0.084472656,-0.018554688,0.033447266,0.10839844,0.018798828,-0.07861328,0.15332031,-0.083496094,-0.13769531,-0.22753906,-0.19140625,0.12597656,-0.05908203,-0.07421875,-0.114746094,0.035888672,-0.09375,-0.043945312,0.047851562,0.036132812,-0.022216797,-0.16894531,-0.09082031,-0.14453125,-0.22167969,0.08251953,0.06347656,-0.084472656,-0.036865234,0.007751465,-0.10644531,-0.021728516,0.13183594,-0.19726562,-0.100097656,-0.14160156,0.104003906,-0.018188477,-0.04345703,-0.15527344,-0.109375,0.040283203,-0.01940918,0.0703125,0.05078125,-0.021362305,-0.08496094,-0.119628906,-0.06542969,-0.064453125,0.022949219,0.045410156,0.00090789795,0.0703125,-0.031982422,-0.10058594,-0.17089844,-0.05444336,0.041015625,-0.01361084,-0.140625,-0.12158203,-0.096191406,-0.049560547,0.080078125,0.028930664,0.015197754,-0.10058594,-0.18261719,0.059570312,0.011291504,-0.10839844,0.01159668,0.002670288,-0.13867188,-0.01977539,-0.1640625,0.06689453,-0.14746094,-0.095703125,0.048339844,-0.15527344,-0.06542969,0.060302734,-0.16894531,-0.018310547,0.029296875,-0.04345703,-0.14648438,0.010498047,0.005065918,0.076660156,-0.11425781,0.038330078,-0.14648438,-0.0008087158,0.049804688,-0.1328125,-0.109375,-0.03100586,-0.10253906,-0.08496094,-0.008056641,-0.10888672,-0.12402344,-0.051757812,0.072265625,-0.03881836,0.06542969,-0.027832031,-0.118652344,0.041503906,0.04272461,-0.13183594,0.0007133484,-0.09863281,-0.123046875,0.0154418945,0.11328125,0.0095825195,-0.043701172,-0.103515625,-0.021362305,0.021728516,-0.059326172,-0.091796875,-0.19824219,0.072753906,0.15625,-0.234375,-0.13867188,-0.11376953,-0.14648438,-0.020874023,-0.12597656,-0.072265625,-0.13964844,-0.18261719,0.017089844,-0.02734375,-0.115234375,-0.03491211,-0.20117188,0.010009766,-0.08935547,-0.022705078,-0.002822876,-0.068359375,0.15820312,-0.0138549805,-0.032226562,-0.14257812,0.012390137,-0.064941406,0.0057678223,0.0034637451,-0.103027344,-0.064453125,-0.16308594,0.09814453,0.14550781,-0.010131836,-0.015258789,-0.0015716553,0.04296875,-0.008544922,0.05029297,-0.045410156,-0.1328125,-0.1953125,-0.107421875,0.04296875,0.02355957,0.07763672,-0.07714844,-0.018310547,-0.083496094,-0.14941406,0.049560547,-0.0859375,-0.11425781,-0.13867188,-0.07470703,1.3291836e-05,-0.040771484,-0.04663086,0.002822876,0.052978516,-0.068359375,0.04321289,-0.13183594,-0.018066406,-0.048828125,-0.18261719,0.034179688,-0.052001953,-0.033203125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.19628906,-0.06689453,-0.1953125,0.015136719,0.15625,0.13867188,0.30664062,-0.16113281,-0.12890625,-0.1328125,0.10839844,-0.0625,0.15527344,0.19042969,-0.013061523,0.119140625,-0.19140625,0.11767578,-0.15039062,-0.11376953,-0.011230469,-0.13085938,0.079589844,-0.095703125,-0.11425781,-0.0075683594,-0.07519531,-0.13476562,-0.111328125,-0.09082031,-0.02758789,0.05029297,0.09814453,-0.20410156,-0.14941406,-0.059570312,0.19824219,0.24121094,0.13183594,-0.31054688,0.048339844,-0.18164062,-0.06225586,-0.060546875,-0.07714844,-0.17382812,-0.016845703,0.036376953,0.12792969,-0.083984375,-0.19238281,-0.076171875,0.06347656,-0.12109375,-0.23632812,-0.40625,-0.115722656,-0.15332031,-0.22167969,-0.0053100586,0.013549805,-0.29296875,0.042236328,0.18945312,-0.071777344,0.028930664,-0.092285156,-0.05517578,-0.20117188,-0.09863281,-0.12792969,-0.07519531,-0.080078125,-0.15722656,-0.1640625,-0.0018386841,0.047851562,-0.12451172,-0.06689453,0.10449219,-0.040283203,-0.1484375,-0.13964844,-0.07714844,0.072753906,0.05493164,-0.0037231445,-0.057128906,-0.079589844,-0.07128906,0.23730469,-0.30859375,0.088378906,-0.15625,-0.068847656,0.12890625,-0.12695312,0.063964844,-0.11328125,0.088378906,0.08105469,-0.05517578,-0.063964844,-0.2109375,-0.07861328,0.012939453,-0.03540039,0.076660156,0.08544922,-0.05102539,-0.03857422,-0.06689453,0.13085938,-0.036621094,-0.041015625,-0.00029182434,0.03515625,0.12402344,-0.099609375,0.13574219,0.034179688,-0.0041503906,-0.17089844,0.08642578,0.056396484,0.20507812,0.009521484,-0.043945312,0.072265625,-0.06640625,-0.18652344,0.118652344,0.19238281,-0.0024108887,0.05126953,-0.17578125,0.049804688,-0.06591797,-0.037109375,0.12695312,0.041259766,-0.19433594,-0.033691406,-0.0064697266,0.08886719,-0.091308594,-0.12158203,0.068847656,0.07861328,0.095703125,-0.021850586,-0.1640625,0.021118164,-0.14453125,-0.017822266,0.047851562,-0.0050354004,0.006652832,-0.15429688,0.12011719,0.1875,0.048339844,-0.14355469,-0.052246094,0.010559082,-0.072753906,-0.17578125,-0.18652344,-0.013793945,-0.067871094,-0.19824219,-0.29882812,-0.018066406,-0.021850586,-0.05078125,0.076171875,-0.08935547,-0.10546875,0.1640625,0.03930664,0.053222656,0.14355469,0.033203125,-0.15820312,-0.125,0.107910156,0.055419922,0.03930664,0.115234375,-0.042236328,-0.18261719,0.19042969,-0.080078125,-0.11035156,0.060302734,0.12890625,-0.13085938,-0.1328125,0.013427734,-0.0030212402,0.038085938,0.35742188,0.07373047,0.22558594,0.079589844,-0.087402344,-0.14453125,0.087890625,-0.16015625,-0.13671875,-0.032714844,0.025024414,-0.11328125,0.029541016,0.25585938,0.025878906,-0.0062561035,0.14453125,-0.016845703,-0.00045204163,-0.11328125,-0.12597656,-0.26757812,0.040771484,-0.20800781,0.009521484,-0.08642578,0.12011719,-0.03930664,-0.07714844,-0.20214844,-0.3046875,0.02331543,0.17578125,0.05908203,0.068847656,-0.103515625,0.171875,-0.07519531,0.14550781,0.006072998,0.021118164,0.045898438,-0.059814453,-0.40039062,-0.0010299683,0.21679688,-0.10449219,-0.061523438,-0.080566406,-0.030395508,-0.096191406,-0.09375,0.18554688,-0.27148438,0.12597656,-0.10595703,-0.15429688,0.021728516,-0.09033203,-0.28515625,-0.004180908,0.11328125,0.057861328,0.05908203,0.067871094,0.25976562,-0.0071411133,0.036132812,0.13183594,-0.0859375,0.23046875,-0.30859375,-0.053222656,-0.1171875,0.11816406,-0.32617188,0.079589844,0.095214844,-0.072753906,0.010559082,0.041503906,0.055664062,0.115234375,0.13769531,-0.037841797,-0.1640625,-0.020507812,-0.12890625,-0.2890625,-0.119140625,0.049316406,-0.049316406,-0.009765625,0.06225586,0.11669922,-0.099121094,0.002670288,0.11328125,-0.091796875,-0.12988281,-0.009399414,-0.114746094,0.08886719,-0.016967773,-0.21484375,0.021850586,-0.047607422,-0.13574219,-0.05126953,0.15136719,-0.12890625,-0.07763672,-0.09814453,-0.15332031,-0.0048217773,-0.103515625,-0.123046875,-0.37890625,0.040527344,0.024536133,-0.15234375,-0.033203125,-0.24511719,-0.068847656,0.11816406,-0.15722656,-0.04638672,0.055419922,-0.23242188,-0.12988281,-0.020751953,-0.23925781,-0.11669922,0.03491211,0.14257812,0.021240234,-0.092285156,-0.057861328,-0.13183594,-0.095214844,0.07373047,0.21679688,-0.31054688,-0.0087890625,-0.16601562,-0.37695312,0.07861328,-0.08300781,0.012634277,0.006011963,0.076660156,0.036865234,-0.07470703,0.015075684,0.171875,-0.020141602,0.14257812,0.21191406,-0.09082031,0.056396484,-0.23535156,-0.07714844,-0.13085938,-0.10546875,-0.059814453,-0.15917969,-0.02368164,0.021972656,-0.07373047,-0.031982422,0.111328125,0.036132812,-0.041259766,0.08251953,-0.24316406,0.018920898,-0.013061523,-0.03955078,0.099121094,0.08544922,0.05493164,-0.23242188,0.17480469,-0.060546875,-0.01965332,0.0070495605,-0.03515625,-0.13085938,0.029907227,0.012573242,0.002090454,0.006011963,-0.03881836,0.084472656,0.115722656,-0.06591797,-0.08154297,-0.18261719,0.09326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.14746094,0.13476562,0.17480469,-0.092285156,0.09033203,0.29492188,0.096191406,0.104003906,0.064453125,-0.022705078,-0.025878906,-0.03564453,-0.07714844,0.21191406,-0.0024261475,0.19726562,-0.030029297,-0.103515625,-0.05078125,-0.0034484863,0.043701172,-0.015625,-0.06689453,0.1640625,0.106933594,0.171875,0.13964844,-0.07324219,-0.002380371,0.11621094,0.08984375,0.11669922,-0.08984375,0.030273438,-0.068359375,-0.087402344,0.0032806396,0.22753906,-0.044921875,0.18066406,0.044433594,-0.036132812,-0.21289062,-0.123046875,0.051757812,-0.018310547,-0.2109375,0.067871094,-0.05517578,-0.1640625,0.025390625,-0.09423828,-0.12792969,0.047607422,-0.095214844,-0.044921875,-0.056152344,-0.012207031,-0.29296875,-0.06591797,-0.12207031,0.020019531,-0.0859375,0.011962891,0.056152344,-0.075683594,-0.19238281,-0.3125,-0.23925781,-0.041992188,-0.013244629,0.03930664,0.075683594,-0.19433594,0.026855469,0.072265625,-0.04345703,-0.09375,-0.27148438,-0.3359375,-0.071777344,-0.052246094,0.16015625,-0.12011719,-0.114746094,0.09716797,0.18164062,-0.22753906,-0.09667969,0.079589844,-0.19042969,0.045898438,-0.068359375,0.27148438,-0.013366699,0.075683594,-0.10498047,-0.022338867,-0.07519531,-0.064941406,0.0047302246,0.24511719,0.16210938,-0.100097656,-0.016357422,0.09765625,0.10595703,-0.01550293,0.053222656,0.036376953,-0.10205078,0.23925781,0.045898438,0.031982422,-0.051757812,0.03173828,0.05493164,0.11279297,-0.080078125,0.087402344,-0.0019836426,-0.014953613,-0.02734375,0.03857422,0.084472656,-0.080566406,-0.11816406,0.140625,0.057617188,-0.19433594,0.080078125,-0.01574707,0.17578125,0.03955078,0.076660156,0.12207031,0.019165039,-0.12060547,-0.0051879883,-0.022705078,-0.123535156,0.010986328,0.001876831,-0.16601562,-0.059570312,-0.171875,-0.16894531,-0.27929688,0.13378906,-0.107421875,-0.096191406,0.07421875,0.023925781,-0.20410156,-0.0045776367,0.12597656,-0.041015625,-0.27148438,-0.17773438,-0.11328125,-0.20410156,-0.1015625,0.12011719,0.099121094,-0.35742188,-0.17773438,-0.10449219,-0.14648438,-0.08642578,0.09814453,-0.011230469,-0.080566406,0.043945312,0.032958984,-0.006286621,0.19335938,-0.11425781,-0.328125,0.06640625,-0.00793457,-0.17089844,0.34375,-0.001121521,-0.015563965,-0.0010223389,-0.103515625,-0.028686523,-0.29492188,0.12695312,0.099609375,-0.19335938,0.17871094,0.03149414,-0.04248047,-0.12451172,0.16308594,-0.19921875,0.08203125,0.119628906,-0.013671875,-0.08203125,-0.15136719,0.033203125,-0.16699219,0.052246094,-0.06689453,-0.15039062,0.092285156,-0.025024414,-0.010864258,-0.013122559,-0.045410156,-0.0138549805,-0.09375,0.25195312,0.04248047,-0.11816406,-0.20019531,0.10644531,0.234375,-0.030273438,-0.09423828,-0.017822266,-0.26171875,-0.029418945,0.011291504,-0.14453125,-0.3046875,0.09277344,-0.053955078,0.048828125,0.071777344,0.021850586,-0.06347656,0.10058594,-0.07373047,0.23828125,-0.01940918,-0.0018463135,-0.31835938,-0.18261719,0.050048828,0.020019531,0.13085938,0.0099487305,-0.08642578,0.13085938,-0.14746094,0.04321289,-0.05029297,-0.040283203,-0.12792969,-0.068359375,0.22558594,-0.17382812,0.34570312,-0.20019531,-0.052001953,-0.10644531,-0.08642578,0.0038146973,-0.13964844,0.03173828,-0.12402344,-0.0859375,0.10058594,-0.028564453,-0.15820312,-0.09326172,0.057373047,-0.16210938,0.24804688,-0.16796875,0.15722656,0.013061523,0.034179688,-0.10644531,-0.09667969,-0.041992188,-0.010314941,-0.111328125,0.029052734,-0.088378906,-0.09423828,0.01550293,-0.051757812,-0.00061416626,0.055664062,0.16015625,0.12207031,-0.14257812,-0.14453125,-0.091308594,-0.02709961,0.045654297,-0.013916016,0.033691406,-0.016845703,0.048828125,-0.0062561035,0.10839844,0.037597656,-0.06201172,-0.20703125,0.045410156,0.072753906,-0.02368164,-0.03173828,-0.041748047,-0.011962891,-0.104003906,-0.047851562,0.083984375,0.11816406,0.09082031,-0.088378906,0.12597656,0.014160156,0.09326172,-0.1796875,-0.072753906,-0.23144531,0.028442383,-0.14941406,0.078125,-0.052490234,-0.11328125,-0.12792969,-0.11669922,-0.056396484,0.05834961,0.076171875,-0.088378906,-0.19628906,0.14355469,0.14355469,0.022827148,-0.17382812,0.0070495605,-0.09716797,0.030151367,0.17871094,0.119140625,0.067871094,-0.07714844,0.04736328,-0.030517578,-0.014526367,-0.06982422,-0.11279297,0.023925781,-0.053955078,0.14453125,0.078125,-0.02319336,-0.14941406,0.059326172,-0.10058594,-0.057617188,0.005493164,-0.05444336,0.040283203,0.033447266,-0.052246094,-0.13378906,-0.024902344,-0.022705078,-0.0076904297,0.1015625,-0.028808594,-0.10546875,-0.10449219,-0.03466797,0.15722656,0.026123047,0.15722656,0.055908203,0.07714844,0.09472656,0.09863281,-0.01940918,-0.10644531,0.14160156,-0.22070312,0.01965332,-0.26171875,0.095703125,-0.26757812,0.23242188,-0.008239746,-0.0066223145,-0.123535156,0.09863281,0.040527344,0.17089844,0.18066406,0.044677734,-0.013366699,0.045410156,-0.22070312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.076660156,-0.07861328,-0.0073547363,0.2421875,-0.022583008,0.19335938,-0.018188477,0.083496094,-0.008239746,-0.018676758,0.076171875,0.020263672,-0.16113281,0.12988281,-0.0051574707,0.12792969,-0.11230469,0.068847656,0.0069885254,0.115234375,-0.033935547,0.076171875,0.026489258,-0.06347656,0.080078125,0.15136719,-0.027832031,0.03149414,-0.17480469,0.17285156,0.0099487305,0.099121094,-0.3828125,-0.080566406,-0.19335938,-0.019042969,-0.16601562,-0.02709961,-0.040283203,-0.18945312,-0.072265625,0.028076172,0.021240234,-0.29296875,-0.057861328,-0.09277344,0.0030670166,-0.053222656,0.1328125,-0.19921875,-0.1640625,-0.06640625,-0.16503906,-0.052490234,0.021850586,-0.32421875,0.07373047,-0.22167969,0.07080078,-0.118652344,0.22167969,-0.13964844,-0.009521484,-0.00982666,0.12597656,-0.29101562,-0.016113281,-0.15917969,0.11425781,-0.036621094,-0.08203125,-0.091796875,-0.03857422,-0.056884766,0.032714844,-0.024780273,0.1328125,-0.24414062,0.050048828,-0.22558594,0.20507812,0.01953125,0.12451172,0.15917969,0.07470703,-0.080078125,0.05883789,0.14648438,0.05883789,0.05419922,0.024047852,-0.006500244,-0.05444336,0.104003906,-0.0009994507,0.15917969,0.008056641,0.030761719,0.08203125,0.0625,0.040039062,0.13671875,-0.08984375,-0.016113281,-0.041992188,-0.0058288574,0.114746094,-0.1875,0.09423828,0.064941406,0.06640625,0.15234375,0.06640625,0.21777344,-0.10449219,-0.039794922,-0.04272461,-0.09667969,-0.12451172,-0.07373047,0.03491211,-0.011230469,-0.091308594,-0.09375,-0.13964844,-0.012939453,0.044677734,0.061279297,0.25390625,0.08886719,-0.23730469,-0.072265625,-0.103515625,-0.059326172,0.03857422,-0.296875,0.049804688,0.1015625,0.009521484,0.021728516,0.14257812,-0.16796875,0.12792969,-0.083984375,0.017700195,0.095214844,0.15234375,-0.18652344,0.07373047,0.009521484,0.096191406,-0.24804688,0.123046875,-0.14453125,-0.119140625,0.087890625,0.095214844,-0.265625,0.048828125,-0.28125,-0.05102539,0.12597656,0.15039062,0.006164551,0.106933594,-0.18847656,0.04638672,-0.035888672,-0.03173828,0.06347656,0.044677734,-0.12207031,0.039794922,0.0134887695,0.002090454,0.103027344,0.022827148,0.026611328,-0.055908203,0.018066406,-0.1484375,-0.19042969,-0.107910156,-0.15917969,0.052001953,0.18457031,0.02746582,-0.033935547,-0.050048828,-0.111328125,0.119140625,-0.057617188,-0.025268555,0.040283203,-0.0234375,-0.122558594,-0.1015625,-0.328125,0.04272461,-0.24121094,0.037597656,0.021362305,0.12890625,0.022583008,0.040771484,0.075683594,0.010559082,-0.08105469,0.12988281,-0.140625,0.05126953,-0.056640625,-0.08154297,-0.07470703,0.20507812,-0.23339844,-0.042236328,0.014404297,0.1875,0.087890625,0.014953613,-0.39453125,-0.04296875,-0.19921875,-0.21679688,0.048095703,0.05493164,-0.13476562,0.18261719,0.19238281,0.24023438,-0.110839844,-0.052246094,0.104003906,-0.17285156,-0.11669922,0.03564453,-0.17578125,-0.030517578,-0.18554688,-0.023803711,-0.14453125,-0.10546875,-0.009460449,0.1796875,0.107421875,-0.08496094,-0.036621094,0.020874023,-0.20019531,0.06347656,-0.27539062,0.13867188,0.11669922,-0.051757812,-0.06347656,0.17675781,0.14648438,-0.07519531,0.13964844,0.079589844,-0.18945312,0.016357422,-0.13671875,-0.10205078,0.026733398,-0.056884766,-0.036132812,-0.09277344,-0.04736328,-0.07763672,-0.19726562,-0.10888672,-0.016723633,0.051757812,-0.100097656,-0.05029297,-0.040039062,-0.19335938,0.03540039,0.078125,-0.05834961,-0.047607422,0.14355469,0.060791016,-0.08300781,0.050048828,-0.025146484,0.14257812,0.16308594,0.07080078,-0.15429688,0.05444336,-0.27148438,-0.044677734,0.00075531006,-0.08154297,0.07861328,0.15039062,0.09814453,0.12402344,0.004699707,-0.0033111572,-0.05102539,-0.11669922,-0.083984375,-0.08691406,-0.16601562,0.24414062,-0.36132812,-0.037353516,-0.20019531,0.03540039,-0.016235352,0.12597656,-0.40039062,-0.026977539,-0.32421875,-0.034423828,-0.29296875,0.063964844,-0.061035156,-0.041015625,0.092285156,-0.05908203,0.26367188,-0.080566406,-0.3359375,-0.05029297,-0.15527344,0.0859375,-0.16015625,-0.060058594,-0.036376953,-0.106933594,0.06298828,0.16796875,-0.11376953,-0.02368164,0.09326172,0.006439209,-0.0057373047,-0.21679688,0.0234375,-0.1171875,0.103515625,0.024536133,0.037841797,0.115722656,0.03149414,-0.067871094,-0.0020141602,0.12792969,-0.03857422,0.0115356445,-0.045166016,0.064453125,0.13085938,-0.1875,0.16699219,0.017089844,0.02758789,-0.1796875,-0.029418945,0.03930664,0.01977539,-0.0146484375,0.076171875,0.13476562,0.080078125,0.17382812,-0.18066406,0.092285156,-0.13769531,0.021728516,0.15722656,0.030395508,0.041503906,0.111816406,-0.08886719,0.07324219,-0.08544922,-0.022583008,0.025390625,-0.022338867,-0.17480469,-0.051513672,-0.03930664,-0.018188477,-0.3671875,-0.20996094,0.09667969,-0.123046875,-0.05908203,0.24121094,-0.46484375,0.07421875,-0.21582031,-0.096191406,-0.13476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.07763672,-0.002380371,0.16308594,0.06201172,0.060791016,0.21972656,0.18457031,0.0065612793,-0.052001953,-0.10986328,0.10986328,-0.13183594,-0.026977539,0.08642578,0.07470703,-0.052246094,0.07421875,-0.022949219,0.11376953,0.100097656,-0.18164062,0.09375,0.10644531,0.048339844,0.10644531,0.025878906,0.12695312,0.20410156,-0.057373047,0.041748047,0.07128906,-0.03149414,0.057128906,0.005340576,0.07470703,0.021972656,-0.1015625,-0.20898438,0.09814453,0.08154297,0.022827148,0.035888672,0.09033203,0.04711914,0.03955078,0.033935547,-0.06689453,-0.09033203,0.06591797,0.10253906,0.19726562,0.07324219,0.030151367,-0.010437012,0.14355469,0.11230469,-0.08642578,-0.013916016,0.045410156,-0.030517578,-0.023925781,0.087890625,0.08105469,0.025390625,0.13476562,-0.15625,0.0067443848,0.0059509277,-0.08886719,-0.11767578,0.234375,0.052978516,-0.08691406,0.09667969,0.17382812,0.012817383,-0.020629883,0.103515625,0.2890625,-0.072265625,0.016113281,-0.12011719,-0.10107422,-0.02722168,-0.23242188,0.25390625,0.03125,0.114746094,0.04296875,-0.07714844,0.10498047,-0.041015625,-0.004211426,0.079589844,-0.099609375,0.20605469,0.0546875,0.017211914,-0.044921875,0.056884766,-0.00037002563,0.12109375,-0.18066406,0.06689453,-0.07324219,-0.014892578,0.059326172,0.114746094,0.03515625,-0.016235352,-0.111816406,0.12988281,-0.19140625,0.08544922,-0.049316406,-0.09033203,0.099121094,0.046142578,0.006134033,0.059814453,0.06982422,-0.041259766,0.13085938,0.125,-0.031982422,0.12109375,-0.11621094,-0.083496094,-0.00016975403,-0.013549805,0.17871094,0.01361084,0.10839844,-0.079589844,-0.16601562,0.052978516,0.100097656,0.0703125,0.11279297,0.030273438,-0.049804688,0.056396484,0.123535156,-0.16992188,0.18164062,0.11669922,-0.024414062,-0.037353516,0.03857422,-0.14941406,0.3359375,0.08886719,0.040283203,0.012634277,-0.19140625,0.09472656,-0.07763672,-0.13085938,-0.057128906,0.08886719,0.024536133,-0.08300781,-0.21386719,-0.009460449,-0.12402344,0.07861328,0.064941406,0.14550781,0.060546875,-0.203125,0.068847656,-0.20605469,0.079589844,-0.13476562,-0.10888672,0.12451172,0.020996094,-0.08544922,-0.06982422,-0.088378906,0.091796875,-0.057617188,-0.17773438,0.029541016,-0.056640625,-0.056152344,-0.010681152,0.050048828,0.03515625,0.048095703,-0.12158203,-0.056640625,0.13964844,0.076171875,-0.048095703,-0.08300781,0.22363281,-0.11376953,-0.04296875,-0.111816406,-0.08203125,-0.13476562,0.14746094,-0.006652832,0.119140625,-0.0046081543,-0.04711914,-0.10644531,0.047851562,-0.0234375,-0.09472656,-0.017578125,0.036865234,0.05908203,-0.0028076172,0.03930664,0.041992188,-0.08935547,-0.059814453,0.087402344,-0.0030212402,0.08300781,0.11035156,-0.06933594,0.078125,-0.03857422,-0.017700195,0.10595703,0.09863281,-0.07421875,0.19726562,0.08203125,-0.099121094,-0.24511719,0.044921875,-0.11328125,-0.068359375,-0.029663086,0.01977539,-0.016967773,-0.29882812,0.042236328,-0.1484375,0.11035156,-0.18164062,-0.049560547,0.10839844,-0.14550781,-0.025878906,-0.22753906,0.06591797,0.104003906,-0.24804688,-0.2578125,-0.019165039,-0.3515625,0.11279297,0.015991211,-0.1484375,0.017456055,-0.13769531,0.0043945312,0.068359375,-0.03881836,0.041992188,-0.13574219,0.026489258,-0.1796875,0.03857422,-0.029418945,-0.15332031,-0.37304688,0.1640625,0.05834961,0.012573242,0.09082031,-0.1015625,0.15234375,0.1484375,0.019165039,-0.092285156,-0.04296875,-0.10644531,-0.04663086,-0.16992188,-0.22167969,0.06201172,-0.08300781,0.021606445,0.037597656,-0.10205078,-0.21777344,-0.23242188,0.08691406,0.13574219,0.040771484,0.060791016,-0.1875,-0.15917969,-0.20605469,-0.005340576,-0.096191406,-0.03100586,0.029663086,-0.16992188,0.053955078,-0.0079956055,-0.13574219,0.072265625,-0.09716797,0.123046875,-0.020263672,0.06640625,-0.20898438,-0.0046081543,0.12695312,-0.068847656,0.12060547,0.03857422,0.0146484375,-0.23828125,0.095703125,-0.14257812,0.051757812,-0.09082031,-0.114746094,0.007537842,-0.26757812,-0.07470703,-0.02319336,0.20019531,0.07324219,-0.11230469,0.03540039,-0.13964844,0.064941406,0.025756836,-0.19726562,-0.109375,0.05883789,0.046875,-0.027709961,-0.018310547,-0.0115356445,-0.072265625,0.17089844,-0.052001953,0.033691406,-0.10205078,0.10546875,-0.007171631,-0.13476562,-0.21972656,-0.07910156,-0.10986328,0.10986328,-0.08886719,-0.0099487305,-0.20800781,0.103515625,0.0020141602,0.14550781,-0.071777344,-0.07763672,0.0859375,0.025146484,-0.09033203,-0.13769531,0.0027923584,3.194809e-05,-0.005065918,0.118652344,-0.15820312,0.022216797,-0.08203125,-0.08300781,-0.030029297,0.13378906,-0.044189453,0.1640625,-0.068359375,-0.20410156,-0.0625,0.12060547,0.0625,0.046142578,-0.107421875,-0.014892578,0.1015625,-0.14746094,-0.099609375,0.19921875,-0.014770508,-0.1796875,0.033447266,0.0002937317,-0.0099487305,0.09375,-0.10644531,0.103515625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12988281,-0.063964844,0.122558594,0.024536133,0.0039367676,-0.045654297,-0.17675781,0.29101562,-0.171875,-0.10986328,-0.06225586,0.044189453,0.076171875,-0.09375,-0.03112793,0.107910156,-0.0028381348,-0.06347656,0.025756836,-0.115722656,0.111816406,-0.01159668,0.033203125,0.03491211,0.072753906,-0.09423828,0.06591797,0.024536133,0.024780273,-0.071777344,-0.036376953,-0.07080078,-0.08886719,0.22753906,0.046142578,-0.13574219,0.14648438,-0.025878906,0.0859375,-0.019042969,-0.05126953,-0.053222656,0.041992188,-0.15820312,-0.103027344,0.07519531,0.048828125,0.0703125,0.083496094,0.203125,0.07470703,-0.06982422,-0.06542969,-0.048339844,-0.17089844,-0.06225586,0.06738281,0.026000977,-0.056396484,-0.16113281,-0.05810547,0.09667969,0.11035156,0.091308594,0.043701172,-0.15136719,0.13671875,0.31835938,-0.009460449,-0.084472656,0.125,0.048583984,0.007019043,-0.25585938,-0.083496094,0.017089844,-0.03930664,0.26171875,-0.11279297,0.10253906,0.00982666,-0.119628906,-0.0390625,0.08691406,-0.13183594,0.09765625,0.033203125,0.0099487305,-0.045898438,-0.08203125,0.0017166138,0.14746094,0.12402344,-0.014099121,0.05102539,0.020019531,0.08886719,0.03564453,-0.023925781,-0.053710938,-0.07080078,0.17285156,0.140625,0.0390625,0.09863281,0.09472656,0.08984375,0.19238281,-0.037841797,0.029052734,0.018066406,-0.0027923584,0.12011719,0.21386719,0.029785156,0.076171875,-0.049072266,0.31640625,-0.026611328,0.04663086,0.07470703,0.083984375,0.006072998,0.044433594,0.04248047,-0.010620117,0.08154297,0.07128906,-0.091308594,-0.09716797,0.012023926,0.01550293,-0.1015625,-0.030517578,-0.002609253,0.021240234,-0.0018157959,0.044921875,0.026489258,-0.034179688,-0.10986328,0.125,0.08154297,-0.099609375,0.0022277832,0.123535156,0.07324219,0.06542969,-0.0703125,0.039794922,-0.016479492,-0.010437012,-0.026000977,-0.19824219,-0.22265625,-0.032470703,-0.17480469,0.010559082,0.0054016113,0.096191406,0.12792969,0.015319824,0.052490234,-0.016479492,-0.06640625,0.0019378662,0.032470703,0.110839844,-0.13769531,-0.072265625,0.18261719,0.036132812,0.11230469,0.11230469,0.14648438,0.084472656,-0.0054626465,0.13183594,0.010803223,0.09667969,0.0119018555,0.08251953,-0.005493164,0.13867188,-0.118652344,0.11621094,0.019165039,0.075683594,0.033691406,0.078125,0.015991211,-0.09863281,-0.009094238,0.068847656,0.099121094,0.10205078,0.07519531,0.09472656,0.15136719,0.08984375,-0.07128906,0.0050354004,0.22363281,0.021118164,0.049316406,0.056884766,-0.07324219,-0.13183594,-0.107910156,0.0075683594,0.118652344,0.07080078,0.028930664,-0.018432617,0.2578125,0.091796875,-0.06640625,-0.04736328,-0.05029297,0.122558594,0.025268555,0.029296875,-0.007873535,-0.15820312,-0.08544922,0.06738281,-0.09814453,0.088378906,-0.13769531,-0.06689453,0.12890625,0.024780273,0.099121094,-0.32421875,-0.16992188,0.0859375,0.009277344,-0.02722168,0.017333984,0.014709473,-0.0025634766,-0.09667969,-0.07910156,0.125,-0.19824219,0.13476562,0.087402344,0.008850098,-0.017700195,-0.049316406,0.068847656,0.16113281,0.010559082,0.036621094,0.0030975342,0.091796875,0.032714844,0.04663086,-0.09716797,0.07080078,-0.034179688,-0.03112793,0.017211914,0.029541016,-0.14746094,0.107421875,0.21191406,0.09472656,-0.100097656,0.0859375,0.03173828,0.017578125,0.05859375,0.0079956055,-0.171875,0.10595703,-0.09814453,-0.27929688,-0.0026245117,0.051513672,0.12060547,-0.068847656,0.016357422,-0.03564453,-0.07910156,0.03955078,0.0625,-0.103515625,0.11621094,-0.20019531,-0.026000977,-0.115234375,-0.06347656,-0.27734375,0.10888672,0.203125,0.0013122559,-0.07080078,-0.04711914,0.05517578,-0.0087890625,-0.015136719,-0.072753906,-0.0015869141,-0.07470703,-0.20703125,-0.122558594,0.024414062,-0.051513672,-0.07324219,0.043945312,-0.02319336,-0.004058838,-0.21679688,-0.16894531,-0.028076172,0.015319824,0.064453125,-0.15917969,-0.064453125,-0.080566406,-0.171875,-0.067871094,0.17871094,-0.10644531,-0.06933594,-0.024414062,0.1875,-0.048339844,0.0703125,-0.016845703,-0.05883789,0.091308594,0.06689453,-0.0017547607,0.005584717,-0.0390625,0.12402344,0.043945312,0.12988281,0.049316406,0.07421875,0.04345703,-0.11376953,0.025146484,-0.06347656,0.018920898,-0.16113281,0.1328125,0.16992188,-0.017333984,-0.019165039,-0.14746094,0.16601562,0.087890625,0.0390625,0.07763672,0.18164062,-0.017944336,-0.008666992,-0.0095825195,0.01965332,0.013671875,-0.036376953,0.014343262,-0.0053100586,3.015995e-05,-0.0119018555,0.107910156,-0.07910156,-0.041259766,0.18066406,0.080078125,0.091308594,0.044677734,0.0044555664,-0.059326172,-0.14941406,0.016357422,-0.05444336,0.09814453,0.015991211,0.18261719,0.0028381348,0.10595703,0.087890625,-0.12011719,-0.053955078,-0.07128906,0.005432129,0.04248047,0.087402344,-0.0703125,-0.21386719,-0.13964844,0.1953125,0.18359375,-0.014343262,-0.08935547,0.012512207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.11230469,-0.10449219,-0.103515625,0.25585938,-0.037597656,0.0703125,0.14648438,0.1640625,0.079589844,-0.014709473,-0.0009994507,-0.12695312,0.14453125,0.011413574,0.095703125,0.14453125,-0.044189453,-0.068359375,0.02709961,-0.063964844,0.080566406,-0.020263672,-0.096191406,0.00024986267,0.10449219,0.03112793,0.15722656,0.09814453,-0.15136719,0.031982422,-0.06542969,0.072753906,0.009399414,-0.04663086,0.080078125,-0.09326172,0.08105469,0.052490234,0.13476562,0.29492188,-0.078125,-0.12988281,0.15332031,-0.024658203,-0.048583984,0.100097656,-0.09082031,0.115722656,-0.123535156,0.10205078,0.12158203,0.017700195,0.075683594,0.08105469,0.25195312,0.11279297,-0.016235352,-0.052734375,0.103027344,-0.028686523,0.056884766,-0.076660156,0.061279297,0.0059509277,-0.063964844,-0.05908203,0.09472656,0.09423828,-0.100097656,0.11376953,0.022705078,-0.234375,-0.023925781,-0.10986328,0.19726562,0.08886719,-0.23144531,0.13183594,-0.19921875,0.041503906,-0.067871094,0.007537842,-0.09814453,0.07763672,0.08984375,0.0138549805,-0.1015625,-0.06591797,-0.07861328,0.118652344,-0.0059509277,-0.14160156,-0.023803711,0.028686523,-0.15917969,0.045166016,0.052490234,-0.080566406,-0.20410156,-0.026977539,-0.12207031,0.12890625,-0.104003906,-0.021118164,0.059814453,-0.072753906,0.068847656,0.04272461,0.09667969,0.11767578,-0.19140625,0.030029297,0.09814453,-0.07763672,0.068847656,0.12158203,-0.099121094,0.27148438,-0.07080078,0.041015625,-0.100097656,-0.05078125,0.14355469,-0.041992188,0.15917969,-0.103027344,-0.03930664,-0.018798828,0.12109375,-0.018676758,-0.045166016,-0.104003906,0.036865234,-0.05834961,-0.030883789,-0.057128906,-0.057617188,0.05053711,0.12011719,0.29296875,-0.061767578,-0.07910156,-0.0015258789,-0.048828125,-0.16113281,-0.014587402,0.12792969,0.10986328,0.021972656,0.27539062,0.06689453,0.021606445,0.016967773,0.020507812,0.11425781,0.13867188,0.0107421875,0.028564453,0.07861328,0.123535156,-0.024414062,0.053466797,-0.25976562,-0.09375,-0.10888672,-0.08251953,-0.033691406,-0.017333984,-0.11621094,-0.1640625,-0.079589844,-0.18847656,0.06347656,-0.0115356445,-0.26757812,0.05102539,0.057373047,0.045166016,-0.26953125,0.015136719,-0.20214844,0.09863281,0.013671875,-0.15234375,0.007659912,-0.11767578,0.1328125,0.16015625,0.16601562,0.016357422,0.104003906,-0.052978516,0.19433594,-0.19335938,-0.13574219,-0.09667969,0.10986328,0.32617188,-0.016479492,0.12597656,-0.028930664,-0.051757812,-0.06640625,0.17773438,0.20507812,0.009033203,0.11816406,0.109375,0.06225586,0.15917969,-0.15722656,0.03881836,0.046875,-0.034423828,0.041259766,-0.08300781,-0.09326172,-0.051513672,0.1953125,-0.011657715,-0.068359375,0.0018920898,0.003967285,-0.038085938,-0.13574219,-0.15039062,0.100097656,0.15917969,0.053955078,-0.012023926,-0.020996094,0.087402344,-0.045654297,0.021728516,-0.14550781,0.18261719,0.056152344,0.22265625,0.106933594,0.13085938,-0.026977539,-0.15527344,-0.15234375,-0.14160156,-0.10888672,0.05834961,0.100097656,-0.05102539,-0.047607422,-0.0031433105,0.032714844,-0.15136719,0.026611328,-0.10839844,0.08300781,-0.14453125,0.20214844,-0.030761719,-0.3125,0.0075683594,-0.1796875,0.041015625,-0.25195312,0.12597656,-0.099609375,-0.24023438,-0.13867188,0.055908203,0.13085938,-0.12695312,-0.22753906,-0.06347656,0.11279297,-0.055664062,-0.28125,-0.048339844,-0.10644531,-0.14648438,-0.02319336,0.095703125,-0.06542969,-0.029418945,-0.014038086,-0.31445312,0.05078125,0.13183594,-0.009887695,0.06738281,0.07861328,0.15429688,-0.21582031,-0.13183594,0.15722656,0.035888672,0.041992188,0.0040283203,0.000579834,-0.13964844,0.064941406,-0.053466797,-0.05859375,-0.057373047,0.24707031,-0.23339844,0.17675781,-0.026489258,0.04736328,-0.059326172,0.056396484,-0.27734375,-0.015197754,0.13183594,0.049316406,-0.21679688,-0.072753906,-0.09033203,0.13378906,0.05053711,-0.028198242,0.171875,0.23730469,-0.051757812,-0.061279297,0.08496094,-0.125,0.19628906,0.15820312,0.09082031,-0.025512695,0.03173828,0.03881836,-0.15332031,0.037841797,-0.25390625,-0.107910156,-0.011169434,-0.027832031,0.0138549805,-0.34375,-0.14160156,0.020141602,0.10205078,-0.020141602,0.099121094,0.014709473,-0.18261719,-0.022583008,-0.14355469,0.02709961,-0.038085938,-0.064453125,-0.06933594,0.083496094,0.08203125,-0.07861328,-0.234375,0.041992188,0.18945312,-0.16796875,0.024047852,0.053955078,-0.15136719,-0.10449219,-0.03857422,0.0040893555,-0.08203125,-0.15136719,-0.11279297,-0.015319824,-0.011779785,-0.22851562,-0.107421875,-0.119628906,0.059570312,0.0036773682,-0.171875,-0.032714844,-0.3125,-0.265625,0.042236328,-0.14160156,0.028198242,-0.076660156,-0.22363281,0.115234375,0.030761719,-0.2890625,0.04663086,0.039794922,-0.029541016,-0.10546875,-0.05078125,-0.0138549805,-0.20800781,-0.012023926,-0.084472656,0.018798828,-0.11816406,-0.15917969,-0.079589844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.030761719,-0.10205078,0.21972656,-0.123046875,0.16210938,-0.015258789,0.115722656,0.17578125,0.018432617,0.14160156,-0.06982422,0.061523438,0.10888672,0.068359375,0.07763672,-0.017700195,0.10449219,-0.050048828,0.16894531,0.23828125,0.20800781,0.08984375,0.15429688,-0.09082031,0.029663086,0.024414062,-0.22949219,0.20996094,-0.0043945312,0.040039062,-0.10107422,0.08691406,-0.0042419434,0.080566406,0.13378906,-0.09472656,0.20898438,-0.016845703,0.29882812,0.21972656,-0.037841797,-0.09472656,0.012023926,0.08642578,0.049072266,0.20410156,-0.07080078,-0.0625,-0.23828125,0.0048217773,0.06640625,-0.050048828,0.20507812,0.015136719,-0.07324219,-0.06982422,-0.09716797,-0.19140625,0.055419922,0.07324219,-0.008605957,0.15625,-0.01965332,0.059570312,-0.01953125,-0.040527344,-0.025024414,0.01977539,-0.019897461,0.09033203,0.092285156,-0.050048828,-0.029418945,-0.026367188,0.041015625,-0.028686523,0.061767578,0.0012283325,-0.09472656,-0.041259766,-0.03857422,0.041748047,0.18945312,-0.13183594,-0.13574219,-0.24023438,-0.05444336,-0.067871094,0.04345703,0.096191406,-0.063964844,0.07519531,-0.04248047,0.072265625,0.115722656,0.04272461,-0.055664062,-0.20507812,0.024414062,0.09375,0.06738281,-0.022094727,0.007659912,0.13378906,0.056640625,-0.096191406,-0.12158203,-0.09765625,-0.11035156,0.03540039,-0.051513672,-0.04248047,0.087890625,-0.107910156,-0.0390625,-0.19238281,0.091308594,-0.15136719,0.059814453,0.15625,-0.03881836,-0.09472656,-0.16113281,-0.29101562,0.15234375,-0.091796875,0.018432617,0.052978516,0.107910156,0.06542969,-0.16894531,-0.04296875,-0.030273438,0.0703125,-0.13574219,-0.08984375,-0.07080078,-0.24511719,-0.10595703,-0.19726562,-0.10595703,0.22265625,-0.13476562,-0.09863281,0.18554688,-0.30273438,-0.12988281,-0.110839844,0.071777344,-0.020141602,-0.055664062,-0.12792969,-0.011657715,-0.24023438,-0.07128906,0.018920898,-0.083984375,-0.017578125,-0.15429688,0.14941406,-0.08496094,0.14160156,0.052001953,-0.012878418,0.06201172,-0.34375,0.23925781,0.08203125,0.084472656,-0.16015625,0.020751953,-0.064453125,-0.049072266,0.10058594,-0.203125,0.04638672,-0.1328125,-0.119140625,-0.055419922,-0.0546875,0.103515625,-0.29882812,0.12158203,-0.042236328,-0.05126953,-0.15917969,-0.07763672,0.08642578,-0.10888672,-0.12792969,-0.052978516,-0.03540039,0.033691406,-0.17773438,-0.13183594,-0.30664062,-0.017333984,-0.22753906,0.1796875,-0.095703125,0.0126953125,-0.26171875,-0.057617188,0.005432129,-0.07519531,0.026000977,-0.035888672,0.10546875,-0.063964844,-0.06347656,-0.06225586,-0.1875,-0.0072631836,0.12792969,-0.009765625,-0.0052490234,-0.00045967102,-0.08203125,0.040283203,-0.049560547,-0.047851562,0.018554688,-0.080078125,-0.19628906,0.032470703,-0.09814453,-0.041748047,-0.15527344,-0.076171875,-0.00970459,0.118652344,-0.083984375,0.061523438,-0.11621094,-0.12890625,-0.02746582,0.122558594,-0.09814453,0.08154297,0.059570312,-0.025878906,-0.16894531,-0.115722656,-0.030029297,0.024414062,-0.17285156,0.06591797,-0.20898438,0.02746582,-0.09423828,-0.099609375,0.0043945312,0.053710938,-0.08496094,-0.123046875,-0.03857422,-0.032714844,0.11279297,-0.037841797,-0.13378906,-0.16601562,-0.21972656,0.07373047,-0.063964844,-0.095703125,-0.13867188,0.016601562,0.20410156,-0.08935547,0.12695312,0.008666992,0.04272461,-0.072753906,0.09667969,0.0012435913,-0.016235352,-0.13085938,0.0049743652,-0.17773438,-0.056884766,-0.04711914,-0.03149414,0.11230469,-0.13378906,0.021362305,0.0014648438,-0.08251953,-0.10107422,0.08300781,0.099609375,-0.25195312,-0.07519531,-0.029418945,0.107421875,-0.25390625,-0.11425781,-0.083496094,-0.008056641,-0.27539062,0.025756836,-0.11279297,-0.15625,0.025024414,0.057617188,-0.15625,0.23828125,-0.18359375,-0.049072266,-0.33203125,-0.12890625,-0.109375,0.13378906,0.0024871826,0.11230469,-0.041259766,-0.010803223,-0.033691406,-0.07519531,0.1796875,-0.22753906,-0.19824219,-0.09033203,-0.16015625,0.12207031,-0.17871094,-0.052246094,-0.051757812,-0.024169922,-0.04711914,-0.100097656,-0.13574219,0.13964844,-0.041992188,-0.13867188,-0.2265625,-0.099609375,-0.091796875,0.23046875,0.11035156,-0.02331543,-0.12109375,-0.019042969,-0.140625,0.03930664,-0.03515625,0.025024414,-0.12158203,0.19140625,0.09667969,-0.0015182495,0.099609375,-0.016479492,-0.064453125,0.19238281,-0.107910156,0.07470703,-0.091796875,-0.028442383,-0.03515625,0.005493164,0.041015625,0.032470703,0.140625,0.20019531,-0.055908203,0.103515625,-0.0064086914,0.010925293,0.18261719,-0.02368164,0.13574219,-0.19140625,-0.07080078,-0.10644531,-0.037841797,-0.15722656,0.09765625,0.17773438,0.04321289,0.04272461,-0.140625,0.0625,0.071777344,0.067871094,-0.13671875,-0.122558594,-0.19824219,0.03125,-0.21875,-0.18945312,-0.1875,0.18066406,0.08251953,0.020507812,-0.037353516,-0.08544922,0.03466797,-0.10253906,0.013977051,-0.078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.09472656,0.17285156,-0.07080078,-0.28710938,0.06738281,0.13867188,-0.09814453,-0.106933594,0.09863281,-0.048828125,0.037597656,0.026367188,-0.15039062,0.0138549805,-0.007873535,0.24902344,-0.15039062,0.171875,0.067871094,0.0016174316,0.04638672,-0.05102539,-0.109375,-0.03149414,0.10888672,-0.07421875,-0.087890625,-0.25390625,0.083984375,-0.2109375,-0.11230469,-0.029052734,-0.087402344,0.10839844,-0.13085938,0.0859375,-0.24316406,0.13476562,0.08496094,-0.16699219,-0.09375,0.11230469,0.020141602,-0.080078125,0.01953125,-0.16699219,-0.045654297,-0.05493164,-0.0005569458,-0.0055236816,-0.15820312,0.079589844,-0.10449219,-0.076660156,0.047607422,-0.055908203,0.064941406,-0.13671875,-0.07910156,-0.087402344,-0.017700195,-0.018798828,0.14355469,0.16894531,0.03881836,-0.06542969,0.0703125,-0.050048828,-0.0859375,0.004760742,0.08984375,0.018676758,-0.08251953,0.018798828,-0.037841797,-0.036621094,-0.171875,0.1640625,0.026245117,0.075683594,-0.041992188,-0.057373047,0.13964844,-0.19628906,0.10546875,-0.042236328,-0.072265625,0.12060547,0.06689453,0.043945312,0.080566406,0.123535156,-0.04345703,0.16308594,0.12792969,0.12402344,0.04638672,-0.18359375,0.107910156,0.1328125,-0.067871094,-0.075683594,-0.021972656,0.1875,-0.049804688,0.020751953,0.12695312,0.019042969,0.040039062,-0.09863281,0.087402344,-0.15429688,0.09033203,-0.12988281,-0.03149414,0.03173828,0.008178711,-0.13964844,-0.05859375,-0.06640625,-0.04711914,-0.15820312,-0.09716797,-0.018798828,0.013061523,-0.20605469,0.053466797,0.045898438,-0.10205078,0.041503906,0.020385742,0.11767578,-0.07373047,-0.07470703,-0.096191406,0.001159668,0.08886719,-0.12597656,0.06201172,-0.19628906,-0.104003906,-0.020629883,-0.011413574,0.15332031,0.025756836,0.052734375,-0.057861328,-0.11669922,0.09863281,0.12988281,-0.08251953,-0.028930664,0.096191406,-0.05419922,-0.099121094,-0.0047912598,0.0012969971,0.11230469,-0.013916016,0.091308594,0.09375,-0.11816406,0.056884766,-0.063964844,0.16503906,-0.1328125,-0.041992188,0.16015625,0.07861328,0.10449219,-0.04638672,0.061279297,-0.053955078,0.14550781,0.045654297,0.0095825195,0.015991211,-0.07128906,0.0025024414,0.20898438,0.049316406,0.13964844,-0.053955078,0.071777344,-0.09277344,-0.0625,0.00680542,-0.060058594,-0.007293701,0.16503906,0.16015625,-0.11376953,-0.26953125,-0.19042969,0.017944336,-0.22363281,0.13183594,0.049072266,-0.23925781,-0.07421875,0.055908203,-0.20703125,-0.19433594,-0.11328125,-0.080078125,-0.04663086,0.11621094,-0.14160156,0.026245117,-0.24121094,0.088378906,0.13671875,0.033935547,-0.029541016,-0.084472656,-0.009521484,0.09667969,-0.12109375,0.067871094,-0.1640625,0.01159668,-0.010070801,-0.033447266,-0.021362305,-0.068847656,0.0008506775,-0.007659912,0.044189453,-0.140625,-0.15234375,-0.06982422,0.16308594,-0.012939453,-0.016113281,-0.079589844,-0.27734375,-0.055419922,-0.09423828,-0.12207031,0.024780273,-0.24511719,0.021240234,-0.057128906,-0.13671875,0.003829956,-0.13769531,-0.044433594,0.103027344,-0.07324219,0.041992188,0.021118164,-0.03125,-0.0066223145,-0.08642578,-0.028808594,-0.26171875,-0.023925781,0.09863281,0.067871094,0.07714844,0.16601562,0.24804688,0.041259766,-0.026611328,0.05419922,-0.10839844,-0.091308594,-0.06689453,0.125,0.0020446777,0.11279297,-0.051757812,-0.12890625,0.1875,-0.04272461,-0.15039062,0.002532959,0.1796875,-0.1328125,-0.020507812,-0.043945312,0.014343262,-0.17285156,-0.030151367,0.022949219,-0.092285156,0.04248047,-0.17578125,-0.14257812,0.055908203,-0.09472656,-0.04663086,-0.045410156,0.1015625,-0.076171875,-0.060546875,0.08886719,-0.17480469,-0.087890625,-0.0063171387,0.04296875,0.06689453,-0.14160156,-0.07861328,-0.21679688,0.0074768066,-0.13671875,0.068359375,-0.015563965,-0.21777344,0.08251953,-0.080566406,0.036376953,-0.17675781,-0.044433594,-0.017211914,0.04736328,-0.0072021484,0.048583984,0.019165039,-0.095703125,-0.12988281,0.15527344,0.014465332,-0.111816406,-0.049316406,0.020263672,-0.17578125,-0.033935547,-0.011169434,0.022705078,-0.100097656,-0.13378906,-0.012817383,-0.16992188,0.029418945,-0.001373291,-0.04638672,-0.014831543,0.0703125,0.031982422,0.0859375,-0.08203125,-0.14648438,-0.103027344,0.012451172,-0.004058838,0.15332031,0.045410156,-0.061279297,-0.08886719,0.06689453,0.0045776367,-0.03564453,-0.044677734,-0.1171875,-0.0859375,0.13671875,0.025390625,-0.084472656,-0.0048217773,-0.052490234,0.023803711,-0.05517578,-0.11669922,-0.018798828,-0.036132812,0.076171875,-0.13671875,0.13476562,-0.28515625,-0.016845703,-0.13964844,0.17285156,-0.12988281,-0.10253906,0.07421875,-0.083984375,-0.0046081543,-0.111816406,-0.15039062,0.056396484,-0.18847656,-0.027954102,-0.095214844,-0.012145996,-0.03540039,-0.0126953125,-0.14648438,-0.07373047,0.004486084,-0.08935547,0.06689453,-0.06201172,-0.08496094,0.04663086,0.11230469,0.01574707,0.13769531,-0.026977539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.09033203,0.16601562,-0.3046875,-0.390625,-0.021118164,0.28320312,-0.04638672,-0.38476562,-0.12060547,0.0031738281,0.044677734,-0.18945312,0.08691406,-0.10058594,0.012390137,-0.0029144287,-0.123046875,-0.020996094,-0.31835938,-0.27734375,-0.014099121,0.16015625,-0.076660156,0.052978516,0.013305664,0.010314941,-0.08691406,-0.017944336,0.059326172,-0.07519531,0.2421875,0.0076904297,-0.067871094,-0.047607422,-0.10498047,-0.34375,-0.10107422,-0.0087890625,-0.08251953,-0.22167969,-0.0045166016,0.07128906,0.27539062,0.106933594,0.029907227,-0.24902344,0.0625,0.067871094,0.11035156,-0.018066406,-0.13671875,-0.08691406,-0.24902344,0.023925781,-0.07470703,-0.02758789,0.06201172,-0.026367188,0.11669922,-0.076171875,-1.1026859e-05,-0.20117188,0.03173828,0.061279297,-0.31640625,0.063964844,-0.13378906,-0.24511719,-0.12011719,0.13085938,-0.14648438,-0.22558594,0.016113281,0.06933594,-0.026611328,-0.0036468506,-0.18554688,-0.103515625,0.001625061,-0.05444336,-0.030151367,0.123535156,-0.07324219,0.024414062,0.08496094,0.02746582,0.09423828,-0.23828125,-0.06591797,0.18652344,-0.053466797,-0.099609375,0.13867188,0.17089844,0.051757812,-0.1328125,-0.09814453,-0.13867188,-0.1875,-0.01550293,-0.06982422,0.25195312,0.0047912598,-0.072265625,0.018432617,0.0390625,0.030151367,-0.0021514893,-0.14941406,-0.122558594,0.05029297,-0.063964844,-0.0031433105,0.036376953,0.13867188,0.03515625,-0.04663086,-0.072753906,-0.16601562,0.21289062,0.078125,0.06542969,-0.018188477,0.06738281,-0.12597656,-0.1015625,-0.043701172,0.0010604858,-0.030761719,-0.044189453,0.14941406,0.036132812,-0.26171875,-0.18359375,-0.0053710938,0.028564453,-0.05078125,0.18066406,-0.18066406,0.036376953,-0.009216309,-0.11376953,-0.072265625,-0.07373047,-0.11816406,0.0079956055,0.048339844,0.1484375,-0.06738281,0.11425781,-0.103515625,-0.07080078,-0.099609375,0.09423828,0.018310547,0.049560547,-0.13867188,-0.2421875,0.005279541,-0.09082031,-0.075683594,0.08691406,0.041259766,-0.08105469,0.15625,-0.21972656,-0.16992188,-0.06982422,0.06591797,-0.106933594,-0.037841797,0.14550781,0.05102539,0.034179688,-0.08691406,-0.034179688,-0.21972656,-0.10058594,0.09667969,-0.056152344,0.09814453,0.15820312,-0.0625,0.043945312,0.078125,-0.061279297,0.11767578,-0.20019531,-0.067871094,-0.07763672,-0.11376953,-0.09423828,0.017578125,-0.18847656,-0.16015625,-0.040039062,-0.006439209,-0.083496094,-0.1953125,0.072753906,-0.06738281,-0.068359375,-0.03955078,-0.042236328,-0.09716797,0.0073547363,-0.19824219,0.06933594,0.13085938,-0.087402344,-0.06689453,-0.09814453,0.15429688,-0.13378906,-0.083984375,-0.010559082,0.12988281,0.12060547,-0.045898438,-0.15234375,0.15429688,0.09326172,-0.07910156,-0.039794922,-0.16796875,0.011047363,0.016845703,-0.039794922,0.13476562,-0.27539062,0.04321289,-0.09814453,0.06542969,0.07714844,-0.08935547,-0.033691406,0.037109375,0.0703125,-0.030395508,-0.19140625,-0.15136719,0.28515625,-0.12792969,-0.02734375,0.041259766,-0.046142578,-0.049804688,-0.18847656,-0.01965332,0.12207031,0.032226562,-0.12890625,-0.012084961,0.03564453,-0.07861328,0.1015625,-0.020263672,-0.009521484,-0.12158203,0.10058594,-0.109375,0.18847656,0.24902344,-0.018676758,0.10058594,0.09277344,-0.07421875,-0.0043945312,-0.08935547,-0.05419922,-0.15332031,0.13085938,0.10644531,0.0020141602,-0.23046875,-0.09277344,-0.0018920898,0.044433594,0.20898438,-0.00065612793,-0.03100586,0.110839844,-0.008056641,-0.10498047,0.012817383,0.010559082,-0.017211914,0.15429688,0.007019043,-0.060791016,-0.1328125,-0.29101562,0.099121094,-0.13085938,0.11376953,0.067871094,-0.049560547,0.16113281,-0.17578125,-0.005004883,0.06738281,-0.017333984,-0.072265625,0.1015625,-0.06738281,-0.11376953,0.107910156,-0.34765625,0.05053711,-0.09716797,-0.07910156,0.036865234,0.008544922,0.011352539,0.0020599365,-0.029907227,0.011413574,-0.014709473,-0.19824219,0.03173828,0.09375,0.014221191,-0.019042969,0.08300781,0.043701172,-0.068847656,-0.046142578,-0.049072266,0.05102539,-0.08251953,0.026733398,-0.1328125,0.17285156,-0.16894531,-0.12988281,0.0703125,-0.01373291,0.044921875,-0.020019531,-0.10986328,0.079589844,0.03125,-0.0138549805,0.21777344,0.024902344,0.0703125,-0.17871094,0.034179688,-0.03515625,0.008666992,-0.24902344,0.032714844,-0.060546875,-0.02722168,0.026733398,-0.08691406,0.06982422,0.041748047,0.01586914,0.07714844,0.010070801,-0.096191406,-0.03173828,-0.043701172,-0.020019531,0.01159668,-0.13183594,0.01574707,0.048828125,0.0067749023,-0.25976562,-0.43945312,0.026489258,0.05810547,0.18652344,-0.18261719,-0.061767578,-0.107910156,0.061767578,-0.19238281,0.07861328,-0.024169922,-0.053222656,0.053710938,-0.026733398,0.008300781,-0.008728027,-0.40234375,-0.21191406,-0.016845703,-0.21777344,-0.09765625,0.068847656,-0.17675781,0.29882812,-0.13574219,-0.046875,-0.125,-0.22558594,-0.059326172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.08935547,0.23242188,0.01373291,-0.13085938,0.37695312,0.12402344,-0.08935547,0.10546875,-0.041015625,-0.21875,-0.052734375,0.10058594,-0.21972656,0.11425781,-0.06689453,-0.088378906,-0.033203125,0.3515625,0.02709961,0.2421875,0.08984375,-0.045654297,-0.19824219,-0.010437012,0.020019531,-0.16894531,0.021972656,-0.008666992,0.0011749268,-0.041503906,-0.032958984,-0.1328125,0.015197754,-0.12988281,0.032226562,0.100097656,0.014892578,-0.045410156,0.16015625,0.18359375,0.06933594,0.040771484,0.055664062,0.04711914,-0.09033203,0.11279297,0.07128906,0.22167969,-0.033203125,-0.04296875,0.16601562,0.015625,-0.011169434,0.15332031,0.16894531,0.12158203,-0.07470703,-0.0087890625,0.041748047,0.046875,-0.24316406,-0.0390625,0.061767578,-0.0146484375,-0.21777344,0.016967773,0.15039062,0.14648438,-0.36328125,-0.021240234,-0.072753906,0.020751953,-0.026123047,0.13769531,-0.048583984,0.036865234,-0.19238281,0.008117676,0.008056641,0.072265625,-0.21582031,0.016845703,0.056884766,0.18847656,-0.096191406,-0.030273438,-0.06542969,-0.076660156,0.01940918,-0.19042969,-0.05126953,0.17089844,0.10888672,0.107421875,-0.11767578,-0.040283203,-3.504753e-05,0.10546875,-0.029418945,-0.05883789,-0.0107421875,0.011169434,-0.068847656,-0.08496094,-0.06738281,0.09082031,-0.14257812,-0.1171875,0.00491333,-0.13574219,0.15234375,-0.11376953,0.14355469,0.114746094,0.0012054443,-0.045898438,0.034179688,-0.052246094,0.0056762695,0.024658203,0.115234375,-0.22851562,0.05883789,0.11767578,0.10644531,0.099121094,-0.1875,-0.14648438,0.016601562,0.064453125,0.11230469,-0.03112793,-0.265625,0.005493164,-0.036132812,0.28125,-0.09863281,-0.09667969,-0.014770508,-0.05419922,-0.056884766,-0.002243042,-0.25585938,0.050048828,-0.09326172,-0.16601562,-0.08251953,0.014831543,-0.11279297,-0.010009766,0.08154297,0.017700195,0.04663086,-0.09765625,0.07714844,-0.041992188,-0.13671875,0.072753906,0.0234375,0.16601562,-0.14941406,0.05859375,0.024536133,0.08544922,0.092285156,-0.10888672,-0.1640625,0.02319336,0.06347656,-0.14453125,-0.03515625,-0.13183594,-0.028442383,-0.21972656,-0.24609375,-0.024291992,-0.08886719,0.18457031,0.049560547,0.033203125,0.067871094,0.019897461,0.063964844,-0.056640625,0.0061950684,-0.17773438,-0.110839844,0.17675781,0.08691406,-0.021850586,0.087890625,-0.032226562,-0.106933594,0.10449219,0.05493164,-0.15722656,0.10253906,0.05908203,0.1875,-0.15136719,0.0050964355,-0.15332031,-0.08496094,-0.0066223145,0.0072021484,-0.16601562,-0.12890625,0.028808594,0.099609375,0.07519531,-0.19335938,-0.008666992,-0.056640625,-0.012268066,-0.01940918,-0.030151367,0.0859375,-0.12792969,0.09716797,-0.26171875,0.18945312,-0.01361084,-0.10644531,0.007080078,0.01586914,0.040771484,-0.009155273,-0.10205078,-0.020751953,0.049072266,0.09814453,-0.11767578,-0.049072266,-0.036621094,0.12158203,-0.08251953,-0.09326172,0.10205078,0.084472656,0.14355469,0.00061416626,0.087890625,-0.018554688,-0.06542969,-0.010498047,-0.17089844,0.018432617,0.03540039,0.013977051,-0.14746094,-0.17382812,-0.0115356445,-0.16796875,-0.03149414,-0.076660156,0.04736328,-0.027954102,0.104003906,-0.15917969,-0.30078125,-0.095214844,0.071777344,0.0234375,-0.11621094,0.0625,-0.33007812,-0.026123047,-0.12988281,-0.103515625,0.041748047,-0.15625,-0.033691406,-0.18164062,0.01586914,-0.24316406,-0.18945312,0.034179688,0.034179688,-0.25390625,0.027709961,-0.045898438,-0.034423828,-0.11328125,-0.19140625,-0.096191406,0.00090408325,-0.14355469,-0.08251953,0.04638672,0.08105469,-0.16210938,0.265625,0.09423828,0.16894531,0.08691406,-0.17382812,-0.10546875,-0.08691406,-0.045898438,0.013000488,-0.087402344,-0.15722656,0.041748047,0.05029297,0.15136719,0.18457031,0.115722656,-0.053222656,-0.004852295,0.0017242432,-0.044921875,0.103515625,-0.022827148,-0.11376953,-0.056152344,-0.044189453,-0.100097656,0.063964844,0.049804688,0.095214844,0.103515625,-0.029785156,-0.171875,0.07519531,-0.021972656,-0.1484375,0.059570312,-0.0546875,0.09472656,-0.06640625,0.20703125,-0.037841797,-0.047851562,-0.099121094,-0.0703125,0.013122559,-0.15332031,0.115234375,-0.10546875,-0.08886719,-0.12792969,0.0061950684,-0.05126953,0.000333786,0.07324219,-0.08642578,-0.19042969,-0.064941406,-0.07763672,-0.20019531,-0.096191406,0.10644531,-0.00049209595,0.10449219,-0.12597656,-0.115234375,-0.099121094,0.00063705444,0.0067443848,0.060302734,0.14257812,0.033447266,-0.114746094,-0.06298828,-0.14453125,-0.23242188,0.033203125,-0.0703125,0.21191406,0.07080078,-0.067871094,-0.025268555,-0.21679688,0.07470703,-0.036621094,-0.055908203,0.013122559,-0.025390625,0.17871094,-0.14355469,-0.05517578,-0.2421875,0.06640625,-0.1171875,0.03100586,0.10986328,-0.103515625,-0.13671875,-0.052978516,0.037353516,-0.033447266,0.067871094,0.06591797,-0.07714844,-0.16796875,0.01586914,-0.09667969,-0.01953125,0.083496094,0.125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16699219,-0.014953613,-0.15429688,-0.16992188,-0.05517578,-0.234375,0.03857422,0.08691406,0.007507324,-0.12158203,-0.11621094,-0.16992188,0.024291992,0.03149414,0.15429688,-0.036376953,-0.13671875,0.06738281,-0.12695312,-0.14746094,-0.00046730042,0.056884766,-0.1484375,-0.11376953,-0.04272461,-0.17578125,0.056396484,-0.025756836,-0.0030975342,-0.26953125,-0.076171875,0.0033416748,-0.16699219,-0.044189453,-0.17578125,-0.040283203,-0.023803711,0.140625,-0.13671875,0.043701172,0.07128906,-0.0029754639,-0.13964844,0.084472656,-0.08886719,-0.09082031,-0.044921875,-0.14648438,-0.14355469,-0.12695312,-0.09716797,-0.09814453,-0.13476562,-0.17089844,-0.20605469,-0.057373047,-0.06640625,-0.18945312,-0.140625,0.033691406,-0.01928711,-0.25195312,-0.11035156,0.026855469,-0.32617188,0.07714844,-0.034179688,-0.15527344,-0.091796875,-0.020996094,0.07128906,0.10253906,-0.012084961,-0.05517578,-0.17480469,-0.017944336,-0.10498047,-0.038085938,0.07128906,-0.103027344,0.001739502,-0.096191406,-0.265625,0.022338867,-0.111328125,0.16015625,-0.05810547,-0.12988281,0.040283203,-0.088378906,0.16113281,-0.17285156,-0.110839844,0.18359375,0.029663086,-0.032958984,-0.12451172,-0.03149414,-0.15917969,0.13867188,-0.072265625,-0.024780273,-0.09082031,-0.23925781,0.11669922,-0.012268066,0.24414062,0.017944336,0.0014343262,-0.041015625,0.0022583008,-0.10058594,-0.19042969,0.01928711,-0.008911133,-0.046142578,-0.036865234,0.05810547,-0.19238281,-0.15332031,-0.059326172,-0.04321289,-0.037597656,-0.08984375,0.071777344,-0.09375,-0.09814453,-0.05517578,-0.23339844,0.18847656,-0.0859375,-0.10546875,-0.07373047,-0.13476562,-0.14746094,0.06591797,0.036132812,0.012634277,-0.17285156,0.027954102,0.0055236816,-0.11816406,-0.048583984,0.023803711,-0.12207031,0.20507812,0.13867188,-0.0115356445,-0.029296875,0.13476562,-0.14550781,0.07861328,-0.05517578,-0.048095703,-0.18066406,0.014343262,-0.068847656,-0.12109375,-0.040771484,-0.040771484,0.018310547,-0.16796875,-0.24121094,0.06738281,0.068847656,0.01586914,0.10253906,-0.016357422,0.09423828,0.111328125,-0.040283203,-0.036621094,0.12011719,0.18945312,0.024169922,0.08691406,0.14746094,-0.055908203,0.12597656,0.15722656,-0.0053710938,-0.028320312,-0.06201172,-0.008850098,0.08496094,0.05859375,0.009094238,-0.08203125,-0.050048828,0.08251953,-0.15527344,0.15722656,0.17089844,0.111328125,0.08203125,-0.04296875,0.17773438,0.103027344,-0.030273438,0.033691406,0.015258789,0.0068969727,-0.106933594,0.016601562,-0.010498047,0.10986328,-0.07763672,0.016845703,0.013671875,0.021240234,0.115722656,0.19140625,0.18945312,-0.1484375,0.12890625,0.14746094,0.091796875,0.035888672,0.06591797,0.0038909912,-0.018066406,0.16503906,0.088378906,-0.10058594,-0.045898438,-0.13378906,-0.04321289,0.033447266,0.031982422,0.02746582,0.1015625,0.15722656,-0.12890625,0.07861328,-0.13476562,-0.053466797,0.079589844,-0.0054626465,-0.13085938,-0.010620117,-0.061279297,-0.32421875,-0.14160156,-0.05029297,-0.025756836,-0.09375,0.28125,0.08691406,-0.07421875,-0.07910156,0.15429688,0.107421875,0.060791016,-0.03491211,0.031982422,-0.068847656,0.16015625,-0.18554688,-0.103515625,0.203125,0.107910156,-0.059814453,0.19824219,0.043701172,-0.06933594,-0.16113281,0.0025482178,-0.08935547,-0.017211914,-0.00793457,-0.099121094,0.0066223145,0.10986328,-0.26171875,0.0154418945,0.023925781,0.057373047,0.3828125,0.038085938,0.17480469,-0.09375,-0.0028686523,-0.072265625,-0.17773438,-0.01940918,0.20703125,0.2109375,-0.060302734,0.20996094,0.056640625,0.079589844,-0.061523438,0.09667969,-0.17578125,0.26367188,-0.012512207,0.08251953,-0.012512207,0.019042969,-0.052490234,0.049804688,-0.052734375,0.17871094,-0.12792969,0.30273438,0.26953125,-0.033691406,-0.055419922,-0.103027344,0.05126953,-0.17578125,0.1640625,-0.021240234,0.15820312,-0.008300781,0.064453125,-0.037109375,-0.07470703,0.043701172,0.0076904297,-0.1640625,-0.0020751953,-0.25390625,-0.08544922,0.09082031,0.012268066,0.0703125,0.07421875,-0.011962891,-0.12109375,-0.010803223,-0.24902344,0.024414062,-0.06933594,0.05493164,-0.16210938,0.007751465,0.0040283203,-0.12988281,0.11376953,-0.08642578,-0.16992188,0.06542969,-0.17480469,0.0015640259,-0.21191406,0.13769531,-0.25195312,-0.008178711,-0.08984375,-0.11328125,-0.12890625,-0.050048828,0.033935547,-0.109375,-0.0146484375,-0.04248047,-0.16503906,-0.12792969,-0.19433594,-0.040771484,-0.09277344,-0.12109375,-0.33203125,-0.06933594,0.0029296875,-0.15625,0.052734375,0.080566406,-0.080566406,-0.017822266,0.16992188,-0.10595703,0.018432617,0.06689453,-0.27148438,-0.049316406,0.05493164,-0.045410156,-0.056152344,0.07519531,0.07128906,-0.055664062,0.096191406,-0.15527344,-0.07470703,0.02734375,0.049316406,-0.13769531,-0.01574707,-0.014160156,-0.014526367,0.061523438,0.30078125,0.1484375,0.09277344,-0.09277344,0.104003906,-0.08251953,-0.040771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.038085938,-0.0052490234,0.099609375,0.19042969,0.036376953,0.04711914,0.068359375,-0.3515625,-0.064941406,0.052490234,0.08154297,-0.14941406,0.016845703,-0.030883789,0.060791016,-0.0017471313,0.27929688,-0.0028076172,-0.05053711,-0.004180908,-0.05053711,-0.049560547,-0.10644531,0.07861328,-0.016357422,-0.057861328,-0.008056641,-0.2578125,-0.024414062,0.16503906,-0.11035156,-0.104003906,0.23339844,0.064941406,0.16113281,-0.09765625,0.10888672,0.10498047,0.10888672,-0.12597656,-0.035888672,-0.033447266,-0.049804688,-0.079589844,0.016113281,-0.047607422,0.045410156,-0.14648438,-0.087402344,0.15722656,0.13671875,-0.2265625,0.16210938,-0.028320312,-0.21484375,-0.03466797,-0.096191406,0.083984375,-0.017211914,-0.012145996,-0.028930664,0.021850586,0.10107422,-0.030029297,0.0037078857,0.13769531,-0.03857422,-0.14941406,0.11425781,-0.11425781,0.2265625,-0.125,0.04248047,0.032958984,-0.07421875,-0.14746094,-0.0043640137,0.19335938,0.08935547,-0.084472656,-0.10058594,-0.02319336,-0.014770508,-0.010681152,0.14355469,-0.1484375,0.22851562,-0.13867188,0.05053711,-0.08105469,0.14355469,-0.16699219,-0.032958984,0.10839844,0.20019531,-0.061035156,-0.32226562,0.21875,0.13378906,-0.15527344,-0.0006713867,-0.0859375,-0.02746582,-0.3125,0.044433594,0.047607422,-0.26367188,-0.07861328,-0.005706787,-0.045654297,0.092285156,-0.29492188,-0.09814453,0.36132812,-0.056396484,-0.045410156,-0.16796875,0.119140625,-0.019165039,-0.22558594,-0.03857422,0.015380859,-0.011230469,0.00011062622,0.009887695,-0.27148438,0.0011749268,-0.1953125,-0.06933594,0.26367188,-0.067871094,-0.04663086,0.037109375,0.13085938,0.028198242,0.20898438,0.026855469,-0.021972656,0.021606445,-0.12792969,-0.08642578,0.088378906,0.0013809204,-0.25,-0.27148438,0.40039062,0.11621094,-0.140625,-0.087890625,-0.0030975342,0.13964844,-0.2109375,0.0703125,-0.15039062,-0.01550293,0.013793945,-0.029541016,-0.032714844,0.171875,-0.203125,-0.32226562,-0.03540039,-0.11328125,-0.057373047,-0.053466797,-0.13867188,0.076660156,-0.23046875,-0.038085938,0.042236328,0.0048828125,-0.017089844,-0.11279297,-0.15136719,-0.07080078,0.10107422,0.022460938,0.0546875,-0.07763672,-0.111328125,-0.17773438,0.0859375,-0.029418945,-0.09326172,0.032714844,0.09765625,-0.056884766,0.08935547,-0.048828125,-0.021606445,-0.22167969,0.041748047,-0.1953125,0.22070312,-0.017578125,-0.1640625,-0.234375,-0.107421875,0.18847656,-0.104003906,0.072265625,-0.125,0.08496094,-0.07470703,-0.049072266,-0.07519531,-0.12207031,0.0154418945,-0.43945312,-0.068847656,0.12597656,0.14160156,-0.14355469,-0.034423828,0.3046875,-0.26171875,-0.059570312,0.08691406,0.06640625,0.114746094,0.039794922,0.031982422,-0.07861328,-0.024658203,-0.36914062,0.31835938,0.064453125,-0.041503906,-0.10498047,0.011291504,-0.100097656,-0.14550781,-0.07080078,-0.00062942505,-0.010070801,-0.19433594,-0.11376953,-0.14453125,0.25390625,0.10253906,-0.2265625,-0.064453125,-0.0029907227,0.053955078,-0.12109375,0.0138549805,0.12402344,-0.11035156,-0.10888672,-0.032958984,-0.045654297,0.06933594,-0.10595703,-0.037353516,0.071777344,0.11230469,0.024291992,-0.08984375,0.033691406,0.00023078918,-0.018432617,-0.19238281,-0.026245117,0.10498047,0.023803711,0.11230469,0.12597656,-0.092285156,-0.0030670166,0.056396484,-0.18457031,0.08105469,0.07714844,-0.22753906,-0.16308594,-0.03515625,-0.24414062,-0.095703125,-0.17675781,-0.024291992,0.032470703,-0.11279297,-0.08300781,-0.14746094,-0.017944336,-0.049560547,0.075683594,0.010498047,0.04711914,0.06225586,0.036865234,-0.004119873,-0.16113281,-0.049560547,0.14453125,-0.05908203,0.017822266,0.06689453,0.08886719,-0.104003906,-0.025512695,0.09472656,-0.0035095215,0.12597656,0.048339844,-0.22265625,-0.171875,0.045410156,-0.018432617,-0.034179688,0.18261719,0.051757812,0.07910156,-0.04638672,-0.12597656,0.09277344,-0.20996094,0.068359375,0.05834961,0.103027344,0.0047912598,0.04345703,-0.16308594,0.009094238,0.24609375,0.12695312,0.016723633,0.030639648,-0.119140625,-0.025512695,-0.06738281,0.018188477,-0.018188477,0.203125,0.22460938,-0.083496094,0.19628906,0.056640625,-0.0703125,-0.01586914,0.18164062,-0.04711914,0.036621094,-0.09033203,0.041503906,0.022583008,-0.029418945,0.067871094,0.07421875,-0.023803711,0.022338867,0.10205078,0.06542969,-0.44921875,0.033691406,-0.10205078,0.04321289,-0.234375,-0.05102539,-0.09814453,-0.01977539,-0.0072631836,-0.037597656,-0.07861328,-0.07421875,0.119140625,-0.10058594,0.048339844,-0.045898438,-0.20410156,-0.07861328,0.03466797,0.09082031,0.021118164,0.15527344,-0.0703125,-0.08203125,0.02734375,0.013122559,-0.01928711,0.10253906,0.21875,0.087402344,-0.055908203,0.23535156,-0.34570312,0.029663086,-0.09667969,0.23144531,-0.00074768066,0.110839844,-0.018798828,0.025390625,-0.05126953,0.14550781,-0.038085938,0.05908203,-0.032958984,0.2734375,-0.018432617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.09765625,0.05078125,0.1328125,-0.060546875,0.0115356445,-0.20117188,-0.19140625,-0.16503906,-0.025146484,0.0107421875,0.11621094,-0.014953613,0.053955078,-0.104003906,0.02319336,0.08691406,0.11816406,0.096191406,-0.017700195,0.07861328,0.09472656,-0.06689453,-0.01184082,0.091308594,0.08300781,0.030151367,-0.00019168854,0.06738281,-0.029907227,-0.059570312,0.099121094,-0.047851562,-0.008605957,-0.026000977,-0.0546875,-0.03173828,0.040527344,-0.040527344,-0.036376953,0.084472656,-0.036865234,-0.014038086,-0.13769531,-0.07910156,-0.15136719,0.06933594,0.010498047,0.014831543,0.17871094,-0.1328125,-0.057617188,-0.15136719,-0.107421875,0.15527344,0.020385742,-0.095703125,-0.083496094,-0.23925781,-0.018432617,-0.057373047,0.021118164,0.009216309,0.09423828,-0.15332031,0.19726562,-0.35351562,-0.21972656,-0.13867188,0.0024108887,0.030029297,-0.10986328,0.13671875,-0.026977539,0.072265625,-0.052490234,0.16699219,-0.041748047,0.0039367676,0.0625,-0.20800781,-0.012390137,0.103027344,-0.100097656,0.091796875,0.06542969,-0.06347656,0.07861328,0.0064697266,0.11669922,-0.111328125,0.09814453,-0.010620117,0.17285156,-0.041992188,-0.08251953,0.123046875,0.18945312,0.019897461,0.057617188,-0.037597656,0.0625,0.1640625,0.24023438,0.063964844,0.03881836,0.14746094,0.10839844,0.03149414,0.072265625,0.13964844,0.046142578,0.17480469,0.18554688,-0.06689453,-0.009338379,-0.07763672,-0.09765625,0.1875,-0.040039062,0.008972168,0.015991211,0.13964844,-0.014892578,0.0059509277,-0.076660156,0.008972168,0.014404297,0.13574219,0.18066406,-0.078125,0.024291992,-0.028320312,-0.056396484,0.0068969727,0.0234375,0.009033203,0.08105469,-0.17382812,0.08984375,0.06347656,-0.111328125,-0.018676758,0.01574707,-0.20996094,-0.09033203,-0.10107422,-0.13183594,-0.26367188,-0.203125,0.0048217773,-0.024169922,-0.11279297,0.068359375,-0.16503906,-0.099121094,-0.036865234,-0.122558594,-0.08642578,-0.21289062,-0.025390625,-0.064453125,0.19335938,-0.029418945,-0.15820312,-0.10595703,0.04736328,0.060546875,-0.26171875,-0.10839844,-0.09667969,0.25390625,-0.08642578,0.024047852,0.08154297,-0.09326172,-0.072753906,-0.03857422,0.03564453,-0.095214844,0.19335938,-0.028076172,0.17675781,-0.096191406,-0.25976562,-0.10107422,0.17578125,0.023071289,-0.18261719,0.0134887695,0.041748047,-0.063964844,0.14160156,-0.10058594,-0.05053711,-0.18847656,0.17773438,0.033447266,-0.12451172,-0.125,-0.35742188,0.06933594,0.0023345947,0.23632812,0.064453125,-0.008972168,0.0033569336,-0.04248047,0.008728027,0.043945312,0.032470703,0.026611328,-0.008911133,-0.14355469,0.12060547,-0.2734375,-0.03125,0.03540039,0.016967773,0.0138549805,-0.03149414,-0.12109375,-0.23339844,0.007873535,-0.2109375,-0.27929688,0.005859375,-0.08544922,0.0026245117,-0.0625,0.24121094,-0.029907227,-0.04248047,0.075683594,-0.075683594,0.08300781,-0.14257812,-0.10839844,-0.0026855469,0.17382812,-0.21777344,-0.18359375,-0.13378906,-0.22167969,-0.25976562,0.0049438477,0.08496094,-0.17480469,-0.18457031,0.047607422,-0.007873535,0.140625,-0.09423828,-0.015014648,-0.07470703,0.027832031,-0.0070495605,-0.14550781,-0.067871094,-0.15332031,-0.1796875,-0.12060547,0.10888672,-0.01586914,-0.08300781,0.067871094,0.12451172,0.016357422,-0.16894531,0.111816406,-0.055664062,0.028686523,-0.029541016,-0.17285156,-0.03491211,-0.060058594,0.07080078,-0.123046875,-0.092285156,-0.19238281,-0.16015625,-0.100097656,0.044921875,0.034423828,0.12597656,0.13476562,0.008178711,-0.296875,-0.03930664,-0.16796875,0.009094238,0.104003906,0.040283203,-0.123535156,-0.02331543,-0.060791016,-0.0066223145,0.017578125,-0.032226562,0.29492188,-0.05493164,-0.12402344,0.17675781,-0.18945312,0.107421875,-0.13378906,0.28710938,-0.11621094,-0.050048828,-0.04663086,0.12451172,-0.103515625,-0.061767578,-0.020874023,0.17382812,0.07421875,-0.234375,-0.0023040771,0.0390625,0.010131836,-0.08984375,-0.033691406,0.16503906,-0.072753906,0.055908203,0.017456055,-0.020385742,-0.057128906,-0.087402344,0.10253906,-0.07861328,0.08935547,-0.004638672,-0.015991211,-0.06689453,-0.07128906,0.034179688,0.13964844,-0.30859375,-0.048583984,-0.012573242,0.083496094,0.08105469,-0.10498047,-0.024902344,-0.045654297,0.024902344,0.059570312,0.15136719,0.092285156,-0.04711914,-0.26171875,0.021606445,0.053222656,-0.07324219,-0.0146484375,-0.09375,-0.1015625,0.032958984,-0.18945312,0.046142578,0.033691406,-0.00016212463,-0.19824219,-0.02722168,-0.005554199,-0.07714844,-0.09033203,-0.15136719,0.06982422,-0.060302734,-0.15722656,0.024047852,-0.020141602,0.27539062,-0.017944336,0.25390625,0.08105469,-0.015563965,0.1328125,-0.11230469,-0.083984375,-0.05883789,-0.2578125,-0.06933594,-0.05126953,-0.2578125,-0.095214844,0.041748047,-0.18164062,-0.114746094,0.078125,0.08203125,0.09033203,-0.0043640137,0.20507812,0.028076172,-0.32226562,0.106933594,-0.15039062,-0.040527344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.0005302429,-0.04248047,0.23242188,0.026855469,-0.03930664,-0.018676758,-0.028564453,-0.15332031,0.024414062,0.19726562,0.11669922,0.14941406,-0.14453125,-0.46484375,-0.040771484,0.06591797,-0.011413574,-0.0119018555,0.22753906,0.024780273,-0.12207031,0.068847656,-0.09326172,-0.123535156,-0.05883789,0.17089844,-0.118652344,-0.18554688,-0.06640625,-0.057861328,0.0015869141,-0.0703125,0.140625,0.09277344,0.017333984,0.16503906,-0.140625,-0.21386719,0.024780273,-0.24804688,-0.078125,-0.21289062,-0.17382812,-0.122558594,-0.010131836,-0.10498047,0.15722656,-0.12402344,-0.020263672,0.08105469,-0.024536133,-0.12207031,-0.07763672,-0.078125,0.17480469,-0.0063476562,-0.029052734,0.014465332,-0.14648438,-0.12792969,-0.033447266,-0.030883789,-0.033203125,0.04663086,-0.24902344,0.019897461,0.064453125,0.08105469,-0.19726562,0.25195312,-0.21679688,-0.1640625,-0.088378906,0.026123047,0.20605469,0.06225586,0.09082031,0.080566406,0.08886719,0.011352539,-0.02331543,-0.07421875,0.22949219,0.21972656,0.12695312,-0.22460938,0.05029297,0.048095703,0.09375,0.106933594,0.0703125,-0.060058594,-0.038085938,0.044677734,0.033935547,0.12597656,-0.087402344,-0.24023438,0.16992188,0.17675781,0.048339844,0.118652344,-0.055908203,0.08300781,0.07519531,0.110839844,0.088378906,0.02319336,0.005340576,-0.107421875,0.10839844,-0.140625,-0.010803223,-0.22167969,-0.020996094,-0.022216797,-0.14453125,0.171875,0.12011719,-0.025634766,-0.064941406,-0.04638672,-0.021362305,0.12695312,-0.12109375,-0.20703125,-0.055664062,0.04638672,-0.25976562,0.053466797,-0.027832031,-0.18066406,-0.076171875,-0.09033203,0.024291992,0.10888672,-0.08642578,-0.16894531,0.008056641,-0.038330078,0.06738281,-0.2890625,0.12988281,0.057861328,-0.10595703,-0.078125,-0.14746094,-0.09716797,-0.092285156,0.13085938,-0.03930664,-0.09375,-0.083496094,-0.14550781,0.125,0.10058594,0.03125,0.15625,0.03491211,-0.084472656,0.16894531,-0.23632812,0.072753906,0.02722168,0.01977539,-0.36132812,-0.01928711,0.18945312,0.037353516,-0.014892578,-0.05908203,0.12988281,0.045410156,0.05053711,-0.087402344,0.052978516,-0.07373047,0.0625,0.042236328,-0.068359375,0.091308594,-0.14160156,-0.0005226135,0.009887695,-0.018310547,-0.018432617,-0.005584717,-0.08496094,-0.018066406,0.088378906,0.03515625,-0.15332031,-0.067871094,-0.115722656,0.1171875,0.060058594,-0.012390137,0.032470703,0.007537842,-0.051513672,-0.091308594,0.032958984,-0.029296875,0.080566406,0.04345703,-0.16992188,-0.0703125,0.044677734,-0.041015625,-0.03173828,-0.13671875,-0.15917969,0.076660156,0.037597656,0.11816406,-0.08300781,-0.0390625,-0.08691406,0.09863281,0.15234375,-0.009399414,-0.19042969,0.30273438,-0.123046875,0.092285156,0.119140625,-0.2734375,-0.15234375,0.080566406,0.18945312,0.10498047,-0.076660156,0.030761719,-0.12988281,-0.125,-0.001739502,-0.09863281,-0.034179688,-0.048095703,-0.13671875,0.10546875,0.107910156,-0.076660156,0.075683594,-0.024169922,-0.061035156,0.036865234,0.09082031,0.067871094,0.016357422,-0.025268555,0.06201172,0.057373047,-0.063964844,-0.052001953,0.063964844,-0.12988281,-0.15429688,-0.04711914,0.011962891,-0.029174805,-0.10986328,0.00075912476,0.27734375,-0.080566406,-0.043701172,-0.025390625,-0.09667969,-0.025390625,-0.10888672,-0.111816406,-0.17382812,0.033935547,0.05834961,-0.10498047,-0.103027344,0.20507812,-0.17480469,-0.04638672,-0.14941406,-0.07128906,-0.025146484,0.06591797,0.025390625,-0.19042969,-0.01977539,0.068847656,-0.083496094,-0.07519531,-0.075683594,-0.100097656,0.095703125,0.084472656,-0.079589844,0.10498047,-0.036376953,-0.045410156,-0.024780273,-0.11816406,0.14160156,-0.16699219,0.004058838,-0.23144531,-0.17871094,0.19042969,0.1640625,-0.18261719,-0.119140625,0.08984375,0.18652344,-0.20605469,0.14648438,-0.045166016,-0.14941406,-0.14160156,-0.14257812,0.0859375,-0.20898438,0.14257812,0.075683594,0.17675781,0.11425781,-0.16113281,0.083496094,-0.039794922,0.099609375,0.08496094,0.02758789,0.032714844,0.0859375,0.041992188,-0.14941406,0.115234375,-0.048583984,0.015991211,-0.12060547,-0.015991211,-0.029296875,-0.38867188,0.10986328,-0.1796875,0.10205078,0.09765625,-0.011291504,-0.072753906,-0.014831543,-0.0134887695,-0.26953125,0.072265625,0.20214844,-0.04296875,-0.029907227,-0.079589844,0.092285156,-0.37109375,-0.018676758,-0.016601562,-0.10986328,0.07373047,-0.2890625,0.046142578,-0.012084961,0.09423828,0.05834961,-0.04296875,0.051757812,0.08642578,-0.18847656,0.05834961,0.0625,-0.16796875,0.10595703,-0.00046730042,-0.07861328,0.08935547,0.00390625,0.044921875,-0.16992188,-0.12890625,-0.0030975342,0.06298828,0.052978516,-0.026000977,-0.15917969,0.21289062,0.045166016,-0.030761719,0.03881836,0.057373047,0.046142578,0.11669922,0.14257812,0.09277344,-0.061279297,-0.10888672,-0.0067749023,-0.0138549805,-0.13085938,-0.08105469,0.07373047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.03955078,-0.09863281,-0.34960938,-0.18457031,-0.123046875,0.11279297,0.018676758,-0.140625,-0.22265625,0.044433594,0.19042969,-0.13769531,0.025512695,0.057128906,-0.08544922,-0.37109375,-0.095703125,-0.08154297,-0.17089844,-0.025756836,-0.015991211,-0.068847656,0.11669922,-0.18359375,-0.11425781,0.0107421875,-0.087890625,-0.03564453,0.10839844,-0.23730469,0.005126953,-0.44335938,-0.02722168,0.006225586,-0.08691406,-0.2890625,0.017456055,-0.115722656,-0.005340576,-0.17285156,-0.19628906,0.07373047,-0.09667969,-0.03881836,0.13183594,-0.110839844,0.009460449,0.036132812,-0.24511719,0.23046875,-0.01928711,-0.19238281,-0.19042969,0.1328125,0.037841797,0.03955078,-0.026733398,-0.0625,-0.0546875,-0.050048828,-0.13769531,-0.12597656,0.09277344,-0.09667969,-0.18359375,0.005859375,-0.080078125,-0.24316406,0.010253906,0.10058594,-0.09472656,0.09375,-0.061279297,-0.24707031,0.067871094,0.10449219,0.03515625,0.076660156,-0.17480469,-0.13183594,-0.0546875,-0.14746094,-0.104003906,0.09472656,0.016845703,0.16210938,-0.1484375,0.05053711,-0.040283203,0.16601562,0.21582031,0.079589844,0.12451172,0.16015625,0.021240234,-0.06542969,-0.29101562,-0.061523438,0.104003906,0.044189453,-0.055664062,-0.022216797,-0.15136719,-0.32617188,0.13671875,-0.061035156,-0.014099121,0.0061035156,0.019897461,-0.09667969,0.08496094,-0.020996094,-0.24414062,0.07080078,-0.095214844,-0.03930664,-0.02355957,0.08984375,-0.08886719,0.020874023,-0.16601562,0.003540039,-0.013427734,0.008972168,-0.06542969,-0.04296875,-0.033447266,-0.16113281,-0.051513672,-0.1640625,0.15429688,0.06738281,0.004180908,0.050048828,0.044433594,0.09326172,0.0703125,0.041015625,0.109375,0.099121094,-0.08984375,-0.26171875,-0.12060547,-0.10449219,-0.02746582,-0.103515625,-0.068359375,0.048583984,0.04638672,0.09667969,-0.012268066,-0.012084961,0.006378174,0.04711914,0.12207031,0.061035156,0.07763672,0.048583984,-0.203125,-0.1875,0.0546875,-0.24707031,-0.18457031,-0.15234375,-0.16210938,0.013916016,0.022216797,0.12451172,0.076660156,0.18164062,0.053710938,-0.045898438,-0.020507812,0.013916016,-0.057617188,0.0625,-0.029541016,-0.30078125,-0.15429688,0.07714844,-0.15234375,0.028198242,0.110839844,-0.23828125,0.024414062,0.15234375,-0.104003906,-0.08984375,0.05029297,-0.009277344,-0.11816406,0.04711914,-0.17675781,-0.21289062,0.060302734,0.04296875,-0.18945312,-0.111328125,0.052246094,0.055908203,-0.042236328,0.24707031,-0.1953125,0.119628906,0.06347656,0.011474609,0.026367188,0.08203125,0.00045585632,-0.15136719,-0.07421875,0.17285156,-0.06640625,0.019165039,-0.14746094,0.025268555,0.016723633,0.17578125,0.12060547,-0.03173828,0.022460938,-0.0021209717,0.0034179688,-0.061279297,0.25390625,-0.071777344,0.06347656,0.017578125,0.041992188,0.095214844,-0.12597656,-0.5,-0.028320312,0.072265625,0.15039062,0.080078125,0.02355957,0.10058594,-0.104003906,-0.07910156,0.024291992,0.19238281,-0.26953125,0.08691406,-0.2265625,0.123535156,-0.21777344,0.053466797,-0.03881836,-0.13085938,0.1796875,-0.16308594,0.084472656,-0.0053100586,-0.020507812,0.07324219,-0.04296875,-0.045898438,-0.20019531,-0.09375,-0.21679688,0.20605469,0.14746094,-0.0859375,-0.115234375,-0.18847656,-0.05126953,0.14453125,-0.032714844,-0.13671875,0.14941406,0.060302734,0.01586914,-0.26171875,-0.036132812,-0.19824219,0.040283203,-0.020019531,0.07421875,0.0546875,-0.12011719,-0.23925781,-0.068847656,-0.16113281,-0.076171875,0.107910156,0.009216309,0.068359375,0.10058594,0.07324219,-0.07763672,0.12011719,0.07128906,-0.11279297,0.12695312,0.04345703,0.100097656,-0.040039062,0.022216797,0.053222656,-0.06738281,0.31835938,0.07128906,0.038085938,-0.08691406,0.19824219,-0.09033203,-7.009506e-05,-0.37109375,0.049804688,0.095703125,-0.056396484,0.110839844,-0.0008201599,-0.12695312,0.21484375,0.025756836,0.11425781,0.061523438,0.111328125,0.23730469,-0.12597656,-0.087890625,0.25585938,-0.14355469,-0.045410156,0.06982422,-0.21679688,0.022094727,-0.22167969,0.024414062,0.09277344,-0.02368164,-0.07324219,-0.07714844,0.24121094,-0.17675781,-0.091796875,-0.18066406,-0.0703125,-0.2265625,0.18652344,0.20996094,-0.20410156,-0.04638672,-0.22851562,-0.13183594,-0.14453125,-0.010803223,-0.103515625,-0.31054688,-0.021118164,-0.08544922,0.06689453,-0.34179688,-0.087402344,-0.0703125,0.22753906,0.016479492,-0.21386719,-0.06933594,-0.09423828,0.091796875,-0.26367188,-0.067871094,0.09326172,-0.15234375,0.045654297,0.16894531,-0.099609375,-0.23828125,0.041015625,-0.23046875,-0.27148438,0.011962891,-0.296875,0.110839844,-0.07519531,-0.096191406,-0.10644531,-0.041748047,0.099609375,-0.033935547,0.016235352,-0.17773438,0.11816406,-0.028320312,0.15332031,-0.06298828,0.118652344,-0.16601562,0.029296875,-0.056152344,-0.057373047,0.19824219,-0.008972168,-0.036376953,0.140625,-0.011962891,0.001449585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.09667969,-0.012756348,0.0390625,0.06298828,-0.13867188,-0.18066406,-0.009521484,0.07714844,-0.084472656,0.016601562,0.14746094,0.11035156,-0.08300781,0.20800781,0.0028839111,0.09423828,0.12695312,0.19433594,-0.08203125,-0.046142578,-0.083984375,0.029907227,-0.06298828,0.067871094,-0.007080078,0.003967285,-0.033935547,0.22363281,0.04638672,-0.1875,-0.04272461,-0.09716797,0.12695312,0.091796875,0.06689453,-0.25,-0.088378906,-0.092285156,-0.091796875,-0.032958984,0.09765625,-0.071777344,0.017822266,0.16308594,0.015075684,-0.075683594,0.114746094,-0.029418945,0.12792969,0.125,0.18457031,-0.19140625,-0.12597656,-0.10107422,0.091796875,-0.041503906,-0.096191406,-0.05126953,-0.05102539,0.110839844,0.05883789,0.06225586,0.040039062,0.072753906,0.08984375,0.119628906,0.12207031,0.025634766,-0.08154297,0.13476562,-0.19433594,-0.079589844,-0.0050964355,-0.16308594,-0.041992188,-0.11230469,-0.12695312,-0.040039062,0.14550781,-0.051757812,0.14746094,-0.14746094,-0.030639648,-0.11230469,0.0008392334,-0.18945312,0.084472656,0.10644531,0.028198242,-0.03540039,0.045410156,0.020996094,0.07714844,-0.057128906,-0.01373291,-0.35351562,0.17773438,-0.123535156,-0.032226562,-0.18261719,-0.036865234,-0.13964844,0.0045166016,0.012145996,-0.05078125,-0.30664062,0.045898438,0.088378906,0.0047302246,-0.15722656,-0.1796875,-0.052978516,-0.029785156,0.11425781,-0.013244629,0.11279297,-0.12109375,-0.076660156,-0.2265625,0.08642578,-0.05126953,-0.41601562,-0.1875,-0.011108398,0.12792969,-0.16992188,-0.010986328,-0.03491211,-0.07324219,0.031982422,0.008117676,0.048339844,-0.022583008,0.09326172,-0.02758789,-0.0038909912,0.028198242,-0.43554688,0.24511719,-0.109375,0.20019531,0.016723633,-0.14355469,-0.16015625,-0.07128906,-0.032714844,0.12597656,-0.060546875,-0.021240234,0.13671875,-0.12451172,-0.16503906,0.083496094,-0.16992188,0.12597656,0.096191406,-0.1015625,0.11425781,0.05102539,-0.12695312,0.016723633,0.12109375,-0.06298828,-0.0099487305,-0.20214844,-0.12792969,0.2109375,0.12988281,0.12695312,-0.111816406,-0.033935547,-0.095703125,0.052490234,-0.09472656,-0.061523438,-0.19335938,-0.09277344,0.09814453,-0.09082031,-0.26757812,-0.015991211,0.017333984,-0.05908203,0.022705078,-0.109375,-0.23730469,-0.014587402,0.0025939941,0.0051879883,-0.13085938,-0.14257812,-0.18457031,0.061523438,0.14453125,-0.12402344,-0.018432617,0.10546875,0.017089844,0.12792969,-0.07861328,0.033447266,-0.35351562,-0.029296875,-0.091308594,0.14648438,-0.12011719,-0.22949219,-0.005065918,0.07470703,-0.052978516,0.064941406,0.23242188,0.13476562,0.0015487671,-0.015380859,-0.140625,-0.022583008,-0.2578125,0.140625,0.012634277,0.18457031,-0.110839844,-0.06347656,-0.10058594,0.100097656,-0.359375,0.030517578,0.10107422,0.03491211,-0.010803223,-0.0037994385,-0.24414062,0.09033203,-0.08251953,-0.01928711,0.18945312,-0.06640625,-0.19433594,-0.10986328,-0.15429688,-0.16210938,-0.012451172,-0.18164062,0.060058594,-0.07080078,-0.095214844,-0.007537842,-0.006072998,-0.14355469,-0.0063171387,-0.03540039,0.0045166016,-0.011352539,-0.03149414,0.041748047,-0.18652344,-0.19335938,-0.078125,-0.0703125,-0.1171875,-0.0068969727,-0.18554688,-0.31640625,0.17382812,0.004180908,-0.11376953,0.1328125,-0.084472656,-0.050048828,0.03881836,-0.05102539,0.068847656,0.041259766,-0.06225586,0.006225586,0.025756836,0.12060547,0.12451172,-0.07421875,-0.15625,0.02319336,-0.10644531,-0.03955078,-0.036865234,0.038330078,0.09277344,-0.044677734,-0.04272461,0.061523438,-0.12158203,0.07470703,0.032470703,0.18945312,-0.100097656,0.23144531,0.020385742,0.07861328,0.12597656,-0.12451172,0.055664062,0.06640625,0.20019531,-0.075683594,-0.0067749023,0.11669922,0.0154418945,0.020629883,0.061523438,0.14648438,-0.13378906,-0.107910156,-0.07421875,-0.03149414,0.046875,-0.09423828,-0.021850586,-0.22851562,0.103027344,-0.04272461,-0.12451172,-0.24316406,0.1328125,0.016479492,-0.16015625,-0.12890625,0.021118164,0.06689453,0.14941406,0.010559082,0.04345703,0.16308594,-0.123535156,0.010864258,0.020996094,-0.114746094,-0.21777344,-0.32617188,-0.14160156,-0.08642578,0.019165039,0.20996094,-0.083984375,-0.110839844,0.071777344,-0.044677734,-0.09375,-0.02709961,-0.18164062,-0.063964844,0.11621094,-0.23046875,-0.18847656,0.03857422,-0.036865234,-0.13769531,-0.08251953,0.15429688,-0.21386719,0.12695312,-0.047607422,-0.064941406,0.11230469,-0.059326172,-0.09472656,-0.109375,0.107910156,0.04736328,-0.14648438,0.09423828,-0.16113281,-0.0079956055,-0.033203125,0.0017700195,-0.15234375,-0.068847656,-0.008544922,0.07763672,-0.041992188,-0.04711914,0.17773438,0.03881836,0.022460938,-0.07519531,-0.19335938,0.16796875,-0.16894531,0.05517578,0.13867188,0.11230469,-0.067871094,0.33984375,0.17675781,0.019042969,-0.07861328,-0.17382812,0.052978516,-0.15429688,-0.12207031,0.008178711,-0.08886719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.14355469,-0.060058594,0.25195312,-0.15722656,-0.006652832,0.055664062,-0.01965332,0.0006866455,-0.040283203,-0.19628906,-0.10839844,0.030517578,-0.05908203,0.06542969,-0.17871094,-0.26367188,0.05053711,-0.048095703,0.00680542,0.08154297,0.111328125,-0.19726562,0.006652832,0.016967773,0.056396484,0.045898438,-0.005432129,0.048583984,-0.06201172,-0.11376953,-0.076660156,-0.027709961,0.004760742,-0.064453125,-0.00982666,0.061279297,-0.032714844,-0.2109375,0.17089844,0.13574219,0.06982422,-0.0063171387,0.21289062,-0.020996094,0.002532959,0.09082031,-0.25390625,-0.057373047,0.057617188,-0.12207031,-0.05517578,0.123535156,-0.15039062,-0.123046875,0.029174805,0.25585938,-0.080078125,-0.048828125,-0.08691406,-0.05126953,0.032470703,0.067871094,-0.1484375,0.012268066,-0.0057373047,-0.03564453,0.13183594,0.13574219,-0.025390625,-0.111328125,0.08300781,-0.20996094,-0.10449219,-0.052734375,-0.040771484,-0.30859375,0.02709961,0.012817383,-0.024047852,0.07373047,-0.18554688,-0.16699219,0.04638672,-0.14941406,0.09033203,-0.07470703,0.06982422,0.125,0.020629883,-0.18945312,-0.03881836,-0.078125,0.071777344,-0.024536133,0.10888672,-0.15039062,0.1484375,-0.20898438,0.0027160645,0.030761719,0.020263672,-0.12109375,-0.048095703,-0.114746094,0.119628906,0.025024414,-0.16699219,0.07470703,0.119628906,-0.12890625,0.13476562,0.15136719,0.036132812,-0.05493164,0.026367188,0.041992188,-0.01586914,-0.07421875,0.12792969,0.11230469,0.095214844,0.07470703,0.012207031,0.19628906,0.072265625,0.18652344,0.020385742,0.234375,0.328125,0.09472656,-0.17871094,0.007537842,0.05444336,0.036132812,-0.0703125,0.111328125,0.08251953,0.05053711,0.16015625,-0.13867188,-0.10888672,0.087890625,0.03540039,0.0703125,0.033203125,-0.04345703,-0.12402344,0.072753906,0.048583984,0.13964844,0.13378906,0.072265625,-0.025878906,-0.07080078,-0.029296875,-0.030151367,0.06347656,0.087890625,-0.22753906,0.028930664,-0.31640625,-0.09375,0.103515625,-0.16894531,0.0011138916,-0.15136719,0.030517578,0.01928711,-0.047607422,-0.23242188,0.28320312,0.01928711,0.16601562,0.0012435913,0.12988281,0.06542969,0.15722656,-0.21289062,-0.06591797,0.123535156,0.088378906,0.04248047,-0.08642578,-0.20019531,0.04272461,0.030883789,-0.07421875,0.09082031,0.10449219,-0.060546875,0.028686523,0.22167969,-0.16992188,0.296875,0.030029297,0.08251953,0.0022277832,-0.017700195,0.035888672,-0.10546875,-0.00680542,0.12158203,0.018554688,0.06640625,0.042236328,0.0072021484,0.036376953,0.234375,-0.017944336,0.14257812,-0.11230469,-0.07714844,-0.049072266,0.015380859,0.1171875,0.04663086,0.036621094,0.018432617,0.095703125,0.17089844,0.099121094,0.0049743652,0.068847656,0.021728516,-0.07714844,-0.03881836,-0.032470703,-0.049560547,-0.11425781,0.2265625,0.087890625,-0.015380859,-0.06542969,-0.03515625,-0.12890625,-0.10839844,0.09863281,-0.008911133,-0.095703125,-0.27148438,-0.32421875,0.024536133,0.06542969,-0.14355469,0.020019531,-0.099121094,-0.029174805,0.039794922,0.07714844,-0.07080078,0.01940918,0.06298828,0.07763672,0.03125,-0.09423828,0.01159668,0.0859375,0.049316406,0.07910156,-0.05029297,0.09667969,0.05419922,0.026245117,-0.122558594,-0.010925293,0.0087890625,0.16601562,-0.1640625,-0.0126953125,-0.00970459,-0.10986328,0.13378906,0.012451172,0.12451172,-0.0036315918,-0.007385254,-0.009887695,-0.22363281,0.049560547,-0.100097656,0.053955078,0.08154297,-0.1796875,0.015380859,0.064941406,-0.043945312,0.07714844,0.19140625,-0.11669922,0.024780273,0.083984375,-0.023803711,0.011169434,0.14355469,0.140625,-0.041259766,0.095214844,0.043945312,-0.068847656,0.087890625,0.0625,-0.19042969,0.0068969727,-0.20410156,-0.18652344,-0.06298828,-0.028320312,-0.040283203,-0.05102539,-0.18652344,0.16992188,-0.013305664,-0.041748047,-0.075683594,-0.019042969,-0.24511719,-0.021484375,-0.026489258,0.107421875,-0.3125,-0.099121094,0.11816406,0.100097656,-0.09814453,-0.09375,-0.017089844,-0.13769531,-0.07128906,0.044921875,-0.03955078,-0.09472656,-0.024902344,-0.1953125,-0.2578125,0.026611328,-0.22167969,0.047607422,0.13378906,-0.008239746,0.072753906,-0.031982422,-0.17382812,0.103515625,-0.14746094,0.005218506,0.072265625,0.05053711,-0.0859375,-0.11230469,-0.15527344,0.11816406,-0.07373047,0.041748047,-0.0010375977,-0.041992188,0.061767578,-0.092285156,0.111328125,0.029541016,0.040527344,0.09863281,0.0079956055,-0.03149414,0.026733398,-0.07373047,0.049316406,-0.28320312,-0.15917969,0.022583008,-0.24707031,-0.04711914,-0.02319336,0.034179688,0.15332031,-0.026611328,0.026123047,0.064941406,0.030761719,0.106933594,0.045654297,-0.09472656,-0.017211914,-0.044433594,-0.28125,-0.09863281,0.0073547363,-0.025512695,-0.08544922,0.19140625,0.08105469,0.095703125,-0.048828125,-0.02746582,-0.059570312,-0.09814453,-0.013427734,0.06347656,0.10058594,0.05859375,-0.35351562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.021484375,-0.100097656,-0.083496094,-0.060058594,0.22949219,0.14453125,0.14941406,0.018188477,0.06201172,-0.02734375,0.05444336,0.26171875,0.12402344,0.17089844,-0.0037384033,0.09472656,-0.018066406,-0.013000488,-0.25585938,-0.08886719,-0.0027770996,-0.118652344,-0.17480469,0.025756836,0.030761719,0.036132812,0.12890625,0.15234375,0.1328125,0.041992188,-0.0390625,-0.12207031,0.27148438,-0.10449219,-0.14941406,-0.08984375,-0.03564453,-0.16015625,0.0625,0.09326172,-0.107421875,0.05053711,-0.041748047,-0.0079956055,0.21289062,-0.051757812,-0.12792969,-0.09326172,-0.028442383,-0.034179688,-0.10205078,-0.057861328,-0.045654297,0.07470703,-0.14746094,0.11376953,-0.096191406,-0.12890625,-0.15039062,-0.084472656,0.15136719,-0.083496094,-0.025390625,0.091796875,0.010192871,-0.2890625,-0.12207031,-0.11230469,0.11425781,-0.072265625,-0.06982422,0.061523438,-0.078125,-0.012451172,-0.07128906,-0.025390625,0.041015625,-0.064941406,-0.059326172,-0.045898438,-0.10546875,-0.049560547,-0.024902344,-0.020385742,-0.10888672,0.055419922,0.038330078,0.049316406,0.004119873,-0.06640625,0.039794922,-0.15136719,0.025878906,-0.14746094,-0.16992188,-0.14257812,-0.119140625,-0.21484375,-0.0052490234,-0.080566406,-0.036865234,-0.08886719,0.05419922,-0.16113281,-0.021728516,-0.21875,-0.0015640259,0.05908203,0.17480469,-0.076171875,0.05517578,-0.14160156,-0.007446289,-0.014709473,0.020629883,-0.057128906,-0.047851562,-0.01550293,0.13671875,-0.122558594,-0.083984375,-0.072753906,0.099121094,-0.14257812,0.07470703,0.07910156,-0.083496094,-0.016845703,-0.15039062,-0.015563965,0.0107421875,0.08691406,0.004852295,0.05883789,-0.032714844,-0.00970459,-0.08642578,-0.052978516,0.056640625,-0.026123047,-0.0055236816,0.12109375,0.05029297,0.04296875,-0.09082031,-0.07324219,-0.104003906,0.034423828,0.012878418,0.17773438,0.08300781,0.05029297,-0.08886719,-0.068359375,0.022094727,-0.056640625,-0.05908203,0.020385742,0.123046875,0.00579834,0.16601562,-0.08105469,-0.03466797,-0.053710938,-0.034179688,-0.055419922,-0.0058898926,0.15429688,0.0062561035,-0.20898438,0.03955078,-0.056640625,-0.032470703,-0.083984375,-0.17675781,-0.19824219,0.11621094,0.19433594,-0.052490234,0.0053100586,-0.057617188,-0.064941406,0.01586914,0.08886719,0.063964844,0.023925781,0.038330078,0.06738281,0.103515625,-0.087402344,-0.10449219,0.068847656,0.10986328,0.30859375,0.020385742,-0.17578125,-0.119628906,-0.056152344,0.037353516,-0.09863281,-0.10449219,0.051513672,0.026489258,-0.049316406,0.034179688,0.14160156,-0.0076904297,-0.1171875,0.017578125,-0.0077819824,-0.14648438,0.18164062,-0.23925781,-0.061523438,-0.18164062,-0.009277344,-0.0060424805,-0.043945312,0.14746094,-0.041748047,0.107421875,0.171875,0.140625,-0.056884766,-0.19824219,-0.02709961,-0.19628906,-0.14648438,-0.055908203,-0.029785156,-0.049072266,0.111328125,-0.021606445,-0.14355469,0.08886719,-0.20898438,-0.15527344,0.12060547,0.13476562,-0.10205078,0.14453125,0.111328125,0.038085938,-0.05126953,-0.068847656,0.11328125,-0.025390625,-0.009643555,0.088378906,-0.14160156,0.119140625,-0.034179688,-0.20214844,0.092285156,0.008239746,-0.20410156,0.08154297,0.038085938,-0.019042969,0.032714844,0.11767578,-0.026611328,0.005493164,-0.064941406,0.0051574707,0.03857422,0.23828125,-0.08300781,-0.060302734,-0.014953613,0.12402344,-0.048828125,-0.025634766,0.18164062,-0.107421875,-0.026123047,0.02746582,0.083984375,-0.023071289,-0.23730469,-0.12695312,0.07861328,0.09033203,0.12988281,-0.28125,0.040527344,0.07324219,-0.0016860962,-0.18945312,0.04248047,-0.068359375,0.17480469,-0.15625,0.05517578,0.008056641,-0.18164062,-0.09375,0.014587402,0.11816406,0.18847656,0.02319336,-0.039794922,-0.091308594,-0.015014648,-0.28515625,0.041015625,0.0032958984,-0.21289062,-0.234375,0.014709473,-0.023925781,0.18652344,-0.018798828,-0.00065612793,-0.1328125,-0.053710938,-0.14648438,-0.0703125,-0.10888672,-0.20117188,-0.060302734,-0.027954102,0.036376953,0.026245117,-0.00051116943,-0.0050354004,-0.119628906,-0.11621094,-0.0073547363,-0.00340271,0.040283203,0.08203125,0.033935547,0.095214844,0.08154297,-0.0035858154,0.0002155304,0.056396484,-0.11035156,0.049560547,0.11425781,0.02734375,0.12158203,-0.16503906,0.041015625,-0.05419922,0.10839844,0.22753906,-0.27929688,-0.110839844,0.04321289,-0.110839844,0.061035156,0.031982422,-0.10253906,-0.013793945,0.05810547,-0.064453125,-0.17480469,-0.07470703,-0.056640625,-0.14453125,-0.17773438,0.2109375,-0.111328125,-0.025512695,-0.0066833496,0.10449219,-0.02746582,0.119628906,-0.15234375,0.13964844,0.1484375,-0.13964844,-0.03955078,0.013671875,-0.12109375,-0.0859375,-0.106933594,0.08691406,0.045166016,-0.16308594,-0.16113281,0.016601562,0.07373047,-0.20019531,-0.100097656,0.13671875,-0.18066406,0.02355957,0.15234375,0.11621094,0.072265625,-0.09667969,0.075683594,-0.0022735596,-0.060302734,-0.037841797,-0.20703125,-0.08154297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15332031,-0.030151367,-0.09082031,-0.08154297,-0.28515625,0.09472656,-0.033203125,0.10449219,0.0390625,0.12109375,0.18164062,0.04663086,0.03125,0.036865234,0.10546875,-0.15332031,-0.13671875,-0.034423828,-0.01977539,0.016479492,-0.087890625,-0.03564453,0.2421875,0.029174805,0.075683594,-0.053710938,0.19042969,-0.04248047,0.1171875,0.13378906,0.0546875,-0.12158203,-0.008178711,-0.25390625,0.012268066,0.041503906,-0.14257812,0.11669922,0.0077819824,0.12792969,0.09472656,0.1015625,0.045654297,0.028320312,0.071777344,0.16113281,0.0051574707,-0.015319824,0.05859375,-0.12011719,0.1171875,0.025024414,-0.20800781,0.040771484,0.32617188,0.20507812,-0.02319336,0.03466797,0.08544922,0.1015625,0.025024414,-0.23339844,0.114746094,-0.052001953,0.115722656,0.20410156,-0.13476562,-0.171875,-0.26757812,-0.06347656,0.10888672,0.16015625,0.008056641,-0.078125,-0.07421875,0.068847656,-0.0076904297,-0.11376953,-0.014953613,-0.03491211,0.0052490234,0.15039062,-0.022583008,-0.031982422,-0.10546875,-0.03540039,-0.045898438,-0.021484375,0.03125,0.11621094,-0.014099121,-0.20703125,0.05126953,-0.016235352,-0.07421875,-0.115722656,0.030883789,0.11376953,0.037353516,0.040039062,0.06298828,0.053222656,0.005554199,-0.16796875,0.06542969,-0.013793945,0.22949219,-0.24511719,-0.10644531,-0.26953125,-0.044921875,-0.110839844,-0.03149414,-0.018554688,-0.119140625,0.036376953,-0.03149414,0.21191406,0.1484375,0.10058594,0.009460449,0.045166016,0.21289062,-0.13769531,-0.032958984,0.00017929077,0.08886719,-0.06298828,-0.026489258,-0.080078125,0.11425781,-0.05908203,0.029174805,-0.044677734,-0.00793457,-0.01574707,-0.02758789,0.049316406,-0.0546875,0.056152344,0.059570312,-0.048828125,-0.08203125,-0.09863281,-0.22851562,-0.03466797,-0.035888672,-0.055908203,-0.22460938,0.21289062,0.07861328,-0.13085938,0.026489258,-0.060058594,-0.091308594,0.040771484,0.009887695,-0.008483887,-0.17382812,-0.16796875,0.119628906,-0.011108398,-0.09423828,-0.14257812,0.25390625,0.08203125,0.024658203,0.016113281,-0.036865234,0.12988281,-0.15234375,-0.0050964355,-0.084472656,0.071777344,0.1875,0.09326172,0.06591797,-0.041503906,-0.080566406,-0.091796875,-0.12207031,0.060791016,0.052978516,0.029785156,0.053466797,0.104003906,-0.10205078,0.0057678223,-0.08496094,0.025878906,0.08984375,-0.016113281,-0.13085938,-0.023925781,0.011413574,-0.26171875,-0.09375,0.2578125,0.083496094,-0.16894531,-0.057373047,0.01977539,0.109375,-0.056396484,0.013549805,-0.075683594,-0.01586914,0.029052734,0.06689453,-0.08203125,0.104003906,-0.061767578,-0.027709961,0.17089844,0.33203125,0.0027313232,-0.0066833496,0.106933594,0.006225586,0.140625,0.20800781,0.052490234,-0.09765625,0.047607422,0.15625,-0.21777344,-0.063964844,-0.13476562,-0.04248047,-0.067871094,0.048828125,-0.16113281,-0.03564453,-0.21386719,-0.045898438,0.05029297,-0.091796875,0.041748047,-0.13574219,-0.048583984,0.21582031,0.042236328,0.1328125,0.014099121,0.17480469,0.23828125,0.0052490234,0.03491211,-0.1328125,0.13867188,0.12060547,-0.036621094,-0.22558594,0.08203125,0.063964844,0.16699219,-0.052978516,0.18554688,-0.21777344,0.08496094,0.049804688,0.064941406,-0.087890625,-0.03955078,-0.0072631836,0.06933594,0.071777344,0.0032348633,-0.15039062,0.104003906,0.17773438,0.045898438,0.24121094,0.045898438,-0.052978516,-0.23535156,0.09326172,0.10644531,-0.15722656,-0.056884766,-0.040527344,0.021484375,-0.013427734,-0.099609375,-0.045410156,-0.1171875,0.087402344,-0.035888672,0.11425781,0.15136719,-0.14941406,-0.33984375,0.0625,0.12597656,-0.04736328,0.12988281,0.016479492,-0.16992188,0.036376953,0.14648438,0.046142578,-0.19921875,0.020874023,-0.09326172,0.2890625,0.020629883,0.044921875,-0.17285156,-0.009460449,-0.107421875,0.06542969,0.06640625,-0.0055236816,-0.35742188,0.008117676,-0.06738281,0.0146484375,0.14746094,-0.23242188,0.01977539,0.13671875,0.15527344,-0.028930664,0.08544922,-0.20410156,0.34765625,-0.017822266,-0.003753662,-0.037109375,0.14355469,-0.11767578,-0.09814453,0.11230469,0.10205078,0.1328125,0.06640625,0.01940918,-0.09667969,-0.0126953125,-0.11767578,0.0025482178,-0.1640625,-0.080566406,-0.075683594,-0.048828125,0.095703125,0.004272461,-0.15136719,-0.051757812,-0.09033203,0.16503906,-0.1328125,0.078125,0.10449219,0.1328125,-0.17480469,0.014953613,-0.027832031,-0.083496094,-0.050048828,-0.03173828,0.15527344,-0.078125,-0.06542969,0.041259766,-0.016235352,0.15136719,-0.061767578,-0.044921875,-0.0021209717,-0.048095703,-0.22070312,0.052734375,0.063964844,0.099121094,-0.040771484,0.13476562,-0.12695312,-0.096191406,0.013183594,0.043945312,-0.09082031,0.091796875,-0.083496094,0.018188477,0.042236328,0.063964844,-0.30273438,0.061523438,-0.28320312,-0.14648438,-0.01550293,0.015625,-0.31835938,0.071777344,0.18652344,-0.08935547,0.0057678223,-0.12207031,0.057373047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.09667969,-0.203125,0.052734375,0.024658203,0.029785156,-0.10595703,0.1640625,-0.10839844,-0.10498047,0.10986328,0.18457031,-0.20410156,-0.084472656,0.22460938,-0.09667969,-0.03173828,0.051757812,-0.17285156,0.024169922,-0.07421875,-0.05126953,-0.07519531,0.09765625,-0.023071289,-0.15625,0.014892578,-0.09082031,-0.07519531,-0.19042969,0.0625,-0.08935547,-0.017456055,0.1484375,0.0019073486,-0.084472656,-0.053710938,-0.08154297,0.075683594,0.04321289,-0.014404297,0.037353516,0.07910156,0.14453125,-0.033447266,-0.1953125,0.030517578,0.004638672,-0.048339844,-0.15917969,0.0859375,-0.056396484,-0.12402344,-0.118652344,0.16894531,0.13476562,0.083984375,0.060058594,-0.080078125,0.20996094,0.025024414,0.05810547,0.048583984,0.029418945,-0.07519531,0.122558594,-0.14746094,-0.053710938,0.125,-0.35742188,-0.005584717,0.27929688,-0.13769531,0.014587402,0.107910156,0.24707031,-0.056640625,0.19140625,0.063964844,0.08544922,-0.37109375,-0.019897461,-0.17675781,-0.04638672,-0.25585938,-0.029174805,0.1875,0.088378906,0.0044555664,-0.099121094,-0.041992188,-0.049560547,0.119628906,-0.17382812,-0.0066223145,-0.075683594,0.026733398,-0.16601562,-0.028930664,0.027832031,0.05859375,-0.01171875,-0.13476562,0.014892578,0.025512695,-0.061523438,-0.140625,0.12109375,-0.07373047,-0.088378906,0.088378906,0.03930664,0.09423828,0.27734375,0.19335938,-0.037841797,-0.029541016,-0.16796875,0.037353516,0.14355469,0.09082031,-0.056396484,0.0119018555,-0.23632812,0.20507812,-0.19726562,0.05834961,0.07080078,0.021118164,-0.041015625,0.3984375,-0.111328125,-0.33398438,-0.044189453,0.110839844,-0.09716797,0.03540039,-0.044677734,0.012023926,0.075683594,0.16503906,-0.100097656,-0.05029297,0.24121094,-0.053710938,0.09765625,0.28125,-0.01361084,0.22753906,-0.16992188,-0.20507812,-0.08935547,0.30078125,0.080566406,0.07763672,0.071777344,-0.076171875,0.09375,-0.14257812,0.056884766,-0.15527344,-0.067871094,0.063964844,0.0013275146,-0.119628906,0.004638672,0.049072266,0.14648438,0.078125,-0.04345703,-0.1640625,0.06542969,-0.05493164,-0.18847656,-0.100097656,-0.123046875,-0.19921875,-0.171875,-0.04321289,0.083496094,0.026123047,0.05029297,0.10107422,0.22949219,0.032226562,-0.07519531,-0.17675781,0.02709961,-0.022827148,-0.107421875,0.12109375,0.0052490234,-0.068847656,-0.19335938,0.16894531,-0.057861328,0.0038909912,-0.033935547,0.07470703,-0.19726562,0.036132812,0.118652344,-0.07373047,0.036865234,0.06738281,-0.053710938,0.014160156,0.09716797,-0.16113281,-0.00039672852,0.11621094,-0.084472656,-0.11230469,-0.036865234,0.027832031,0.119628906,0.07910156,-0.111816406,-0.1875,-0.0154418945,0.16796875,-0.09375,0.22265625,0.1171875,-0.22363281,0.099609375,0.12109375,-0.04663086,-0.08105469,0.18554688,0.022338867,-0.0703125,-0.0056762695,-0.18066406,-0.026611328,0.1640625,-0.14941406,0.08154297,-0.052001953,-0.09326172,-0.15527344,-0.038330078,0.036376953,-0.099121094,0.036376953,-0.016845703,0.11279297,-0.10253906,0.020629883,-0.107910156,-0.056884766,-0.048339844,0.04736328,-0.09472656,-0.06640625,-0.023925781,-0.06982422,-0.16699219,0.057617188,-0.057617188,0.06298828,-0.095703125,0.0859375,-0.018066406,0.15039062,0.047851562,-0.096191406,-0.020141602,0.01965332,-0.15332031,0.15917969,-0.109375,-0.063964844,-0.03857422,0.18554688,-0.09814453,-0.20019531,-0.18554688,0.14355469,-0.114746094,0.028686523,0.09033203,0.04321289,-0.052978516,-0.14257812,-0.072265625,0.064453125,0.02319336,-0.10205078,-0.13183594,0.37304688,-0.20507812,-0.13867188,0.1328125,0.20019531,0.015319824,-0.056640625,0.012451172,0.06982422,0.12988281,0.057861328,-0.01977539,0.061035156,0.107910156,-0.0015640259,0.0036773682,0.25390625,-0.21386719,-0.115234375,0.22460938,0.012878418,0.01977539,0.08935547,0.010009766,0.13769531,-0.05810547,0.1875,0.05419922,0.25390625,0.010437012,-0.15234375,-0.18554688,-0.004272461,0.11376953,-0.078125,-0.25585938,0.22265625,-0.1484375,0.026123047,-0.012084961,-0.18164062,0.29492188,-0.11669922,0.10546875,0.017700195,-0.140625,-0.12060547,-0.064453125,0.07763672,0.0005950928,-0.20117188,-0.08496094,0.06933594,-0.06933594,0.16699219,-0.09863281,-0.2109375,0.06591797,-0.24511719,-0.18164062,0.0017166138,-0.22265625,-0.24316406,0.087402344,0.34179688,-0.20410156,-0.24316406,0.041748047,0.19238281,-0.22558594,-0.024658203,0.028930664,0.049072266,-0.03125,-0.016967773,-0.10058594,0.106933594,0.03100586,0.02758789,0.049560547,0.20605469,-0.15039062,-0.025878906,0.04272461,0.053710938,-0.27148438,0.16015625,0.16210938,0.072753906,0.140625,0.046875,-0.15527344,-0.123535156,-0.25585938,0.13867188,0.053466797,0.08544922,-0.17089844,-0.045166016,0.03515625,0.24804688,-0.19335938,-0.053222656,0.071777344,-0.040039062,0.20507812,-0.0859375,-0.09863281,0.106933594,0.010559082,0.05883789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.14453125,-0.059570312,0.031982422,-0.026000977,0.14648438,0.23535156,-0.13769531,-0.03857422,0.12109375,-0.076660156,0.25390625,0.10644531,0.17285156,0.063964844,-0.02368164,0.041503906,-0.0043029785,-0.21191406,-0.022583008,0.030883789,0.008239746,0.17675781,-0.140625,0.22753906,0.106933594,0.015075684,0.17871094,0.095214844,0.19726562,0.064453125,0.010925293,0.09277344,-0.071777344,-0.027709961,0.044677734,-0.076171875,-0.02758789,0.026855469,0.060058594,-0.29882812,-0.056396484,0.13769531,0.012451172,0.16015625,-0.20117188,0.103027344,0.118652344,0.08642578,0.036865234,-0.10595703,-0.18261719,-0.01928711,0.07519531,0.099609375,-0.28710938,0.22363281,-0.005706787,0.029296875,-0.16796875,0.033935547,-0.15039062,-0.008850098,-0.17089844,0.14550781,-0.09716797,0.11230469,-0.14550781,-0.18652344,-0.024658203,-0.03149414,-0.24121094,0.16601562,-0.048339844,0.059814453,-0.083984375,0.088378906,-0.37695312,-0.05078125,-0.026000977,-0.026367188,-0.05908203,-0.011047363,-0.07910156,0.018920898,-0.20117188,0.10058594,-0.07421875,0.12988281,0.21386719,0.024536133,-0.068847656,0.19042969,0.038330078,-0.13476562,0.17285156,-0.048828125,0.016967773,-0.0625,0.17382812,-0.0006828308,-0.18652344,0.20898438,0.068359375,-0.03149414,-0.020385742,0.048583984,-0.46484375,-0.016479492,0.07080078,0.23242188,0.06689453,0.08886719,0.15136719,-0.16796875,0.10595703,0.060791016,0.014038086,0.021118164,0.1796875,0.072265625,0.075683594,0.003540039,-0.022338867,-0.076660156,-0.10888672,0.21875,0.1015625,0.14941406,-0.08300781,-0.16503906,0.20800781,-0.048095703,0.010559082,-0.053955078,-0.10644531,-0.00050354004,0.06933594,0.04321289,0.1015625,-0.0010681152,-0.14453125,0.13476562,0.053955078,-0.01586914,-0.23046875,0.064941406,-0.104003906,-0.07910156,-0.26953125,0.06298828,0.16210938,0.053710938,0.0024261475,-0.09765625,-0.06933594,-0.17285156,-0.14941406,-0.01953125,0.080078125,-0.030151367,-0.17578125,0.01574707,-0.23144531,-0.0703125,-0.19042969,0.035888672,-0.1328125,0.026123047,0.118652344,0.110839844,-0.118652344,-0.008056641,0.14257812,-0.06640625,-0.061035156,0.20214844,-0.125,0.15820312,-0.05859375,-0.012756348,-0.23339844,-0.08203125,-0.14941406,0.11035156,-0.01940918,0.050048828,-0.078125,-0.2421875,0.29296875,0.0024871826,-0.107910156,0.19824219,-0.06689453,-0.14355469,-0.099609375,-0.15332031,-0.265625,0.14746094,0.040771484,0.06347656,0.0018386841,0.08251953,-0.27539062,-0.20410156,0.06347656,-0.07421875,-0.030517578,0.16796875,0.008850098,-0.07910156,-0.008300781,0.024658203,0.0045166016,0.22558594,-0.068359375,0.071777344,-0.029907227,0.10986328,-0.04296875,-0.008605957,0.072753906,0.045410156,-0.0107421875,-0.06640625,-0.068359375,-0.040771484,-0.21191406,-0.08886719,0.05834961,0.07714844,-0.076171875,-0.15429688,-0.030151367,0.09375,-0.021240234,-0.17382812,-0.234375,0.19824219,-0.061035156,-0.16894531,0.072753906,-0.09082031,-0.13085938,-0.080566406,-0.005340576,-0.056152344,-0.26171875,0.115234375,0.00031280518,0.14746094,-0.19824219,-0.111328125,-0.025390625,0.16894531,-0.009521484,0.033691406,-0.026000977,0.010314941,-0.09082031,-0.07763672,0.15136719,-0.15234375,-0.25,0.05859375,-0.107910156,0.119140625,0.12109375,-0.14550781,0.15332031,0.1640625,-0.099121094,-0.078125,0.16503906,-0.014953613,-0.13476562,-0.1875,0.10546875,-0.09863281,-0.13476562,-0.05053711,0.10839844,-0.068359375,0.028808594,-0.08886719,-0.080078125,-0.15136719,-0.04736328,0.16113281,0.032226562,-0.055908203,-0.041259766,0.026733398,-0.044677734,0.15429688,0.22851562,0.03149414,0.01586914,-0.171875,0.037841797,-0.06982422,-0.0025787354,0.29882812,0.13183594,-0.030029297,-0.01373291,0.005493164,-0.039794922,-0.019897461,-0.03857422,-0.13574219,-0.07324219,0.052001953,0.140625,0.028686523,0.123046875,0.096191406,-0.24316406,0.22460938,-0.07324219,0.09716797,0.19726562,0.15527344,-0.27929688,0.18164062,-0.12402344,0.24511719,-0.14550781,0.057617188,-0.22167969,-0.03466797,0.076660156,-0.23339844,0.123046875,-0.171875,-0.23339844,0.056640625,0.2265625,0.103027344,-0.0146484375,0.03857422,0.11816406,-0.018554688,0.027709961,0.1875,0.026611328,-0.096191406,0.23828125,0.03112793,-0.095214844,-0.026245117,-0.080566406,-0.044677734,0.10253906,-0.15429688,-0.0859375,0.012084961,-0.071777344,0.15136719,0.1796875,-0.012878418,0.044921875,-0.055664062,0.12060547,0.013366699,-0.05029297,0.026000977,-0.12988281,0.017822266,0.037841797,-0.2890625,-0.068359375,-0.13574219,0.25195312,0.16894531,-0.07373047,0.0057678223,-0.09033203,-0.33398438,0.09765625,-0.049316406,-0.03515625,0.063964844,0.0063171387,-0.06640625,0.22851562,-0.23535156,-0.1171875,-0.09277344,-0.1640625,0.2578125,0.10107422,-0.107421875,0.06738281,-0.40039062,0.036376953,0.1796875,-0.234375,0.21386719,-0.20410156,0.0069274902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.35546875,-0.049804688,-0.024536133,0.015319824,-0.14257812,0.203125,-0.14550781,-0.17773438,-0.06591797,-0.006591797,0.1953125,-0.0043029785,-0.018432617,-0.04736328,0.11328125,-0.15527344,-0.009460449,0.25195312,-0.04345703,0.02709961,-0.114746094,0.20507812,-0.12597656,-0.061523438,0.034423828,0.0011367798,0.08300781,-0.010864258,-0.16210938,-0.15917969,0.14550781,-0.11230469,0.075683594,0.16308594,0.002456665,0.025756836,-0.10546875,0.019042969,-0.15234375,-0.02709961,-0.092285156,-0.014465332,0.08691406,0.087402344,-0.16894531,0.079589844,-0.030639648,-0.1171875,0.10449219,0.29882812,-0.1328125,-0.033447266,-0.026855469,0.10888672,-0.040283203,-0.12060547,-0.13769531,-0.103515625,0.0042419434,0.10498047,-0.022338867,-0.09863281,0.030395508,-0.03564453,0.100097656,0.234375,0.009338379,-0.11669922,-0.06933594,0.12988281,-0.09326172,-0.07763672,-0.13964844,0.15625,0.109375,0.29882812,0.072753906,-0.03173828,0.17382812,-0.10253906,-0.017456055,0.13378906,0.13574219,0.017211914,-0.16308594,-0.043945312,-0.02722168,0.0044555664,-0.05078125,0.12695312,0.04711914,-0.15820312,0.068359375,0.11816406,-0.22558594,-0.088378906,0.21972656,-0.10253906,-0.067871094,0.13378906,0.046875,-0.017822266,-0.06542969,-0.38476562,0.022460938,0.13085938,0.18847656,0.17773438,-0.15722656,0.0134887695,0.17871094,0.021972656,0.053466797,-0.053710938,-0.12597656,-0.23046875,0.026245117,-0.07128906,-0.32617188,-0.16210938,-0.13671875,0.060302734,-0.13085938,0.14746094,-0.087402344,-0.080078125,-0.08642578,-0.08496094,-0.016845703,0.13183594,0.15820312,-0.08300781,-0.18066406,-0.14355469,0.055908203,-0.03540039,0.09033203,0.091308594,-0.08984375,0.0052490234,-0.033691406,-0.13378906,0.055908203,-0.04711914,0.123535156,0.06201172,0.063964844,-0.06933594,0.06298828,0.10546875,0.04272461,-0.061035156,0.005432129,0.084472656,0.068847656,-0.029541016,-0.05053711,0.08691406,0.048583984,0.048828125,-0.11621094,-0.23242188,0.072753906,-0.099609375,0.13671875,0.0126953125,-0.10205078,-0.16796875,0.07910156,0.15234375,0.076660156,-0.0036010742,0.103027344,0.18945312,-0.19335938,-0.14257812,0.12792969,-0.22167969,0.16992188,0.14453125,0.15039062,-0.12695312,-0.015197754,-0.16992188,-0.016479492,0.20898438,-0.06738281,0.0234375,0.0057373047,-0.038330078,-0.14355469,0.10986328,-0.11767578,0.0032196045,-0.08544922,-0.084472656,-0.15527344,-0.09667969,-0.09423828,-0.11621094,0.06933594,0.12988281,0.016967773,-0.033203125,-0.05493164,-0.02722168,-0.19921875,0.107421875,0.104003906,0.024291992,-0.033203125,-0.036132812,0.13964844,0.04321289,-0.04321289,0.08886719,-0.07373047,-0.021606445,0.056884766,-0.08300781,-0.07763672,-0.09082031,0.007446289,-0.013366699,0.15722656,0.05029297,-0.057373047,0.040039062,0.18652344,0.18847656,0.20019531,0.032958984,-0.17675781,0.092285156,0.068847656,0.0390625,-0.05029297,-0.0011520386,-0.111328125,-0.029296875,-0.045898438,-0.014465332,-0.091308594,-0.28125,0.10498047,0.023925781,0.068359375,-0.12695312,0.14550781,-0.050048828,0.31835938,0.16210938,0.118652344,0.13964844,-0.27929688,-0.119628906,-0.15625,0.22070312,-0.10839844,0.015075684,0.15527344,0.06542969,0.10595703,-0.1015625,-0.021118164,-0.00680542,0.057128906,0.0012283325,0.041259766,0.1640625,-0.17675781,-0.068359375,-0.18066406,-0.08496094,0.053466797,0.049316406,0.03881836,0.13574219,0.05419922,-0.25390625,-0.115722656,-0.061035156,0.1953125,-0.1640625,0.11621094,-0.051757812,-0.12988281,-0.020874023,0.11425781,-0.14257812,0.020263672,0.030029297,0.043701172,-0.012756348,0.19726562,0.11425781,0.035888672,-0.047851562,0.038085938,-0.22753906,-0.072753906,-0.028808594,-0.114746094,-0.21289062,-0.056152344,0.080078125,-0.09863281,0.020141602,0.044189453,0.09277344,0.061035156,0.18847656,0.013122559,0.21972656,0.10205078,0.056640625,-0.040039062,-0.041259766,0.04345703,0.25195312,-0.15820312,0.0859375,-0.13769531,-0.43554688,-0.042236328,-0.26953125,-0.10253906,-0.14453125,-0.088378906,-0.21582031,-0.064941406,0.0625,0.060302734,-0.032226562,-0.265625,-0.103515625,-0.18457031,-0.07080078,-0.10205078,-0.265625,-0.10205078,0.07373047,-0.024414062,0.06225586,-0.048339844,-0.12597656,0.041992188,0.05810547,0.05053711,0.23339844,-0.19238281,-0.072265625,-0.0062561035,-0.25,-0.016113281,0.037597656,-0.14550781,0.29492188,-0.23242188,-0.009399414,-0.014526367,-0.140625,0.084472656,-0.234375,0.18359375,0.2578125,-0.22949219,-0.09472656,-0.08154297,-0.1328125,-0.059814453,0.18164062,0.06738281,0.16796875,-0.012756348,0.13183594,-0.15429688,-0.09375,0.12890625,-0.3046875,0.036865234,0.05029297,-0.21484375,0.011108398,0.09326172,-0.099609375,-0.036865234,-0.08886719,-0.13085938,0.09667969,0.13867188,0.30273438,0.0029449463,-0.0009994507,-0.16601562,-0.15332031,0.0087890625,0.107421875,-0.036621094,0.0019683838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13085938,-0.21484375,-0.08496094,0.1328125,-0.20410156,0.0546875,-0.1875,-0.08544922,0.083984375,0.114746094,0.015258789,0.06298828,-0.014099121,-0.068359375,-0.088378906,-0.020263672,0.15039062,-0.16015625,-0.09326172,0.07470703,-0.06738281,0.055664062,-0.0064697266,-0.06225586,0.00065231323,0.12695312,0.0021514893,-0.017944336,0.022949219,-0.14941406,0.028198242,0.0008277893,0.06298828,0.014953613,-0.09326172,0.08154297,-0.25195312,0.13574219,0.022827148,-0.17871094,0.0703125,0.07861328,-0.004638672,0.103515625,-0.083496094,0.00037384033,-0.13671875,-0.20117188,-0.09033203,0.24023438,-0.09277344,-0.05029297,-0.18945312,0.104003906,0.10644531,0.0012512207,-0.07324219,0.0095825195,0.049316406,-0.016235352,0.030639648,-0.078125,-0.043945312,-0.17578125,0.15429688,0.091308594,-0.15722656,-0.13378906,-0.25585938,0.08496094,0.15332031,-0.19921875,0.09033203,-0.16894531,0.14941406,-0.115722656,0.068847656,-0.103027344,-0.07080078,-0.11425781,-0.017578125,0.015014648,0.07519531,0.09033203,-0.13183594,-0.104003906,0.12011719,-0.06640625,-0.067871094,0.10449219,-0.07128906,0.16796875,-0.107910156,-0.056396484,0.021728516,-0.12988281,0.048095703,0.08251953,0.010375977,0.15527344,0.083984375,0.1953125,-0.068359375,0.010925293,0.00089645386,0.10205078,-0.003112793,0.06689453,0.0072631836,0.203125,-0.114746094,0.096191406,-0.23535156,-0.11767578,-0.12402344,0.001045227,-0.1640625,0.18261719,0.048095703,0.16308594,0.008666992,0.07470703,0.014404297,0.041992188,0.052490234,0.00014019012,0.0052490234,-0.14160156,0.046875,-0.17578125,-0.119628906,-0.114746094,0.033447266,0.041259766,0.09765625,-0.17773438,0.0027618408,0.0038452148,-0.044433594,-0.067871094,-0.079589844,0.13574219,-0.08496094,-0.20019531,-0.009765625,-0.016967773,-0.053466797,-0.1484375,0.033447266,0.034423828,-0.07763672,-0.16113281,-0.04736328,-0.0040893555,-0.15136719,0.05053711,0.026367188,0.1875,-0.125,-0.123046875,-0.068847656,-0.004547119,-0.110839844,0.04248047,0.30664062,0.19726562,-0.06591797,-0.19238281,-0.016601562,-0.099121094,0.13574219,0.047851562,-0.10253906,-0.064453125,0.06201172,-0.15039062,-0.057128906,0.068359375,-0.16894531,-0.09423828,0.17480469,0.16796875,0.06201172,0.030273438,0.02355957,-0.08496094,0.08203125,0.15136719,0.083984375,0.048583984,0.057617188,-0.13476562,-0.17675781,0.21679688,0.032470703,0.0021362305,-0.18164062,0.2265625,-0.010192871,-0.125,-0.0029754639,-0.07763672,0.056884766,0.023803711,0.09375,-0.021972656,-0.08154297,-0.19140625,-0.12890625,0.24609375,-0.10205078,-0.100097656,0.18261719,0.18066406,-0.05078125,0.05078125,-0.052978516,-0.08203125,0.10644531,-0.18457031,-0.03540039,-0.04663086,0.11816406,-0.016601562,0.106933594,0.27929688,-0.037597656,-0.16699219,0.0009727478,-0.043945312,0.028198242,-0.20019531,-0.044921875,-0.02734375,0.046142578,-0.17871094,-0.15820312,-0.048339844,0.13085938,-0.091796875,-0.16308594,-0.049072266,-0.203125,-0.06640625,-0.076660156,0.067871094,0.0043640137,-0.20019531,-0.021850586,-0.328125,-0.016845703,-0.0024871826,-0.021118164,-0.119140625,-0.06591797,-0.17480469,-0.09423828,0.15625,-0.017700195,0.01940918,-0.040527344,-0.020019531,-0.008117676,-0.071777344,0.011657715,-0.059814453,-0.026000977,0.087890625,0.12988281,0.015258789,-0.055419922,-0.20410156,-0.30273438,0.09472656,0.006500244,-0.11328125,-0.21679688,-0.14160156,-0.083984375,-0.0061035156,-0.049072266,0.033691406,0.09423828,0.038085938,0.1328125,-0.03173828,-0.1328125,-0.09472656,0.015075684,-0.08886719,0.09277344,-0.068847656,0.014953613,-0.027709961,0.020629883,-0.20507812,-0.059326172,-0.19921875,0.14257812,-0.22265625,-0.10058594,-0.068847656,-0.028198242,-0.20117188,-0.10644531,-0.2578125,-0.1328125,-0.006225586,-0.021118164,-0.083496094,0.16894531,-0.16503906,-0.084472656,-0.1171875,0.022338867,-0.037597656,0.007598877,-0.16308594,0.006958008,-0.07763672,-0.203125,-0.09326172,-0.059570312,-0.15234375,0.033447266,0.02758789,0.051757812,-0.07763672,0.04272461,0.024169922,-0.16210938,0.059570312,-0.16503906,-0.075683594,-0.123046875,-0.21582031,-0.032226562,0.1640625,-0.06640625,0.045654297,0.09082031,0.05493164,-0.103515625,-0.11035156,0.068359375,0.05102539,0.00017642975,0.14941406,0.10644531,0.012268066,0.060302734,-0.29882812,0.076171875,-0.06225586,0.10546875,-0.088378906,-0.125,0.032470703,-0.020385742,0.104003906,0.064941406,0.0077209473,0.234375,0.08642578,0.19433594,0.16308594,-0.025268555,-0.047607422,0.09277344,-0.11621094,0.110839844,0.14941406,-0.06640625,0.01550293,-0.10253906,0.014831543,-0.042236328,-0.041015625,-0.06933594,0.043945312,-0.14257812,-0.028198242,-0.118652344,-0.14746094,0.07519531,-0.10107422,0.038085938,0.11230469,-0.076660156,-0.044433594,-0.015380859,-0.17285156,-0.10058594,0.11279297,-0.068359375,-0.013244629,-0.12890625,-0.041748047,-0.14257812,-0.096191406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.140625,0.18261719,-0.1171875,-0.15917969,-0.16503906,0.0032043457,-0.087890625,-0.057861328,-0.107910156,0.07910156,-0.0020751953,0.13378906,-0.030029297,-0.1796875,0.12988281,-0.09423828,-0.056152344,-0.15722656,0.08154297,-0.11230469,-0.099609375,0.27539062,-0.07373047,-0.12890625,0.08105469,-0.21777344,-0.020996094,-0.061279297,-0.12011719,-0.2890625,0.11230469,-0.23632812,-0.07128906,-0.0050964355,0.0154418945,0.03112793,-0.087890625,-0.046142578,0.0859375,0.08886719,-0.125,-0.12890625,0.11621094,-0.13476562,-0.14453125,-0.06933594,0.063964844,-0.22070312,0.13574219,0.059326172,0.036621094,-0.068847656,-0.087402344,-0.04321289,-0.0625,-0.14355469,-0.040771484,-0.15527344,-0.11425781,0.107910156,0.12402344,0.010803223,0.041992188,-0.035888672,0.06542969,-0.16113281,-0.115722656,-0.010986328,-0.017944336,-0.027832031,0.07373047,0.00793457,-0.12109375,-0.07910156,-0.14648438,0.107910156,-0.14941406,-0.018188477,-0.20507812,0.20507812,-0.09082031,-0.044921875,0.045898438,-0.037597656,0.06738281,0.15332031,-0.2109375,0.13183594,-0.096191406,0.029541016,0.05029297,0.17089844,-0.080078125,-0.07861328,-0.17675781,0.15820312,-0.1640625,-0.1328125,0.16113281,-0.0019226074,-0.06542969,0.115722656,-0.296875,0.008544922,0.04272461,0.072753906,-0.0040283203,-0.20703125,-0.16210938,-0.0072631836,-0.1171875,-0.04711914,-0.08544922,-0.11621094,0.12695312,-0.24511719,-0.22558594,-0.15527344,-0.29492188,-0.1484375,0.04736328,-0.037109375,0.18164062,-0.09277344,-0.09667969,-0.22460938,0.08300781,-0.057373047,-0.12988281,0.025756836,0.16992188,0.21875,-0.033935547,0.04296875,-0.028930664,-0.234375,-0.031982422,0.09375,0.00982666,-0.15332031,0.055908203,0.0625,0.008728027,0.08984375,-0.078125,0.16503906,0.08105469,-0.061767578,0.1953125,-0.08203125,-0.19921875,-0.09716797,-0.007507324,0.059570312,-0.07373047,0.23925781,0.03112793,-0.13867188,-0.03173828,0.28320312,-0.14160156,0.15820312,-0.001335144,-0.28515625,-0.007232666,-0.1796875,-0.0010528564,-0.016967773,-0.0011444092,0.14453125,-0.02746582,-0.043945312,0.07714844,-0.12988281,-0.12695312,0.09716797,-0.06298828,-0.025512695,0.052734375,-0.06689453,-0.015014648,0.1640625,0.10888672,0.025512695,0.010253906,0.12402344,-0.061035156,0.17382812,0.10498047,-0.13867188,0.048339844,-0.06640625,-0.12890625,0.12597656,-0.030029297,-0.08886719,-0.043945312,-0.009216309,0.14941406,-0.059326172,0.025024414,0.0041503906,0.12792969,-0.005065918,0.08105469,0.076171875,-0.16894531,0.13183594,0.056640625,-0.053222656,0.08935547,0.024414062,0.05078125,-0.13671875,0.24023438,0.0048828125,0.06689453,0.0859375,-0.10888672,-0.057617188,0.020141602,0.068359375,-0.052246094,-0.021362305,0.18261719,-0.12988281,0.16308594,0.103515625,-0.07861328,-0.08251953,-0.18261719,-0.061767578,0.072753906,0.00088119507,-0.06347656,-0.06542969,0.0390625,-0.14648438,-0.18457031,0.09423828,-0.11328125,-0.044921875,-0.060791016,0.07861328,-0.19628906,-0.15429688,-0.119140625,0.006713867,-0.033935547,-0.034179688,0.064453125,-0.06298828,0.08642578,-0.072753906,-0.16015625,-0.095703125,0.019165039,-0.12792969,0.1484375,-0.095703125,0.115722656,0.23242188,-0.0126953125,-0.002960205,-0.059570312,-0.061767578,0.032226562,-0.15917969,-0.12207031,0.037109375,-0.023071289,-0.12011719,0.011474609,0.010803223,-0.032226562,-0.21582031,0.14257812,0.072265625,0.22558594,-0.044189453,-0.07128906,0.096191406,-0.13671875,-0.09814453,-0.034423828,0.14550781,0.140625,-0.23242188,-0.19335938,0.067871094,-0.031982422,-0.099121094,0.038330078,-0.18847656,-0.14355469,0.013977051,-0.079589844,-0.0390625,-0.016357422,-0.13085938,-0.040283203,-0.016357422,-0.021362305,0.050048828,-0.16113281,-0.06738281,-0.006500244,0.122558594,0.07128906,-0.024902344,-0.076171875,-0.27929688,0.015563965,-0.12597656,0.026367188,-0.016845703,-0.14746094,0.026367188,0.015258789,0.064941406,-0.06542969,-0.046875,-0.100097656,-0.15917969,-0.08251953,0.14257812,-0.16699219,0.07080078,-0.064941406,-0.0065307617,0.01940918,0.040771484,0.04711914,0.020141602,0.04321289,0.17382812,0.35742188,-0.08642578,-0.09375,-0.09375,0.15039062,0.07128906,0.04663086,0.076171875,0.029296875,-0.09472656,-0.018920898,0.15917969,-0.0054626465,-0.06298828,-0.1953125,0.05078125,-0.002532959,-0.1640625,-0.009643555,-0.24804688,0.103515625,0.12695312,0.013061523,-0.016601562,-0.09814453,-0.140625,-0.018554688,-0.16210938,0.07128906,0.06591797,-0.11621094,-0.036376953,-0.375,-0.044921875,-0.087890625,0.09716797,0.09667969,-0.087402344,0.040283203,-0.13867188,-0.037841797,-0.17871094,-0.041992188,-0.15917969,-0.04321289,0.037841797,-0.22949219,0.008544922,-0.06738281,-0.16601562,-0.33789062,-0.006225586,-0.0026397705,0.13183594,0.017089844,-0.13867188,-0.08935547,-0.0015487671,-0.038085938,-0.12988281,0.045898438,0.1015625,0.22265625,0.022094727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.16210938,0.17773438,-0.22167969,0.100097656,-0.041748047,-0.103027344,0.080078125,-0.18554688,0.004699707,-0.00970459,0.0053710938,-0.122558594,-0.12060547,0.07910156,-0.052734375,0.009460449,0.037109375,-0.18164062,-0.050048828,0.0012359619,-0.16503906,-0.18066406,0.076171875,-0.19726562,-0.000289917,-0.056884766,0.0066223145,-0.12109375,-0.17089844,-0.068359375,-0.056152344,-0.34960938,0.057128906,0.020996094,-0.060546875,0.02331543,-0.11230469,0.10888672,0.06298828,-0.15625,0.08886719,-0.007598877,-0.06347656,0.071777344,-0.055419922,0.048828125,0.060546875,-0.06689453,-0.18652344,0.080566406,-0.12792969,0.0028076172,0.16894531,-0.00025558472,0.12597656,-0.104003906,0.026000977,-0.037353516,0.07861328,0.0625,0.05859375,-0.063964844,0.08251953,-0.13671875,0.24121094,0.025634766,-0.11230469,-0.078125,0.18847656,0.00390625,0.18359375,-0.04321289,-0.010681152,-0.018554688,-0.21386719,0.076171875,-0.07128906,0.087890625,0.096191406,-0.27929688,0.25390625,0.17675781,-0.096191406,-0.14453125,0.09033203,0.04345703,-0.104003906,0.016723633,-0.095214844,-0.05810547,-0.0703125,0.032958984,0.10498047,-0.171875,-0.015563965,-0.15625,-0.0072631836,0.041503906,-0.05053711,-0.02734375,-0.010925293,0.10644531,-0.06542969,-0.057128906,-0.06591797,0.012817383,0.0038757324,0.06347656,0.042236328,-0.08251953,0.060302734,-0.30859375,0.059570312,-0.15917969,-0.01574707,-0.02355957,-0.09814453,0.11376953,-0.2265625,0.041748047,-0.030761719,-0.018066406,-0.05810547,-0.07910156,0.015014648,-0.033203125,-0.13085938,-0.41015625,-0.21484375,0.092285156,-0.00793457,-0.013977051,0.18164062,-0.13085938,-0.008544922,-0.080566406,0.052001953,-0.03100586,0.2734375,0.013793945,0.026489258,0.037841797,-0.05126953,-0.3359375,0.030883789,-0.083496094,-0.10058594,0.04736328,0.13378906,0.19433594,-0.096191406,-0.17578125,0.049316406,-0.06640625,-0.067871094,0.03930664,-0.05029297,0.10449219,-0.12011719,-0.31835938,0.076660156,-0.24511719,0.047607422,-0.04663086,-0.00046539307,-0.32421875,0.15820312,0.16210938,0.107421875,0.07861328,-0.14550781,0.04296875,0.18066406,-0.018676758,-0.03955078,-0.05126953,-0.064941406,0.004333496,0.13867188,-0.035888672,0.10107422,-0.010620117,-0.13867188,-0.111816406,0.059814453,-0.12451172,-0.0023040771,0.10205078,-0.017578125,0.08935547,-0.055664062,-0.048095703,-0.20019531,-0.19824219,0.06591797,-0.051757812,-0.09326172,0.03930664,0.044433594,0.15917969,-0.056640625,0.011962891,0.005584717,0.10498047,-0.014160156,0.007019043,0.09814453,0.036865234,-0.12060547,-0.118652344,0.103515625,-0.08251953,-0.07519531,-0.092285156,-0.11328125,0.05517578,-0.064453125,-0.048828125,-0.03100586,-0.061523438,0.07373047,-0.12695312,-0.203125,-0.05859375,-0.30273438,0.06542969,0.14648438,-0.0022888184,0.030517578,0.095214844,-0.079589844,-0.14453125,-0.046142578,0.043945312,-0.10595703,0.106933594,-0.08691406,0.13574219,0.026245117,-0.064453125,-0.123535156,-0.203125,-0.0032043457,-0.12207031,0.030151367,-0.06640625,-0.05859375,0.100097656,0.103027344,0.052001953,-0.09716797,0.063964844,0.067871094,-0.096191406,0.024414062,0.15722656,-0.08251953,0.028320312,0.012329102,-0.084472656,0.02758789,-0.020996094,0.013549805,0.0625,0.020263672,-0.020996094,-0.059326172,0.1953125,0.13964844,0.19433594,-0.044433594,0.2421875,-0.15234375,-0.07910156,0.20410156,0.017822266,0.052978516,0.004119873,0.1640625,0.17578125,-0.111328125,-0.140625,0.12988281,0.18457031,-0.06933594,0.09472656,0.041748047,0.029174805,0.11328125,-0.0017852783,0.060058594,-0.0022735596,0.057861328,-0.12158203,0.24707031,0.063964844,-0.032714844,-0.004852295,0.06689453,-0.061767578,-0.083496094,-0.05908203,-0.055664062,0.22363281,0.026611328,-0.115234375,0.041503906,-0.0039978027,0.029418945,-0.11328125,-0.008605957,-0.26757812,0.08105469,-0.045898438,-0.13378906,0.028076172,-0.04272461,-0.09667969,0.123046875,0.1015625,-0.5390625,0.140625,-0.0036315918,-0.060058594,-0.20117188,-0.041503906,-0.017211914,0.140625,0.037841797,0.21875,-0.13574219,-0.14941406,-0.04296875,-0.12890625,0.05444336,0.12988281,-0.18066406,0.18457031,-0.11767578,-0.095703125,0.013793945,-0.043701172,0.111816406,-0.20800781,0.061279297,-0.052246094,0.01586914,0.010803223,-0.12792969,-0.07373047,-0.07128906,0.068847656,-0.1796875,-0.22363281,-0.09375,0.05102539,0.028564453,-0.23535156,0.24121094,-0.09277344,0.03149414,-0.14941406,-0.072265625,0.27929688,0.075683594,0.040039062,-0.12695312,0.06982422,-0.05444336,0.033447266,0.005554199,-0.052246094,-0.004486084,0.099609375,0.09716797,0.0024719238,0.09375,-0.06738281,-0.09472656,0.029663086,-0.06591797,0.087402344,0.018920898,0.11035156,0.005340576,-0.20507812,0.104003906,-0.00028800964,-0.07861328,-0.0045166016,0.0703125,-0.18847656,0.03930664,0.13867188,0.049804688,-0.06933594,-0.15332031,-0.029296875,-0.059814453,0.16210938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.123535156,-0.084472656,-0.00077819824,0.06201172,0.033935547,0.109375,0.088378906,0.09082031,0.08935547,0.0017547607,0.13964844,-0.080078125,-0.32617188,0.0703125,-0.10498047,0.017089844,0.13183594,0.060302734,-0.06201172,0.02331543,-0.0022125244,0.103515625,-0.018920898,0.1328125,0.052978516,0.026489258,-0.011474609,0.01184082,-0.1796875,-0.078125,0.028198242,-0.049072266,-0.021484375,-0.0064086914,0.020751953,-0.0037841797,-0.084472656,0.026733398,-0.13183594,0.028808594,-0.12158203,0.030639648,-0.095703125,0.13183594,0.030273438,-0.20996094,-0.095703125,0.12207031,-0.01965332,-0.13476562,0.040039062,-0.08496094,-0.23242188,0.07080078,0.100097656,0.26171875,-0.099609375,0.06689453,0.16113281,0.125,0.18359375,-0.20703125,-0.05810547,0.020996094,-0.09277344,0.059570312,-0.05078125,-0.13964844,0.018554688,0.19824219,-0.008850098,0.18554688,-0.072753906,0.022827148,-0.014221191,-0.18457031,0.041259766,-0.25390625,-0.19140625,-0.07861328,0.09033203,-0.037597656,0.13964844,-0.008422852,-0.12890625,-0.013183594,0.076660156,-0.18945312,-0.004333496,0.0058898926,0.035888672,0.12792969,-0.24902344,-0.049316406,-0.032714844,-0.13476562,-0.016235352,0.084472656,0.014953613,-0.088378906,-0.15722656,-0.20019531,-0.049560547,-0.045654297,0.14941406,-0.020019531,-0.14257812,-0.13671875,-0.114746094,0.18261719,0.038085938,-0.22363281,0.022460938,-0.18554688,0.12402344,0.13476562,-0.114746094,0.16503906,0.045166016,-0.1171875,-0.076171875,0.11621094,-0.14746094,0.14355469,-0.036621094,-0.37109375,-0.08203125,-0.29296875,-0.060058594,0.171875,-0.16699219,0.05908203,-0.203125,-0.03955078,0.09082031,0.14160156,-0.07714844,0.036621094,0.10205078,0.16992188,-0.08251953,-0.119628906,-0.25390625,-0.08935547,-0.024658203,-0.24902344,-0.008972168,-0.053955078,-0.15527344,-0.19238281,0.00093078613,0.20800781,0.064941406,-0.045898438,-0.036132812,-0.09863281,0.080566406,-0.12207031,-0.028198242,-0.26367188,0.068847656,0.20214844,0.06933594,0.07470703,-0.21582031,0.09863281,0.18847656,-0.13378906,-0.052246094,-0.18457031,-0.09765625,-0.068359375,-0.15527344,-0.015014648,-0.05883789,-0.01171875,0.084472656,-0.15722656,-0.1328125,-0.051757812,-0.22949219,-0.32421875,-0.044189453,-0.10449219,0.0010986328,-0.07763672,-0.15527344,-0.03491211,-0.15527344,-0.049560547,-0.007598877,-0.17578125,-0.16308594,0.012329102,0.05078125,-0.061767578,-0.12207031,-0.19335938,0.05493164,0.024291992,0.0119018555,0.12792969,-0.22265625,0.14453125,-0.08935547,0.07421875,0.006713867,-0.08105469,0.12207031,-0.114746094,-0.12451172,-0.048095703,-0.07519531,0.16699219,0.046875,0.06298828,-0.03564453,0.01940918,-0.14355469,-0.006591797,-0.049072266,-0.022094727,-0.047851562,0.080566406,-0.022705078,0.13183594,-0.15332031,-0.11816406,-0.109375,-0.05053711,0.0067749023,0.00025177002,-0.0017166138,-0.123046875,-0.06640625,-0.50390625,-0.0021209717,-0.18359375,-0.16015625,0.022460938,0.07128906,0.061279297,-0.092285156,-0.11767578,-0.028930664,-0.05078125,0.007659912,-0.09326172,0.064453125,-0.18554688,0.115234375,0.025512695,-0.12695312,0.12792969,0.08544922,-0.08154297,-0.16601562,-0.10107422,0.18164062,0.047851562,0.092285156,-0.12695312,0.20703125,-0.1796875,0.0043640137,0.15820312,0.16503906,0.024658203,0.003189087,-0.053222656,0.14941406,-0.07861328,-0.15820312,-0.064941406,0.083496094,-0.04321289,0.19433594,-0.109375,-0.03930664,0.15820312,-0.055908203,0.10839844,-0.0625,0.16113281,-0.043945312,0.13574219,-0.09033203,-0.096191406,-0.022338867,0.040771484,0.053955078,-0.045654297,-0.12060547,0.064941406,-0.015991211,-0.107421875,0.059326172,0.06542969,0.011962891,-0.171875,-0.0051574707,-0.0034179688,0.020019531,0.087890625,-0.31445312,-0.07421875,0.006164551,-0.040283203,-0.0053710938,0.08203125,-0.036376953,-0.12792969,0.06542969,-0.0703125,-0.0138549805,-0.3515625,0.0069885254,-0.09716797,-0.12402344,0.013122559,0.083984375,0.075683594,-0.037109375,-0.13769531,0.06738281,0.17675781,-0.12158203,-0.026977539,-0.063964844,-0.0028839111,-0.23828125,0.017700195,-0.095214844,0.09814453,0.08544922,0.0703125,0.099121094,0.13085938,0.002822876,0.001083374,0.13085938,0.08496094,0.16113281,0.18164062,-0.043945312,0.119140625,0.08496094,0.234375,-0.072265625,0.115722656,0.1328125,0.05859375,0.030151367,-0.0029754639,-0.03466797,-0.17480469,0.115722656,-0.122558594,0.0703125,0.09472656,-0.01184082,0.08935547,0.07470703,-0.111328125,-0.07324219,-0.084472656,-0.06640625,0.024902344,0.09716797,0.103515625,-0.19726562,-0.1015625,-0.03515625,-0.08154297,0.10644531,-0.110839844,0.048583984,-0.07128906,-0.10107422,-0.32617188,-0.052246094,-0.04711914,-0.14648438,-0.09716797,-0.15136719,0.037597656,-0.17089844,0.029052734,0.032958984,-0.006500244,0.088378906,-0.24609375,-0.038085938,-0.15625,0.17675781,0.029418945,-0.09423828,-0.21875,-0.3203125,-0.044189453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.20996094,-0.08642578,0.32617188,-0.1484375,0.11328125,-0.22363281,-0.15429688,-0.0703125,-0.084472656,-0.13085938,-0.15917969,0.119140625,0.038330078,-0.12988281,0.0033874512,0.012817383,-0.07470703,0.07128906,0.171875,-0.21191406,0.07910156,-0.12011719,-0.119140625,-0.10205078,-0.030761719,-0.203125,0.06689453,0.04638672,0.026733398,-0.104003906,-0.111328125,0.052978516,0.079589844,0.012878418,0.119140625,-0.087890625,-0.10986328,0.040283203,-0.059326172,-0.23046875,-0.03173828,-0.13671875,-0.09033203,0.12402344,0.17089844,0.03881836,-0.029785156,0.0625,0.05810547,0.076660156,0.039794922,-0.07373047,0.041503906,0.17089844,0.07373047,-0.16601562,-0.0234375,0.012329102,-0.01373291,-0.029541016,0.03564453,-0.107421875,-0.119140625,0.029785156,-0.14648438,0.040039062,0.25390625,0.122558594,0.026123047,0.33007812,-0.07714844,-0.13085938,-0.068359375,0.028808594,0.20507812,-0.05517578,-0.07080078,-0.26953125,-0.14941406,0.11767578,0.07080078,-0.022338867,0.16503906,-0.12890625,0.15332031,-0.0059509277,0.0390625,0.14550781,-0.111328125,-0.06689453,0.09814453,0.15136719,-0.009033203,-0.19140625,0.03564453,-0.14453125,0.079589844,0.095214844,0.19042969,-0.16503906,0.044189453,-0.016357422,-0.11621094,-0.09277344,-0.0058898926,-0.13769531,-0.01574707,0.140625,-0.0038452148,0.048095703,-0.026367188,0.13378906,0.06542969,0.051513672,0.004119873,-0.119140625,-0.06347656,0.0076904297,-0.16210938,-0.09667969,-0.107421875,-0.056884766,0.05834961,-0.022460938,0.091308594,-0.21386719,-0.09326172,0.07421875,0.15429688,0.00970459,-0.09667969,0.032226562,-0.028320312,0.08886719,0.109375,-0.26953125,-0.010314941,-0.052001953,-0.0067749023,0.023803711,-0.021484375,-0.09326172,0.111328125,0.1640625,0.026489258,0.0042419434,0.0703125,0.018066406,-0.19824219,0.13671875,0.29101562,0.022827148,0.0063476562,-0.11328125,0.19433594,0.04345703,0.06298828,0.09863281,-0.043945312,-0.012512207,0.24414062,-0.041748047,0.018310547,-0.055664062,0.0066223145,0.11425781,0.123046875,0.01953125,-0.06738281,-0.16796875,-0.07324219,0.008422852,-0.115234375,-0.0014038086,-0.04638672,-0.09765625,0.03930664,0.016723633,0.06591797,-0.19726562,0.022216797,-0.14355469,0.21875,0.012329102,-0.08300781,0.03173828,0.055908203,-0.27929688,0.0024261475,-0.0035552979,-0.071777344,-0.20605469,0.296875,0.037109375,0.032470703,-0.18945312,0.13574219,-0.05126953,-0.103515625,-0.32226562,0.04321289,0.021362305,0.088378906,-0.115722656,0.037109375,-0.068359375,0.049316406,-0.12695312,0.03100586,0.09863281,-0.06347656,-0.13378906,-0.035888672,0.0015563965,-0.15136719,-0.2109375,-0.037109375,-0.11279297,-0.04736328,0.15234375,0.041503906,-0.1796875,-0.12988281,0.030273438,0.13476562,-0.40234375,0.18945312,0.06591797,-0.13378906,0.026855469,0.122558594,-0.026367188,0.13769531,0.07421875,0.05908203,0.14941406,0.063964844,-0.057617188,-0.0023345947,-0.12451172,0.13867188,0.024658203,0.016235352,0.118652344,-0.028442383,0.109375,-0.032226562,0.055908203,-0.119140625,-0.071777344,0.061767578,-0.075683594,0.061035156,0.10595703,0.16015625,-0.025512695,-0.0119018555,0.019042969,0.099121094,-0.07714844,0.11767578,-0.19726562,-0.022460938,-0.029052734,0.1171875,0.09375,0.049560547,-0.07373047,0.05908203,-0.095703125,-0.03515625,-0.13183594,0.03149414,0.076171875,-0.072753906,-0.17675781,0.14355469,-0.19140625,-0.0625,-0.13183594,-0.078125,0.025390625,0.09667969,-0.05908203,-0.033691406,0.13183594,0.12792969,-0.08300781,-0.02319336,-0.08544922,0.08496094,0.025268555,-0.08105469,0.020874023,0.037841797,-0.111816406,-0.028442383,0.053955078,0.026977539,-0.016235352,-0.06542969,0.12890625,-0.012573242,-0.13867188,0.07421875,-0.1328125,0.11376953,-0.06640625,-0.01184082,-0.21777344,0.23632812,0.024291992,-0.03100586,-0.14257812,0.10595703,-0.068359375,0.06298828,0.061035156,-0.024169922,-0.1484375,0.016601562,-0.037597656,0.16992188,0.0625,0.01953125,-0.024414062,0.17773438,-0.0703125,-0.021362305,-0.08251953,0.20117188,-0.09375,0.032958984,0.07080078,-0.001083374,0.040039062,-0.22753906,-0.14453125,0.13769531,0.15234375,0.0073242188,-0.07763672,0.15527344,-0.021362305,0.024047852,0.05126953,-0.014343262,-0.18359375,0.0012359619,0.13085938,0.018188477,-0.06542969,-0.16113281,-0.032714844,0.13867188,-0.048339844,0.022338867,-0.08496094,0.14941406,0.036865234,0.022705078,0.18554688,0.016967773,-0.01159668,0.012817383,-0.084472656,-0.049072266,-0.19433594,-0.15136719,0.049804688,0.067871094,-0.11230469,-0.030151367,-0.29101562,0.1953125,-0.18554688,-0.0057678223,0.013366699,0.059814453,-0.033447266,0.055908203,-0.047851562,-0.014160156,-0.08544922,-0.11376953,-0.04272461,0.18066406,0.011291504,-0.08300781,0.026855469,0.3125,0.123535156,0.07128906,-0.010498047,-0.107421875,0.18359375,-0.052734375,-0.10107422,-0.03881836,-0.087890625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.31835938,-0.122558594,-0.20214844,0.10546875,0.0005836487,0.13183594,0.24609375,0.018310547,-0.0026245117,-0.0703125,0.3125,-0.18066406,0.01586914,-0.056884766,-0.056152344,-0.055419922,-0.083984375,-0.023071289,-0.111816406,0.010131836,-0.041015625,0.17089844,0.12109375,0.024902344,0.06689453,-0.072265625,0.022338867,-0.03125,0.075683594,4.0769577e-05,0.059814453,-0.047607422,-0.07080078,0.028564453,-0.030761719,0.04272461,-0.075683594,0.15820312,0.10058594,-0.018798828,0.011169434,0.049560547,-0.010192871,-0.100097656,0.044189453,-0.05517578,0.19335938,0.04248047,-0.09472656,-0.17675781,-0.07714844,-0.068359375,0.036621094,0.15234375,0.14453125,-0.20117188,0.033447266,-0.14453125,0.14453125,-0.13183594,-0.028564453,-0.31054688,-0.07128906,0.13183594,-0.17285156,-0.109375,-0.06689453,-0.05883789,-0.02709961,0.15917969,-0.06347656,-0.21679688,-0.068359375,-0.08203125,2.4914742e-05,-0.16015625,-0.14746094,-0.026855469,-0.11328125,-0.018798828,-0.18359375,0.0016555786,-0.15917969,-0.087890625,-0.037597656,0.030639648,-0.09667969,-0.068359375,0.051757812,-0.11816406,0.029296875,-0.15722656,0.057373047,0.16796875,0.049560547,-0.03881836,-0.017944336,-0.014282227,0.0859375,-0.078125,-0.09667969,0.19238281,0.15820312,0.0095825195,0.00030708313,-0.075683594,0.18847656,0.057128906,0.107421875,0.100097656,0.0044555664,0.087402344,-0.14355469,-0.07080078,0.123046875,0.09814453,-0.17773438,-0.12402344,0.00020980835,0.09863281,-0.09033203,0.041992188,0.053466797,-0.15625,0.023071289,-0.13476562,0.0234375,0.20214844,-0.19824219,-0.0042419434,0.045898438,0.123046875,-0.104003906,0.07763672,0.24511719,-0.03125,0.040283203,0.11328125,0.11669922,-0.10546875,0.12451172,-0.096191406,0.11816406,-0.08300781,0.08691406,-0.24511719,-0.10449219,-0.26757812,-0.029418945,-0.11376953,0.09814453,-0.03491211,-0.038085938,0.05078125,0.044433594,0.047851562,-0.0138549805,-0.03112793,-0.09667969,0.123535156,-0.08935547,-0.29101562,-0.20703125,-0.13769531,0.1953125,-0.10449219,0.020996094,-0.038085938,-0.106933594,0.034423828,-0.06201172,-0.17675781,0.0024719238,-0.0030212402,0.04663086,-0.029663086,-0.037841797,-0.22753906,0.015197754,-0.057617188,-0.0041503906,0.14648438,0.033203125,0.0115356445,-0.07128906,0.14746094,-0.00289917,-0.02709961,0.14355469,0.107421875,-0.023071289,-0.0024871826,-0.18164062,0.11376953,-0.015197754,0.16503906,-0.103515625,0.12695312,0.08300781,0.067871094,-0.030883789,0.09082031,0.041259766,0.17675781,-0.0016021729,-0.056396484,0.06347656,-0.009521484,-0.07324219,0.09423828,-0.052246094,-0.018554688,0.014831543,-0.09716797,-0.00047302246,0.028564453,0.041992188,-0.030395508,0.021850586,0.03149414,-0.022827148,0.006286621,-0.171875,0.060058594,0.083496094,-0.02368164,-0.080078125,0.04663086,0.020141602,0.044677734,-0.22460938,0.087402344,0.030029297,-0.095703125,0.025390625,-0.052490234,-0.020019531,-0.12158203,0.00016212463,0.06298828,-0.22265625,0.21972656,-0.15039062,-0.080566406,0.03540039,0.0625,-0.014587402,-0.096191406,-0.083984375,-0.1171875,0.012390137,-0.040771484,0.013549805,0.08642578,-0.04272461,-0.044677734,-0.17382812,-0.026733398,-0.008361816,-0.056152344,0.04248047,0.13183594,0.067871094,-0.23828125,0.06738281,-0.012084961,-0.12695312,0.033203125,-0.104003906,0.15234375,-0.34765625,0.110839844,-0.17089844,-0.1484375,0.019042969,0.103027344,0.14941406,0.031982422,0.052001953,-0.22753906,-0.012573242,0.107910156,0.06933594,0.061767578,-0.07080078,0.044677734,0.056884766,-0.22363281,-0.10107422,-0.048828125,0.13183594,-0.17773438,0.1484375,-0.029663086,0.06982422,0.047851562,-0.014343262,0.0015640259,0.24316406,0.00793457,-0.13378906,-0.08935547,0.028076172,-0.26367188,-0.15039062,-0.14453125,-0.022094727,-0.11767578,0.022583008,0.04248047,-0.011779785,0.1171875,-0.007537842,-0.05493164,-0.10107422,-0.1875,-0.047607422,-0.122558594,0.0056762695,-0.2734375,-0.36132812,0.118652344,-0.21777344,-0.35742188,-0.19726562,0.068359375,0.03930664,-0.12792969,-0.103027344,-0.16601562,0.10888672,0.022583008,-0.033203125,-0.1953125,-0.14355469,0.045166016,-0.047607422,-0.16503906,-0.021972656,0.013916016,-0.099609375,-0.025146484,-0.08203125,-0.06347656,-0.064453125,0.06640625,-0.008483887,0.099609375,-0.033691406,0.044677734,4.6491623e-06,-0.21679688,0.037353516,-0.18554688,0.0095825195,0.021606445,-0.18164062,0.009460449,0.140625,-0.016357422,0.107421875,0.12890625,0.04321289,0.25195312,0.003112793,-0.12011719,-0.13085938,-0.19042969,0.037109375,0.13867188,0.10253906,-0.16894531,-0.026367188,0.25585938,0.14355469,0.19921875,-0.022705078,0.12451172,-0.0234375,0.075683594,-0.021484375,-0.08300781,-0.23339844,0.079589844,-0.12792969,0.008117676,0.15722656,-0.21582031,0.095214844,0.039794922,0.07714844,-0.19238281,0.030517578,-0.140625,0.013122559,-0.41015625,-0.09375,-0.1640625,-0.14941406,0.09472656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.13574219,0.19726562,0.27929688,0.05419922,0.25,-0.056884766,-0.006378174,0.029296875,0.17089844,-0.11621094,-0.11230469,0.0044555664,-0.02734375,-0.16210938,-0.050048828,0.13574219,0.015319824,0.078125,0.032714844,0.09765625,-0.041259766,0.0036621094,-0.0057373047,-0.071777344,-0.025512695,-0.092285156,0.17773438,-0.061035156,-0.02368164,0.16894531,-0.10107422,0.084472656,-0.103515625,-0.045410156,0.026855469,0.061279297,0.056640625,-0.10839844,0.064453125,0.088378906,0.123535156,-0.31054688,0.107421875,-0.15527344,-0.23632812,-0.05883789,-0.103027344,-0.034179688,-0.1796875,-0.1171875,-0.10839844,-0.09423828,0.09326172,0.14355469,-0.033935547,-0.23339844,0.020141602,-0.22265625,-0.091796875,-0.06591797,-0.21972656,0.03564453,0.046875,-0.040527344,-0.036376953,-0.1796875,0.04711914,-0.043701172,-0.05810547,0.23046875,0.008056641,0.015136719,-0.03857422,-0.12207031,0.0546875,0.057373047,0.024536133,-0.12207031,0.063964844,0.05078125,-0.11621094,-0.021118164,-0.0073242188,0.09082031,0.060546875,0.18359375,-0.09082031,-0.05810547,-0.18847656,-0.04321289,0.21386719,-0.15917969,0.08251953,-0.08154297,-0.024902344,0.15527344,0.140625,-0.09716797,0.28320312,0.06738281,-0.31054688,-0.0069885254,0.1484375,0.046142578,-0.040039062,-0.22558594,0.118652344,-0.20996094,0.061767578,0.018066406,-0.21875,0.048339844,0.24414062,-0.079589844,0.030883789,0.04711914,-0.17675781,0.10253906,0.15722656,-0.083496094,-0.037597656,-0.1328125,0.05078125,-0.009887695,-0.024047852,-0.060546875,0.115234375,0.11035156,-0.16210938,-0.09375,0.0025787354,0.052734375,-0.16601562,0.11035156,0.002090454,0.057861328,-0.018432617,-0.234375,0.34179688,-0.107910156,-0.18457031,0.09277344,-0.1640625,-0.026855469,-0.08154297,-0.29882812,0.20703125,-0.091308594,-0.034179688,0.057617188,0.068359375,-0.034423828,0.028076172,-0.14257812,0.046875,-0.072753906,-0.10839844,0.09814453,0.024658203,0.13867188,-0.107910156,-0.002380371,-0.087402344,0.09082031,-0.20117188,0.091308594,-0.083496094,-0.017456055,-0.06738281,0.27929688,0.080078125,0.07373047,0.05883789,-0.04296875,0.18359375,-0.15527344,0.025390625,-0.08300781,0.1796875,-0.0066833496,0.06689453,-0.033935547,0.021850586,-0.21777344,0.04321289,-0.02746582,0.22363281,-0.080078125,-0.026123047,-0.012878418,0.027709961,0.018554688,0.19335938,-0.1875,-0.13183594,0.049804688,-0.12402344,-0.07080078,-0.03125,-0.08105469,-0.087402344,-0.26171875,0.16308594,-0.14550781,0.010986328,-0.087402344,-0.09033203,0.12597656,-0.009155273,-0.025512695,-0.012878418,-0.1171875,-0.19433594,-0.048583984,0.09765625,-0.049316406,-0.017578125,-0.37109375,0.34375,0.114746094,-0.0625,-0.042236328,-0.103515625,0.15820312,0.048583984,-0.16210938,0.12597656,-0.0029144287,0.005584717,0.044921875,-0.091796875,0.032958984,-0.049560547,-0.16210938,0.052734375,-0.048339844,-0.24121094,-0.014892578,-0.07421875,0.09814453,-0.010681152,-0.033691406,0.08935547,0.017578125,0.020385742,0.16601562,-0.072753906,-0.111816406,-0.1875,0.06225586,0.29492188,-0.09326172,0.13378906,0.10449219,0.032714844,-0.15527344,-0.06298828,-0.15820312,0.071777344,-0.009033203,0.079589844,-0.15722656,0.095703125,0.010253906,0.064453125,0.057373047,-0.03540039,-0.040527344,0.03564453,0.051757812,-0.08496094,-0.13867188,-0.19433594,-0.18847656,-0.028808594,0.014160156,-0.010375977,-0.13867188,0.16210938,-0.020019531,0.072265625,-0.31054688,-0.10107422,0.04272461,0.048095703,-0.038085938,-0.096191406,-0.010192871,-0.14746094,-0.20117188,-0.10986328,-0.0055236816,0.016967773,-0.1484375,0.0038604736,-0.10644531,-3.194809e-05,-0.29296875,0.033203125,-0.0056152344,-0.05908203,0.13183594,0.072753906,0.100097656,-0.02734375,-0.23632812,0.1015625,-0.029541016,0.012023926,0.12890625,-0.01928711,-0.021606445,-0.036865234,0.06591797,0.28710938,0.11816406,-0.13085938,-0.26757812,-0.07470703,0.079589844,-0.024291992,-0.12695312,0.056884766,-0.103027344,-0.033691406,0.12695312,0.07324219,-0.13671875,-0.06640625,0.010009766,0.020874023,-0.08544922,0.15625,0.17089844,-0.045898438,-0.16894531,-0.040527344,0.140625,0.060546875,-0.0234375,-0.09472656,-0.0390625,0.10498047,-0.12158203,0.080078125,0.006713867,0.14550781,-0.0859375,0.05883789,0.04345703,0.023803711,-0.11767578,-0.033691406,0.05883789,0.05834961,0.04296875,0.060302734,0.1640625,-0.04663086,-0.13085938,0.14746094,0.14453125,-0.061035156,-0.13671875,-0.09326172,0.114746094,0.1484375,0.01977539,0.021118164,0.1875,0.016235352,0.07373047,0.23046875,-0.028808594,0.20410156,0.0859375,0.012451172,0.11328125,0.110839844,-0.051757812,-0.10253906,0.23730469,0.15234375,0.032714844,0.06738281,0.06640625,0.33984375,0.02758789,0.05419922,-0.06542969,-0.030395508,0.12695312,-0.15722656,-0.025024414,-0.16308594,-0.04736328,0.14355469,0.061767578,0.027954102,0.0625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.084472656,-0.07470703,0.20019531,0.234375,-0.036621094,-0.038330078,-0.078125,0.16308594,0.088378906,0.048583984,0.049560547,0.107421875,-0.12597656,-0.17773438,-0.036865234,0.14941406,-0.21191406,-0.045898438,-0.12695312,0.14453125,0.08496094,-0.07714844,0.04321289,-0.0058898926,-0.08984375,-0.14648438,0.096191406,-0.13769531,-0.08105469,-0.00045776367,-0.048828125,0.025268555,-0.114746094,0.10205078,-0.080078125,0.078125,0.12597656,-0.16015625,-0.0030670166,-0.17578125,0.075683594,0.07861328,0.048583984,-0.071777344,-0.07470703,-0.032958984,0.05029297,-0.063964844,0.006011963,0.01977539,0.048828125,-0.16210938,0.16699219,0.019165039,-0.18066406,-0.107910156,-0.026123047,0.091796875,-0.203125,0.17382812,-0.07324219,0.100097656,0.111816406,0.064453125,-0.30664062,0.31835938,0.06738281,0.060546875,0.057861328,-0.13769531,-0.16113281,-0.024414062,-0.021972656,0.08544922,-0.040039062,-0.099121094,-0.14453125,-0.09472656,-0.203125,-0.022216797,-0.07861328,-0.4296875,0.16699219,0.17773438,0.09375,0.056640625,-0.032226562,0.091308594,0.021484375,-0.15722656,0.014038086,0.109375,-0.20507812,0.033203125,-0.049804688,0.016601562,-0.27539062,-0.083496094,-0.072753906,0.118652344,-0.12695312,0.053710938,0.071777344,0.118652344,-0.100097656,-0.33203125,0.11376953,-0.060058594,-0.029907227,0.092285156,0.06347656,-0.057373047,-0.33398438,0.12158203,-0.21484375,-0.07861328,0.08544922,-0.026000977,-0.18457031,0.111816406,-0.083496094,-0.20019531,0.10546875,0.032470703,-0.07910156,0.1484375,0.06298828,0.015197754,-0.19921875,0.21191406,-0.08984375,-0.14746094,0.05517578,0.095214844,0.0066223145,0.02355957,0.053222656,-0.08251953,-0.14355469,-0.020141602,-0.03491211,0.21582031,-0.0008468628,0.051757812,0.08203125,0.010192871,0.004272461,-0.033935547,-0.07910156,-0.11230469,-0.12402344,-0.15917969,-0.017944336,0.045898438,0.09082031,-0.25,-0.064941406,0.14453125,-0.06689453,0.012084961,-0.03173828,-0.44921875,0.006713867,-0.16699219,-0.053710938,-0.26953125,-0.10986328,-0.12060547,-0.076660156,-0.2578125,-0.09667969,-0.13964844,-0.10107422,0.11279297,-0.19042969,-0.18652344,-0.28515625,-0.06591797,0.068359375,0.024658203,-0.057617188,-0.018066406,-0.095703125,0.067871094,-0.06689453,-0.01953125,0.0072021484,-0.18164062,0.12792969,0.106933594,0.22265625,-0.08642578,-0.19140625,0.10498047,0.00076675415,-0.2109375,-0.057373047,-0.044189453,-0.08886719,0.017578125,0.04711914,0.08935547,-0.087402344,0.031982422,0.1328125,0.0076904297,-0.0042419434,0.00044631958,0.0023040771,0.37109375,-0.13476562,-0.06640625,-0.03112793,-0.110839844,-0.099609375,-0.18359375,-0.080078125,-0.08642578,-0.024169922,0.114746094,-0.044433594,0.12451172,-0.04345703,0.12792969,0.16699219,-0.07910156,-0.038085938,0.114746094,0.012878418,-0.036376953,0.005340576,-0.19335938,0.014709473,-0.07128906,-0.025634766,0.038330078,-0.030151367,0.048828125,0.1484375,0.043945312,-0.11669922,-0.21289062,0.0859375,-0.078125,-0.10888672,-0.12890625,-0.036865234,-0.25585938,-0.07324219,-0.15039062,-0.13574219,-0.025634766,0.103027344,0.055908203,-0.07080078,-0.265625,-0.026000977,-0.13378906,-0.07421875,0.12695312,0.25976562,0.14648438,-0.16503906,-0.10205078,-0.084472656,0.022949219,-0.16699219,0.036376953,0.052734375,-0.00033569336,0.06347656,-0.15136719,0.05810547,-0.047851562,-0.09423828,-0.061279297,0.14746094,-0.013305664,-0.21777344,0.24511719,0.0115356445,0.123046875,0.034423828,-0.09765625,0.099609375,-0.045898438,-0.09814453,-0.052246094,-0.17773438,0.043701172,-0.008483887,-0.11425781,0.032226562,-0.1875,0.05834961,-0.05834961,-0.099609375,0.009765625,-0.080078125,0.20214844,-0.020263672,-0.001159668,-0.009338379,-0.0546875,-0.013977051,-0.063964844,0.099121094,0.025512695,0.011962891,0.008361816,0.14257812,-0.006072998,-0.11230469,-0.09814453,-0.15722656,-0.03100586,0.0546875,0.19042969,0.15234375,0.10449219,-0.19335938,0.087402344,0.06225586,-0.111328125,-0.16210938,-0.15820312,-0.064941406,-0.09326172,-0.071777344,-0.037353516,-0.08203125,0.0017776489,0.14550781,-0.06982422,-0.09326172,-0.18261719,-0.1640625,0.00390625,0.123535156,0.087402344,0.122558594,-0.015625,0.14746094,0.060058594,-0.055908203,-0.0703125,-0.0126953125,-0.13671875,0.048095703,-0.17773438,0.100097656,-0.25390625,-0.0390625,-0.29492188,0.11816406,0.02368164,0.020996094,-0.25,-0.0071411133,0.05883789,0.103515625,-0.083984375,0.03100586,-0.017089844,-0.003967285,0.100097656,-0.03857422,-0.34179688,-0.15722656,-0.22753906,0.07421875,0.02319336,-0.16894531,-0.04321289,0.099609375,-0.13671875,0.0040893555,0.119140625,-0.14160156,0.104003906,0.083496094,-0.0011749268,0.07373047,-0.056884766,-0.37890625,-0.12597656,0.018310547,-0.08544922,-0.0234375,-0.15820312,0.037109375,0.064453125,-0.11816406,-0.11328125,-0.006866455,0.19628906,0.19238281,0.20410156,-0.072265625,-0.041748047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.100097656,-0.24121094,-0.04736328,-0.234375,-0.22851562,0.20605469,0.09082031,-0.27929688,-0.0138549805,-0.2734375,-0.076660156,-0.671875,0.09472656,0.27148438,-0.10986328,-0.110839844,0.06591797,-0.04663086,-0.015991211,-0.29296875,-0.21972656,0.18847656,0.064941406,-0.28515625,-0.10058594,-0.18261719,0.18359375,-0.1015625,0.042236328,-0.09375,-0.19140625,-0.036132812,0.18261719,0.13867188,0.13964844,-0.27539062,0.115234375,0.044433594,0.24609375,-0.035888672,0.06640625,-0.011962891,0.17773438,0.044433594,0.09765625,-0.28515625,-0.14257812,-0.13964844,0.046875,-0.08544922,0.06738281,0.040283203,0.15429688,0.24707031,0.12890625,0.15625,0.013061523,0.060791016,0.10546875,0.14550781,0.0055236816,-0.11816406,-0.057373047,0.022827148,0.024536133,-0.008666992,0.009643555,0.18554688,-0.088378906,0.07128906,0.22265625,0.10595703,0.125,0.12890625,0.17871094,0.15820312,-0.012207031,-0.083984375,-0.095214844,0.041503906,0.03149414,0.030395508,-0.05859375,-0.16015625,-0.125,-0.031982422,0.12792969,-0.26757812,0.029052734,-0.22070312,-0.140625,-0.33007812,-0.0023651123,0.07324219,-0.084472656,-0.0390625,-0.012512207,-0.008422852,-0.0032653809,-0.23144531,-0.024414062,0.0033721924,-0.1015625,0.083984375,-0.049560547,-0.17871094,0.25585938,-0.09716797,-0.030395508,0.119140625,0.10253906,-0.06982422,-0.059570312,-0.02734375,0.037353516,0.007446289,0.09375,0.005554199,-0.15429688,-0.045898438,-0.041259766,0.032714844,-0.21972656,0.016357422,0.03125,-0.20898438,-0.017211914,-0.08642578,0.021362305,0.16015625,-0.07861328,-0.00051116943,0.034423828,0.078125,-0.2109375,0.119140625,-0.032226562,0.091308594,-0.1328125,0.16503906,-0.013061523,-0.12792969,-0.044189453,-0.053466797,-0.048095703,-0.17773438,0.020263672,0.18359375,0.08154297,-0.012268066,0.05419922,0.13476562,-0.079589844,0.12597656,0.053222656,-0.13085938,0.018310547,-0.016723633,0.0058288574,-0.17578125,-0.05078125,-0.1953125,-0.0044555664,-0.19335938,-0.33398438,0.15136719,-0.14453125,-0.17871094,-0.18652344,-0.114746094,-0.012939453,-0.029785156,0.08691406,-0.083496094,-0.16992188,-0.103027344,-0.026367188,0.026855469,0.087402344,-0.234375,-0.07128906,-0.07763672,0.16015625,-0.30664062,-0.0020141602,-0.049316406,0.061035156,0.02709961,-0.06591797,-0.024414062,0.09326172,-0.17382812,-0.11621094,-0.109375,0.17382812,-0.17285156,0.09472656,-0.021606445,0.08984375,-0.06347656,0.07080078,-0.0054626465,0.041748047,0.050048828,-0.15917969,0.064453125,-0.028686523,0.109375,0.10644531,0.052978516,-0.006652832,0.06542969,0.076660156,-0.041259766,0.11425781,-0.06982422,-0.14648438,-0.123535156,0.072265625,0.15039062,0.14355469,0.057373047,0.111328125,0.050048828,0.010681152,-0.18066406,-0.07470703,0.115234375,0.072753906,0.20800781,0.03881836,0.05908203,-0.1015625,-0.19238281,0.02709961,-0.06640625,0.19238281,-0.12890625,0.036132812,-0.14453125,-0.02709961,-0.072265625,0.07324219,-0.26757812,-0.16894531,-0.12158203,-0.1484375,-0.34960938,0.106933594,0.25390625,0.03100586,0.06738281,0.026245117,-0.06640625,-0.016967773,0.0065612793,-0.07421875,-0.071777344,0.10205078,-0.061523438,0.017211914,0.05053711,0.057128906,0.01940918,-0.020507812,0.15136719,-0.07324219,0.21972656,-0.034423828,-0.049072266,-0.09863281,-0.17285156,0.05053711,0.103515625,-0.03149414,-0.115722656,-0.09082031,-0.08984375,-0.10107422,-0.14355469,-0.036621094,0.012573242,-0.064453125,0.08935547,-0.07763672,0.005004883,-0.04345703,-0.036865234,0.0038452148,0.04296875,-0.016479492,-0.15820312,0.048095703,0.1796875,-0.12060547,-0.0077209473,-0.08642578,0.026855469,-0.030029297,0.111328125,-0.05493164,-0.009460449,-0.12890625,0.012145996,0.076660156,0.05078125,0.044189453,0.0021514893,0.20507812,-0.06640625,0.1015625,0.099121094,-0.025146484,-0.23632812,0.12597656,-0.01928711,0.140625,-0.053955078,-0.038085938,0.09667969,0.12597656,0.29101562,0.09082031,-0.4453125,0.29296875,-0.07421875,0.10205078,0.017456055,-0.06689453,0.0126953125,0.050048828,0.15820312,-0.15136719,0.061767578,-0.078125,0.049072266,-0.018310547,0.0022888184,0.04736328,3.2901764e-05,0.1875,0.026733398,0.12109375,-0.296875,0.052978516,-0.0859375,0.10205078,-0.107910156,0.020996094,0.22167969,-0.030761719,-0.20800781,-0.07519531,0.12011719,0.053955078,-0.041015625,0.14746094,-0.11376953,0.009033203,-0.21777344,0.044189453,-0.13476562,-0.00038146973,-0.052246094,-0.23339844,-0.091796875,-0.05419922,-0.1796875,-0.053466797,-0.031982422,0.034423828,0.060791016,-0.072265625,0.18457031,-0.25976562,0.033447266,-0.06347656,-0.059326172,0.18457031,0.036376953,-0.18652344,-0.032226562,-0.018798828,-0.032714844,0.13476562,0.06225586,0.05493164,0.16992188,0.048583984,-0.11767578,0.0390625,-0.068847656,-0.015625,0.022705078,0.0020141602,0.15136719,-0.06298828,0.026245117,-0.037353516,-0.025878906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.41992188,-0.024536133,-0.22753906,0.12988281,-0.060302734,0.359375,0.18261719,-0.12890625,-0.08251953,0.02722168,0.27734375,-0.057861328,-0.2109375,0.16796875,0.14160156,-0.0012359619,-0.3046875,0.104003906,-0.039794922,0.043701172,-0.23535156,0.004486084,-0.083984375,5.0783157e-05,0.013427734,-0.076171875,0.100097656,-0.09863281,-0.083496094,0.002456665,0.10253906,0.20214844,-0.053955078,0.09765625,-0.07470703,0.18945312,-0.3515625,0.31640625,-0.010253906,-0.1640625,-0.00090789795,-0.18652344,0.018432617,-0.01965332,-0.048339844,-0.22363281,-0.03125,0.119140625,0.0859375,0.27148438,-0.14550781,-0.106933594,-0.30078125,-0.02319336,0.19921875,-0.027954102,0.056396484,-0.1875,-0.019897461,0.026489258,0.09277344,-0.23046875,0.1328125,0.048828125,0.075683594,0.21484375,0.0055236816,0.043945312,-0.26367188,-0.046875,-0.032714844,0.091796875,0.06933594,-0.041259766,-0.059814453,0.21679688,0.0045776367,-0.09375,0.13964844,0.029052734,-0.26953125,-0.037597656,0.037353516,0.06347656,-0.039794922,-0.057861328,-0.09716797,0.083984375,-0.09277344,0.10644531,0.022216797,0.024536133,-0.24121094,0.20703125,0.23339844,-0.15332031,-0.016479492,-0.041503906,0.0018692017,-0.0703125,0.07470703,-0.080566406,-0.020996094,0.017944336,0.08203125,-0.055908203,-0.06225586,0.018066406,0.0018310547,-0.03149414,0.19824219,-0.30273438,-0.014526367,-0.075683594,-0.07373047,0.076660156,-0.016113281,0.11230469,0.024780273,0.06542969,0.024047852,-0.075683594,0.028930664,-0.026000977,0.0079956055,-0.18554688,0.106933594,-0.15820312,-0.009033203,-0.016967773,-0.0047912598,-0.09326172,-0.00491333,-0.026977539,-0.05810547,-0.026489258,0.044433594,-0.10888672,0.22558594,0.083984375,0.010803223,0.01928711,-0.15136719,-0.21289062,-0.084472656,-0.076171875,-0.12109375,0.08984375,0.057861328,-0.17480469,0.06347656,-0.087402344,-0.016479492,0.083496094,-0.04638672,0.21484375,-0.0021820068,0.087402344,0.016479492,-0.114746094,-0.16503906,-0.064453125,0.05419922,0.076660156,0.15234375,-0.020385742,-0.19335938,0.0038452148,-0.014526367,0.12402344,-0.0625,-0.028320312,-0.034423828,0.18945312,0.13085938,0.07714844,0.040527344,0.06640625,-0.01373291,0.068359375,0.16992188,-0.0703125,-0.084472656,0.0035247803,0.072265625,0.052734375,-0.056640625,0.048339844,-0.16308594,0.019165039,0.031982422,-0.16015625,-0.013916016,-0.033203125,-0.08251953,0.09423828,-0.060302734,-0.39453125,-0.10986328,-0.16796875,0.022583008,0.053955078,-0.039794922,0.12695312,-0.044677734,0.0026550293,0.009643555,-0.19238281,0.10595703,0.14160156,-0.07714844,0.024047852,-0.016235352,-0.31054688,-0.11767578,-0.05029297,0.0050354004,0.043945312,0.07421875,0.15039062,-0.12988281,-0.107910156,0.036865234,-0.08935547,-0.04321289,0.0234375,0.050048828,-0.019042969,0.026977539,-0.4296875,0.06933594,-0.047851562,0.0859375,0.083984375,0.003967285,0.14355469,-0.17089844,-0.075683594,0.013122559,-0.2421875,-0.19921875,-0.011108398,0.11816406,0.11767578,-0.07373047,-0.010559082,0.000207901,0.103027344,-0.030151367,0.053222656,-0.019042969,0.0009727478,-0.07080078,0.07324219,0.02355957,-0.076171875,-0.036132812,0.14355469,-0.032958984,0.13574219,-0.008361816,-0.07080078,-0.055419922,0.064453125,-0.0031585693,0.033691406,-0.13769531,0.17285156,-0.001411438,0.023071289,-0.015991211,-0.035888672,0.010070801,0.2109375,0.025878906,0.08886719,0.018066406,0.03466797,0.076660156,0.07910156,-0.020996094,-0.12695312,-0.04663086,0.125,-0.13867188,-0.140625,-0.07910156,-0.14453125,0.008544922,0.20605469,-0.052001953,0.119140625,-0.029907227,-0.16601562,0.2578125,0.013000488,-0.029174805,-0.0115356445,0.057617188,0.013366699,-0.15820312,0.031982422,0.06640625,-0.14648438,-0.029296875,0.06982422,0.010437012,0.011657715,0.020385742,0.22363281,0.060791016,-0.040771484,0.004119873,0.080566406,-0.12792969,0.072753906,-0.18554688,-0.114746094,-0.07373047,-0.009033203,-0.09423828,0.0043945312,-0.123046875,0.046142578,-0.13964844,-0.13867188,0.09082031,-0.09033203,0.110839844,0.052978516,0.078125,0.068359375,-0.09716797,-0.05517578,-0.119140625,-0.18554688,0.05444336,-0.12011719,-0.043945312,0.21972656,-0.078125,0.014953613,0.025024414,0.02758789,0.052734375,-0.12890625,0.15429688,0.15039062,0.079589844,0.11621094,-0.00032806396,-0.060058594,-0.22558594,-0.034179688,0.027954102,0.22167969,-0.17480469,-0.21582031,-0.024536133,0.22070312,0.028930664,-0.09716797,0.032958984,0.12207031,-0.017456055,-0.05908203,0.055419922,-0.18457031,-0.11279297,0.3125,-0.115234375,0.11816406,-0.052734375,-0.12158203,0.092285156,0.15429688,-0.045654297,-0.064941406,-0.05078125,0.076660156,-0.023925781,-0.13964844,0.100097656,-0.0390625,-0.12158203,-0.043945312,0.06542969,-0.02355957,-0.110839844,0.052246094,0.119628906,-0.039794922,-0.036132812,0.016357422,0.14941406,-0.060546875,-0.071777344,-0.0038604736,-0.14550781,-0.21191406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.055664062,0.059570312,-0.0064697266,-0.15234375,0.18945312,-0.071777344,-0.033691406,0.021972656,-0.059570312,-0.08642578,0.06542969,-0.078125,0.092285156,0.080566406,-0.025146484,-0.22265625,-0.14160156,-0.14160156,0.21875,-0.095214844,0.04711914,-0.16308594,-0.20214844,-0.043701172,0.033691406,0.23925781,0.16796875,-0.023071289,0.05517578,-0.06542969,-0.075683594,-0.08691406,0.053955078,0.16113281,-0.12695312,-0.19628906,0.08154297,-0.059570312,0.026000977,0.14941406,0.015014648,0.14160156,-0.140625,0.020996094,-0.075683594,-0.12695312,-0.20410156,0.037353516,-0.100097656,0.21875,-0.034423828,0.123046875,0.13964844,-0.068359375,0.20996094,-0.08544922,0.027954102,0.1328125,-0.046142578,-0.16308594,0.03466797,0.044189453,0.099121094,0.10449219,-0.07763672,0.075683594,-0.17285156,-0.18261719,0.24707031,0.07763672,0.114746094,-0.064941406,-0.064941406,-0.009094238,-0.06298828,-0.02331543,-0.005065918,-0.021362305,0.048583984,-0.045654297,-0.22363281,-0.13964844,-0.05883789,-0.045654297,0.23144531,0.087402344,-0.024902344,-0.119140625,0.08984375,0.11669922,0.087890625,-0.11230469,-0.07763672,-0.068847656,-0.024658203,-0.02746582,0.032226562,0.0014419556,-0.01965332,-0.17578125,0.05078125,-0.15820312,-0.015991211,0.06225586,-0.020629883,0.05126953,0.071777344,-0.036621094,0.0033874512,0.08105469,-0.12451172,-0.10498047,-0.34960938,-0.21582031,-0.14746094,-0.096191406,0.09277344,0.096191406,0.14941406,0.07861328,0.017578125,0.15917969,-0.29101562,0.041259766,0.056640625,0.16894531,-0.12695312,-0.045654297,-0.068359375,-0.021850586,-0.13964844,-0.03881836,0.15332031,-0.1328125,-0.048339844,0.0146484375,0.07470703,0.111328125,-0.23046875,-0.15527344,0.15332031,-0.16210938,-0.14453125,-0.026123047,-0.092285156,0.0036773682,-0.022949219,-0.10253906,0.20214844,0.06738281,0.019897461,-0.08544922,0.025756836,-0.038085938,-0.10595703,-0.25390625,-0.008361816,0.021728516,0.04711914,-0.119628906,-0.16699219,-0.17871094,-0.10986328,-0.1875,-0.026000977,0.22949219,0.0703125,-0.24902344,-0.109375,-0.025390625,0.22070312,-0.23339844,-0.088378906,-0.007873535,0.010437012,-0.13964844,-0.296875,-0.20410156,-0.10644531,-0.16992188,-0.026855469,-0.13769531,-0.104003906,-0.026855469,0.07714844,0.06591797,-0.115722656,0.032226562,-0.067871094,0.014892578,-0.083984375,-0.029785156,-0.10546875,-0.20898438,0.122558594,-0.12109375,0.016601562,0.24316406,0.17285156,0.12109375,-0.036132812,-0.11279297,0.030517578,0.03491211,0.08300781,0.07861328,0.16308594,0.041259766,0.092285156,0.12890625,-0.030273438,0.19042969,0.21875,-0.07910156,-0.024536133,-0.06689453,-0.13964844,-0.052001953,-0.0134887695,-0.05126953,-0.091796875,0.029418945,0.10449219,0.15234375,0.061523438,0.10449219,-0.032226562,-0.078125,0.01965332,0.08300781,-0.026733398,-0.107421875,0.03173828,-0.09716797,-0.057128906,-0.14648438,0.021972656,-0.08691406,0.07861328,-0.09472656,-0.100097656,-0.043945312,-0.1171875,-0.06591797,-0.026367188,-0.023071289,0.05444336,-0.033203125,-0.03540039,-0.16992188,0.20898438,-0.12792969,-0.032958984,0.23242188,0.1796875,0.04711914,0.12792969,0.015380859,-0.033447266,-0.010681152,0.16015625,-0.25195312,0.092285156,-0.09765625,0.032226562,-0.12158203,-0.055908203,0.26367188,-0.00046157837,-0.016723633,-0.0703125,0.03564453,0.110839844,-0.06933594,-0.095703125,-0.099609375,-0.060058594,0.13085938,0.20800781,0.17480469,0.055664062,-0.18945312,0.047851562,0.100097656,-0.05126953,0.001625061,0.087402344,-0.07763672,0.044433594,-0.09863281,0.103027344,0.008117676,0.0072021484,-0.016357422,0.13183594,0.30664062,-0.1171875,-0.21679688,-0.19042969,-0.17382812,-0.1171875,0.078125,0.11621094,-0.033691406,0.14355469,0.068359375,0.10839844,0.06347656,0.24316406,0.017700195,0.20996094,0.12109375,-0.076171875,-0.18945312,0.0032196045,-0.1875,0.15429688,-0.13476562,0.047851562,0.013671875,-0.06933594,0.05517578,0.006500244,-0.059326172,-0.1953125,-0.011230469,-0.20410156,-0.26367188,0.064941406,-0.1171875,-0.19140625,0.053710938,-0.11279297,-0.16210938,-0.059814453,-0.22265625,-0.026855469,0.12792969,-0.15039062,-0.043945312,-0.22753906,0.08251953,-0.00023078918,0.072753906,0.088378906,-0.31445312,0.09375,-0.017333984,-0.14355469,0.05493164,0.010070801,-0.060546875,0.04321289,0.032226562,-0.15527344,-0.15039062,-0.06225586,-0.002960205,0.265625,0.12402344,-0.11669922,-0.18359375,0.11279297,0.09472656,-0.047851562,0.10058594,-0.0011901855,-0.036865234,0.123535156,-0.2109375,-0.012512207,-0.00027656555,-0.079589844,0.0625,0.118652344,-0.0015258789,0.052978516,0.044677734,-0.029052734,-0.017089844,-0.037109375,-0.14941406,0.08251953,-0.07910156,0.28320312,-0.06933594,-0.14648438,-0.18554688,0.060302734,0.041015625,0.09375,0.11767578,0.024780273,-0.0013809204,-0.05053711,-0.045654297,-0.1015625,-0.096191406,0.087890625,0.092285156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.052001953,0.15820312,-0.0015335083,0.049316406,-0.13964844,-0.041503906,0.028198242,0.29296875,-0.091796875,0.18066406,0.13085938,0.13085938,0.16210938,0.26367188,0.22363281,0.020019531,0.020629883,0.09765625,0.100097656,0.038085938,0.017822266,-0.059326172,-0.11425781,0.048583984,0.119628906,-0.026123047,-0.060791016,-0.12792969,-0.06933594,0.08203125,-0.06982422,0.27734375,-0.025756836,0.12890625,-0.040527344,0.014160156,0.21582031,-0.171875,-0.046875,0.0018615723,0.045166016,-0.1015625,0.25585938,-0.14550781,-0.056884766,0.34765625,0.07519531,0.02319336,0.033691406,0.013671875,0.2734375,0.071777344,0.076171875,-0.10888672,0.119628906,0.18066406,-0.14746094,-0.028930664,-0.08496094,-0.012207031,0.10644531,-0.0029449463,0.12695312,-0.099121094,-0.05883789,0.05419922,-0.14355469,0.17578125,0.06933594,0.16503906,-0.00025177002,0.13964844,0.03515625,-0.25,-0.02368164,0.13183594,-0.28125,0.06591797,-0.032958984,0.19238281,0.017089844,-0.26757812,0.057128906,-0.025390625,-0.12158203,-0.080078125,0.30078125,0.16894531,0.060791016,0.20019531,-0.23828125,0.15332031,0.016601562,-0.07421875,0.11621094,0.111816406,0.022460938,0.20800781,0.13378906,-0.044189453,-0.055419922,0.18261719,0.064941406,0.11279297,0.17089844,-0.17578125,-0.0041503906,-0.114746094,0.037841797,-0.19824219,-0.049316406,0.06738281,0.103515625,-0.025756836,0.1640625,0.09082031,-0.17773438,-0.16894531,0.095214844,-0.13085938,-0.049316406,-0.3046875,-0.07470703,-0.15625,0.17089844,-0.18164062,-0.040283203,-0.004486084,-0.078125,0.016845703,-0.04345703,0.01184082,-0.08251953,0.09814453,0.057128906,-0.17578125,-0.021728516,-0.3046875,0.091308594,0.022338867,0.032226562,-0.15332031,-0.03149414,-0.092285156,0.18945312,-0.265625,0.023803711,0.103027344,0.07470703,-0.18847656,-0.0019454956,-0.05102539,0.033447266,-0.23144531,0.11669922,-0.118652344,-0.20410156,0.15722656,-0.07128906,0.16015625,-0.100097656,0.107421875,0.03125,0.045166016,-0.07763672,-0.020751953,0.21679688,-0.15039062,0.06542969,0.1484375,0.17480469,-0.037353516,-0.087890625,-0.0013961792,-0.060058594,0.118652344,-0.032226562,0.123535156,-0.0015182495,0.09472656,-0.24023438,0.15625,0.1171875,0.037109375,-0.0063171387,-0.0073242188,-0.04736328,0.115234375,0.19042969,0.008605957,0.028686523,-0.13867188,-0.17773438,-0.08642578,-0.028564453,0.12597656,-0.15527344,0.19042969,0.07324219,0.01159668,0.08154297,-0.32617188,0.001914978,0.06738281,0.20117188,-0.34179688,-0.27734375,-0.16308594,-0.046875,0.06933594,0.068847656,0.038330078,-0.10888672,0.009216309,-0.0126953125,-0.34765625,-0.076660156,-0.12451172,0.20996094,-0.026245117,0.18652344,-0.04345703,-0.14355469,0.045166016,-0.11425781,0.26367188,0.022216797,0.037353516,-0.08984375,-0.088378906,-0.02734375,0.018066406,-0.012634277,-0.15136719,-0.03540039,-0.041503906,-0.0046691895,-0.12451172,-0.107421875,0.20117188,0.064453125,0.061523438,0.014587402,-0.12597656,0.05126953,-0.041748047,0.09082031,0.0047912598,0.11230469,-0.041259766,0.17480469,0.12792969,-0.040771484,0.19238281,-0.049316406,0.07861328,-0.07373047,-0.104003906,-0.11230469,0.029907227,0.041015625,-0.107421875,0.20996094,0.07861328,-0.052001953,0.0036315918,0.033203125,0.12207031,-0.083984375,0.1875,-0.14257812,-0.020507812,-0.106933594,-0.052246094,0.05810547,0.11669922,-0.028442383,0.061523438,0.016479492,0.04638672,0.14941406,-0.10107422,0.024780273,0.03881836,0.14550781,-0.17675781,0.057617188,-0.036621094,-0.13671875,-0.057128906,-0.08642578,-0.10107422,-0.119140625,0.02746582,0.20117188,-0.064453125,-0.05126953,-0.17089844,0.030517578,0.15625,0.12890625,-0.05810547,-0.006286621,0.025756836,-0.1484375,-0.18945312,-0.08105469,-0.037597656,0.032958984,0.22558594,0.043701172,-0.13574219,-0.01550293,-0.15332031,0.047607422,-0.20214844,-0.16796875,0.006500244,0.015014648,0.018066406,0.03491211,-0.029418945,-0.12988281,-0.06347656,0.040771484,0.0859375,0.08984375,0.052978516,0.12890625,-0.20117188,0.34960938,0.140625,0.011474609,0.23632812,0.020996094,0.104003906,-0.15917969,0.060302734,-0.09863281,-0.06347656,-0.01574707,0.28515625,0.10107422,-0.07763672,-0.0095825195,-0.01373291,0.14550781,-0.07421875,-0.041503906,0.07861328,0.16894531,0.025146484,-0.03173828,0.14355469,-0.10107422,-0.17675781,-0.07128906,-0.12597656,0.015197754,0.063964844,-0.031982422,-0.16601562,0.18652344,0.06933594,0.018920898,0.05493164,-0.060302734,0.08203125,0.10888672,0.025390625,-0.18359375,-0.123046875,0.171875,-0.37890625,-0.048339844,0.040283203,-0.053710938,-0.123046875,-0.24902344,-0.018676758,-0.0035705566,-0.017700195,-0.13964844,0.11230469,0.028564453,-0.095703125,-0.059326172,0.036132812,0.075683594,0.04663086,0.017700195,-0.12011719,0.033447266,-0.1796875,-0.17578125,0.026489258,-0.09423828,0.009033203,0.052246094,-0.049560547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.21582031,0.083984375,-0.12988281,-0.06225586,-0.063964844,-0.1484375,0.07080078,0.15917969,0.044677734,0.09716797,-0.104003906,0.15039062,-0.072753906,-0.010375977,-0.09326172,0.014526367,0.0859375,-0.04248047,0.067871094,0.018798828,0.013427734,-0.044189453,0.049072266,0.13183594,-0.115234375,0.19824219,0.05859375,0.083496094,0.057373047,-0.21191406,0.045166016,0.080078125,-0.025512695,0.140625,0.06982422,-0.08691406,-0.06738281,-0.10107422,0.009521484,-0.10839844,0.076171875,0.03173828,0.08105469,-0.076660156,0.038085938,0.020629883,0.038085938,0.18945312,-0.10498047,-0.23339844,0.0019073486,0.052490234,-0.107910156,-0.13476562,-0.075683594,-0.072753906,0.044433594,0.07861328,-0.25,-0.07080078,0.007232666,-0.037597656,-0.056640625,0.171875,0.067871094,-0.079589844,-0.20214844,0.0011138916,-0.064453125,0.07763672,-0.23046875,-0.19140625,-0.08984375,-0.140625,-0.10595703,0.002609253,-0.099121094,0.09326172,-0.18554688,0.18164062,0.19824219,0.038085938,-0.042236328,0.061523438,-0.23925781,-0.15234375,0.09033203,-0.076660156,0.10595703,0.103515625,0.21386719,-0.022949219,-0.076171875,-0.10986328,-0.04345703,-0.091796875,-0.064941406,-0.011352539,-0.22167969,0.017333984,0.008544922,-0.015075684,0.12158203,0.047607422,0.10205078,-0.017944336,0.41601562,-0.15332031,0.25195312,-0.29492188,-0.10986328,-0.018676758,-0.01550293,-0.075683594,-0.04248047,-0.03173828,0.023071289,-0.017333984,-0.03930664,0.22167969,-0.11621094,0.010192871,-0.091308594,-0.19433594,0.25195312,-0.052001953,-0.11230469,-0.09863281,0.02331543,-0.19921875,-0.011291504,0.111328125,-0.029418945,-0.19824219,0.12695312,0.1484375,0.00491333,-0.122558594,-0.019897461,-0.048095703,0.17480469,0.099121094,-0.025146484,0.053955078,0.021484375,-0.32421875,-0.12597656,0.071777344,0.19042969,0.10595703,0.09423828,0.06933594,-0.060791016,-0.05883789,-0.08691406,-0.08886719,-0.0014343262,-0.08154297,-0.16796875,-0.01977539,0.003112793,-0.071777344,-0.12451172,0.010375977,-0.09375,0.04638672,0.3359375,0.033447266,-0.028930664,0.13867188,0.1484375,-8.9645386e-05,0.009094238,0.05444336,0.022460938,-0.01928711,-0.033691406,-0.19726562,-0.10449219,0.072265625,-0.02331543,0.17285156,0.041015625,0.048583984,0.23632812,-0.052490234,-0.25585938,-0.08203125,0.14746094,0.045898438,-0.18945312,-0.07910156,0.123535156,-0.30273438,-0.008056641,-0.052001953,-0.053710938,-0.052734375,-0.28320312,0.09863281,0.021606445,-0.10546875,-0.0043945312,-0.14746094,0.21484375,0.01928711,-0.12158203,0.100097656,0.019165039,-0.29882812,-0.048583984,-0.026611328,-0.10546875,-0.009460449,-0.030151367,0.10986328,-0.15039062,-0.095703125,0.13867188,0.045898438,0.21679688,-0.25585938,-0.28320312,-0.037353516,-0.0069885254,-0.22460938,-0.08496094,0.061035156,-0.14550781,-0.23242188,0.044677734,0.106933594,-0.12158203,-0.055419922,-0.08886719,-0.24902344,0.11816406,0.115234375,-0.06347656,-0.115234375,0.004211426,0.014892578,0.08300781,-0.083984375,0.044921875,0.12695312,0.1953125,-0.12158203,-0.12011719,0.11376953,-0.15527344,0.103027344,-0.27929688,-0.19335938,0.063964844,-0.061035156,0.021362305,-0.15820312,0.020629883,-0.044189453,-0.104003906,-0.019897461,0.04736328,0.0014572144,-0.0046081543,0.008850098,-0.20117188,-0.14453125,0.039794922,-0.39257812,-0.025390625,-0.06347656,0.027709961,-0.046142578,0.004760742,-0.115234375,-0.11328125,-0.09423828,0.075683594,0.15820312,-0.022949219,-0.171875,-0.106933594,0.107421875,-0.048583984,-0.08300781,-0.15820312,0.119628906,-0.030395508,-0.00970459,0.030883789,0.17285156,0.06542969,-0.13085938,-0.08105469,0.15527344,-0.09033203,-0.087402344,0.02368164,0.00049209595,0.13183594,0.005279541,-0.13964844,-0.09716797,0.14160156,-0.03564453,0.100097656,0.10253906,-0.19140625,-0.31054688,0.18261719,0.067871094,-0.1640625,-0.053955078,-0.37695312,-0.099121094,0.16308594,0.075683594,-0.024780273,-0.042236328,-0.17871094,0.07470703,0.032470703,-0.0038604736,-0.045166016,0.072753906,0.040039062,-0.055419922,0.11230469,-0.004425049,0.21289062,-0.119140625,-0.5859375,-0.01159668,0.16503906,0.055664062,-0.20605469,0.0859375,0.055908203,-0.051513672,0.00061035156,0.080566406,0.37304688,-0.18359375,0.036132812,0.12451172,-0.1640625,0.033935547,-0.23828125,-0.119628906,0.08154297,-0.029663086,-0.00592041,-0.03540039,0.015380859,0.035888672,-0.0079956055,-0.18359375,0.099609375,0.0036773682,-0.119140625,-0.041992188,0.16601562,-0.021728516,-0.123046875,0.08300781,0.05834961,-0.016479492,-0.015625,-0.234375,0.12792969,0.06738281,-0.035888672,-0.32617188,-0.171875,0.10839844,-0.0625,0.072265625,0.061279297,0.16015625,-0.02734375,0.067871094,0.07324219,-0.15429688,0.28515625,-0.29296875,0.0859375,0.096191406,-0.076660156,-0.34375,-0.029296875,-0.040771484,-0.1640625,0.22070312,-0.14257812,0.15136719,-0.038330078,-0.16894531,0.04321289,-0.16113281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.06738281,0.09082031,-0.03881836,-0.15625,0.014221191,-0.14453125,-0.20507812,-0.008178711,0.05053711,-0.055664062,-0.033203125,0.13769531,-0.00340271,-0.2109375,0.050048828,0.13574219,-0.07324219,0.16113281,-0.19433594,-0.037109375,0.07861328,0.03125,-0.095214844,-0.079589844,0.035888672,-0.06933594,0.020263672,0.055908203,0.13183594,-0.023925781,-0.032714844,0.20214844,-0.05810547,-0.07763672,-0.03173828,-0.19433594,-0.06347656,-0.16992188,-0.004058838,-0.091796875,0.06738281,-0.021240234,-0.018432617,0.018310547,0.068359375,-0.2265625,-0.083984375,0.26367188,-0.016113281,0.14160156,-0.039794922,0.010192871,0.12597656,0.028076172,0.017211914,-0.06933594,0.063964844,-0.029541016,-0.17382812,0.022460938,0.12060547,-0.00982666,-0.083984375,0.107421875,-0.19921875,-0.05859375,-0.03466797,-0.07714844,0.16699219,-0.17089844,-0.068359375,-0.103515625,0.017700195,-0.0126953125,-0.092285156,0.010314941,-0.032470703,-0.119140625,-0.038330078,-0.0075683594,-0.048583984,0.36523438,0.07714844,-0.05859375,-0.03125,0.041992188,0.032958984,-0.02709961,0.013122559,-0.035888672,0.057128906,0.19140625,0.014038086,-0.060302734,0.10595703,0.003692627,-0.12207031,0.0390625,-0.048339844,-0.07910156,-0.037841797,0.021606445,-0.004119873,-0.29492188,0.06542969,0.10498047,-0.16796875,0.048095703,0.13867188,-0.22460938,0.0010223389,0.11425781,0.140625,0.14550781,0.0087890625,-0.12695312,0.12011719,-0.15234375,-0.06982422,-0.18945312,0.040771484,0.107910156,-0.106933594,-0.006652832,0.15722656,-0.022949219,-0.0048828125,0.13769531,-0.100097656,-0.107421875,0.014770508,0.09765625,0.1171875,0.029541016,-0.083984375,0.0126953125,-0.021118164,0.106933594,-0.03540039,0.052001953,0.0390625,-0.18652344,0.06982422,0.09375,-0.029663086,0.12451172,0.07470703,0.009521484,0.01965332,-0.068847656,-0.19433594,0.02368164,0.022949219,0.06738281,-0.03466797,0.06982422,0.040283203,-0.18457031,-0.09033203,0.09082031,0.16503906,0.1484375,0.07373047,0.111328125,-0.022094727,0.012268066,0.05810547,0.08691406,-0.030151367,0.17382812,0.13769531,-0.10595703,0.04321289,-0.029663086,0.061523438,-0.1171875,0.061523438,-0.08300781,0.16601562,-0.10888672,0.110839844,-0.07324219,0.006439209,-0.01184082,0.048828125,0.08154297,-0.067871094,-0.03564453,-0.03173828,0.03125,-0.067871094,0.13671875,0.0040893555,-0.07324219,0.033203125,-0.22070312,-0.048339844,-0.06689453,0.07910156,-0.21875,-0.034179688,0.18066406,0.044433594,0.051757812,-0.10644531,-0.17578125,0.030639648,0.171875,-0.14257812,0.06298828,-0.071777344,-0.110839844,0.049804688,-0.06640625,0.13867188,-0.17773438,-0.1171875,0.16308594,0.028076172,-0.10058594,0.055419922,0.13085938,0.0061035156,0.14550781,0.012451172,0.13867188,0.04663086,-0.123535156,-0.042236328,0.01977539,-0.39453125,-0.13085938,0.053955078,0.13671875,0.04272461,0.091308594,0.026367188,-0.045410156,0.17480469,-0.053466797,0.012084961,-0.10595703,-0.017333984,0.05517578,-0.064941406,0.0010910034,-0.11816406,-0.025146484,-0.083496094,0.122558594,0.23144531,-0.18847656,0.03540039,-0.080078125,0.10644531,0.0546875,0.07470703,0.09472656,-0.12158203,-0.21582031,-0.013916016,-0.045654297,0.056396484,-0.22558594,-0.091308594,0.10205078,0.064453125,-0.26757812,-0.1640625,0.0053710938,-0.016235352,-0.013305664,0.15625,0.04711914,-0.053222656,-0.34765625,-0.080078125,0.3203125,0.056640625,-0.15722656,0.05102539,0.14257812,-0.1171875,-0.18847656,0.049072266,-0.095703125,0.03540039,0.10986328,0.0076293945,-0.021118164,-0.034423828,-0.16113281,-0.059570312,0.012634277,0.032958984,-0.15039062,0.0077209473,-0.018188477,0.08203125,0.0076293945,0.045410156,0.00025177002,-0.11669922,0.032470703,-0.041748047,0.036865234,-0.080566406,-0.09667969,-0.265625,-0.08642578,-0.05493164,-0.0546875,0.063964844,0.13183594,-0.019165039,0.16503906,-0.0025482178,-0.10644531,-0.06982422,0.07421875,0.079589844,0.0027008057,-0.18359375,0.12597656,-0.0625,-0.10644531,-0.05444336,0.020874023,-0.012268066,-0.09277344,0.017333984,-0.20019531,-0.011230469,0.08642578,-0.071777344,0.119140625,0.008300781,0.026245117,-0.14746094,-0.032226562,-0.0060424805,-0.044921875,0.041748047,0.033935547,-0.05126953,-0.09472656,0.01940918,-0.38671875,-0.0625,0.091308594,-0.2578125,0.016479492,0.08203125,0.13769531,-0.08984375,-0.18945312,-0.006866455,-0.037841797,-0.1796875,-0.24414062,-0.091796875,-0.012573242,0.068359375,-0.13378906,-0.125,-0.00075149536,-0.103027344,0.045898438,0.16113281,-0.0703125,-0.052978516,-0.20800781,0.059570312,0.05908203,-0.04248047,-0.27539062,-0.042236328,0.01965332,-0.012329102,0.095214844,-0.057861328,-0.15527344,0.006134033,0.08642578,0.359375,0.048828125,-0.011352539,-0.15332031,-0.20800781,0.03149414,-0.22070312,-0.18554688,-0.10888672,-0.11230469,0.14648438,0.23339844,-0.26171875,-0.119140625,0.029663086,0.0008735657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.036865234,-0.0390625,0.049316406,0.04663086,-0.14453125,0.0040893555,-0.16210938,0.16503906,-0.05444336,-0.03491211,-0.071777344,0.052001953,-0.044921875,0.053222656,-0.027709961,0.05517578,-0.13867188,-0.19042969,-0.096191406,-0.2109375,0.091308594,-0.06689453,-0.088378906,-0.005004883,0.056640625,0.018310547,-0.06738281,-0.09033203,-0.11621094,-0.052978516,0.0026855469,-0.083496094,-0.07373047,-0.1484375,-0.03540039,-0.051757812,-0.07128906,-0.016723633,-0.048583984,-0.08203125,0.063964844,-0.01550293,0.13183594,-0.064453125,-0.09326172,-0.061279297,-0.087402344,-0.008361816,0.07373047,0.046875,-0.10839844,0.02746582,-0.07470703,-0.23339844,0.009643555,-0.096191406,0.080566406,0.03857422,0.0041503906,-0.12109375,-0.03564453,-0.10058594,0.12695312,-0.15917969,0.095703125,-0.061767578,-0.07470703,-0.12109375,-0.06689453,0.08154297,-0.027954102,-0.025268555,0.05908203,0.052734375,0.06298828,0.09033203,-0.15332031,-0.010803223,0.099121094,-0.17675781,-0.078125,-0.009460449,-0.17382812,0.041015625,-0.088378906,0.048095703,0.1328125,0.115722656,0.028320312,0.03173828,-0.12988281,0.118652344,-0.05102539,-0.053222656,-0.048828125,-0.13671875,0.079589844,0.18359375,0.018920898,-0.099609375,-0.028930664,0.034179688,-0.099609375,-0.1328125,0.049072266,0.099121094,0.06933594,-0.017944336,0.0390625,-0.111328125,0.16601562,-0.119628906,-0.13183594,0.171875,-0.025390625,-0.203125,-0.15429688,-0.103027344,-0.09814453,-0.034179688,-0.038085938,0.09863281,-0.061767578,0.071777344,0.10253906,0.08984375,0.028198242,-0.076660156,0.026367188,-0.010620117,-0.009338379,-0.18359375,-0.05029297,-0.06347656,-0.05444336,0.12695312,-0.061279297,0.15039062,0.100097656,0.07714844,0.002822876,0.092285156,-0.13378906,-0.040527344,-0.20898438,-0.27734375,0.04711914,-0.0019302368,-0.20703125,-0.025878906,-0.04638672,-0.07861328,-0.095703125,-0.12597656,0.0033569336,-0.15332031,0.06225586,-0.1640625,-0.035888672,-0.037597656,0.045410156,-0.061767578,-0.13183594,0.01184082,-0.103027344,0.09033203,0.06933594,0.025512695,-0.095703125,0.03100586,0.107910156,-0.06298828,0.016723633,0.028320312,-0.053955078,-0.18652344,-0.24804688,0.051513672,0.040039062,0.05029297,-0.2109375,0.08251953,0.115722656,-0.0015716553,0.0012512207,-0.076660156,0.038085938,-0.10253906,-0.03564453,-0.13476562,-0.05493164,-0.23046875,-0.20800781,0.21777344,-0.022460938,-0.056640625,-0.15820312,0.043701172,0.06225586,-0.009277344,0.026855469,-0.06640625,-0.14941406,0.018310547,-0.15332031,0.08935547,-0.03112793,0.014953613,-0.29101562,0.06542969,-0.009521484,-0.0859375,-0.041992188,0.20214844,-0.036132812,-0.045654297,0.06201172,-0.063964844,-0.033691406,-0.032958984,-0.055908203,-0.045410156,-0.088378906,-0.045898438,-0.12451172,-0.21875,0.008666992,-0.16113281,-0.15234375,0.01361084,0.08105469,-0.0032043457,0.08300781,-0.11816406,-0.115722656,0.04736328,-0.20410156,-0.125,-0.14160156,-0.08251953,-0.041503906,-0.072753906,-0.25976562,-0.0073242188,-0.037353516,0.119628906,0.032226562,-0.06982422,-0.041992188,0.0034637451,-0.030395508,0.23046875,0.059814453,-0.09033203,0.0625,-0.09667969,-0.08300781,-0.014465332,-0.17871094,-0.029418945,-0.055664062,-0.031982422,0.19628906,-0.07910156,-0.051513672,-0.16210938,-0.023071289,-0.038085938,0.034423828,-0.118652344,-0.11230469,-0.18457031,0.012756348,-0.14550781,0.000957489,0.13574219,0.06933594,0.19628906,-0.0020751953,-0.15625,-0.079589844,-0.047607422,0.076660156,-0.13867188,-0.04345703,-0.07910156,0.018066406,-0.14355469,-0.33007812,-0.03149414,0.16699219,-0.0234375,0.02331543,0.31640625,0.092285156,-0.15820312,0.00982666,0.033935547,0.11425781,0.15917969,0.033935547,0.0625,0.005065918,0.037353516,0.034423828,0.13964844,0.0003566742,0.017822266,0.11669922,0.056152344,-0.123535156,0.10205078,-0.06225586,0.11328125,0.0234375,-0.048095703,0.048095703,-0.09033203,0.076660156,0.11816406,-0.08154297,-0.15527344,0.029541016,-0.23730469,0.12695312,-0.07421875,-0.22265625,-0.16503906,-0.033203125,-0.061767578,-0.1796875,-0.013671875,0.03564453,-0.014709473,-0.063964844,-0.19824219,-0.061523438,-0.1328125,-0.053710938,-0.115722656,-0.067871094,0.03173828,-0.104003906,0.050048828,-0.071777344,-0.12451172,-0.07421875,-0.09033203,0.063964844,0.11816406,0.041992188,-0.16894531,0.0625,0.061279297,0.08496094,0.09277344,-0.111816406,0.043701172,0.17675781,-0.20507812,0.032714844,-0.107910156,-0.011474609,0.26171875,0.033691406,0.07470703,-0.21191406,-0.10058594,0.18945312,0.03955078,0.017211914,-0.005645752,0.07421875,0.019897461,-0.18066406,0.09472656,-0.04248047,-0.015319824,0.051513672,0.11621094,0.018676758,-0.046875,0.04711914,0.02722168,-0.10058594,-0.140625,-0.047607422,-0.07519531,0.18164062,-0.041992188,-0.02734375,0.060546875,-0.009460449,-0.013061523,0.11767578,0.11669922,-0.040527344,0.06738281,0.13378906,-0.052490234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.041992188,0.053955078,0.057128906,-0.14550781,0.014465332,0.18457031,-0.18261719,0.0033569336,-0.032958984,-0.21582031,0.09814453,0.23828125,0.05517578,0.024047852,-0.009521484,-0.27734375,-0.08642578,0.07519531,0.0071411133,-0.06225586,0.122558594,0.10107422,-0.06298828,0.30859375,0.091308594,-0.21777344,0.018188477,0.18164062,0.096191406,-0.015075684,-0.024047852,0.08984375,0.06542969,-0.12207031,0.18652344,0.25195312,0.16113281,-0.12109375,0.14941406,0.15625,0.040039062,-0.06933594,0.12011719,-0.010498047,0.0390625,0.095214844,-0.096191406,0.018554688,-0.13183594,-0.15917969,0.021118164,0.09375,0.04736328,0.009033203,0.16210938,-0.13085938,-0.12402344,-0.1875,0.1796875,-0.07128906,-0.03881836,0.1015625,-0.040283203,-0.10839844,-0.091308594,-0.029296875,-0.030395508,0.084472656,-0.09277344,0.09472656,0.20703125,-0.06298828,0.03955078,-0.13574219,0.012207031,-0.19042969,0.103515625,0.057617188,-0.119140625,-0.053710938,-0.022338867,0.19824219,0.10107422,-0.016723633,0.006225586,-0.0036010742,0.015991211,0.057861328,0.09082031,-0.27539062,0.16308594,0.19628906,0.08300781,0.11328125,0.02355957,-0.11767578,0.13183594,0.15722656,0.057617188,0.123535156,-0.078125,0.052001953,0.100097656,0.203125,-0.08203125,0.087402344,0.107421875,-0.19335938,0.045898438,0.053955078,0.11279297,0.033203125,-0.19140625,-0.08886719,-0.064453125,-0.051513672,0.044677734,-0.21972656,-0.07128906,0.0625,-0.036865234,-0.045166016,0.041259766,-0.17871094,-0.107421875,0.10888672,0.050048828,-0.16503906,0.16992188,-0.020751953,0.029052734,0.064453125,0.020385742,-0.083496094,0.00078582764,-0.18359375,0.018554688,-0.092285156,0.01184082,-0.068847656,0.088378906,-0.1328125,-0.0054016113,-0.12451172,0.07373047,0.0070495605,0.012939453,0.14746094,-0.16503906,0.042236328,-0.037353516,-0.091796875,-0.0546875,0.03125,-0.0053100586,-0.12158203,0.040039062,-0.008972168,0.029418945,-0.014892578,0.106933594,0.29296875,-0.015991211,0.040771484,0.1875,0.05908203,-0.1328125,0.02734375,-0.036865234,-0.16015625,-0.056152344,0.15234375,-0.20117188,-0.03466797,0.08642578,-0.047851562,0.171875,0.06933594,0.011352539,0.0053710938,0.11425781,-0.053466797,0.032714844,-0.007171631,-0.03466797,0.04321289,0.044189453,-0.02746582,-0.12890625,0.12597656,-0.083984375,0.095703125,-0.009155273,-0.078125,0.015136719,-0.009277344,0.03466797,0.012817383,0.08984375,0.104003906,0.019897461,-0.08154297,-0.04638672,0.026367188,0.04345703,-0.119628906,0.02722168,0.05883789,-0.036621094,-0.030029297,-0.021972656,-0.055419922,-0.16699219,-0.052490234,-0.013183594,0.02734375,0.092285156,-0.026245117,0.10498047,-0.15332031,0.022827148,-0.114746094,0.0006790161,-0.0859375,0.044189453,0.17675781,-0.016845703,0.06298828,-0.123046875,-0.010192871,-0.07910156,-0.12451172,-0.04272461,-0.09472656,0.09277344,0.045410156,0.049072266,-0.033691406,0.07910156,-0.19628906,0.04663086,0.32421875,-0.0009689331,0.036132812,0.030517578,-0.09814453,-0.19433594,0.09716797,0.103515625,-0.015991211,0.13574219,0.08642578,-0.0625,0.020996094,0.15429688,-0.06225586,0.08935547,0.119140625,-0.031982422,-0.034423828,0.03491211,0.051513672,0.049560547,0.037109375,-0.15820312,0.045410156,0.072265625,-0.063964844,-0.018066406,-0.010925293,0.12890625,0.080078125,0.12451172,0.020874023,-0.08105469,0.03564453,0.30078125,0.27734375,-0.06982422,-0.13476562,0.064941406,0.03857422,0.010437012,-0.11816406,0.0034179688,-0.18847656,-0.03930664,-0.28515625,0.09765625,0.114746094,-0.26367188,-0.06640625,-0.05444336,0.20214844,-0.0016784668,-0.234375,0.11035156,-0.016601562,0.06982422,-0.076171875,-0.024780273,-0.07861328,-0.06298828,-0.359375,0.056640625,-0.12109375,0.018920898,-0.12792969,-0.20898438,-0.006652832,0.29296875,-0.5390625,0.09326172,0.018676758,0.20117188,-0.27148438,0.0625,-0.25,-0.06591797,-0.31835938,0.10449219,0.14355469,-0.02355957,0.068847656,-0.13574219,0.091308594,-0.040771484,-0.014282227,0.0119018555,-0.018066406,-0.071777344,0.013549805,-0.16992188,0.15527344,0.10205078,0.16699219,0.12597656,0.1015625,0.09716797,-0.026367188,0.047851562,-0.088378906,0.119140625,0.13183594,0.032470703,-0.020141602,-0.036865234,-0.15136719,-0.15527344,0.010131836,-0.037841797,0.16992188,0.12890625,-0.07470703,-0.050048828,0.119628906,-0.07763672,-0.033691406,0.060058594,0.025390625,0.047607422,-0.087402344,0.21777344,-0.30664062,0.029418945,0.19921875,0.16601562,0.10839844,0.049804688,0.078125,0.05444336,0.051513672,-0.010925293,0.096191406,-0.13085938,0.00010538101,0.0071105957,-0.12988281,0.16210938,-0.12988281,0.013366699,-0.052001953,-0.0076904297,-0.13769531,-0.09375,-0.22851562,0.026367188,-0.01574707,-0.13964844,0.17773438,-0.041992188,-0.30859375,0.096191406,0.040039062,-0.04296875,-0.23144531,-0.12695312,-0.25976562,-0.07470703,-0.20507812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.19238281,0.019897461,-0.16601562,-0.19335938,-0.18554688,-0.20507812,0.022827148,0.057617188,0.07470703,0.040527344,-0.038330078,0.053466797,0.19140625,0.09033203,0.08886719,-0.21289062,-0.11279297,-0.08984375,-0.09033203,-0.103027344,0.12207031,-0.17871094,-0.09863281,0.029663086,-0.047607422,0.026855469,-0.13183594,-0.037109375,-0.040283203,-0.13378906,0.02355957,-0.0025024414,-0.008544922,-0.22460938,-0.036132812,0.07763672,0.011474609,0.014282227,0.13671875,0.25,0.0703125,-0.039794922,-0.12988281,-0.095703125,-0.079589844,-0.015625,-0.061279297,0.11230469,0.05834961,-0.049316406,0.02758789,0.08642578,0.1796875,-0.063964844,-0.12158203,-0.03857422,0.08935547,0.115234375,-0.25585938,-0.03540039,-0.084472656,-0.044433594,-0.060302734,0.11279297,0.0859375,-0.13769531,-0.11328125,-0.25585938,-0.03955078,-0.23632812,0.01159668,0.037109375,0.049804688,-0.10595703,-0.048095703,-0.012145996,0.03515625,-0.15820312,-0.049804688,-0.044189453,0.15527344,0.011413574,0.07128906,0.099121094,0.046875,-0.0154418945,0.083984375,0.087402344,-0.08203125,0.014343262,0.001121521,0.07714844,0.07861328,-0.013671875,0.045654297,-0.36523438,0.020263672,0.21191406,0.10449219,0.076171875,-0.06347656,-0.06933594,0.22167969,-0.08691406,-0.032226562,-0.033691406,0.03930664,0.07714844,0.08203125,-0.17578125,-0.11816406,-0.13183594,0.11035156,0.1015625,0.010864258,0.13183594,-0.09375,-0.07470703,-0.18457031,0.095214844,0.041015625,0.045166016,-0.1328125,0.084472656,0.06982422,0.0234375,-0.07421875,-0.12402344,-0.10107422,0.016479492,0.21679688,0.064941406,-0.034179688,-0.057861328,0.08496094,0.09082031,0.027832031,0.011352539,-0.047607422,0.045898438,0.018676758,-0.23730469,0.04345703,0.1640625,-0.05102539,0.06298828,0.047607422,0.019897461,-0.05859375,-0.12109375,-0.17480469,-0.091308594,0.02746582,0.007537842,0.107421875,0.032226562,-0.025756836,-0.15722656,-0.0057373047,0.123046875,0.114746094,0.006164551,-0.021118164,-0.05908203,-0.018676758,0.05078125,0.14453125,0.095703125,0.083984375,0.00970459,-0.032958984,0.06738281,0.10888672,-0.007171631,-0.043701172,-0.2890625,0.04663086,-0.040527344,-0.13183594,0.012939453,-0.0004825592,0.004425049,-0.010620117,0.014404297,0.031982422,0.07324219,-0.19335938,-0.08496094,0.016113281,-0.13378906,-0.012023926,0.03881836,-0.23632812,0.21777344,0.041503906,0.024658203,-0.059326172,0.15039062,-0.09472656,0.043701172,0.06298828,-0.009765625,0.03930664,0.040039062,-0.032714844,0.033447266,0.091796875,0.13574219,-0.2734375,-0.25390625,-0.14550781,-0.030151367,0.096191406,-0.20605469,0.21191406,-0.008544922,-0.091308594,0.014038086,-0.13867188,0.020263672,-0.096191406,0.24511719,-0.087890625,0.13574219,0.12011719,-0.21289062,-0.014709473,-0.032226562,-0.092285156,-0.14257812,-0.072265625,-0.055908203,-0.13476562,0.114746094,0.15527344,-0.13671875,-0.07519531,0.036865234,0.009887695,0.08203125,0.00970459,-0.095214844,-0.039794922,-0.07763672,-0.076171875,0.009460449,-0.024658203,-0.052246094,0.11816406,0.21777344,-0.0138549805,-0.14941406,0.025390625,0.05444336,0.032714844,-0.06591797,-0.140625,-0.3359375,-0.09277344,-0.15820312,0.08642578,0.053955078,-0.16894531,-0.111328125,-0.024047852,0.06542969,0.07373047,-0.3828125,-0.08642578,0.1484375,-0.075683594,0.033203125,-0.28320312,-0.14941406,-0.1328125,-0.10205078,0.060546875,0.064453125,0.10888672,-0.4453125,0.107910156,0.011474609,-0.14648438,-0.421875,0.06347656,-0.041503906,0.068359375,0.11425781,0.0099487305,-0.004852295,-0.24804688,-0.19628906,-0.15039062,0.13378906,0.051513672,-0.22949219,-0.09472656,0.087402344,-0.032226562,-0.3515625,0.024414062,-0.03881836,0.011657715,-0.011352539,0.021728516,0.18945312,-0.08984375,-0.16210938,-0.044921875,-0.12597656,-0.19824219,-0.12988281,0.064453125,0.104003906,0.009643555,-0.068359375,-0.11328125,-0.0134887695,0.068359375,0.006866455,0.17675781,0.15722656,-0.13183594,0.039794922,0.08105469,0.04711914,0.04321289,0.025634766,0.104003906,0.03149414,0.049804688,-0.3671875,-0.0011749268,0.051513672,-0.04296875,-0.05444336,0.056884766,0.103027344,-0.18457031,-0.16210938,0.096191406,0.11767578,-0.0859375,0.21386719,0.060058594,-0.0546875,-0.1328125,-0.45117188,-0.048828125,0.09814453,-0.007873535,-0.14257812,0.17578125,-0.017211914,-0.030273438,-0.14550781,-0.041748047,-0.008239746,-0.09814453,0.09716797,-0.03466797,-0.11767578,0.024291992,-0.44335938,-0.076660156,-0.118652344,0.08203125,0.012451172,0.0003414154,-0.27929688,-0.028930664,-0.13085938,-0.11376953,0.03930664,-0.083496094,-0.011047363,0.08300781,-0.09472656,-0.060546875,-0.15820312,0.025024414,0.17675781,0.03466797,0.005065918,0.064453125,0.13476562,0.10205078,-0.06982422,-0.28710938,-0.04711914,-0.11035156,0.14257812,-0.1328125,0.11279297,0.046142578,0.114746094,-0.095703125,0.107421875,-0.068847656,0.17285156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.16210938,0.099609375,0.21972656,-0.041503906,0.049316406,-0.03173828,0.022338867,0.0625,-0.05883789,0.2578125,0.03466797,-0.084472656,0.15332031,-0.052001953,-0.15820312,-0.037353516,-0.17675781,0.032714844,0.026977539,0.18066406,0.030395508,0.18847656,-0.0075683594,-0.14355469,0.048828125,0.20898438,-0.11767578,0.122558594,0.041015625,0.14453125,-0.10058594,-0.11328125,0.05029297,-0.06933594,-0.029785156,0.0703125,0.09667969,-0.09863281,-0.080078125,-0.030639648,0.040771484,-0.06933594,-0.080078125,-0.06982422,0.034179688,-0.019165039,-0.017700195,-0.10546875,0.11279297,-0.25585938,-0.0625,-0.024047852,-0.16503906,-0.16113281,0.16894531,0.051757812,0.072753906,-0.13476562,-0.0007171631,-0.26953125,0.017578125,-0.025512695,0.010437012,-0.084472656,0.03491211,-0.06738281,-0.18359375,0.09326172,-0.084472656,0.006500244,-0.16601562,0.12988281,-0.012023926,-0.20410156,0.071777344,-0.19726562,-0.017822266,0.22167969,0.068359375,0.028198242,-0.080566406,-0.18554688,0.11621094,0.099609375,0.038330078,0.063964844,0.06933594,0.114746094,0.02746582,0.13964844,0.17480469,-0.036132812,0.096191406,-0.07080078,-0.10058594,-0.2890625,-0.22949219,-0.38476562,-0.0010299683,0.19628906,-0.009094238,-0.033203125,-0.011291504,-0.056640625,-0.056152344,0.06225586,0.115722656,-0.07470703,-0.03540039,0.15917969,-0.048095703,-0.16796875,0.0026550293,-0.24804688,0.0041503906,0.16992188,-0.08251953,-0.084472656,0.10986328,-0.08642578,0.05859375,-0.13964844,-0.11376953,-0.076171875,-0.018554688,-0.04711914,0.05908203,-0.19726562,-0.114746094,-0.34960938,-0.07519531,0.18847656,-0.11816406,0.15527344,0.001663208,-0.007659912,-0.12988281,-0.19726562,-0.110839844,-0.15625,0.09326172,-0.11230469,-0.064453125,0.09814453,-0.032714844,-0.07519531,-0.18457031,-0.13183594,-0.18359375,0.23925781,0.011657715,-0.032714844,0.0625,-0.10595703,-0.13476562,-0.06347656,0.052490234,0.10498047,0.0049438477,0.15234375,-0.08203125,0.04711914,0.07519531,-0.10253906,0.18847656,0.16113281,0.072265625,-0.034179688,0.049560547,0.010314941,-0.011352539,-0.125,0.09375,-0.21679688,-0.0859375,-0.3828125,0.024291992,-0.17578125,-0.080566406,0.057617188,-0.02331543,0.057617188,-0.13378906,-0.044189453,-0.045898438,0.0078125,0.119628906,-0.15527344,-0.028198242,0.044677734,-0.14746094,-0.12695312,-0.08203125,-0.24414062,0.00089263916,0.18066406,-0.111328125,-0.09423828,0.13574219,-0.055664062,-0.028442383,-0.10644531,-0.11816406,-0.091796875,0.044677734,0.100097656,-0.24316406,-0.16503906,0.0005760193,-0.017578125,-0.05102539,0.21484375,-0.034179688,0.12011719,0.04321289,-0.088378906,-0.068847656,-0.103027344,-0.067871094,-0.39257812,0.033447266,-0.19433594,-0.27734375,-0.009033203,-0.17480469,0.04736328,-0.02331543,-0.12890625,-0.18554688,-0.08935547,0.050048828,0.055908203,-0.125,-0.015136719,0.14355469,-0.24902344,-0.008605957,-0.19042969,0.14160156,-0.025756836,-0.29101562,0.0546875,0.03100586,-0.021850586,0.08886719,0.114746094,0.16015625,-0.0018386841,-0.103027344,0.064941406,0.012451172,0.08105469,0.037353516,0.00793457,-0.11230469,-0.16015625,-0.026123047,0.07421875,-0.08984375,0.02368164,0.21972656,-0.03881836,0.109375,-0.07861328,0.05102539,0.072753906,0.12158203,0.07763672,-0.016601562,0.032714844,-0.047851562,-0.076660156,-0.03881836,-0.0059814453,0.057128906,0.059814453,0.061767578,-0.044921875,0.026123047,0.111816406,-0.0049743652,0.079589844,0.0099487305,-0.21484375,0.059326172,0.0014266968,0.16210938,-0.1796875,0.18066406,0.15527344,-0.0018463135,-0.003768921,-0.22753906,-0.084472656,0.10839844,-0.084472656,0.014709473,-0.026367188,0.1796875,-0.08886719,0.052246094,-0.20703125,0.083496094,0.033691406,-0.1640625,0.022583008,0.123046875,0.030517578,-0.0703125,-0.08935547,0.21679688,0.016601562,-0.018554688,0.010314941,0.17773438,0.096191406,-0.068847656,-0.12109375,-0.048339844,0.19726562,-0.041259766,0.09765625,0.035888672,-0.0138549805,-0.063964844,0.0703125,-0.17382812,0.119628906,0.0038757324,0.067871094,-0.051757812,0.13183594,-0.026000977,-0.091796875,0.080078125,0.021728516,-0.087402344,0.018432617,0.1640625,0.0030822754,0.044921875,0.23046875,0.028076172,0.06689453,0.06591797,0.06933594,-0.09472656,0.04272461,-0.14160156,-0.06201172,-0.04638672,-0.20605469,0.15917969,0.053710938,-0.012512207,0.07373047,-0.060302734,-0.14941406,0.21386719,-0.07714844,-0.048583984,0.048583984,-0.19433594,0.18652344,0.028564453,0.010925293,0.053466797,-0.12060547,0.12988281,0.020751953,0.125,0.040527344,-0.13574219,-0.041992188,0.045410156,-0.22558594,-0.0058898926,-0.10449219,-0.096191406,0.048339844,-0.17773438,-0.19433594,-0.029174805,0.028686523,-0.171875,-0.0099487305,0.20410156,-0.061279297,-0.076171875,-0.26171875,0.114746094,-0.020751953,-0.06298828,-0.08496094,0.07519531,0.03112793,0.06933594,-0.08496094,-0.0054626465,-0.049804688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.11425781,-0.034179688,0.3515625,0.01586914,0.06689453,-0.044189453,-0.029052734,-0.0115356445,-0.045166016,0.0023498535,0.0025482178,0.19042969,-0.09472656,-0.09716797,0.011047363,-0.026733398,0.171875,-0.027954102,0.3125,0.03857422,-0.12109375,-0.20996094,-0.13671875,0.022216797,-0.053710938,0.079589844,-0.19628906,0.10205078,-0.15429688,0.37304688,0.030395508,-0.059570312,-0.00062179565,-0.036865234,0.09082031,0.12207031,-0.0859375,-0.14355469,-0.087402344,-0.07324219,-0.052001953,0.05810547,-0.103027344,-0.13085938,-0.13964844,-0.015014648,-0.08300781,-0.06201172,0.08154297,-0.0035095215,-0.06298828,0.31835938,-0.12597656,-0.16015625,-0.16503906,-0.012939453,-0.020629883,0.16113281,-0.020996094,-0.31054688,0.15527344,-0.05053711,-0.068847656,-0.11376953,0.08105469,-0.022338867,-0.009765625,0.24511719,-0.09082031,-0.20214844,0.16699219,-0.049804688,-0.043945312,0.076660156,-0.17382812,-0.1796875,0.19335938,0.13183594,-0.1015625,0.051513672,-0.15625,0.11328125,0.265625,-0.09326172,-0.0029449463,-0.0040283203,-0.34179688,-0.012634277,-0.119628906,-0.10888672,-0.18359375,-0.052246094,-0.09277344,-0.01574707,-0.16308594,0.11669922,0.022705078,0.16015625,0.036132812,-0.103515625,0.18652344,-0.20703125,-0.16992188,-0.078125,-0.18261719,0.019897461,0.05419922,0.005645752,0.043945312,-0.039794922,0.16503906,0.028442383,0.15136719,0.23046875,0.032714844,-0.08251953,0.09814453,0.15039062,-0.047851562,-0.022949219,0.029785156,0.111816406,-0.140625,-0.010009766,-0.06591797,-0.24414062,0.0390625,0.032226562,0.037109375,-0.0050354004,0.028808594,-0.026000977,0.15039062,0.0040283203,0.07128906,-0.053955078,-0.06347656,-0.0048828125,0.114746094,0.026611328,0.05078125,-0.020385742,-0.096191406,0.0625,-0.049072266,-0.01928711,0.15722656,-0.072265625,0.0025787354,-0.13476562,0.027709961,-0.17773438,-0.045166016,-0.056396484,-0.171875,-0.26953125,0.060058594,0.030273438,0.039794922,-0.025024414,0.022827148,-0.028930664,0.016479492,-0.12011719,0.095703125,-0.14355469,-0.045654297,-0.17773438,0.05834961,0.03125,-0.25,0.032226562,-0.20019531,0.040039062,0.051757812,0.16894531,-0.22363281,0.08300781,0.057128906,-0.36328125,0.16210938,0.06298828,-0.06982422,-0.140625,-0.0859375,0.009887695,-0.18652344,0.015258789,0.04638672,-0.07080078,-0.071777344,0.171875,-0.16894531,0.19042969,-0.071777344,-0.15136719,0.16503906,0.19726562,-0.07519531,-0.3515625,0.03857422,0.10839844,-0.09423828,-0.11328125,-0.039794922,-0.19628906,0.009521484,0.091796875,0.036865234,-0.039794922,-0.2421875,0.010803223,0.15429688,-0.060791016,-0.1796875,-0.15136719,-0.092285156,0.026367188,-0.048828125,-0.0021972656,-0.05078125,-0.025634766,-0.05102539,0.14257812,0.021362305,-0.05517578,-0.15722656,-0.02331543,0.037841797,0.0016479492,-0.09082031,-0.29492188,0.014953613,0.040771484,-0.04248047,-0.13574219,0.01184082,0.08691406,-0.09667969,0.09082031,-0.119628906,-0.22851562,0.09863281,-0.12060547,-0.03540039,-0.011169434,0.068359375,0.033935547,0.11621094,0.0054016113,-0.14550781,0.0546875,-0.15917969,-0.095214844,0.15429688,0.13769531,-0.20703125,0.19628906,-0.17871094,-0.23925781,-0.043701172,0.032714844,0.13574219,-0.025146484,-0.013183594,-0.010253906,-0.09765625,0.123046875,-0.0073242188,-0.06201172,0.13867188,0.055664062,0.08886719,-0.07421875,-0.20605469,-0.017089844,0.095703125,-0.0016860962,0.18652344,0.044189453,-0.14160156,-0.005584717,-0.045898438,0.19042969,0.029907227,-0.026977539,0.08544922,0.19433594,0.099121094,0.07910156,-0.12890625,0.09423828,0.033691406,0.1328125,-0.0625,0.026000977,-0.03540039,-0.030151367,-0.076660156,0.16699219,0.052734375,-0.06982422,0.106933594,0.030273438,-0.0036468506,0.037353516,-0.20019531,-0.087890625,-0.0067749023,-0.049560547,0.12402344,0.048339844,-0.1015625,0.11816406,-0.12060547,0.03930664,0.0040283203,-0.28320312,0.06591797,-0.038085938,-0.27148438,-0.17675781,-0.029174805,0.06591797,-0.10888672,0.20117188,-0.07519531,-0.0053100586,0.18847656,0.140625,0.044189453,-0.071777344,-0.1875,0.14160156,0.18457031,-0.044921875,-0.029296875,0.056640625,-0.30664062,0.14160156,-0.026855469,-0.14453125,0.16992188,-0.04638672,0.099121094,0.016357422,0.15625,0.020751953,-0.026000977,-0.15820312,0.22363281,0.10595703,-0.24121094,0.015014648,-0.37890625,0.044677734,-0.12158203,-0.024169922,0.18164062,0.083984375,-0.09277344,0.11669922,0.060302734,0.119140625,-0.040771484,-0.2890625,0.115234375,0.1796875,-0.026489258,0.23144531,-0.19628906,-0.076171875,-0.034179688,0.01977539,0.005584717,0.08886719,-0.048095703,0.104003906,-0.22460938,0.123535156,0.084472656,-0.104003906,0.08251953,0.009521484,0.14550781,0.051757812,-0.06933594,-0.059814453,0.091796875,-0.1640625,0.08105469,-0.024047852,-0.06347656,0.18457031,-0.3125,0.32226562,0.08105469,-0.14257812,-0.07373047,0.01940918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.06298828,-0.10253906,0.024902344,-0.045654297,-0.18945312,-0.033691406,0.07421875,0.06225586,-0.0146484375,-0.2734375,-0.007751465,-0.12695312,0.08642578,-0.18945312,-0.12890625,-0.05810547,0.059570312,-0.26171875,-0.0019378662,-0.15625,0.14550781,-0.08544922,-0.07128906,0.09082031,0.099121094,-0.15136719,0.14355469,0.114746094,0.11767578,0.15820312,-0.16992188,0.103027344,-0.15820312,-0.037597656,0.010131836,-0.13671875,0.056152344,0.07128906,-0.10449219,-0.049072266,-0.044677734,-0.12792969,0.16308594,-0.18066406,0.13769531,0.029663086,-0.075683594,-0.040527344,0.08984375,0.038330078,-0.020629883,-0.06738281,0.07421875,-0.06591797,0.011108398,-0.12597656,0.049316406,-0.025268555,-0.0859375,-0.049804688,-0.048583984,-0.22851562,0.078125,0.19433594,0.30078125,-0.23242188,0.032958984,-0.125,-0.21679688,0.10498047,0.07763672,0.15136719,0.027954102,-0.06640625,0.057617188,0.171875,0.049316406,0.11621094,-0.12988281,0.09033203,0.057128906,-0.053955078,0.027954102,-0.09814453,-0.010925293,-0.12597656,-0.24707031,0.045166016,0.1171875,-0.1796875,0.103515625,-0.072265625,-0.06542969,-0.096191406,-0.06542969,-0.028686523,0.14648438,0.047607422,0.08544922,0.020874023,-0.115722656,-0.23339844,-0.005340576,0.0546875,0.09326172,-0.15820312,0.014709473,-0.00982666,-0.11279297,-0.051513672,-0.020263672,0.025512695,-0.015991211,-0.14941406,0.041503906,-0.12792969,0.1484375,0.13671875,0.003616333,-0.017333984,0.03125,0.02722168,-0.002243042,-0.091796875,-0.048828125,0.099121094,-0.060791016,-0.031982422,-0.02331543,0.104003906,0.115234375,0.027832031,0.056396484,-0.006225586,0.004425049,-0.036865234,0.064941406,0.09863281,0.0039978027,0.08886719,-0.091308594,-0.03466797,-0.053955078,0.0030670166,0.21777344,-0.12695312,0.16992188,-0.0001449585,0.05810547,0.061035156,0.17871094,0.018554688,-0.022583008,0.20410156,-0.05834961,0.13574219,-0.05493164,-0.08300781,-0.11328125,-0.17578125,-0.040283203,-0.026000977,-0.140625,-0.23730469,-0.064941406,-0.0044555664,0.041992188,0.09716797,0.08935547,-0.25,0.01928711,-0.099609375,-0.18847656,-0.023071289,-0.25195312,-0.016357422,0.03173828,-0.064453125,0.0048828125,0.10498047,0.08935547,0.091796875,-0.088378906,0.11376953,0.076660156,-0.040771484,0.14355469,-0.203125,0.08984375,-0.107910156,-0.203125,0.04321289,-0.030273438,-0.18457031,-0.056884766,-0.015563965,0.0019836426,0.022338867,0.0703125,0.012817383,0.03125,0.056396484,-0.08251953,0.11816406,-0.034179688,0.016723633,-0.12451172,-0.043701172,-0.055419922,-0.18554688,0.13574219,0.080566406,0.12109375,0.111328125,0.0234375,0.022705078,0.035888672,0.08300781,0.123046875,0.07470703,-0.15136719,-0.12402344,0.08105469,0.036865234,0.08154297,0.140625,0.09375,-0.0047302246,-0.0063171387,0.16308594,0.088378906,-0.20214844,0.05419922,0.16113281,-0.12988281,0.12890625,-0.2109375,0.028808594,-0.029541016,0.17871094,-0.07470703,-0.25,-0.09667969,-0.103515625,-0.027709961,0.11035156,-0.03173828,-0.064941406,0.032958984,-0.048828125,0.06689453,-0.20019531,0.048583984,0.022827148,0.083984375,-0.015075684,-0.18652344,0.1796875,0.047607422,0.011352539,0.16699219,-0.14550781,0.01965332,-0.10888672,0.021728516,-0.13574219,0.04321289,-0.0046081543,-0.07470703,0.07910156,-0.21289062,0.14941406,0.040771484,0.016479492,0.05810547,-0.2265625,0.16308594,-0.003829956,-0.07470703,-0.040771484,0.021484375,0.055664062,0.12060547,0.05078125,0.15429688,0.042236328,0.041748047,0.051513672,0.119140625,-0.029541016,0.10839844,-0.07763672,-0.14941406,-0.15722656,0.018432617,0.0010910034,0.08935547,0.028198242,0.06982422,0.10449219,-0.09667969,0.18652344,0.0048217773,0.068847656,0.15917969,-0.12158203,0.07714844,-0.07763672,-0.00045204163,-0.072265625,0.22167969,0.017944336,0.026489258,-0.12011719,0.07519531,0.087402344,-0.092285156,0.06225586,-0.049804688,0.04296875,0.012145996,-0.064941406,-0.009765625,0.110839844,-0.14746094,0.23828125,0.17578125,-0.13769531,0.071777344,0.14746094,0.119628906,-0.13183594,-0.024169922,0.095214844,0.033447266,0.13867188,-0.20800781,-0.16796875,0.0008354187,-0.140625,0.018432617,-0.037353516,0.11621094,-0.14648438,0.091796875,0.095214844,0.13769531,0.02368164,0.091308594,0.1796875,0.13183594,0.027709961,-0.011962891,-0.25,0.06933594,-0.09765625,0.009460449,-0.15234375,0.06640625,-0.13574219,0.0048828125,-0.14453125,-0.22851562,0.096191406,0.08154297,-0.28515625,-0.014709473,-0.047851562,0.21289062,-0.088378906,-0.203125,-0.031982422,-0.125,0.07324219,0.088378906,-0.17480469,0.095214844,-0.15136719,-0.1015625,-0.16992188,-0.00088882446,-0.14941406,-0.07324219,0.036865234,0.059814453,-0.053466797,-0.0052490234,-0.18847656,0.19824219,0.012390137,-0.12792969,-0.18652344,-0.096191406,-0.39453125,0.24511719,-0.017944336,-0.060058594,0.064453125,-0.091796875,0.048828125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.2421875,0.18164062,-0.11376953,-0.048339844,0.016479492,-0.023925781,-0.068359375,0.020141602,0.13769531,0.10546875,-0.1171875,-0.02319336,0.016113281,-0.052978516,-0.008544922,-0.13964844,0.19824219,0.1171875,-0.18847656,-0.07421875,-0.022216797,-0.24902344,-0.23046875,0.059326172,-0.076171875,0.15332031,-0.0095825195,-0.041015625,-0.10888672,-0.06298828,-0.07421875,0.041992188,0.103027344,-0.11669922,-0.087890625,0.20996094,-0.059814453,0.027709961,-0.05908203,0.08886719,0.05834961,0.114746094,0.111328125,0.059326172,0.045898438,0.009887695,0.010620117,0.18847656,0.1015625,0.06347656,-0.07519531,0.099121094,-0.0030670166,-0.2265625,-0.07519531,0.15429688,0.041503906,0.11376953,0.04638672,-0.020629883,-0.140625,0.10546875,0.048583984,-0.07421875,-0.09765625,0.08251953,-0.33007812,0.16210938,0.14550781,-0.059326172,-0.036621094,0.17871094,-0.030151367,0.19042969,0.18066406,-0.14648438,-0.03857422,0.15429688,-0.15917969,-0.056884766,0.10498047,0.16503906,-0.12695312,0.037597656,0.13769531,0.006591797,-0.16992188,0.1875,0.001663208,0.03491211,-0.3203125,0.06689453,0.005554199,-0.17382812,-0.018432617,-0.122558594,0.084472656,0.10498047,-0.07080078,0.08203125,-0.067871094,0.05053711,-0.05078125,0.038085938,-0.010375977,-0.040039062,0.045898438,0.0154418945,-0.012023926,0.051757812,0.010009766,-0.01928711,0.060058594,-0.045654297,0.0045166016,0.05419922,-0.06298828,-0.13085938,-0.08935547,0.09277344,0.04638672,0.009155273,0.0051879883,0.12988281,0.08984375,-0.027832031,-0.10498047,0.095703125,0.006134033,-0.056640625,-0.15527344,0.11425781,-0.028930664,-0.25,-0.09423828,0.15136719,0.017700195,-0.09472656,0.024169922,-0.1875,-0.068359375,0.08203125,-0.04638672,0.15429688,-0.07080078,0.049804688,-0.16699219,0.083496094,0.13183594,0.068359375,-0.23535156,0.103027344,0.111328125,0.2109375,-0.014770508,-0.07470703,0.05834961,0.203125,-0.079589844,0.0009994507,-0.02368164,-0.03149414,-0.060058594,0.068847656,0.08300781,0.026000977,-0.056152344,-0.007080078,0.12695312,0.104003906,-0.053955078,0.04321289,0.004333496,-0.068359375,0.053955078,-0.026367188,0.01159668,-0.103027344,-0.08154297,0.015625,0.028320312,-0.27148438,-0.025512695,0.10986328,0.008117676,0.049072266,-0.07128906,-0.013366699,0.021240234,0.10839844,-0.018554688,0.080566406,-0.060791016,-0.08691406,-0.06738281,0.034423828,-0.039794922,-0.37695312,-0.32226562,0.13183594,-0.01171875,-0.045898438,0.005065918,0.03173828,0.05029297,-0.09375,0.020751953,0.14550781,0.095703125,0.036132812,-0.13085938,0.053710938,0.016235352,0.07910156,-0.19824219,0.09423828,0.013000488,0.06298828,-0.08544922,-0.044189453,-0.034423828,0.041259766,0.07080078,0.10253906,-0.0035705566,-0.19921875,-0.114746094,0.0018997192,0.15917969,0.08105469,0.012207031,0.122558594,-0.068847656,0.04638672,0.08154297,-0.20996094,0.078125,0.036621094,0.059814453,0.036865234,-0.078125,-0.072753906,0.039794922,0.076171875,0.17285156,-0.16210938,-0.034179688,-0.0030212402,0.107421875,-0.007873535,-0.24121094,0.035888672,-0.13574219,0.06347656,0.034423828,0.09375,-0.023071289,0.08154297,-0.033447266,-0.115722656,-0.014465332,-0.036132812,-0.016235352,0.08886719,0.030029297,0.03466797,-0.08984375,0.028198242,-0.08300781,0.10888672,0.114746094,0.23632812,-0.13964844,-0.028808594,0.03857422,-0.03491211,0.1015625,-0.119140625,-0.063964844,0.07470703,-0.031982422,-0.096191406,-0.07373047,-0.028686523,0.00970459,0.26171875,0.07470703,0.006134033,-0.080078125,-0.10449219,-0.13574219,-0.01928711,-0.048828125,-0.056640625,-0.025878906,0.025634766,0.10058594,-0.053955078,-0.028076172,-0.07470703,0.13085938,0.21582031,0.13867188,0.12451172,0.019165039,-0.118652344,0.013000488,-0.0095825195,0.12695312,-0.16503906,0.025024414,0.010620117,0.052734375,-0.018066406,0.12597656,-0.16699219,0.12695312,0.052001953,0.08251953,0.028442383,-0.12988281,-0.095703125,0.21484375,-0.20898438,0.088378906,-0.34960938,0.09082031,-0.063964844,-0.10595703,0.13867188,-0.123535156,0.076660156,-0.10986328,0.047851562,0.0703125,-0.088378906,-0.18359375,0.029541016,0.19726562,-0.09375,0.15722656,-0.00592041,-0.060791016,0.16503906,-0.020629883,-0.025146484,-0.0074157715,-0.05493164,-0.020141602,-0.09765625,0.03564453,0.07421875,-0.05126953,-0.11816406,0.12988281,-0.031982422,0.053710938,-0.053466797,-0.080566406,0.17285156,0.1015625,-0.034179688,0.011352539,0.037109375,-0.083496094,0.0040283203,-0.016601562,-0.04663086,0.053466797,-0.14257812,0.10595703,0.033203125,-0.045898438,-0.040283203,0.0065612793,0.04272461,0.028442383,0.046142578,-0.00025177002,-0.06347656,-0.07421875,0.10644531,0.15234375,-0.059326172,-0.037597656,-0.107421875,0.0049743652,0.05883789,0.15625,0.14746094,0.0154418945,0.031982422,0.030639648,0.06298828,-0.12597656,-0.1171875,0.03564453,0.05078125,0.14453125,0.012084961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.0074768066,0.008605957,-0.029663086,0.12597656,0.19824219,-0.18554688,-0.29296875,0.14160156,0.052734375,0.12792969,0.025390625,-0.03112793,-0.19335938,-0.118652344,-0.07763672,-0.011108398,0.2890625,-0.16210938,-0.103027344,0.036132812,0.12060547,0.05126953,-0.19726562,0.0063171387,-0.08496094,0.064453125,-0.15332031,-0.14648438,0.115234375,-0.14550781,0.048583984,-0.11279297,-0.024047852,0.026000977,-0.012634277,-0.05444336,-0.04736328,-0.025878906,-0.17773438,-0.15722656,-0.10546875,0.008422852,-0.030029297,0.044921875,-0.06982422,-0.012634277,0.052978516,0.05834961,0.11621094,-0.13964844,-0.061523438,0.12695312,0.13476562,-0.06689453,-0.18554688,0.071777344,-0.010681152,-0.088378906,-0.40820312,0.15429688,-0.14453125,-0.14550781,0.092285156,-0.068359375,0.009643555,0.022827148,-0.056152344,-0.064453125,0.011779785,-0.296875,-0.0625,-0.09082031,0.1953125,0.056884766,-0.08935547,0.16113281,-0.17773438,0.12597656,-0.024536133,0.060546875,-0.13183594,-0.036621094,0.23046875,0.15722656,-0.19824219,0.15234375,-0.10107422,-0.26171875,0.02319336,-0.036621094,-0.16699219,-0.22851562,-0.17089844,0.12695312,-0.13183594,-0.10546875,-0.15039062,-0.045166016,0.0031280518,0.087402344,-0.12792969,0.14941406,-0.20898438,-0.14160156,0.029663086,-0.11621094,-0.13769531,-0.1796875,-0.18164062,0.064453125,0.039794922,-0.087402344,-0.075683594,0.08154297,0.1015625,0.071777344,-0.0013504028,-0.06933594,-0.13769531,-0.115234375,-0.06640625,0.06542969,0.06542969,0.09863281,-0.12792969,0.0043640137,0.10888672,0.0625,0.12890625,0.17382812,-0.023925781,0.03491211,0.10253906,-0.053222656,-0.103027344,0.17578125,0.040283203,0.09716797,0.026245117,0.2109375,-0.041503906,0.020874023,0.010192871,0.2421875,-0.014160156,0.055664062,0.026245117,-0.014892578,-0.068847656,-0.064453125,-0.1484375,-0.08886719,-0.049316406,0.12988281,-0.14355469,0.016723633,-0.13769531,0.037353516,0.12402344,0.068359375,-0.027709961,-0.107910156,0.13964844,-0.16503906,0.03955078,0.0009536743,-0.21679688,-0.26757812,0.038085938,-0.21191406,0.0546875,0.032226562,0.0010681152,0.072753906,0.033447266,-0.024169922,-0.14453125,-0.14941406,0.10107422,-0.12597656,-0.02709961,0.2421875,-0.23535156,-0.1328125,0.061523438,-0.04711914,0.0079956055,-0.045410156,0.12597656,0.042236328,0.14453125,0.123046875,0.096191406,-0.021972656,0.19824219,0.06982422,-0.125,0.12695312,-0.13769531,0.09814453,0.0057678223,0.051757812,-0.024291992,-0.052978516,0.111328125,-0.1328125,0.028930664,0.16113281,0.04248047,0.103027344,-0.016845703,0.022460938,0.1640625,0.02758789,0.13378906,0.0066833496,-0.0703125,-0.056884766,-0.171875,-0.12451172,0.061767578,-0.091796875,-0.17773438,0.1328125,0.084472656,-0.13769531,0.018676758,0.010253906,-0.09667969,-0.21191406,0.025390625,-0.34570312,0.04296875,-0.13867188,0.045898438,-0.14257812,0.09814453,-0.13867188,0.040283203,0.25195312,-0.080566406,-0.12597656,0.0025787354,-0.42382812,-0.16210938,-0.03100586,-0.14648438,-0.10253906,-0.09472656,-0.083984375,0.015991211,0.22363281,0.04296875,0.21582031,0.011413574,0.01373291,0.09277344,-0.19921875,-0.0074157715,-0.055664062,0.01940918,0.03857422,0.037353516,0.060058594,0.033935547,-0.045654297,0.11035156,-0.17285156,0.09716797,0.24316406,0.080078125,0.11767578,0.015991211,-0.296875,0.13574219,-0.034179688,-0.09667969,0.08691406,-0.1796875,0.107910156,0.01965332,0.06982422,-0.06298828,-0.31445312,0.17382812,-0.026733398,0.12158203,-0.035888672,-0.13476562,-0.25585938,0.009887695,0.029541016,0.15429688,-0.016967773,-0.0012893677,0.05517578,0.020019531,0.03857422,-0.11328125,-0.45898438,0.075683594,0.12792969,-0.092285156,0.041992188,-0.091796875,-0.09765625,0.045898438,-0.023803711,0.029052734,-0.015319824,0.071777344,-0.27148438,-0.07421875,-0.14160156,0.021362305,-0.1953125,0.16699219,0.20117188,-0.25390625,0.09033203,0.05810547,-0.032226562,0.012390137,-0.46679688,-0.23242188,0.038330078,-0.15820312,-0.29101562,0.075683594,0.060302734,0.09033203,-0.12890625,-0.013061523,0.024414062,-0.1640625,0.08642578,-0.05126953,-0.05078125,-0.09033203,-0.12451172,-0.07519531,-0.059814453,0.057861328,-0.28710938,-0.072265625,0.04663086,-0.071777344,-0.22265625,-0.01965332,0.0038757324,0.051757812,-0.042236328,0.051513672,-0.059326172,-0.03881836,-0.118652344,0.05517578,-0.095703125,0.16601562,0.13085938,0.080078125,-0.029174805,0.21777344,-0.31054688,0.12451172,0.019897461,0.034423828,-0.09423828,0.006378174,0.008728027,-0.046875,-0.08203125,0.06689453,0.1171875,0.035888672,-0.1640625,-0.0027008057,-0.03881836,-0.16601562,-0.16601562,0.09326172,-0.071777344,-0.17089844,-0.05517578,-0.06225586,0.05029297,-0.011962891,-0.056640625,-0.19726562,-0.111816406,-0.024291992,0.015563965,0.11425781,-0.0024414062,0.18261719,-0.068359375,0.13085938,0.042236328,-0.11425781,-0.05078125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.08203125,0.015625,0.03857422,0.009216309,-0.024658203,-0.0045166016,-0.07324219,0.14648438,-0.061523438,0.034179688,0.02331543,-0.0039978027,-0.11230469,-0.084472656,0.08300781,-0.12988281,-0.14648438,-0.06640625,-0.072753906,-0.100097656,0.10644531,0.16992188,-0.05908203,0.10107422,-0.12695312,-0.025756836,-0.24804688,0.21289062,-0.025512695,0.16210938,-0.091308594,-0.15234375,-0.17480469,-0.119628906,0.203125,-0.1171875,-0.18164062,0.23242188,0.15527344,0.14160156,-0.114746094,-0.122558594,-0.12011719,0.018798828,-0.1171875,-0.20996094,-0.17773438,-0.12890625,0.016967773,-0.31054688,0.03125,-0.23828125,-0.07128906,-0.053222656,-0.099121094,-0.19628906,-0.08544922,-0.16503906,-0.18359375,-0.20898438,-0.26367188,-0.29101562,-0.076171875,-0.19628906,-0.14550781,0.080078125,0.024291992,-0.46484375,-0.049072266,-0.28320312,-0.23828125,-0.38085938,0.011779785,-0.072753906,0.023803711,-0.33398438,-0.18457031,-0.17675781,0.06298828,-0.11328125,-0.057128906,-0.24707031,-0.01977539,0.07910156,0.0390625,-0.08642578,0.008605957,-0.07470703,-0.049560547,0.22558594,-0.050048828,0.08496094,0.024047852,-0.05444336,0.020385742,0.2265625,0.0703125,-0.087890625,0.16601562,-0.10595703,-0.07080078,-0.06982422,-0.006072998,-0.07373047,-0.024291992,-0.028198242,-0.0019073486,0.10546875,0.04736328,-0.10839844,0.009399414,0.05444336,0.10449219,0.00061798096,0.21582031,-0.14160156,-0.072265625,0.17382812,-0.09326172,-0.15917969,-0.016235352,0.13574219,0.28710938,-0.036865234,0.049072266,0.013183594,0.0046081543,0.033935547,-0.01171875,0.060791016,-0.053955078,-0.09765625,0.037353516,-0.092285156,0.00065612793,-0.328125,0.0018386841,-0.03564453,0.037353516,-0.100097656,-0.20214844,0.006439209,-0.028686523,-0.036865234,0.064941406,0.10986328,-0.26171875,-0.15527344,-0.21582031,-0.12792969,0.037109375,-0.13867188,-0.10839844,-0.17773438,-0.040283203,-0.11279297,-0.115234375,-0.328125,0.016845703,-0.27539062,-0.25,-0.10595703,-0.019165039,0.010925293,-0.20117188,0.0154418945,0.029418945,0.040283203,-0.030273438,0.03540039,-0.01361084,0.08642578,-0.08691406,-0.0064086914,0.061767578,0.10888672,0.06298828,-0.18554688,0.1796875,-0.041503906,0.14355469,-0.12060547,-0.107421875,-0.04663086,-0.100097656,0.061767578,0.12158203,0.16503906,-0.004211426,-0.028808594,-0.13378906,-0.11035156,0.028320312,0.20117188,-0.08935547,0.032226562,0.21582031,-0.07324219,-0.015319824,0.06591797,-0.16308594,-0.087890625,0.18847656,0.091308594,0.15039062,0.05859375,-0.11279297,-0.037353516,-0.1328125,0.075683594,-0.033691406,0.10449219,0.19628906,0.0078125,-0.010131836,-0.14160156,0.060546875,-0.02758789,0.111816406,0.06933594,0.04321289,-0.13183594,0.099609375,-0.095214844,0.020629883,-0.21386719,-0.08154297,0.060302734,-0.18945312,-0.16601562,-0.025878906,-0.36328125,0.03857422,-0.1796875,-0.028442383,-0.16699219,-0.068847656,-0.025390625,0.0030822754,-0.15722656,-0.13574219,-0.22363281,-0.07861328,-0.014587402,-0.123535156,0.03125,0.29101562,-0.24902344,0.05834961,-0.076171875,0.051757812,0.16015625,0.10888672,0.109375,-0.21289062,0.025512695,0.06225586,-0.122558594,0.022216797,0.064941406,-0.16894531,-0.100097656,-0.0063476562,-0.13769531,-0.03955078,0.12011719,0.072265625,-0.041503906,-0.09033203,-0.056396484,0.026977539,0.009765625,-0.05078125,0.095703125,-0.13867188,0.13476562,0.09423828,-0.09082031,0.035888672,-0.37304688,-0.084472656,-0.068359375,-0.052734375,0.087402344,0.014709473,-0.14746094,0.05053711,0.05078125,-0.03930664,0.087402344,-0.07519531,0.07470703,0.075683594,0.042236328,-0.036132812,-0.15136719,-0.10546875,0.080566406,0.14453125,0.04321289,-0.030151367,-0.13378906,-0.056396484,0.15429688,0.03515625,0.18945312,-0.010559082,0.100097656,-0.1328125,0.016601562,-0.1015625,0.03857422,-0.13476562,-0.00579834,0.15722656,0.10498047,-0.22363281,0.13085938,0.06982422,-0.13671875,-0.15039062,-0.21289062,-0.0625,-0.08154297,-0.107421875,-0.06347656,0.095703125,-0.15625,-0.005004883,-0.14453125,0.15917969,-0.07763672,0.06738281,0.0546875,-0.13183594,-0.076660156,-0.2890625,-0.092285156,-0.032470703,0.02319336,-0.19628906,-0.061767578,0.21289062,-0.052490234,-0.07128906,-0.18261719,0.10888672,-0.14941406,0.017578125,0.096191406,-0.16308594,0.0014419556,0.06640625,-0.21582031,-0.059326172,0.048095703,-0.19238281,-0.046875,0.08984375,-0.20214844,0.006164551,0.15820312,0.05053711,-0.068359375,0.033447266,0.11425781,0.11328125,0.028320312,0.16796875,-0.07763672,-0.13378906,0.11230469,-0.20605469,-0.103027344,0.095214844,0.053222656,0.046875,0.21191406,0.09716797,0.18847656,-0.055908203,-0.044677734,-0.04638672,0.17773438,0.104003906,-0.024047852,0.011657715,0.0703125,-0.0065307617,-0.017700195,0.14648438,0.026489258,-0.052246094,0.072265625,0.19238281,0.24511719,-0.18652344,-0.10644531,-0.076171875,0.046142578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.084472656,0.12402344,-0.07373047,-0.04296875,0.02368164,-0.07714844,-0.15039062,-0.012573242,-0.047851562,-0.03515625,0.115234375,-0.00048446655,-0.053710938,-0.18164062,0.047851562,-0.24609375,0.045166016,0.06738281,-0.09667969,-0.13867188,-0.037841797,-0.07861328,-0.010253906,0.038330078,0.09472656,0.071777344,-0.02331543,0.030761719,-0.06982422,0.07128906,0.035888672,-0.27734375,0.06591797,0.055908203,-0.18945312,0.09863281,-0.02722168,-0.15527344,-0.15039062,0.13378906,0.088378906,0.103027344,0.055419922,-0.087402344,-0.030029297,0.028442383,-0.026245117,-0.12011719,0.0005722046,-0.100097656,-0.21875,0.021850586,-0.071777344,-0.019897461,-0.13183594,-0.0037384033,0.046142578,-0.009887695,-0.14257812,-0.07470703,0.09423828,-0.0053710938,0.03881836,-0.11767578,0.12060547,-0.045654297,-0.20996094,0.014282227,0.12060547,-0.21191406,-0.20019531,0.1875,-0.13183594,0.1015625,0.030151367,-0.14648438,-0.03112793,0.12988281,0.12890625,0.021118164,-0.15722656,0.16503906,-0.088378906,-0.19628906,0.09716797,0.01373291,-0.19628906,-0.18261719,0.17382812,-0.004699707,-0.12890625,0.075683594,-0.022583008,0.05444336,-0.08300781,0.11669922,-0.06298828,0.10498047,-0.0007286072,-0.1796875,-0.021240234,-0.03857422,0.064453125,0.115722656,-0.060546875,0.0234375,0.1328125,-0.05834961,0.053466797,-0.06689453,-0.028320312,0.079589844,-0.03930664,-0.06591797,-0.04736328,0.060791016,0.13085938,-0.08935547,-0.025634766,0.16308594,-0.06640625,0.03100586,-0.029541016,-0.15136719,0.16894531,-0.09765625,-0.03491211,0.084472656,-0.032714844,-0.017089844,-0.041748047,0.053466797,0.08691406,0.003829956,-0.12597656,0.080078125,-0.026367188,-0.022827148,0.13476562,-0.14746094,0.028442383,0.10058594,0.059570312,0.07861328,-0.09423828,0.17578125,0.0058898926,0.07421875,0.123535156,-0.15625,-0.091308594,0.13378906,-0.0001296997,-0.010375977,-0.13085938,0.043945312,0.025390625,0.08203125,0.0126953125,0.21972656,-0.08935547,-0.051757812,-0.14160156,-0.12597656,0.056396484,-0.11035156,-0.14746094,-0.14550781,0.13867188,0.18847656,-0.016601562,-0.15625,0.032714844,-0.067871094,0.0016021729,0.14746094,-0.03173828,-0.21972656,-0.079589844,-0.095214844,0.050048828,-0.39648438,-0.14355469,0.05053711,-0.044677734,-0.096191406,-0.039794922,-0.16601562,-0.02734375,-0.24511719,-0.07080078,0.22558594,-0.13476562,-0.17382812,-0.014343262,-0.055664062,0.084472656,-0.05078125,0.088378906,0.083496094,-0.040283203,-0.015136719,-0.11425781,-0.12451172,0.033935547,0.001083374,-0.22558594,0.36523438,-0.045410156,-0.05883789,-0.08544922,0.0625,-0.0012130737,-0.12597656,-0.111328125,-0.10253906,0.046875,0.03466797,-0.14355469,-0.099121094,0.13378906,-0.08251953,-0.107421875,0.15917969,0.06640625,0.07421875,0.076660156,-0.103515625,0.07519531,-0.10107422,-0.103515625,-0.045410156,-0.123046875,0.09375,-0.057617188,-0.09765625,-0.024536133,-0.02355957,-0.05126953,0.12402344,-0.09814453,-0.21582031,0.044189453,-0.09277344,0.1484375,0.0034332275,0.026245117,-0.072265625,0.03466797,0.21679688,0.04248047,-0.08251953,-0.103027344,-0.05444336,0.07714844,-0.056884766,0.05859375,-0.12207031,-0.096191406,0.010986328,0.018188477,-0.029907227,0.08300781,-0.036865234,0.052978516,0.0011672974,-0.0859375,0.100097656,0.013916016,-0.078125,-0.016235352,0.029907227,0.07714844,-0.064941406,-0.02722168,-0.1171875,-0.0008430481,-0.16601562,-0.015197754,-0.038330078,-0.19628906,0.0016021729,0.004272461,0.05126953,0.064453125,-0.024658203,0.0099487305,0.037109375,-0.028198242,-0.21972656,-0.12695312,-0.21972656,0.072753906,-0.083496094,-0.18847656,-0.13476562,-0.063964844,0.026123047,-0.087402344,0.06933594,0.021972656,-0.18847656,-0.08203125,0.11669922,0.0036468506,-0.13867188,0.0036621094,-0.15234375,0.010864258,-0.19628906,-0.2578125,-0.07910156,-0.095703125,0.25976562,-0.13671875,-0.008300781,-0.123535156,-0.12597656,-0.011169434,-0.026855469,-0.07470703,-0.33398438,0.11035156,0.027954102,0.1171875,0.021362305,0.002822876,0.092285156,-0.0054016113,0.23925781,0.13183594,0.012512207,-0.18164062,0.08642578,0.2421875,0.17285156,0.041748047,-0.18164062,0.032714844,-0.05859375,-0.038330078,-0.078125,-0.12792969,0.049316406,-0.028808594,0.06640625,0.0032653809,0.038330078,0.08300781,-0.08251953,0.35546875,-0.019897461,-0.08251953,-0.1953125,0.004180908,-0.041748047,0.110839844,-0.33203125,-0.05126953,-0.08935547,0.015563965,0.08251953,-0.041259766,0.076171875,0.04663086,-0.08203125,0.059326172,-0.005706787,-0.19824219,-0.19238281,-0.17871094,-0.20214844,0.055664062,-0.29882812,0.0011062622,-0.10546875,-0.12158203,0.060058594,-0.13378906,-0.04321289,0.03125,0.00090026855,0.10546875,0.0546875,0.01977539,-0.20214844,-0.0126953125,-0.22070312,-0.041992188,-0.4296875,0.06347656,0.026855469,-0.21875,0.22265625,0.009521484,0.33398438,0.091308594,-0.040039062,0.041748047,-0.030151367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.014404297,0.15625,-0.040039062,-0.114746094,-0.017822266,0.032714844,-0.103027344,0.16308594,-0.047851562,0.051513672,0.018920898,-0.056152344,0.05126953,-0.05493164,-0.064453125,0.17675781,0.014404297,0.071777344,-0.013305664,-0.0071411133,-0.18359375,-0.061767578,-0.095214844,0.20019531,0.095703125,-0.044189453,-0.06738281,0.088378906,0.011230469,0.09033203,0.18945312,0.26171875,0.19824219,0.014404297,0.01159668,0.059326172,-0.083984375,0.1484375,-0.008300781,0.09033203,0.011108398,0.11035156,-0.027709961,0.083496094,-0.125,0.19140625,0.05883789,0.14550781,0.19921875,-0.14648438,-0.083496094,0.015380859,0.08203125,-0.12207031,-0.0063476562,0.22851562,-0.050048828,0.030151367,0.041748047,0.16113281,-0.018676758,0.107421875,-0.026611328,0.13378906,-0.13964844,0.036621094,-0.15917969,-0.016723633,-0.008544922,0.09472656,-0.15722656,0.08105469,0.030517578,0.12451172,0.115722656,0.12988281,-0.20703125,0.2734375,0.043945312,0.25390625,0.08544922,-0.00970459,0.0062561035,0.18164062,-0.091796875,-0.016723633,-0.004547119,0.1328125,0.17285156,0.080566406,-0.13964844,0.18261719,-0.014526367,-0.22851562,-0.12890625,0.06298828,0.013793945,-0.08935547,-0.052734375,0.096191406,0.01361084,0.03930664,-0.055419922,0.019165039,-0.07324219,-0.12695312,-0.1484375,0.12890625,-0.016113281,-0.19726562,0.12792969,0.111816406,0.01159668,-0.23632812,-0.021850586,0.08496094,-0.030883789,-0.03930664,-0.16894531,0.15625,0.05053711,-0.123046875,-0.07470703,0.06982422,0.059570312,0.025024414,0.02331543,-0.08496094,0.064941406,0.15429688,0.026855469,0.092285156,0.063964844,-0.20800781,-0.019897461,0.027954102,-0.11621094,-0.07421875,0.08496094,0.09082031,0.06982422,0.10498047,-0.1328125,0.056640625,-0.052001953,0.022949219,-0.056884766,-0.005432129,0.1953125,-0.14355469,-0.10839844,-0.092285156,-0.026123047,0.10058594,0.053466797,0.036132812,-0.15722656,0.34765625,0.029052734,0.16894531,0.0126953125,0.021118164,-0.007019043,-0.06591797,0.0039978027,-0.05810547,-0.056640625,0.17480469,0.15722656,0.047851562,-0.123535156,0.10595703,-0.026611328,-0.027954102,-0.025390625,0.103515625,0.068359375,-0.017089844,0.032226562,-0.0146484375,0.0390625,0.020263672,-0.083984375,0.00793457,-0.018066406,-0.092285156,0.01965332,-0.030029297,-0.057617188,0.060546875,-0.07910156,0.076171875,-0.01940918,-0.18554688,0.020629883,-0.09277344,0.05444336,0.055419922,-0.16699219,0.08935547,-0.04345703,-0.123535156,-0.13867188,0.09667969,0.039794922,-0.08251953,0.047607422,-0.027709961,0.040039062,0.087890625,0.03857422,0.035888672,-0.111816406,-0.21386719,-0.024780273,0.22558594,0.028808594,-0.009338379,0.0074157715,-0.08642578,0.06738281,0.067871094,0.16992188,0.03491211,-0.016479492,0.10449219,0.013305664,0.019042969,-0.067871094,-0.12060547,-0.051757812,0.17773438,-0.014709473,0.27539062,0.0036315918,0.038330078,-0.072265625,0.1484375,0.20703125,0.24609375,0.034179688,0.05834961,-0.072753906,0.009460449,0.12890625,-0.04248047,0.10644531,0.119140625,0.115722656,0.12597656,-0.25976562,0.07373047,-0.17480469,0.08544922,-0.041015625,-0.041503906,-0.034423828,-0.15234375,0.12011719,-0.05859375,-0.0703125,0.05053711,-0.064941406,-0.048828125,-0.033447266,-0.036865234,-0.12695312,0.19433594,-0.013366699,-0.076171875,0.11621094,-0.002960205,-0.064941406,0.12792969,0.052978516,0.022827148,0.111816406,0.053955078,0.0390625,0.055664062,0.11621094,-0.022338867,-0.029907227,0.03564453,0.13183594,-0.024291992,0.123535156,-0.013000488,0.075683594,0.06982422,0.05493164,0.079589844,0.13671875,0.11767578,-0.011962891,-0.16894531,-0.125,0.040283203,0.05517578,-0.17578125,-0.0051879883,0.14648438,0.08984375,-0.14355469,0.032714844,-0.04638672,0.060302734,0.030029297,-0.052978516,0.16699219,-0.030639648,0.009216309,-0.03881836,0.056884766,-0.091308594,-0.107421875,-0.052490234,0.23144531,0.110839844,0.037109375,0.04736328,-0.296875,-0.01977539,-0.011413574,-0.0625,-0.140625,0.10449219,-0.043701172,0.041748047,0.099609375,0.05859375,0.11230469,-0.234375,0.009399414,0.06933594,-0.10205078,0.07763672,-0.049316406,0.0043945312,0.04711914,-0.019897461,-0.095703125,0.07519531,-0.026123047,-0.09082031,0.13867188,0.018432617,0.030273438,-0.203125,-0.15820312,0.036376953,0.05053711,-0.030273438,-0.076171875,0.00075912476,0.036865234,-0.0004234314,-0.14746094,0.041259766,-0.19140625,0.019165039,-0.032470703,0.31445312,-0.03955078,-0.028442383,-0.1015625,0.013366699,0.0063476562,0.033447266,-0.03515625,-0.03515625,-0.038330078,-0.014953613,-0.28515625,0.016479492,-0.1953125,-0.14257812,0.06689453,0.0025634766,-0.016723633,-0.08935547,-0.01586914,0.061523438,-0.00970459,-0.016479492,-0.055419922,0.05053711,-0.02355957,-0.08544922,-0.10546875,-0.042236328,-0.08642578,-0.1171875,0.033203125,-0.042236328,0.09277344,-0.018310547,0.01373291,0.038330078,-0.036865234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.15527344,-0.1328125,-0.24511719,-0.19238281,-0.19140625,0.053955078,0.072753906,-0.19140625,0.0030670166,-0.20703125,-0.11376953,-0.12792969,-0.11767578,-0.06640625,0.1875,-0.15625,-0.16796875,0.140625,-0.20410156,-0.068847656,0.024536133,-0.23925781,0.0859375,0.17480469,-0.09863281,-0.25,0.02709961,-0.057861328,-0.037353516,-0.071777344,-0.13183594,-0.15527344,0.03881836,0.10644531,0.0021820068,-0.041992188,0.0008201599,0.022705078,0.1015625,-0.18457031,-0.099121094,-0.056884766,-0.031982422,-0.080566406,-0.009277344,-0.08251953,0.107421875,-0.024169922,0.031982422,-0.11425781,-0.059326172,0.084472656,-0.123535156,0.13183594,0.040771484,-0.29101562,0.059326172,-0.15234375,-0.040283203,0.036376953,-0.12890625,-0.13769531,-0.03540039,0.07763672,0.14550781,-0.07373047,0.048095703,-0.265625,-0.068847656,0.056152344,-0.15136719,0.0058288574,-0.07519531,-0.20410156,-0.02368164,0.0026855469,-0.14648438,-0.044677734,0.12451172,0.059570312,-0.02355957,-0.079589844,-0.080566406,0.040527344,0.07373047,0.020751953,-0.08691406,-0.026000977,-0.107421875,-0.072753906,0.12988281,-0.1015625,-0.033935547,-0.14746094,0.071777344,0.087890625,-0.23632812,0.23632812,0.022583008,-0.28710938,0.02355957,-0.05029297,-0.09765625,0.015136719,0.0095825195,-0.092285156,-0.122558594,-0.018432617,0.11328125,-0.007537842,-0.040039062,-0.029052734,0.044189453,-0.052001953,0.03466797,0.080078125,0.16601562,0.15820312,0.010131836,-0.16992188,0.0066223145,-0.0027008057,0.18457031,0.048339844,0.083496094,0.19433594,0.19335938,0.21386719,0.19042969,-0.15625,0.08642578,0.22558594,-0.056640625,0.203125,0.03564453,-0.06591797,0.010009766,-0.041748047,-0.12695312,-0.021972656,0.03466797,-0.115234375,-0.10253906,0.037109375,-0.027832031,-0.11621094,0.0025482178,-0.072753906,-0.10498047,0.15136719,0.051513672,0.053466797,-0.104003906,-0.083984375,-0.053222656,0.0014877319,0.0058898926,-0.06298828,-0.03540039,-0.057128906,-0.023071289,0.011962891,-0.043701172,-0.021850586,-0.018798828,-0.099609375,-0.19726562,-0.20214844,-0.044433594,-0.033691406,-0.06982422,0.096191406,0.0703125,-0.10107422,-0.075683594,0.05102539,-0.00680542,-0.07910156,0.0625,0.09375,0.016357422,0.2421875,0.107910156,0.060058594,-0.0146484375,-0.038085938,-0.076171875,0.1875,0.041259766,-0.3125,-0.026000977,0.041259766,0.06542969,-0.0029449463,0.09082031,-0.06347656,0.04321289,-0.014038086,0.25390625,0.10449219,-0.075683594,0.15917969,0.08154297,-0.016113281,0.06689453,0.08496094,0.01928711,-0.026611328,0.045166016,0.11230469,0.14941406,0.028442383,-0.008239746,-0.171875,0.053222656,-0.09814453,-0.07324219,0.0859375,0.022094727,0.019165039,0.16113281,-0.24707031,-0.123046875,-0.07421875,-0.13085938,0.08154297,-0.007751465,-0.22949219,-0.019042969,-0.16699219,-0.05883789,0.05444336,-0.079589844,-0.05102539,-0.12060547,0.04321289,-0.05126953,-0.051757812,-0.022705078,-0.27929688,-0.099121094,-0.012634277,0.09277344,-0.16699219,-0.14453125,0.072753906,-0.0050354004,-0.18066406,0.061523438,-0.0028381348,-0.07470703,-0.12158203,-0.10253906,-0.06933594,-0.13378906,-0.024902344,-0.0027923584,-0.07128906,0.020141602,-0.20898438,0.017089844,0.14648438,-0.028320312,-0.16015625,0.080566406,0.0054626465,0.0039978027,0.12597656,-0.1328125,-0.05102539,-0.16210938,0.10058594,-0.020996094,0.007171631,0.13574219,-0.091796875,0.087402344,-0.099609375,0.099609375,-0.007659912,0.057617188,-0.0134887695,-0.044433594,0.076171875,-0.022583008,-0.095214844,0.10498047,0.0023345947,0.12060547,-0.047607422,-0.03491211,-0.15039062,-0.110839844,-0.075683594,-0.07080078,-0.100097656,-0.0033416748,0.099121094,0.09033203,-0.0027008057,-0.032226562,-0.08984375,-0.006011963,0.0072631836,-0.30664062,0.07080078,0.010314941,-0.24414062,-0.25585938,-0.11425781,0.25390625,0.022583008,-0.0040893555,0.044677734,-0.010498047,0.0078125,-0.020751953,0.05810547,-0.07763672,-0.24609375,-0.072753906,-0.076171875,-0.07373047,-0.010986328,-0.3046875,0.12890625,0.0047912598,-0.07861328,-0.044433594,0.0625,0.13574219,0.10253906,-0.00010204315,-0.041503906,-0.22070312,0.023803711,0.1328125,0.079589844,-0.072753906,-0.088378906,-0.15917969,-0.15917969,-0.23828125,-0.05810547,-0.10546875,0.03564453,-0.13769531,0.0154418945,0.091796875,-0.19140625,-0.1796875,0.03881836,0.078125,0.12792969,0.100097656,0.09716797,-0.075683594,-0.083984375,0.018798828,0.000667572,-0.019165039,0.07421875,-0.009399414,0.087890625,-0.19238281,-0.0048217773,-0.06298828,0.0234375,-0.002380371,0.20800781,0.088378906,-0.055664062,-0.06542969,0.009033203,-0.06640625,-0.13574219,-0.06298828,0.11425781,-0.05834961,-0.11425781,-0.114746094,-0.12792969,0.11376953,-0.095214844,0.08251953,0.12695312,-0.011474609,-0.16113281,0.024902344,-0.1171875,0.009094238,-0.014526367,-0.071777344,-0.0012817383,-0.007446289,-0.016113281,-0.013122559,-0.015625,-0.095703125,0.12060547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.078125,-0.045898438,0.006866455,-0.083984375,-0.234375,0.22949219,0.03564453,0.030761719,-0.06542969,-0.119628906,0.11621094,-0.015991211,-0.11376953,0.18359375,0.24316406,0.028076172,-0.056884766,0.0070495605,-0.0027313232,0.048828125,0.05102539,0.08496094,-0.115722656,0.071777344,0.114746094,-0.123046875,0.032470703,-0.123535156,-0.052978516,-0.19628906,0.045410156,0.037109375,-0.024047852,0.13378906,-0.15039062,-0.084472656,-0.17382812,-0.041503906,0.21386719,0.25390625,0.13476562,0.012451172,0.09326172,-0.020996094,-0.13867188,0.20507812,0.10253906,-0.003189087,0.052978516,-0.11279297,-0.12988281,0.095703125,0.25976562,-0.11230469,0.02319336,-0.10253906,-0.043945312,-0.1171875,0.13574219,-0.095214844,0.018920898,0.09863281,-0.09375,-0.21679688,0.026977539,-0.18652344,-0.045654297,0.0087890625,0.234375,-0.07763672,-0.09472656,0.16601562,-0.037109375,0.17480469,0.33203125,-0.053955078,0.14257812,0.115722656,-0.08544922,-0.10498047,-0.026245117,0.037353516,-0.033203125,-0.19140625,-0.0038452148,0.107910156,0.033203125,0.14160156,0.083984375,-0.10449219,-0.16113281,-0.037597656,0.041259766,0.028320312,0.037353516,-0.028808594,-0.033691406,0.19335938,0.083496094,0.036132812,-0.005584717,-0.03466797,-0.043945312,-0.012512207,-0.0625,-0.26757812,-0.028442383,-0.017089844,0.048339844,-0.17578125,0.06298828,-0.051513672,-0.08251953,0.29882812,-0.103027344,0.025146484,0.076660156,0.07080078,0.12158203,0.1875,0.060546875,-0.103515625,0.22363281,-0.119140625,-0.020385742,0.041992188,-0.13867188,-0.0859375,0.03149414,0.20703125,-0.359375,0.063964844,0.15136719,-0.012084961,0.0041503906,0.15332031,-0.030395508,-0.07128906,0.020507812,-0.05126953,0.20605469,-0.032226562,0.123046875,-0.091308594,0.00592041,0.17675781,-0.07714844,0.011108398,0.20019531,-0.18457031,0.203125,0.111816406,0.04296875,0.080566406,-0.07080078,0.16992188,0.08886719,0.036376953,-0.046875,-0.2578125,-0.076171875,-0.07861328,-0.07128906,-0.06298828,0.044433594,0.01171875,0.10595703,0.2265625,-0.06640625,-0.088378906,-0.006652832,0.032226562,-0.07324219,-0.08642578,-0.060791016,-0.12207031,-0.10888672,-0.07519531,-0.11230469,-0.10986328,0.037353516,0.27734375,0.0055236816,0.07861328,0.10986328,-0.15722656,-0.030639648,0.068359375,-0.013366699,0.005004883,0.12890625,-0.088378906,-0.040527344,0.055664062,-0.13769531,-0.060058594,-0.096191406,0.05029297,-0.080078125,-0.11669922,-0.048828125,-0.08886719,0.04296875,-0.10839844,-0.046142578,-0.10986328,0.007019043,-0.12597656,-0.19433594,0.17382812,-0.032714844,-0.017211914,-0.08691406,0.03515625,-0.09033203,-0.13574219,0.14746094,-0.06982422,0.107421875,-0.052246094,-0.17089844,0.16210938,-0.051513672,-0.095703125,-0.19140625,-0.12695312,-0.12792969,-0.09277344,0.08496094,-0.03125,0.07861328,0.13769531,-0.012451172,-0.26953125,0.083984375,-0.110839844,-0.12158203,0.07910156,-0.1484375,-0.111328125,-0.030395508,0.038330078,0.021972656,-0.10595703,-0.15722656,0.018310547,0.048095703,0.11816406,-0.04272461,-0.12158203,-0.07861328,-0.0859375,-0.12451172,-0.0004310608,-0.027832031,0.079589844,0.0032653809,-0.018310547,-0.24804688,-0.14453125,-0.067871094,0.296875,-0.084472656,0.22949219,-0.08105469,-0.19238281,-0.04663086,0.09814453,-0.123535156,-0.0390625,-0.063964844,0.05053711,0.16699219,-0.22558594,-0.1484375,0.028076172,-0.10546875,0.12597656,-0.0026550293,-0.16015625,-0.10449219,-0.122558594,0.024414062,0.29492188,-0.0028076172,-0.13085938,0.0051574707,0.0033721924,-0.13378906,-0.12988281,-0.28515625,-0.11376953,-0.09814453,0.095703125,0.03112793,0.1484375,0.12060547,-0.11230469,0.071777344,-0.057617188,-0.24121094,0.08642578,-0.12597656,-0.0625,-0.15429688,-0.0041503906,-0.23535156,0.08154297,0.020874023,-0.09472656,0.09082031,0.015136719,0.109375,-0.092285156,-0.001045227,0.025756836,-0.24414062,0.2109375,0.09375,0.022338867,-0.20898438,-0.1171875,-0.111328125,-0.08984375,-0.12207031,0.15820312,0.11425781,0.027954102,0.014587402,-0.123535156,-0.07324219,0.16796875,-0.05419922,-0.08984375,-0.055664062,0.11767578,-0.16699219,-0.20800781,0.080566406,-0.041015625,-0.20507812,0.28320312,0.07373047,0.19433594,-0.106933594,-0.1484375,0.053955078,0.16113281,-0.05908203,-0.0051879883,0.111816406,0.12109375,-0.0064086914,0.10498047,-0.16015625,-0.04272461,-0.15332031,0.17285156,-0.11621094,0.0078125,-0.049804688,-0.12792969,-0.1796875,-0.015625,-0.16210938,-0.18164062,-0.028564453,0.19433594,0.016967773,-0.115722656,-0.15722656,-0.21582031,-0.052490234,0.08984375,-0.048339844,-0.24121094,0.036865234,-0.10546875,-0.027709961,-0.07714844,-0.12695312,-0.09423828,-0.044433594,0.11376953,-0.049804688,-0.078125,-0.19824219,0.010253906,-0.07519531,0.123046875,0.06591797,0.027954102,-0.07080078,-0.03857422,0.12988281,0.068359375,-0.09082031,-0.11376953,0.027709961,0.06689453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12890625,0.061767578,0.045898438,-0.083984375,0.11425781,0.02734375,-0.07080078,0.026367188,0.06542969,0.13378906,0.034423828,-0.21289062,0.056640625,0.083496094,-0.011108398,-0.028930664,0.057373047,-0.31054688,0.009033203,-0.015014648,0.07470703,-0.2109375,-0.28710938,0.057128906,0.0038604736,0.0859375,0.003753662,0.055664062,0.01977539,0.20410156,0.020996094,0.08984375,0.083984375,-0.07714844,0.028564453,-0.072265625,0.25,0.05493164,0.234375,0.03955078,0.056640625,-0.040039062,-0.27539062,-0.036865234,-0.048339844,0.2265625,-0.1640625,-0.048583984,-0.08203125,-0.15332031,0.07080078,0.1328125,0.029785156,-0.14550781,-0.026367188,-0.080078125,0.012268066,0.1015625,0.05883789,0.012756348,0.06225586,-0.041503906,0.049072266,0.12890625,-0.088378906,0.19433594,0.20800781,-0.08154297,0.111816406,0.0057678223,-0.20214844,0.03125,0.012817383,0.15625,-0.15039062,0.103027344,0.12207031,0.080566406,-0.27734375,0.11230469,0.28125,-0.05126953,0.10546875,-0.13085938,-0.007873535,-0.00035858154,-0.20117188,-0.10107422,-0.06542969,0.045166016,-0.14453125,0.015197754,-0.07714844,0.05029297,0.17871094,0.0703125,0.08154297,0.23730469,-0.140625,-0.01977539,0.10644531,-0.21386719,-0.106933594,-0.01965332,-0.036865234,-0.048828125,-0.03564453,0.05126953,-0.040039062,0.05517578,0.016723633,0.21875,0.07519531,0.114746094,-0.09716797,-0.14257812,0.057617188,-0.10205078,0.10888672,0.041503906,0.03466797,0.012268066,0.03564453,0.1328125,-0.14550781,0.024902344,-0.037841797,0.033203125,0.092285156,0.13867188,0.057373047,-0.044921875,0.013916016,-0.041015625,0.22558594,0.028930664,-0.072753906,-0.13574219,-0.04296875,0.044677734,-0.059814453,-0.019165039,-0.05053711,-0.035888672,-0.06542969,0.040283203,0.061523438,0.01928711,0.020385742,-0.1328125,0.007385254,0.057128906,-0.10253906,0.029418945,0.06689453,-0.20214844,0.052734375,0.12792969,-0.23046875,-0.0057678223,0.033935547,0.140625,0.12402344,-0.13964844,0.02319336,0.06591797,0.080078125,0.071777344,-0.03466797,0.052978516,-0.10498047,0.18554688,-0.044189453,0.037353516,0.13183594,0.017089844,0.119628906,0.13085938,-0.010803223,-0.01159668,0.07373047,0.03149414,-0.064941406,-0.028808594,0.07714844,-0.01171875,-0.0006980896,-0.08251953,-0.063964844,-0.07910156,0.016357422,0.203125,-0.17285156,-0.08251953,-0.02319336,0.0859375,-0.08691406,-0.296875,0.14550781,0.060302734,0.09765625,-0.080566406,0.088378906,-0.21972656,-0.057617188,-0.05834961,-0.027954102,0.04736328,0.15722656,-0.055419922,-0.036865234,-0.025024414,0.07763672,0.026733398,0.04638672,-0.019165039,0.026000977,-0.18652344,-0.008300781,-0.027832031,-0.0018081665,-0.022827148,0.15136719,0.08203125,-0.018920898,-0.09472656,-0.13964844,-0.022705078,0.28125,-0.20117188,0.17773438,0.049316406,0.030639648,-0.03955078,0.21484375,-0.27148438,0.048828125,0.12109375,-0.10449219,-0.09033203,-0.08544922,-0.08935547,0.12109375,-0.0703125,0.10595703,-0.16894531,-0.25390625,0.37304688,-0.13476562,0.038330078,0.018188477,-0.056884766,0.068847656,0.123535156,-0.068359375,-0.052978516,-0.0703125,-0.08105469,0.057373047,-0.12451172,-0.17480469,-0.046142578,0.13964844,-0.010498047,0.017700195,0.0021362305,0.0057678223,-0.16113281,0.008239746,0.07861328,-0.10546875,0.0014877319,-0.33398438,-0.06298828,-0.13867188,0.044921875,-0.05834961,0.20019531,-0.044921875,0.010192871,-0.038085938,-0.18066406,-0.037597656,-0.1796875,0.053710938,-0.11621094,-0.10107422,0.11035156,-0.12792969,-0.10058594,-0.05126953,-0.12988281,-0.041015625,0.26953125,-0.18554688,0.12158203,0.100097656,-0.06640625,0.0859375,-0.30078125,0.008239746,0.080566406,-0.021972656,0.09716797,-0.03955078,-0.18164062,-0.12988281,-0.016967773,0.068359375,0.33984375,0.11328125,0.07421875,0.04296875,-0.10595703,0.23242188,-0.18261719,0.13378906,0.099609375,-0.025512695,-0.044189453,-0.031982422,-0.057861328,0.028686523,-0.10205078,-0.125,-0.111328125,-0.06542969,0.234375,0.095703125,-0.17285156,0.10986328,0.014831543,0.038085938,-0.12402344,-0.013671875,0.0095825195,-0.26953125,-0.032226562,0.10595703,-0.3515625,0.063964844,-0.14355469,0.16503906,-0.024414062,0.014587402,-0.095214844,-0.059326172,-0.110839844,0.12207031,0.084472656,-0.011413574,-0.06738281,-0.32421875,-0.083984375,-0.26757812,0.0011367798,-0.19140625,0.0134887695,0.05517578,0.12451172,0.08105469,-0.084472656,0.12060547,-0.12792969,0.091308594,-0.16601562,0.23242188,-0.11621094,0.10449219,0.09277344,-0.0095825195,0.014709473,-0.022338867,0.40429688,0.13867188,-0.0026397705,0.03930664,-0.19824219,-0.03857422,-0.16015625,0.10107422,0.076171875,0.19238281,0.050048828,0.038330078,-0.048828125,-0.11621094,-0.0546875,-0.17871094,0.04711914,0.040771484,-0.13867188,-0.020385742,0.038330078,-0.036376953,-0.17773438,0.079589844,0.016601562,-0.115722656,-0.056884766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.060546875,0.14160156,0.061523438,0.032470703,-0.20214844,0.055908203,-0.09375,-0.08984375,-0.056884766,-0.0076904297,-0.09716797,0.021850586,-0.09423828,-0.18457031,0.055419922,-0.107421875,0.016601562,0.017822266,-0.10595703,0.12695312,-0.15625,-0.0031433105,0.056396484,-0.08935547,0.09375,-0.053710938,0.0030975342,0.07080078,0.045654297,0.0031433105,0.0059814453,0.041992188,0.07470703,0.037109375,0.083496094,0.07128906,0.034179688,0.037353516,0.01586914,-0.12695312,0.05908203,0.049316406,0.0057373047,0.037841797,-0.055908203,-0.13964844,0.10107422,-0.08886719,-0.08300781,0.0012435913,-0.11279297,0.041503906,-0.061523438,-0.092285156,0.03930664,0.26171875,-0.045410156,0.08984375,-0.16503906,-0.020629883,0.053710938,-0.0072021484,0.100097656,-0.03930664,-0.0064697266,0.11328125,-0.0095825195,-0.024291992,-0.0021209717,0.053710938,-0.10595703,-0.03515625,0.010192871,0.14550781,0.01586914,0.10107422,0.067871094,0.03491211,-0.0043640137,-0.171875,0.10205078,-0.020629883,-0.018188477,-0.08984375,-0.14648438,-0.072265625,-0.08496094,-0.027954102,-0.059814453,0.03125,-0.06591797,-0.14257812,-0.09667969,-0.024536133,0.022705078,0.027832031,0.026977539,-0.07373047,-0.1328125,0.0054626465,0.0001373291,0.010070801,-0.005279541,-0.16210938,0.068359375,-0.07470703,0.08886719,0.0703125,0.1328125,-0.041015625,-0.0390625,0.0056762695,-0.05078125,0.09667969,-0.03540039,-0.072265625,-0.14160156,0.0053100586,-0.0859375,-0.010559082,0.03564453,0.00793457,-0.048828125,0.099121094,0.14746094,-0.036376953,-0.09765625,-0.28320312,-0.13085938,0.09375,0.01965332,0.08251953,-0.0046691895,0.04272461,0.033935547,0.030151367,0.048095703,-0.072753906,0.040283203,0.123535156,0.061035156,0.09326172,-0.122558594,-0.19921875,-0.04345703,0.07128906,0.06982422,-0.18066406,-0.037841797,0.083496094,0.10546875,-0.009643555,-0.09326172,0.11816406,0.015380859,0.1484375,-0.079589844,-0.13183594,0.041015625,-0.095703125,0.059570312,0.087890625,-0.0035095215,-0.123535156,-0.104003906,-0.118652344,-0.008483887,-0.107421875,-0.0099487305,-0.03540039,0.0073242188,-0.10498047,-0.012329102,0.036865234,-0.092285156,-0.13671875,0.020141602,-0.07080078,-0.020385742,-0.122558594,0.092285156,-0.103515625,-0.072753906,-0.06347656,-0.10205078,-0.018188477,-0.07470703,-0.06591797,-0.0546875,-0.05908203,0.007293701,0.03149414,0.064941406,-0.04736328,-0.053222656,-0.22949219,0.006134033,0.123046875,0.0064086914,0.021484375,-0.046142578,-0.11035156,0.034179688,0.0234375,0.09423828,-0.021606445,-0.12792969,-0.018066406,0.001121521,0.068847656,-0.041748047,-0.15136719,-0.008544922,0.076171875,0.03491211,-0.12792969,0.080078125,-0.053222656,0.10644531,0.037353516,0.012329102,-0.0040893555,0.08154297,-0.013427734,-0.017822266,-0.026000977,0.000579834,-0.12792969,-0.17089844,0.007232666,-0.032958984,-0.17089844,-0.084472656,-0.0390625,-0.06689453,0.005218506,-0.11035156,0.002822876,-0.10595703,-0.080566406,0.068359375,-0.033203125,-0.20117188,0.008239746,0.011474609,-0.095214844,0.00014972687,-0.16601562,-0.03466797,-0.017578125,-0.045654297,-0.07373047,-0.040283203,-0.1171875,-0.068359375,-0.03100586,-0.14355469,-0.053466797,0.0027008057,-0.11035156,-0.12695312,0.009094238,-0.029541016,-0.03857422,-0.050048828,-0.15722656,-0.076660156,-0.06640625,0.048828125,0.036132812,-0.10498047,-0.018310547,-0.08544922,0.05078125,-0.018676758,-0.10449219,-0.059326172,0.15332031,0.05493164,-0.09716797,-0.005706787,-0.15722656,-0.111816406,-0.03491211,-0.1640625,-0.071777344,-0.07763672,-0.03515625,-0.14355469,0.008239746,0.033691406,-0.091308594,-0.042236328,-0.07861328,0.07128906,-0.0064086914,0.035888672,-0.15039062,0.0066223145,-0.043701172,-0.052246094,-0.1171875,0.092285156,0.0134887695,-0.118652344,0.0065612793,-0.16113281,-0.203125,0.087890625,-0.048828125,0.041992188,0.026367188,0.072265625,-0.099121094,-0.00592041,0.084472656,-0.024780273,0.016601562,-0.100097656,-0.04296875,-0.07861328,0.11425781,-0.06933594,-0.12109375,-0.049316406,0.012817383,-0.10058594,0.11669922,0.020996094,-0.025512695,-0.056396484,-0.024902344,0.008361816,-0.11230469,-0.07519531,0.032958984,-0.07763672,-0.014343262,-0.19433594,-0.19042969,-0.119140625,0.05834961,-0.06640625,-0.009460449,-0.015991211,-0.2109375,0.028320312,-0.095703125,-0.05493164,0.003036499,-0.20996094,-0.05834961,0.056396484,-0.03149414,-0.18164062,-0.019897461,0.08105469,0.0065307617,-0.018920898,-0.026489258,0.08544922,-0.125,0.044921875,-0.02368164,-0.1484375,0.040771484,-0.12988281,-0.11669922,0.03857422,-0.007659912,-0.21875,-0.21289062,-0.0069274902,-0.087402344,-0.11425781,0.0032043457,0.07470703,-0.15527344,-0.09277344,-0.026733398,-0.0625,0.060058594,-0.1328125,-0.048583984,-0.014282227,-0.00793457,-0.05810547,-0.029296875,0.044433594,0.10546875,0.09082031,-0.234375,0.08935547,-0.11328125,-0.060302734,-0.08886719,-0.075683594,-0.14746094,-0.087890625,0.046142578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.044677734,0.053955078,-0.46679688,-0.038085938,-0.1171875,-0.055908203,0.026733398,-0.41992188,0.07324219,-0.006866455,0.020751953,-0.064453125,0.053222656,-0.012939453,-0.053710938,-0.29101562,0.057617188,-0.0390625,-0.12207031,0.017822266,0.008361816,-0.20605469,0.15820312,-0.1328125,-0.11425781,-0.026245117,0.18945312,0.0043029785,0.053955078,0.0016784668,-0.08544922,-0.06738281,-0.040527344,-0.05102539,-0.11279297,0.1171875,-0.08496094,0.12207031,0.087890625,-0.056640625,-0.052246094,-0.007446289,0.15039062,0.09863281,-0.024414062,0.14648438,-0.16992188,-0.029785156,-0.016601562,-0.15332031,-0.11279297,-0.025024414,-0.08203125,-0.16992188,-0.0859375,-0.023071289,0.020141602,-0.025756836,-0.013000488,-0.095214844,-0.027709961,0.071777344,-0.07910156,0.083984375,0.03149414,-0.15820312,-0.037353516,-0.103515625,-0.07128906,0.16015625,0.036132812,0.040283203,0.10498047,0.0009536743,-0.12402344,-0.20703125,-0.13378906,-0.07128906,0.08105469,-0.16113281,0.10546875,-0.03149414,-0.23339844,0.013977051,0.04345703,-0.23339844,0.01977539,-0.18457031,-0.05419922,-0.05834961,-0.26953125,0.05859375,0.04711914,-0.006713867,-0.12011719,-0.25390625,0.04736328,-0.22363281,-0.09667969,0.0032043457,0.068847656,-0.12695312,0.11279297,-0.18457031,-0.10546875,-0.072753906,-0.07470703,-0.104003906,0.06347656,-0.08886719,-0.07324219,0.17675781,0.106933594,-0.22363281,-0.080078125,0.12890625,0.041748047,0.047851562,0.028686523,-0.14941406,-0.087890625,0.004211426,0.111328125,0.024536133,-0.010070801,0.33203125,0.009643555,0.19921875,0.10986328,-0.15136719,-0.16015625,0.017211914,-0.2578125,-0.16015625,0.08886719,0.12060547,0.029296875,0.014770508,0.09472656,-0.20410156,-0.107421875,0.037353516,-0.060546875,-0.08496094,0.07714844,-0.045166016,-0.014587402,-0.118652344,-0.08984375,-0.007659912,0.07421875,0.08984375,-0.0039978027,-0.111328125,-0.08886719,-0.1328125,-0.140625,-0.03173828,-0.026123047,-0.0036010742,-0.052490234,-0.13769531,-0.063964844,0.13574219,-0.104003906,-0.25585938,-0.026855469,-0.063964844,-0.07910156,-0.20800781,0.10644531,-0.13085938,0.09375,-0.010803223,0.10107422,-0.057128906,0.05053711,-0.12109375,0.05908203,0.12451172,0.033691406,-0.068359375,0.12597656,0.036621094,0.106933594,-0.071777344,0.08642578,-0.032226562,-0.056640625,-0.05493164,0.02368164,0.20703125,0.014770508,-0.20703125,0.14550781,-0.099609375,-0.012451172,-0.18164062,-0.03466797,-0.076660156,0.08935547,0.0625,0.037841797,0.072265625,-0.045166016,0.12988281,-0.16796875,-0.0045776367,0.08496094,-0.044677734,0.0859375,-0.13085938,-0.23339844,0.16308594,-0.265625,-0.0703125,0.0546875,0.096191406,0.09667969,0.03491211,0.052978516,0.08300781,0.04345703,0.13867188,-0.0390625,0.13476562,-0.0099487305,-0.140625,-0.140625,-0.0390625,-0.12109375,0.12060547,-0.07714844,0.023803711,-0.19042969,0.064941406,-0.13769531,0.0030975342,0.018432617,-0.24316406,-0.0859375,0.064453125,0.115234375,0.029418945,0.09326172,0.02722168,-0.14550781,-0.16308594,0.03564453,-0.111816406,0.390625,-0.13574219,0.15429688,0.14648438,-0.036865234,-0.028442383,-0.060058594,-0.033935547,0.19921875,0.045898438,0.10888672,0.13769531,0.083496094,-0.15625,-0.02722168,0.13769531,0.025634766,0.053710938,-0.037841797,-0.052978516,-0.041992188,0.03491211,0.2109375,0.19042969,0.25195312,-0.078125,-0.05102539,0.036621094,0.024169922,-0.053955078,0.09667969,0.107421875,-0.015319824,0.057617188,0.020751953,-0.203125,-0.051513672,-0.041503906,-0.040771484,0.16699219,0.18554688,-0.099609375,0.02319336,0.03930664,0.22558594,-0.024291992,0.0014572144,0.057861328,0.026977539,-0.032226562,0.083984375,-0.14746094,0.04638672,-0.111328125,0.11621094,-0.053466797,0.16503906,-0.072265625,0.13085938,-0.25976562,-0.1484375,0.13574219,-0.051513672,-0.21386719,-0.025634766,0.22851562,-0.083496094,-0.15625,-0.016479492,-0.12109375,-0.02331543,0.09667969,-0.26953125,-0.123535156,-0.20117188,-0.032958984,-0.03930664,-0.023925781,-0.060791016,0.10498047,0.05883789,0.020629883,0.095703125,0.07763672,-0.18847656,-0.16894531,-0.02734375,-0.00982666,-0.14648438,-0.1484375,-0.008972168,-0.12792969,0.09033203,-0.27929688,-0.017333984,0.087890625,0.018432617,-0.20898438,0.111816406,0.14648438,-0.23632812,0.061767578,-0.029418945,-0.09716797,0.07470703,-0.00680542,-0.09423828,-0.030761719,-0.0033874512,-0.29492188,-0.0703125,0.103027344,0.10595703,-0.123046875,-0.08300781,-0.053466797,-0.032958984,0.05810547,0.23144531,-0.021850586,-0.022583008,-0.059814453,0.05493164,0.13574219,0.06738281,-0.12988281,0.057128906,0.18261719,0.087402344,0.11230469,-0.14550781,-0.103027344,0.0146484375,0.12792969,0.30664062,0.31054688,-0.12060547,-0.09326172,-0.032226562,0.27929688,-0.23925781,-0.03149414,-0.072753906,0.18066406,-0.010498047,0.2109375,-0.36328125,-0.24316406,-0.1328125,0.020751953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12402344,-0.16992188,-0.083984375,0.021728516,0.18359375,0.12695312,-0.114746094,0.052490234,-0.044677734,0.17578125,0.16113281,-0.20410156,0.011962891,0.103027344,-0.00793457,-0.040283203,0.06225586,-0.087402344,0.047851562,-0.18847656,-0.052246094,0.1953125,0.22363281,-0.080566406,-0.040527344,0.08984375,0.075683594,0.15820312,-0.11328125,-0.037109375,-0.024658203,-0.1796875,-0.095214844,0.025024414,0.06933594,-0.10888672,-0.06225586,-0.055664062,0.16601562,-0.02319336,-0.0053710938,0.0859375,-0.049560547,-0.12890625,0.048828125,-0.2265625,0.008728027,-0.012329102,-0.072265625,-0.15527344,-0.05908203,-0.17089844,-9.2983246e-05,0.18359375,0.07128906,-0.05102539,-0.029174805,-0.028930664,-0.026733398,-0.16894531,0.026123047,-0.203125,0.10058594,-0.044433594,0.08984375,-0.28515625,0.010375977,-0.16992188,-0.007293701,-0.07519531,0.09667969,-0.2265625,-0.032958984,-0.002456665,-0.12890625,-0.24511719,0.060546875,-0.00982666,-0.06933594,-0.20898438,-0.028442383,-0.15722656,-0.037841797,-0.08300781,-0.09667969,0.12158203,-0.24121094,0.08300781,0.10253906,-0.0037078857,-0.1484375,-0.06591797,-0.06982422,0.044433594,0.053710938,0.14550781,0.002166748,-0.1875,0.12695312,-0.025756836,0.017333984,-0.040527344,-0.020751953,-0.014404297,0.06201172,-0.008422852,0.017944336,-0.17871094,-0.06542969,0.055664062,-0.038330078,0.055419922,-0.25195312,-0.056884766,0.16015625,0.16015625,0.009155273,0.047851562,-0.06225586,0.0073242188,-0.107910156,-0.16210938,0.125,-0.09033203,-0.19335938,-0.068359375,0.05493164,-0.23242188,0.095214844,-0.025878906,0.15234375,-0.16601562,0.029418945,0.140625,-0.0234375,0.016357422,0.041503906,-0.08935547,0.010437012,0.013122559,0.103515625,-0.064941406,-0.052246094,-0.33984375,0.015075684,-0.03564453,-0.107421875,-0.052001953,-0.14941406,-0.22753906,-0.063964844,0.11328125,-0.07910156,-0.13183594,-0.11376953,-0.22949219,-0.008728027,-0.11425781,-0.110839844,0.05834961,0.012268066,-0.012512207,0.03564453,-0.33007812,-0.07910156,0.08544922,-0.16699219,0.080078125,0.014770508,-0.13183594,-0.11425781,0.056640625,0.044433594,0.048583984,-0.21972656,-0.18359375,-0.02746582,0.016967773,0.05908203,0.12207031,-0.0859375,0.06591797,0.15820312,-0.31640625,0.026977539,-0.016113281,-0.16210938,0.19628906,-0.0067749023,0.17285156,-0.10546875,-0.01977539,-0.079589844,0.0703125,0.1328125,0.06640625,0.08984375,-0.06982422,-0.109375,0.034423828,0.13769531,-0.0068969727,0.12988281,0.21777344,-0.08642578,0.044921875,-0.09472656,0.13476562,0.08105469,-0.17773438,0.16308594,-0.04321289,-0.09277344,-0.02319336,0.05444336,0.012817383,0.060058594,-0.115722656,0.21386719,-0.064453125,-0.04321289,-0.32617188,0.06982422,-0.20019531,-0.11230469,0.11425781,-0.09814453,-0.26757812,0.029174805,-0.049316406,0.06298828,0.020263672,-0.068359375,-0.06738281,-0.05029297,-0.14941406,-0.045654297,-0.083984375,0.087402344,-0.0005455017,-0.028442383,0.14941406,0.08935547,-0.044433594,0.076171875,0.27734375,-0.055664062,0.20214844,-0.025512695,0.08203125,-0.21191406,-0.029541016,-0.030639648,0.10205078,0.018432617,-0.022705078,-0.05444336,-0.08203125,0.19824219,-0.118652344,0.088378906,0.2109375,-0.39453125,-0.10888672,-0.053710938,-0.13867188,0.029418945,0.23828125,0.071777344,0.099609375,-0.15136719,0.0054016113,-0.04296875,0.0022583008,0.07373047,-0.104003906,0.07714844,-0.05883789,0.006591797,0.025756836,-0.007537842,-0.171875,0.0005607605,-0.09082031,0.07519531,-0.007293701,-0.07763672,-0.25,-0.03881836,0.025756836,0.05029297,0.01184082,0.04736328,-0.023071289,-0.09082031,-0.15429688,-0.052001953,-0.064941406,0.006500244,-0.18554688,-0.099609375,-0.040039062,-0.10253906,-0.15332031,0.049560547,-0.1015625,0.20996094,0.06225586,-0.12207031,0.14746094,0.024780273,-0.15527344,0.111328125,-0.09472656,0.012634277,-0.18359375,-0.041503906,-0.042236328,-0.111816406,-0.0859375,0.076660156,0.22167969,-0.033203125,0.07519531,0.072753906,0.09814453,-0.07861328,0.296875,0.0859375,0.12988281,-0.16308594,0.07128906,0.08642578,0.22070312,0.005706787,0.029296875,0.0859375,-0.022705078,-0.053955078,-0.18359375,0.0029296875,-0.049072266,0.029785156,-0.12792969,-0.072265625,-0.1328125,-0.016601562,-0.19726562,-0.021972656,0.27734375,0.014160156,0.12011719,-0.07080078,0.09667969,0.047851562,-0.21386719,0.1640625,-0.060791016,0.2421875,-0.104003906,0.10839844,-0.09472656,0.28125,-0.18457031,0.22363281,0.13378906,0.05493164,0.14355469,-0.03100586,0.055908203,0.16601562,-0.28320312,-0.033203125,-0.15234375,-0.234375,-0.30273438,0.008972168,-0.087402344,0.041992188,0.0703125,0.01965332,-0.03515625,-0.13964844,0.011413574,0.0013427734,0.057128906,0.051513672,-0.079589844,-0.26171875,0.10058594,0.20898438,-0.14355469,-0.015136719,0.04663086,-0.0060424805,-0.06640625,-0.04345703,-0.20410156,0.02758789,0.049072266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.20019531,-0.265625,-0.34765625,-0.026733398,-0.13085938,0.16113281,-0.06640625,-0.12695312,-0.16308594,-0.31640625,-0.29492188,-0.34375,-0.2578125,-0.15136719,0.056640625,-0.20410156,-0.031982422,-0.12158203,-0.25,-0.18359375,-0.17578125,0.11230469,-0.21484375,-0.26953125,-0.14453125,-0.26367188,-0.0027313232,-0.1953125,-0.12695312,-0.08544922,0.029907227,-0.00592041,0.10595703,-0.110839844,-0.20507812,-0.28515625,-0.15722656,-0.049072266,-0.046875,0.005706787,-0.087890625,-0.30664062,-0.13867188,-0.18164062,-0.203125,-0.08300781,0.083496094,-0.068847656,-0.13085938,-0.3046875,-0.3359375,-0.20898438,-0.044189453,-0.053955078,-0.028564453,0.07519531,-0.03515625,-0.25976562,-0.24511719,-0.084472656,-0.12451172,-0.13964844,-0.036132812,-0.20703125,-0.16894531,-0.050048828,-0.25195312,-0.3828125,0.04663086,-0.005126953,-0.08251953,-0.12988281,0.044433594,-0.47460938,0.11816406,-0.29296875,-0.10449219,-0.1484375,-0.0099487305,-0.13964844,0.18652344,-0.27734375,-0.25390625,0.048339844,0.08105469,0.080078125,-0.14257812,0.18164062,-0.076171875,-0.24414062,-0.17480469,-0.16308594,-0.057617188,-0.091796875,-0.140625,0.05859375,-0.06347656,-0.05834961,-0.13183594,-0.04663086,-0.048828125,-0.05517578,-0.08935547,-0.0040283203,-0.018798828,-0.29296875,0.20800781,0.009155273,-0.037353516,-0.04321289,-0.22070312,-0.076171875,-0.14941406,-0.026123047,-0.16699219,0.035888672,0.05517578,0.3046875,0.045654297,0.2421875,0.057373047,-0.15136719,0.15039062,-0.08984375,0.20996094,-0.0025024414,-0.025146484,-0.033203125,0.07470703,-0.029296875,0.03564453,-0.15527344,0.13378906,-0.029296875,0.123535156,0.08935547,-0.0061950684,-0.125,-0.056884766,0.12158203,0.06225586,0.0076904297,0.07519531,-0.037109375,0.08105469,0.03173828,-0.1484375,0.12109375,0.15722656,0.08984375,-0.13867188,0.0546875,-0.0026397705,-0.22167969,0.011108398,0.067871094,0.09472656,-0.043945312,0.12890625,0.0234375,-0.10888672,-0.17285156,-0.122558594,0.106933594,0.15917969,0.12890625,0.08691406,0.012084961,0.04345703,-0.002380371,-0.22167969,0.09667969,-0.016357422,0.06640625,0.08154297,0.10253906,0.07324219,-0.010070801,-0.12890625,0.033691406,0.030151367,0.25585938,-0.002090454,0.06201172,-0.079589844,-0.0024719238,0.05859375,-0.140625,0.096191406,0.0028686523,-0.04711914,0.09375,-0.0625,-0.16308594,0.22460938,0.10644531,-0.0036010742,0.08935547,0.048339844,0.2734375,0.019897461,-0.19140625,0.1953125,0.13671875,0.047851562,-0.020019531,0.125,0.060546875,-0.083496094,-0.064941406,-0.10449219,-0.10107422,-0.01977539,0.0138549805,0.059326172,0.071777344,0.13085938,-0.045898438,0.012573242,-0.15332031,-0.05126953,0.08154297,0.15039062,-0.013061523,-0.09814453,0.15136719,0.021484375,0.12597656,-0.087402344,0.026611328,-0.10107422,-0.12402344,0.043701172,0.015075684,0.07861328,0.021850586,0.044433594,0.06933594,-0.083984375,0.091796875,0.008666992,0.026855469,0.035888672,-0.11621094,0.10546875,0.13476562,0.21777344,0.14941406,0.053222656,0.21484375,0.0076293945,-0.056640625,0.17089844,-0.0025634766,0.01574707,-0.033691406,-0.13378906,0.17382812,0.04663086,-0.14160156,0.007537842,0.016723633,0.09326172,-0.16699219,0.025024414,0.03491211,0.25390625,0.061279297,0.10595703,0.09277344,-0.072753906,-0.0017623901,0.029663086,0.095703125,0.12597656,-0.048095703,-0.076660156,-0.07470703,0.075683594,0.024169922,-0.08886719,0.076171875,-0.020507812,0.12695312,-0.006713867,-0.05029297,0.10888672,-0.109375,-0.100097656,-0.095703125,-0.044921875,-0.059326172,0.09082031,0.079589844,0.048583984,-0.016479492,-0.08496094,0.10546875,0.26171875,-0.051757812,0.1328125,-0.0032348633,0.008239746,0.18066406,-0.13183594,-0.021850586,-0.020019531,0.115234375,0.0703125,-0.0107421875,0.095703125,0.15625,0.114746094,0.10546875,-0.03149414,-0.008972168,0.018188477,0.053710938,-0.05053711,0.049560547,-0.055664062,0.1484375,-0.07714844,0.046875,0.055419922,0.01361084,-0.09863281,-0.016601562,0.026611328,0.06982422,-0.09082031,-0.12695312,0.067871094,-0.296875,-0.14746094,-0.0075683594,-0.25,-0.05834961,-0.030761719,-0.078125,-0.076660156,-0.026367188,-0.13085938,-0.13085938,0.024658203,-0.099121094,-0.11376953,-0.13964844,0.12988281,0.08105469,-0.11767578,-0.2109375,-0.05834961,0.026367188,0.122558594,-0.015991211,0.19433594,-0.328125,-0.06347656,-0.17285156,0.04321289,0.12792969,-0.061035156,-0.049804688,0.05493164,0.088378906,-0.18457031,-0.033935547,0.036132812,-0.019165039,0.13183594,0.07128906,-0.092285156,0.13378906,0.11328125,0.18457031,-0.12695312,0.17382812,-0.071777344,-0.057373047,0.076660156,0.064941406,-0.057373047,-0.010681152,-0.11279297,-0.20410156,0.08203125,-0.03466797,-0.08300781,-0.123535156,0.23144531,0.123046875,-0.08203125,-0.0099487305,0.028564453,0.111816406,0.055419922,0.103027344,-0.19335938,0.08154297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.15136719,0.12451172,-0.15332031,-0.025756836,-0.3203125,0.12207031,-0.13671875,-0.0008430481,0.05053711,-0.06982422,0.13574219,0.14453125,-0.008911133,-0.11376953,-0.07470703,-0.27148438,-0.025878906,-0.012145996,-0.28710938,0.20507812,-0.45117188,0.24902344,-0.011230469,-0.04638672,-0.011047363,-0.27539062,-0.039794922,0.067871094,0.3046875,0.16113281,-0.05517578,-0.06640625,-0.075683594,-0.06591797,0.023071289,0.00970459,-0.15039062,0.033447266,0.09033203,0.006072998,0.043701172,-0.19726562,-0.10253906,-0.10058594,-0.20214844,-0.014831543,0.10986328,0.12597656,-0.13671875,0.11669922,-0.296875,0.05444336,-0.037109375,0.37890625,-0.15625,-0.00015449524,0.068847656,0.067871094,-0.17675781,-0.0234375,-0.21679688,-0.19238281,0.052490234,0.07421875,0.18847656,0.17773438,-0.13183594,-0.16601562,-0.17578125,0.30273438,0.060791016,-0.18359375,-0.057617188,-0.29492188,-0.09765625,-0.011047363,-0.07910156,-0.203125,-0.06347656,0.056152344,0.12890625,-0.20214844,-0.114746094,0.04638672,-0.24316406,0.17480469,0.05053711,0.08935547,0.03540039,-0.096191406,-0.26757812,0.030883789,-0.046142578,-0.011657715,-0.11621094,-0.016479492,0.022460938,-0.1484375,-0.328125,0.013000488,-0.04272461,-0.02319336,0.037109375,0.12597656,0.043945312,-0.20117188,0.047607422,-0.10058594,0.048583984,0.016235352,-0.076171875,-0.08935547,-0.20019531,-0.110839844,-0.0035247803,0.1796875,-0.12597656,0.13964844,-0.16894531,0.0066833496,-0.02734375,-0.119628906,-0.115234375,-0.042236328,0.032714844,0.060302734,-0.05859375,-0.0020599365,-0.010864258,0.083496094,0.0063476562,-0.18945312,0.016967773,0.04248047,0.021118164,-0.05444336,0.015991211,-0.07080078,-0.029418945,-0.103515625,-0.05883789,-0.095214844,0.1953125,0.048095703,-0.15332031,0.11035156,-0.21582031,0.08886719,-0.072265625,0.22363281,0.014282227,-0.07470703,-0.12060547,-0.265625,-0.22265625,0.037841797,-0.115234375,-0.21289062,0.13378906,0.22265625,0.026855469,-0.014038086,-0.057617188,-0.095214844,0.09082031,-0.09423828,-0.115722656,0.12402344,0.06298828,0.033447266,0.03125,0.034423828,0.12451172,0.051513672,0.008911133,-0.12792969,-0.031982422,-0.1328125,-0.19921875,0.09375,-0.26367188,-0.13574219,-0.030395508,0.10888672,0.0011672974,-0.16894531,-0.091308594,-0.06640625,-0.076660156,-0.02368164,-0.20019531,-0.053222656,-0.37890625,-0.0859375,-0.04296875,0.005554199,-0.095214844,-0.05102539,-0.10205078,-0.1796875,0.08105469,-0.10107422,0.080078125,-0.110839844,-0.040039062,-0.15332031,-0.20898438,-0.07910156,-0.16601562,0.08886719,-0.083984375,-0.23925781,-0.3046875,-0.19042969,-0.057861328,-0.24707031,-0.033203125,-0.15917969,-0.15039062,-0.013916016,0.03112793,-0.08105469,-0.024169922,0.078125,-0.27148438,0.0003681183,-0.15332031,0.2578125,-0.09033203,0.12890625,-0.24316406,-0.06982422,-0.07128906,0.050048828,0.13769531,0.041503906,-0.0036773682,0.1484375,0.02746582,0.05078125,0.17773438,0.15332031,-0.22558594,-0.036621094,0.12109375,0.06542969,0.0016021729,-0.023803711,0.03955078,0.064453125,0.05419922,0.0018081665,0.16503906,0.091796875,0.122558594,-0.12988281,0.07128906,-0.15820312,-0.29101562,-0.021606445,0.110839844,-0.017211914,0.071777344,-0.08886719,0.115722656,0.068847656,0.04736328,0.075683594,-0.026977539,-0.14648438,0.03149414,-0.1796875,-0.31445312,-0.02319336,0.018432617,-0.03955078,0.16601562,-0.09472656,0.0063476562,0.044677734,-0.008300781,-0.016601562,-0.08203125,-0.05834961,-0.09863281,-0.17285156,0.10107422,-0.15917969,-0.21386719,-0.046875,-0.09863281,0.010681152,0.06201172,-0.11376953,-0.100097656,0.095214844,0.040283203,-0.118652344,0.11816406,0.037353516,0.011230469,-0.07470703,0.15527344,-0.06933594,0.06689453,-0.16015625,-0.0703125,0.17773438,-0.057617188,-0.017578125,-0.041992188,0.21972656,-0.034423828,-0.028808594,0.05102539,0.12207031,-0.25390625,0.12158203,0.08203125,0.09765625,0.05053711,0.17480469,-0.21972656,0.092285156,0.014221191,-0.13085938,0.063964844,0.1328125,-0.07128906,0.13085938,-0.09375,-0.091308594,-0.046875,-0.06738281,-0.02734375,0.09082031,8.6307526e-05,-0.16210938,0.0011062622,0.27929688,-0.07861328,-0.10205078,0.12792969,-0.21777344,-0.107421875,0.02722168,0.041992188,-0.13085938,0.14550781,0.14355469,0.02722168,0.09326172,-0.16894531,-0.10449219,0.068847656,0.018188477,0.057617188,-0.114746094,-0.0115356445,-0.07080078,0.05419922,0.060302734,0.060791016,0.096191406,-0.08984375,0.15625,-0.08886719,0.0046691895,0.00062179565,-0.00018405914,-0.084472656,-0.029541016,-0.08154297,-0.17871094,-0.13378906,0.16992188,-0.07519531,-0.0027770996,0.20898438,-0.0071411133,-0.025878906,0.041992188,0.07861328,-0.0015869141,0.12158203,0.036132812,0.1953125,0.171875,-0.14355469,0.0126953125,-0.35351562,-0.048095703,-0.013427734,0.0066833496,-0.30859375,0.1171875,-0.056152344,0.07714844,0.1015625,-0.171875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.12402344,-0.359375,0.07714844,0.05078125,0.084472656,0.27539062,-0.26757812,-0.06933594,-0.19726562,-0.1953125,-0.1875,0.027709961,0.099121094,0.23535156,-0.104003906,0.06640625,0.016601562,-0.1796875,0.088378906,0.029418945,-0.02331543,0.06347656,0.06640625,0.045410156,-0.08154297,0.11669922,0.16992188,0.13769531,-0.10986328,-0.06982422,-0.10839844,-0.022705078,0.13867188,0.16113281,0.076660156,0.046142578,0.14746094,0.024780273,0.041992188,-0.07373047,-0.011962891,-0.013000488,0.26171875,0.059814453,-0.008239746,0.028686523,0.016479492,0.11230469,0.009216309,0.038085938,-0.123046875,0.16308594,-0.022460938,-0.19335938,0.14160156,-0.08154297,0.032226562,-0.037597656,-0.053955078,-0.21679688,0.072753906,0.0015945435,-0.19824219,-0.063964844,-0.18945312,-0.26953125,-0.07080078,-0.057373047,-0.12695312,-0.037353516,0.041015625,-0.17773438,-0.010314941,-0.2734375,-0.16699219,-0.25585938,0.11767578,-0.021362305,-0.26171875,0.031982422,0.12695312,-0.34179688,0.020507812,-0.05419922,-0.018188477,-0.12890625,-0.10449219,-0.11376953,-0.119140625,-0.1484375,0.110839844,0.027832031,0.17578125,0.11767578,0.056396484,0.064941406,0.0030212402,0.0625,-0.055908203,-0.14355469,-0.038085938,-0.025878906,0.016601562,0.03564453,0.06298828,0.21582031,-0.01928711,0.25,0.0064697266,0.25390625,0.05517578,0.006439209,-0.045898438,0.03125,0.234375,0.14355469,-0.080566406,0.045654297,-0.045410156,-0.039794922,0.07763672,0.29296875,-0.12109375,0.040771484,-0.043945312,-0.02331543,0.041992188,-0.03515625,0.029296875,-0.13574219,-0.099121094,0.13085938,0.059570312,-0.044433594,0.036865234,-0.006958008,-0.016357422,0.05078125,-0.07080078,-0.0048217773,0.14453125,-0.18359375,0.17480469,-0.109375,0.08544922,0.103515625,0.080566406,0.092285156,-0.07128906,-0.064453125,0.16210938,0.14550781,-0.24023438,-0.05029297,-0.05444336,-0.060302734,-0.007019043,-0.15527344,0.00018119812,-0.15527344,0.10498047,0.010864258,-0.17480469,0.023803711,9.727478e-05,-0.019165039,-0.11816406,-0.055908203,-0.09082031,-0.32226562,0.125,-0.07763672,0.21972656,0.078125,-0.048828125,-0.12890625,-0.27539062,-0.13964844,0.010131836,-0.19042969,0.060546875,-0.03515625,-0.27734375,-0.02734375,-0.033691406,-0.13085938,0.06689453,0.1015625,0.036865234,0.13574219,0.11376953,-0.0146484375,0.17382812,-0.109375,0.043701172,0.012207031,0.08544922,-0.27539062,0.008911133,-0.018066406,-0.12060547,0.12988281,0.11425781,0.023071289,-0.11230469,0.111816406,-0.024047852,-0.055908203,0.04321289,-0.08154297,0.091796875,0.23925781,-0.048339844,-0.27929688,0.18554688,0.08935547,-0.07373047,0.051513672,-0.053466797,-0.095214844,-0.16308594,-0.19921875,-0.076660156,-0.015319824,-0.15527344,-0.20019531,-0.10644531,0.049316406,0.2734375,0.19824219,-0.020996094,-0.053466797,0.04638672,0.00045394897,0.24609375,-0.33007812,-0.01184082,0.032714844,-0.071777344,-0.27539062,-0.036865234,-0.114746094,-0.14355469,-0.10449219,-0.10986328,-0.022094727,0.021240234,0.025146484,0.122558594,-0.42578125,-0.15722656,-0.15332031,0.08154297,0.013793945,0.016967773,-0.17480469,0.024291992,-0.063964844,-0.115722656,-0.088378906,-0.123535156,0.046875,-0.02331543,-0.16210938,-0.012451172,-0.26953125,0.16894531,-0.06738281,-0.12207031,0.039794922,-0.2421875,-0.14550781,0.19726562,0.00010967255,0.01940918,-0.08691406,0.27929688,-0.1171875,-0.15527344,0.04272461,0.038085938,-0.12988281,-0.118652344,0.095214844,0.0004711151,0.032714844,0.17578125,0.0703125,0.06542969,0.056152344,0.0012207031,-0.0009918213,-0.04248047,-0.11230469,0.001914978,-0.003753662,-0.15039062,0.046142578,0.009521484,0.068359375,0.023803711,-0.024902344,0.14550781,-0.04638672,0.037353516,0.028930664,-0.013793945,-0.1328125,-0.009887695,-0.032470703,-0.08544922,0.14941406,0.010681152,0.055664062,-0.18457031,-0.010375977,-0.036132812,-0.014343262,-0.15625,-0.022583008,0.029663086,0.12451172,0.08203125,0.0032806396,0.076660156,0.14746094,-0.084472656,-0.048095703,0.17285156,-0.36328125,0.15722656,0.041748047,-0.05029297,-0.07373047,-0.17578125,-0.08203125,-0.024047852,-0.10107422,0.076171875,0.18359375,0.044921875,0.029052734,-0.123535156,0.036865234,0.024414062,-0.265625,0.04345703,0.14941406,-0.12988281,-0.08935547,-0.011962891,0.061523438,-0.07470703,-0.0064697266,-0.008666992,0.005584717,-0.09033203,0.29296875,0.017822266,0.012451172,-0.13574219,-0.2109375,-0.018920898,-0.009216309,-0.12011719,0.125,-0.029052734,-0.020996094,0.171875,0.13085938,0.07910156,-0.03112793,0.05444336,0.10205078,0.03515625,0.13183594,-0.05834961,-0.064453125,0.1953125,0.056152344,0.06542969,0.083984375,-0.06225586,-0.09716797,0.033447266,0.16894531,0.030273438,0.044189453,0.10498047,0.111328125,-0.038085938,0.21582031,0.09814453,-0.056396484,0.114746094,-0.055664062,-0.053710938,0.088378906,0.025268555,0.016357422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.2734375,-0.09667969,0.01171875,0.0115356445,0.07910156,0.07128906,0.013061523,0.17285156,-0.103027344,-0.09082031,-0.11767578,0.06640625,0.08105469,-0.009643555,-0.100097656,-0.0016098022,0.13378906,-0.06689453,0.096191406,-0.04638672,0.016235352,0.052978516,0.03466797,0.25,-0.0063171387,-0.0073242188,0.029174805,0.20019531,0.04663086,-0.13769531,-0.052490234,0.08154297,0.078125,-0.091796875,-0.0039367676,0.021240234,-0.06542969,-0.057861328,0.046142578,0.053466797,-0.123046875,0.115722656,-0.087402344,-0.045166016,-0.15917969,-0.13085938,-0.0008087158,0.0014419556,-0.025390625,-0.087402344,-0.075683594,-0.03491211,-0.07324219,-0.23925781,0.23046875,-0.032470703,0.0075683594,0.012756348,0.079589844,-0.15039062,-0.08251953,-0.12597656,0.087890625,0.03173828,0.038330078,-0.171875,-0.111328125,0.17578125,-0.22070312,-0.18554688,0.06347656,0.0859375,0.10253906,0.0154418945,0.20214844,-0.071777344,-0.043945312,0.30664062,0.16015625,0.14453125,0.21777344,-0.12695312,-0.05126953,0.09277344,0.1171875,-0.048583984,-0.052978516,0.14941406,-0.049804688,-0.20214844,0.03491211,-0.06542969,0.16894531,-0.024169922,-0.025390625,-0.028808594,-0.2421875,-0.26171875,0.05834961,-0.12792969,-0.05859375,0.23144531,-0.20605469,0.125,0.00047683716,-0.024291992,0.09375,0.015258789,-0.011230469,-0.04345703,0.028686523,-0.07714844,-0.018554688,-0.2109375,0.014282227,0.07910156,-0.068359375,0.30273438,-0.21972656,0.18066406,0.107421875,0.08300781,0.011108398,0.013916016,-0.064941406,-0.07714844,0.022338867,-0.15332031,-0.05834961,-0.37304688,0.00970459,0.04736328,-0.078125,0.20117188,-0.025146484,0.051513672,-0.038085938,0.01928711,0.21875,-0.16308594,-0.047851562,-0.008422852,0.19140625,0.080078125,-0.0066833496,-0.2421875,-0.026367188,0.010559082,0.041015625,0.05126953,0.114746094,0.17871094,0.0095825195,0.033447266,-0.013183594,0.0036773682,0.08203125,-0.08642578,0.04321289,-0.010681152,0.056884766,-0.24804688,0.053955078,-0.0546875,0.012023926,0.0016784668,-0.075683594,-0.0068969727,-0.048339844,-0.11376953,0.040771484,-0.044677734,0.095703125,-0.014770508,0.015136719,-0.013916016,-0.19335938,-0.20996094,0.047851562,-0.08105469,-0.13867188,0.026489258,0.029296875,0.19335938,-0.07128906,-0.1796875,0.08935547,0.0703125,0.16992188,0.05078125,0.02734375,-0.0119018555,-0.08300781,-0.36132812,-0.020263672,-0.01361084,-0.08642578,0.19628906,-0.012207031,0.14746094,0.078125,-0.015991211,-0.030761719,-0.08154297,0.03540039,0.04638672,0.103515625,-0.10449219,-0.13476562,-0.16601562,0.024047852,0.09814453,-0.123535156,0.22851562,0.119628906,-0.013793945,0.07519531,0.049804688,0.01953125,-0.036132812,-0.016601562,0.028320312,0.001953125,0.0010375977,-0.096191406,0.033447266,-0.027832031,0.022583008,-0.21972656,0.056152344,0.04345703,-0.026367188,0.022216797,0.025268555,-0.014343262,0.033203125,0.017700195,-0.10449219,-0.038085938,0.079589844,0.09375,-0.071777344,-0.07324219,0.095214844,-0.08251953,-0.008666992,-0.016235352,0.088378906,0.016601562,-0.056152344,0.033935547,-0.18457031,0.06982422,-0.034179688,-0.047851562,-0.018432617,-0.083496094,-0.23046875,-0.13964844,0.096191406,-0.122558594,0.13183594,-0.049560547,0.07080078,0.031982422,-0.21582031,0.0015640259,-0.03173828,0.07861328,-0.14550781,-0.09472656,-0.07421875,-0.052734375,-0.2734375,0.0056762695,-0.029907227,-0.2578125,-0.095214844,0.010498047,0.030029297,0.05078125,-0.114746094,-0.15917969,0.109375,-0.13476562,0.041015625,0.045166016,0.15136719,-0.01965332,0.04321289,0.021240234,0.09375,-0.092285156,0.12597656,0.15917969,0.015991211,-0.03466797,0.014709473,-0.12207031,0.087402344,-0.12207031,0.001876831,0.057373047,-0.15722656,-0.12011719,0.053955078,-0.056396484,0.111328125,-0.025146484,0.013549805,-0.05419922,-0.10546875,0.06738281,0.011108398,0.049072266,0.016967773,0.11425781,0.047607422,0.16503906,0.09667969,-0.14648438,-0.203125,0.13964844,0.13867188,-0.1875,0.00065231323,0.10205078,0.03540039,-0.041503906,0.0050964355,0.039794922,0.14257812,-0.10839844,-0.010192871,0.020019531,0.10595703,-0.20410156,-0.037841797,0.006713867,0.056640625,-0.084472656,-0.0051574707,-0.036376953,0.03955078,0.027954102,-0.057861328,0.07421875,0.028076172,-0.019042969,-0.029052734,0.04296875,0.08203125,-0.013000488,0.13378906,0.095214844,0.107421875,-0.19921875,-0.1484375,0.003540039,-0.12695312,-0.030273438,0.07714844,-0.07080078,0.067871094,-0.099121094,-0.022705078,-0.036132812,0.026977539,-0.045166016,-0.1875,-0.014404297,0.18359375,-0.056884766,-0.1171875,-0.05126953,-0.19726562,0.0030212402,0.03540039,0.087890625,0.1484375,-0.16601562,0.0022583008,-0.072753906,0.03173828,-0.0041503906,-0.12988281,0.1171875,0.011413574,-0.06933594,-0.16601562,-0.057861328,-0.029907227,-0.059814453,0.110839844,0.040039062,0.123535156,-0.092285156,-0.02758789,0.20214844,0.12060547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.16601562,-0.035888672,0.040039062,-0.16894531,0.14550781,-0.16210938,-0.05102539,-0.17480469,0.030761719,-0.026977539,-0.19335938,-0.13671875,-0.060791016,0.09863281,-0.025512695,-0.011291504,-0.14648438,0.08105469,-0.26953125,0.08154297,0.1015625,0.038085938,0.0013046265,0.053466797,-0.020019531,0.07861328,-0.042236328,-0.027832031,0.08203125,0.095703125,0.2578125,0.024414062,0.122558594,-0.15136719,-0.047851562,0.11816406,0.025390625,0.06640625,0.024902344,0.05078125,-0.076660156,-0.075683594,-0.06542969,0.01550293,-0.06933594,0.033203125,0.071777344,0.04321289,0.056396484,-0.20605469,-0.026000977,0.050048828,-0.13085938,-0.31640625,-0.055908203,0.06933594,0.046142578,-0.028320312,-0.029907227,0.07324219,0.09033203,0.029663086,0.045166016,-0.26171875,0.104003906,0.051513672,-0.03515625,-0.07128906,0.15625,0.012329102,-0.05419922,-0.171875,0.056396484,-0.011169434,0.095703125,-0.21777344,-0.010803223,0.18066406,-0.09277344,-0.0703125,-0.203125,0.12158203,-0.043701172,-0.15917969,-0.20019531,0.008239746,0.13085938,-0.23339844,-0.0015258789,-0.11621094,-0.016967773,-0.12890625,0.036621094,-0.10498047,0.119140625,-0.05419922,-0.15332031,0.005859375,-0.099121094,0.02319336,-0.21386719,0.03173828,-0.03149414,0.016601562,-0.018310547,0.036376953,-0.12792969,-0.075683594,-0.1484375,-0.24804688,0.111816406,-0.039794922,0.01940918,0.06347656,-0.12158203,0.0390625,-0.16113281,-0.008728027,0.017822266,0.17285156,0.075683594,-0.12695312,0.0126953125,0.18652344,0.068359375,-0.111816406,0.07080078,-0.017211914,0.17871094,0.053222656,-0.18554688,-0.14746094,0.09375,-0.21484375,-0.087402344,-0.03955078,-0.080566406,-0.067871094,-0.08642578,0.053222656,-0.08691406,0.140625,-0.10644531,-0.07421875,0.12109375,0.12207031,-0.04321289,-0.25585938,0.22558594,-0.055664062,0.115722656,-0.057373047,0.08154297,-0.04272461,0.10107422,-0.068847656,0.15625,-0.140625,0.10595703,-0.14648438,-0.099609375,0.17675781,-0.18945312,-0.140625,0.026245117,0.07080078,0.16601562,-0.111328125,0.03125,-0.003967285,-0.01928711,-0.06298828,-0.015625,-0.033935547,-0.234375,0.107910156,-0.10253906,-0.05810547,0.05419922,0.026611328,0.0013198853,-0.019897461,-0.19433594,0.012329102,0.02331543,0.087890625,0.078125,0.13574219,-0.111816406,-0.07519531,-0.11767578,0.15625,0.15722656,0.14355469,-0.004211426,-0.10498047,0.021606445,0.059570312,0.05053711,0.3203125,0.024780273,0.022460938,0.30859375,0.19335938,0.04638672,0.08691406,-0.106933594,0.10205078,-0.02368164,-0.030395508,-0.019165039,-0.27148438,0.12597656,-0.045410156,0.047851562,0.18945312,0.011962891,-0.20605469,0.05834961,-0.10644531,-0.06542969,0.19140625,-0.09765625,-0.21386719,-0.33398438,-0.17089844,-0.022827148,-0.25585938,0.18945312,-0.1015625,0.008300781,-0.024414062,-0.078125,-0.0703125,-0.10839844,-0.06689453,0.171875,-0.042236328,0.035888672,-0.19042969,-0.099121094,0.09765625,0.11230469,-0.010192871,0.13671875,0.092285156,0.027954102,0.032714844,0.09814453,-0.03149414,-0.032958984,-0.08300781,-0.0390625,0.104003906,0.026855469,0.10595703,-0.021606445,-0.20214844,-0.11816406,0.16113281,0.038085938,0.26953125,0.010803223,-0.12451172,0.114746094,-0.03564453,-0.004638672,0.2265625,-0.13085938,-0.072753906,-0.032226562,0.24414062,0.15917969,-0.057617188,-0.07128906,0.11669922,-0.041015625,0.25390625,-0.037597656,0.11621094,-0.04345703,-0.18066406,-0.08251953,0.072265625,-0.044189453,0.056396484,-0.13671875,0.12109375,0.125,0.020263672,0.01361084,-0.23632812,0.20117188,0.17089844,0.01928711,0.045898438,0.011047363,-0.104003906,0.076660156,-0.036376953,0.061279297,0.09667969,-0.018066406,-0.026977539,-0.029663086,-0.1015625,-0.18359375,-0.13964844,0.15234375,-0.1640625,0.125,-0.20898438,0.06982422,-0.095214844,0.08544922,-0.0001783371,0.03881836,-0.021362305,-0.028930664,0.045410156,-0.17773438,0.14355469,0.056884766,-0.048095703,0.0047912598,0.037597656,-0.01953125,0.01586914,0.046875,-0.091308594,-0.15429688,-0.013122559,0.15234375,0.25,-0.13964844,-0.087402344,-0.041503906,-0.06591797,0.05883789,0.032714844,0.053466797,-0.0018692017,0.071777344,0.11425781,-0.09716797,-0.22949219,-0.057373047,-0.19824219,0.03515625,0.103027344,-0.08154297,0.06933594,0.01928711,-0.15625,0.10058594,0.055908203,0.015136719,0.18066406,-0.17675781,-0.14746094,0.060546875,-0.29101562,0.015991211,0.053955078,0.043701172,0.16796875,-0.026733398,-0.114746094,0.052490234,-0.17675781,-0.020751953,0.19824219,0.111328125,0.06298828,0.015197754,-0.010131836,-0.032226562,0.08886719,-0.12597656,-0.115234375,-0.012268066,-0.099121094,0.05517578,-0.14257812,0.06982422,0.14160156,-0.018798828,-0.049804688,0.003829956,0.14648438,-0.16015625,0.14746094,0.0056762695,0.1015625,0.14550781,-0.046142578,-0.068359375,0.19726562,0.06689453,0.26757812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.123535156,-0.13769531,0.109375,0.15625,-0.107421875,0.2265625,-0.0015945435,0.125,0.06542969,-0.053955078,-0.16015625,-0.17773438,-0.04711914,0.171875,-0.015991211,0.15039062,-0.17480469,-0.2421875,0.24609375,-0.13476562,-0.20996094,0.09326172,-0.051757812,-0.23632812,-0.087890625,-0.061767578,-0.26367188,-0.37109375,-0.19921875,0.23632812,0.03857422,0.17675781,-0.15136719,-0.03491211,-0.14746094,-0.19921875,0.07128906,0.032714844,0.02746582,-0.059326172,-0.053222656,0.041503906,0.08984375,-0.2734375,-0.265625,-0.059570312,0.008117676,0.0859375,-0.02331543,-0.09033203,-0.18652344,0.018798828,0.15136719,-0.083496094,0.014404297,0.18652344,-0.060058594,-0.0048217773,0.017211914,-0.071777344,0.039794922,-0.016357422,0.053710938,0.03515625,0.17773438,0.17480469,-0.037109375,0.026733398,0.13769531,-0.13769531,0.060302734,-0.33007812,-0.16992188,-0.12988281,0.23144531,0.061279297,0.16992188,0.14941406,-0.08203125,0.046875,0.115722656,0.14648438,0.18652344,0.029907227,-0.08935547,0.045166016,-0.115234375,0.12988281,-0.103027344,0.08203125,-0.19140625,0.08496094,-0.12597656,-0.13671875,0.12451172,-0.06933594,0.018432617,0.012268066,0.028442383,0.09765625,-0.080566406,-0.00074768066,-0.15429688,-0.033935547,-0.063964844,-0.07128906,0.087402344,-0.34570312,-0.23632812,0.08105469,0.15722656,0.10839844,-0.14941406,-0.080566406,-0.29296875,-0.17089844,-0.2734375,0.119628906,-0.09326172,-0.03515625,0.041748047,-0.16796875,-0.071777344,-0.18652344,0.018432617,-0.056152344,0.046875,-0.14550781,0.09082031,0.14453125,-0.18359375,-0.19628906,-0.34960938,0.0625,-0.04296875,0.022460938,-0.02734375,-0.19238281,0.056152344,-0.15429688,0.005340576,-0.16503906,-0.06982422,-0.11621094,-0.06347656,0.110839844,-0.034179688,0.12158203,-0.0005836487,-0.14550781,-0.107910156,-0.33203125,-0.08203125,-0.16894531,-0.15527344,0.029418945,0.12695312,-0.10888672,0.035888672,0.028686523,-0.17773438,-0.15917969,-0.049804688,-0.107421875,0.07421875,-0.008850098,-0.11621094,0.037353516,0.08886719,0.16601562,0.107910156,-0.12988281,-0.11621094,0.011474609,-0.16015625,0.111328125,-0.01977539,-0.029296875,-0.16992188,-0.13183594,-0.071777344,-0.11669922,-0.08935547,0.099121094,0.033935547,0.076171875,0.08154297,-0.16015625,-0.020996094,-0.01159668,0.026123047,0.0058898926,-0.14160156,0.0069885254,-0.265625,-0.14160156,-0.23339844,-0.079589844,0.100097656,-0.24707031,-0.045898438,-0.115722656,-0.05078125,-0.06347656,-0.061523438,-0.09863281,-0.22460938,-0.072753906,-0.08886719,-0.011413574,-0.1796875,-0.084472656,-0.09667969,0.036132812,-0.06933594,-0.1484375,0.033935547,-0.01940918,-0.092285156,-0.18164062,-0.02368164,-0.056396484,-0.036865234,-0.13574219,0.15136719,0.15332031,-0.39648438,0.13183594,-0.125,0.05078125,-0.099609375,-0.123046875,-0.13867188,0.09472656,0.0087890625,-0.034423828,-0.1484375,0.08691406,0.1875,0.1484375,-0.056640625,-0.34375,-0.15527344,0.06542969,0.13769531,0.03173828,0.020263672,-0.29492188,-0.09326172,0.03881836,-0.01361084,0.08154297,-0.027832031,-0.016845703,-0.15136719,0.026733398,-0.028198242,-0.03930664,-0.072265625,0.025512695,-0.033203125,-0.024902344,0.19726562,0.106933594,-0.07763672,0.14355469,-0.26757812,0.068359375,-0.022094727,0.109375,-0.05883789,0.078125,-0.18554688,0.033691406,-0.055419922,-0.06591797,-0.15722656,-0.08984375,0.092285156,-0.09082031,0.011047363,-0.006439209,0.10253906,0.15722656,-0.22363281,-0.106933594,-0.095214844,-0.18945312,-0.072265625,-0.10839844,0.049072266,-0.07910156,-0.19140625,0.21582031,-0.17773438,0.13378906,-0.05444336,0.028076172,-0.16503906,0.13085938,-0.18945312,-0.0077819824,-0.06591797,-0.1796875,-0.022338867,0.008728027,0.09375,-0.06201172,0.03125,0.022949219,0.0066833496,-0.06347656,-0.012878418,0.006378174,-0.16113281,0.006225586,-0.16992188,-0.032714844,0.0075683594,-0.13378906,0.012573242,0.10986328,0.084472656,-0.11767578,0.13378906,0.018554688,-0.087890625,0.075683594,-0.021972656,-0.022949219,-0.050048828,-0.037841797,0.19140625,0.09277344,-0.008483887,0.06933594,-0.328125,-0.049316406,-0.044921875,0.10253906,-0.11767578,-0.036621094,-0.09765625,-0.09716797,-0.037841797,0.0703125,-0.33007812,-0.12060547,0.18066406,-0.0053100586,0.004058838,-0.068847656,0.08251953,-0.16992188,0.07373047,-0.16308594,0.20605469,0.10644531,-0.24316406,-0.064453125,-0.03491211,0.053710938,0.17871094,0.27929688,0.078125,0.02722168,0.13769531,-0.18066406,-0.033447266,-0.07763672,-0.0032196045,-0.044921875,0.11035156,-0.017578125,-0.07128906,0.06591797,0.1015625,0.044921875,0.31640625,0.04711914,0.05834961,-0.06689453,-0.00036239624,-0.37109375,0.029174805,-0.38476562,0.13476562,-0.047607422,0.21191406,0.014404297,-0.23730469,0.109375,0.033691406,0.111816406,0.107910156,0.19726562,0.10986328,-0.020141602,-0.11279297,-0.13183594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.15332031,-0.08886719,0.16015625,-0.004272461,0.061279297,0.265625,0.16699219,-0.050048828,-0.06298828,0.07421875,0.12792969,0.04736328,0.068847656,0.115234375,0.005004883,-0.10644531,-0.10595703,-0.021240234,-0.056396484,0.030517578,0.14941406,-0.09082031,0.025634766,-0.0032348633,0.08544922,0.072753906,0.08251953,-0.25195312,-0.12890625,0.072265625,0.15332031,-0.23046875,-0.14160156,-0.048095703,-0.092285156,-0.15820312,-0.09033203,0.064453125,-0.04345703,0.03564453,0.09814453,-0.008056641,0.27148438,0.004852295,-0.099609375,0.33203125,-0.072265625,-0.046142578,0.111816406,0.06982422,-0.11669922,-0.053955078,0.04711914,0.26171875,0.15722656,-0.13183594,-0.0115356445,0.026611328,0.17480469,-0.048095703,-0.027954102,0.09863281,0.06542969,0.006866455,-0.100097656,0.03540039,-0.265625,-0.01171875,0.031982422,0.15917969,0.13183594,0.036621094,-0.11328125,0.05810547,0.08984375,-0.10449219,-0.060546875,0.032714844,0.0703125,-0.14453125,0.013916016,-0.296875,0.104003906,0.022338867,0.122558594,0.039794922,-0.036132812,-0.26171875,0.024291992,0.057617188,0.10986328,0.007751465,-0.044677734,0.28515625,-0.02355957,0.05493164,-0.1953125,0.02758789,0.003036499,-0.06542969,0.16210938,-0.19238281,0.064941406,-0.016723633,-0.08544922,-0.05444336,0.140625,-0.033203125,-0.06298828,-0.053466797,0.111816406,-0.03515625,0.031982422,0.049804688,-0.0052490234,-0.099609375,0.13183594,-0.17773438,-0.015197754,-0.26367188,0.076171875,0.109375,-0.056152344,-0.13085938,-0.203125,0.04296875,-0.10986328,-0.0703125,0.18164062,-0.32421875,0.110839844,-0.14550781,0.16699219,0.17578125,0.011657715,0.11035156,0.072753906,0.11328125,-0.005432129,-0.041503906,-0.0859375,-0.017700195,-0.107910156,-0.03857422,-0.018920898,0.08984375,-0.20996094,-0.100097656,-0.0390625,0.12060547,0.10888672,0.059814453,-0.018066406,0.099609375,-0.122558594,0.032470703,0.11621094,-0.009216309,-0.048583984,-0.10205078,0.052490234,-0.23046875,0.16210938,0.12988281,-0.099609375,0.16796875,0.05078125,-0.16015625,-0.022094727,-0.049560547,0.019165039,-0.059326172,0.053710938,-0.17089844,-0.18164062,0.030395508,0.119140625,-0.022094727,-0.0041503906,-0.0060424805,-0.061279297,-0.104003906,0.071777344,-0.08300781,0.021850586,0.0061035156,-0.22265625,-0.076171875,0.048583984,-0.15332031,-0.109375,-0.100097656,0.044677734,-0.16503906,0.026611328,-0.0012359619,0.063964844,-0.030883789,0.05859375,-0.22558594,-0.051513672,-0.12695312,0.056640625,-0.08544922,-0.15527344,-0.0546875,-0.18847656,-0.15234375,0.02746582,-0.011230469,0.06982422,0.048339844,-0.0011901855,-0.017700195,0.099609375,0.07910156,0.044677734,-0.07714844,0.032958984,-0.056396484,-0.012939453,0.11767578,-0.04663086,-0.24023438,-0.16308594,-0.33203125,-0.02758789,-0.042236328,0.0012359619,0.13867188,-0.01953125,0.11767578,0.07910156,-0.11767578,-0.030029297,0.021484375,0.087890625,0.2578125,-0.042236328,-0.0027770996,-0.052978516,0.068359375,-0.011352539,0.06689453,-0.02319336,0.37304688,0.07714844,-0.26171875,0.015563965,-0.13671875,-0.24316406,0.0014419556,0.115722656,-0.084472656,-0.07421875,0.040283203,0.09814453,0.031982422,-0.048095703,0.045654297,-0.12207031,0.01586914,0.080078125,-0.4921875,-0.042236328,-0.001335144,0.012329102,-0.048339844,0.026977539,-0.21972656,0.036865234,-0.1171875,-0.095214844,-0.028564453,0.09814453,0.14160156,-0.10839844,-0.009338379,0.14941406,-0.31445312,0.040283203,0.001953125,0.24511719,-0.08544922,-0.009155273,-0.24414062,0.012634277,-0.26953125,-0.18847656,0.083496094,0.0069885254,0.0027770996,-0.17382812,-0.009155273,0.08496094,0.04272461,0.034179688,-0.1015625,0.05053711,-0.01586914,0.09667969,0.052734375,-0.10058594,-0.23730469,-0.07080078,0.16308594,-0.016235352,-0.078125,-0.06933594,0.12011719,-0.11376953,0.22363281,0.048095703,0.12695312,-0.11230469,0.17871094,-0.078125,0.171875,0.07373047,-0.20703125,0.115234375,-0.19335938,-0.03149414,-0.025756836,0.028320312,0.083984375,-0.01977539,-0.23925781,-0.07080078,-0.10058594,-0.06347656,0.04321289,0.12207031,-0.34765625,-0.13378906,0.0059509277,-0.017944336,-0.023071289,0.125,-0.038330078,0.022094727,-0.075683594,-0.06689453,-0.25195312,0.038330078,-0.026977539,-0.09472656,0.075683594,0.06298828,-0.17675781,-0.026367188,-0.084472656,-0.05102539,0.17773438,-0.0068359375,-0.095703125,0.024047852,0.16015625,0.10888672,-0.061035156,-0.06689453,-0.12792969,0.12011719,0.1171875,0.064941406,-0.15527344,-0.09716797,-0.011474609,-0.021362305,0.14160156,0.08886719,-0.012573242,0.055908203,-0.13476562,0.1171875,0.038085938,-0.020507812,0.059570312,0.15722656,0.24121094,0.08203125,-0.100097656,-0.06591797,0.03930664,-0.051757812,0.22265625,-0.084472656,-0.25,-0.23730469,-0.171875,0.064941406,0.29101562,0.010986328,0.09814453,-0.012390137,0.20703125,0.0053100586,-0.088378906,-0.0134887695,0.047851562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{-0.140625,0.038330078,0.05834961,-0.12792969,0.044433594,-0.099121094,0.16503906,0.056884766,-0.061767578,-0.12597656,-0.07373047,0.16308594,0.016723633,0.10595703,-0.15820312,0.13964844,-0.15039062,-0.19335938,-0.06982422,-0.041748047,0.021850586,0.012939453,0.055908203,0.18554688,0.04345703,-0.061035156,0.099609375,0.048583984,-0.026000977,0.075683594,-0.027954102,0.17871094,0.1015625,0.087402344,0.0058898926,-0.024047852,-0.087402344,-0.19140625,-0.01361084,-0.075683594,-0.092285156,0.00088119507,-0.036621094,0.034423828,0.11035156,-0.19042969,0.11279297,0.07421875,-0.18554688,0.15917969,0.1875,-0.099121094,0.068847656,-0.1171875,-0.051757812,-0.06738281,0.056640625,-0.06591797,-0.10058594,-0.063964844,0.16699219,-0.008605957,-0.19824219,-0.05419922,-0.045898438,0.16308594,-0.057861328,0.14453125,0.09716797,0.11425781,-0.05810547,-0.15820312,0.040039062,-0.18554688,0.057128906,-0.08642578,0.04663086,0.12207031,0.0546875,-0.052734375,-0.15136719,0.11621094,-0.004333496,0.12792969,-0.07421875,-0.017578125,0.13769531,0.1640625,-0.010131836,-0.0023040771,-0.0703125,-0.14746094,0.16210938,0.16699219,0.25976562,0.10839844,-0.14160156,-0.06982422,-0.24804688,-0.09033203,0.1328125,-0.06738281,0.011474609,0.004852295,0.08300781,0.103515625,0.17089844,0.1640625,0.15332031,0.13476562,-0.047607422,0.0015029907,-0.031982422,-0.14453125,0.047607422,0.076660156,-0.08935547,0.020019531,-0.12158203,0.0029449463,0.07910156,0.07324219,-0.02331543,0.20800781,0.07714844,0.051757812,0.100097656,0.007446289,-0.35351562,0.07714844,0.09716797,-0.27929688,-0.07861328,-0.01977539,-0.06347656,-0.056152344,-0.010803223,0.012207031,-0.0154418945,0.15039062,0.026000977,0.12597656,0.057128906,-0.03930664,-0.12109375,0.123535156,0.063964844,0.12597656,0.099121094,-0.020751953,-0.005065918,0.026733398,-0.079589844,-0.026245117,0.11376953,0.11279297,0.08300781,-0.036865234,0.115722656,0.12792969,-0.0703125,0.19628906,-0.08105469,-0.005706787,-0.025634766,-0.13964844,-0.088378906,0.052978516,0.041015625,0.044677734,0.22558594,-0.06982422,0.068359375,0.021606445,0.109375,-0.06689453,0.021850586,0.0005722046,0.09033203,-0.07128906,-0.31054688,-0.15820312,-0.0154418945,0.09082031,0.013061523,-0.030883789,0.067871094,-0.049804688,0.008972168,0.059570312,-0.044677734,0.036621094,-0.092285156,0.052001953,0.017944336,-0.07714844,-0.08496094,0.010681152,-0.22949219,0.035888672,-0.060302734,-0.234375,0.11816406,0.18359375,0.08544922,-0.10888672,-0.09326172,-0.020507812,-0.047607422,-0.07763672,0.00592041,-0.18945312,-0.05102539,-0.06347656,0.07080078,0.18164062,-0.060058594,-0.25390625,-0.15722656,-0.15722656,-0.0011291504,0.040771484,-0.095214844,-0.09716797,0.08154297,-0.22851562,0.016235352,0.057861328,0.037353516,-0.079589844,-0.0076904297,-0.009094238,-0.04638672,-0.15136719,0.0146484375,0.0029907227,-0.068847656,-0.055419922,-0.057617188,-0.23144531,-0.020385742,0.1328125,-0.06738281,-0.002166748,-0.13085938,-0.0048828125,-0.27148438,-0.14453125,0.076171875,0.010803223,0.008056641,-0.1796875,0.011474609,-0.0043029785,-0.11425781,0.045654297,0.03125,0.17675781,-0.2265625,0.063964844,-0.16308594,-0.07128906,-0.010070801,-0.059570312,-0.0012054443,-0.22558594,0.06689453,-0.08544922,-0.125,0.103027344,-0.011657715,0.07421875,-0.25195312,-0.045166016,-0.26757812,-0.099121094,-0.041015625,-0.045166016,0.17382812,0.091308594,0.012634277,-0.16210938,-0.09716797,-0.003036499,0.06591797,-0.14648438,0.084472656,0.05810547,-0.26757812,-0.042236328,0.03125,-0.0069274902,-0.09082031,-0.010314941,0.08935547,0.09326172,0.036865234,-0.25195312,-0.118652344,-0.07910156,0.029663086,-0.075683594,0.06640625,0.07128906,0.103515625,0.059326172,-0.13964844,0.020507812,-0.017578125,0.026489258,-0.052246094,-0.099609375,-0.036865234,-0.041015625,-0.12890625,-0.06933594,-0.014221191,-0.103515625,0.039794922,-0.099121094,-0.12011719,-0.042236328,0.046142578,-0.20996094,-0.008483887,0.13964844,0.16113281,-0.14941406,0.049804688,-0.025024414,0.072753906,-0.014038086,0.037841797,0.029907227,-0.11376953,0.0625,-0.080566406,-0.041015625,-0.014343262,0.060546875,0.14648438,-0.034423828,0.23632812,-0.02319336,0.118652344,-0.15234375,-0.071777344,-0.234375,-0.109375,0.23632812,-0.014465332,0.08691406,-0.06933594,-0.096191406,-0.036621094,0.063964844,0.08886719,-0.10839844,-0.041259766,-0.21386719,0.06298828,-0.16308594,0.02758789,-0.12695312,-0.075683594,-0.02709961,0.07519531,-0.032958984,0.056640625,0.0066223145,-0.1875,-0.022827148,-0.045410156,-0.16113281,-0.018554688,-0.10498047,0.030029297,-0.07861328,-0.15136719,0.24511719,-0.052001953,-0.07421875,-0.2578125,0.01586914,-0.15722656,-0.20800781,-0.061523438,0.14648438,0.04711914,-0.07861328,0.084472656,0.16699219,-0.033447266,-0.18164062,-0.07373047,-0.053955078,-0.076171875,0.09716797,-0.0020446777,0.19140625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.080566406,-0.053955078,-0.25195312,-0.16894531,-0.010498047,-0.040527344,0.18847656,-0.27929688,0.0064086914,0.05029297,-0.053466797,0.13183594,0.02355957,0.0077209473,0.12060547,-0.02722168,0.055664062,-0.012268066,0.022827148,-0.15722656,-0.076660156,0.16699219,-0.33984375,-0.17285156,0.04321289,0.060546875,0.13574219,0.017822266,0.03149414,-0.06347656,0.055664062,-0.008666992,0.011291504,0.07128906,0.030517578,-0.21484375,-0.19726562,0.18554688,-0.16113281,0.107910156,0.00026130676,-0.013122559,0.012329102,-0.047607422,-0.05029297,-0.15039062,0.12988281,0.0075683594,-0.29296875,0.09814453,-0.15234375,-0.13769531,-0.03466797,-0.20117188,-0.06982422,0.063964844,-0.11425781,0.05102539,-0.053955078,0.07763672,0.15527344,0.040283203,-0.0022888184,-0.032958984,-0.0010604858,0.24707031,-0.21582031,-0.35351562,-0.1953125,0.10595703,-0.09716797,0.08251953,-0.064941406,0.15625,-0.005706787,0.071777344,0.068359375,-0.092285156,-0.27539062,-0.015014648,0.14453125,0.14648438,-0.16796875,-0.06347656,-0.02331543,0.021850586,0.12109375,-0.11279297,-0.0138549805,0.035888672,-0.2734375,0.11376953,0.0107421875,-0.06591797,0.024536133,0.10449219,-0.12792969,0.2578125,-0.13671875,-0.075683594,0.0055236816,0.13769531,-0.21191406,0.075683594,-0.00037956238,-0.08642578,-0.032958984,0.056884766,-0.03491211,0.14550781,-0.029541016,0.15527344,-0.16796875,0.15820312,0.0095825195,-0.0035247803,0.025512695,0.15625,0.10107422,0.17285156,-0.055419922,0.056640625,-0.020629883,0.07763672,-0.095214844,0.099609375,-0.080078125,0.11328125,-0.14746094,0.09716797,-0.088378906,-0.06982422,0.03112793,-0.091796875,-0.028198242,0.12792969,-0.030517578,0.0021972656,0.033691406,0.09326172,0.08544922,-0.10498047,-0.0058288574,0.06640625,-0.091796875,0.09326172,-0.083984375,-0.07324219,-0.15234375,-0.08300781,0.0546875,-0.08203125,0.035888672,-0.119628906,-0.07128906,-0.1171875,0.15136719,0.0042419434,-0.09082031,-0.20507812,0.13867188,-0.099121094,-0.06201172,0.021240234,-0.21484375,0.04663086,0.014953613,-0.107910156,-0.10595703,0.06542969,-0.05419922,-0.05883789,0.07470703,-0.14648438,-0.07910156,0.13574219,0.0063476562,-0.14648438,0.13183594,-0.029174805,-0.15234375,0.029785156,-0.006500244,0.20214844,0.07470703,0.16210938,0.008178711,0.03857422,-0.10253906,-0.15039062,-0.14746094,-0.16503906,-0.07519531,-0.14160156,-0.021850586,-0.09033203,-0.0069885254,0.099121094,0.13769531,0.18261719,-0.045898438,0.0043029785,0.080078125,-0.118652344,-0.0032348633,0.14746094,-0.018188477,0.026367188,-0.11669922,-0.099609375,0.049072266,-0.14355469,-0.040039062,-0.10595703,-0.11230469,-0.20410156,-0.020385742,0.020874023,-0.15136719,-0.24121094,0.026245117,-0.005645752,-0.009460449,0.10205078,0.021362305,-0.037353516,-0.24707031,0.0039978027,-0.1015625,-0.059326172,0.067871094,-0.20800781,0.11767578,-0.13085938,-0.09863281,-0.36328125,0.03540039,-0.071777344,0.16503906,-0.09765625,-0.02355957,-0.2109375,-0.16015625,-0.13085938,-0.099609375,0.13964844,-0.034179688,0.0044555664,-0.02319336,-0.026245117,-0.021118164,0.11425781,0.11669922,0.12207031,-0.11425781,0.095703125,-0.075683594,-0.03881836,0.11767578,-0.06982422,0.09863281,-0.0859375,-0.15625,0.22167969,-0.0025634766,-0.003479004,0.042236328,-0.072265625,-0.052734375,0.13476562,0.038085938,-0.042236328,0.03930664,0.0069274902,0.04711914,0.110839844,0.16308594,0.034423828,0.15820312,0.11669922,-0.109375,0.16992188,0.328125,-0.19726562,-0.099609375,-0.07080078,-0.03540039,-0.0076293945,0.15234375,-0.21875,0.014526367,-0.048339844,0.0025177002,0.080566406,0.118652344,-0.043945312,-0.07763672,0.18554688,-0.109375,-0.22070312,0.0134887695,-0.099609375,-0.14746094,-0.11669922,-0.24707031,0.10644531,-0.079589844,-0.14453125,-0.22851562,0.027709961,0.111328125,0.0030670166,-0.056640625,0.012145996,0.08935547,-0.20019531,-0.10449219,-0.18457031,0.06982422,-0.22558594,0.111816406,0.0039978027,0.06982422,-0.08691406,0.01586914,0.018554688,-0.10546875,0.103515625,-0.028076172,-0.13964844,-0.11767578,-0.265625,-0.088378906,-0.15527344,-0.1328125,-0.028320312,-0.27539062,0.02722168,-0.00970459,-0.014831543,0.017578125,-0.19628906,0.1796875,-0.16699219,-0.0107421875,-0.17871094,-0.04272461,0.06347656,-0.14941406,-0.008666992,-0.15917969,0.046875,0.060058594,0.20410156,-0.029418945,-0.025756836,0.008544922,0.18066406,0.18652344,-0.026733398,-0.06591797,-0.045410156,0.026367188,-0.04296875,-0.0625,0.107421875,-0.033935547,0.018920898,0.0022735596,-0.1640625,-0.068847656,-0.056640625,-0.018920898,-0.11621094,0.15625,0.028198242,0.06982422,-0.140625,0.18652344,0.08496094,0.049316406,0.13867188,-0.014709473,-0.018676758,-0.18652344,-0.11328125,0.22363281,-0.006958008,-0.015991211,0.075683594,0.25195312,0.14355469,-0.009155273,0.095703125,-0.1796875,0.0036468506,0.10986328,-0.11767578,0.015258789,-0.008056641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0.088378906,-0.032958984,-0.12988281,-0.084472656,-0.048828125,0.107910156,0.028930664,-0.072265625,-0.0009727478,-0.14550781,0.049804688,-0.040527344,-0.119140625,-0.033447266,-0.020385742,-0.19140625,-0.111328125,-0.055419922,-0.088378906,0.08203125,-0.079589844,-0.08886719,-0.045410156,-0.18457031,-0.0146484375,-0.20117188,0.026245117,-0.15039062,-0.07128906,0.115234375,0.02355957,-0.021972656,-0.075683594,-0.10888672,0.011657715,-0.023071289,0.087890625,0.076660156,-0.15332031,0.01574707,0.041503906,-0.16113281,-0.025756836,-0.07324219,0.012451172,0.123046875,-0.0703125,-0.021972656,-0.17285156,-0.22167969,-0.12109375,-0.048583984,-0.060302734,-0.084472656,0.014282227,0.002456665,-0.038085938,-0.17871094,0.0056152344,-0.091308594,-0.080566406,0.08984375,-0.07324219,-0.111816406,-0.068359375,-0.13671875,0.05834961,0.12792969,0.056396484,0.18359375,-0.034423828,-0.21191406,0.07324219,-0.032714844,0.04711914,0.13476562,-0.104003906,0.030151367,-0.12060547,-0.080078125,-0.088378906,-0.11816406,-0.05102539,-0.1953125,-0.09326172,0.11621094,0.043701172,0.10839844,-0.0050354004,-0.1015625,0.0859375,-0.016845703,0.051757812,0.10546875,-0.10107422,-0.0076293945,-0.15234375,-0.04321289,0.07324219,-0.119140625,-0.05834961,-0.006378174,-0.011962891,0.0046081543,-0.009765625,-0.15332031,0.009277344,-0.08105469,-0.037109375,-0.14160156,0.08935547,0.040771484,0.076171875,0.036376953,-0.038085938,-0.13671875,-0.111816406,-0.07763672,0.09667969,-0.13183594,0.08691406,-0.11621094,-0.0015487671,-0.171875,0.019897461,-0.072753906,0.036865234,0.040771484,0.11328125,-0.017700195,0.032958984,-0.13085938,-0.046142578,0.018066406,0.06640625,0.024291992,-0.10839844,-0.14746094,-0.061767578,0.103027344,0.014465332,0.039794922,-0.15917969,-0.111816406,0.02355957,-0.060546875,-0.02734375,0.0703125,-0.071777344,0.035888672,0.026245117,0.047607422,-0.09863281,0.0390625,0.00042915344,0.06591797,-0.10595703,0.091308594,-0.0039978027,-0.09863281,-0.15136719,0.111328125,-0.055664062,0.037109375,-0.0154418945,0.045166016,-0.12890625,0.030639648,0.025268555,-0.08642578,-0.037109375,-0.072265625,0.015625,-0.050048828,-0.13867188,0.06640625,-0.028930664,0.024780273,0.03112793,-0.080078125,0.14160156,0.11669922,0.05810547,-0.002090454,0.049072266,-0.022949219,-0.045166016,0.048583984,-0.040283203,-0.033203125,0.06298828,0.030151367,-0.12402344,0.044189453,-0.19238281,-0.08251953,0.11425781,0.08935547,-0.0012664795,0.014343262,0.012573242,-0.107910156,-0.0033721924,0.091796875,-0.04321289,0.016601562,-0.05419922,-0.118652344,0.107421875,-0.11279297,-0.06640625,-0.19140625,0.10839844,-0.13867188,0.15527344,-0.075683594,0.013122559,-0.06225586,-0.05493164,0.078125,-0.027709961,0.083984375,-0.1796875,-0.100097656,0.06689453,-0.13476562,0.00592041,-0.14453125,0.014465332,0.02368164,0.096191406,-0.14355469,-0.048583984,-0.1328125,-0.0050354004,-0.022216797,-0.08544922,-0.115722656,-0.001625061,-0.015197754,0.048828125,0.103027344,0.091308594,-0.09375,-0.19433594,0.18457031,0.076171875,0.088378906,0.07519531,0.056640625,-0.044677734,0.16796875,-0.12792969,0.13671875,0.017578125,-0.09863281,0.0061035156,0.06542969,-0.08203125,0.009399414,-0.056396484,-0.01361084,0.061767578,-0.04248047,-0.115234375,-0.07861328,0.080566406,0.040039062,-0.079589844,0.041748047,-0.06298828,-0.04345703,0.0049438477,0.17675781,0.03857422,-0.21191406,-0.017822266,-0.15625,0.0154418945,-0.1796875,0.06347656,-0.035888672,0.056396484,0.027709961,-0.03515625,-0.13574219,-0.018432617,0.011474609,0.060791016,-0.026367188,-0.07128906,-0.002243042,-0.07714844,-0.020141602,0.11621094,-0.0859375,0.015991211,-0.088378906,0.064453125,-0.012207031,0.01928711,-0.14550781,-0.12988281,-0.22460938,-0.0018692017,0.012268066,0.028808594,-0.016357422,0.006652832,-0.00390625,0.13964844,-0.14746094,0.06738281,-0.067871094,-0.0025939941,0.14550781,0.04711914,-0.13183594,-0.044677734,-0.048828125,-0.09082031,-0.11279297,-0.14746094,-0.13867188,-0.028076172,0.25585938,0.028442383,-0.12158203,-0.03881836,-0.05126953,0.096191406,0.14160156,-0.052490234,-0.010681152,-0.061279297,-0.032470703,-0.068359375,-0.05517578,-0.020385742,-0.1484375,0.045410156,-0.05883789,-0.053466797,0.055664062,-0.118652344,0.026367188,-0.040771484,0.23535156,-0.052246094,-0.047851562,-0.06689453,-0.08886719,-0.053466797,-0.026245117,-0.10546875,0.033691406,0.02722168,-0.028564453,0.19628906,0.049072266,-0.084472656,-0.07421875,0.02368164,0.17773438,0.01953125,-0.017944336,-0.096191406,0.01965332,0.030395508,-0.091796875,-0.12207031,0.0703125,-0.11376953,-0.041992188,0.18261719,0.034179688,0.03149414,0.014587402,0.095703125,-0.1328125,-0.14648438,0.041503906,-0.067871094,0.013793945,-0.119628906,-0.03515625,-0.13183594,-0.026855469,-0.18164062,0.16015625,0.091796875,-0.071777344,0.039794922,0.15722656,0.018554688,-0.15527344,-0.008239746,0.07080078,-0.0859375,0.01965332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,}}; #endif static elem_t fc_3_out[128][64] row_align(1); static const struct FcParams fc_3_params = {.batch_size=4, .in_features=400, .out_features=120, .bias=0, .output_scale=8, .I=128, .J=64, .K=448}; #ifdef ELEM_T_IS_BFLOAT static const float fc_4_w_float[128][128] row_align(1) = {{0.095703125,-0.052490234,-0.056396484,-0.055908203,-0.17089844,0.064941406,0.06201172,-0.05859375,-0.12792969,-0.29296875,-0.1796875,-0.111816406,-0.17773438,-0.04663086,0.16210938,0.13378906,-0.07519531,0.056396484,0.13769531,0.10888672,0.06542969,-0.17382812,-0.004180908,0.33007812,0.091796875,-0.028930664,-0.16113281,-0.01965332,-0.20800781,-0.021850586,-0.09423828,0.16992188,0.01977539,-0.064941406,0.053955078,-0.05444336,0.10205078,-0.045654297,0.080078125,-0.06982422,0.053466797,-0.100097656,-0.15136719,0.06225586,0.09765625,-0.12792969,0.030395508,0.0028686523,0.13964844,-0.016235352,-0.115722656,-0.10449219,-0.29492188,-0.044433594,0.25,-0.12695312,-0.18066406,-0.03466797,-0.013916016,0.024536133,0.08154297,0.111328125,-0.1484375,0.088378906,0.099121094,0.12158203,0.12988281,-0.045410156,0.017578125,-0.053222656,-0.029663086,0.06201172,-0.122558594,0.17089844,0.0010604858,0.13574219,-0.0033111572,0.03564453,-0.059570312,0.0049438477,0.1328125,-0.1640625,0.12988281,0.0049743652,0.16210938,-0.19726562,0.1796875,-0.10253906,-0.16992188,-0.2734375,-0.12597656,-0.122558594,-0.015075684,-0.049072266,0.09423828,-0.01171875,-0.15234375,0.047607422,-0.078125,-0.20800781,0.25,0.14257812,-0.10595703,-0.051757812,-0.0043640137,0.16015625,-0.12207031,0.04736328,0.03149414,0.092285156,0.12597656,0.15136719,-0.046142578,0.10253906,-0.3125,0.1953125,-0.012145996,0.14355469,-0.2265625,0.016479492,0,0,0,0,0,0,0,0},{-0.2578125,-0.110839844,0.06933594,0.20214844,-0.13769531,0.011291504,-0.071777344,-0.037353516,-0.036621094,-0.06347656,0.0029144287,-0.16308594,-0.14941406,-0.114746094,0.055908203,-0.15136719,-0.03125,-0.079589844,-0.125,-0.15625,-0.1953125,-0.018798828,0.14453125,0.15625,-0.18847656,-0.072753906,-0.052734375,0.052978516,-0.09716797,-0.0031738281,-0.056640625,-0.0064086914,-0.057373047,0.14355469,-0.0006752014,0.019165039,-0.13867188,0.037841797,0.014465332,-0.0060424805,-0.011047363,0.048583984,-0.053466797,0.064453125,0.0036773682,-0.09082031,0.006072998,-0.12597656,-0.12695312,-0.10498047,-0.031982422,0.15039062,-0.036132812,-0.19433594,0.12597656,0.09277344,0.0859375,-0.095214844,-0.078125,-0.13867188,-0.025146484,0.028564453,0.09814453,0.07470703,-0.17675781,-0.13867188,0.025756836,-0.15234375,-0.20019531,-0.08691406,-0.111816406,-0.123046875,0.22753906,-0.0146484375,-0.040283203,0.043945312,0.0054016113,-0.07080078,-0.12890625,0.13574219,-0.1640625,0.010620117,0.0022277832,0.09277344,0.035888672,0.051513672,0.1015625,-0.15039062,0.046142578,-0.23242188,0.10546875,0.07324219,-0.055419922,0.10546875,-0.053222656,-0.17382812,0.026611328,0.01977539,0.11767578,-0.019897461,-0.1640625,-0.15527344,-0.022338867,0.0859375,-0.0036621094,0.16796875,-0.039794922,0.10839844,-0.1328125,-0.13574219,-0.14648438,-0.13085938,-0.030883789,0.022949219,0.037841797,0.13574219,0.06201172,0.106933594,-0.064941406,-0.14257812,0,0,0,0,0,0,0,0},{-0.13476562,0.01965332,0.15722656,-0.07080078,0.05834961,0.024169922,-0.016357422,0.07470703,-0.09423828,-0.0546875,-0.12109375,-0.017822266,0.16894531,0.111816406,0.06542969,0.011108398,-0.049804688,0.15722656,0.11230469,-0.05444336,-0.02746582,0.012817383,-0.052246094,0.079589844,-0.2890625,-0.0060424805,0.045166016,0.10546875,0.049072266,-0.011047363,0.16894531,0.12402344,-0.09033203,-0.029785156,-0.0095825195,-0.103027344,0.08203125,-0.048339844,-0.08642578,0.060546875,-0.060058594,-0.050048828,-0.032470703,0.045898438,0.22363281,0.04296875,-0.013061523,0.056640625,0.17871094,-0.06640625,0.014343262,0.14941406,-0.056640625,-0.016723633,-0.060058594,0.02709961,0.06933594,0.15625,0.23925781,0.14453125,0.15136719,0.055664062,0.06542969,0.2265625,-0.11376953,-0.0061035156,0.03540039,-0.061767578,-0.063964844,0.0703125,0.026489258,0.014831543,-0.033691406,0.06933594,-0.03540039,0.03149414,0.25195312,0.15625,0.024047852,0.22753906,-0.078125,-0.024291992,0.0005912781,-0.05126953,0.04321289,-0.017700195,-0.088378906,0.2578125,0.011779785,-0.039794922,0.022827148,0.04296875,-0.00064086914,-0.171875,0.007446289,0.096191406,0.092285156,0.05834961,0.046875,0.0064086914,-0.18261719,-0.11230469,-0.078125,-0.0039978027,0.018310547,0.110839844,-0.07324219,0.18457031,0.063964844,0.05102539,-0.13378906,-0.0028839111,0.16699219,0.08935547,0.095703125,-0.091796875,0.033203125,-0.012756348,-0.068847656,0.11279297,0,0,0,0,0,0,0,0},{-0.009399414,-0.055908203,-0.041503906,-0.1328125,-0.025146484,-0.09814453,-0.095214844,-0.026611328,0.12890625,0.057617188,-0.046142578,0.0076904297,-0.025512695,0.23632812,-0.12402344,0.19433594,0.16015625,0.125,-0.038085938,0.2578125,-0.076171875,-0.107910156,0.04736328,0.06738281,0.122558594,-0.15332031,0.083984375,0.15820312,-0.006011963,-0.1640625,-0.021850586,0.24511719,0.028564453,-0.0038452148,0.115234375,-0.06689453,0.044921875,-0.04638672,-0.02758789,-0.19726562,0.16992188,-0.07861328,-0.038330078,0.17578125,-0.17285156,0.15039062,-0.03515625,0.09277344,-0.22265625,-0.10107422,0.08105469,-0.087890625,0.038085938,0.14453125,0.057373047,-0.092285156,0.15527344,0.18261719,0.12207031,0.041992188,0.051757812,-0.111816406,0.0012359619,-0.0053710938,0.18847656,-0.015625,0.1796875,-0.040771484,-0.004272461,0.09814453,0.19042969,0.15039062,0.03881836,-0.033203125,0.10644531,-0.09082031,-0.041748047,0.005493164,0.13867188,0.10498047,0.171875,-0.0069274902,0.10595703,0.03112793,0.03515625,0.07373047,0.08935547,0.20507812,0.10498047,-0.140625,-0.01574707,-0.17578125,0.010375977,0.19628906,0.16308594,-0.25585938,-0.028564453,-0.21582031,0.023071289,-0.03466797,-0.017578125,0.024414062,-0.052734375,0.043945312,-0.040771484,-0.11279297,0.05053711,0.08496094,0.07128906,-0.06591797,0.26757812,-0.020751953,-0.09765625,0.013183594,-0.119140625,0.24316406,0.052978516,0.13769531,0.01940918,-0.004211426,0,0,0,0,0,0,0,0},{0.01574707,0.003829956,-0.16992188,-0.025634766,0.08251953,-0.23632812,-0.04296875,0.06347656,-0.017211914,-0.003540039,-0.010864258,-0.02734375,0.014587402,0.04736328,-0.02758789,-0.060058594,0.13964844,-0.06933594,0.036865234,-0.01965332,-0.0138549805,-0.088378906,0.11035156,0.24121094,-0.14746094,-0.068359375,-0.016113281,0.067871094,-0.13867188,-0.18164062,0.061279297,-0.05078125,-0.20507812,-0.19238281,-0.041992188,-0.23535156,-0.020874023,-0.13378906,0.011230469,-0.04736328,-0.17578125,0.09814453,-0.07470703,0.023803711,-0.15917969,0.05517578,-0.17871094,-0.26367188,0.084472656,0.13867188,-0.11035156,-0.15136719,0.057861328,-0.12792969,0.12988281,0.19140625,-0.12402344,-0.08984375,-0.12402344,-0.10449219,0.033447266,0.053955078,-0.06591797,0.09765625,-0.032958984,-0.020996094,-0.14941406,-0.1640625,-0.05883789,0.11279297,0.076660156,0.016357422,-0.012207031,0.012023926,-0.016601562,-0.052978516,0.10546875,-0.023925781,-0.171875,-0.1484375,-0.05078125,0.12597656,-0.045654297,-0.25585938,-0.123046875,-0.14160156,0.16308594,-0.09472656,-0.11425781,0.071777344,0.015136719,-0.13867188,-0.045898438,0.114746094,0.171875,-0.042236328,0.047851562,-0.033691406,-0.035888672,-0.09667969,-0.0040893555,0.08984375,-0.107421875,-0.15722656,-0.1328125,0.029174805,0.0032196045,0.13671875,-0.23925781,0.029052734,-0.044433594,-0.16894531,-0.09667969,-0.104003906,0.07861328,-0.2265625,-0.15234375,-0.16308594,-0.15527344,-0.10205078,0,0,0,0,0,0,0,0},{-0.0022888184,-0.08935547,-0.21386719,0.10546875,-0.21582031,-0.00024986267,-0.064453125,-0.19433594,0.009338379,-0.11425781,-0.041992188,0.036621094,-0.16503906,0.07080078,-0.16308594,-0.17578125,-0.16503906,0.067871094,-0.01977539,0.09375,-0.007659912,-0.06933594,-0.005584717,-0.053710938,-0.032226562,-0.041748047,-0.033203125,-0.14453125,0.056152344,0.079589844,0.12597656,-0.15917969,-0.26171875,-0.06933594,0.049072266,-0.12988281,-0.1484375,-0.20898438,-0.123535156,-0.00018787384,0.024658203,-0.115234375,-0.13476562,0.10595703,-0.00078201294,-0.14355469,-0.08300781,0.107910156,0.0009384155,-0.14257812,0.075683594,-0.14355469,0.03149414,0.0234375,-0.16992188,0.11279297,-0.048095703,0.032226562,-0.122558594,-0.14941406,-0.140625,-0.265625,0.053955078,0.115722656,-0.12695312,-0.11425781,0.09277344,-0.059814453,0.111328125,0.018554688,-0.052490234,0.015014648,-0.103515625,0.036376953,0.03540039,-0.12792969,-0.1640625,-0.060302734,-0.1796875,0.076660156,-0.109375,-0.018798828,-0.05859375,-0.07373047,-0.018676758,-0.10449219,0.055419922,0.06347656,-0.19042969,0.017822266,0.031982422,-0.06347656,-0.12207031,0.076171875,0.06689453,0.07373047,-0.040527344,-0.14746094,-0.061523438,-0.031982422,-0.11230469,-0.002822876,-0.075683594,-0.1796875,0.060058594,-0.053222656,0.044189453,-0.09033203,-0.119628906,-0.107910156,0.060302734,0.10546875,-0.09423828,0.032226562,-0.052246094,0.007873535,0.03125,-0.06298828,-0.16894531,-0.041748047,0,0,0,0,0,0,0,0},{0.06982422,-0.048339844,-0.041259766,-0.13183594,-0.16894531,0.10595703,-0.09277344,-0.075683594,-0.06933594,0.048339844,-0.23535156,-0.115234375,-0.15820312,-0.045166016,0.067871094,-0.20410156,-0.10498047,0.019165039,-0.11767578,-0.12597656,0.015991211,0.09033203,-0.029418945,-0.16601562,-0.15625,-0.057861328,-0.033691406,-0.15332031,0.045410156,-0.0073242188,-0.09082031,-0.057373047,-0.064941406,0.10058594,-0.056152344,-0.18261719,0.013916016,-0.14941406,-0.14746094,-0.103027344,0.044677734,-0.16894531,-0.22070312,-0.038085938,0.09033203,-0.0859375,-0.15625,0.012145996,0.0021514893,-0.16503906,-0.033935547,0.032226562,-0.15917969,-0.19921875,0.046142578,0.006591797,0.026855469,-0.15332031,0.052490234,-0.17285156,0.08300781,-0.10449219,-0.12451172,-0.104003906,-0.114746094,-0.14257812,-0.040283203,-0.17578125,-0.16796875,-0.0051879883,0.028930664,-0.06982422,-0.08642578,-0.13574219,0.041015625,-0.022216797,0.06933594,-0.08203125,-0.060302734,-0.11230469,-0.115234375,-0.17285156,-0.063964844,-0.23828125,0.103027344,0.057373047,-0.06298828,-0.033203125,-0.13378906,0.13964844,-0.0075683594,-0.33203125,0.13964844,-0.103515625,0.045410156,0.051757812,-0.12011719,-0.100097656,0.036621094,0.119140625,-0.106933594,-0.14648438,-0.12695312,-0.17675781,-0.17871094,-0.056640625,-0.030761719,0.088378906,-0.1640625,0.04711914,-0.19726562,-0.10546875,-0.047851562,-0.080078125,0.067871094,-0.109375,-0.16699219,0.11816406,-0.12597656,0.0546875,0,0,0,0,0,0,0,0},{-0.01953125,0.0059509277,-0.13671875,0.038085938,-0.14941406,0.05883789,-0.018188477,0.06982422,0.038330078,-0.115722656,-0.10595703,-0.048339844,-0.084472656,-0.18652344,-0.107910156,-0.16308594,0.061523438,0.0026550293,0.056884766,-0.07519531,0.08886719,-0.106933594,-0.056152344,0.008483887,0.07421875,-0.06347656,-0.061523438,0.09716797,-0.18359375,-0.07080078,-0.15625,-0.13671875,-0.20996094,-0.009033203,-0.09863281,-0.19433594,-0.13476562,-0.16894531,0.005706787,-0.011169434,0.0072021484,-0.07128906,-0.16894531,0.09814453,-0.09765625,-0.08154297,-0.05859375,-0.091308594,-0.048583984,0.064453125,0.03955078,-0.064453125,-0.20605469,-0.037109375,-0.02368164,-0.10253906,-0.1484375,0.08154297,0.091308594,-0.01940918,0.033691406,-0.14160156,-0.14257812,0.012512207,-0.076171875,0.06689453,-0.049560547,-0.16210938,0.068847656,0.011047363,0.11230469,-0.13378906,-0.13769531,-0.16601562,-0.14648438,-0.012878418,-0.028442383,0.043945312,0.080078125,-0.030273438,0.045654297,-0.18457031,-0.09472656,-0.0703125,-0.12011719,-0.072265625,0.044189453,0.11279297,-0.08251953,0.1796875,0.06298828,-0.15039062,-0.0107421875,0.10107422,0.10107422,-0.08886719,-0.19824219,-0.01184082,-0.16210938,-0.048828125,0.040527344,-0.08642578,-0.13671875,-0.15625,-0.16210938,-0.18261719,0.05517578,-0.12158203,-0.0047302246,-0.07080078,0.03857422,-0.018432617,0.084472656,0.03955078,-0.109375,0.076660156,0.01940918,-0.02331543,-0.14941406,0.11621094,0,0,0,0,0,0,0,0},{-0.014953613,0.016357422,0.0062561035,0.02319336,0.014465332,-0.096191406,0.006591797,0.0859375,-0.044189453,0.013366699,0.016113281,-0.19042969,0.15136719,0.16699219,-0.1171875,-0.20703125,0.15917969,0.16699219,0.010986328,0.21484375,0.21191406,0.03491211,0.012451172,-0.17285156,0.15039062,-0.08984375,-0.15917969,0.123046875,0.25585938,0.07519531,0.13964844,-0.16894531,0.032958984,0.023925781,-0.057617188,0.033935547,0.00793457,-0.04663086,-0.18261719,0.09033203,0.076171875,-0.029296875,-0.041748047,0.088378906,0.12695312,-0.15234375,-0.032226562,-0.015136719,0.060791016,0.13476562,-0.025756836,0.107910156,-0.07421875,-0.06933594,-0.18457031,0.06738281,-0.040771484,-0.10205078,0.28125,0.11767578,-0.14648438,0.036376953,-0.09472656,0.068359375,-0.16015625,-0.037841797,-0.03491211,-0.18847656,-0.12451172,0.06689453,-0.076660156,-0.028442383,-0.08105469,0.13671875,0.057128906,-0.053955078,0.02355957,0.040283203,0.12109375,0.087402344,-0.040039062,-0.0859375,-0.16015625,-0.02319336,-0.12597656,0.018554688,0.037841797,0.26953125,-0.15332031,0.06347656,-0.14746094,0.057617188,-0.14941406,-0.107421875,0.053710938,0.04711914,0.22949219,-0.061035156,-0.06201172,0.12597656,-0.022583008,-0.03125,0.041259766,0.04248047,-0.047607422,-0.18359375,0.05859375,-0.27148438,0.03491211,-0.09375,-0.13867188,-0.051757812,0.024902344,0.07324219,0.24707031,-0.11230469,-0.04248047,-0.07763672,0.2265625,-0.0030670166,0,0,0,0,0,0,0,0},{-0.18652344,0.037109375,-0.053466797,0.028198242,-0.052734375,0.026977539,0.034179688,0.13476562,-0.12060547,-0.22265625,-0.07714844,-0.031982422,-0.11035156,-0.17578125,0.034179688,-0.14453125,0.17089844,-0.03955078,0.0033874512,0.067871094,-0.049560547,-0.25390625,-0.05419922,-0.0390625,-0.012939453,-0.2890625,-0.14160156,-0.004638672,-0.16796875,-0.22167969,-0.20605469,-0.053466797,0.12890625,-0.171875,0.12451172,-0.2578125,0.17773438,0.033935547,-0.032958984,-0.12207031,-0.03540039,-0.25585938,-0.07421875,0.0015487671,-0.123046875,-0.13964844,0.04345703,-0.17871094,-0.060546875,-0.16015625,-0.04272461,0.10546875,-0.03955078,0.011291504,0.060302734,-0.020141602,-0.09277344,-0.026733398,0.041259766,-0.08544922,0.033691406,-0.063964844,0.057617188,0.047607422,-0.104003906,0.043701172,0.115722656,-0.040283203,0.072265625,-0.0703125,-0.09765625,0.05810547,-0.064453125,-0.01373291,-0.018066406,0.04272461,-0.12890625,-0.22070312,0.028320312,-0.2265625,0.005584717,0.17089844,-0.15136719,-0.059326172,0.119628906,-0.019042969,0.026245117,-0.104003906,-0.18164062,-0.22363281,0.08154297,-0.12158203,-0.084472656,0.13085938,-0.0119018555,-0.12402344,-0.25,-0.2109375,-0.21777344,-0.15234375,0.024902344,0.20507812,-0.22753906,-0.099121094,-0.064941406,0.018920898,-0.068359375,-0.100097656,0.0036315918,0.14160156,0.14257812,0.12158203,-0.18457031,-0.12695312,0.020874023,-0.00076293945,-0.12792969,-0.06347656,-0.1953125,0.10986328,0,0,0,0,0,0,0,0},{-0.016479492,0.111816406,-0.19042969,0.13574219,-0.035888672,0.03466797,-0.050048828,-0.025146484,0.008056641,-0.12109375,-0.049804688,-0.032958984,0.15625,-0.04663086,-0.11376953,-0.060791016,0.010559082,0.14941406,0.109375,-0.032470703,0.12158203,0.019897461,0.011474609,-0.0066833496,-0.037109375,-0.08105469,0.026977539,-0.020751953,-0.021362305,-0.26171875,-0.028198242,0.11328125,-0.09716797,0.03881836,-0.09472656,-0.13574219,0.095214844,0.07519531,0.043701172,0.10253906,0.06689453,-0.0047302246,0.0036315918,-0.060302734,0.118652344,-0.063964844,-0.16699219,0.09716797,0.1640625,-0.04638672,-0.12792969,-0.083984375,0.0014343262,-0.022094727,0.18359375,0.17382812,0.029541016,0.07763672,0.22363281,0.088378906,0.17480469,-0.049316406,-0.06982422,0.15332031,0.14160156,0.14941406,0.16308594,0.14941406,0.072265625,0.067871094,-0.03149414,0.076171875,-0.12158203,0.09863281,-0.09765625,-0.064941406,-0.0625,0.15527344,0.044677734,0.13476562,0.10058594,0.052001953,0.1015625,-0.19726562,-0.014465332,0.21972656,0.12792969,0.060791016,-0.17089844,0.026367188,-0.05029297,-0.1328125,-0.017089844,0.099121094,0.01940918,0.0859375,0.16796875,-0.20117188,0.10498047,-0.24121094,0.15917969,-0.1953125,-0.04711914,-0.28710938,0.0064697266,-0.09814453,0.0625,0.030883789,-0.075683594,-0.0703125,0.17773438,0.06298828,-0.03955078,-0.20214844,-0.064941406,0.13671875,0.15917969,-0.07714844,0.07763672,-0.09277344,0,0,0,0,0,0,0,0},{0.19238281,0.13671875,-0.17285156,0.12158203,0.26757812,0.048828125,-0.015319824,0.041748047,-0.111816406,0.049804688,-0.20898438,0.18652344,0.05493164,0.09082031,-0.030029297,-0.017944336,-0.05078125,0.016113281,-0.25390625,0.01928711,-0.25976562,-0.09375,0.15527344,0.15039062,0.119140625,-0.103515625,-0.16503906,0.04711914,0.015319824,-0.16992188,-0.00018978119,-0.032958984,-0.1875,-0.10205078,-0.12060547,-0.21972656,0.10498047,0.12402344,-0.16308594,0.13574219,-0.1171875,0.10205078,-0.24609375,0.1328125,-0.10595703,-0.06298828,-0.0008430481,-0.029052734,0.027954102,-0.06347656,0.033447266,-0.11230469,-0.01965332,0.16992188,0.104003906,0.041992188,-0.12890625,-0.15136719,-0.13867188,-0.0007972717,0.18457031,-0.01928711,-0.09033203,-0.023803711,0.22070312,0.12695312,0.15527344,0.07421875,-0.13671875,0.12109375,-0.110839844,-0.10595703,0.060058594,-0.10253906,-0.13964844,0.15917969,0.25195312,-0.29296875,-0.23144531,-0.16894531,0.08642578,-0.19042969,-0.23242188,-0.16601562,0.14941406,0.24902344,-0.072753906,0.003768921,-0.24804688,-0.0859375,-0.12451172,0.15527344,-0.0019454956,-0.024414062,-0.13769531,0.12597656,0.025878906,-0.29296875,-0.09863281,0.017333984,-0.048583984,0.096191406,-0.0019454956,-0.017944336,0.018554688,-0.059814453,-0.10449219,0.096191406,0.022338867,0.067871094,0.08154297,0.08105469,-0.052734375,-0.052001953,-0.12451172,-0.030029297,0.13671875,-0.05908203,0.17382812,-0.026123047,0,0,0,0,0,0,0,0},{0.11376953,0.011779785,-0.21777344,-0.07421875,-0.091308594,-0.068359375,0.1640625,-0.037597656,0.017333984,-0.12695312,-0.100097656,0.23242188,-0.17675781,0.114746094,-0.16992188,0.06542969,-0.15917969,0.14746094,-0.07519531,-0.095703125,0.16894531,-0.15136719,-0.026855469,0.0032196045,-0.16699219,-0.13183594,0.009399414,0.015625,-0.14648438,-0.09277344,0.08935547,0.08154297,0.23339844,-0.064941406,0.13867188,-0.21191406,-0.07910156,0.068847656,0.13574219,-0.13085938,0.06933594,-0.265625,-0.15234375,0.122558594,0.10839844,-0.125,-0.061767578,-0.13183594,-0.140625,-0.0029296875,-0.064453125,-0.1328125,0.014953613,-0.0079956055,0.03515625,-0.083496094,-0.087402344,0.27148438,0.024902344,0.05859375,-0.1328125,-0.19140625,0.080078125,-0.115722656,0.13574219,0.044433594,-0.015258789,-0.1328125,-0.13378906,0.007446289,-0.1875,0.16210938,-0.1796875,0.103027344,0.21679688,-0.17089844,0.24121094,-0.056640625,-0.20410156,0.100097656,-0.053466797,-0.009094238,0.019042969,-0.08251953,0.036621094,-0.18554688,0.110839844,-0.061523438,0.021850586,-0.032958984,0.02319336,0.060791016,-0.00020122528,0.036132812,-0.053222656,-0.15625,0.05908203,-0.06542969,0.044189453,-0.076171875,-0.02709961,-0.14941406,-0.29882812,-0.22167969,0.064453125,0.06298828,-0.14160156,0.07373047,0.1953125,0.13867188,0.12988281,-0.19140625,-0.059814453,0.076660156,0.080566406,0.07763672,-0.13476562,-0.104003906,-0.06298828,-0.0041503906,0,0,0,0,0,0,0,0},{-0.03881836,-0.06347656,-0.15917969,0.08203125,0.04638672,-0.21386719,-0.03955078,0.021850586,0.03173828,-0.21875,-0.08154297,-0.08935547,-0.027832031,0.080078125,-0.15429688,0.11035156,-0.043945312,-0.09326172,-0.14550781,0.104003906,0.099121094,-0.18457031,-0.08154297,-0.049560547,0.08935547,-0.13378906,-0.0065307617,0.05029297,0.17089844,-0.16894531,0.123046875,0.12695312,-0.053710938,-0.095214844,-0.02722168,-0.041748047,0.07519531,-0.11621094,0.00010061264,-0.07080078,-0.028930664,-0.16210938,-0.14941406,-0.15527344,-0.12695312,-0.21679688,0.07373047,-0.03149414,0.05810547,-0.0018234253,0.029052734,0.11425781,-0.15234375,-0.17382812,0.072753906,0.029296875,-0.09326172,-0.10595703,0.17773438,-0.016845703,-0.07861328,-0.30859375,-0.010192871,0.055419922,-0.13964844,0.07470703,-0.087402344,0.056152344,0.0053710938,-0.18554688,-0.010253906,-0.029296875,0.13574219,-0.0126953125,0.10449219,0.0013504028,0.16699219,-0.26757812,-0.19628906,-0.096191406,0.041503906,0.125,0.10986328,-0.0859375,0.09472656,-0.19824219,0.03125,0.025268555,-0.1796875,0.017333984,-0.100097656,-0.016235352,0.002029419,-0.078125,0.033691406,-0.051757812,0.033691406,-0.20898438,-0.122558594,-0.1875,0.041992188,0.06347656,-0.044921875,-0.4140625,-0.13574219,-0.10839844,0.13671875,0.051513672,0.0859375,-0.107421875,0.10205078,-0.22265625,-0.13085938,-0.19042969,-0.049072266,0.19628906,0.030273438,-0.055664062,-0.05834961,0.115722656,0,0,0,0,0,0,0,0},{-0.22949219,-0.2734375,-0.18457031,0.122558594,0.013244629,-0.12402344,0.012634277,0.12792969,-0.265625,-0.07373047,-0.13671875,0.11376953,-0.006652832,-0.1640625,-0.07910156,-0.12792969,-0.12207031,0.037353516,-0.123535156,-0.056640625,-0.1640625,0.10205078,-0.22363281,0.00051498413,-0.17871094,-0.359375,0.11230469,-0.059326172,-0.10839844,-0.1328125,0.059570312,0.01977539,-0.09716797,0.13476562,-0.19238281,-0.0033111572,-0.111328125,-0.0234375,0.080566406,0.12890625,0.21582031,0.040039062,-0.11767578,0.13964844,-0.14746094,0.017456055,0.061767578,0.072265625,-0.08642578,-0.08496094,0.04736328,-0.18066406,-0.20214844,0.16894531,-0.16699219,-0.27929688,-0.08251953,-0.09082031,-0.06640625,-0.06689453,-0.14746094,-0.12158203,0.055908203,-0.05834961,-0.14550781,-0.17089844,0.064941406,0.0051879883,0.008728027,-0.14453125,-0.18847656,-0.140625,-0.1796875,-0.10595703,-0.036376953,-0.21582031,-0.122558594,-0.17285156,0.045654297,-0.028930664,-0.22265625,-0.12158203,-0.06689453,-0.12988281,-0.26953125,-0.032226562,-0.0037384033,0.104003906,0.032470703,0.06982422,-0.10253906,-0.039794922,-0.03955078,0.04321289,-0.0061035156,-0.10449219,-0.14257812,-0.0009994507,-0.17382812,-0.22265625,-0.017333984,0.041748047,-0.029541016,-0.091796875,-0.3046875,0.008666992,-0.1171875,-0.006713867,-0.11376953,-0.13085938,-0.080566406,0.19726562,-0.11376953,-0.12695312,-0.0390625,0.0126953125,-0.18261719,0.071777344,-0.11425781,-0.078125,0,0,0,0,0,0,0,0},{-0.17675781,-0.043701172,-0.15136719,0.10546875,-0.14648438,-0.037109375,-0.083496094,0.06689453,-0.0030212402,-0.06298828,-0.15429688,-0.171875,0.063964844,-0.15527344,-0.004547119,-0.13964844,-0.13183594,0.015136719,-0.111816406,0.012023926,0.049072266,-0.072265625,0.032714844,0.106933594,-0.14648438,-0.19433594,-0.099609375,-0.10205078,-0.12792969,-0.14550781,0.140625,-0.0546875,0.12695312,0.06738281,0.010070801,-0.18847656,-0.0028686523,-0.13574219,-0.1328125,0.103027344,0.041992188,0.076660156,0.0024414062,0.07324219,-0.123535156,-0.12695312,-0.10498047,-0.03564453,-0.026611328,-0.11035156,-0.09326172,-0.09863281,-0.106933594,-0.171875,0.00042533875,0.012573242,-0.087890625,0.047851562,-0.16113281,-0.12695312,0.12597656,-0.21484375,-0.15527344,-0.07080078,0.15722656,-0.10839844,-0.036132812,-0.13378906,-0.076660156,-0.041015625,-0.064453125,-0.063964844,0.046142578,0.021972656,-0.10253906,-0.033447266,-0.15722656,0.009338379,-0.19042969,-0.10449219,-0.17773438,0.08935547,-0.087890625,-0.17871094,-0.07373047,0.072265625,-0.07861328,0.048339844,0.017822266,0.03491211,-0.12597656,-0.21777344,-0.049804688,-0.099609375,-0.17089844,-0.13671875,-0.12890625,-0.06738281,0.111328125,-0.024536133,-0.06201172,-0.07861328,-0.27929688,-0.23242188,0.017578125,0.014343262,0.045166016,0.13085938,0.019165039,-0.140625,-0.057617188,0.09277344,-0.011108398,-0.034423828,-0.016113281,0.12402344,-0.053466797,-0.09277344,0.048583984,-0.19824219,0,0,0,0,0,0,0,0},{-0.053466797,0.055908203,-0.09423828,0.041015625,0.07714844,0.12109375,0.018676758,-0.001914978,0.072265625,-0.046875,-0.09765625,-0.026611328,0.11425781,0.011108398,-0.118652344,0.05883789,-0.041259766,-0.046875,-0.12158203,0.11279297,0.111328125,0.12451172,-0.030883789,-0.118652344,0.15722656,-0.31054688,0.123046875,0.087890625,-0.067871094,-0.0019836426,-0.11035156,0.057128906,-0.043945312,-0.03112793,-0.08984375,0.017944336,0.16210938,-0.008239746,-0.080078125,-0.15527344,-0.05810547,0.16503906,-0.100097656,0.20410156,-0.10546875,-0.03149414,-0.018676758,-0.12792969,0.17382812,0.15136719,0.0008354187,-0.012145996,-0.11279297,-0.21289062,0.09326172,0.08203125,0.104003906,-0.014953613,0.0060424805,-0.1953125,0.047851562,-0.33007812,-0.04663086,0.0027160645,-0.14160156,0.084472656,-0.0390625,-0.09814453,-0.0031433105,0.033447266,-0.05517578,-0.16308594,-0.09033203,-0.064453125,0.17871094,-0.12695312,0.03100586,0.068359375,-0.19433594,0.03466797,0.10986328,-0.048583984,0.04296875,-0.03930664,0.0048828125,-0.19140625,0.16308594,0.0040893555,0.011413574,0.10205078,0.01184082,-0.2734375,-0.09033203,0.1484375,-0.027832031,0.12011719,-0.12890625,-0.14648438,-0.03881836,-0.2265625,-0.12109375,-0.061523438,-0.09277344,-0.3203125,-0.1953125,-0.13476562,-0.14746094,0.06591797,-0.079589844,-0.067871094,-0.11376953,-0.04663086,-0.16503906,-0.07470703,0.11279297,0.171875,0.11230469,0.13378906,0.16308594,-0.048828125,0,0,0,0,0,0,0,0},{0.12792969,-0.10888672,-0.12988281,-0.045898438,0.16699219,0.1640625,0.04296875,-0.012084961,-0.07128906,-0.032470703,0.013793945,0.08935547,-0.099121094,-0.091796875,-0.044433594,0.12109375,-0.20214844,-0.13867188,-0.045410156,-0.19335938,-0.21875,0.15527344,0.13867188,-0.09082031,0.084472656,-0.01977539,-0.27148438,-0.095214844,0.052246094,-0.12109375,-0.103515625,0.07519531,0.0003566742,-0.20507812,-0.0064697266,-0.27734375,0.0703125,0.16308594,0.17871094,0.080566406,-0.20214844,-0.12890625,-0.1796875,0.036621094,-0.1953125,-0.049072266,-0.111816406,-0.07373047,-0.06738281,-0.22460938,-0.18652344,-0.2421875,0.029174805,0.18554688,-0.1171875,-0.02368164,0.13378906,-0.16308594,-0.0045776367,-0.12890625,0.11328125,-0.11621094,0.12158203,0.21289062,0.07373047,0.104003906,-0.0063476562,-0.032714844,-0.13867188,-0.063964844,0.061767578,-0.16503906,0.052001953,-0.17871094,0.140625,-0.045898438,-0.25976562,-0.23144531,-0.1875,0.13085938,-0.23144531,0.052978516,0.1015625,-0.12451172,0.079589844,-0.028076172,0.032958984,0.095214844,-0.3046875,-0.07080078,-0.021484375,-0.15429688,-0.24902344,0.05029297,-0.078125,-0.21289062,0.06982422,-0.07519531,-0.14648438,-0.07763672,0.06689453,0.171875,0.16015625,-0.19433594,-0.06201172,-0.016113281,0.119628906,-0.16992188,0.21875,0.031982422,0.010925293,0.1015625,-0.0008277893,-0.22851562,-0.056640625,0.052246094,-0.036865234,0.13867188,0.030395508,0.17675781,0,0,0,0,0,0,0,0},{0.15527344,-0.078125,-0.008361816,0.16699219,0.095703125,0.18554688,0.053710938,0.2578125,0.012329102,0.020874023,-0.15820312,0.16308594,0.125,-0.087402344,-0.14550781,-0.09277344,0.19824219,0.043701172,0.045166016,-0.021484375,-0.056396484,-0.08203125,0.01373291,-0.05444336,-0.008422852,-0.06689453,-0.24121094,-0.12011719,0.010192871,-0.014282227,0.07519531,0.08203125,-0.068847656,-0.11669922,-0.025146484,-0.047607422,-0.07373047,0.059814453,-0.057617188,0.20996094,-0.043945312,-0.09472656,-0.07373047,0.06591797,0.21679688,-0.072265625,0.013122559,-0.17773438,0.13574219,-0.26367188,0.03857422,-0.07373047,-0.052490234,-0.07128906,0.11669922,0.14941406,0.111816406,-0.02368164,-0.02734375,0.20507812,0.000113487244,0.06689453,-0.15820312,0.056396484,0.10253906,-0.06298828,0.043701172,-0.076660156,0.028442383,0.15625,-0.011474609,-0.07470703,0.10449219,-0.0021820068,-0.092285156,-0.007598877,-0.016967773,0.14648438,0.011047363,0.13378906,-0.009216309,-0.10644531,-0.01977539,0.021850586,-0.15917969,-0.013916016,-0.044921875,0.014282227,-0.19140625,0.068359375,0.07373047,0.026977539,0.087890625,0.075683594,0.24902344,-0.16308594,0.140625,-0.12792969,-0.118652344,-0.01574707,-0.22753906,-0.056396484,-0.24316406,-0.114746094,0.12011719,0.06298828,-0.1796875,-0.03857422,0.064941406,-0.16503906,0.033691406,0.08105469,-0.083984375,-0.14550781,-0.05493164,0.040527344,0.0703125,-0.038330078,-0.14355469,-0.056152344,0,0,0,0,0,0,0,0},{-0.16113281,-0.11328125,-0.10644531,0.064941406,-0.06982422,-0.041992188,-0.09863281,-0.025756836,-0.20117188,-0.20898438,0.09375,-0.03173828,0.021728516,-0.13964844,-0.072753906,0.13476562,0.10839844,0.17773438,-0.030029297,-0.14550781,0.03881836,-0.14746094,-0.24609375,0.11816406,-0.18066406,0.03881836,0.15429688,-0.15917969,-0.01586914,-0.13769531,0.14941406,-0.19042969,-0.12792969,-0.0066833496,-0.22265625,-0.24609375,0.016235352,0.17871094,0.083496094,-0.17675781,-0.09765625,-0.09814453,0.12158203,-0.16113281,-0.19628906,-0.14648438,-0.06591797,0.083496094,-0.08203125,0.087402344,0.024169922,0.026245117,-0.18359375,0.10449219,0.13378906,0.021972656,-0.17773438,-0.15429688,0.037109375,-0.052734375,0.1484375,0.0029754639,0.014099121,0.12988281,0.05126953,-0.14648438,0.064941406,-0.09082031,-0.114746094,-0.111816406,-0.0064086914,-0.20996094,0.035888672,-0.061767578,0.02734375,0.05493164,-0.123535156,0.043701172,-0.11816406,0.14550781,0.076171875,-0.18847656,0.024169922,-0.26953125,0.017944336,-0.16015625,-0.034179688,-0.12792969,-0.08544922,0.28125,0.034423828,-0.05493164,-0.3984375,-0.029052734,-0.15722656,0.12792969,0.06298828,0.00680542,-0.18847656,-0.20898438,-0.024902344,-0.12402344,-0.15039062,-0.096191406,0.16992188,0.009216309,-0.140625,0.16601562,-0.03100586,0.14550781,-0.16699219,0.1171875,0.06640625,-0.10058594,0.057128906,-0.08300781,-0.08984375,0.10546875,0.017822266,-0.053955078,0,0,0,0,0,0,0,0},{-0.071777344,-0.13769531,-0.14648438,0.06542969,0.0044555664,0.064453125,0.061035156,0.114746094,-0.14550781,0.10644531,-0.14453125,-0.012207031,-0.057373047,0.2265625,-0.13964844,-0.064453125,-0.25585938,0.099121094,-0.119628906,-0.16113281,0.053222656,-0.09863281,0.16601562,-0.125,0.28515625,0.041503906,-0.0390625,0.030151367,0.13085938,-0.18554688,-0.13183594,-0.095214844,-0.05053711,-0.16894531,-0.03930664,-0.36132812,-0.028808594,-0.14746094,-0.15039062,-0.19433594,0.25585938,-0.0033874512,0.10888672,0.063964844,-0.029052734,0.02758789,-0.115234375,-0.019165039,0.17382812,0.14941406,0.036865234,-0.09863281,0.140625,0.03112793,-0.0005187988,0.16113281,-0.09472656,0.18554688,0.075683594,-0.035888672,-0.013122559,-0.048339844,0.104003906,-0.010925293,-0.08203125,-0.005340576,-0.021728516,0.043945312,-0.13574219,-0.068359375,-0.1953125,0.015197754,-0.16113281,0.12792969,-0.068359375,0.021972656,0.018066406,-0.06347656,-0.20996094,0.06689453,0.18261719,-0.111816406,-0.119628906,-0.13183594,0.056884766,0.10644531,-0.17675781,-0.061279297,-0.05859375,-0.17480469,-0.17285156,0.020263672,-0.106933594,0.115234375,-0.13476562,-0.0011901855,-0.1875,-0.032958984,0.17480469,0.052734375,0.072753906,0.015319824,-0.17480469,-0.25195312,-0.06298828,0.12060547,-0.1015625,-0.14355469,0.004547119,0.016113281,-0.043945312,-0.064941406,-0.11279297,-0.19628906,0.03173828,0.09667969,0.107421875,-0.018676758,-0.067871094,-0.17285156,0,0,0,0,0,0,0,0},{0.12158203,0.091796875,-0.18847656,0.023071289,-0.05102539,-0.18945312,-0.020751953,-0.068359375,-0.13769531,-0.09423828,0.0099487305,0.099121094,-0.14355469,-0.008666992,-0.13183594,0.011962891,-0.020751953,-0.05810547,-0.0095825195,-0.16894531,-0.12695312,-0.044189453,0.04736328,0.030517578,-0.12988281,-0.10839844,-0.0076904297,-0.15722656,0.038085938,-0.09472656,-0.063964844,0.08154297,-0.21191406,-0.15234375,0.076660156,-0.107910156,0.041503906,-0.035888672,-0.1796875,-0.041503906,-0.09423828,-0.036621094,-0.07714844,-0.13964844,-0.080078125,-0.10449219,-0.119140625,-0.13964844,-0.049560547,0.025756836,0.10498047,0.13476562,0.018920898,0.012451172,0.12402344,-0.12890625,-0.07714844,0.012268066,-0.10546875,-0.0049743652,-0.03112793,-0.15234375,-0.19921875,-0.029296875,-0.16015625,-0.04296875,-0.04296875,0.087890625,-0.045410156,-0.052246094,0.111816406,0.005004883,0.15136719,-0.118652344,-0.049072266,-0.0040283203,-0.084472656,-0.08886719,-0.12158203,0.14746094,-0.17285156,0.14746094,0.013916016,-0.17285156,0.004852295,0.0004119873,0.1328125,-0.21484375,-0.08984375,-0.107910156,-0.030761719,-0.10253906,-0.15429688,0.13183594,0.038330078,-0.07324219,-0.12597656,-0.28125,-0.0546875,-0.123046875,-0.068359375,0.083984375,-0.296875,-0.036376953,0.02746582,-0.061035156,0.09033203,-0.055419922,-0.013061523,-0.18164062,-0.046142578,0.059570312,-0.140625,-0.018310547,0.0859375,-0.16503906,0.08154297,0.15820312,-0.08691406,-0.087402344,0,0,0,0,0,0,0,0},{-0.1171875,-0.1875,-0.044677734,0.12695312,0.10449219,-0.16601562,-0.03149414,0.053466797,-0.23242188,-0.03881836,-0.08496094,-0.029174805,-0.006378174,-0.15136719,-0.15039062,-0.052490234,0.15527344,0.055908203,-0.083984375,0.05419922,-0.118652344,-0.014343262,-0.12597656,0.016113281,-0.07421875,0.03540039,-0.040283203,-0.110839844,0.088378906,-0.15527344,-0.107910156,-0.11376953,-0.06933594,-0.08496094,-0.0115356445,-0.34179688,-0.15625,0.06591797,-0.021362305,-0.08886719,-0.17089844,-0.13574219,-0.01159668,-0.14257812,0.079589844,-0.041503906,-0.14160156,-0.10498047,-0.16894531,0.0054016113,-0.07861328,-0.007598877,0.005004883,0.036132812,-0.03149414,-0.14550781,0.09082031,-0.013549805,-0.13085938,-0.14453125,-0.05517578,-0.15234375,-0.15722656,-0.15429688,0.071777344,0.06640625,-0.14355469,0.15917969,-0.09423828,0.084472656,0.076660156,0.03515625,0.068847656,0.061767578,0.005584717,-0.087890625,-0.08544922,-0.0546875,0.035888672,-0.13476562,-0.11669922,0.12451172,-0.1796875,-0.06640625,-0.07373047,-0.02355957,-0.035888672,-0.10107422,-0.16992188,-0.13671875,0.004333496,-0.13671875,-0.11376953,0.026855469,0.0859375,0.053955078,-0.09277344,-0.328125,-0.12988281,0.017211914,0.11816406,0.13378906,-0.07714844,-0.16308594,-0.012390137,0.16992188,0.033691406,-0.026123047,0.13183594,0.08300781,0.040527344,0.11816406,-0.13867188,-0.029785156,-0.110839844,0.06738281,-0.1015625,0.10205078,-0.080566406,-0.080566406,0,0,0,0,0,0,0,0},{-0.15625,-0.04248047,-0.05859375,-0.013183594,-0.06347656,0.056884766,0.0016174316,-0.08886719,-0.15429688,-0.07470703,0.11816406,0.17675781,0.025024414,0.21484375,0.029418945,0.014099121,-0.125,0.07373047,-0.0076293945,0.026733398,-0.111328125,0.068359375,0.02368164,-0.10498047,0.09423828,-0.014770508,0.018066406,-0.390625,-0.16503906,0.010192871,-0.009033203,0.17382812,0.088378906,-0.05883789,0.06689453,-0.036865234,0.04345703,0.025756836,0.09472656,-0.115722656,-0.1328125,0.043701172,0.006958008,0.09375,-0.06591797,0.030273438,0.14648438,0.07080078,0.123046875,-0.11230469,0.03466797,-0.21484375,-0.1328125,0.01184082,0.15136719,0.16796875,0.04321289,-0.017211914,0.13671875,-0.03955078,-0.0031280518,-0.078125,0.0703125,0.055664062,-0.052734375,0.068847656,0.15722656,-0.12402344,0.027832031,-0.14453125,0.05883789,-0.037841797,-0.059570312,-0.00064468384,-0.10253906,-0.1328125,-0.08984375,-0.007751465,-0.071777344,0.16601562,0.21289062,0.13867188,-0.09423828,-0.052490234,-0.03100586,-0.1328125,-0.015991211,-0.12402344,0.008056641,-0.22167969,-0.14257812,0.038085938,-0.021972656,0.015075684,-0.107910156,-0.014099121,-0.045654297,0.08154297,-0.029296875,0.052001953,0.048339844,-0.14160156,0.13671875,0.08203125,0.11767578,0.0067749023,-0.08154297,0.29296875,-0.111328125,-0.12988281,0.03491211,-0.05493164,-0.18652344,-0.009033203,-0.16503906,0.056640625,-0.09423828,-0.053710938,0.025268555,0.14746094,0,0,0,0,0,0,0,0},{0.03881836,-0.18359375,-0.15234375,0.09326172,-0.20019531,-0.15820312,0.029663086,0.061523438,-0.10498047,-0.21777344,-0.125,-0.21289062,-0.20410156,-0.19628906,0.052978516,0.18261719,-0.049072266,0.10595703,-0.18945312,-0.1015625,0.140625,0.096191406,-0.064941406,-0.031982422,0.0001077652,0.04711914,-0.02331543,-0.1953125,0.026733398,-0.19335938,0.0019836426,-0.20214844,-0.10595703,-0.07128906,-0.1484375,-0.12597656,-0.15039062,-0.12597656,-0.0703125,0.08300781,-0.20898438,-0.25976562,-0.0016403198,0.018554688,-0.10546875,-0.18554688,-0.027832031,-0.07763672,-0.11767578,-0.0026397705,-0.006225586,0.005279541,-0.13671875,0.018066406,0.04663086,-0.16503906,-0.19238281,-0.06738281,-0.080078125,0.13183594,-0.09423828,-0.06933594,0.028442383,-0.0036315918,0.083984375,-0.01574707,0.12988281,-0.13183594,0.040039062,-0.1328125,0.09667969,-0.115234375,0.15527344,-0.16699219,-0.13964844,-0.09326172,-0.055664062,0.012023926,0.013793945,-0.14453125,-0.029174805,0.076660156,0.0625,-0.11669922,-0.045410156,-0.14550781,-0.011413574,0.018188477,0.078125,0.12011719,-0.050048828,-0.15625,-0.1015625,0.080078125,-0.10253906,-0.091796875,-0.13574219,-0.067871094,-0.017089844,-0.25390625,-0.075683594,-0.14550781,-0.0028533936,-0.13867188,-0.1015625,-0.12890625,0.122558594,0.06591797,-0.110839844,0.08251953,0.029174805,-0.09472656,-0.1328125,-0.12207031,-0.17382812,0.0069885254,0.076171875,-0.033447266,-0.010864258,-0.11669922,0,0,0,0,0,0,0,0},{-0.15136719,0.17675781,-0.28515625,-0.11376953,-0.22363281,-0.07910156,-0.10253906,0.030029297,0.099609375,-0.1328125,-0.21582031,0.084472656,0.068359375,-0.16308594,-0.19921875,-0.10595703,-0.0703125,-0.125,-0.044189453,0.049804688,-0.13769531,-0.053710938,0.13574219,0.018432617,0.24316406,-0.119140625,0.006378174,-0.034179688,-0.119628906,-0.17675781,0.021240234,0.114746094,-0.075683594,-0.045166016,0.11425781,-0.16113281,-0.036865234,-0.048339844,-0.06591797,-0.09472656,0.20214844,0.041992188,0.11230469,-0.015380859,0.08886719,0.033935547,-0.088378906,-0.19628906,0.09277344,0.08251953,-0.013366699,-0.10107422,-0.19628906,0.05834961,-0.123046875,-0.060302734,0.11425781,-0.27148438,-0.041259766,0.092285156,0.044189453,-0.26757812,0.048828125,-0.04663086,-0.1015625,-0.036376953,-0.080078125,0.013671875,0.04736328,0.12158203,-0.28125,0.14746094,-0.16210938,-0.13378906,-0.18554688,-0.04711914,-0.018310547,0.033203125,-0.052734375,0.107421875,0.057128906,0.03491211,-0.16113281,0.0625,-0.056396484,0.25,-0.12597656,-0.037841797,-0.08105469,0.14648438,-0.092285156,-0.092285156,0.028686523,0.045898438,0.037841797,-0.140625,0.020874023,-0.087890625,-0.011108398,0.024536133,0.11279297,0.18066406,-0.026855469,0.0043945312,0.015014648,-0.09667969,0.15917969,0.04321289,-0.05029297,0.060791016,0.16601562,-0.0703125,-0.14550781,-0.11425781,-0.08496094,0.12597656,-0.068847656,0.032714844,-0.051513672,-0.125,0,0,0,0,0,0,0,0},{-0.18847656,-0.13769531,-0.083496094,0.068847656,-0.008239746,-0.037353516,-0.033203125,0.020751953,0.061035156,-0.08886719,0.010192871,0.07470703,0.007080078,0.10644531,-0.13867188,0.087402344,-0.0126953125,-0.09814453,-0.16601562,0.028320312,0.041748047,-0.08203125,-0.09814453,-0.09033203,0.052734375,-0.171875,0.044189453,-0.072265625,0.1640625,-0.04296875,-0.030639648,-0.103027344,-0.2421875,-0.106933594,-0.049072266,-0.023925781,-0.15234375,-0.088378906,-0.087890625,0.032714844,-0.12890625,-0.17578125,-0.049316406,0.03125,-0.22851562,-0.15332031,-0.16503906,-0.07373047,-0.25976562,-0.024536133,0.0011291504,-0.14355469,-0.22070312,0.076171875,0.18261719,-0.06591797,-0.11816406,-0.16992188,-0.030273438,-0.11376953,-0.14941406,-0.1484375,0.080078125,0.12011719,0.044189453,0.16894531,-0.17382812,0.012329102,0.00044059753,-0.13574219,0.115722656,-0.16015625,-0.020507812,-0.1484375,-0.020507812,-0.04321289,-0.13085938,-0.15136719,-0.1953125,0.024536133,0.0034179688,-0.012145996,-0.14550781,-0.023803711,0.034423828,-0.12792969,-0.15136719,-0.033691406,-0.14648438,-0.036865234,-0.1328125,-0.10253906,-0.078125,0.067871094,-0.07080078,-0.11279297,-0.053222656,-0.20703125,-0.110839844,-0.2734375,0.042236328,0.056396484,-0.13867188,-0.06933594,0.12890625,-0.019897461,0.06640625,-0.12792969,-0.15625,-0.00038719177,-0.16699219,0.140625,-0.04663086,-0.17871094,-0.029418945,-0.0134887695,0.029785156,-0.123535156,-0.009094238,0.055419922,0,0,0,0,0,0,0,0},{0.15917969,0.026245117,-0.22753906,-0.0029449463,0.21386719,-0.068847656,-0.053710938,-0.06640625,-0.009460449,-0.24804688,-0.00078582764,-0.099121094,-0.16699219,-0.15332031,-0.008361816,0.11230469,-0.029418945,0.045654297,-0.1015625,-0.13867188,0.21484375,0.026855469,-0.20605469,0.053466797,0.009643555,-0.08886719,0.036865234,-0.10107422,-0.14550781,-0.060791016,0.08642578,-0.13378906,0.08154297,-0.21289062,-0.1953125,-0.13574219,0.15722656,0.08251953,0.029052734,-0.068359375,-0.11621094,0.011474609,-0.3046875,-0.036376953,0.03515625,-0.009094238,-0.32617188,-0.27148438,-0.033935547,-0.055664062,0.0039367676,-0.03112793,0.107910156,-0.106933594,0.1171875,-0.14746094,-0.15429688,-0.072265625,0.14648438,0.09814453,-0.052978516,0.030517578,0.13574219,0.14355469,-0.16015625,0.15039062,0.091308594,0.13769531,-0.18457031,-0.068359375,-0.08935547,-0.07519531,0.19726562,-0.12060547,-0.05908203,-0.10546875,-0.15917969,0.06640625,-0.13183594,-0.0062561035,-0.21582031,-0.13378906,-0.051757812,-0.11621094,-0.14550781,-0.28710938,0.19238281,0.08935547,-0.084472656,0.030761719,0.048095703,-0.1015625,0.00035476685,-0.040527344,-0.25,0.025756836,0.063964844,-0.21191406,0.024169922,-0.15234375,0.021972656,-0.1640625,-0.07910156,-0.19433594,-0.08691406,-0.09375,-0.064453125,-0.115722656,0.122558594,-0.13769531,0.011413574,0.14355469,-0.12011719,-0.14746094,-0.17675781,-0.16210938,-0.029785156,-0.21972656,-0.0010299683,0.03125,0,0,0,0,0,0,0,0},{-0.05053711,0.07910156,-0.0126953125,-0.17480469,-0.12158203,0.109375,0.004119873,-0.060791016,-0.17773438,-0.16796875,-0.34765625,-0.10839844,-0.0024414062,0.12207031,0.06298828,0.09326172,0.04736328,0.06591797,-0.12890625,0.034179688,0.018310547,-0.044189453,-0.18945312,-0.12597656,0.024414062,-0.20800781,-0.17382812,-0.10107422,-0.1640625,-0.118652344,-0.12890625,0.09716797,-0.13769531,-0.11376953,-0.045166016,-0.23730469,-0.107421875,0.14550781,-0.08642578,-0.107910156,-0.17675781,0.024169922,0.0003299713,0.006378174,-0.045654297,-0.15429688,-0.19335938,-0.21484375,-0.076171875,-0.095214844,0.018066406,-0.109375,-0.16992188,-0.15820312,0.10888672,-0.0069885254,-0.024047852,-0.015136719,0.017822266,-0.016967773,0.040039062,-0.07763672,0.037841797,-0.012023926,0.12451172,0.11376953,-0.09472656,-0.08300781,-0.0012283325,0.05859375,-0.10888672,-0.10253906,0.06542969,0.048583984,-0.053955078,-0.110839844,0.028564453,-0.14550781,0.012390137,0.034179688,0.03112793,0.111816406,-0.10839844,-0.009155273,-0.13867188,0.048339844,-0.034179688,-0.015563965,-0.030273438,-0.026855469,-0.044677734,-0.07128906,0.0027618408,0.091796875,-0.057373047,-0.10986328,-0.055908203,-0.106933594,-0.04711914,-0.10058594,-0.10595703,-0.16992188,-0.23242188,-0.24023438,-0.12597656,-0.10888672,-0.011230469,-0.14160156,-0.0022277832,-0.004333496,0.0107421875,-0.111816406,-0.009460449,-0.019897461,0.10253906,-0.203125,0.03491211,-0.07324219,0.018310547,0.039794922,0,0,0,0,0,0,0,0},{0.09863281,0.037109375,-0.08935547,0.0859375,-0.05908203,0.18164062,-0.048583984,0.0087890625,0.0054016113,0.16699219,-0.140625,0.19140625,-0.140625,0.22363281,-0.15820312,0.061767578,-0.17871094,-0.20019531,-0.008178711,0.22949219,-0.005584717,-0.20214844,-0.106933594,0.15136719,-0.15332031,0.015136719,0.18164062,-0.13476562,0.095214844,-0.040039062,-0.052001953,-0.11767578,-0.14160156,-0.00592041,-0.046875,-0.019897461,-0.2109375,0.14648438,0.0055236816,-0.091308594,-0.13085938,0.041015625,-0.029174805,-0.067871094,-0.16796875,-0.08691406,-0.13476562,0.114746094,0.15136719,-0.17089844,0.22167969,-0.06591797,-0.17675781,-0.06738281,-0.020263672,0.005493164,-0.23632812,-0.16015625,-0.022094727,-0.2265625,-0.030883789,0.08984375,0.06225586,-0.16015625,0.064453125,-0.0703125,0.234375,-0.07080078,0.04321289,0.08251953,0.013305664,-0.106933594,0.012756348,0.09326172,-0.15625,0.01586914,-0.19140625,0.041015625,-0.12695312,0.08496094,0.025390625,0.21875,0.053955078,0.07373047,0.029052734,0.045654297,0.08105469,0.075683594,-0.13867188,0.17089844,0.029052734,-0.09863281,0.12011719,0.05053711,-0.092285156,-0.110839844,-0.08105469,-0.057617188,0.03564453,-0.08496094,-0.0703125,0.13867188,-0.13574219,-0.01586914,0.107910156,0.091308594,-0.043945312,0.10888672,0.29492188,-0.0036010742,-0.123046875,-0.059326172,0.028442383,0.04248047,-0.03112793,-0.115234375,-0.06689453,0.072265625,-0.119628906,-0.021606445,0,0,0,0,0,0,0,0},{-0.13378906,-0.020385742,-0.10107422,-0.20507812,0.05419922,0.037353516,-0.10839844,-0.06738281,0.014160156,-0.005493164,0.0008354187,0.18164062,-0.106933594,-0.26367188,-0.122558594,-0.08691406,0.13476562,-0.03881836,-0.14453125,0.16308594,0.009765625,0.091308594,0.16699219,-0.05493164,0.23339844,-0.18359375,-0.13476562,0.026245117,-0.14550781,-0.15527344,0.16894531,-0.043701172,0.0053710938,0.15527344,-0.014709473,-0.19433594,-0.21777344,0.06347656,0.027832031,-0.080078125,-0.014526367,-0.09423828,-0.0034179688,-0.00793457,0.099121094,-0.057861328,-0.27929688,-0.12207031,0.016479492,0.06347656,-0.12792969,-0.15136719,-0.045410156,0.005340576,0.015319824,-0.43359375,0.046875,-0.009643555,0.037353516,-0.072753906,-0.21972656,-0.010009766,-0.17480469,-0.0859375,0.0014266968,-0.22851562,-0.08105469,0.16894531,-0.111328125,0.1640625,-0.17089844,0.04272461,0.19335938,-0.052978516,-0.15039062,-0.076171875,0.02746582,-0.04272461,-0.24707031,-0.1484375,0.15722656,0.07128906,-0.032470703,0.13183594,0.04345703,0.10839844,-0.14453125,-0.1953125,-0.29296875,0.11767578,0.047851562,0.11425781,0.0703125,0.020629883,0.046875,-0.14160156,0.111328125,0.08642578,0.13671875,-0.12695312,0.1171875,0.12011719,-0.22167969,-0.10888672,-0.13378906,-0.0072631836,-0.07519531,0.10107422,0.14257812,0.044189453,-0.11376953,-0.043945312,-0.12597656,-0.068847656,-0.12207031,-0.049316406,-0.05810547,-0.1796875,0.10888672,0.10986328,0,0,0,0,0,0,0,0},{0.088378906,0.037597656,0.029907227,-0.007751465,0.10839844,0.043945312,-0.0054626465,-0.087402344,-0.07910156,0.021240234,0.0020599365,0.07470703,0.084472656,-0.09033203,0.06738281,0.115234375,-0.038085938,-0.10595703,-0.029418945,0.12890625,0.15136719,-0.041503906,0.051513672,0.107910156,0.041259766,-0.045410156,0.08203125,0.043945312,0.06298828,0.048583984,0.044677734,-0.095703125,-0.09277344,0.016113281,-0.076660156,0.022949219,-0.25585938,-0.021484375,0.11816406,0.087890625,-0.08984375,0.11767578,0.12890625,-0.08691406,0.045410156,-0.07861328,-0.079589844,0.16308594,0.13769531,0.20996094,-0.21777344,-0.07080078,0.021118164,0.01550293,0.16113281,-0.14257812,0.020751953,-0.19921875,-0.14257812,-0.060058594,0.15136719,0.064941406,0.14355469,0.07861328,0.13183594,-0.07128906,0.0063171387,0.15917969,-0.045898438,-0.061279297,0.06982422,-3.0755997e-05,-0.0234375,0.030883789,-0.25390625,0.20117188,0.029907227,-0.11669922,-0.110839844,-0.26757812,-0.15234375,0.140625,-0.08984375,-0.111328125,-0.11035156,-0.029785156,-0.12792969,-0.122558594,-0.03515625,-0.048095703,0.048095703,-0.029052734,-0.06347656,-0.16601562,-0.19921875,0.067871094,-0.057617188,0.053466797,0.11279297,-0.039794922,-0.0390625,0.045898438,0.07080078,-0.010070801,-0.045410156,0.21386719,-0.122558594,-0.10839844,0.1328125,-0.016479492,0.13574219,-0.21289062,-0.014953613,0.060302734,0.15527344,-0.1953125,-0.07373047,0.13671875,-0.09423828,0.07910156,0,0,0,0,0,0,0,0},{-0.037109375,-0.1484375,-0.10644531,-0.095214844,-0.0045776367,-0.017822266,0.020507812,-0.05029297,0.11328125,0.032226562,-0.08984375,0.03881836,-0.1484375,0.018310547,-0.035888672,-0.046142578,0.06298828,0.09375,-0.2734375,-0.049316406,0.07421875,-0.023803711,-0.140625,-0.15625,0.084472656,-0.1171875,0.072753906,0.140625,-0.010620117,0.020751953,0.12597656,-0.11376953,0.009216309,0.011474609,-0.03173828,-0.27148438,-0.21777344,-0.08300781,0.096191406,0.12207031,-0.021118164,-0.0078125,-0.12011719,0.12597656,0.068847656,0.11035156,-0.08203125,-0.10107422,0.10986328,-0.07373047,-0.06201172,-0.17285156,-0.03540039,-0.19628906,-0.010314941,-0.17285156,0.07128906,-0.063964844,0.08251953,0.032226562,-0.103515625,-0.28320312,-0.052490234,0.056152344,-0.07861328,-0.12988281,-0.12060547,-0.107910156,-0.026977539,0.028442383,-0.09375,-0.06347656,0.08251953,-0.2109375,-0.14355469,-0.075683594,-0.03100586,-0.21289062,-0.13867188,0.11279297,-0.140625,-0.075683594,-0.10986328,-0.17871094,0.029296875,-0.095703125,-0.11816406,0.009094238,-0.15527344,-0.071777344,-0.08203125,-0.21191406,-0.21484375,-0.07080078,-0.026123047,0.104003906,0.07421875,-0.14257812,-0.16992188,0.029785156,-0.14648438,0.03540039,-0.19140625,-0.23925781,-0.11425781,-0.021240234,0.12060547,-0.052490234,-0.08251953,-0.17285156,-0.076171875,0.008666992,-0.037109375,-0.052978516,0.067871094,-0.045410156,0.12011719,-0.057861328,-0.07128906,-0.059326172,0,0,0,0,0,0,0,0},{0.0054626465,0.17382812,0.099609375,0.036132812,-0.091796875,-0.09277344,-0.030883789,0.06225586,0.06738281,-0.056884766,-0.328125,-0.16894531,0.107910156,-0.05419922,-0.023071289,0.08544922,0.0046691895,-0.04272461,-0.05102539,-0.025146484,-0.12890625,-0.15429688,0.091308594,-0.0049743652,-0.16992188,-0.012512207,0.045166016,0.08984375,0.15332031,0.015625,-0.076660156,-0.022338867,-0.17089844,-0.017822266,-0.015014648,0.08935547,-0.11328125,0.16015625,0.008544922,0.0024871826,0.21777344,-0.015625,0.080078125,-0.05834961,-0.09667969,-0.14160156,-0.18066406,-0.20410156,-0.10888672,0.2734375,-0.091308594,0.12207031,0.17773438,-0.020263672,-0.25195312,-0.14257812,-0.06591797,-0.16503906,-0.16015625,0.014892578,-0.047851562,0.05517578,-0.265625,-0.26367188,-0.16015625,-0.08935547,0.16308594,-0.07470703,-0.087890625,0.13867188,-0.14941406,0.023803711,0.09375,0.009094238,0.171875,0.08544922,0.05444336,-0.040283203,0.001373291,-0.04663086,-0.24414062,-0.107910156,0.076660156,0.087890625,-0.046875,0.17089844,-0.06542969,-0.016113281,-0.115234375,0.033203125,0.010009766,-0.03881836,-0.100097656,0.16210938,0.009094238,-0.203125,0.0051574707,-0.13183594,0.046875,-0.084472656,-0.05053711,0.14550781,-0.18945312,-0.103515625,0.018920898,-0.041015625,0.12890625,-0.10644531,0.028564453,-0.0059814453,0.09863281,-0.18359375,0.06689453,0.029296875,-0.004058838,-0.12011719,0.025756836,0.03100586,-0.15917969,-0.061523438,0,0,0,0,0,0,0,0},{-0.12109375,0.087402344,-0.18945312,0.103515625,-0.26757812,-0.10595703,0.08105469,-0.0024108887,-0.2421875,-0.25195312,-0.16894531,-0.01586914,0.006011963,-0.007873535,-0.171875,-0.032226562,0.2734375,0.10253906,0.0046691895,0.08154297,0.084472656,-0.15625,-0.071777344,0.115234375,-0.041015625,-0.11621094,0.12597656,-0.046875,-0.16699219,-0.1640625,-0.08984375,0.027954102,-0.26953125,-0.19726562,0.027832031,-0.114746094,0.115722656,-0.0625,-0.14453125,0.1484375,0.1328125,-0.10205078,0.036132812,0.08984375,-0.10595703,-0.053222656,-0.043945312,-0.030273438,-0.12158203,0.07421875,-0.0043640137,-0.10205078,-0.125,0.09716797,0.07421875,-0.00049591064,0.1796875,0.032470703,-0.1171875,-0.109375,-0.016357422,-0.28320312,0.035888672,-0.028442383,-0.033447266,-0.064453125,-0.08154297,0.13476562,0.16796875,0.09033203,-0.061767578,0.060546875,0.03491211,-0.21289062,-0.12060547,-0.033203125,-0.0026855469,0.07519531,0.053955078,0.18164062,-0.12060547,-0.07861328,0.019897461,0.03564453,-0.0006713867,-0.009277344,-0.06347656,-0.01373291,0.033447266,-0.024902344,-0.13183594,0.13476562,-0.15917969,-0.0134887695,-0.013366699,0.12890625,0.059326172,-0.115234375,0.096191406,-0.14355469,0.03100586,0.20507812,-0.17773438,-0.06542969,-0.048095703,0.07714844,0.029785156,0.063964844,-0.063964844,-0.13574219,0.020385742,-0.025634766,-0.22753906,0.028564453,0.033203125,0.033203125,-0.123535156,-0.0013580322,-0.15234375,0.07910156,0,0,0,0,0,0,0,0},{0.020629883,0.15136719,-0.006134033,0.08544922,0.107421875,-0.044677734,0.049560547,0.24902344,-0.010314941,0.05834961,-0.0069274902,-0.024536133,0.18847656,0.12792969,-0.09033203,-0.20605469,0.19042969,0.22070312,-0.14746094,0.0018615723,0.19238281,0.036132812,0.08642578,0.06542969,0.16210938,-0.037597656,0.05810547,-0.17382812,0.16015625,0.0031280518,0.24902344,-0.10253906,0.04711914,0.099609375,0.21191406,-0.010681152,0.17285156,0.12988281,0.16015625,-0.13867188,-0.007446289,-0.008361816,0.076171875,-0.11328125,-0.063964844,0.002960205,0.071777344,0.068359375,0.09375,0.09667969,0.07861328,0.16796875,0.14550781,0.14355469,0.15527344,-0.15429688,0.10253906,0.21777344,-0.07080078,0.16699219,0.080566406,-0.04638672,-0.02709961,-0.25390625,-0.07519531,0.18261719,-0.21875,0.14257812,0.12597656,0.23046875,-0.010620117,0.15039062,-0.010192871,0.110839844,0.032226562,0.091796875,0.014831543,-0.10498047,0.15722656,0.075683594,-0.015258789,-0.034423828,0.047851562,0.059326172,0.23339844,0.03149414,-0.014404297,0.072753906,0.022216797,0.26953125,0.041992188,-0.0034484863,-0.06201172,0.003540039,0.11621094,0.068359375,-0.06591797,0.056152344,0.110839844,-0.047607422,0.09033203,0.099121094,0.023803711,-0.0126953125,0.13183594,0.027832031,-0.10888672,0.008117676,0.045166016,0.18457031,0.103515625,-0.01159668,0.08984375,-0.10595703,0.15429688,0.016723633,0.030883789,-0.15917969,-0.009277344,0.16015625,0,0,0,0,0,0,0,0},{0.03955078,0.068359375,0.0025024414,0.001045227,-0.27148438,-0.29492188,-0.00089645386,-0.13574219,-0.140625,-0.005279541,-0.11035156,-0.06347656,0.24511719,0.004547119,-0.09033203,-0.0126953125,-0.055419922,-0.016479492,0.02709961,-0.03881836,0.12109375,0.035888672,0.095703125,0.13183594,0.18261719,0.060546875,-0.012023926,0.055419922,0.00033569336,-0.061035156,-0.041503906,-0.014526367,-0.043701172,-0.13867188,-0.10546875,0.13085938,-0.12060547,-0.10986328,0.10058594,-0.052490234,-0.03564453,-0.15039062,-0.015563965,0.083496094,0.10986328,0.06689453,-0.028808594,0.00077438354,-0.083984375,-0.25976562,-0.12792969,-0.038085938,-0.13378906,0.140625,0.17675781,-0.043701172,0.014892578,-0.20800781,-0.2265625,-0.15820312,-0.024414062,0.10058594,0.11816406,0.12402344,0.118652344,-0.027832031,0.03149414,0.06689453,0.1640625,-0.114746094,-0.21191406,-0.046142578,0.032958984,-0.21191406,-0.115234375,0.11035156,-0.033203125,0.043945312,0.018188477,-0.019897461,-0.18554688,0.095703125,-0.16210938,-0.10888672,-0.08251953,-0.016601562,0.059326172,-0.25585938,-0.12011719,-0.13378906,0.13867188,-0.23535156,-0.11767578,0.10986328,-0.092285156,0.03466797,-0.24902344,-0.080078125,0.11816406,-0.140625,0.10546875,0.06591797,-0.15917969,0.0234375,0.0032348633,0.17382812,0.15429688,-0.025512695,-0.22558594,0.091796875,0.27539062,-0.18945312,-0.115722656,-0.07373047,0.125,-0.027954102,-0.30273438,-0.11376953,0.068847656,0.10205078,0,0,0,0,0,0,0,0},{0.17382812,0.035888672,-0.14355469,-0.15136719,0.125,0.0015563965,-0.125,-0.13867188,-0.087402344,-0.203125,-0.31054688,-0.13085938,0.016845703,-0.17675781,0.20507812,-0.15039062,-0.050048828,0.096191406,-0.23535156,-0.049804688,0.004425049,-0.115722656,0.07470703,0.15820312,-0.18652344,-0.021484375,-0.12109375,-0.13769531,-0.009094238,-0.08935547,0.05053711,0.0006752014,-0.01965332,-0.17089844,0.1328125,-0.09277344,0.13085938,0.10253906,-0.15917969,0.076171875,-0.08642578,0.016357422,-0.015625,-0.044677734,0.017700195,-0.15527344,-0.1796875,0.08691406,-0.00010967255,-0.021850586,0.027954102,0.036621094,0.078125,-0.0025787354,0.036376953,-0.041748047,0.083496094,-0.11816406,-0.11279297,0.11425781,0.08251953,-0.36523438,-0.0029754639,0.107421875,0.12158203,-0.13867188,0.040283203,0.060058594,-0.03564453,0.106933594,-0.17285156,-0.17871094,0.111816406,-0.114746094,0.047851562,-0.16699219,-0.10449219,-0.23046875,-0.17871094,0.15527344,-0.10595703,-0.000289917,-0.32421875,-0.15234375,-0.06347656,-0.19726562,-0.003540039,-0.00090408325,-0.037841797,-0.16992188,-0.12158203,0.026000977,-0.06542969,0.16503906,-0.044921875,0.115234375,-0.01574707,-0.17382812,-0.002029419,-0.1640625,0.036865234,-0.017089844,-0.07910156,-0.08935547,0.017700195,0.004211426,0.07324219,-0.10595703,-0.017211914,0.20605469,-0.036132812,0.0625,-0.23828125,-0.06982422,-0.09667969,-0.06347656,-0.18457031,-0.15917969,-0.0031433105,0.013793945,0,0,0,0,0,0,0,0},{-0.051757812,-0.0095825195,-0.046142578,-0.21289062,-0.061767578,-0.18359375,-0.0045776367,0.18847656,-0.03100586,0.008117676,-0.17871094,-0.07910156,0.002105713,0.016479492,-0.063964844,-0.007873535,-0.15429688,-0.028076172,-0.110839844,0.09863281,0.12207031,-0.21875,-0.23339844,0.064941406,-0.17480469,-0.049804688,0.072265625,-0.052001953,-0.036865234,-0.24804688,-0.025146484,-0.05908203,-0.16992188,-0.11816406,0.123046875,-0.2734375,-0.008483887,0.15136719,0.041503906,-0.021728516,0.15722656,0.07763672,0.015563965,0.12451172,-0.125,-0.078125,-0.030029297,0.11767578,-0.111328125,0.08544922,0.030151367,-0.16992188,0.0027770996,-0.107910156,0.08203125,-0.20019531,0.05126953,-0.07128906,-0.026123047,-0.22167969,-0.04321289,-0.10058594,-0.12695312,-0.024169922,0.026733398,0.17578125,0.09375,-0.060058594,0.095214844,-0.18457031,-0.10107422,-0.099609375,-0.22265625,-0.03955078,0.083496094,-0.091796875,0.12988281,-0.08886719,0.003479004,-0.083984375,0.0054016113,0.17675781,0.041503906,0.13964844,-0.16601562,-0.010986328,-0.11816406,0.009216309,-0.07373047,-0.08886719,-0.21191406,0.01586914,-0.13671875,-0.16015625,-0.119140625,-0.041015625,0.024169922,-0.12402344,-0.234375,-0.15527344,-0.20117188,0.13183594,-0.20996094,-0.107910156,-0.10888672,0.045898438,-0.0107421875,0.005493164,-0.17578125,-0.10888672,-0.014892578,-0.02734375,0.031982422,-0.18066406,-0.23535156,-0.17382812,0.061035156,-0.20507812,-0.171875,-0.0056762695,0,0,0,0,0,0,0,0},{-0.12890625,-0.1484375,-0.047607422,0.106933594,-0.003692627,-0.0041503906,-0.106933594,-0.06347656,-0.20507812,-0.10498047,-0.020019531,0.047851562,0.008850098,-0.02355957,0.036865234,0.07763672,-0.020629883,-0.032470703,-0.22460938,-0.02368164,-0.05126953,-0.19042969,0.0859375,0.1015625,-0.16992188,-0.100097656,-0.12695312,-0.13378906,0.072265625,-0.20214844,0.11425781,0.008361816,0.059326172,-0.012268066,0.12792969,-0.03515625,-0.107910156,-0.18066406,0.013061523,-0.033203125,-0.10205078,-0.12792969,-0.15527344,-0.02319336,0.06933594,0.19335938,-0.20703125,-0.029785156,0.13378906,-0.079589844,-0.025390625,-0.14160156,-0.068359375,-0.057617188,-0.06738281,-0.053222656,0.08251953,-0.014892578,0.07470703,-0.1171875,-0.18945312,-0.24902344,-0.05908203,0.10253906,0.14257812,-0.013427734,0.030151367,0.09277344,0.0703125,0.13085938,0.09716797,0.051757812,0.005126953,-0.068359375,0.09667969,-0.16113281,0.029541016,0.0134887695,-0.044921875,0.06933594,0.064453125,0.015380859,-0.043945312,-0.16699219,0.025268555,-0.22070312,0.104003906,0.012023926,-0.026611328,-0.08886719,-0.111816406,-0.08544922,-0.20605469,0.031982422,-0.15625,-0.12011719,-0.076660156,-0.21972656,0.09472656,-0.08691406,-0.035888672,-0.041259766,-0.24023438,-0.19628906,-0.16796875,-0.045654297,0.11669922,-0.18066406,-0.110839844,0.0017700195,-0.23242188,0.048828125,-0.078125,-0.041259766,-0.15917969,0.017456055,-0.00088119507,0.05883789,0.09423828,-0.16699219,0,0,0,0,0,0,0,0},{0.15039062,-0.140625,0.0019683838,-0.03466797,0.1640625,-0.021606445,0.033447266,-0.096191406,-0.056396484,-0.18945312,-0.009887695,0.06640625,-0.083984375,0.07763672,0.123535156,-0.21679688,0.044433594,0.19335938,-0.21777344,0.107421875,0.15722656,0.09765625,0.057617188,0.10595703,0.083984375,-0.005065918,-0.057373047,-0.13671875,0.14746094,0.14160156,0.13378906,0.057373047,-0.123046875,-0.17675781,-0.056152344,-0.024902344,-0.06591797,-0.14355469,-0.14746094,0.07714844,-0.026733398,-0.1328125,-0.26953125,0.14746094,-0.040527344,-0.106933594,-0.140625,-0.052001953,0.05883789,0.03881836,-0.14160156,-0.048339844,0.07910156,0.03515625,0.14257812,0.08984375,-0.02331543,-0.052246094,-0.035888672,-0.14160156,-0.079589844,-0.107910156,-0.18847656,-0.13378906,0.06347656,0.07080078,-0.22460938,-0.022949219,0.21972656,-0.068359375,-0.118652344,0.01965332,-0.111816406,-0.15234375,-0.009521484,-0.21484375,-0.0119018555,-0.19238281,-0.028564453,0.07714844,-0.024780273,0.15722656,-0.09082031,-0.25,0.0067443848,-0.10986328,-0.033935547,-0.020629883,-0.12060547,0.10888672,-0.13378906,-0.059326172,-0.14550781,0.052246094,0.08203125,-0.16015625,0.080078125,-0.03930664,-0.034423828,0.13085938,-0.05493164,0.040771484,-0.16210938,-0.083496094,-0.07421875,0.15625,0.1484375,-0.0546875,0.08251953,0.14941406,-0.09716797,0.110839844,-0.01940918,0.09082031,0.11767578,0.125,0.025512695,0.12792969,-0.03125,0.072265625,0,0,0,0,0,0,0,0},{-0.020629883,-0.1484375,-0.11035156,0.0039978027,-0.16992188,0.052490234,0.07421875,-0.23144531,0.0032348633,-0.26953125,-0.2578125,-0.08544922,-0.17382812,0.016845703,-0.080566406,-0.03466797,-0.21582031,0.06738281,0.08984375,-0.095703125,-0.14453125,-0.015319824,-0.115234375,-0.040039062,-0.014221191,0.05859375,-0.06542969,-0.22460938,0.03564453,-0.17382812,-0.06298828,-0.068359375,-0.10546875,0.05053711,0.29101562,-0.15917969,-0.032470703,-0.09033203,-0.00793457,-0.10595703,-0.091308594,-0.296875,-0.095703125,0.076171875,-0.23144531,0.0703125,-0.080566406,-0.18847656,-0.028320312,-0.0011672974,-0.09667969,0.010253906,-0.018432617,0.0070495605,-0.115722656,-0.20507812,0.1640625,0.01373291,-0.067871094,-0.104003906,-0.17480469,-0.14355469,-0.22363281,-0.107910156,0.0069274902,-0.14746094,-0.15234375,0.055419922,-0.18164062,-0.06982422,-0.0077819824,-0.099609375,-0.052978516,0.014099121,-0.032226562,-0.119628906,0.10986328,-0.15820312,-0.1640625,-0.106933594,0.17285156,-0.15527344,0.21875,0.013916016,-0.29492188,0.10498047,0.060302734,0.095703125,-0.1953125,-0.006225586,-0.296875,-0.09423828,-0.05102539,-0.05419922,0.20410156,0.03564453,0.030151367,0.05029297,-0.28515625,-0.064453125,-0.09033203,-0.13574219,0.047607422,-0.07519531,0.080078125,0.015625,0.0703125,-0.080078125,-0.14453125,0.071777344,0.07910156,-0.17382812,-0.011352539,-0.1875,-0.13476562,-0.046142578,-0.036376953,-0.011047363,0.15429688,-0.024658203,0,0,0,0,0,0,0,0},{0.15136719,-0.11669922,-0.09423828,-0.09033203,0.10888672,0.10595703,-0.18945312,-0.05053711,0.110839844,-0.038330078,-0.015380859,-0.02734375,-0.19335938,0.15136719,0.018798828,-0.18359375,-0.13085938,-0.09277344,-0.07080078,0.20019531,-0.19140625,-0.1953125,0.14355469,-0.16308594,0.110839844,-0.14550781,-0.035888672,-0.13867188,-0.10595703,0.110839844,0.03515625,0.09667969,-0.038330078,0.057617188,-0.026855469,-0.03955078,-0.04345703,0.203125,-0.013122559,-0.063964844,0.15820312,0.068847656,-0.057128906,0.063964844,-0.067871094,-0.14355469,-0.020629883,0.01953125,0.052490234,-0.005279541,0.037109375,-0.08544922,0.115234375,0.16894531,-0.079589844,0.14453125,0.19628906,0.04345703,0.019897461,-0.11230469,-0.06201172,-0.03491211,-0.171875,-0.10205078,0.21875,0.17480469,-0.14941406,-0.024291992,-0.119140625,0.10595703,-0.22363281,0.14453125,-0.07861328,-0.14941406,-0.14941406,0.040283203,0.013366699,0.014038086,-0.16796875,0.041259766,0.010925293,-0.044677734,-0.09326172,-0.046142578,0.029052734,-0.023071289,0.0041503906,-0.03857422,-0.041015625,-0.10546875,-0.05053711,0.05444336,0.1015625,0.17675781,-0.072753906,-0.035888672,0.087890625,-0.16210938,0.11230469,-0.007293701,-0.024047852,0.13867188,0.08691406,-0.080566406,0.18554688,-0.045410156,-0.14355469,-0.014892578,0.06640625,-0.008422852,0.20214844,0.12011719,-0.103027344,0.03930664,-0.049072266,0.0014801025,0.06738281,0.05444336,0.234375,0.104003906,0,0,0,0,0,0,0,0},{-0.171875,-0.22167969,-0.028686523,-0.100097656,0.014282227,-0.14160156,-0.049560547,0.104003906,0.091796875,-0.008117676,-0.11669922,0.09326172,-0.033691406,0.22167969,-0.28515625,0.12207031,0.015991211,0.1015625,0.15332031,-0.15136719,0.064453125,-0.014465332,0.0030670166,-0.16992188,-0.06591797,-0.13574219,-0.015075684,-0.095703125,-0.09667969,-0.06982422,0.005584717,-0.13964844,-0.22753906,-0.009216309,-0.20996094,-0.057128906,-0.15234375,0.053710938,-0.15136719,0.07128906,-0.10888672,-0.25390625,-0.12109375,0.05053711,-0.13574219,-0.17675781,0.0018081665,-0.07421875,-0.022094727,0.119628906,-0.12695312,-0.1328125,-0.12792969,0.09472656,0.032714844,-0.028198242,0.13183594,-0.103515625,-0.16699219,-0.10498047,-0.08642578,-0.12988281,-0.13867188,0.056640625,-0.005645752,-0.19628906,-0.091796875,0.05419922,0.043701172,-0.040527344,-0.0027160645,0.12451172,0.041503906,-0.09814453,0.012634277,0.0015792847,-0.103515625,-0.13769531,-0.08251953,0.05517578,-0.12011719,-0.13964844,0.08203125,-0.15527344,0.110839844,-0.05517578,-0.06201172,-0.103515625,-0.051757812,0.026489258,0.019897461,-0.15722656,0.00075531006,-0.048339844,-0.13964844,-0.21582031,-0.18359375,0.03881836,-0.15625,-0.26953125,0.0703125,0.13769531,0.0018386841,0.040771484,0.0390625,0.12011719,-0.035888672,-0.05419922,-0.0049438477,0.025146484,-0.084472656,0.011474609,-0.115234375,0.0009918213,-0.051757812,0.020996094,0.005706787,-0.017578125,0.07861328,-0.06689453,0,0,0,0,0,0,0,0},{0.015625,0.09667969,0.07910156,0.12109375,0.0032043457,-0.095214844,0.078125,-0.11621094,-0.06542969,0.06542969,0.060791016,0.052978516,-0.17675781,-0.17773438,0.043945312,0.12109375,0.06201172,-0.0014343262,0.013427734,-0.0071105957,0.17773438,0.05908203,0.0014648438,-0.203125,0.10449219,-0.008117676,0.107910156,0.041748047,-0.12792969,0.100097656,0.14648438,0.03125,-0.13574219,0.07714844,-0.016235352,-0.115722656,0.23828125,0.21972656,-0.017333984,0.19042969,0.12402344,0.06689453,0.16210938,0.22460938,-0.13476562,-0.04345703,-0.18847656,0.13671875,0.048583984,0.0014038086,-0.018432617,0.09277344,0.008239746,0.020751953,-0.20410156,0.23046875,0.23339844,0.08251953,0.017578125,-0.08300781,-0.171875,-0.07861328,0.04321289,0.03955078,-0.1328125,-0.025878906,0.0859375,0.022827148,-0.024780273,-0.080566406,-0.046142578,0.107421875,0.15136719,-0.15527344,0.024169922,0.0859375,0.03857422,0.0076904297,0.079589844,0.17089844,-0.118652344,-0.043701172,0.076660156,-0.14941406,0.119628906,0.11816406,-0.12158203,0.007293701,0.048583984,0.107421875,0.18359375,-0.06933594,-0.072265625,-0.031982422,-0.047607422,0.10253906,-0.11328125,-0.23828125,0.02722168,-0.064941406,0.05102539,0.080566406,-0.046142578,0.025512695,-0.10546875,-0.084472656,0.041992188,0.071777344,0.056396484,0.12792969,0.056396484,0.2109375,-0.021118164,-0.09472656,-0.072265625,0.13378906,0.09423828,0.14550781,0.11816406,-0.02758789,0,0,0,0,0,0,0,0},{-0.21386719,-0.078125,-0.14160156,0.06542969,0.16210938,-0.1953125,-0.06738281,-0.0625,-0.09716797,-0.09033203,0.07128906,-0.1640625,-0.18261719,-0.15527344,-0.15625,-0.080566406,-0.26953125,-0.08496094,-0.032470703,-0.29101562,0.01586914,-0.13183594,0.016967773,-0.017456055,-0.07373047,-0.20703125,-0.22265625,-0.16015625,0.08544922,-0.0859375,-0.11621094,-0.15917969,-0.013061523,-0.063964844,-0.056640625,-0.3359375,-0.119628906,0.11816406,-0.1328125,-0.0068969727,0.053466797,-0.15332031,-0.23339844,0.032226562,-0.15332031,0.110839844,-0.1328125,-0.119628906,0.123535156,0.025146484,-0.17871094,-0.072265625,0.038085938,0.17480469,-0.0013198853,-0.15917969,-0.06933594,-0.083984375,-0.20214844,-0.21972656,-0.087402344,-0.057617188,-0.1171875,-0.10253906,0.08251953,-0.103515625,-0.15234375,-0.2265625,0.05810547,-0.11328125,0.10205078,-0.13964844,-0.15039062,-0.12011719,0.0046691895,-0.022583008,-0.02722168,-0.028930664,0.119140625,-0.01171875,0.09375,-0.20800781,0.05444336,-0.24902344,0.011047363,0.048828125,-0.08984375,-0.11669922,0.11621094,0.0058288574,-0.19335938,-0.19042969,-0.31054688,-0.203125,-0.1953125,-0.16503906,-0.15625,-0.07763672,-0.016845703,-0.0045166016,-0.00074005127,0.096191406,-0.20605469,-0.015136719,-0.06982422,0.103027344,-0.033447266,0.04321289,0.025756836,-0.029296875,0.10839844,0.003250122,-0.0005340576,-0.28320312,0.13085938,-0.03491211,-0.12109375,-0.047607422,-0.18261719,-0.088378906,0,0,0,0,0,0,0,0},{0.032470703,-0.020019531,-0.3515625,-0.099121094,0.123046875,0.056396484,-0.056152344,-0.32226562,-0.099609375,0.08935547,-0.05883789,0.22265625,-0.07470703,0.08154297,0.06982422,-0.016479492,0.009887695,0.15625,0.14160156,0.17285156,0.14746094,0.099609375,-0.28710938,0.007751465,-0.060058594,-0.052001953,0.22753906,-0.20703125,-0.15917969,-0.14257812,0.1796875,0.008728027,-0.06689453,-0.072265625,-0.08935547,-0.12158203,0.0074157715,0.12792969,-0.001449585,-0.26953125,-0.004760742,-0.10546875,0.052734375,0.06933594,0.16894531,0.059570312,-0.16210938,0.025878906,-0.049316406,0.16015625,0.035888672,-0.296875,0.14453125,0.26171875,-0.056884766,0.038085938,-0.14648438,0.12988281,-0.2109375,0.036132812,0.029174805,-0.010314941,0.11230469,0.08496094,-0.13085938,0.171875,0.040039062,-0.110839844,0.17089844,-0.0023651123,0.0028839111,0.032958984,0.078125,0.003112793,-0.052734375,0.118652344,-0.21386719,0.123046875,-0.15625,-0.079589844,-0.19628906,-0.08154297,-0.052490234,-0.17285156,0.033447266,-0.021362305,0.032714844,-0.17871094,0.009521484,0.22265625,-0.123535156,-0.31054688,-0.07763672,-0.05810547,0.07519531,0.12890625,-0.123046875,-0.13476562,0.015319824,-0.111328125,-0.032226562,0.32617188,-0.00078964233,-0.25976562,-0.07128906,0.1953125,-0.09765625,0.18554688,0.12890625,0.1953125,-0.032958984,0.036132812,0.030395508,0.048095703,-0.014160156,0.18261719,0.04736328,0.13769531,0.095214844,0.051757812,0,0,0,0,0,0,0,0},{0.07421875,-0.23144531,-0.18457031,0.05078125,0.059814453,-0.10205078,0.10498047,-0.026367188,-0.13867188,0.033203125,-0.10644531,-0.004058838,-0.041748047,0.07910156,-0.044921875,-0.15429688,-0.057128906,0.107910156,-0.115234375,0.106933594,-0.0546875,0.03881836,-0.23730469,-0.12109375,-0.19433594,0.05053711,0.038330078,-0.08691406,0.030761719,-0.038085938,0.115722656,0.15039062,0.016967773,-0.099121094,-0.099609375,0.0066833496,0.20605469,0.09033203,-0.16308594,-0.078125,0.06689453,-0.008361816,-0.13183594,-0.020996094,0.060791016,-0.046875,0.02368164,0.20996094,0.040039062,-0.11376953,-0.079589844,-0.22070312,-0.037841797,0.15136719,0.040771484,0.16503906,0.09716797,-0.029541016,-0.05810547,-0.14941406,-0.23828125,-0.16113281,-0.28125,0.03491211,0.08496094,0.119628906,0.025268555,0.038085938,0.04736328,0.11279297,-0.016845703,0.23144531,0.016113281,-0.109375,0.13378906,0.031982422,0.100097656,0.12988281,-0.010437012,0.12695312,-0.017333984,0.08544922,-0.11376953,0.00064468384,-0.31835938,-0.24316406,0.10058594,0.012145996,-0.15332031,0.10644531,-0.14648438,-0.008483887,0.17285156,0.07128906,-0.087890625,0.10888672,0.13574219,0.09033203,-0.09472656,-0.026855469,-0.076171875,-0.13671875,0.06982422,-0.047607422,-0.08886719,-0.111328125,-0.10253906,-0.029907227,-0.010375977,0.076660156,0.13867188,-0.08886719,-0.22851562,-0.122558594,-0.06640625,-0.09326172,-0.026000977,-0.15429688,-0.08691406,-0.017700195,0,0,0,0,0,0,0,0},{-0.12402344,0.031982422,-0.19042969,0.087402344,-0.16601562,-0.10644531,-0.122558594,-0.16503906,-0.02368164,-0.16503906,-0.106933594,0.033935547,0.12988281,-0.024658203,0.091308594,0.059570312,-0.072753906,-0.19921875,-0.12890625,-0.14746094,-0.14355469,0.107910156,-0.061767578,0.006134033,-0.020996094,-0.072753906,0.104003906,0.18847656,-0.103027344,-0.07910156,-0.0014343262,-0.06347656,-0.18066406,0.049560547,-0.08154297,-0.2421875,-0.03125,-0.010559082,0.022827148,0.032958984,0.16210938,-0.140625,0.095703125,-0.05053711,0.16113281,-0.1171875,-0.01965332,-0.064453125,-0.056640625,-0.11425781,-0.018310547,-0.16992188,0.07470703,-0.004486084,-0.0119018555,0.048583984,0.016601562,-0.171875,-0.078125,-0.068847656,-0.017456055,-0.03173828,0.17089844,0.052246094,-0.12158203,-0.17578125,0.092285156,-0.030517578,0.07861328,0.118652344,-0.28125,-0.076660156,0.14941406,0.122558594,-0.13574219,-0.036376953,0.057128906,-0.055664062,-0.296875,0.029785156,-0.05102539,0.060546875,0.0065612793,0.010192871,-0.19824219,0.01361084,0.041748047,0.016479492,-0.22265625,0.16015625,-0.111328125,-0.14160156,-0.005706787,0.16113281,0.17871094,-0.0032958984,0.099121094,-0.09765625,0.07128906,-0.24707031,-0.21777344,-0.0146484375,0.028320312,-0.18066406,-0.18847656,0.009399414,-0.15527344,-0.111328125,-0.17480469,0.061279297,-0.08154297,-0.31445312,-0.17578125,0.03149414,-0.18359375,-0.017089844,-0.006500244,-0.0390625,-0.059570312,0.032470703,0,0,0,0,0,0,0,0},{-0.14941406,-0.13378906,-0.18164062,0.018432617,-0.08642578,0.033935547,-0.083496094,0.15625,0.06347656,-0.12792969,-0.020507812,-0.004180908,0.12890625,-0.0037078857,0.06933594,0.115234375,0.06298828,-0.1484375,-0.05078125,0.16210938,0.12597656,-0.13476562,0.10107422,-0.00680542,-0.20410156,-0.12207031,-0.0234375,-0.1328125,0.072753906,-0.1875,-0.063964844,-0.057861328,0.118652344,-0.005065918,-0.12011719,-0.12890625,0.09326172,-0.09423828,0.04345703,-0.009460449,-0.17285156,0.10595703,-0.051757812,0.09472656,0.115234375,0.041992188,0.064941406,0.033203125,0.053466797,0.03881836,-0.07128906,-0.12988281,0.029418945,-0.09667969,0.043701172,0.031982422,-0.045166016,0.07421875,-0.11376953,0.07373047,0.10498047,-0.029541016,-0.045410156,-0.0076293945,0.04296875,-0.10595703,-0.06640625,-0.024780273,-0.052490234,-0.118652344,0.19628906,0.064941406,0.13964844,0.004638672,0.027954102,-0.15136719,0.08496094,-0.13671875,-0.07080078,0.12792969,0.115234375,-0.056640625,-0.14257812,-0.10888672,0.030029297,-0.014831543,-0.007080078,-0.13378906,-0.15722656,0.049804688,-0.14257812,-0.09667969,-0.12207031,-0.10839844,-0.006072998,0.1484375,0.14257812,-0.048095703,0.03466797,-0.18945312,0.022338867,0.20898438,-0.18847656,-0.19238281,-0.16210938,0.10107422,-0.18554688,0.15234375,-0.10205078,-0.053710938,-0.11328125,-0.24804688,0.046142578,-0.14257812,0.052001953,-0.0006904602,-0.09667969,0.103515625,0.26953125,-0.01965332,0,0,0,0,0,0,0,0},{-0.15820312,0.060058594,-0.13671875,0.078125,-0.09667969,-0.00031661987,-0.12695312,0.10449219,-0.046875,-0.123046875,-0.099609375,0.09814453,0.08203125,-0.15429688,-0.14257812,0.06591797,0.107421875,0.16210938,0.003326416,0.030761719,-0.099121094,-0.22460938,0.021850586,-0.106933594,0.036132812,0.040283203,-0.24023438,-0.09033203,-0.026000977,-0.17089844,-0.000333786,-0.032226562,-0.13964844,0.021606445,-0.15527344,-0.24804688,-0.13574219,-0.20800781,-0.15234375,-0.07373047,-0.12988281,-0.15136719,-0.049316406,-0.029663086,-0.23925781,-0.08496094,0.049072266,-0.080566406,-0.11621094,-0.008117676,-0.17675781,-0.0625,0.063964844,-0.061767578,0.052978516,0.07324219,0.05859375,-0.053222656,0.13183594,0.019165039,-0.068847656,-0.06542969,-0.040771484,0.049072266,-0.063964844,-0.04345703,0.080566406,-0.140625,-0.0107421875,0.031982422,-0.17480469,0.15332031,0.09326172,-0.21289062,0.0008773804,-0.072753906,0.032226562,-0.006072998,0.0073242188,0.04345703,0.059326172,0.036376953,-0.042236328,-0.18945312,0.02331543,-0.14453125,0.07519531,0.049072266,-0.21386719,-0.125,-0.05078125,0.056396484,-0.14746094,0.12060547,0.047851562,-0.028808594,-0.1953125,-0.21386719,-0.0546875,-0.25195312,-0.10839844,-0.036132812,0.010803223,-0.029418945,-0.17675781,0.034179688,-0.103027344,-0.048583984,-0.107421875,-0.03515625,0.12158203,0.018188477,-0.067871094,-0.055419922,0.091308594,0.013549805,-0.13085938,-0.140625,-0.13671875,0.04321289,0,0,0,0,0,0,0,0},{-0.09326172,-0.22460938,0.043945312,0.110839844,-0.096191406,-0.12451172,-0.07910156,-0.21191406,-0.10058594,0.048095703,-0.21484375,-0.09863281,0.06982422,-0.0078125,-0.041503906,0.024902344,0.0012054443,-0.11279297,-0.05908203,-0.04736328,-0.056396484,-0.079589844,-0.06225586,0.07421875,-0.17773438,-0.104003906,-0.08251953,-0.14257812,-0.013183594,-0.046875,-0.095214844,-0.100097656,-0.008239746,-0.08984375,-0.122558594,-0.18261719,-0.041503906,-0.1640625,-0.20898438,-0.24121094,0.03930664,-0.21777344,-0.10107422,0.005004883,0.07519531,-0.10595703,-0.125,-0.037353516,-0.15332031,-0.020629883,-0.17089844,0.036376953,-0.03857422,-0.18066406,0.080078125,-0.045166016,0.16992188,-0.044433594,0.123046875,0.1015625,0.1796875,-0.052978516,-0.01373291,-0.037597656,-0.06640625,-0.08154297,-0.010192871,-0.067871094,0.07910156,0.17480469,-0.04663086,0.072753906,0.05126953,-0.115722656,-0.027954102,-0.07470703,-0.049072266,-0.14453125,-0.123535156,-0.16992188,0.055419922,0.17285156,-0.01953125,0.021484375,-0.072265625,-0.19433594,0.13085938,0.0045166016,-0.10498047,-0.060546875,-0.08496094,-0.034423828,0.06298828,-0.095703125,0.14648438,-0.11328125,0.16015625,-0.20996094,-0.040283203,-0.23730469,0.03173828,-0.14941406,-0.07763672,-0.33789062,-0.008117676,0.019165039,0.0041503906,0.13183594,-0.061767578,-0.12890625,0.004211426,-0.106933594,-0.27734375,-0.12207031,-0.10253906,0.049072266,0.036621094,0.04663086,0.18847656,0.037109375,0,0,0,0,0,0,0,0},{0.07080078,-0.18847656,-0.13085938,-0.020874023,0.041015625,-0.14160156,-0.140625,0.10595703,-0.0028686523,-0.020019531,0.05908203,-0.03112793,-0.010803223,-0.09277344,-0.11669922,-0.0107421875,-0.15234375,-0.171875,-0.041259766,0.036865234,0.11669922,-0.022827148,-0.017700195,-0.047607422,0.05908203,-0.10888672,-0.02368164,0.072265625,-0.02709961,-0.23144531,-0.083984375,0.15332031,-0.17480469,0.051757812,-0.12011719,-0.25,-0.15136719,-0.14257812,0.06225586,0.11328125,-0.047851562,-0.25976562,0.08105469,0.041503906,0.15527344,-0.22949219,-0.0625,-0.09765625,-0.110839844,-0.13085938,-0.27148438,-0.053955078,-0.22363281,-0.095214844,-0.08105469,-0.122558594,-0.19335938,-0.033935547,-0.20019531,-0.05517578,-0.18066406,-0.21875,-0.068359375,-0.29296875,-0.041748047,-0.0625,-0.18554688,-0.037841797,-0.0047302246,-0.031982422,0.00793457,-0.057128906,-0.12158203,0.026367188,-0.024047852,-0.14160156,0.026855469,-0.02746582,-0.025634766,-0.06201172,-0.018310547,-0.024902344,-0.25976562,-0.11621094,-0.13671875,-0.087890625,0.13574219,-0.09375,-0.08984375,-0.096191406,0.048828125,-0.06201172,-0.022949219,-0.18359375,-0.07324219,-0.12792969,-0.050048828,-0.05029297,-0.19433594,0.033935547,-0.037597656,0.08544922,-0.07324219,-0.27539062,-0.021240234,0.103515625,-0.15136719,-0.10546875,-0.20507812,0.12402344,-0.16894531,0.03112793,-0.029907227,-0.13769531,0.0703125,-0.09667969,-0.06591797,0.045654297,0.1484375,0.10107422,0,0,0,0,0,0,0,0},{-0.083496094,-0.03564453,-0.15136719,0.095214844,0.079589844,0.0024108887,-0.20117188,-0.20117188,-0.014160156,0.06591797,0.0079956055,0.048828125,-0.14746094,-0.096191406,0.007873535,0.02368164,-0.064453125,0.19335938,-0.026123047,0.079589844,-0.025268555,-0.17089844,0.12011719,0.19433594,-0.17480469,-0.05078125,-0.32226562,-0.17773438,0.044433594,0.07080078,0.19238281,0.07519531,0.08886719,-0.15429688,-0.09326172,-0.33203125,0.021972656,0.119628906,-0.23828125,0.027832031,0.053222656,-0.16015625,-0.083496094,-0.06542969,-0.15136719,-0.072753906,-0.1640625,0.16503906,0.049072266,-0.15429688,-0.067871094,-0.114746094,0.08935547,-0.026489258,0.016235352,0.18554688,-0.1484375,-0.07470703,0.16699219,0.15820312,-0.1796875,0.045898438,0.07910156,0.017700195,0.04638672,-0.080566406,-0.0019836426,0.064941406,0.13964844,-0.23632812,-0.14648438,-0.056640625,0.119140625,-0.12792969,-0.01953125,0.084472656,-0.0035705566,-0.19433594,0.029052734,-0.15136719,-0.18652344,0.16308594,-0.17089844,-0.122558594,-0.1015625,0.19824219,0.004333496,0.08691406,-0.12597656,0.15527344,0.0049743652,0.05078125,-0.119628906,0.24414062,0.056640625,-0.13964844,0.10839844,-0.25,-0.18164062,-0.25585938,-0.10986328,-0.10888672,-0.100097656,-0.015625,-0.19238281,-0.028198242,0.18945312,-0.0134887695,-0.079589844,0.037597656,0.063964844,0.13378906,-0.19335938,-0.15234375,0.08105469,0.02319336,-0.003967285,-0.063964844,-0.068359375,0.119140625,0,0,0,0,0,0,0,0},{0.14355469,-0.11328125,-0.20898438,-0.11035156,0.038085938,-0.17285156,-0.04296875,0.14550781,-0.041015625,-0.17578125,-0.32617188,0.17773438,-0.029785156,0.07080078,-0.18359375,0.11328125,-0.28125,-0.20019531,-0.08642578,0.23730469,0.0234375,0.107421875,-0.18457031,-0.109375,-0.1171875,-0.12109375,-0.099121094,0.23535156,0.140625,0.076660156,-0.061523438,0.041015625,-0.061279297,0.014465332,0.06591797,-0.3515625,-0.052978516,-0.025756836,0.09765625,0.04638672,0.14453125,-0.05029297,-0.115722656,-0.100097656,0.18457031,0.052490234,-0.07128906,-0.118652344,-0.06689453,0.072265625,0.036865234,0.056884766,0.07910156,0.104003906,-0.265625,0.064941406,0.1484375,-0.075683594,-0.033935547,-0.111328125,-0.047607422,-0.061767578,0.28710938,0.17089844,-0.14648438,-0.125,0.13671875,-0.12988281,-0.19824219,-0.21386719,0.018798828,-0.23730469,0.10888672,0.08251953,0.09326172,0.027954102,-0.16894531,0.095214844,-0.031982422,0.13964844,0.036865234,0.0003566742,-0.13183594,-0.039794922,-0.08691406,-0.059326172,0.0065612793,-0.045166016,-0.14453125,0.04638672,-0.06591797,-0.02722168,-0.22070312,-0.08251953,-0.013916016,-0.26171875,0.23046875,0.10449219,-0.03491211,-0.1796875,0.13183594,-0.103515625,-0.16992188,-0.33984375,0.010925293,0.005218506,0.15917969,0.19238281,0.080566406,-0.16308594,-0.032226562,0.07714844,0.18652344,-0.07861328,0.0703125,-0.020385742,-0.03173828,-0.026733398,0.011169434,0.24707031,0,0,0,0,0,0,0,0},{-0.014282227,-0.14941406,-0.03173828,-0.21289062,-0.20996094,0.06298828,-0.1484375,-0.084472656,0.056884766,-0.111816406,0.0009841919,-0.10839844,-0.057128906,-0.10449219,0.043701172,-0.048095703,0.060058594,-0.064453125,0.009155273,-0.2109375,-0.12109375,0.036132812,0.0077209473,0.019042969,0.041015625,-0.036132812,-0.08984375,0.0625,0.1640625,-0.08300781,-0.07763672,-0.057128906,-0.029418945,-0.11279297,-0.06347656,0.09082031,-0.17480469,-0.14355469,0.11816406,-0.19824219,-0.12890625,0.014526367,-0.07324219,0.16992188,-0.036132812,0.016113281,0.21679688,-0.037841797,0.07080078,0.05126953,-0.140625,-0.067871094,-0.13476562,-0.11376953,0.16210938,-0.31640625,-0.115722656,-0.056396484,-0.040039062,0.016601562,-0.044433594,-0.023925781,-0.063964844,-0.22460938,-0.13671875,-0.14453125,-0.26757812,-0.04663086,0.012451172,0.08496094,0.061523438,-0.12890625,0.096191406,0.13964844,-0.17285156,-0.11767578,0.421875,-0.07861328,0.05126953,0.055908203,-0.17382812,0.064941406,-0.11279297,0.10595703,0.005065918,0.028930664,-0.07421875,0.08642578,0.008666992,0.10205078,-0.17480469,0.05053711,-0.07324219,0.12890625,0.00075531006,-0.12207031,0.16210938,0.17675781,-0.017578125,0.06298828,-0.020019531,-0.119140625,0.07861328,-0.07421875,0.08105469,-0.09033203,0.0050354004,0.107421875,-0.052490234,0.1171875,-0.041992188,-0.24414062,0.068359375,0.008972168,-0.036376953,0.111816406,-0.1875,-0.08154297,-0.10449219,-0.19824219,0,0,0,0,0,0,0,0},{-0.030395508,-0.059326172,-0.051513672,-0.026367188,-0.17773438,-0.14941406,-0.12451172,-0.17089844,-0.043701172,0.04296875,0.011047363,-0.16992188,0.03466797,0.08984375,-0.09423828,-0.014038086,0.068359375,-0.019897461,-0.039794922,0.099121094,-0.24707031,-0.08642578,-0.13476562,0.013366699,0.041015625,-0.13867188,0.044189453,0.05102539,-0.13183594,-0.17480469,-0.13476562,-0.13867188,-0.22265625,0.0038452148,0.08642578,-0.05859375,-0.26757812,-0.13769531,-0.18164062,-0.18261719,-0.029418945,0.014465332,-0.011474609,-0.19628906,0.111328125,-0.16308594,0.00033569336,0.030151367,0.0058288574,0.049316406,0.13769531,-0.042236328,-0.12988281,-0.09277344,-0.15332031,-0.15722656,-0.09863281,-0.14160156,0.12890625,-0.08544922,-0.029174805,-0.18359375,-0.1484375,-0.07421875,-0.18066406,-0.15722656,-0.06933594,0.057128906,0.15722656,-0.12988281,-0.026977539,0.140625,-0.021362305,0.020141602,-0.23144531,0.052734375,0.0095825195,0.07324219,-0.055908203,-0.12011719,0.107421875,0.03955078,0.037353516,-0.22265625,0.076660156,-0.009460449,0.0013122559,-0.10839844,-0.15429688,0.019165039,-0.15039062,0.049316406,-0.026855469,0.09277344,0.03540039,-0.12890625,-0.2421875,-0.106933594,-0.11621094,-0.20898438,0.114746094,0.12792969,-0.111328125,-0.07421875,0.002670288,0.123535156,-0.171875,0.08251953,-0.07861328,0.026245117,-0.013977051,-0.1328125,-0.19628906,-0.12597656,0.06201172,-0.10107422,-0.15332031,0.19042969,-0.026367188,-0.0035247803,0,0,0,0,0,0,0,0},{-0.15527344,-0.068847656,-0.16015625,-0.13769531,-0.20410156,-0.07080078,0.11621094,0.07861328,-0.203125,-0.13476562,-0.13378906,-0.038330078,0.17578125,-0.087402344,-0.18554688,-0.068359375,0.009338379,0.07373047,-0.11230469,-0.0073547363,0.10498047,-0.14648438,-0.08984375,-0.114746094,-0.13769531,0.06689453,-0.083496094,-0.008422852,0.029907227,-0.16992188,0.15332031,-0.008666992,0.052490234,0.05078125,0.025756836,-0.20605469,0.016113281,-0.10546875,-0.18847656,-0.0069885254,0.13574219,-0.14355469,-0.20800781,0.123535156,-0.076660156,-0.048095703,-0.18945312,0.0052490234,-0.10058594,-0.15429688,0.080566406,-0.02758789,-0.18652344,-0.23339844,-0.111816406,-0.07763672,0.10986328,-0.075683594,0.16210938,-0.1953125,-0.041992188,-0.028808594,-0.080078125,0.083496094,0.107910156,0.103515625,-0.038330078,-0.0074768066,-0.107421875,0.0546875,-0.07421875,-0.17773438,0.11816406,-0.13085938,0.030395508,-0.03173828,0.01574707,0.07763672,-0.029541016,-0.10498047,-0.061279297,0.107421875,-0.08691406,-0.09277344,-0.13183594,-0.14355469,0.036376953,-0.0048217773,0.018676758,-0.12695312,-0.04296875,0.07128906,0.028686523,-0.045654297,-0.049316406,-0.056396484,-0.045654297,-0.12890625,0.052001953,-0.21386719,-0.018188477,-0.060302734,-0.07714844,-0.20117188,-0.12597656,0.03540039,-0.029174805,0.21484375,0.20019531,-0.04321289,0.13964844,-0.08691406,-0.013000488,-0.25976562,-0.20507812,-0.08300781,-0.09033203,0.08544922,0.1953125,-0.04638672,0,0,0,0,0,0,0,0},{0.043701172,0.03125,-0.18066406,-0.016479492,0.20996094,-0.088378906,0.05517578,-0.20800781,-0.15429688,-0.06689453,-0.15429688,0.12597656,-0.15234375,-0.031982422,0.024169922,0.111816406,0.18847656,-0.044921875,0.088378906,-0.071777344,-0.053710938,-0.07128906,0.02758789,-0.110839844,0.18164062,-0.09765625,-0.16503906,-0.125,-0.08544922,-0.111816406,-0.08984375,-0.23046875,-0.21484375,-0.23925781,-0.11669922,-0.05834961,-0.23730469,0.123535156,-0.13671875,-0.033691406,0.024780273,-0.022827148,-0.032958984,0.07763672,-0.1875,0.0016479492,-0.048828125,0.18164062,-0.03881836,-0.11425781,0.13769531,0.10839844,-0.21582031,0.2578125,0.12158203,-0.06347656,0.076660156,-0.14453125,0.067871094,-0.12451172,-0.08984375,0.013793945,0.072265625,0.17089844,-0.045654297,0.091308594,-0.08691406,0.061523438,0.104003906,-0.10449219,0.028442383,0.011779785,-0.07080078,-0.09667969,0.19042969,-0.125,-0.26367188,-0.15722656,0.052978516,0.16308594,-0.16796875,0.04272461,0.045166016,-0.1796875,0.03515625,-0.15625,-0.026367188,0.099609375,-0.24804688,0.17578125,-0.09277344,-0.037841797,-0.010925293,-0.031982422,-0.30859375,0.05053711,0.037353516,-0.033447266,-0.20703125,-0.40039062,0.039794922,-0.008422852,0.012451172,-0.016357422,0.030639648,0.10498047,-0.096191406,0.15332031,-0.016235352,0.14355469,0.099121094,0.19140625,-0.24414062,-0.38671875,0.05908203,0.026855469,0.119140625,-0.1953125,0.17773438,0.22753906,0,0,0,0,0,0,0,0},{-0.109375,-0.09277344,0.072265625,0.19628906,-0.18164062,-0.0013275146,0.13476562,-0.118652344,-0.14453125,0.04345703,-0.015625,0.004547119,-0.05126953,-0.18359375,0.01965332,-0.16796875,-0.0053100586,-0.15917969,-0.0859375,-0.018676758,-0.047607422,0.13964844,-0.018676758,0.007446289,0.006958008,0.109375,-0.06689453,0.0025634766,0.023925781,0.010009766,0.049560547,-0.14746094,0.1953125,-0.15722656,0.09375,0.05126953,-0.05078125,-0.13574219,0.080566406,0.050048828,0.19726562,0.059570312,0.045410156,0.100097656,-0.076660156,-0.05029297,-0.060058594,-0.092285156,-0.23339844,0.16894531,-0.15722656,-0.06591797,0.00046920776,-0.08691406,-0.008666992,0.059814453,-0.07128906,-0.07128906,-0.29492188,-0.044189453,-0.061523438,0.016845703,0.123535156,0.19433594,-0.049316406,-0.009155273,0.20214844,0.009338379,-0.28320312,-0.007873535,0.043945312,-0.087890625,-0.11376953,0.034423828,-0.01586914,-0.0546875,-0.16796875,0.030639648,0.02709961,0.13476562,-0.068847656,-0.030761719,-0.00043296814,0.033203125,-0.14648438,-0.053466797,0.29882812,-0.10546875,0.0062561035,0.05102539,0.041015625,-0.12597656,-0.24414062,0.15722656,0.016845703,-0.17089844,-0.171875,8.058548e-05,-0.13085938,0.06640625,0.11230469,0.15039062,-0.05493164,0.024902344,0.006286621,0.06225586,0.115234375,-0.13769531,-0.1640625,-0.05029297,-0.18945312,0.10546875,0.03173828,-0.016845703,0.17578125,-0.026977539,-0.171875,-0.052001953,-0.07910156,-0.052978516,0,0,0,0,0,0,0,0},{-0.20019531,0.080078125,0.04321289,0.15234375,-0.15332031,0.06347656,-0.21289062,-0.010681152,0.0040893555,-0.16992188,0.020629883,-0.02331543,-0.03857422,-0.012084961,0.06738281,-0.20996094,0.14257812,0.095214844,-0.30664062,0.0703125,-0.021484375,-0.14941406,0.10449219,-0.08691406,0.014709473,-0.18652344,0.15917969,0.09326172,0.18066406,0.008666992,0.08886719,0.118652344,-0.24707031,0.025268555,-0.18945312,-0.12890625,0.036621094,-0.14355469,-0.024169922,-0.13085938,0.15527344,-0.13964844,-0.15429688,0.0546875,0.17480469,0.08544922,-0.083496094,-0.14648438,-0.1796875,0.13964844,0.24609375,0.11035156,-0.14355469,0.067871094,0.12890625,0.13964844,0.048339844,0.26367188,0.07324219,-0.17773438,-0.10546875,-0.13964844,-0.07128906,0.16601562,-0.012756348,-0.20117188,0.099121094,-0.09423828,0.028564453,-0.021850586,-0.23632812,0.24902344,0.104003906,0.092285156,0.032226562,-0.32617188,-0.09277344,-0.23535156,-0.052490234,-0.15039062,-0.011779785,0.10253906,0.020507812,-0.25,0.076171875,-0.25195312,0.01361084,-0.057128906,-0.09277344,-0.048339844,0.059814453,-0.125,-0.15820312,0.044677734,-0.00982666,0.10986328,-0.045654297,-0.30273438,-0.008178711,0.06640625,0.028686523,-0.23632812,-0.05053711,-0.15234375,-0.07324219,-0.115722656,-0.13964844,0.040771484,0.10986328,-0.087890625,-0.08203125,0.07861328,-0.203125,-0.00793457,0.09423828,-0.17578125,-0.05102539,-0.15136719,-0.123046875,-0.06738281,0,0,0,0,0,0,0,0},{-0.111816406,-0.099121094,-0.08642578,0.111328125,-0.15332031,-0.123535156,-0.027709961,-0.16015625,0.056152344,0.025268555,0.05078125,0.122558594,-0.14453125,0.083984375,-0.018432617,-0.19433594,-0.029174805,0.036621094,-0.07763672,0.12988281,0.18554688,-0.064453125,0.10986328,0.12988281,0.0033111572,0.10839844,-0.064941406,-0.078125,0.032714844,0.14453125,-0.04248047,-0.10839844,0.012756348,-0.06347656,0.13183594,0.061523438,-0.17578125,-0.119140625,0.030395508,0.075683594,0.14257812,-0.05029297,-0.060302734,0.125,0.04345703,-0.02758789,0.07080078,-0.20703125,-0.07910156,0.15234375,-0.04321289,-0.104003906,0.09765625,0.041259766,0.049804688,-0.10839844,0.11230469,-0.17480469,-0.19238281,0.035888672,-0.22753906,-0.06347656,-0.07519531,-0.046142578,-0.13671875,0.08642578,0.27539062,0.0003490448,0.11669922,-0.122558594,-0.11230469,-0.19335938,-0.1015625,-0.14453125,0.08300781,-0.037597656,-0.068847656,-0.21875,0.060791016,-0.10205078,0.010009766,-0.0050964355,-0.19335938,-0.0625,-0.012451172,-0.075683594,-0.1484375,0.0020599365,0.11621094,-0.061767578,-0.20996094,-0.084472656,-0.12011719,0.1328125,-0.087402344,-0.12402344,-0.038085938,-0.10205078,-0.27148438,0.03881836,0.038330078,-0.15820312,0.10107422,-0.026855469,-0.18066406,-0.08642578,-0.075683594,0.13476562,-0.16113281,-0.13476562,0.09082031,-0.12890625,-0.09814453,-0.06738281,-0.032958984,0.15820312,-0.14160156,-0.14746094,-0.038085938,0.10449219,0,0,0,0,0,0,0,0},{0.03491211,-0.17871094,-0.12695312,-0.13085938,-0.12060547,-0.06689453,-0.006713867,-0.16503906,-0.08105469,-0.07470703,0.03857422,-0.041015625,0.118652344,0.03881836,0.10986328,-0.04296875,0.05883789,0.07861328,-0.013427734,0.025512695,0.000415802,0.104003906,0.051757812,-0.026855469,0.00023841858,-0.17578125,-0.08691406,-0.07421875,0.109375,-0.19238281,-0.1171875,-0.12695312,-0.017456055,0.045410156,-0.005584717,-0.23828125,-0.0022125244,-0.19433594,0.010864258,0.0016403198,-0.15332031,-0.16210938,-0.057617188,0.061035156,-0.12402344,-0.16308594,-0.2109375,-0.06347656,-0.14648438,0.12402344,-0.20117188,0.07470703,-0.078125,0.056396484,-0.041503906,0.022460938,0.016357422,-0.18652344,0.046875,0.032958984,-0.13671875,0.022705078,-0.1171875,-0.09375,-0.04638672,-0.12207031,0.060791016,0.05493164,-0.16308594,0.011962891,-0.012390137,-0.10253906,-0.10498047,0.104003906,0.13085938,-0.09277344,0.095214844,-0.11669922,0.06738281,-0.05493164,-0.023803711,-0.14453125,0.052978516,-0.14453125,-0.09472656,0.06591797,0.0703125,-0.08203125,-0.20996094,-0.06640625,0.080566406,-0.22949219,-0.056152344,-0.04321289,-0.052734375,0.06298828,-0.11425781,-0.02355957,-0.119140625,0.067871094,-0.12597656,-0.119140625,-0.28515625,-0.1015625,0.021606445,0.14648438,-0.12207031,-0.15429688,0.08203125,0.049316406,0.033935547,-0.04638672,-0.234375,-0.19335938,-0.122558594,0.05493164,-0.084472656,-0.115234375,0.053710938,0.0011672974,0,0,0,0,0,0,0,0},{0.03540039,-0.22070312,-0.006225586,0.12207031,-0.171875,-0.15429688,-0.140625,-0.13769531,-0.115722656,-0.10986328,-0.007873535,-0.13476562,-0.030395508,0.09814453,0.053710938,0.16894531,0.16113281,0.044677734,-0.1796875,-0.020141602,0.0057678223,0.099121094,-0.22851562,0.055908203,-0.14550781,-0.13476562,-0.013671875,0.020141602,-0.12695312,-0.17285156,0.027832031,0.056396484,-0.0047302246,-0.23144531,-0.18847656,-0.16601562,-0.071777344,0.10595703,0.111816406,0.083984375,-0.008728027,-0.17382812,-0.06982422,-0.23632812,0.115234375,-0.1328125,0.031982422,-0.036132812,0.0546875,-0.04638672,-0.060546875,-0.064941406,-0.0020141602,-0.013305664,0.072753906,0.051513672,-0.09716797,0.052490234,-0.16992188,-0.11669922,-0.14160156,-0.26757812,-0.061767578,-0.15039062,-0.009094238,0.104003906,-0.15722656,-0.15917969,-0.17578125,0.042236328,-0.12402344,-0.071777344,0.10644531,0.018310547,0.025146484,-0.022216797,-0.19140625,-0.28125,-0.22753906,-0.09423828,-0.009460449,0.096191406,-0.13183594,0.029663086,-0.19140625,0.014343262,0.025390625,0.083496094,0.046142578,-0.09765625,-0.106933594,-0.19042969,-0.11035156,-0.092285156,-0.016357422,0.20214844,-0.009033203,-0.1171875,0.091796875,0.032714844,0.033691406,-0.080078125,-0.20410156,-0.15136719,0.057373047,0.01586914,0.025268555,-0.16308594,0.15234375,-0.092285156,-0.053466797,-0.15039062,-0.016113281,-0.18652344,-0.125,-0.009094238,-0.05126953,-0.044921875,-0.07324219,-0.048339844,0,0,0,0,0,0,0,0},{-0.17773438,-0.027832031,-0.17871094,-0.076660156,0.03112793,-0.15722656,0.095214844,-0.12011719,-0.025024414,-0.045410156,0.003036499,-0.09472656,0.24511719,-0.06689453,-0.06640625,-0.08251953,-0.18457031,0.053466797,0.12695312,-0.030273438,-0.103027344,0.11230469,-0.095703125,-0.051513672,-0.041503906,-0.21484375,-0.080566406,0.05493164,0.005859375,-0.26171875,-0.096191406,-0.18554688,-0.12451172,-0.1953125,-0.075683594,0.005859375,0.005584717,-0.11230469,-0.18261719,-0.040283203,-0.032226562,0.100097656,-0.1796875,-0.10253906,0.024291992,-0.08105469,-0.109375,0.091308594,0.09082031,0.15917969,0.16308594,0.103027344,0.0040283203,0.016479492,-0.103027344,0.115722656,0.078125,-0.0146484375,0.21777344,0.21972656,-0.024536133,-0.091796875,0.10205078,0.21582031,0.056396484,-0.111328125,0.10253906,0.026855469,0.11621094,0.28320312,0.13476562,-0.087890625,-0.09326172,0.115722656,-0.11816406,-0.2421875,0.018554688,0.07080078,-0.020263672,-0.018188477,-0.05859375,-0.16113281,-0.057617188,0.13085938,0.13769531,0.12988281,-0.13867188,0.16699219,-0.13671875,-0.03466797,0.061767578,-0.13476562,-0.17773438,0.10595703,0.20703125,-0.16308594,-0.019165039,-0.15136719,0.06591797,-0.13476562,-0.0859375,0.18945312,-0.104003906,-0.1328125,0.08544922,-0.030517578,-0.14355469,-0.11767578,-0.00982666,-0.115722656,-0.16503906,0.125,0.14941406,-0.19140625,0.016113281,0.037597656,-0.0003376007,-0.17578125,-0.11816406,-0.03955078,0,0,0,0,0,0,0,0},{-0.012207031,-0.041748047,-0.018798828,0.11376953,0.092285156,0.12207031,-0.045166016,-0.2734375,-0.08300781,-0.28125,0.0119018555,-0.12988281,0.03466797,-0.08105469,-0.1640625,-0.1875,-0.22363281,0.017944336,0.15332031,0.07128906,-0.024414062,0.17871094,-0.16992188,-0.16699219,-0.0049438477,-0.056152344,-0.110839844,0.030029297,-0.12402344,-0.17382812,-0.110839844,-0.26367188,-0.0071105957,0.032470703,-0.19921875,-0.18652344,0.006713867,-0.008728027,-0.2890625,0.041992188,-0.10498047,0.010803223,0.01373291,0.22265625,-0.19238281,-0.19824219,-0.030883789,-0.008972168,-0.18945312,-0.106933594,0.19433594,0.09814453,-0.048583984,0.096191406,0.043945312,-0.12695312,-0.125,-0.06738281,0.119140625,-0.14746094,-0.37304688,-0.19824219,-0.114746094,-0.047607422,-0.09472656,0.19238281,0.0011367798,-0.2109375,-0.0035858154,-0.041992188,-0.0703125,-0.21386719,0.006225586,0.03515625,0.0066223145,0.049804688,-0.15234375,0.072753906,-0.061523438,-0.13769531,-0.19433594,-0.037841797,-0.083984375,-0.115722656,-0.080566406,0.029663086,0.022094727,0.0234375,-0.15332031,0.011108398,-0.1328125,-0.27148438,0.018188477,-0.075683594,-0.026000977,0.119628906,-0.15039062,0.11279297,-0.016601562,-0.20800781,0.032714844,-0.20019531,-0.040527344,-0.21582031,-0.22265625,-0.0007095337,-0.087402344,-0.115234375,-0.25585938,-0.061279297,-0.16992188,0.057128906,0.07763672,-0.13671875,-0.13769531,0.03564453,-0.15722656,0.051513672,0.12597656,-0.06933594,0,0,0,0,0,0,0,0},{0.056396484,-0.040527344,-0.30859375,-0.13574219,-0.034179688,0.06689453,-0.26757812,0.10595703,-0.18457031,-0.088378906,-0.041503906,-0.071777344,0.11376953,0.05053711,-0.123046875,-0.18554688,-0.15136719,0.16503906,-0.076660156,-0.1015625,-0.13378906,0.041503906,-0.10498047,-0.13085938,-0.07421875,-0.125,-0.20703125,-0.09326172,0.1875,-0.20507812,-0.023925781,-0.092285156,0.03930664,-0.33007812,-0.029785156,-0.0625,0.1015625,-0.0058288574,-0.24121094,0.13671875,-0.15722656,-0.109375,0.12109375,-0.044189453,0.0010910034,-0.15820312,0.01184082,-0.080078125,-0.053466797,-0.12011719,0.052246094,-0.07421875,0.052001953,0.020629883,0.05908203,0.11816406,0.018432617,-0.21972656,-0.111816406,-0.0703125,-0.14648438,-0.09277344,-0.06640625,-0.045410156,-0.020629883,-0.0047912598,0.05053711,0.1171875,-0.037597656,0.072753906,-0.27734375,-0.14453125,0.006652832,0.0003299713,-0.23242188,-0.02758789,0.076171875,0.0059814453,0.037353516,0.1328125,-0.19726562,-0.08203125,0.107910156,-0.071777344,-0.13378906,0.18847656,0.16894531,-0.21289062,-0.005432129,0.20800781,-0.07080078,-0.07910156,-0.15234375,-0.13964844,-0.114746094,-0.07519531,0.009460449,-0.07714844,0.06347656,-0.111328125,0.1953125,0.05859375,-0.30273438,-0.13867188,-0.15527344,-0.12158203,0.24316406,0.043945312,-0.026855469,-0.06347656,-0.21777344,-0.20800781,0.12695312,0.053710938,0.010498047,-0.11621094,0.114746094,-0.20214844,0.07080078,-0.024291992,0,0,0,0,0,0,0,0},{-0.061523438,-0.10449219,-0.068359375,-0.01965332,-0.13476562,0.00050735474,-0.119140625,-0.125,-0.075683594,-0.011230469,-0.010314941,-0.09423828,0.21582031,-0.18945312,0.17480469,-0.123046875,0.17089844,-0.1796875,-0.24609375,0.019042969,-0.13574219,-0.1640625,-0.100097656,0.06689453,0.002105713,-0.114746094,-0.027832031,-0.22070312,-0.08691406,0.009399414,-0.119628906,0.10839844,-0.103515625,-0.15625,-0.015075684,-0.35351562,-0.02331543,-0.12890625,-0.12792969,0.15722656,-0.05078125,-0.071777344,-0.17675781,-0.03881836,-0.09814453,0.083496094,-0.13085938,0.07519531,0.1640625,-0.03173828,0.09667969,-0.18652344,0.024658203,-0.18066406,0.15332031,0.03540039,-0.13867188,-0.106933594,0.026000977,0.119628906,0.040527344,-0.059814453,0.03149414,0.22851562,-0.16113281,0.08642578,-0.064453125,0.083984375,-0.084472656,0.13671875,0.13378906,0.022705078,0.12207031,-0.07080078,-0.0023498535,-0.34570312,-0.029785156,0.021484375,-0.04638672,0.19140625,-0.006378174,-0.109375,-0.057861328,-0.13183594,-0.040771484,-0.048095703,-0.16308594,0.05126953,0.076660156,0.041748047,0.12597656,-0.20800781,-0.011108398,-0.107910156,0.00051116943,0.20800781,0.037841797,-0.10058594,0.1484375,-0.17089844,-0.122558594,-0.096191406,-0.15625,-0.31445312,-0.20800781,-0.10644531,0.08154297,-0.16113281,0.06689453,-0.06347656,-0.16113281,-0.13183594,-0.12060547,-0.07080078,-0.12792969,0.15625,0.045166016,0.13378906,0.053955078,-0.0067443848,0,0,0,0,0,0,0,0},{-0.17578125,-0.06542969,-0.024291992,-0.09667969,-0.080078125,-0.23144531,-0.071777344,-0.044433594,0.0073242188,-0.20703125,-0.17480469,0.059570312,0.035888672,-0.16015625,0.05834961,-0.064453125,0.005218506,0.08544922,0.017822266,-0.00390625,-0.17089844,-0.13574219,-0.19824219,-0.12695312,-0.13085938,-0.10839844,-0.005432129,-0.17382812,-0.1953125,-0.20214844,0.005432129,-0.12597656,0.032958984,-0.21875,-0.014770508,-0.17480469,0.0030212402,0.06225586,0.0546875,0.08251953,-0.15917969,-0.13867188,0.052246094,0.07714844,-0.119140625,0.03173828,-0.20605469,-0.107910156,0.10253906,-0.1015625,-0.13085938,0.04272461,-0.0037841797,-0.15234375,0.095703125,-0.06689453,0.10839844,0.052246094,0.016235352,-0.0859375,-0.16699219,-0.111816406,-0.078125,0.017089844,0.061767578,-0.06298828,-0.2109375,-0.14355469,0.064941406,-0.099609375,-0.103515625,-0.11230469,-0.0703125,-0.041015625,0.07421875,-0.123535156,-0.06982422,-0.20996094,0.022949219,-0.047851562,0.06738281,-0.14746094,-0.076660156,-0.029174805,0.002243042,-0.13183594,0.091796875,0.014892578,0.006011963,0.010559082,-0.024291992,-0.079589844,-0.040771484,0.043701172,-0.17773438,0.057128906,-0.027709961,-0.030639648,-0.20703125,-0.17578125,-0.15917969,-0.064941406,-0.21582031,-0.12597656,-0.08691406,-0.048583984,-0.19238281,-0.08691406,-0.025634766,0.005279541,-0.045654297,0.060791016,-0.020141602,-0.009155273,-0.123046875,0.057861328,0.025024414,-0.044677734,0.10058594,-0.003967285,0,0,0,0,0,0,0,0},{-0.08642578,-0.034423828,-0.043701172,-0.03515625,-0.13671875,0.08935547,-0.09765625,-0.060791016,-0.24023438,0.040771484,-0.27148438,0.00075531006,-0.03564453,0.014404297,-0.12597656,-0.123046875,-0.13769531,0.04272461,-0.11669922,0.14160156,-0.0703125,-0.11425781,-0.16113281,-0.09375,0.12109375,0.010314941,-0.10253906,-0.029907227,-0.123535156,-0.21777344,0.12451172,-0.07910156,0.020019531,-0.11425781,-0.09423828,-0.12890625,0.088378906,0.036621094,0.057373047,0.03881836,-0.17871094,-0.20996094,-0.16210938,-0.07470703,0.01373291,-0.08251953,0.1953125,-0.04321289,0.014465332,0.087402344,0.19042969,-0.20019531,0.080566406,-0.21972656,-0.13964844,0.02709961,0.11328125,-0.064453125,0.017456055,-0.17480469,-0.018554688,-0.27148438,0.0028686523,-0.12890625,-0.056884766,-0.087890625,-0.010437012,-0.0099487305,-0.118652344,0.08984375,-0.26171875,-0.053222656,-0.030029297,-0.038085938,-0.008422852,-0.08300781,-0.11035156,-0.22460938,-0.19628906,-0.042236328,-0.032226562,0.02368164,-0.12695312,-0.1875,-0.17578125,-0.010131836,-0.045898438,-0.068359375,0.05908203,-0.17480469,-0.12890625,-0.31835938,-0.2265625,-0.122558594,-0.067871094,-0.14160156,0.01574707,-0.18261719,0.15625,0.10253906,-0.08251953,0.015197754,-0.024291992,-0.16308594,-0.096191406,0.100097656,-0.12060547,0.053955078,-0.21386719,-0.072265625,-0.1875,0.0138549805,-0.10986328,-0.25,-0.007537842,0.13964844,-0.037353516,-0.17089844,-0.009460449,0.14648438,0,0,0,0,0,0,0,0},{0.1953125,-0.045898438,-0.13964844,0.08691406,0.064453125,-0.12597656,-0.28320312,0.018676758,-0.1875,-0.068359375,-0.32226562,-0.17285156,-0.10107422,0.08203125,0.030151367,-0.18847656,0.16308594,0.07861328,0.026611328,0.17675781,-0.03149414,-0.22070312,0.09375,-0.060791016,0.008728027,-0.08154297,-0.09667969,-0.04272461,-0.055419922,-0.08935547,0.02722168,-0.18652344,0.01940918,-0.071777344,0.084472656,-0.19042969,-0.09082031,-0.063964844,-0.037597656,0.23730469,0.020385742,0.02331543,-0.18261719,0.080078125,0.0859375,-0.2265625,-0.22167969,-0.032714844,-0.1796875,-0.00579834,-0.08984375,0.11376953,0.025024414,0.05444336,0.021484375,-0.08935547,-0.0059814453,0.18457031,0.025268555,0.068847656,0.13183594,-0.12792969,0.076171875,-0.05419922,0.084472656,0.02368164,0.07910156,-0.08251953,0.040771484,0.032226562,-0.020141602,-0.009216309,0.092285156,-0.18359375,-0.07324219,-0.16992188,-0.09033203,-0.115234375,0.10449219,-0.017333984,0.043945312,-0.053710938,0.020385742,-0.099609375,0.13378906,0.13476562,-0.15625,-0.016967773,-0.23339844,0.00045204163,-0.09667969,-0.12695312,-0.18847656,0.119140625,0.0079956055,0.20410156,-0.18261719,-0.17675781,-0.16601562,0.0016326904,-0.22949219,0.010559082,-0.06738281,0.00079345703,-0.052490234,0.13671875,-0.0703125,-0.076171875,-0.14355469,-0.025024414,0.096191406,-0.08886719,-0.1328125,-0.34960938,-0.043945312,-0.20605469,0.115234375,0.0625,-0.015319824,-0.08984375,0,0,0,0,0,0,0,0},{0.08642578,-0.07080078,-0.123046875,-0.123046875,0.20996094,-0.03515625,0.023803711,-0.18945312,-0.14257812,-0.037841797,-0.10205078,0.015136719,0.09375,-0.1640625,0.17773438,0.080078125,-0.05102539,-0.16699219,-0.08886719,-0.09814453,0.013244629,-0.040039062,-0.099121094,-0.23730469,0.047607422,-0.09667969,0.026245117,-0.1484375,0.119628906,-0.028564453,-0.12792969,0.09277344,0.068359375,-0.27539062,0.10205078,-0.14941406,0.084472656,-0.063964844,-0.19726562,-0.16992188,0.15332031,-0.22753906,-0.123535156,-0.088378906,-0.18261719,-0.1640625,-0.25390625,-0.027709961,-0.07910156,0.16894531,0.10839844,0.012268066,0.09863281,-0.14257812,-0.013916016,-0.08300781,0.005706787,-0.104003906,0.09082031,-0.118652344,0.12792969,-0.11425781,0.18945312,0.0043029785,-0.17382812,0.032226562,0.14550781,-0.048095703,-0.025878906,0.06298828,-0.04321289,-0.22363281,0.088378906,0.005126953,0.16503906,-0.07324219,0.10644531,-0.119628906,0.056152344,0.122558594,-0.26953125,-0.07373047,0.29492188,-0.22265625,0.08496094,-0.19824219,-0.103515625,-0.033203125,0.09082031,-0.20117188,0.056640625,-0.016845703,-0.125,0.04321289,-0.1640625,-0.18945312,-0.028686523,-0.16015625,-0.091796875,-0.18261719,0.034423828,-0.22167969,-0.099609375,-0.26367188,0.08300781,0.21679688,-0.11669922,-0.013305664,-0.15820312,0.03149414,-0.03125,-0.11328125,-0.16015625,-0.19140625,0.024780273,-0.056884766,-0.048828125,0.18261719,0.044921875,-0.03173828,0,0,0,0,0,0,0,0},{-0.1953125,-0.20507812,-0.08300781,-0.052490234,0.13378906,0.11035156,-0.026367188,0.0049743652,-0.08154297,-0.052246094,-0.11328125,0.057617188,-0.018676758,-0.20410156,-0.021118164,-0.26367188,0.234375,0.08544922,-0.30273438,-0.13964844,0.08300781,-0.07080078,-0.099609375,0.027709961,0.18945312,-0.23632812,-0.07519531,0.06298828,-0.061279297,0.014953613,-0.11328125,0.09277344,-0.0390625,-0.114746094,0.001373291,-0.12890625,0.057373047,0.19140625,0.104003906,0.22265625,-0.037841797,-0.111328125,0.02746582,0.09277344,-0.13378906,-0.0009841919,-0.21386719,-0.03955078,-0.0008239746,0.08154297,-0.012451172,-0.14453125,-0.09863281,-0.103027344,0.14355469,-0.12695312,0.095703125,-0.10498047,-0.051757812,-0.18945312,0.087402344,-0.31054688,-0.21289062,0.11035156,-0.046142578,0.040527344,-0.008972168,0.20410156,-0.014282227,0.024169922,-0.046875,0.06933594,-0.0059509277,0.0546875,-0.10253906,-0.18066406,-0.15332031,-0.08105469,-0.030273438,-0.012817383,0.060058594,-0.1171875,-0.05517578,-0.13964844,-0.095703125,-0.07519531,0.024902344,0.18847656,-0.037597656,0.03955078,-0.037353516,0.05493164,-0.21484375,-0.083496094,-0.12988281,0.09814453,-0.08496094,-0.15625,0.20507812,-0.013793945,-0.002670288,-0.20996094,-0.16113281,-0.08691406,-0.05053711,0.10058594,-0.044677734,-0.064453125,-0.083984375,-0.14453125,0.104003906,0.09814453,-0.015625,-0.09667969,0.080566406,-0.14355469,-0.0023040771,-0.15136719,-0.15820312,-0.11425781,0,0,0,0,0,0,0,0},{-0.015625,-0.29296875,-0.18261719,0.16796875,-0.076660156,0.16503906,0.02709961,0.05444336,0.002243042,-0.13769531,-0.15136719,0.025024414,0.095214844,-0.06982422,-0.09033203,0.088378906,0.00037384033,-0.096191406,0.08886719,0.07324219,-0.14257812,-0.234375,-0.10546875,0.080566406,-0.040283203,-0.3046875,-0.1328125,-0.017211914,0.24902344,-0.045654297,-0.06591797,-0.14355469,-0.107910156,-0.057373047,0.12011719,0.10205078,-0.103515625,-0.010253906,-0.041503906,-0.04296875,-0.08886719,0.045898438,-0.09082031,0.17089844,0.10595703,0.064453125,-0.080078125,-0.10253906,-0.07470703,-0.06640625,-0.18554688,0.19335938,-0.23535156,0.16601562,0.24707031,0.122558594,0.1875,-0.011230469,-0.024047852,0.20214844,-0.036865234,0.080078125,-0.07470703,0.0859375,-0.22851562,0.012207031,0.011169434,0.22363281,0.026977539,-0.033447266,-0.22070312,-0.026000977,-0.028808594,-0.0625,-0.030395508,-0.10253906,0.11035156,-0.12158203,0.06738281,0.14257812,-0.012817383,0.0027618408,0.012878418,-0.037597656,-0.043701172,-0.29296875,-0.017578125,-0.2421875,-0.084472656,0.13183594,0.02355957,-0.27734375,-0.22167969,0.103515625,0.06933594,-0.10253906,-0.020507812,0.16601562,-0.012817383,-0.18261719,-0.1328125,-0.020507812,-0.18554688,-0.103515625,-0.08496094,0.17871094,0.10546875,0.026367188,0.060546875,0.036132812,-0.091796875,-0.048828125,-0.072753906,0.03881836,-0.072265625,0.06689453,-0.032226562,0.026977539,-0.20605469,-0.16699219,0,0,0,0,0,0,0,0},{-0.019165039,-0.056884766,-0.06347656,-0.12109375,-0.022827148,-0.0058288574,0.10595703,-0.100097656,-0.083496094,-0.24902344,-0.06347656,0.10058594,-0.013793945,0.18652344,-0.12207031,0.084472656,0.03881836,0.11376953,-0.076660156,-0.123535156,0.092285156,0.11816406,0.01940918,0.095703125,0.064941406,-0.10595703,-0.09423828,-0.03515625,0.0069885254,-0.19921875,0.14257812,-0.023925781,-0.14648438,-0.021850586,-0.16601562,-0.12890625,-0.140625,0.013793945,-0.018554688,0.1015625,-0.052734375,-0.0859375,-0.092285156,-0.020507812,0.013793945,-0.15722656,0.00793457,0.052490234,0.19335938,0.03515625,-0.12011719,0.007598877,0.041748047,-0.23144531,0.05883789,-0.18457031,0.052001953,-0.026000977,-0.072265625,-0.24707031,0.038085938,0.014465332,-0.010314941,-0.19824219,-0.09863281,-0.010986328,0.044189453,-0.11425781,-0.080566406,-0.014343262,-0.10498047,0.08886719,0.109375,-0.17089844,0.0022125244,-0.20898438,0.030517578,0.027954102,0.048095703,0.07373047,0.15234375,0.09277344,0.04248047,0.0703125,0.022094727,-0.014465332,-0.19042969,-0.123046875,-0.05908203,-0.06347656,-0.096191406,-0.33984375,-0.12402344,-0.020141602,0.013977051,-0.15429688,-0.13671875,0.064941406,0.10449219,-0.22460938,-0.020996094,-0.036865234,-0.071777344,-0.14746094,-0.18554688,0.12597656,0.10107422,-0.06591797,-0.13671875,-0.032226562,-0.14355469,0.18359375,-0.078125,-0.20703125,-0.15136719,0.203125,0.16308594,0.021118164,0.12109375,-0.067871094,0,0,0,0,0,0,0,0},{0.107910156,0.07519531,-0.12988281,0.107421875,0.10498047,-0.14648438,-0.19921875,0.06689453,0.083496094,-0.122558594,-0.059570312,-0.07080078,-0.037109375,0.11035156,0.15234375,0.034423828,-0.26953125,-0.011291504,-0.29296875,0.051757812,0.064941406,-0.23828125,-0.17773438,0.05029297,-0.032226562,-0.03930664,-0.119140625,-0.14941406,-0.09765625,-0.099609375,0.02746582,-0.072265625,-0.05102539,-0.08984375,-0.19335938,0.06640625,-0.078125,0.018066406,-0.15332031,-0.111328125,0.046875,-0.013183594,0.03857422,-0.14746094,-0.021850586,0.07763672,-0.059326172,-0.025024414,-0.063964844,-0.045410156,-0.16796875,0.056884766,-0.114746094,-0.12792969,-0.0099487305,0.037597656,-0.083496094,0.009033203,0.027832031,-0.17382812,-0.04345703,-0.20019531,0.048828125,0.071777344,0.05493164,-0.008300781,0.11035156,-0.026855469,0.11279297,0.09863281,-0.087890625,-0.25585938,0.18847656,0.035888672,-0.07861328,-0.17773438,-0.15722656,-0.048339844,0.03466797,0.17089844,0.1171875,0.118652344,-0.17480469,-0.17578125,-0.107910156,0.04345703,-0.10253906,0.03930664,0.13867188,-0.04321289,-0.017578125,-0.11376953,-0.33984375,-0.1640625,-0.115234375,-0.0060424805,0.07519531,0.06640625,-0.05859375,-0.028564453,-0.03149414,0.15917969,-0.04736328,-0.06738281,-0.15136719,-0.08300781,0.02734375,-0.003692627,-0.123535156,0.17089844,0.050048828,-0.12988281,-0.12988281,-0.047607422,-0.115722656,0.068847656,-0.020629883,-0.119140625,-0.044921875,0.0006942749,0,0,0,0,0,0,0,0},{-0.091796875,-0.09033203,-0.028320312,0.123046875,-0.016357422,0.0234375,-0.19433594,0.037109375,0.030517578,-0.15625,-0.071777344,0.005859375,-0.11621094,0.13964844,0.02734375,0.026733398,0.14941406,0.20214844,0.17675781,0.021484375,0.107910156,-0.10253906,-0.06298828,0.20214844,0.12695312,0.030517578,-0.16894531,-0.044921875,0.09472656,-0.052734375,-0.06298828,0.053466797,-0.03466797,0.033447266,0.15332031,0.052246094,-0.0071411133,-0.123535156,-0.14550781,-0.27734375,0.047607422,0.021606445,0.08886719,0.10595703,0.19238281,0.06591797,-0.103027344,-0.12792969,0.08935547,0.07861328,0.080078125,-0.11816406,-0.027709961,-0.017456055,-0.16699219,0.0025482178,0.36914062,0.20996094,0.072265625,-0.024169922,0.041259766,0.11230469,0.072753906,0.10253906,0.18945312,-0.19238281,0.044433594,-0.26171875,-0.024780273,0.1328125,0.091308594,-0.052978516,-0.18554688,0.037841797,-0.042236328,-0.022460938,-0.16601562,-0.015991211,0.08300781,0.08203125,0.21191406,0.0055236816,0.059814453,-0.083984375,0.15722656,0.09472656,-0.008972168,0.064453125,0.11328125,-0.025756836,0.020629883,-0.041503906,-0.16308594,0.10546875,-0.15039062,0.06591797,-0.07910156,-0.026855469,0.015014648,-0.050048828,-0.004547119,-0.042236328,-0.16113281,-0.000579834,0.115234375,0.0016555786,-0.08642578,0.044189453,-0.10253906,-0.07128906,-0.012207031,-0.1875,0.15039062,-0.048828125,0.037109375,-0.075683594,-0.02709961,0.18261719,0.18359375,0.05078125,0,0,0,0,0,0,0,0},{0.067871094,0.057373047,-0.064941406,-0.14941406,0.038085938,-0.12060547,0.014160156,-0.029174805,0.0025939941,0.016235352,0.075683594,0.046142578,-0.07470703,0.15429688,-0.02331543,-0.008972168,0.072265625,-0.22265625,0.04296875,-0.099609375,-0.091796875,-0.12597656,-0.07470703,-0.0029144287,0.018432617,0.05859375,0.023071289,0.06982422,-0.1171875,0.005645752,-0.07373047,-0.02331543,-0.060302734,-0.071777344,-0.19042969,-0.16796875,-0.18261719,0.15234375,-0.07128906,0.10595703,0.008728027,-0.028198242,0.20410156,-0.11230469,-0.08544922,-0.024169922,-0.13183594,-0.15820312,0.171875,-0.125,-0.020874023,-0.123046875,-0.15917969,-0.21679688,-0.07519531,0.13867188,0.07080078,-0.037353516,-0.029907227,-0.083496094,0.16796875,-0.11621094,-0.084472656,-0.1953125,-0.0119018555,-0.06591797,0.07324219,-0.099121094,0.012512207,0.10253906,-0.20214844,-0.020019531,-0.076171875,-0.13867188,-0.032226562,0.13378906,0.22070312,-0.1640625,-0.25585938,-0.16113281,-0.03540039,-0.1484375,-0.064453125,-0.006958008,-0.0078125,-0.12597656,0.010070801,-0.010437012,-0.13867188,0.029174805,0.019042969,-0.31445312,-0.15234375,0.20605469,0.103515625,0.17285156,-0.020507812,-0.027709961,-0.1640625,-0.024658203,-0.13769531,-0.088378906,-0.35546875,0.012817383,-0.043945312,-0.018310547,-0.017211914,-0.0063476562,0.10205078,-0.08203125,-0.07714844,-0.045654297,-0.010864258,0.047851562,-0.21679688,-0.045898438,0.028320312,0.026123047,-0.20019531,-0.19433594,0,0,0,0,0,0,0,0},{0.045898438,-0.26367188,0.03466797,-0.11425781,0.041503906,-0.06542969,-0.04663086,-0.21582031,0.107910156,-0.041992188,-0.07373047,-0.107421875,-0.18554688,0.049316406,-0.2734375,-0.28125,-0.38085938,-0.047851562,-0.063964844,0.12890625,0.017578125,-0.08935547,-0.007873535,0.11669922,0.036865234,-0.08251953,-0.056884766,0.063964844,0.13085938,-0.18457031,0.0859375,-0.2421875,0.20996094,-0.10888672,-0.083984375,0.11328125,0.05419922,-0.1015625,-0.1328125,-0.09033203,-0.38085938,0.008117676,-0.140625,-0.1328125,-0.060058594,-0.18359375,-0.026245117,0.0134887695,0.0025787354,-0.005706787,0.031982422,0.056396484,-0.23730469,-0.13378906,-0.029663086,-0.00592041,0.23632812,-0.2578125,-0.15234375,-0.29296875,-0.34960938,-0.08544922,0.10253906,0.039794922,-0.20703125,-0.115234375,0.118652344,-0.107910156,-0.04296875,0.052978516,-0.049560547,-0.12597656,0.030273438,0.045654297,-0.06347656,-0.22460938,0.08886719,-0.19921875,-0.17382812,-0.140625,-0.057861328,0.06298828,-0.04248047,0.099609375,-0.107910156,0.1171875,0.16503906,-0.515625,-0.18261719,-0.09033203,-0.08105469,-0.114746094,-0.107910156,0.087890625,-0.18359375,0.068847656,-0.09326172,-0.0859375,-0.028686523,-0.07324219,0.15234375,-0.13476562,-0.06591797,-0.009460449,-0.051513672,0.14550781,0.03930664,0.099609375,-0.06201172,-0.18261719,0.034423828,0.111816406,-0.11767578,-0.03857422,-0.08691406,0.09814453,-0.03466797,0.0070495605,0.096191406,-0.056884766,0,0,0,0,0,0,0,0},{-0.083984375,-0.34179688,-0.022949219,0.10205078,-0.028320312,-0.11767578,-0.2265625,0.024536133,0.18554688,-0.08984375,-0.30664062,-0.140625,-0.17871094,0.06347656,-0.041992188,-0.13476562,-0.0046081543,0.060791016,0.06542969,-0.265625,-0.100097656,0.080566406,-0.29296875,-0.22265625,-0.11767578,-0.12597656,-0.22753906,-0.008483887,-0.053222656,-0.05126953,0.017578125,0.030639648,-0.12011719,-0.041015625,-0.16992188,-0.07519531,-0.028686523,-0.064453125,-0.033203125,0.09277344,0.019042969,-0.15527344,0.21289062,0.017822266,0.03857422,-0.13769531,-0.13769531,-0.27539062,-0.17089844,-0.05834961,0.0047302246,0.016113281,-0.056640625,0.107910156,-0.32421875,0.05444336,0.09423828,-0.028442383,-0.03112793,-0.10986328,0.15234375,0.10595703,0.04296875,-0.14355469,-0.052734375,0.035888672,-0.010681152,0.05419922,-0.15429688,-0.11669922,-0.091796875,0.107910156,-0.060058594,-0.07910156,-0.16113281,-0.07324219,0.055664062,-0.21484375,-0.053955078,-0.10839844,0.061523438,-0.096191406,0.0625,0.050048828,-0.20019531,0.08691406,0.012207031,0.08496094,0.05078125,0.09472656,-0.2109375,-0.06982422,-0.055419922,-0.055419922,-0.111816406,-0.23339844,-0.060546875,-0.17382812,-0.051513672,-0.017211914,0.0002822876,-0.04321289,-0.23632812,-0.27539062,-0.0051574707,0.13671875,-0.16210938,-0.06542969,0.03930664,-0.10644531,-0.103027344,-0.12109375,-0.005706787,-0.076171875,-0.03112793,-0.12597656,0.14746094,0.022460938,0.029174805,-0.083984375,0,0,0,0,0,0,0,0},{-0.125,0.067871094,-0.20214844,-0.111328125,0.114746094,0.028198242,-0.24023438,-0.08300781,0.13671875,-0.23339844,-0.103515625,-0.034423828,0.056640625,0.12060547,-0.19140625,0.10253906,0.012512207,0.0045166016,0.05834961,0.08984375,0.037597656,-0.064453125,-0.016235352,-0.1171875,-0.019165039,-0.087890625,-0.12109375,-0.15820312,-0.10644531,-0.08251953,-0.115722656,0.30859375,0.19238281,0.044433594,0.067871094,-0.34765625,-0.12792969,0.22460938,-0.12402344,-0.17871094,0.1640625,-0.072753906,-0.06689453,0.19726562,-0.049072266,-0.17089844,0.16113281,0.057861328,0.16796875,-0.09277344,-0.11621094,-0.061767578,0.033203125,0.049072266,-0.06542969,-0.15820312,0.034179688,-0.0126953125,0.10986328,0.037597656,0.029052734,0.020629883,-0.033447266,0.00091171265,0.018798828,-0.12451172,0.012023926,-0.037109375,-0.047607422,0.06640625,0.034423828,0.10449219,0.024047852,-0.031982422,-0.083984375,-0.087890625,-0.055664062,-0.19042969,0.057861328,-0.044433594,0.07373047,-0.041015625,-0.095703125,-0.13476562,-0.11376953,0.091308594,-0.15332031,-0.091308594,0.08154297,-0.0003414154,0.01940918,0.015319824,-0.052978516,0.061523438,-0.1484375,-0.18261719,0.09863281,-0.28710938,0.23828125,-0.27734375,-0.265625,-0.020629883,-0.18164062,-0.10253906,-0.20898438,-0.0045166016,-0.04638672,-0.080566406,0.05126953,-0.068359375,0.03515625,0.03173828,0.046875,-0.23730469,-0.12597656,0.07910156,-0.14160156,0.103515625,-0.14453125,-0.016113281,0,0,0,0,0,0,0,0},{-0.15820312,-0.06982422,-0.171875,0.1640625,-0.1328125,0.033447266,-0.016601562,-0.04736328,-0.15722656,-0.059814453,-0.25195312,-0.03466797,-0.15917969,-0.13378906,-0.0859375,-0.18945312,-0.16113281,-0.16699219,-0.234375,-0.14257812,-0.041992188,-0.075683594,0.018188477,-0.026489258,-0.02758789,-0.17578125,-0.12695312,0.15234375,-0.107910156,-0.09472656,-0.10839844,0.11376953,-0.1796875,0.037109375,0.06982422,-0.15625,0.068359375,0.022705078,-0.12402344,0.035888672,0.111328125,0.12792969,0.029296875,0.071777344,0.11035156,0.06640625,0.057128906,-0.040283203,-0.040527344,0.0390625,-0.053466797,-0.10449219,-0.08105469,-0.15332031,-0.091308594,-0.040771484,-0.079589844,-0.12060547,0.038330078,-0.08886719,0.08886719,-0.071777344,0.005645752,0.17382812,0.14550781,-0.07324219,0.0115356445,0.19238281,-0.053466797,-0.083496094,-0.18164062,-0.17675781,0.033935547,-0.013977051,-0.15039062,-0.053955078,0.041015625,0.07080078,-0.16210938,0.076660156,-0.08203125,-0.00390625,0.024658203,-0.016113281,0.049316406,-0.06201172,-0.0703125,-0.061279297,-0.053710938,-0.1796875,-0.030273438,-0.0859375,-0.13085938,0.068359375,-0.14257812,-0.045654297,0.0079956055,-0.14453125,0.096191406,0.043945312,0.08105469,0.07519531,-0.15136719,-0.26171875,-0.15332031,-0.048339844,0.0032196045,-0.02368164,-0.056884766,-0.18457031,-0.13183594,0.056640625,-0.022827148,-0.07421875,0.09716797,0.08935547,0.07324219,-0.049560547,-0.14355469,0.08203125,0,0,0,0,0,0,0,0},{0.037597656,-0.16210938,-0.21289062,0.015563965,0.13769531,0.06738281,0.022338867,0.030517578,-0.06347656,-0.15332031,-0.060058594,0.08105469,0.095703125,0.005493164,0.06738281,-0.14941406,-0.13964844,-0.0390625,-0.20019531,-0.1171875,-0.20117188,0.32226562,-0.18652344,0.1640625,0.037597656,-0.100097656,-0.04321289,-0.16015625,-0.10058594,0.045654297,0.013549805,-0.122558594,0.045410156,-0.16503906,-0.028442383,-0.203125,0.046142578,0.16894531,0.01574707,-0.0060424805,0.022094727,-0.30859375,-0.028808594,-0.0049438477,-0.15820312,-0.0047912598,-0.10253906,-0.088378906,-0.013916016,-0.022583008,-0.04248047,0.19628906,0.055419922,0.016357422,-0.19433594,0.0029907227,-0.0071105957,0.029052734,-0.27539062,-0.037109375,0.15527344,0.016479492,-0.15234375,0.06591797,-0.12597656,0.061767578,-0.061279297,-0.18457031,-0.03149414,-0.12402344,-0.080078125,-0.18652344,-0.08544922,-0.22753906,0.029785156,0.071777344,0.080078125,0.10986328,-0.14941406,0.109375,0.20019531,-0.036865234,0.061279297,0.068359375,0.06689453,-0.06738281,-0.024047852,0.067871094,-0.21679688,-0.0020599365,0.041992188,-0.16015625,-0.008422852,-0.15625,-0.052001953,0.034423828,-0.078125,-0.10595703,-0.12988281,-0.0126953125,-0.16601562,-0.045654297,0.014038086,-0.119140625,-0.16699219,-0.12597656,-0.10595703,-0.010986328,-0.0005950928,0.043701172,0.060546875,0.17089844,-0.15136719,-0.18554688,-0.14453125,-0.09765625,0.12402344,0.045898438,0.08642578,-0.014404297,0,0,0,0,0,0,0,0},{-0.16699219,-0.006500244,-0.16113281,0.00793457,0.025878906,-0.0703125,0.15039062,-0.0023956299,-0.24609375,-0.30078125,-0.25585938,-0.04345703,-0.014526367,-0.12988281,-0.12451172,-0.044677734,-0.03540039,0.07373047,0.1875,0.0032348633,0.14941406,-0.09033203,0.06689453,0.18164062,0.21582031,-0.072753906,-0.08203125,0.119140625,-0.09277344,0.0066223145,-0.030029297,0.09375,-0.035888672,0.037353516,-0.0069885254,-0.10595703,-0.02734375,-0.17578125,0.05883789,0.024902344,0.027709961,-0.20800781,-0.24023438,0.11816406,0.118652344,-0.14550781,-0.11816406,0.0016326904,0.072265625,-0.14746094,0.04663086,0.14550781,0.019042969,-0.016723633,-0.25390625,-0.014221191,-0.08984375,0.23828125,-0.16113281,-0.24804688,0.044921875,-0.083496094,-0.10986328,-0.084472656,0.060058594,0.041992188,0.01977539,-0.1484375,-0.07763672,0.12402344,-0.08984375,0.06738281,-0.080566406,0.050048828,0.23730469,-0.18945312,0.092285156,-0.08154297,0.007537842,0.0703125,0.11328125,0.14941406,0.10986328,-0.060791016,0.10253906,-0.24707031,-0.14550781,-0.29492188,0.030883789,0.19628906,-0.30664062,-0.18457031,-0.07373047,-0.060058594,0.06689453,0.05810547,-0.05419922,-0.17285156,0.05493164,-0.13476562,0.08642578,-0.17773438,-0.35742188,-0.2734375,0.02368164,-0.1640625,0.11669922,0.17285156,0.053466797,-0.064941406,0.23632812,-0.328125,0.18457031,-0.1328125,0.061767578,0.022460938,-0.060546875,-0.14257812,0.052490234,0.003479004,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; static bfloat16_t fc_4_w[128][128] row_align(1); #else static const elem_t fc_4_w[128][128] row_align(1) = {{0.095703125,-0.052490234,-0.056396484,-0.055908203,-0.17089844,0.064941406,0.06201172,-0.05859375,-0.12792969,-0.29296875,-0.1796875,-0.111816406,-0.17773438,-0.04663086,0.16210938,0.13378906,-0.07519531,0.056396484,0.13769531,0.10888672,0.06542969,-0.17382812,-0.004180908,0.33007812,0.091796875,-0.028930664,-0.16113281,-0.01965332,-0.20800781,-0.021850586,-0.09423828,0.16992188,0.01977539,-0.064941406,0.053955078,-0.05444336,0.10205078,-0.045654297,0.080078125,-0.06982422,0.053466797,-0.100097656,-0.15136719,0.06225586,0.09765625,-0.12792969,0.030395508,0.0028686523,0.13964844,-0.016235352,-0.115722656,-0.10449219,-0.29492188,-0.044433594,0.25,-0.12695312,-0.18066406,-0.03466797,-0.013916016,0.024536133,0.08154297,0.111328125,-0.1484375,0.088378906,0.099121094,0.12158203,0.12988281,-0.045410156,0.017578125,-0.053222656,-0.029663086,0.06201172,-0.122558594,0.17089844,0.0010604858,0.13574219,-0.0033111572,0.03564453,-0.059570312,0.0049438477,0.1328125,-0.1640625,0.12988281,0.0049743652,0.16210938,-0.19726562,0.1796875,-0.10253906,-0.16992188,-0.2734375,-0.12597656,-0.122558594,-0.015075684,-0.049072266,0.09423828,-0.01171875,-0.15234375,0.047607422,-0.078125,-0.20800781,0.25,0.14257812,-0.10595703,-0.051757812,-0.0043640137,0.16015625,-0.12207031,0.04736328,0.03149414,0.092285156,0.12597656,0.15136719,-0.046142578,0.10253906,-0.3125,0.1953125,-0.012145996,0.14355469,-0.2265625,0.016479492,0,0,0,0,0,0,0,0},{-0.2578125,-0.110839844,0.06933594,0.20214844,-0.13769531,0.011291504,-0.071777344,-0.037353516,-0.036621094,-0.06347656,0.0029144287,-0.16308594,-0.14941406,-0.114746094,0.055908203,-0.15136719,-0.03125,-0.079589844,-0.125,-0.15625,-0.1953125,-0.018798828,0.14453125,0.15625,-0.18847656,-0.072753906,-0.052734375,0.052978516,-0.09716797,-0.0031738281,-0.056640625,-0.0064086914,-0.057373047,0.14355469,-0.0006752014,0.019165039,-0.13867188,0.037841797,0.014465332,-0.0060424805,-0.011047363,0.048583984,-0.053466797,0.064453125,0.0036773682,-0.09082031,0.006072998,-0.12597656,-0.12695312,-0.10498047,-0.031982422,0.15039062,-0.036132812,-0.19433594,0.12597656,0.09277344,0.0859375,-0.095214844,-0.078125,-0.13867188,-0.025146484,0.028564453,0.09814453,0.07470703,-0.17675781,-0.13867188,0.025756836,-0.15234375,-0.20019531,-0.08691406,-0.111816406,-0.123046875,0.22753906,-0.0146484375,-0.040283203,0.043945312,0.0054016113,-0.07080078,-0.12890625,0.13574219,-0.1640625,0.010620117,0.0022277832,0.09277344,0.035888672,0.051513672,0.1015625,-0.15039062,0.046142578,-0.23242188,0.10546875,0.07324219,-0.055419922,0.10546875,-0.053222656,-0.17382812,0.026611328,0.01977539,0.11767578,-0.019897461,-0.1640625,-0.15527344,-0.022338867,0.0859375,-0.0036621094,0.16796875,-0.039794922,0.10839844,-0.1328125,-0.13574219,-0.14648438,-0.13085938,-0.030883789,0.022949219,0.037841797,0.13574219,0.06201172,0.106933594,-0.064941406,-0.14257812,0,0,0,0,0,0,0,0},{-0.13476562,0.01965332,0.15722656,-0.07080078,0.05834961,0.024169922,-0.016357422,0.07470703,-0.09423828,-0.0546875,-0.12109375,-0.017822266,0.16894531,0.111816406,0.06542969,0.011108398,-0.049804688,0.15722656,0.11230469,-0.05444336,-0.02746582,0.012817383,-0.052246094,0.079589844,-0.2890625,-0.0060424805,0.045166016,0.10546875,0.049072266,-0.011047363,0.16894531,0.12402344,-0.09033203,-0.029785156,-0.0095825195,-0.103027344,0.08203125,-0.048339844,-0.08642578,0.060546875,-0.060058594,-0.050048828,-0.032470703,0.045898438,0.22363281,0.04296875,-0.013061523,0.056640625,0.17871094,-0.06640625,0.014343262,0.14941406,-0.056640625,-0.016723633,-0.060058594,0.02709961,0.06933594,0.15625,0.23925781,0.14453125,0.15136719,0.055664062,0.06542969,0.2265625,-0.11376953,-0.0061035156,0.03540039,-0.061767578,-0.063964844,0.0703125,0.026489258,0.014831543,-0.033691406,0.06933594,-0.03540039,0.03149414,0.25195312,0.15625,0.024047852,0.22753906,-0.078125,-0.024291992,0.0005912781,-0.05126953,0.04321289,-0.017700195,-0.088378906,0.2578125,0.011779785,-0.039794922,0.022827148,0.04296875,-0.00064086914,-0.171875,0.007446289,0.096191406,0.092285156,0.05834961,0.046875,0.0064086914,-0.18261719,-0.11230469,-0.078125,-0.0039978027,0.018310547,0.110839844,-0.07324219,0.18457031,0.063964844,0.05102539,-0.13378906,-0.0028839111,0.16699219,0.08935547,0.095703125,-0.091796875,0.033203125,-0.012756348,-0.068847656,0.11279297,0,0,0,0,0,0,0,0},{-0.009399414,-0.055908203,-0.041503906,-0.1328125,-0.025146484,-0.09814453,-0.095214844,-0.026611328,0.12890625,0.057617188,-0.046142578,0.0076904297,-0.025512695,0.23632812,-0.12402344,0.19433594,0.16015625,0.125,-0.038085938,0.2578125,-0.076171875,-0.107910156,0.04736328,0.06738281,0.122558594,-0.15332031,0.083984375,0.15820312,-0.006011963,-0.1640625,-0.021850586,0.24511719,0.028564453,-0.0038452148,0.115234375,-0.06689453,0.044921875,-0.04638672,-0.02758789,-0.19726562,0.16992188,-0.07861328,-0.038330078,0.17578125,-0.17285156,0.15039062,-0.03515625,0.09277344,-0.22265625,-0.10107422,0.08105469,-0.087890625,0.038085938,0.14453125,0.057373047,-0.092285156,0.15527344,0.18261719,0.12207031,0.041992188,0.051757812,-0.111816406,0.0012359619,-0.0053710938,0.18847656,-0.015625,0.1796875,-0.040771484,-0.004272461,0.09814453,0.19042969,0.15039062,0.03881836,-0.033203125,0.10644531,-0.09082031,-0.041748047,0.005493164,0.13867188,0.10498047,0.171875,-0.0069274902,0.10595703,0.03112793,0.03515625,0.07373047,0.08935547,0.20507812,0.10498047,-0.140625,-0.01574707,-0.17578125,0.010375977,0.19628906,0.16308594,-0.25585938,-0.028564453,-0.21582031,0.023071289,-0.03466797,-0.017578125,0.024414062,-0.052734375,0.043945312,-0.040771484,-0.11279297,0.05053711,0.08496094,0.07128906,-0.06591797,0.26757812,-0.020751953,-0.09765625,0.013183594,-0.119140625,0.24316406,0.052978516,0.13769531,0.01940918,-0.004211426,0,0,0,0,0,0,0,0},{0.01574707,0.003829956,-0.16992188,-0.025634766,0.08251953,-0.23632812,-0.04296875,0.06347656,-0.017211914,-0.003540039,-0.010864258,-0.02734375,0.014587402,0.04736328,-0.02758789,-0.060058594,0.13964844,-0.06933594,0.036865234,-0.01965332,-0.0138549805,-0.088378906,0.11035156,0.24121094,-0.14746094,-0.068359375,-0.016113281,0.067871094,-0.13867188,-0.18164062,0.061279297,-0.05078125,-0.20507812,-0.19238281,-0.041992188,-0.23535156,-0.020874023,-0.13378906,0.011230469,-0.04736328,-0.17578125,0.09814453,-0.07470703,0.023803711,-0.15917969,0.05517578,-0.17871094,-0.26367188,0.084472656,0.13867188,-0.11035156,-0.15136719,0.057861328,-0.12792969,0.12988281,0.19140625,-0.12402344,-0.08984375,-0.12402344,-0.10449219,0.033447266,0.053955078,-0.06591797,0.09765625,-0.032958984,-0.020996094,-0.14941406,-0.1640625,-0.05883789,0.11279297,0.076660156,0.016357422,-0.012207031,0.012023926,-0.016601562,-0.052978516,0.10546875,-0.023925781,-0.171875,-0.1484375,-0.05078125,0.12597656,-0.045654297,-0.25585938,-0.123046875,-0.14160156,0.16308594,-0.09472656,-0.11425781,0.071777344,0.015136719,-0.13867188,-0.045898438,0.114746094,0.171875,-0.042236328,0.047851562,-0.033691406,-0.035888672,-0.09667969,-0.0040893555,0.08984375,-0.107421875,-0.15722656,-0.1328125,0.029174805,0.0032196045,0.13671875,-0.23925781,0.029052734,-0.044433594,-0.16894531,-0.09667969,-0.104003906,0.07861328,-0.2265625,-0.15234375,-0.16308594,-0.15527344,-0.10205078,0,0,0,0,0,0,0,0},{-0.0022888184,-0.08935547,-0.21386719,0.10546875,-0.21582031,-0.00024986267,-0.064453125,-0.19433594,0.009338379,-0.11425781,-0.041992188,0.036621094,-0.16503906,0.07080078,-0.16308594,-0.17578125,-0.16503906,0.067871094,-0.01977539,0.09375,-0.007659912,-0.06933594,-0.005584717,-0.053710938,-0.032226562,-0.041748047,-0.033203125,-0.14453125,0.056152344,0.079589844,0.12597656,-0.15917969,-0.26171875,-0.06933594,0.049072266,-0.12988281,-0.1484375,-0.20898438,-0.123535156,-0.00018787384,0.024658203,-0.115234375,-0.13476562,0.10595703,-0.00078201294,-0.14355469,-0.08300781,0.107910156,0.0009384155,-0.14257812,0.075683594,-0.14355469,0.03149414,0.0234375,-0.16992188,0.11279297,-0.048095703,0.032226562,-0.122558594,-0.14941406,-0.140625,-0.265625,0.053955078,0.115722656,-0.12695312,-0.11425781,0.09277344,-0.059814453,0.111328125,0.018554688,-0.052490234,0.015014648,-0.103515625,0.036376953,0.03540039,-0.12792969,-0.1640625,-0.060302734,-0.1796875,0.076660156,-0.109375,-0.018798828,-0.05859375,-0.07373047,-0.018676758,-0.10449219,0.055419922,0.06347656,-0.19042969,0.017822266,0.031982422,-0.06347656,-0.12207031,0.076171875,0.06689453,0.07373047,-0.040527344,-0.14746094,-0.061523438,-0.031982422,-0.11230469,-0.002822876,-0.075683594,-0.1796875,0.060058594,-0.053222656,0.044189453,-0.09033203,-0.119628906,-0.107910156,0.060302734,0.10546875,-0.09423828,0.032226562,-0.052246094,0.007873535,0.03125,-0.06298828,-0.16894531,-0.041748047,0,0,0,0,0,0,0,0},{0.06982422,-0.048339844,-0.041259766,-0.13183594,-0.16894531,0.10595703,-0.09277344,-0.075683594,-0.06933594,0.048339844,-0.23535156,-0.115234375,-0.15820312,-0.045166016,0.067871094,-0.20410156,-0.10498047,0.019165039,-0.11767578,-0.12597656,0.015991211,0.09033203,-0.029418945,-0.16601562,-0.15625,-0.057861328,-0.033691406,-0.15332031,0.045410156,-0.0073242188,-0.09082031,-0.057373047,-0.064941406,0.10058594,-0.056152344,-0.18261719,0.013916016,-0.14941406,-0.14746094,-0.103027344,0.044677734,-0.16894531,-0.22070312,-0.038085938,0.09033203,-0.0859375,-0.15625,0.012145996,0.0021514893,-0.16503906,-0.033935547,0.032226562,-0.15917969,-0.19921875,0.046142578,0.006591797,0.026855469,-0.15332031,0.052490234,-0.17285156,0.08300781,-0.10449219,-0.12451172,-0.104003906,-0.114746094,-0.14257812,-0.040283203,-0.17578125,-0.16796875,-0.0051879883,0.028930664,-0.06982422,-0.08642578,-0.13574219,0.041015625,-0.022216797,0.06933594,-0.08203125,-0.060302734,-0.11230469,-0.115234375,-0.17285156,-0.063964844,-0.23828125,0.103027344,0.057373047,-0.06298828,-0.033203125,-0.13378906,0.13964844,-0.0075683594,-0.33203125,0.13964844,-0.103515625,0.045410156,0.051757812,-0.12011719,-0.100097656,0.036621094,0.119140625,-0.106933594,-0.14648438,-0.12695312,-0.17675781,-0.17871094,-0.056640625,-0.030761719,0.088378906,-0.1640625,0.04711914,-0.19726562,-0.10546875,-0.047851562,-0.080078125,0.067871094,-0.109375,-0.16699219,0.11816406,-0.12597656,0.0546875,0,0,0,0,0,0,0,0},{-0.01953125,0.0059509277,-0.13671875,0.038085938,-0.14941406,0.05883789,-0.018188477,0.06982422,0.038330078,-0.115722656,-0.10595703,-0.048339844,-0.084472656,-0.18652344,-0.107910156,-0.16308594,0.061523438,0.0026550293,0.056884766,-0.07519531,0.08886719,-0.106933594,-0.056152344,0.008483887,0.07421875,-0.06347656,-0.061523438,0.09716797,-0.18359375,-0.07080078,-0.15625,-0.13671875,-0.20996094,-0.009033203,-0.09863281,-0.19433594,-0.13476562,-0.16894531,0.005706787,-0.011169434,0.0072021484,-0.07128906,-0.16894531,0.09814453,-0.09765625,-0.08154297,-0.05859375,-0.091308594,-0.048583984,0.064453125,0.03955078,-0.064453125,-0.20605469,-0.037109375,-0.02368164,-0.10253906,-0.1484375,0.08154297,0.091308594,-0.01940918,0.033691406,-0.14160156,-0.14257812,0.012512207,-0.076171875,0.06689453,-0.049560547,-0.16210938,0.068847656,0.011047363,0.11230469,-0.13378906,-0.13769531,-0.16601562,-0.14648438,-0.012878418,-0.028442383,0.043945312,0.080078125,-0.030273438,0.045654297,-0.18457031,-0.09472656,-0.0703125,-0.12011719,-0.072265625,0.044189453,0.11279297,-0.08251953,0.1796875,0.06298828,-0.15039062,-0.0107421875,0.10107422,0.10107422,-0.08886719,-0.19824219,-0.01184082,-0.16210938,-0.048828125,0.040527344,-0.08642578,-0.13671875,-0.15625,-0.16210938,-0.18261719,0.05517578,-0.12158203,-0.0047302246,-0.07080078,0.03857422,-0.018432617,0.084472656,0.03955078,-0.109375,0.076660156,0.01940918,-0.02331543,-0.14941406,0.11621094,0,0,0,0,0,0,0,0},{-0.014953613,0.016357422,0.0062561035,0.02319336,0.014465332,-0.096191406,0.006591797,0.0859375,-0.044189453,0.013366699,0.016113281,-0.19042969,0.15136719,0.16699219,-0.1171875,-0.20703125,0.15917969,0.16699219,0.010986328,0.21484375,0.21191406,0.03491211,0.012451172,-0.17285156,0.15039062,-0.08984375,-0.15917969,0.123046875,0.25585938,0.07519531,0.13964844,-0.16894531,0.032958984,0.023925781,-0.057617188,0.033935547,0.00793457,-0.04663086,-0.18261719,0.09033203,0.076171875,-0.029296875,-0.041748047,0.088378906,0.12695312,-0.15234375,-0.032226562,-0.015136719,0.060791016,0.13476562,-0.025756836,0.107910156,-0.07421875,-0.06933594,-0.18457031,0.06738281,-0.040771484,-0.10205078,0.28125,0.11767578,-0.14648438,0.036376953,-0.09472656,0.068359375,-0.16015625,-0.037841797,-0.03491211,-0.18847656,-0.12451172,0.06689453,-0.076660156,-0.028442383,-0.08105469,0.13671875,0.057128906,-0.053955078,0.02355957,0.040283203,0.12109375,0.087402344,-0.040039062,-0.0859375,-0.16015625,-0.02319336,-0.12597656,0.018554688,0.037841797,0.26953125,-0.15332031,0.06347656,-0.14746094,0.057617188,-0.14941406,-0.107421875,0.053710938,0.04711914,0.22949219,-0.061035156,-0.06201172,0.12597656,-0.022583008,-0.03125,0.041259766,0.04248047,-0.047607422,-0.18359375,0.05859375,-0.27148438,0.03491211,-0.09375,-0.13867188,-0.051757812,0.024902344,0.07324219,0.24707031,-0.11230469,-0.04248047,-0.07763672,0.2265625,-0.0030670166,0,0,0,0,0,0,0,0},{-0.18652344,0.037109375,-0.053466797,0.028198242,-0.052734375,0.026977539,0.034179688,0.13476562,-0.12060547,-0.22265625,-0.07714844,-0.031982422,-0.11035156,-0.17578125,0.034179688,-0.14453125,0.17089844,-0.03955078,0.0033874512,0.067871094,-0.049560547,-0.25390625,-0.05419922,-0.0390625,-0.012939453,-0.2890625,-0.14160156,-0.004638672,-0.16796875,-0.22167969,-0.20605469,-0.053466797,0.12890625,-0.171875,0.12451172,-0.2578125,0.17773438,0.033935547,-0.032958984,-0.12207031,-0.03540039,-0.25585938,-0.07421875,0.0015487671,-0.123046875,-0.13964844,0.04345703,-0.17871094,-0.060546875,-0.16015625,-0.04272461,0.10546875,-0.03955078,0.011291504,0.060302734,-0.020141602,-0.09277344,-0.026733398,0.041259766,-0.08544922,0.033691406,-0.063964844,0.057617188,0.047607422,-0.104003906,0.043701172,0.115722656,-0.040283203,0.072265625,-0.0703125,-0.09765625,0.05810547,-0.064453125,-0.01373291,-0.018066406,0.04272461,-0.12890625,-0.22070312,0.028320312,-0.2265625,0.005584717,0.17089844,-0.15136719,-0.059326172,0.119628906,-0.019042969,0.026245117,-0.104003906,-0.18164062,-0.22363281,0.08154297,-0.12158203,-0.084472656,0.13085938,-0.0119018555,-0.12402344,-0.25,-0.2109375,-0.21777344,-0.15234375,0.024902344,0.20507812,-0.22753906,-0.099121094,-0.064941406,0.018920898,-0.068359375,-0.100097656,0.0036315918,0.14160156,0.14257812,0.12158203,-0.18457031,-0.12695312,0.020874023,-0.00076293945,-0.12792969,-0.06347656,-0.1953125,0.10986328,0,0,0,0,0,0,0,0},{-0.016479492,0.111816406,-0.19042969,0.13574219,-0.035888672,0.03466797,-0.050048828,-0.025146484,0.008056641,-0.12109375,-0.049804688,-0.032958984,0.15625,-0.04663086,-0.11376953,-0.060791016,0.010559082,0.14941406,0.109375,-0.032470703,0.12158203,0.019897461,0.011474609,-0.0066833496,-0.037109375,-0.08105469,0.026977539,-0.020751953,-0.021362305,-0.26171875,-0.028198242,0.11328125,-0.09716797,0.03881836,-0.09472656,-0.13574219,0.095214844,0.07519531,0.043701172,0.10253906,0.06689453,-0.0047302246,0.0036315918,-0.060302734,0.118652344,-0.063964844,-0.16699219,0.09716797,0.1640625,-0.04638672,-0.12792969,-0.083984375,0.0014343262,-0.022094727,0.18359375,0.17382812,0.029541016,0.07763672,0.22363281,0.088378906,0.17480469,-0.049316406,-0.06982422,0.15332031,0.14160156,0.14941406,0.16308594,0.14941406,0.072265625,0.067871094,-0.03149414,0.076171875,-0.12158203,0.09863281,-0.09765625,-0.064941406,-0.0625,0.15527344,0.044677734,0.13476562,0.10058594,0.052001953,0.1015625,-0.19726562,-0.014465332,0.21972656,0.12792969,0.060791016,-0.17089844,0.026367188,-0.05029297,-0.1328125,-0.017089844,0.099121094,0.01940918,0.0859375,0.16796875,-0.20117188,0.10498047,-0.24121094,0.15917969,-0.1953125,-0.04711914,-0.28710938,0.0064697266,-0.09814453,0.0625,0.030883789,-0.075683594,-0.0703125,0.17773438,0.06298828,-0.03955078,-0.20214844,-0.064941406,0.13671875,0.15917969,-0.07714844,0.07763672,-0.09277344,0,0,0,0,0,0,0,0},{0.19238281,0.13671875,-0.17285156,0.12158203,0.26757812,0.048828125,-0.015319824,0.041748047,-0.111816406,0.049804688,-0.20898438,0.18652344,0.05493164,0.09082031,-0.030029297,-0.017944336,-0.05078125,0.016113281,-0.25390625,0.01928711,-0.25976562,-0.09375,0.15527344,0.15039062,0.119140625,-0.103515625,-0.16503906,0.04711914,0.015319824,-0.16992188,-0.00018978119,-0.032958984,-0.1875,-0.10205078,-0.12060547,-0.21972656,0.10498047,0.12402344,-0.16308594,0.13574219,-0.1171875,0.10205078,-0.24609375,0.1328125,-0.10595703,-0.06298828,-0.0008430481,-0.029052734,0.027954102,-0.06347656,0.033447266,-0.11230469,-0.01965332,0.16992188,0.104003906,0.041992188,-0.12890625,-0.15136719,-0.13867188,-0.0007972717,0.18457031,-0.01928711,-0.09033203,-0.023803711,0.22070312,0.12695312,0.15527344,0.07421875,-0.13671875,0.12109375,-0.110839844,-0.10595703,0.060058594,-0.10253906,-0.13964844,0.15917969,0.25195312,-0.29296875,-0.23144531,-0.16894531,0.08642578,-0.19042969,-0.23242188,-0.16601562,0.14941406,0.24902344,-0.072753906,0.003768921,-0.24804688,-0.0859375,-0.12451172,0.15527344,-0.0019454956,-0.024414062,-0.13769531,0.12597656,0.025878906,-0.29296875,-0.09863281,0.017333984,-0.048583984,0.096191406,-0.0019454956,-0.017944336,0.018554688,-0.059814453,-0.10449219,0.096191406,0.022338867,0.067871094,0.08154297,0.08105469,-0.052734375,-0.052001953,-0.12451172,-0.030029297,0.13671875,-0.05908203,0.17382812,-0.026123047,0,0,0,0,0,0,0,0},{0.11376953,0.011779785,-0.21777344,-0.07421875,-0.091308594,-0.068359375,0.1640625,-0.037597656,0.017333984,-0.12695312,-0.100097656,0.23242188,-0.17675781,0.114746094,-0.16992188,0.06542969,-0.15917969,0.14746094,-0.07519531,-0.095703125,0.16894531,-0.15136719,-0.026855469,0.0032196045,-0.16699219,-0.13183594,0.009399414,0.015625,-0.14648438,-0.09277344,0.08935547,0.08154297,0.23339844,-0.064941406,0.13867188,-0.21191406,-0.07910156,0.068847656,0.13574219,-0.13085938,0.06933594,-0.265625,-0.15234375,0.122558594,0.10839844,-0.125,-0.061767578,-0.13183594,-0.140625,-0.0029296875,-0.064453125,-0.1328125,0.014953613,-0.0079956055,0.03515625,-0.083496094,-0.087402344,0.27148438,0.024902344,0.05859375,-0.1328125,-0.19140625,0.080078125,-0.115722656,0.13574219,0.044433594,-0.015258789,-0.1328125,-0.13378906,0.007446289,-0.1875,0.16210938,-0.1796875,0.103027344,0.21679688,-0.17089844,0.24121094,-0.056640625,-0.20410156,0.100097656,-0.053466797,-0.009094238,0.019042969,-0.08251953,0.036621094,-0.18554688,0.110839844,-0.061523438,0.021850586,-0.032958984,0.02319336,0.060791016,-0.00020122528,0.036132812,-0.053222656,-0.15625,0.05908203,-0.06542969,0.044189453,-0.076171875,-0.02709961,-0.14941406,-0.29882812,-0.22167969,0.064453125,0.06298828,-0.14160156,0.07373047,0.1953125,0.13867188,0.12988281,-0.19140625,-0.059814453,0.076660156,0.080566406,0.07763672,-0.13476562,-0.104003906,-0.06298828,-0.0041503906,0,0,0,0,0,0,0,0},{-0.03881836,-0.06347656,-0.15917969,0.08203125,0.04638672,-0.21386719,-0.03955078,0.021850586,0.03173828,-0.21875,-0.08154297,-0.08935547,-0.027832031,0.080078125,-0.15429688,0.11035156,-0.043945312,-0.09326172,-0.14550781,0.104003906,0.099121094,-0.18457031,-0.08154297,-0.049560547,0.08935547,-0.13378906,-0.0065307617,0.05029297,0.17089844,-0.16894531,0.123046875,0.12695312,-0.053710938,-0.095214844,-0.02722168,-0.041748047,0.07519531,-0.11621094,0.00010061264,-0.07080078,-0.028930664,-0.16210938,-0.14941406,-0.15527344,-0.12695312,-0.21679688,0.07373047,-0.03149414,0.05810547,-0.0018234253,0.029052734,0.11425781,-0.15234375,-0.17382812,0.072753906,0.029296875,-0.09326172,-0.10595703,0.17773438,-0.016845703,-0.07861328,-0.30859375,-0.010192871,0.055419922,-0.13964844,0.07470703,-0.087402344,0.056152344,0.0053710938,-0.18554688,-0.010253906,-0.029296875,0.13574219,-0.0126953125,0.10449219,0.0013504028,0.16699219,-0.26757812,-0.19628906,-0.096191406,0.041503906,0.125,0.10986328,-0.0859375,0.09472656,-0.19824219,0.03125,0.025268555,-0.1796875,0.017333984,-0.100097656,-0.016235352,0.002029419,-0.078125,0.033691406,-0.051757812,0.033691406,-0.20898438,-0.122558594,-0.1875,0.041992188,0.06347656,-0.044921875,-0.4140625,-0.13574219,-0.10839844,0.13671875,0.051513672,0.0859375,-0.107421875,0.10205078,-0.22265625,-0.13085938,-0.19042969,-0.049072266,0.19628906,0.030273438,-0.055664062,-0.05834961,0.115722656,0,0,0,0,0,0,0,0},{-0.22949219,-0.2734375,-0.18457031,0.122558594,0.013244629,-0.12402344,0.012634277,0.12792969,-0.265625,-0.07373047,-0.13671875,0.11376953,-0.006652832,-0.1640625,-0.07910156,-0.12792969,-0.12207031,0.037353516,-0.123535156,-0.056640625,-0.1640625,0.10205078,-0.22363281,0.00051498413,-0.17871094,-0.359375,0.11230469,-0.059326172,-0.10839844,-0.1328125,0.059570312,0.01977539,-0.09716797,0.13476562,-0.19238281,-0.0033111572,-0.111328125,-0.0234375,0.080566406,0.12890625,0.21582031,0.040039062,-0.11767578,0.13964844,-0.14746094,0.017456055,0.061767578,0.072265625,-0.08642578,-0.08496094,0.04736328,-0.18066406,-0.20214844,0.16894531,-0.16699219,-0.27929688,-0.08251953,-0.09082031,-0.06640625,-0.06689453,-0.14746094,-0.12158203,0.055908203,-0.05834961,-0.14550781,-0.17089844,0.064941406,0.0051879883,0.008728027,-0.14453125,-0.18847656,-0.140625,-0.1796875,-0.10595703,-0.036376953,-0.21582031,-0.122558594,-0.17285156,0.045654297,-0.028930664,-0.22265625,-0.12158203,-0.06689453,-0.12988281,-0.26953125,-0.032226562,-0.0037384033,0.104003906,0.032470703,0.06982422,-0.10253906,-0.039794922,-0.03955078,0.04321289,-0.0061035156,-0.10449219,-0.14257812,-0.0009994507,-0.17382812,-0.22265625,-0.017333984,0.041748047,-0.029541016,-0.091796875,-0.3046875,0.008666992,-0.1171875,-0.006713867,-0.11376953,-0.13085938,-0.080566406,0.19726562,-0.11376953,-0.12695312,-0.0390625,0.0126953125,-0.18261719,0.071777344,-0.11425781,-0.078125,0,0,0,0,0,0,0,0},{-0.17675781,-0.043701172,-0.15136719,0.10546875,-0.14648438,-0.037109375,-0.083496094,0.06689453,-0.0030212402,-0.06298828,-0.15429688,-0.171875,0.063964844,-0.15527344,-0.004547119,-0.13964844,-0.13183594,0.015136719,-0.111816406,0.012023926,0.049072266,-0.072265625,0.032714844,0.106933594,-0.14648438,-0.19433594,-0.099609375,-0.10205078,-0.12792969,-0.14550781,0.140625,-0.0546875,0.12695312,0.06738281,0.010070801,-0.18847656,-0.0028686523,-0.13574219,-0.1328125,0.103027344,0.041992188,0.076660156,0.0024414062,0.07324219,-0.123535156,-0.12695312,-0.10498047,-0.03564453,-0.026611328,-0.11035156,-0.09326172,-0.09863281,-0.106933594,-0.171875,0.00042533875,0.012573242,-0.087890625,0.047851562,-0.16113281,-0.12695312,0.12597656,-0.21484375,-0.15527344,-0.07080078,0.15722656,-0.10839844,-0.036132812,-0.13378906,-0.076660156,-0.041015625,-0.064453125,-0.063964844,0.046142578,0.021972656,-0.10253906,-0.033447266,-0.15722656,0.009338379,-0.19042969,-0.10449219,-0.17773438,0.08935547,-0.087890625,-0.17871094,-0.07373047,0.072265625,-0.07861328,0.048339844,0.017822266,0.03491211,-0.12597656,-0.21777344,-0.049804688,-0.099609375,-0.17089844,-0.13671875,-0.12890625,-0.06738281,0.111328125,-0.024536133,-0.06201172,-0.07861328,-0.27929688,-0.23242188,0.017578125,0.014343262,0.045166016,0.13085938,0.019165039,-0.140625,-0.057617188,0.09277344,-0.011108398,-0.034423828,-0.016113281,0.12402344,-0.053466797,-0.09277344,0.048583984,-0.19824219,0,0,0,0,0,0,0,0},{-0.053466797,0.055908203,-0.09423828,0.041015625,0.07714844,0.12109375,0.018676758,-0.001914978,0.072265625,-0.046875,-0.09765625,-0.026611328,0.11425781,0.011108398,-0.118652344,0.05883789,-0.041259766,-0.046875,-0.12158203,0.11279297,0.111328125,0.12451172,-0.030883789,-0.118652344,0.15722656,-0.31054688,0.123046875,0.087890625,-0.067871094,-0.0019836426,-0.11035156,0.057128906,-0.043945312,-0.03112793,-0.08984375,0.017944336,0.16210938,-0.008239746,-0.080078125,-0.15527344,-0.05810547,0.16503906,-0.100097656,0.20410156,-0.10546875,-0.03149414,-0.018676758,-0.12792969,0.17382812,0.15136719,0.0008354187,-0.012145996,-0.11279297,-0.21289062,0.09326172,0.08203125,0.104003906,-0.014953613,0.0060424805,-0.1953125,0.047851562,-0.33007812,-0.04663086,0.0027160645,-0.14160156,0.084472656,-0.0390625,-0.09814453,-0.0031433105,0.033447266,-0.05517578,-0.16308594,-0.09033203,-0.064453125,0.17871094,-0.12695312,0.03100586,0.068359375,-0.19433594,0.03466797,0.10986328,-0.048583984,0.04296875,-0.03930664,0.0048828125,-0.19140625,0.16308594,0.0040893555,0.011413574,0.10205078,0.01184082,-0.2734375,-0.09033203,0.1484375,-0.027832031,0.12011719,-0.12890625,-0.14648438,-0.03881836,-0.2265625,-0.12109375,-0.061523438,-0.09277344,-0.3203125,-0.1953125,-0.13476562,-0.14746094,0.06591797,-0.079589844,-0.067871094,-0.11376953,-0.04663086,-0.16503906,-0.07470703,0.11279297,0.171875,0.11230469,0.13378906,0.16308594,-0.048828125,0,0,0,0,0,0,0,0},{0.12792969,-0.10888672,-0.12988281,-0.045898438,0.16699219,0.1640625,0.04296875,-0.012084961,-0.07128906,-0.032470703,0.013793945,0.08935547,-0.099121094,-0.091796875,-0.044433594,0.12109375,-0.20214844,-0.13867188,-0.045410156,-0.19335938,-0.21875,0.15527344,0.13867188,-0.09082031,0.084472656,-0.01977539,-0.27148438,-0.095214844,0.052246094,-0.12109375,-0.103515625,0.07519531,0.0003566742,-0.20507812,-0.0064697266,-0.27734375,0.0703125,0.16308594,0.17871094,0.080566406,-0.20214844,-0.12890625,-0.1796875,0.036621094,-0.1953125,-0.049072266,-0.111816406,-0.07373047,-0.06738281,-0.22460938,-0.18652344,-0.2421875,0.029174805,0.18554688,-0.1171875,-0.02368164,0.13378906,-0.16308594,-0.0045776367,-0.12890625,0.11328125,-0.11621094,0.12158203,0.21289062,0.07373047,0.104003906,-0.0063476562,-0.032714844,-0.13867188,-0.063964844,0.061767578,-0.16503906,0.052001953,-0.17871094,0.140625,-0.045898438,-0.25976562,-0.23144531,-0.1875,0.13085938,-0.23144531,0.052978516,0.1015625,-0.12451172,0.079589844,-0.028076172,0.032958984,0.095214844,-0.3046875,-0.07080078,-0.021484375,-0.15429688,-0.24902344,0.05029297,-0.078125,-0.21289062,0.06982422,-0.07519531,-0.14648438,-0.07763672,0.06689453,0.171875,0.16015625,-0.19433594,-0.06201172,-0.016113281,0.119628906,-0.16992188,0.21875,0.031982422,0.010925293,0.1015625,-0.0008277893,-0.22851562,-0.056640625,0.052246094,-0.036865234,0.13867188,0.030395508,0.17675781,0,0,0,0,0,0,0,0},{0.15527344,-0.078125,-0.008361816,0.16699219,0.095703125,0.18554688,0.053710938,0.2578125,0.012329102,0.020874023,-0.15820312,0.16308594,0.125,-0.087402344,-0.14550781,-0.09277344,0.19824219,0.043701172,0.045166016,-0.021484375,-0.056396484,-0.08203125,0.01373291,-0.05444336,-0.008422852,-0.06689453,-0.24121094,-0.12011719,0.010192871,-0.014282227,0.07519531,0.08203125,-0.068847656,-0.11669922,-0.025146484,-0.047607422,-0.07373047,0.059814453,-0.057617188,0.20996094,-0.043945312,-0.09472656,-0.07373047,0.06591797,0.21679688,-0.072265625,0.013122559,-0.17773438,0.13574219,-0.26367188,0.03857422,-0.07373047,-0.052490234,-0.07128906,0.11669922,0.14941406,0.111816406,-0.02368164,-0.02734375,0.20507812,0.000113487244,0.06689453,-0.15820312,0.056396484,0.10253906,-0.06298828,0.043701172,-0.076660156,0.028442383,0.15625,-0.011474609,-0.07470703,0.10449219,-0.0021820068,-0.092285156,-0.007598877,-0.016967773,0.14648438,0.011047363,0.13378906,-0.009216309,-0.10644531,-0.01977539,0.021850586,-0.15917969,-0.013916016,-0.044921875,0.014282227,-0.19140625,0.068359375,0.07373047,0.026977539,0.087890625,0.075683594,0.24902344,-0.16308594,0.140625,-0.12792969,-0.118652344,-0.01574707,-0.22753906,-0.056396484,-0.24316406,-0.114746094,0.12011719,0.06298828,-0.1796875,-0.03857422,0.064941406,-0.16503906,0.033691406,0.08105469,-0.083984375,-0.14550781,-0.05493164,0.040527344,0.0703125,-0.038330078,-0.14355469,-0.056152344,0,0,0,0,0,0,0,0},{-0.16113281,-0.11328125,-0.10644531,0.064941406,-0.06982422,-0.041992188,-0.09863281,-0.025756836,-0.20117188,-0.20898438,0.09375,-0.03173828,0.021728516,-0.13964844,-0.072753906,0.13476562,0.10839844,0.17773438,-0.030029297,-0.14550781,0.03881836,-0.14746094,-0.24609375,0.11816406,-0.18066406,0.03881836,0.15429688,-0.15917969,-0.01586914,-0.13769531,0.14941406,-0.19042969,-0.12792969,-0.0066833496,-0.22265625,-0.24609375,0.016235352,0.17871094,0.083496094,-0.17675781,-0.09765625,-0.09814453,0.12158203,-0.16113281,-0.19628906,-0.14648438,-0.06591797,0.083496094,-0.08203125,0.087402344,0.024169922,0.026245117,-0.18359375,0.10449219,0.13378906,0.021972656,-0.17773438,-0.15429688,0.037109375,-0.052734375,0.1484375,0.0029754639,0.014099121,0.12988281,0.05126953,-0.14648438,0.064941406,-0.09082031,-0.114746094,-0.111816406,-0.0064086914,-0.20996094,0.035888672,-0.061767578,0.02734375,0.05493164,-0.123535156,0.043701172,-0.11816406,0.14550781,0.076171875,-0.18847656,0.024169922,-0.26953125,0.017944336,-0.16015625,-0.034179688,-0.12792969,-0.08544922,0.28125,0.034423828,-0.05493164,-0.3984375,-0.029052734,-0.15722656,0.12792969,0.06298828,0.00680542,-0.18847656,-0.20898438,-0.024902344,-0.12402344,-0.15039062,-0.096191406,0.16992188,0.009216309,-0.140625,0.16601562,-0.03100586,0.14550781,-0.16699219,0.1171875,0.06640625,-0.10058594,0.057128906,-0.08300781,-0.08984375,0.10546875,0.017822266,-0.053955078,0,0,0,0,0,0,0,0},{-0.071777344,-0.13769531,-0.14648438,0.06542969,0.0044555664,0.064453125,0.061035156,0.114746094,-0.14550781,0.10644531,-0.14453125,-0.012207031,-0.057373047,0.2265625,-0.13964844,-0.064453125,-0.25585938,0.099121094,-0.119628906,-0.16113281,0.053222656,-0.09863281,0.16601562,-0.125,0.28515625,0.041503906,-0.0390625,0.030151367,0.13085938,-0.18554688,-0.13183594,-0.095214844,-0.05053711,-0.16894531,-0.03930664,-0.36132812,-0.028808594,-0.14746094,-0.15039062,-0.19433594,0.25585938,-0.0033874512,0.10888672,0.063964844,-0.029052734,0.02758789,-0.115234375,-0.019165039,0.17382812,0.14941406,0.036865234,-0.09863281,0.140625,0.03112793,-0.0005187988,0.16113281,-0.09472656,0.18554688,0.075683594,-0.035888672,-0.013122559,-0.048339844,0.104003906,-0.010925293,-0.08203125,-0.005340576,-0.021728516,0.043945312,-0.13574219,-0.068359375,-0.1953125,0.015197754,-0.16113281,0.12792969,-0.068359375,0.021972656,0.018066406,-0.06347656,-0.20996094,0.06689453,0.18261719,-0.111816406,-0.119628906,-0.13183594,0.056884766,0.10644531,-0.17675781,-0.061279297,-0.05859375,-0.17480469,-0.17285156,0.020263672,-0.106933594,0.115234375,-0.13476562,-0.0011901855,-0.1875,-0.032958984,0.17480469,0.052734375,0.072753906,0.015319824,-0.17480469,-0.25195312,-0.06298828,0.12060547,-0.1015625,-0.14355469,0.004547119,0.016113281,-0.043945312,-0.064941406,-0.11279297,-0.19628906,0.03173828,0.09667969,0.107421875,-0.018676758,-0.067871094,-0.17285156,0,0,0,0,0,0,0,0},{0.12158203,0.091796875,-0.18847656,0.023071289,-0.05102539,-0.18945312,-0.020751953,-0.068359375,-0.13769531,-0.09423828,0.0099487305,0.099121094,-0.14355469,-0.008666992,-0.13183594,0.011962891,-0.020751953,-0.05810547,-0.0095825195,-0.16894531,-0.12695312,-0.044189453,0.04736328,0.030517578,-0.12988281,-0.10839844,-0.0076904297,-0.15722656,0.038085938,-0.09472656,-0.063964844,0.08154297,-0.21191406,-0.15234375,0.076660156,-0.107910156,0.041503906,-0.035888672,-0.1796875,-0.041503906,-0.09423828,-0.036621094,-0.07714844,-0.13964844,-0.080078125,-0.10449219,-0.119140625,-0.13964844,-0.049560547,0.025756836,0.10498047,0.13476562,0.018920898,0.012451172,0.12402344,-0.12890625,-0.07714844,0.012268066,-0.10546875,-0.0049743652,-0.03112793,-0.15234375,-0.19921875,-0.029296875,-0.16015625,-0.04296875,-0.04296875,0.087890625,-0.045410156,-0.052246094,0.111816406,0.005004883,0.15136719,-0.118652344,-0.049072266,-0.0040283203,-0.084472656,-0.08886719,-0.12158203,0.14746094,-0.17285156,0.14746094,0.013916016,-0.17285156,0.004852295,0.0004119873,0.1328125,-0.21484375,-0.08984375,-0.107910156,-0.030761719,-0.10253906,-0.15429688,0.13183594,0.038330078,-0.07324219,-0.12597656,-0.28125,-0.0546875,-0.123046875,-0.068359375,0.083984375,-0.296875,-0.036376953,0.02746582,-0.061035156,0.09033203,-0.055419922,-0.013061523,-0.18164062,-0.046142578,0.059570312,-0.140625,-0.018310547,0.0859375,-0.16503906,0.08154297,0.15820312,-0.08691406,-0.087402344,0,0,0,0,0,0,0,0},{-0.1171875,-0.1875,-0.044677734,0.12695312,0.10449219,-0.16601562,-0.03149414,0.053466797,-0.23242188,-0.03881836,-0.08496094,-0.029174805,-0.006378174,-0.15136719,-0.15039062,-0.052490234,0.15527344,0.055908203,-0.083984375,0.05419922,-0.118652344,-0.014343262,-0.12597656,0.016113281,-0.07421875,0.03540039,-0.040283203,-0.110839844,0.088378906,-0.15527344,-0.107910156,-0.11376953,-0.06933594,-0.08496094,-0.0115356445,-0.34179688,-0.15625,0.06591797,-0.021362305,-0.08886719,-0.17089844,-0.13574219,-0.01159668,-0.14257812,0.079589844,-0.041503906,-0.14160156,-0.10498047,-0.16894531,0.0054016113,-0.07861328,-0.007598877,0.005004883,0.036132812,-0.03149414,-0.14550781,0.09082031,-0.013549805,-0.13085938,-0.14453125,-0.05517578,-0.15234375,-0.15722656,-0.15429688,0.071777344,0.06640625,-0.14355469,0.15917969,-0.09423828,0.084472656,0.076660156,0.03515625,0.068847656,0.061767578,0.005584717,-0.087890625,-0.08544922,-0.0546875,0.035888672,-0.13476562,-0.11669922,0.12451172,-0.1796875,-0.06640625,-0.07373047,-0.02355957,-0.035888672,-0.10107422,-0.16992188,-0.13671875,0.004333496,-0.13671875,-0.11376953,0.026855469,0.0859375,0.053955078,-0.09277344,-0.328125,-0.12988281,0.017211914,0.11816406,0.13378906,-0.07714844,-0.16308594,-0.012390137,0.16992188,0.033691406,-0.026123047,0.13183594,0.08300781,0.040527344,0.11816406,-0.13867188,-0.029785156,-0.110839844,0.06738281,-0.1015625,0.10205078,-0.080566406,-0.080566406,0,0,0,0,0,0,0,0},{-0.15625,-0.04248047,-0.05859375,-0.013183594,-0.06347656,0.056884766,0.0016174316,-0.08886719,-0.15429688,-0.07470703,0.11816406,0.17675781,0.025024414,0.21484375,0.029418945,0.014099121,-0.125,0.07373047,-0.0076293945,0.026733398,-0.111328125,0.068359375,0.02368164,-0.10498047,0.09423828,-0.014770508,0.018066406,-0.390625,-0.16503906,0.010192871,-0.009033203,0.17382812,0.088378906,-0.05883789,0.06689453,-0.036865234,0.04345703,0.025756836,0.09472656,-0.115722656,-0.1328125,0.043701172,0.006958008,0.09375,-0.06591797,0.030273438,0.14648438,0.07080078,0.123046875,-0.11230469,0.03466797,-0.21484375,-0.1328125,0.01184082,0.15136719,0.16796875,0.04321289,-0.017211914,0.13671875,-0.03955078,-0.0031280518,-0.078125,0.0703125,0.055664062,-0.052734375,0.068847656,0.15722656,-0.12402344,0.027832031,-0.14453125,0.05883789,-0.037841797,-0.059570312,-0.00064468384,-0.10253906,-0.1328125,-0.08984375,-0.007751465,-0.071777344,0.16601562,0.21289062,0.13867188,-0.09423828,-0.052490234,-0.03100586,-0.1328125,-0.015991211,-0.12402344,0.008056641,-0.22167969,-0.14257812,0.038085938,-0.021972656,0.015075684,-0.107910156,-0.014099121,-0.045654297,0.08154297,-0.029296875,0.052001953,0.048339844,-0.14160156,0.13671875,0.08203125,0.11767578,0.0067749023,-0.08154297,0.29296875,-0.111328125,-0.12988281,0.03491211,-0.05493164,-0.18652344,-0.009033203,-0.16503906,0.056640625,-0.09423828,-0.053710938,0.025268555,0.14746094,0,0,0,0,0,0,0,0},{0.03881836,-0.18359375,-0.15234375,0.09326172,-0.20019531,-0.15820312,0.029663086,0.061523438,-0.10498047,-0.21777344,-0.125,-0.21289062,-0.20410156,-0.19628906,0.052978516,0.18261719,-0.049072266,0.10595703,-0.18945312,-0.1015625,0.140625,0.096191406,-0.064941406,-0.031982422,0.0001077652,0.04711914,-0.02331543,-0.1953125,0.026733398,-0.19335938,0.0019836426,-0.20214844,-0.10595703,-0.07128906,-0.1484375,-0.12597656,-0.15039062,-0.12597656,-0.0703125,0.08300781,-0.20898438,-0.25976562,-0.0016403198,0.018554688,-0.10546875,-0.18554688,-0.027832031,-0.07763672,-0.11767578,-0.0026397705,-0.006225586,0.005279541,-0.13671875,0.018066406,0.04663086,-0.16503906,-0.19238281,-0.06738281,-0.080078125,0.13183594,-0.09423828,-0.06933594,0.028442383,-0.0036315918,0.083984375,-0.01574707,0.12988281,-0.13183594,0.040039062,-0.1328125,0.09667969,-0.115234375,0.15527344,-0.16699219,-0.13964844,-0.09326172,-0.055664062,0.012023926,0.013793945,-0.14453125,-0.029174805,0.076660156,0.0625,-0.11669922,-0.045410156,-0.14550781,-0.011413574,0.018188477,0.078125,0.12011719,-0.050048828,-0.15625,-0.1015625,0.080078125,-0.10253906,-0.091796875,-0.13574219,-0.067871094,-0.017089844,-0.25390625,-0.075683594,-0.14550781,-0.0028533936,-0.13867188,-0.1015625,-0.12890625,0.122558594,0.06591797,-0.110839844,0.08251953,0.029174805,-0.09472656,-0.1328125,-0.12207031,-0.17382812,0.0069885254,0.076171875,-0.033447266,-0.010864258,-0.11669922,0,0,0,0,0,0,0,0},{-0.15136719,0.17675781,-0.28515625,-0.11376953,-0.22363281,-0.07910156,-0.10253906,0.030029297,0.099609375,-0.1328125,-0.21582031,0.084472656,0.068359375,-0.16308594,-0.19921875,-0.10595703,-0.0703125,-0.125,-0.044189453,0.049804688,-0.13769531,-0.053710938,0.13574219,0.018432617,0.24316406,-0.119140625,0.006378174,-0.034179688,-0.119628906,-0.17675781,0.021240234,0.114746094,-0.075683594,-0.045166016,0.11425781,-0.16113281,-0.036865234,-0.048339844,-0.06591797,-0.09472656,0.20214844,0.041992188,0.11230469,-0.015380859,0.08886719,0.033935547,-0.088378906,-0.19628906,0.09277344,0.08251953,-0.013366699,-0.10107422,-0.19628906,0.05834961,-0.123046875,-0.060302734,0.11425781,-0.27148438,-0.041259766,0.092285156,0.044189453,-0.26757812,0.048828125,-0.04663086,-0.1015625,-0.036376953,-0.080078125,0.013671875,0.04736328,0.12158203,-0.28125,0.14746094,-0.16210938,-0.13378906,-0.18554688,-0.04711914,-0.018310547,0.033203125,-0.052734375,0.107421875,0.057128906,0.03491211,-0.16113281,0.0625,-0.056396484,0.25,-0.12597656,-0.037841797,-0.08105469,0.14648438,-0.092285156,-0.092285156,0.028686523,0.045898438,0.037841797,-0.140625,0.020874023,-0.087890625,-0.011108398,0.024536133,0.11279297,0.18066406,-0.026855469,0.0043945312,0.015014648,-0.09667969,0.15917969,0.04321289,-0.05029297,0.060791016,0.16601562,-0.0703125,-0.14550781,-0.11425781,-0.08496094,0.12597656,-0.068847656,0.032714844,-0.051513672,-0.125,0,0,0,0,0,0,0,0},{-0.18847656,-0.13769531,-0.083496094,0.068847656,-0.008239746,-0.037353516,-0.033203125,0.020751953,0.061035156,-0.08886719,0.010192871,0.07470703,0.007080078,0.10644531,-0.13867188,0.087402344,-0.0126953125,-0.09814453,-0.16601562,0.028320312,0.041748047,-0.08203125,-0.09814453,-0.09033203,0.052734375,-0.171875,0.044189453,-0.072265625,0.1640625,-0.04296875,-0.030639648,-0.103027344,-0.2421875,-0.106933594,-0.049072266,-0.023925781,-0.15234375,-0.088378906,-0.087890625,0.032714844,-0.12890625,-0.17578125,-0.049316406,0.03125,-0.22851562,-0.15332031,-0.16503906,-0.07373047,-0.25976562,-0.024536133,0.0011291504,-0.14355469,-0.22070312,0.076171875,0.18261719,-0.06591797,-0.11816406,-0.16992188,-0.030273438,-0.11376953,-0.14941406,-0.1484375,0.080078125,0.12011719,0.044189453,0.16894531,-0.17382812,0.012329102,0.00044059753,-0.13574219,0.115722656,-0.16015625,-0.020507812,-0.1484375,-0.020507812,-0.04321289,-0.13085938,-0.15136719,-0.1953125,0.024536133,0.0034179688,-0.012145996,-0.14550781,-0.023803711,0.034423828,-0.12792969,-0.15136719,-0.033691406,-0.14648438,-0.036865234,-0.1328125,-0.10253906,-0.078125,0.067871094,-0.07080078,-0.11279297,-0.053222656,-0.20703125,-0.110839844,-0.2734375,0.042236328,0.056396484,-0.13867188,-0.06933594,0.12890625,-0.019897461,0.06640625,-0.12792969,-0.15625,-0.00038719177,-0.16699219,0.140625,-0.04663086,-0.17871094,-0.029418945,-0.0134887695,0.029785156,-0.123535156,-0.009094238,0.055419922,0,0,0,0,0,0,0,0},{0.15917969,0.026245117,-0.22753906,-0.0029449463,0.21386719,-0.068847656,-0.053710938,-0.06640625,-0.009460449,-0.24804688,-0.00078582764,-0.099121094,-0.16699219,-0.15332031,-0.008361816,0.11230469,-0.029418945,0.045654297,-0.1015625,-0.13867188,0.21484375,0.026855469,-0.20605469,0.053466797,0.009643555,-0.08886719,0.036865234,-0.10107422,-0.14550781,-0.060791016,0.08642578,-0.13378906,0.08154297,-0.21289062,-0.1953125,-0.13574219,0.15722656,0.08251953,0.029052734,-0.068359375,-0.11621094,0.011474609,-0.3046875,-0.036376953,0.03515625,-0.009094238,-0.32617188,-0.27148438,-0.033935547,-0.055664062,0.0039367676,-0.03112793,0.107910156,-0.106933594,0.1171875,-0.14746094,-0.15429688,-0.072265625,0.14648438,0.09814453,-0.052978516,0.030517578,0.13574219,0.14355469,-0.16015625,0.15039062,0.091308594,0.13769531,-0.18457031,-0.068359375,-0.08935547,-0.07519531,0.19726562,-0.12060547,-0.05908203,-0.10546875,-0.15917969,0.06640625,-0.13183594,-0.0062561035,-0.21582031,-0.13378906,-0.051757812,-0.11621094,-0.14550781,-0.28710938,0.19238281,0.08935547,-0.084472656,0.030761719,0.048095703,-0.1015625,0.00035476685,-0.040527344,-0.25,0.025756836,0.063964844,-0.21191406,0.024169922,-0.15234375,0.021972656,-0.1640625,-0.07910156,-0.19433594,-0.08691406,-0.09375,-0.064453125,-0.115722656,0.122558594,-0.13769531,0.011413574,0.14355469,-0.12011719,-0.14746094,-0.17675781,-0.16210938,-0.029785156,-0.21972656,-0.0010299683,0.03125,0,0,0,0,0,0,0,0},{-0.05053711,0.07910156,-0.0126953125,-0.17480469,-0.12158203,0.109375,0.004119873,-0.060791016,-0.17773438,-0.16796875,-0.34765625,-0.10839844,-0.0024414062,0.12207031,0.06298828,0.09326172,0.04736328,0.06591797,-0.12890625,0.034179688,0.018310547,-0.044189453,-0.18945312,-0.12597656,0.024414062,-0.20800781,-0.17382812,-0.10107422,-0.1640625,-0.118652344,-0.12890625,0.09716797,-0.13769531,-0.11376953,-0.045166016,-0.23730469,-0.107421875,0.14550781,-0.08642578,-0.107910156,-0.17675781,0.024169922,0.0003299713,0.006378174,-0.045654297,-0.15429688,-0.19335938,-0.21484375,-0.076171875,-0.095214844,0.018066406,-0.109375,-0.16992188,-0.15820312,0.10888672,-0.0069885254,-0.024047852,-0.015136719,0.017822266,-0.016967773,0.040039062,-0.07763672,0.037841797,-0.012023926,0.12451172,0.11376953,-0.09472656,-0.08300781,-0.0012283325,0.05859375,-0.10888672,-0.10253906,0.06542969,0.048583984,-0.053955078,-0.110839844,0.028564453,-0.14550781,0.012390137,0.034179688,0.03112793,0.111816406,-0.10839844,-0.009155273,-0.13867188,0.048339844,-0.034179688,-0.015563965,-0.030273438,-0.026855469,-0.044677734,-0.07128906,0.0027618408,0.091796875,-0.057373047,-0.10986328,-0.055908203,-0.106933594,-0.04711914,-0.10058594,-0.10595703,-0.16992188,-0.23242188,-0.24023438,-0.12597656,-0.10888672,-0.011230469,-0.14160156,-0.0022277832,-0.004333496,0.0107421875,-0.111816406,-0.009460449,-0.019897461,0.10253906,-0.203125,0.03491211,-0.07324219,0.018310547,0.039794922,0,0,0,0,0,0,0,0},{0.09863281,0.037109375,-0.08935547,0.0859375,-0.05908203,0.18164062,-0.048583984,0.0087890625,0.0054016113,0.16699219,-0.140625,0.19140625,-0.140625,0.22363281,-0.15820312,0.061767578,-0.17871094,-0.20019531,-0.008178711,0.22949219,-0.005584717,-0.20214844,-0.106933594,0.15136719,-0.15332031,0.015136719,0.18164062,-0.13476562,0.095214844,-0.040039062,-0.052001953,-0.11767578,-0.14160156,-0.00592041,-0.046875,-0.019897461,-0.2109375,0.14648438,0.0055236816,-0.091308594,-0.13085938,0.041015625,-0.029174805,-0.067871094,-0.16796875,-0.08691406,-0.13476562,0.114746094,0.15136719,-0.17089844,0.22167969,-0.06591797,-0.17675781,-0.06738281,-0.020263672,0.005493164,-0.23632812,-0.16015625,-0.022094727,-0.2265625,-0.030883789,0.08984375,0.06225586,-0.16015625,0.064453125,-0.0703125,0.234375,-0.07080078,0.04321289,0.08251953,0.013305664,-0.106933594,0.012756348,0.09326172,-0.15625,0.01586914,-0.19140625,0.041015625,-0.12695312,0.08496094,0.025390625,0.21875,0.053955078,0.07373047,0.029052734,0.045654297,0.08105469,0.075683594,-0.13867188,0.17089844,0.029052734,-0.09863281,0.12011719,0.05053711,-0.092285156,-0.110839844,-0.08105469,-0.057617188,0.03564453,-0.08496094,-0.0703125,0.13867188,-0.13574219,-0.01586914,0.107910156,0.091308594,-0.043945312,0.10888672,0.29492188,-0.0036010742,-0.123046875,-0.059326172,0.028442383,0.04248047,-0.03112793,-0.115234375,-0.06689453,0.072265625,-0.119628906,-0.021606445,0,0,0,0,0,0,0,0},{-0.13378906,-0.020385742,-0.10107422,-0.20507812,0.05419922,0.037353516,-0.10839844,-0.06738281,0.014160156,-0.005493164,0.0008354187,0.18164062,-0.106933594,-0.26367188,-0.122558594,-0.08691406,0.13476562,-0.03881836,-0.14453125,0.16308594,0.009765625,0.091308594,0.16699219,-0.05493164,0.23339844,-0.18359375,-0.13476562,0.026245117,-0.14550781,-0.15527344,0.16894531,-0.043701172,0.0053710938,0.15527344,-0.014709473,-0.19433594,-0.21777344,0.06347656,0.027832031,-0.080078125,-0.014526367,-0.09423828,-0.0034179688,-0.00793457,0.099121094,-0.057861328,-0.27929688,-0.12207031,0.016479492,0.06347656,-0.12792969,-0.15136719,-0.045410156,0.005340576,0.015319824,-0.43359375,0.046875,-0.009643555,0.037353516,-0.072753906,-0.21972656,-0.010009766,-0.17480469,-0.0859375,0.0014266968,-0.22851562,-0.08105469,0.16894531,-0.111328125,0.1640625,-0.17089844,0.04272461,0.19335938,-0.052978516,-0.15039062,-0.076171875,0.02746582,-0.04272461,-0.24707031,-0.1484375,0.15722656,0.07128906,-0.032470703,0.13183594,0.04345703,0.10839844,-0.14453125,-0.1953125,-0.29296875,0.11767578,0.047851562,0.11425781,0.0703125,0.020629883,0.046875,-0.14160156,0.111328125,0.08642578,0.13671875,-0.12695312,0.1171875,0.12011719,-0.22167969,-0.10888672,-0.13378906,-0.0072631836,-0.07519531,0.10107422,0.14257812,0.044189453,-0.11376953,-0.043945312,-0.12597656,-0.068847656,-0.12207031,-0.049316406,-0.05810547,-0.1796875,0.10888672,0.10986328,0,0,0,0,0,0,0,0},{0.088378906,0.037597656,0.029907227,-0.007751465,0.10839844,0.043945312,-0.0054626465,-0.087402344,-0.07910156,0.021240234,0.0020599365,0.07470703,0.084472656,-0.09033203,0.06738281,0.115234375,-0.038085938,-0.10595703,-0.029418945,0.12890625,0.15136719,-0.041503906,0.051513672,0.107910156,0.041259766,-0.045410156,0.08203125,0.043945312,0.06298828,0.048583984,0.044677734,-0.095703125,-0.09277344,0.016113281,-0.076660156,0.022949219,-0.25585938,-0.021484375,0.11816406,0.087890625,-0.08984375,0.11767578,0.12890625,-0.08691406,0.045410156,-0.07861328,-0.079589844,0.16308594,0.13769531,0.20996094,-0.21777344,-0.07080078,0.021118164,0.01550293,0.16113281,-0.14257812,0.020751953,-0.19921875,-0.14257812,-0.060058594,0.15136719,0.064941406,0.14355469,0.07861328,0.13183594,-0.07128906,0.0063171387,0.15917969,-0.045898438,-0.061279297,0.06982422,-3.0755997e-05,-0.0234375,0.030883789,-0.25390625,0.20117188,0.029907227,-0.11669922,-0.110839844,-0.26757812,-0.15234375,0.140625,-0.08984375,-0.111328125,-0.11035156,-0.029785156,-0.12792969,-0.122558594,-0.03515625,-0.048095703,0.048095703,-0.029052734,-0.06347656,-0.16601562,-0.19921875,0.067871094,-0.057617188,0.053466797,0.11279297,-0.039794922,-0.0390625,0.045898438,0.07080078,-0.010070801,-0.045410156,0.21386719,-0.122558594,-0.10839844,0.1328125,-0.016479492,0.13574219,-0.21289062,-0.014953613,0.060302734,0.15527344,-0.1953125,-0.07373047,0.13671875,-0.09423828,0.07910156,0,0,0,0,0,0,0,0},{-0.037109375,-0.1484375,-0.10644531,-0.095214844,-0.0045776367,-0.017822266,0.020507812,-0.05029297,0.11328125,0.032226562,-0.08984375,0.03881836,-0.1484375,0.018310547,-0.035888672,-0.046142578,0.06298828,0.09375,-0.2734375,-0.049316406,0.07421875,-0.023803711,-0.140625,-0.15625,0.084472656,-0.1171875,0.072753906,0.140625,-0.010620117,0.020751953,0.12597656,-0.11376953,0.009216309,0.011474609,-0.03173828,-0.27148438,-0.21777344,-0.08300781,0.096191406,0.12207031,-0.021118164,-0.0078125,-0.12011719,0.12597656,0.068847656,0.11035156,-0.08203125,-0.10107422,0.10986328,-0.07373047,-0.06201172,-0.17285156,-0.03540039,-0.19628906,-0.010314941,-0.17285156,0.07128906,-0.063964844,0.08251953,0.032226562,-0.103515625,-0.28320312,-0.052490234,0.056152344,-0.07861328,-0.12988281,-0.12060547,-0.107910156,-0.026977539,0.028442383,-0.09375,-0.06347656,0.08251953,-0.2109375,-0.14355469,-0.075683594,-0.03100586,-0.21289062,-0.13867188,0.11279297,-0.140625,-0.075683594,-0.10986328,-0.17871094,0.029296875,-0.095703125,-0.11816406,0.009094238,-0.15527344,-0.071777344,-0.08203125,-0.21191406,-0.21484375,-0.07080078,-0.026123047,0.104003906,0.07421875,-0.14257812,-0.16992188,0.029785156,-0.14648438,0.03540039,-0.19140625,-0.23925781,-0.11425781,-0.021240234,0.12060547,-0.052490234,-0.08251953,-0.17285156,-0.076171875,0.008666992,-0.037109375,-0.052978516,0.067871094,-0.045410156,0.12011719,-0.057861328,-0.07128906,-0.059326172,0,0,0,0,0,0,0,0},{0.0054626465,0.17382812,0.099609375,0.036132812,-0.091796875,-0.09277344,-0.030883789,0.06225586,0.06738281,-0.056884766,-0.328125,-0.16894531,0.107910156,-0.05419922,-0.023071289,0.08544922,0.0046691895,-0.04272461,-0.05102539,-0.025146484,-0.12890625,-0.15429688,0.091308594,-0.0049743652,-0.16992188,-0.012512207,0.045166016,0.08984375,0.15332031,0.015625,-0.076660156,-0.022338867,-0.17089844,-0.017822266,-0.015014648,0.08935547,-0.11328125,0.16015625,0.008544922,0.0024871826,0.21777344,-0.015625,0.080078125,-0.05834961,-0.09667969,-0.14160156,-0.18066406,-0.20410156,-0.10888672,0.2734375,-0.091308594,0.12207031,0.17773438,-0.020263672,-0.25195312,-0.14257812,-0.06591797,-0.16503906,-0.16015625,0.014892578,-0.047851562,0.05517578,-0.265625,-0.26367188,-0.16015625,-0.08935547,0.16308594,-0.07470703,-0.087890625,0.13867188,-0.14941406,0.023803711,0.09375,0.009094238,0.171875,0.08544922,0.05444336,-0.040283203,0.001373291,-0.04663086,-0.24414062,-0.107910156,0.076660156,0.087890625,-0.046875,0.17089844,-0.06542969,-0.016113281,-0.115234375,0.033203125,0.010009766,-0.03881836,-0.100097656,0.16210938,0.009094238,-0.203125,0.0051574707,-0.13183594,0.046875,-0.084472656,-0.05053711,0.14550781,-0.18945312,-0.103515625,0.018920898,-0.041015625,0.12890625,-0.10644531,0.028564453,-0.0059814453,0.09863281,-0.18359375,0.06689453,0.029296875,-0.004058838,-0.12011719,0.025756836,0.03100586,-0.15917969,-0.061523438,0,0,0,0,0,0,0,0},{-0.12109375,0.087402344,-0.18945312,0.103515625,-0.26757812,-0.10595703,0.08105469,-0.0024108887,-0.2421875,-0.25195312,-0.16894531,-0.01586914,0.006011963,-0.007873535,-0.171875,-0.032226562,0.2734375,0.10253906,0.0046691895,0.08154297,0.084472656,-0.15625,-0.071777344,0.115234375,-0.041015625,-0.11621094,0.12597656,-0.046875,-0.16699219,-0.1640625,-0.08984375,0.027954102,-0.26953125,-0.19726562,0.027832031,-0.114746094,0.115722656,-0.0625,-0.14453125,0.1484375,0.1328125,-0.10205078,0.036132812,0.08984375,-0.10595703,-0.053222656,-0.043945312,-0.030273438,-0.12158203,0.07421875,-0.0043640137,-0.10205078,-0.125,0.09716797,0.07421875,-0.00049591064,0.1796875,0.032470703,-0.1171875,-0.109375,-0.016357422,-0.28320312,0.035888672,-0.028442383,-0.033447266,-0.064453125,-0.08154297,0.13476562,0.16796875,0.09033203,-0.061767578,0.060546875,0.03491211,-0.21289062,-0.12060547,-0.033203125,-0.0026855469,0.07519531,0.053955078,0.18164062,-0.12060547,-0.07861328,0.019897461,0.03564453,-0.0006713867,-0.009277344,-0.06347656,-0.01373291,0.033447266,-0.024902344,-0.13183594,0.13476562,-0.15917969,-0.0134887695,-0.013366699,0.12890625,0.059326172,-0.115234375,0.096191406,-0.14355469,0.03100586,0.20507812,-0.17773438,-0.06542969,-0.048095703,0.07714844,0.029785156,0.063964844,-0.063964844,-0.13574219,0.020385742,-0.025634766,-0.22753906,0.028564453,0.033203125,0.033203125,-0.123535156,-0.0013580322,-0.15234375,0.07910156,0,0,0,0,0,0,0,0},{0.020629883,0.15136719,-0.006134033,0.08544922,0.107421875,-0.044677734,0.049560547,0.24902344,-0.010314941,0.05834961,-0.0069274902,-0.024536133,0.18847656,0.12792969,-0.09033203,-0.20605469,0.19042969,0.22070312,-0.14746094,0.0018615723,0.19238281,0.036132812,0.08642578,0.06542969,0.16210938,-0.037597656,0.05810547,-0.17382812,0.16015625,0.0031280518,0.24902344,-0.10253906,0.04711914,0.099609375,0.21191406,-0.010681152,0.17285156,0.12988281,0.16015625,-0.13867188,-0.007446289,-0.008361816,0.076171875,-0.11328125,-0.063964844,0.002960205,0.071777344,0.068359375,0.09375,0.09667969,0.07861328,0.16796875,0.14550781,0.14355469,0.15527344,-0.15429688,0.10253906,0.21777344,-0.07080078,0.16699219,0.080566406,-0.04638672,-0.02709961,-0.25390625,-0.07519531,0.18261719,-0.21875,0.14257812,0.12597656,0.23046875,-0.010620117,0.15039062,-0.010192871,0.110839844,0.032226562,0.091796875,0.014831543,-0.10498047,0.15722656,0.075683594,-0.015258789,-0.034423828,0.047851562,0.059326172,0.23339844,0.03149414,-0.014404297,0.072753906,0.022216797,0.26953125,0.041992188,-0.0034484863,-0.06201172,0.003540039,0.11621094,0.068359375,-0.06591797,0.056152344,0.110839844,-0.047607422,0.09033203,0.099121094,0.023803711,-0.0126953125,0.13183594,0.027832031,-0.10888672,0.008117676,0.045166016,0.18457031,0.103515625,-0.01159668,0.08984375,-0.10595703,0.15429688,0.016723633,0.030883789,-0.15917969,-0.009277344,0.16015625,0,0,0,0,0,0,0,0},{0.03955078,0.068359375,0.0025024414,0.001045227,-0.27148438,-0.29492188,-0.00089645386,-0.13574219,-0.140625,-0.005279541,-0.11035156,-0.06347656,0.24511719,0.004547119,-0.09033203,-0.0126953125,-0.055419922,-0.016479492,0.02709961,-0.03881836,0.12109375,0.035888672,0.095703125,0.13183594,0.18261719,0.060546875,-0.012023926,0.055419922,0.00033569336,-0.061035156,-0.041503906,-0.014526367,-0.043701172,-0.13867188,-0.10546875,0.13085938,-0.12060547,-0.10986328,0.10058594,-0.052490234,-0.03564453,-0.15039062,-0.015563965,0.083496094,0.10986328,0.06689453,-0.028808594,0.00077438354,-0.083984375,-0.25976562,-0.12792969,-0.038085938,-0.13378906,0.140625,0.17675781,-0.043701172,0.014892578,-0.20800781,-0.2265625,-0.15820312,-0.024414062,0.10058594,0.11816406,0.12402344,0.118652344,-0.027832031,0.03149414,0.06689453,0.1640625,-0.114746094,-0.21191406,-0.046142578,0.032958984,-0.21191406,-0.115234375,0.11035156,-0.033203125,0.043945312,0.018188477,-0.019897461,-0.18554688,0.095703125,-0.16210938,-0.10888672,-0.08251953,-0.016601562,0.059326172,-0.25585938,-0.12011719,-0.13378906,0.13867188,-0.23535156,-0.11767578,0.10986328,-0.092285156,0.03466797,-0.24902344,-0.080078125,0.11816406,-0.140625,0.10546875,0.06591797,-0.15917969,0.0234375,0.0032348633,0.17382812,0.15429688,-0.025512695,-0.22558594,0.091796875,0.27539062,-0.18945312,-0.115722656,-0.07373047,0.125,-0.027954102,-0.30273438,-0.11376953,0.068847656,0.10205078,0,0,0,0,0,0,0,0},{0.17382812,0.035888672,-0.14355469,-0.15136719,0.125,0.0015563965,-0.125,-0.13867188,-0.087402344,-0.203125,-0.31054688,-0.13085938,0.016845703,-0.17675781,0.20507812,-0.15039062,-0.050048828,0.096191406,-0.23535156,-0.049804688,0.004425049,-0.115722656,0.07470703,0.15820312,-0.18652344,-0.021484375,-0.12109375,-0.13769531,-0.009094238,-0.08935547,0.05053711,0.0006752014,-0.01965332,-0.17089844,0.1328125,-0.09277344,0.13085938,0.10253906,-0.15917969,0.076171875,-0.08642578,0.016357422,-0.015625,-0.044677734,0.017700195,-0.15527344,-0.1796875,0.08691406,-0.00010967255,-0.021850586,0.027954102,0.036621094,0.078125,-0.0025787354,0.036376953,-0.041748047,0.083496094,-0.11816406,-0.11279297,0.11425781,0.08251953,-0.36523438,-0.0029754639,0.107421875,0.12158203,-0.13867188,0.040283203,0.060058594,-0.03564453,0.106933594,-0.17285156,-0.17871094,0.111816406,-0.114746094,0.047851562,-0.16699219,-0.10449219,-0.23046875,-0.17871094,0.15527344,-0.10595703,-0.000289917,-0.32421875,-0.15234375,-0.06347656,-0.19726562,-0.003540039,-0.00090408325,-0.037841797,-0.16992188,-0.12158203,0.026000977,-0.06542969,0.16503906,-0.044921875,0.115234375,-0.01574707,-0.17382812,-0.002029419,-0.1640625,0.036865234,-0.017089844,-0.07910156,-0.08935547,0.017700195,0.004211426,0.07324219,-0.10595703,-0.017211914,0.20605469,-0.036132812,0.0625,-0.23828125,-0.06982422,-0.09667969,-0.06347656,-0.18457031,-0.15917969,-0.0031433105,0.013793945,0,0,0,0,0,0,0,0},{-0.051757812,-0.0095825195,-0.046142578,-0.21289062,-0.061767578,-0.18359375,-0.0045776367,0.18847656,-0.03100586,0.008117676,-0.17871094,-0.07910156,0.002105713,0.016479492,-0.063964844,-0.007873535,-0.15429688,-0.028076172,-0.110839844,0.09863281,0.12207031,-0.21875,-0.23339844,0.064941406,-0.17480469,-0.049804688,0.072265625,-0.052001953,-0.036865234,-0.24804688,-0.025146484,-0.05908203,-0.16992188,-0.11816406,0.123046875,-0.2734375,-0.008483887,0.15136719,0.041503906,-0.021728516,0.15722656,0.07763672,0.015563965,0.12451172,-0.125,-0.078125,-0.030029297,0.11767578,-0.111328125,0.08544922,0.030151367,-0.16992188,0.0027770996,-0.107910156,0.08203125,-0.20019531,0.05126953,-0.07128906,-0.026123047,-0.22167969,-0.04321289,-0.10058594,-0.12695312,-0.024169922,0.026733398,0.17578125,0.09375,-0.060058594,0.095214844,-0.18457031,-0.10107422,-0.099609375,-0.22265625,-0.03955078,0.083496094,-0.091796875,0.12988281,-0.08886719,0.003479004,-0.083984375,0.0054016113,0.17675781,0.041503906,0.13964844,-0.16601562,-0.010986328,-0.11816406,0.009216309,-0.07373047,-0.08886719,-0.21191406,0.01586914,-0.13671875,-0.16015625,-0.119140625,-0.041015625,0.024169922,-0.12402344,-0.234375,-0.15527344,-0.20117188,0.13183594,-0.20996094,-0.107910156,-0.10888672,0.045898438,-0.0107421875,0.005493164,-0.17578125,-0.10888672,-0.014892578,-0.02734375,0.031982422,-0.18066406,-0.23535156,-0.17382812,0.061035156,-0.20507812,-0.171875,-0.0056762695,0,0,0,0,0,0,0,0},{-0.12890625,-0.1484375,-0.047607422,0.106933594,-0.003692627,-0.0041503906,-0.106933594,-0.06347656,-0.20507812,-0.10498047,-0.020019531,0.047851562,0.008850098,-0.02355957,0.036865234,0.07763672,-0.020629883,-0.032470703,-0.22460938,-0.02368164,-0.05126953,-0.19042969,0.0859375,0.1015625,-0.16992188,-0.100097656,-0.12695312,-0.13378906,0.072265625,-0.20214844,0.11425781,0.008361816,0.059326172,-0.012268066,0.12792969,-0.03515625,-0.107910156,-0.18066406,0.013061523,-0.033203125,-0.10205078,-0.12792969,-0.15527344,-0.02319336,0.06933594,0.19335938,-0.20703125,-0.029785156,0.13378906,-0.079589844,-0.025390625,-0.14160156,-0.068359375,-0.057617188,-0.06738281,-0.053222656,0.08251953,-0.014892578,0.07470703,-0.1171875,-0.18945312,-0.24902344,-0.05908203,0.10253906,0.14257812,-0.013427734,0.030151367,0.09277344,0.0703125,0.13085938,0.09716797,0.051757812,0.005126953,-0.068359375,0.09667969,-0.16113281,0.029541016,0.0134887695,-0.044921875,0.06933594,0.064453125,0.015380859,-0.043945312,-0.16699219,0.025268555,-0.22070312,0.104003906,0.012023926,-0.026611328,-0.08886719,-0.111816406,-0.08544922,-0.20605469,0.031982422,-0.15625,-0.12011719,-0.076660156,-0.21972656,0.09472656,-0.08691406,-0.035888672,-0.041259766,-0.24023438,-0.19628906,-0.16796875,-0.045654297,0.11669922,-0.18066406,-0.110839844,0.0017700195,-0.23242188,0.048828125,-0.078125,-0.041259766,-0.15917969,0.017456055,-0.00088119507,0.05883789,0.09423828,-0.16699219,0,0,0,0,0,0,0,0},{0.15039062,-0.140625,0.0019683838,-0.03466797,0.1640625,-0.021606445,0.033447266,-0.096191406,-0.056396484,-0.18945312,-0.009887695,0.06640625,-0.083984375,0.07763672,0.123535156,-0.21679688,0.044433594,0.19335938,-0.21777344,0.107421875,0.15722656,0.09765625,0.057617188,0.10595703,0.083984375,-0.005065918,-0.057373047,-0.13671875,0.14746094,0.14160156,0.13378906,0.057373047,-0.123046875,-0.17675781,-0.056152344,-0.024902344,-0.06591797,-0.14355469,-0.14746094,0.07714844,-0.026733398,-0.1328125,-0.26953125,0.14746094,-0.040527344,-0.106933594,-0.140625,-0.052001953,0.05883789,0.03881836,-0.14160156,-0.048339844,0.07910156,0.03515625,0.14257812,0.08984375,-0.02331543,-0.052246094,-0.035888672,-0.14160156,-0.079589844,-0.107910156,-0.18847656,-0.13378906,0.06347656,0.07080078,-0.22460938,-0.022949219,0.21972656,-0.068359375,-0.118652344,0.01965332,-0.111816406,-0.15234375,-0.009521484,-0.21484375,-0.0119018555,-0.19238281,-0.028564453,0.07714844,-0.024780273,0.15722656,-0.09082031,-0.25,0.0067443848,-0.10986328,-0.033935547,-0.020629883,-0.12060547,0.10888672,-0.13378906,-0.059326172,-0.14550781,0.052246094,0.08203125,-0.16015625,0.080078125,-0.03930664,-0.034423828,0.13085938,-0.05493164,0.040771484,-0.16210938,-0.083496094,-0.07421875,0.15625,0.1484375,-0.0546875,0.08251953,0.14941406,-0.09716797,0.110839844,-0.01940918,0.09082031,0.11767578,0.125,0.025512695,0.12792969,-0.03125,0.072265625,0,0,0,0,0,0,0,0},{-0.020629883,-0.1484375,-0.11035156,0.0039978027,-0.16992188,0.052490234,0.07421875,-0.23144531,0.0032348633,-0.26953125,-0.2578125,-0.08544922,-0.17382812,0.016845703,-0.080566406,-0.03466797,-0.21582031,0.06738281,0.08984375,-0.095703125,-0.14453125,-0.015319824,-0.115234375,-0.040039062,-0.014221191,0.05859375,-0.06542969,-0.22460938,0.03564453,-0.17382812,-0.06298828,-0.068359375,-0.10546875,0.05053711,0.29101562,-0.15917969,-0.032470703,-0.09033203,-0.00793457,-0.10595703,-0.091308594,-0.296875,-0.095703125,0.076171875,-0.23144531,0.0703125,-0.080566406,-0.18847656,-0.028320312,-0.0011672974,-0.09667969,0.010253906,-0.018432617,0.0070495605,-0.115722656,-0.20507812,0.1640625,0.01373291,-0.067871094,-0.104003906,-0.17480469,-0.14355469,-0.22363281,-0.107910156,0.0069274902,-0.14746094,-0.15234375,0.055419922,-0.18164062,-0.06982422,-0.0077819824,-0.099609375,-0.052978516,0.014099121,-0.032226562,-0.119628906,0.10986328,-0.15820312,-0.1640625,-0.106933594,0.17285156,-0.15527344,0.21875,0.013916016,-0.29492188,0.10498047,0.060302734,0.095703125,-0.1953125,-0.006225586,-0.296875,-0.09423828,-0.05102539,-0.05419922,0.20410156,0.03564453,0.030151367,0.05029297,-0.28515625,-0.064453125,-0.09033203,-0.13574219,0.047607422,-0.07519531,0.080078125,0.015625,0.0703125,-0.080078125,-0.14453125,0.071777344,0.07910156,-0.17382812,-0.011352539,-0.1875,-0.13476562,-0.046142578,-0.036376953,-0.011047363,0.15429688,-0.024658203,0,0,0,0,0,0,0,0},{0.15136719,-0.11669922,-0.09423828,-0.09033203,0.10888672,0.10595703,-0.18945312,-0.05053711,0.110839844,-0.038330078,-0.015380859,-0.02734375,-0.19335938,0.15136719,0.018798828,-0.18359375,-0.13085938,-0.09277344,-0.07080078,0.20019531,-0.19140625,-0.1953125,0.14355469,-0.16308594,0.110839844,-0.14550781,-0.035888672,-0.13867188,-0.10595703,0.110839844,0.03515625,0.09667969,-0.038330078,0.057617188,-0.026855469,-0.03955078,-0.04345703,0.203125,-0.013122559,-0.063964844,0.15820312,0.068847656,-0.057128906,0.063964844,-0.067871094,-0.14355469,-0.020629883,0.01953125,0.052490234,-0.005279541,0.037109375,-0.08544922,0.115234375,0.16894531,-0.079589844,0.14453125,0.19628906,0.04345703,0.019897461,-0.11230469,-0.06201172,-0.03491211,-0.171875,-0.10205078,0.21875,0.17480469,-0.14941406,-0.024291992,-0.119140625,0.10595703,-0.22363281,0.14453125,-0.07861328,-0.14941406,-0.14941406,0.040283203,0.013366699,0.014038086,-0.16796875,0.041259766,0.010925293,-0.044677734,-0.09326172,-0.046142578,0.029052734,-0.023071289,0.0041503906,-0.03857422,-0.041015625,-0.10546875,-0.05053711,0.05444336,0.1015625,0.17675781,-0.072753906,-0.035888672,0.087890625,-0.16210938,0.11230469,-0.007293701,-0.024047852,0.13867188,0.08691406,-0.080566406,0.18554688,-0.045410156,-0.14355469,-0.014892578,0.06640625,-0.008422852,0.20214844,0.12011719,-0.103027344,0.03930664,-0.049072266,0.0014801025,0.06738281,0.05444336,0.234375,0.104003906,0,0,0,0,0,0,0,0},{-0.171875,-0.22167969,-0.028686523,-0.100097656,0.014282227,-0.14160156,-0.049560547,0.104003906,0.091796875,-0.008117676,-0.11669922,0.09326172,-0.033691406,0.22167969,-0.28515625,0.12207031,0.015991211,0.1015625,0.15332031,-0.15136719,0.064453125,-0.014465332,0.0030670166,-0.16992188,-0.06591797,-0.13574219,-0.015075684,-0.095703125,-0.09667969,-0.06982422,0.005584717,-0.13964844,-0.22753906,-0.009216309,-0.20996094,-0.057128906,-0.15234375,0.053710938,-0.15136719,0.07128906,-0.10888672,-0.25390625,-0.12109375,0.05053711,-0.13574219,-0.17675781,0.0018081665,-0.07421875,-0.022094727,0.119628906,-0.12695312,-0.1328125,-0.12792969,0.09472656,0.032714844,-0.028198242,0.13183594,-0.103515625,-0.16699219,-0.10498047,-0.08642578,-0.12988281,-0.13867188,0.056640625,-0.005645752,-0.19628906,-0.091796875,0.05419922,0.043701172,-0.040527344,-0.0027160645,0.12451172,0.041503906,-0.09814453,0.012634277,0.0015792847,-0.103515625,-0.13769531,-0.08251953,0.05517578,-0.12011719,-0.13964844,0.08203125,-0.15527344,0.110839844,-0.05517578,-0.06201172,-0.103515625,-0.051757812,0.026489258,0.019897461,-0.15722656,0.00075531006,-0.048339844,-0.13964844,-0.21582031,-0.18359375,0.03881836,-0.15625,-0.26953125,0.0703125,0.13769531,0.0018386841,0.040771484,0.0390625,0.12011719,-0.035888672,-0.05419922,-0.0049438477,0.025146484,-0.084472656,0.011474609,-0.115234375,0.0009918213,-0.051757812,0.020996094,0.005706787,-0.017578125,0.07861328,-0.06689453,0,0,0,0,0,0,0,0},{0.015625,0.09667969,0.07910156,0.12109375,0.0032043457,-0.095214844,0.078125,-0.11621094,-0.06542969,0.06542969,0.060791016,0.052978516,-0.17675781,-0.17773438,0.043945312,0.12109375,0.06201172,-0.0014343262,0.013427734,-0.0071105957,0.17773438,0.05908203,0.0014648438,-0.203125,0.10449219,-0.008117676,0.107910156,0.041748047,-0.12792969,0.100097656,0.14648438,0.03125,-0.13574219,0.07714844,-0.016235352,-0.115722656,0.23828125,0.21972656,-0.017333984,0.19042969,0.12402344,0.06689453,0.16210938,0.22460938,-0.13476562,-0.04345703,-0.18847656,0.13671875,0.048583984,0.0014038086,-0.018432617,0.09277344,0.008239746,0.020751953,-0.20410156,0.23046875,0.23339844,0.08251953,0.017578125,-0.08300781,-0.171875,-0.07861328,0.04321289,0.03955078,-0.1328125,-0.025878906,0.0859375,0.022827148,-0.024780273,-0.080566406,-0.046142578,0.107421875,0.15136719,-0.15527344,0.024169922,0.0859375,0.03857422,0.0076904297,0.079589844,0.17089844,-0.118652344,-0.043701172,0.076660156,-0.14941406,0.119628906,0.11816406,-0.12158203,0.007293701,0.048583984,0.107421875,0.18359375,-0.06933594,-0.072265625,-0.031982422,-0.047607422,0.10253906,-0.11328125,-0.23828125,0.02722168,-0.064941406,0.05102539,0.080566406,-0.046142578,0.025512695,-0.10546875,-0.084472656,0.041992188,0.071777344,0.056396484,0.12792969,0.056396484,0.2109375,-0.021118164,-0.09472656,-0.072265625,0.13378906,0.09423828,0.14550781,0.11816406,-0.02758789,0,0,0,0,0,0,0,0},{-0.21386719,-0.078125,-0.14160156,0.06542969,0.16210938,-0.1953125,-0.06738281,-0.0625,-0.09716797,-0.09033203,0.07128906,-0.1640625,-0.18261719,-0.15527344,-0.15625,-0.080566406,-0.26953125,-0.08496094,-0.032470703,-0.29101562,0.01586914,-0.13183594,0.016967773,-0.017456055,-0.07373047,-0.20703125,-0.22265625,-0.16015625,0.08544922,-0.0859375,-0.11621094,-0.15917969,-0.013061523,-0.063964844,-0.056640625,-0.3359375,-0.119628906,0.11816406,-0.1328125,-0.0068969727,0.053466797,-0.15332031,-0.23339844,0.032226562,-0.15332031,0.110839844,-0.1328125,-0.119628906,0.123535156,0.025146484,-0.17871094,-0.072265625,0.038085938,0.17480469,-0.0013198853,-0.15917969,-0.06933594,-0.083984375,-0.20214844,-0.21972656,-0.087402344,-0.057617188,-0.1171875,-0.10253906,0.08251953,-0.103515625,-0.15234375,-0.2265625,0.05810547,-0.11328125,0.10205078,-0.13964844,-0.15039062,-0.12011719,0.0046691895,-0.022583008,-0.02722168,-0.028930664,0.119140625,-0.01171875,0.09375,-0.20800781,0.05444336,-0.24902344,0.011047363,0.048828125,-0.08984375,-0.11669922,0.11621094,0.0058288574,-0.19335938,-0.19042969,-0.31054688,-0.203125,-0.1953125,-0.16503906,-0.15625,-0.07763672,-0.016845703,-0.0045166016,-0.00074005127,0.096191406,-0.20605469,-0.015136719,-0.06982422,0.103027344,-0.033447266,0.04321289,0.025756836,-0.029296875,0.10839844,0.003250122,-0.0005340576,-0.28320312,0.13085938,-0.03491211,-0.12109375,-0.047607422,-0.18261719,-0.088378906,0,0,0,0,0,0,0,0},{0.032470703,-0.020019531,-0.3515625,-0.099121094,0.123046875,0.056396484,-0.056152344,-0.32226562,-0.099609375,0.08935547,-0.05883789,0.22265625,-0.07470703,0.08154297,0.06982422,-0.016479492,0.009887695,0.15625,0.14160156,0.17285156,0.14746094,0.099609375,-0.28710938,0.007751465,-0.060058594,-0.052001953,0.22753906,-0.20703125,-0.15917969,-0.14257812,0.1796875,0.008728027,-0.06689453,-0.072265625,-0.08935547,-0.12158203,0.0074157715,0.12792969,-0.001449585,-0.26953125,-0.004760742,-0.10546875,0.052734375,0.06933594,0.16894531,0.059570312,-0.16210938,0.025878906,-0.049316406,0.16015625,0.035888672,-0.296875,0.14453125,0.26171875,-0.056884766,0.038085938,-0.14648438,0.12988281,-0.2109375,0.036132812,0.029174805,-0.010314941,0.11230469,0.08496094,-0.13085938,0.171875,0.040039062,-0.110839844,0.17089844,-0.0023651123,0.0028839111,0.032958984,0.078125,0.003112793,-0.052734375,0.118652344,-0.21386719,0.123046875,-0.15625,-0.079589844,-0.19628906,-0.08154297,-0.052490234,-0.17285156,0.033447266,-0.021362305,0.032714844,-0.17871094,0.009521484,0.22265625,-0.123535156,-0.31054688,-0.07763672,-0.05810547,0.07519531,0.12890625,-0.123046875,-0.13476562,0.015319824,-0.111328125,-0.032226562,0.32617188,-0.00078964233,-0.25976562,-0.07128906,0.1953125,-0.09765625,0.18554688,0.12890625,0.1953125,-0.032958984,0.036132812,0.030395508,0.048095703,-0.014160156,0.18261719,0.04736328,0.13769531,0.095214844,0.051757812,0,0,0,0,0,0,0,0},{0.07421875,-0.23144531,-0.18457031,0.05078125,0.059814453,-0.10205078,0.10498047,-0.026367188,-0.13867188,0.033203125,-0.10644531,-0.004058838,-0.041748047,0.07910156,-0.044921875,-0.15429688,-0.057128906,0.107910156,-0.115234375,0.106933594,-0.0546875,0.03881836,-0.23730469,-0.12109375,-0.19433594,0.05053711,0.038330078,-0.08691406,0.030761719,-0.038085938,0.115722656,0.15039062,0.016967773,-0.099121094,-0.099609375,0.0066833496,0.20605469,0.09033203,-0.16308594,-0.078125,0.06689453,-0.008361816,-0.13183594,-0.020996094,0.060791016,-0.046875,0.02368164,0.20996094,0.040039062,-0.11376953,-0.079589844,-0.22070312,-0.037841797,0.15136719,0.040771484,0.16503906,0.09716797,-0.029541016,-0.05810547,-0.14941406,-0.23828125,-0.16113281,-0.28125,0.03491211,0.08496094,0.119628906,0.025268555,0.038085938,0.04736328,0.11279297,-0.016845703,0.23144531,0.016113281,-0.109375,0.13378906,0.031982422,0.100097656,0.12988281,-0.010437012,0.12695312,-0.017333984,0.08544922,-0.11376953,0.00064468384,-0.31835938,-0.24316406,0.10058594,0.012145996,-0.15332031,0.10644531,-0.14648438,-0.008483887,0.17285156,0.07128906,-0.087890625,0.10888672,0.13574219,0.09033203,-0.09472656,-0.026855469,-0.076171875,-0.13671875,0.06982422,-0.047607422,-0.08886719,-0.111328125,-0.10253906,-0.029907227,-0.010375977,0.076660156,0.13867188,-0.08886719,-0.22851562,-0.122558594,-0.06640625,-0.09326172,-0.026000977,-0.15429688,-0.08691406,-0.017700195,0,0,0,0,0,0,0,0},{-0.12402344,0.031982422,-0.19042969,0.087402344,-0.16601562,-0.10644531,-0.122558594,-0.16503906,-0.02368164,-0.16503906,-0.106933594,0.033935547,0.12988281,-0.024658203,0.091308594,0.059570312,-0.072753906,-0.19921875,-0.12890625,-0.14746094,-0.14355469,0.107910156,-0.061767578,0.006134033,-0.020996094,-0.072753906,0.104003906,0.18847656,-0.103027344,-0.07910156,-0.0014343262,-0.06347656,-0.18066406,0.049560547,-0.08154297,-0.2421875,-0.03125,-0.010559082,0.022827148,0.032958984,0.16210938,-0.140625,0.095703125,-0.05053711,0.16113281,-0.1171875,-0.01965332,-0.064453125,-0.056640625,-0.11425781,-0.018310547,-0.16992188,0.07470703,-0.004486084,-0.0119018555,0.048583984,0.016601562,-0.171875,-0.078125,-0.068847656,-0.017456055,-0.03173828,0.17089844,0.052246094,-0.12158203,-0.17578125,0.092285156,-0.030517578,0.07861328,0.118652344,-0.28125,-0.076660156,0.14941406,0.122558594,-0.13574219,-0.036376953,0.057128906,-0.055664062,-0.296875,0.029785156,-0.05102539,0.060546875,0.0065612793,0.010192871,-0.19824219,0.01361084,0.041748047,0.016479492,-0.22265625,0.16015625,-0.111328125,-0.14160156,-0.005706787,0.16113281,0.17871094,-0.0032958984,0.099121094,-0.09765625,0.07128906,-0.24707031,-0.21777344,-0.0146484375,0.028320312,-0.18066406,-0.18847656,0.009399414,-0.15527344,-0.111328125,-0.17480469,0.061279297,-0.08154297,-0.31445312,-0.17578125,0.03149414,-0.18359375,-0.017089844,-0.006500244,-0.0390625,-0.059570312,0.032470703,0,0,0,0,0,0,0,0},{-0.14941406,-0.13378906,-0.18164062,0.018432617,-0.08642578,0.033935547,-0.083496094,0.15625,0.06347656,-0.12792969,-0.020507812,-0.004180908,0.12890625,-0.0037078857,0.06933594,0.115234375,0.06298828,-0.1484375,-0.05078125,0.16210938,0.12597656,-0.13476562,0.10107422,-0.00680542,-0.20410156,-0.12207031,-0.0234375,-0.1328125,0.072753906,-0.1875,-0.063964844,-0.057861328,0.118652344,-0.005065918,-0.12011719,-0.12890625,0.09326172,-0.09423828,0.04345703,-0.009460449,-0.17285156,0.10595703,-0.051757812,0.09472656,0.115234375,0.041992188,0.064941406,0.033203125,0.053466797,0.03881836,-0.07128906,-0.12988281,0.029418945,-0.09667969,0.043701172,0.031982422,-0.045166016,0.07421875,-0.11376953,0.07373047,0.10498047,-0.029541016,-0.045410156,-0.0076293945,0.04296875,-0.10595703,-0.06640625,-0.024780273,-0.052490234,-0.118652344,0.19628906,0.064941406,0.13964844,0.004638672,0.027954102,-0.15136719,0.08496094,-0.13671875,-0.07080078,0.12792969,0.115234375,-0.056640625,-0.14257812,-0.10888672,0.030029297,-0.014831543,-0.007080078,-0.13378906,-0.15722656,0.049804688,-0.14257812,-0.09667969,-0.12207031,-0.10839844,-0.006072998,0.1484375,0.14257812,-0.048095703,0.03466797,-0.18945312,0.022338867,0.20898438,-0.18847656,-0.19238281,-0.16210938,0.10107422,-0.18554688,0.15234375,-0.10205078,-0.053710938,-0.11328125,-0.24804688,0.046142578,-0.14257812,0.052001953,-0.0006904602,-0.09667969,0.103515625,0.26953125,-0.01965332,0,0,0,0,0,0,0,0},{-0.15820312,0.060058594,-0.13671875,0.078125,-0.09667969,-0.00031661987,-0.12695312,0.10449219,-0.046875,-0.123046875,-0.099609375,0.09814453,0.08203125,-0.15429688,-0.14257812,0.06591797,0.107421875,0.16210938,0.003326416,0.030761719,-0.099121094,-0.22460938,0.021850586,-0.106933594,0.036132812,0.040283203,-0.24023438,-0.09033203,-0.026000977,-0.17089844,-0.000333786,-0.032226562,-0.13964844,0.021606445,-0.15527344,-0.24804688,-0.13574219,-0.20800781,-0.15234375,-0.07373047,-0.12988281,-0.15136719,-0.049316406,-0.029663086,-0.23925781,-0.08496094,0.049072266,-0.080566406,-0.11621094,-0.008117676,-0.17675781,-0.0625,0.063964844,-0.061767578,0.052978516,0.07324219,0.05859375,-0.053222656,0.13183594,0.019165039,-0.068847656,-0.06542969,-0.040771484,0.049072266,-0.063964844,-0.04345703,0.080566406,-0.140625,-0.0107421875,0.031982422,-0.17480469,0.15332031,0.09326172,-0.21289062,0.0008773804,-0.072753906,0.032226562,-0.006072998,0.0073242188,0.04345703,0.059326172,0.036376953,-0.042236328,-0.18945312,0.02331543,-0.14453125,0.07519531,0.049072266,-0.21386719,-0.125,-0.05078125,0.056396484,-0.14746094,0.12060547,0.047851562,-0.028808594,-0.1953125,-0.21386719,-0.0546875,-0.25195312,-0.10839844,-0.036132812,0.010803223,-0.029418945,-0.17675781,0.034179688,-0.103027344,-0.048583984,-0.107421875,-0.03515625,0.12158203,0.018188477,-0.067871094,-0.055419922,0.091308594,0.013549805,-0.13085938,-0.140625,-0.13671875,0.04321289,0,0,0,0,0,0,0,0},{-0.09326172,-0.22460938,0.043945312,0.110839844,-0.096191406,-0.12451172,-0.07910156,-0.21191406,-0.10058594,0.048095703,-0.21484375,-0.09863281,0.06982422,-0.0078125,-0.041503906,0.024902344,0.0012054443,-0.11279297,-0.05908203,-0.04736328,-0.056396484,-0.079589844,-0.06225586,0.07421875,-0.17773438,-0.104003906,-0.08251953,-0.14257812,-0.013183594,-0.046875,-0.095214844,-0.100097656,-0.008239746,-0.08984375,-0.122558594,-0.18261719,-0.041503906,-0.1640625,-0.20898438,-0.24121094,0.03930664,-0.21777344,-0.10107422,0.005004883,0.07519531,-0.10595703,-0.125,-0.037353516,-0.15332031,-0.020629883,-0.17089844,0.036376953,-0.03857422,-0.18066406,0.080078125,-0.045166016,0.16992188,-0.044433594,0.123046875,0.1015625,0.1796875,-0.052978516,-0.01373291,-0.037597656,-0.06640625,-0.08154297,-0.010192871,-0.067871094,0.07910156,0.17480469,-0.04663086,0.072753906,0.05126953,-0.115722656,-0.027954102,-0.07470703,-0.049072266,-0.14453125,-0.123535156,-0.16992188,0.055419922,0.17285156,-0.01953125,0.021484375,-0.072265625,-0.19433594,0.13085938,0.0045166016,-0.10498047,-0.060546875,-0.08496094,-0.034423828,0.06298828,-0.095703125,0.14648438,-0.11328125,0.16015625,-0.20996094,-0.040283203,-0.23730469,0.03173828,-0.14941406,-0.07763672,-0.33789062,-0.008117676,0.019165039,0.0041503906,0.13183594,-0.061767578,-0.12890625,0.004211426,-0.106933594,-0.27734375,-0.12207031,-0.10253906,0.049072266,0.036621094,0.04663086,0.18847656,0.037109375,0,0,0,0,0,0,0,0},{0.07080078,-0.18847656,-0.13085938,-0.020874023,0.041015625,-0.14160156,-0.140625,0.10595703,-0.0028686523,-0.020019531,0.05908203,-0.03112793,-0.010803223,-0.09277344,-0.11669922,-0.0107421875,-0.15234375,-0.171875,-0.041259766,0.036865234,0.11669922,-0.022827148,-0.017700195,-0.047607422,0.05908203,-0.10888672,-0.02368164,0.072265625,-0.02709961,-0.23144531,-0.083984375,0.15332031,-0.17480469,0.051757812,-0.12011719,-0.25,-0.15136719,-0.14257812,0.06225586,0.11328125,-0.047851562,-0.25976562,0.08105469,0.041503906,0.15527344,-0.22949219,-0.0625,-0.09765625,-0.110839844,-0.13085938,-0.27148438,-0.053955078,-0.22363281,-0.095214844,-0.08105469,-0.122558594,-0.19335938,-0.033935547,-0.20019531,-0.05517578,-0.18066406,-0.21875,-0.068359375,-0.29296875,-0.041748047,-0.0625,-0.18554688,-0.037841797,-0.0047302246,-0.031982422,0.00793457,-0.057128906,-0.12158203,0.026367188,-0.024047852,-0.14160156,0.026855469,-0.02746582,-0.025634766,-0.06201172,-0.018310547,-0.024902344,-0.25976562,-0.11621094,-0.13671875,-0.087890625,0.13574219,-0.09375,-0.08984375,-0.096191406,0.048828125,-0.06201172,-0.022949219,-0.18359375,-0.07324219,-0.12792969,-0.050048828,-0.05029297,-0.19433594,0.033935547,-0.037597656,0.08544922,-0.07324219,-0.27539062,-0.021240234,0.103515625,-0.15136719,-0.10546875,-0.20507812,0.12402344,-0.16894531,0.03112793,-0.029907227,-0.13769531,0.0703125,-0.09667969,-0.06591797,0.045654297,0.1484375,0.10107422,0,0,0,0,0,0,0,0},{-0.083496094,-0.03564453,-0.15136719,0.095214844,0.079589844,0.0024108887,-0.20117188,-0.20117188,-0.014160156,0.06591797,0.0079956055,0.048828125,-0.14746094,-0.096191406,0.007873535,0.02368164,-0.064453125,0.19335938,-0.026123047,0.079589844,-0.025268555,-0.17089844,0.12011719,0.19433594,-0.17480469,-0.05078125,-0.32226562,-0.17773438,0.044433594,0.07080078,0.19238281,0.07519531,0.08886719,-0.15429688,-0.09326172,-0.33203125,0.021972656,0.119628906,-0.23828125,0.027832031,0.053222656,-0.16015625,-0.083496094,-0.06542969,-0.15136719,-0.072753906,-0.1640625,0.16503906,0.049072266,-0.15429688,-0.067871094,-0.114746094,0.08935547,-0.026489258,0.016235352,0.18554688,-0.1484375,-0.07470703,0.16699219,0.15820312,-0.1796875,0.045898438,0.07910156,0.017700195,0.04638672,-0.080566406,-0.0019836426,0.064941406,0.13964844,-0.23632812,-0.14648438,-0.056640625,0.119140625,-0.12792969,-0.01953125,0.084472656,-0.0035705566,-0.19433594,0.029052734,-0.15136719,-0.18652344,0.16308594,-0.17089844,-0.122558594,-0.1015625,0.19824219,0.004333496,0.08691406,-0.12597656,0.15527344,0.0049743652,0.05078125,-0.119628906,0.24414062,0.056640625,-0.13964844,0.10839844,-0.25,-0.18164062,-0.25585938,-0.10986328,-0.10888672,-0.100097656,-0.015625,-0.19238281,-0.028198242,0.18945312,-0.0134887695,-0.079589844,0.037597656,0.063964844,0.13378906,-0.19335938,-0.15234375,0.08105469,0.02319336,-0.003967285,-0.063964844,-0.068359375,0.119140625,0,0,0,0,0,0,0,0},{0.14355469,-0.11328125,-0.20898438,-0.11035156,0.038085938,-0.17285156,-0.04296875,0.14550781,-0.041015625,-0.17578125,-0.32617188,0.17773438,-0.029785156,0.07080078,-0.18359375,0.11328125,-0.28125,-0.20019531,-0.08642578,0.23730469,0.0234375,0.107421875,-0.18457031,-0.109375,-0.1171875,-0.12109375,-0.099121094,0.23535156,0.140625,0.076660156,-0.061523438,0.041015625,-0.061279297,0.014465332,0.06591797,-0.3515625,-0.052978516,-0.025756836,0.09765625,0.04638672,0.14453125,-0.05029297,-0.115722656,-0.100097656,0.18457031,0.052490234,-0.07128906,-0.118652344,-0.06689453,0.072265625,0.036865234,0.056884766,0.07910156,0.104003906,-0.265625,0.064941406,0.1484375,-0.075683594,-0.033935547,-0.111328125,-0.047607422,-0.061767578,0.28710938,0.17089844,-0.14648438,-0.125,0.13671875,-0.12988281,-0.19824219,-0.21386719,0.018798828,-0.23730469,0.10888672,0.08251953,0.09326172,0.027954102,-0.16894531,0.095214844,-0.031982422,0.13964844,0.036865234,0.0003566742,-0.13183594,-0.039794922,-0.08691406,-0.059326172,0.0065612793,-0.045166016,-0.14453125,0.04638672,-0.06591797,-0.02722168,-0.22070312,-0.08251953,-0.013916016,-0.26171875,0.23046875,0.10449219,-0.03491211,-0.1796875,0.13183594,-0.103515625,-0.16992188,-0.33984375,0.010925293,0.005218506,0.15917969,0.19238281,0.080566406,-0.16308594,-0.032226562,0.07714844,0.18652344,-0.07861328,0.0703125,-0.020385742,-0.03173828,-0.026733398,0.011169434,0.24707031,0,0,0,0,0,0,0,0},{-0.014282227,-0.14941406,-0.03173828,-0.21289062,-0.20996094,0.06298828,-0.1484375,-0.084472656,0.056884766,-0.111816406,0.0009841919,-0.10839844,-0.057128906,-0.10449219,0.043701172,-0.048095703,0.060058594,-0.064453125,0.009155273,-0.2109375,-0.12109375,0.036132812,0.0077209473,0.019042969,0.041015625,-0.036132812,-0.08984375,0.0625,0.1640625,-0.08300781,-0.07763672,-0.057128906,-0.029418945,-0.11279297,-0.06347656,0.09082031,-0.17480469,-0.14355469,0.11816406,-0.19824219,-0.12890625,0.014526367,-0.07324219,0.16992188,-0.036132812,0.016113281,0.21679688,-0.037841797,0.07080078,0.05126953,-0.140625,-0.067871094,-0.13476562,-0.11376953,0.16210938,-0.31640625,-0.115722656,-0.056396484,-0.040039062,0.016601562,-0.044433594,-0.023925781,-0.063964844,-0.22460938,-0.13671875,-0.14453125,-0.26757812,-0.04663086,0.012451172,0.08496094,0.061523438,-0.12890625,0.096191406,0.13964844,-0.17285156,-0.11767578,0.421875,-0.07861328,0.05126953,0.055908203,-0.17382812,0.064941406,-0.11279297,0.10595703,0.005065918,0.028930664,-0.07421875,0.08642578,0.008666992,0.10205078,-0.17480469,0.05053711,-0.07324219,0.12890625,0.00075531006,-0.12207031,0.16210938,0.17675781,-0.017578125,0.06298828,-0.020019531,-0.119140625,0.07861328,-0.07421875,0.08105469,-0.09033203,0.0050354004,0.107421875,-0.052490234,0.1171875,-0.041992188,-0.24414062,0.068359375,0.008972168,-0.036376953,0.111816406,-0.1875,-0.08154297,-0.10449219,-0.19824219,0,0,0,0,0,0,0,0},{-0.030395508,-0.059326172,-0.051513672,-0.026367188,-0.17773438,-0.14941406,-0.12451172,-0.17089844,-0.043701172,0.04296875,0.011047363,-0.16992188,0.03466797,0.08984375,-0.09423828,-0.014038086,0.068359375,-0.019897461,-0.039794922,0.099121094,-0.24707031,-0.08642578,-0.13476562,0.013366699,0.041015625,-0.13867188,0.044189453,0.05102539,-0.13183594,-0.17480469,-0.13476562,-0.13867188,-0.22265625,0.0038452148,0.08642578,-0.05859375,-0.26757812,-0.13769531,-0.18164062,-0.18261719,-0.029418945,0.014465332,-0.011474609,-0.19628906,0.111328125,-0.16308594,0.00033569336,0.030151367,0.0058288574,0.049316406,0.13769531,-0.042236328,-0.12988281,-0.09277344,-0.15332031,-0.15722656,-0.09863281,-0.14160156,0.12890625,-0.08544922,-0.029174805,-0.18359375,-0.1484375,-0.07421875,-0.18066406,-0.15722656,-0.06933594,0.057128906,0.15722656,-0.12988281,-0.026977539,0.140625,-0.021362305,0.020141602,-0.23144531,0.052734375,0.0095825195,0.07324219,-0.055908203,-0.12011719,0.107421875,0.03955078,0.037353516,-0.22265625,0.076660156,-0.009460449,0.0013122559,-0.10839844,-0.15429688,0.019165039,-0.15039062,0.049316406,-0.026855469,0.09277344,0.03540039,-0.12890625,-0.2421875,-0.106933594,-0.11621094,-0.20898438,0.114746094,0.12792969,-0.111328125,-0.07421875,0.002670288,0.123535156,-0.171875,0.08251953,-0.07861328,0.026245117,-0.013977051,-0.1328125,-0.19628906,-0.12597656,0.06201172,-0.10107422,-0.15332031,0.19042969,-0.026367188,-0.0035247803,0,0,0,0,0,0,0,0},{-0.15527344,-0.068847656,-0.16015625,-0.13769531,-0.20410156,-0.07080078,0.11621094,0.07861328,-0.203125,-0.13476562,-0.13378906,-0.038330078,0.17578125,-0.087402344,-0.18554688,-0.068359375,0.009338379,0.07373047,-0.11230469,-0.0073547363,0.10498047,-0.14648438,-0.08984375,-0.114746094,-0.13769531,0.06689453,-0.083496094,-0.008422852,0.029907227,-0.16992188,0.15332031,-0.008666992,0.052490234,0.05078125,0.025756836,-0.20605469,0.016113281,-0.10546875,-0.18847656,-0.0069885254,0.13574219,-0.14355469,-0.20800781,0.123535156,-0.076660156,-0.048095703,-0.18945312,0.0052490234,-0.10058594,-0.15429688,0.080566406,-0.02758789,-0.18652344,-0.23339844,-0.111816406,-0.07763672,0.10986328,-0.075683594,0.16210938,-0.1953125,-0.041992188,-0.028808594,-0.080078125,0.083496094,0.107910156,0.103515625,-0.038330078,-0.0074768066,-0.107421875,0.0546875,-0.07421875,-0.17773438,0.11816406,-0.13085938,0.030395508,-0.03173828,0.01574707,0.07763672,-0.029541016,-0.10498047,-0.061279297,0.107421875,-0.08691406,-0.09277344,-0.13183594,-0.14355469,0.036376953,-0.0048217773,0.018676758,-0.12695312,-0.04296875,0.07128906,0.028686523,-0.045654297,-0.049316406,-0.056396484,-0.045654297,-0.12890625,0.052001953,-0.21386719,-0.018188477,-0.060302734,-0.07714844,-0.20117188,-0.12597656,0.03540039,-0.029174805,0.21484375,0.20019531,-0.04321289,0.13964844,-0.08691406,-0.013000488,-0.25976562,-0.20507812,-0.08300781,-0.09033203,0.08544922,0.1953125,-0.04638672,0,0,0,0,0,0,0,0},{0.043701172,0.03125,-0.18066406,-0.016479492,0.20996094,-0.088378906,0.05517578,-0.20800781,-0.15429688,-0.06689453,-0.15429688,0.12597656,-0.15234375,-0.031982422,0.024169922,0.111816406,0.18847656,-0.044921875,0.088378906,-0.071777344,-0.053710938,-0.07128906,0.02758789,-0.110839844,0.18164062,-0.09765625,-0.16503906,-0.125,-0.08544922,-0.111816406,-0.08984375,-0.23046875,-0.21484375,-0.23925781,-0.11669922,-0.05834961,-0.23730469,0.123535156,-0.13671875,-0.033691406,0.024780273,-0.022827148,-0.032958984,0.07763672,-0.1875,0.0016479492,-0.048828125,0.18164062,-0.03881836,-0.11425781,0.13769531,0.10839844,-0.21582031,0.2578125,0.12158203,-0.06347656,0.076660156,-0.14453125,0.067871094,-0.12451172,-0.08984375,0.013793945,0.072265625,0.17089844,-0.045654297,0.091308594,-0.08691406,0.061523438,0.104003906,-0.10449219,0.028442383,0.011779785,-0.07080078,-0.09667969,0.19042969,-0.125,-0.26367188,-0.15722656,0.052978516,0.16308594,-0.16796875,0.04272461,0.045166016,-0.1796875,0.03515625,-0.15625,-0.026367188,0.099609375,-0.24804688,0.17578125,-0.09277344,-0.037841797,-0.010925293,-0.031982422,-0.30859375,0.05053711,0.037353516,-0.033447266,-0.20703125,-0.40039062,0.039794922,-0.008422852,0.012451172,-0.016357422,0.030639648,0.10498047,-0.096191406,0.15332031,-0.016235352,0.14355469,0.099121094,0.19140625,-0.24414062,-0.38671875,0.05908203,0.026855469,0.119140625,-0.1953125,0.17773438,0.22753906,0,0,0,0,0,0,0,0},{-0.109375,-0.09277344,0.072265625,0.19628906,-0.18164062,-0.0013275146,0.13476562,-0.118652344,-0.14453125,0.04345703,-0.015625,0.004547119,-0.05126953,-0.18359375,0.01965332,-0.16796875,-0.0053100586,-0.15917969,-0.0859375,-0.018676758,-0.047607422,0.13964844,-0.018676758,0.007446289,0.006958008,0.109375,-0.06689453,0.0025634766,0.023925781,0.010009766,0.049560547,-0.14746094,0.1953125,-0.15722656,0.09375,0.05126953,-0.05078125,-0.13574219,0.080566406,0.050048828,0.19726562,0.059570312,0.045410156,0.100097656,-0.076660156,-0.05029297,-0.060058594,-0.092285156,-0.23339844,0.16894531,-0.15722656,-0.06591797,0.00046920776,-0.08691406,-0.008666992,0.059814453,-0.07128906,-0.07128906,-0.29492188,-0.044189453,-0.061523438,0.016845703,0.123535156,0.19433594,-0.049316406,-0.009155273,0.20214844,0.009338379,-0.28320312,-0.007873535,0.043945312,-0.087890625,-0.11376953,0.034423828,-0.01586914,-0.0546875,-0.16796875,0.030639648,0.02709961,0.13476562,-0.068847656,-0.030761719,-0.00043296814,0.033203125,-0.14648438,-0.053466797,0.29882812,-0.10546875,0.0062561035,0.05102539,0.041015625,-0.12597656,-0.24414062,0.15722656,0.016845703,-0.17089844,-0.171875,8.058548e-05,-0.13085938,0.06640625,0.11230469,0.15039062,-0.05493164,0.024902344,0.006286621,0.06225586,0.115234375,-0.13769531,-0.1640625,-0.05029297,-0.18945312,0.10546875,0.03173828,-0.016845703,0.17578125,-0.026977539,-0.171875,-0.052001953,-0.07910156,-0.052978516,0,0,0,0,0,0,0,0},{-0.20019531,0.080078125,0.04321289,0.15234375,-0.15332031,0.06347656,-0.21289062,-0.010681152,0.0040893555,-0.16992188,0.020629883,-0.02331543,-0.03857422,-0.012084961,0.06738281,-0.20996094,0.14257812,0.095214844,-0.30664062,0.0703125,-0.021484375,-0.14941406,0.10449219,-0.08691406,0.014709473,-0.18652344,0.15917969,0.09326172,0.18066406,0.008666992,0.08886719,0.118652344,-0.24707031,0.025268555,-0.18945312,-0.12890625,0.036621094,-0.14355469,-0.024169922,-0.13085938,0.15527344,-0.13964844,-0.15429688,0.0546875,0.17480469,0.08544922,-0.083496094,-0.14648438,-0.1796875,0.13964844,0.24609375,0.11035156,-0.14355469,0.067871094,0.12890625,0.13964844,0.048339844,0.26367188,0.07324219,-0.17773438,-0.10546875,-0.13964844,-0.07128906,0.16601562,-0.012756348,-0.20117188,0.099121094,-0.09423828,0.028564453,-0.021850586,-0.23632812,0.24902344,0.104003906,0.092285156,0.032226562,-0.32617188,-0.09277344,-0.23535156,-0.052490234,-0.15039062,-0.011779785,0.10253906,0.020507812,-0.25,0.076171875,-0.25195312,0.01361084,-0.057128906,-0.09277344,-0.048339844,0.059814453,-0.125,-0.15820312,0.044677734,-0.00982666,0.10986328,-0.045654297,-0.30273438,-0.008178711,0.06640625,0.028686523,-0.23632812,-0.05053711,-0.15234375,-0.07324219,-0.115722656,-0.13964844,0.040771484,0.10986328,-0.087890625,-0.08203125,0.07861328,-0.203125,-0.00793457,0.09423828,-0.17578125,-0.05102539,-0.15136719,-0.123046875,-0.06738281,0,0,0,0,0,0,0,0},{-0.111816406,-0.099121094,-0.08642578,0.111328125,-0.15332031,-0.123535156,-0.027709961,-0.16015625,0.056152344,0.025268555,0.05078125,0.122558594,-0.14453125,0.083984375,-0.018432617,-0.19433594,-0.029174805,0.036621094,-0.07763672,0.12988281,0.18554688,-0.064453125,0.10986328,0.12988281,0.0033111572,0.10839844,-0.064941406,-0.078125,0.032714844,0.14453125,-0.04248047,-0.10839844,0.012756348,-0.06347656,0.13183594,0.061523438,-0.17578125,-0.119140625,0.030395508,0.075683594,0.14257812,-0.05029297,-0.060302734,0.125,0.04345703,-0.02758789,0.07080078,-0.20703125,-0.07910156,0.15234375,-0.04321289,-0.104003906,0.09765625,0.041259766,0.049804688,-0.10839844,0.11230469,-0.17480469,-0.19238281,0.035888672,-0.22753906,-0.06347656,-0.07519531,-0.046142578,-0.13671875,0.08642578,0.27539062,0.0003490448,0.11669922,-0.122558594,-0.11230469,-0.19335938,-0.1015625,-0.14453125,0.08300781,-0.037597656,-0.068847656,-0.21875,0.060791016,-0.10205078,0.010009766,-0.0050964355,-0.19335938,-0.0625,-0.012451172,-0.075683594,-0.1484375,0.0020599365,0.11621094,-0.061767578,-0.20996094,-0.084472656,-0.12011719,0.1328125,-0.087402344,-0.12402344,-0.038085938,-0.10205078,-0.27148438,0.03881836,0.038330078,-0.15820312,0.10107422,-0.026855469,-0.18066406,-0.08642578,-0.075683594,0.13476562,-0.16113281,-0.13476562,0.09082031,-0.12890625,-0.09814453,-0.06738281,-0.032958984,0.15820312,-0.14160156,-0.14746094,-0.038085938,0.10449219,0,0,0,0,0,0,0,0},{0.03491211,-0.17871094,-0.12695312,-0.13085938,-0.12060547,-0.06689453,-0.006713867,-0.16503906,-0.08105469,-0.07470703,0.03857422,-0.041015625,0.118652344,0.03881836,0.10986328,-0.04296875,0.05883789,0.07861328,-0.013427734,0.025512695,0.000415802,0.104003906,0.051757812,-0.026855469,0.00023841858,-0.17578125,-0.08691406,-0.07421875,0.109375,-0.19238281,-0.1171875,-0.12695312,-0.017456055,0.045410156,-0.005584717,-0.23828125,-0.0022125244,-0.19433594,0.010864258,0.0016403198,-0.15332031,-0.16210938,-0.057617188,0.061035156,-0.12402344,-0.16308594,-0.2109375,-0.06347656,-0.14648438,0.12402344,-0.20117188,0.07470703,-0.078125,0.056396484,-0.041503906,0.022460938,0.016357422,-0.18652344,0.046875,0.032958984,-0.13671875,0.022705078,-0.1171875,-0.09375,-0.04638672,-0.12207031,0.060791016,0.05493164,-0.16308594,0.011962891,-0.012390137,-0.10253906,-0.10498047,0.104003906,0.13085938,-0.09277344,0.095214844,-0.11669922,0.06738281,-0.05493164,-0.023803711,-0.14453125,0.052978516,-0.14453125,-0.09472656,0.06591797,0.0703125,-0.08203125,-0.20996094,-0.06640625,0.080566406,-0.22949219,-0.056152344,-0.04321289,-0.052734375,0.06298828,-0.11425781,-0.02355957,-0.119140625,0.067871094,-0.12597656,-0.119140625,-0.28515625,-0.1015625,0.021606445,0.14648438,-0.12207031,-0.15429688,0.08203125,0.049316406,0.033935547,-0.04638672,-0.234375,-0.19335938,-0.122558594,0.05493164,-0.084472656,-0.115234375,0.053710938,0.0011672974,0,0,0,0,0,0,0,0},{0.03540039,-0.22070312,-0.006225586,0.12207031,-0.171875,-0.15429688,-0.140625,-0.13769531,-0.115722656,-0.10986328,-0.007873535,-0.13476562,-0.030395508,0.09814453,0.053710938,0.16894531,0.16113281,0.044677734,-0.1796875,-0.020141602,0.0057678223,0.099121094,-0.22851562,0.055908203,-0.14550781,-0.13476562,-0.013671875,0.020141602,-0.12695312,-0.17285156,0.027832031,0.056396484,-0.0047302246,-0.23144531,-0.18847656,-0.16601562,-0.071777344,0.10595703,0.111816406,0.083984375,-0.008728027,-0.17382812,-0.06982422,-0.23632812,0.115234375,-0.1328125,0.031982422,-0.036132812,0.0546875,-0.04638672,-0.060546875,-0.064941406,-0.0020141602,-0.013305664,0.072753906,0.051513672,-0.09716797,0.052490234,-0.16992188,-0.11669922,-0.14160156,-0.26757812,-0.061767578,-0.15039062,-0.009094238,0.104003906,-0.15722656,-0.15917969,-0.17578125,0.042236328,-0.12402344,-0.071777344,0.10644531,0.018310547,0.025146484,-0.022216797,-0.19140625,-0.28125,-0.22753906,-0.09423828,-0.009460449,0.096191406,-0.13183594,0.029663086,-0.19140625,0.014343262,0.025390625,0.083496094,0.046142578,-0.09765625,-0.106933594,-0.19042969,-0.11035156,-0.092285156,-0.016357422,0.20214844,-0.009033203,-0.1171875,0.091796875,0.032714844,0.033691406,-0.080078125,-0.20410156,-0.15136719,0.057373047,0.01586914,0.025268555,-0.16308594,0.15234375,-0.092285156,-0.053466797,-0.15039062,-0.016113281,-0.18652344,-0.125,-0.009094238,-0.05126953,-0.044921875,-0.07324219,-0.048339844,0,0,0,0,0,0,0,0},{-0.17773438,-0.027832031,-0.17871094,-0.076660156,0.03112793,-0.15722656,0.095214844,-0.12011719,-0.025024414,-0.045410156,0.003036499,-0.09472656,0.24511719,-0.06689453,-0.06640625,-0.08251953,-0.18457031,0.053466797,0.12695312,-0.030273438,-0.103027344,0.11230469,-0.095703125,-0.051513672,-0.041503906,-0.21484375,-0.080566406,0.05493164,0.005859375,-0.26171875,-0.096191406,-0.18554688,-0.12451172,-0.1953125,-0.075683594,0.005859375,0.005584717,-0.11230469,-0.18261719,-0.040283203,-0.032226562,0.100097656,-0.1796875,-0.10253906,0.024291992,-0.08105469,-0.109375,0.091308594,0.09082031,0.15917969,0.16308594,0.103027344,0.0040283203,0.016479492,-0.103027344,0.115722656,0.078125,-0.0146484375,0.21777344,0.21972656,-0.024536133,-0.091796875,0.10205078,0.21582031,0.056396484,-0.111328125,0.10253906,0.026855469,0.11621094,0.28320312,0.13476562,-0.087890625,-0.09326172,0.115722656,-0.11816406,-0.2421875,0.018554688,0.07080078,-0.020263672,-0.018188477,-0.05859375,-0.16113281,-0.057617188,0.13085938,0.13769531,0.12988281,-0.13867188,0.16699219,-0.13671875,-0.03466797,0.061767578,-0.13476562,-0.17773438,0.10595703,0.20703125,-0.16308594,-0.019165039,-0.15136719,0.06591797,-0.13476562,-0.0859375,0.18945312,-0.104003906,-0.1328125,0.08544922,-0.030517578,-0.14355469,-0.11767578,-0.00982666,-0.115722656,-0.16503906,0.125,0.14941406,-0.19140625,0.016113281,0.037597656,-0.0003376007,-0.17578125,-0.11816406,-0.03955078,0,0,0,0,0,0,0,0},{-0.012207031,-0.041748047,-0.018798828,0.11376953,0.092285156,0.12207031,-0.045166016,-0.2734375,-0.08300781,-0.28125,0.0119018555,-0.12988281,0.03466797,-0.08105469,-0.1640625,-0.1875,-0.22363281,0.017944336,0.15332031,0.07128906,-0.024414062,0.17871094,-0.16992188,-0.16699219,-0.0049438477,-0.056152344,-0.110839844,0.030029297,-0.12402344,-0.17382812,-0.110839844,-0.26367188,-0.0071105957,0.032470703,-0.19921875,-0.18652344,0.006713867,-0.008728027,-0.2890625,0.041992188,-0.10498047,0.010803223,0.01373291,0.22265625,-0.19238281,-0.19824219,-0.030883789,-0.008972168,-0.18945312,-0.106933594,0.19433594,0.09814453,-0.048583984,0.096191406,0.043945312,-0.12695312,-0.125,-0.06738281,0.119140625,-0.14746094,-0.37304688,-0.19824219,-0.114746094,-0.047607422,-0.09472656,0.19238281,0.0011367798,-0.2109375,-0.0035858154,-0.041992188,-0.0703125,-0.21386719,0.006225586,0.03515625,0.0066223145,0.049804688,-0.15234375,0.072753906,-0.061523438,-0.13769531,-0.19433594,-0.037841797,-0.083984375,-0.115722656,-0.080566406,0.029663086,0.022094727,0.0234375,-0.15332031,0.011108398,-0.1328125,-0.27148438,0.018188477,-0.075683594,-0.026000977,0.119628906,-0.15039062,0.11279297,-0.016601562,-0.20800781,0.032714844,-0.20019531,-0.040527344,-0.21582031,-0.22265625,-0.0007095337,-0.087402344,-0.115234375,-0.25585938,-0.061279297,-0.16992188,0.057128906,0.07763672,-0.13671875,-0.13769531,0.03564453,-0.15722656,0.051513672,0.12597656,-0.06933594,0,0,0,0,0,0,0,0},{0.056396484,-0.040527344,-0.30859375,-0.13574219,-0.034179688,0.06689453,-0.26757812,0.10595703,-0.18457031,-0.088378906,-0.041503906,-0.071777344,0.11376953,0.05053711,-0.123046875,-0.18554688,-0.15136719,0.16503906,-0.076660156,-0.1015625,-0.13378906,0.041503906,-0.10498047,-0.13085938,-0.07421875,-0.125,-0.20703125,-0.09326172,0.1875,-0.20507812,-0.023925781,-0.092285156,0.03930664,-0.33007812,-0.029785156,-0.0625,0.1015625,-0.0058288574,-0.24121094,0.13671875,-0.15722656,-0.109375,0.12109375,-0.044189453,0.0010910034,-0.15820312,0.01184082,-0.080078125,-0.053466797,-0.12011719,0.052246094,-0.07421875,0.052001953,0.020629883,0.05908203,0.11816406,0.018432617,-0.21972656,-0.111816406,-0.0703125,-0.14648438,-0.09277344,-0.06640625,-0.045410156,-0.020629883,-0.0047912598,0.05053711,0.1171875,-0.037597656,0.072753906,-0.27734375,-0.14453125,0.006652832,0.0003299713,-0.23242188,-0.02758789,0.076171875,0.0059814453,0.037353516,0.1328125,-0.19726562,-0.08203125,0.107910156,-0.071777344,-0.13378906,0.18847656,0.16894531,-0.21289062,-0.005432129,0.20800781,-0.07080078,-0.07910156,-0.15234375,-0.13964844,-0.114746094,-0.07519531,0.009460449,-0.07714844,0.06347656,-0.111328125,0.1953125,0.05859375,-0.30273438,-0.13867188,-0.15527344,-0.12158203,0.24316406,0.043945312,-0.026855469,-0.06347656,-0.21777344,-0.20800781,0.12695312,0.053710938,0.010498047,-0.11621094,0.114746094,-0.20214844,0.07080078,-0.024291992,0,0,0,0,0,0,0,0},{-0.061523438,-0.10449219,-0.068359375,-0.01965332,-0.13476562,0.00050735474,-0.119140625,-0.125,-0.075683594,-0.011230469,-0.010314941,-0.09423828,0.21582031,-0.18945312,0.17480469,-0.123046875,0.17089844,-0.1796875,-0.24609375,0.019042969,-0.13574219,-0.1640625,-0.100097656,0.06689453,0.002105713,-0.114746094,-0.027832031,-0.22070312,-0.08691406,0.009399414,-0.119628906,0.10839844,-0.103515625,-0.15625,-0.015075684,-0.35351562,-0.02331543,-0.12890625,-0.12792969,0.15722656,-0.05078125,-0.071777344,-0.17675781,-0.03881836,-0.09814453,0.083496094,-0.13085938,0.07519531,0.1640625,-0.03173828,0.09667969,-0.18652344,0.024658203,-0.18066406,0.15332031,0.03540039,-0.13867188,-0.106933594,0.026000977,0.119628906,0.040527344,-0.059814453,0.03149414,0.22851562,-0.16113281,0.08642578,-0.064453125,0.083984375,-0.084472656,0.13671875,0.13378906,0.022705078,0.12207031,-0.07080078,-0.0023498535,-0.34570312,-0.029785156,0.021484375,-0.04638672,0.19140625,-0.006378174,-0.109375,-0.057861328,-0.13183594,-0.040771484,-0.048095703,-0.16308594,0.05126953,0.076660156,0.041748047,0.12597656,-0.20800781,-0.011108398,-0.107910156,0.00051116943,0.20800781,0.037841797,-0.10058594,0.1484375,-0.17089844,-0.122558594,-0.096191406,-0.15625,-0.31445312,-0.20800781,-0.10644531,0.08154297,-0.16113281,0.06689453,-0.06347656,-0.16113281,-0.13183594,-0.12060547,-0.07080078,-0.12792969,0.15625,0.045166016,0.13378906,0.053955078,-0.0067443848,0,0,0,0,0,0,0,0},{-0.17578125,-0.06542969,-0.024291992,-0.09667969,-0.080078125,-0.23144531,-0.071777344,-0.044433594,0.0073242188,-0.20703125,-0.17480469,0.059570312,0.035888672,-0.16015625,0.05834961,-0.064453125,0.005218506,0.08544922,0.017822266,-0.00390625,-0.17089844,-0.13574219,-0.19824219,-0.12695312,-0.13085938,-0.10839844,-0.005432129,-0.17382812,-0.1953125,-0.20214844,0.005432129,-0.12597656,0.032958984,-0.21875,-0.014770508,-0.17480469,0.0030212402,0.06225586,0.0546875,0.08251953,-0.15917969,-0.13867188,0.052246094,0.07714844,-0.119140625,0.03173828,-0.20605469,-0.107910156,0.10253906,-0.1015625,-0.13085938,0.04272461,-0.0037841797,-0.15234375,0.095703125,-0.06689453,0.10839844,0.052246094,0.016235352,-0.0859375,-0.16699219,-0.111816406,-0.078125,0.017089844,0.061767578,-0.06298828,-0.2109375,-0.14355469,0.064941406,-0.099609375,-0.103515625,-0.11230469,-0.0703125,-0.041015625,0.07421875,-0.123535156,-0.06982422,-0.20996094,0.022949219,-0.047851562,0.06738281,-0.14746094,-0.076660156,-0.029174805,0.002243042,-0.13183594,0.091796875,0.014892578,0.006011963,0.010559082,-0.024291992,-0.079589844,-0.040771484,0.043701172,-0.17773438,0.057128906,-0.027709961,-0.030639648,-0.20703125,-0.17578125,-0.15917969,-0.064941406,-0.21582031,-0.12597656,-0.08691406,-0.048583984,-0.19238281,-0.08691406,-0.025634766,0.005279541,-0.045654297,0.060791016,-0.020141602,-0.009155273,-0.123046875,0.057861328,0.025024414,-0.044677734,0.10058594,-0.003967285,0,0,0,0,0,0,0,0},{-0.08642578,-0.034423828,-0.043701172,-0.03515625,-0.13671875,0.08935547,-0.09765625,-0.060791016,-0.24023438,0.040771484,-0.27148438,0.00075531006,-0.03564453,0.014404297,-0.12597656,-0.123046875,-0.13769531,0.04272461,-0.11669922,0.14160156,-0.0703125,-0.11425781,-0.16113281,-0.09375,0.12109375,0.010314941,-0.10253906,-0.029907227,-0.123535156,-0.21777344,0.12451172,-0.07910156,0.020019531,-0.11425781,-0.09423828,-0.12890625,0.088378906,0.036621094,0.057373047,0.03881836,-0.17871094,-0.20996094,-0.16210938,-0.07470703,0.01373291,-0.08251953,0.1953125,-0.04321289,0.014465332,0.087402344,0.19042969,-0.20019531,0.080566406,-0.21972656,-0.13964844,0.02709961,0.11328125,-0.064453125,0.017456055,-0.17480469,-0.018554688,-0.27148438,0.0028686523,-0.12890625,-0.056884766,-0.087890625,-0.010437012,-0.0099487305,-0.118652344,0.08984375,-0.26171875,-0.053222656,-0.030029297,-0.038085938,-0.008422852,-0.08300781,-0.11035156,-0.22460938,-0.19628906,-0.042236328,-0.032226562,0.02368164,-0.12695312,-0.1875,-0.17578125,-0.010131836,-0.045898438,-0.068359375,0.05908203,-0.17480469,-0.12890625,-0.31835938,-0.2265625,-0.122558594,-0.067871094,-0.14160156,0.01574707,-0.18261719,0.15625,0.10253906,-0.08251953,0.015197754,-0.024291992,-0.16308594,-0.096191406,0.100097656,-0.12060547,0.053955078,-0.21386719,-0.072265625,-0.1875,0.0138549805,-0.10986328,-0.25,-0.007537842,0.13964844,-0.037353516,-0.17089844,-0.009460449,0.14648438,0,0,0,0,0,0,0,0},{0.1953125,-0.045898438,-0.13964844,0.08691406,0.064453125,-0.12597656,-0.28320312,0.018676758,-0.1875,-0.068359375,-0.32226562,-0.17285156,-0.10107422,0.08203125,0.030151367,-0.18847656,0.16308594,0.07861328,0.026611328,0.17675781,-0.03149414,-0.22070312,0.09375,-0.060791016,0.008728027,-0.08154297,-0.09667969,-0.04272461,-0.055419922,-0.08935547,0.02722168,-0.18652344,0.01940918,-0.071777344,0.084472656,-0.19042969,-0.09082031,-0.063964844,-0.037597656,0.23730469,0.020385742,0.02331543,-0.18261719,0.080078125,0.0859375,-0.2265625,-0.22167969,-0.032714844,-0.1796875,-0.00579834,-0.08984375,0.11376953,0.025024414,0.05444336,0.021484375,-0.08935547,-0.0059814453,0.18457031,0.025268555,0.068847656,0.13183594,-0.12792969,0.076171875,-0.05419922,0.084472656,0.02368164,0.07910156,-0.08251953,0.040771484,0.032226562,-0.020141602,-0.009216309,0.092285156,-0.18359375,-0.07324219,-0.16992188,-0.09033203,-0.115234375,0.10449219,-0.017333984,0.043945312,-0.053710938,0.020385742,-0.099609375,0.13378906,0.13476562,-0.15625,-0.016967773,-0.23339844,0.00045204163,-0.09667969,-0.12695312,-0.18847656,0.119140625,0.0079956055,0.20410156,-0.18261719,-0.17675781,-0.16601562,0.0016326904,-0.22949219,0.010559082,-0.06738281,0.00079345703,-0.052490234,0.13671875,-0.0703125,-0.076171875,-0.14355469,-0.025024414,0.096191406,-0.08886719,-0.1328125,-0.34960938,-0.043945312,-0.20605469,0.115234375,0.0625,-0.015319824,-0.08984375,0,0,0,0,0,0,0,0},{0.08642578,-0.07080078,-0.123046875,-0.123046875,0.20996094,-0.03515625,0.023803711,-0.18945312,-0.14257812,-0.037841797,-0.10205078,0.015136719,0.09375,-0.1640625,0.17773438,0.080078125,-0.05102539,-0.16699219,-0.08886719,-0.09814453,0.013244629,-0.040039062,-0.099121094,-0.23730469,0.047607422,-0.09667969,0.026245117,-0.1484375,0.119628906,-0.028564453,-0.12792969,0.09277344,0.068359375,-0.27539062,0.10205078,-0.14941406,0.084472656,-0.063964844,-0.19726562,-0.16992188,0.15332031,-0.22753906,-0.123535156,-0.088378906,-0.18261719,-0.1640625,-0.25390625,-0.027709961,-0.07910156,0.16894531,0.10839844,0.012268066,0.09863281,-0.14257812,-0.013916016,-0.08300781,0.005706787,-0.104003906,0.09082031,-0.118652344,0.12792969,-0.11425781,0.18945312,0.0043029785,-0.17382812,0.032226562,0.14550781,-0.048095703,-0.025878906,0.06298828,-0.04321289,-0.22363281,0.088378906,0.005126953,0.16503906,-0.07324219,0.10644531,-0.119628906,0.056152344,0.122558594,-0.26953125,-0.07373047,0.29492188,-0.22265625,0.08496094,-0.19824219,-0.103515625,-0.033203125,0.09082031,-0.20117188,0.056640625,-0.016845703,-0.125,0.04321289,-0.1640625,-0.18945312,-0.028686523,-0.16015625,-0.091796875,-0.18261719,0.034423828,-0.22167969,-0.099609375,-0.26367188,0.08300781,0.21679688,-0.11669922,-0.013305664,-0.15820312,0.03149414,-0.03125,-0.11328125,-0.16015625,-0.19140625,0.024780273,-0.056884766,-0.048828125,0.18261719,0.044921875,-0.03173828,0,0,0,0,0,0,0,0},{-0.1953125,-0.20507812,-0.08300781,-0.052490234,0.13378906,0.11035156,-0.026367188,0.0049743652,-0.08154297,-0.052246094,-0.11328125,0.057617188,-0.018676758,-0.20410156,-0.021118164,-0.26367188,0.234375,0.08544922,-0.30273438,-0.13964844,0.08300781,-0.07080078,-0.099609375,0.027709961,0.18945312,-0.23632812,-0.07519531,0.06298828,-0.061279297,0.014953613,-0.11328125,0.09277344,-0.0390625,-0.114746094,0.001373291,-0.12890625,0.057373047,0.19140625,0.104003906,0.22265625,-0.037841797,-0.111328125,0.02746582,0.09277344,-0.13378906,-0.0009841919,-0.21386719,-0.03955078,-0.0008239746,0.08154297,-0.012451172,-0.14453125,-0.09863281,-0.103027344,0.14355469,-0.12695312,0.095703125,-0.10498047,-0.051757812,-0.18945312,0.087402344,-0.31054688,-0.21289062,0.11035156,-0.046142578,0.040527344,-0.008972168,0.20410156,-0.014282227,0.024169922,-0.046875,0.06933594,-0.0059509277,0.0546875,-0.10253906,-0.18066406,-0.15332031,-0.08105469,-0.030273438,-0.012817383,0.060058594,-0.1171875,-0.05517578,-0.13964844,-0.095703125,-0.07519531,0.024902344,0.18847656,-0.037597656,0.03955078,-0.037353516,0.05493164,-0.21484375,-0.083496094,-0.12988281,0.09814453,-0.08496094,-0.15625,0.20507812,-0.013793945,-0.002670288,-0.20996094,-0.16113281,-0.08691406,-0.05053711,0.10058594,-0.044677734,-0.064453125,-0.083984375,-0.14453125,0.104003906,0.09814453,-0.015625,-0.09667969,0.080566406,-0.14355469,-0.0023040771,-0.15136719,-0.15820312,-0.11425781,0,0,0,0,0,0,0,0},{-0.015625,-0.29296875,-0.18261719,0.16796875,-0.076660156,0.16503906,0.02709961,0.05444336,0.002243042,-0.13769531,-0.15136719,0.025024414,0.095214844,-0.06982422,-0.09033203,0.088378906,0.00037384033,-0.096191406,0.08886719,0.07324219,-0.14257812,-0.234375,-0.10546875,0.080566406,-0.040283203,-0.3046875,-0.1328125,-0.017211914,0.24902344,-0.045654297,-0.06591797,-0.14355469,-0.107910156,-0.057373047,0.12011719,0.10205078,-0.103515625,-0.010253906,-0.041503906,-0.04296875,-0.08886719,0.045898438,-0.09082031,0.17089844,0.10595703,0.064453125,-0.080078125,-0.10253906,-0.07470703,-0.06640625,-0.18554688,0.19335938,-0.23535156,0.16601562,0.24707031,0.122558594,0.1875,-0.011230469,-0.024047852,0.20214844,-0.036865234,0.080078125,-0.07470703,0.0859375,-0.22851562,0.012207031,0.011169434,0.22363281,0.026977539,-0.033447266,-0.22070312,-0.026000977,-0.028808594,-0.0625,-0.030395508,-0.10253906,0.11035156,-0.12158203,0.06738281,0.14257812,-0.012817383,0.0027618408,0.012878418,-0.037597656,-0.043701172,-0.29296875,-0.017578125,-0.2421875,-0.084472656,0.13183594,0.02355957,-0.27734375,-0.22167969,0.103515625,0.06933594,-0.10253906,-0.020507812,0.16601562,-0.012817383,-0.18261719,-0.1328125,-0.020507812,-0.18554688,-0.103515625,-0.08496094,0.17871094,0.10546875,0.026367188,0.060546875,0.036132812,-0.091796875,-0.048828125,-0.072753906,0.03881836,-0.072265625,0.06689453,-0.032226562,0.026977539,-0.20605469,-0.16699219,0,0,0,0,0,0,0,0},{-0.019165039,-0.056884766,-0.06347656,-0.12109375,-0.022827148,-0.0058288574,0.10595703,-0.100097656,-0.083496094,-0.24902344,-0.06347656,0.10058594,-0.013793945,0.18652344,-0.12207031,0.084472656,0.03881836,0.11376953,-0.076660156,-0.123535156,0.092285156,0.11816406,0.01940918,0.095703125,0.064941406,-0.10595703,-0.09423828,-0.03515625,0.0069885254,-0.19921875,0.14257812,-0.023925781,-0.14648438,-0.021850586,-0.16601562,-0.12890625,-0.140625,0.013793945,-0.018554688,0.1015625,-0.052734375,-0.0859375,-0.092285156,-0.020507812,0.013793945,-0.15722656,0.00793457,0.052490234,0.19335938,0.03515625,-0.12011719,0.007598877,0.041748047,-0.23144531,0.05883789,-0.18457031,0.052001953,-0.026000977,-0.072265625,-0.24707031,0.038085938,0.014465332,-0.010314941,-0.19824219,-0.09863281,-0.010986328,0.044189453,-0.11425781,-0.080566406,-0.014343262,-0.10498047,0.08886719,0.109375,-0.17089844,0.0022125244,-0.20898438,0.030517578,0.027954102,0.048095703,0.07373047,0.15234375,0.09277344,0.04248047,0.0703125,0.022094727,-0.014465332,-0.19042969,-0.123046875,-0.05908203,-0.06347656,-0.096191406,-0.33984375,-0.12402344,-0.020141602,0.013977051,-0.15429688,-0.13671875,0.064941406,0.10449219,-0.22460938,-0.020996094,-0.036865234,-0.071777344,-0.14746094,-0.18554688,0.12597656,0.10107422,-0.06591797,-0.13671875,-0.032226562,-0.14355469,0.18359375,-0.078125,-0.20703125,-0.15136719,0.203125,0.16308594,0.021118164,0.12109375,-0.067871094,0,0,0,0,0,0,0,0},{0.107910156,0.07519531,-0.12988281,0.107421875,0.10498047,-0.14648438,-0.19921875,0.06689453,0.083496094,-0.122558594,-0.059570312,-0.07080078,-0.037109375,0.11035156,0.15234375,0.034423828,-0.26953125,-0.011291504,-0.29296875,0.051757812,0.064941406,-0.23828125,-0.17773438,0.05029297,-0.032226562,-0.03930664,-0.119140625,-0.14941406,-0.09765625,-0.099609375,0.02746582,-0.072265625,-0.05102539,-0.08984375,-0.19335938,0.06640625,-0.078125,0.018066406,-0.15332031,-0.111328125,0.046875,-0.013183594,0.03857422,-0.14746094,-0.021850586,0.07763672,-0.059326172,-0.025024414,-0.063964844,-0.045410156,-0.16796875,0.056884766,-0.114746094,-0.12792969,-0.0099487305,0.037597656,-0.083496094,0.009033203,0.027832031,-0.17382812,-0.04345703,-0.20019531,0.048828125,0.071777344,0.05493164,-0.008300781,0.11035156,-0.026855469,0.11279297,0.09863281,-0.087890625,-0.25585938,0.18847656,0.035888672,-0.07861328,-0.17773438,-0.15722656,-0.048339844,0.03466797,0.17089844,0.1171875,0.118652344,-0.17480469,-0.17578125,-0.107910156,0.04345703,-0.10253906,0.03930664,0.13867188,-0.04321289,-0.017578125,-0.11376953,-0.33984375,-0.1640625,-0.115234375,-0.0060424805,0.07519531,0.06640625,-0.05859375,-0.028564453,-0.03149414,0.15917969,-0.04736328,-0.06738281,-0.15136719,-0.08300781,0.02734375,-0.003692627,-0.123535156,0.17089844,0.050048828,-0.12988281,-0.12988281,-0.047607422,-0.115722656,0.068847656,-0.020629883,-0.119140625,-0.044921875,0.0006942749,0,0,0,0,0,0,0,0},{-0.091796875,-0.09033203,-0.028320312,0.123046875,-0.016357422,0.0234375,-0.19433594,0.037109375,0.030517578,-0.15625,-0.071777344,0.005859375,-0.11621094,0.13964844,0.02734375,0.026733398,0.14941406,0.20214844,0.17675781,0.021484375,0.107910156,-0.10253906,-0.06298828,0.20214844,0.12695312,0.030517578,-0.16894531,-0.044921875,0.09472656,-0.052734375,-0.06298828,0.053466797,-0.03466797,0.033447266,0.15332031,0.052246094,-0.0071411133,-0.123535156,-0.14550781,-0.27734375,0.047607422,0.021606445,0.08886719,0.10595703,0.19238281,0.06591797,-0.103027344,-0.12792969,0.08935547,0.07861328,0.080078125,-0.11816406,-0.027709961,-0.017456055,-0.16699219,0.0025482178,0.36914062,0.20996094,0.072265625,-0.024169922,0.041259766,0.11230469,0.072753906,0.10253906,0.18945312,-0.19238281,0.044433594,-0.26171875,-0.024780273,0.1328125,0.091308594,-0.052978516,-0.18554688,0.037841797,-0.042236328,-0.022460938,-0.16601562,-0.015991211,0.08300781,0.08203125,0.21191406,0.0055236816,0.059814453,-0.083984375,0.15722656,0.09472656,-0.008972168,0.064453125,0.11328125,-0.025756836,0.020629883,-0.041503906,-0.16308594,0.10546875,-0.15039062,0.06591797,-0.07910156,-0.026855469,0.015014648,-0.050048828,-0.004547119,-0.042236328,-0.16113281,-0.000579834,0.115234375,0.0016555786,-0.08642578,0.044189453,-0.10253906,-0.07128906,-0.012207031,-0.1875,0.15039062,-0.048828125,0.037109375,-0.075683594,-0.02709961,0.18261719,0.18359375,0.05078125,0,0,0,0,0,0,0,0},{0.067871094,0.057373047,-0.064941406,-0.14941406,0.038085938,-0.12060547,0.014160156,-0.029174805,0.0025939941,0.016235352,0.075683594,0.046142578,-0.07470703,0.15429688,-0.02331543,-0.008972168,0.072265625,-0.22265625,0.04296875,-0.099609375,-0.091796875,-0.12597656,-0.07470703,-0.0029144287,0.018432617,0.05859375,0.023071289,0.06982422,-0.1171875,0.005645752,-0.07373047,-0.02331543,-0.060302734,-0.071777344,-0.19042969,-0.16796875,-0.18261719,0.15234375,-0.07128906,0.10595703,0.008728027,-0.028198242,0.20410156,-0.11230469,-0.08544922,-0.024169922,-0.13183594,-0.15820312,0.171875,-0.125,-0.020874023,-0.123046875,-0.15917969,-0.21679688,-0.07519531,0.13867188,0.07080078,-0.037353516,-0.029907227,-0.083496094,0.16796875,-0.11621094,-0.084472656,-0.1953125,-0.0119018555,-0.06591797,0.07324219,-0.099121094,0.012512207,0.10253906,-0.20214844,-0.020019531,-0.076171875,-0.13867188,-0.032226562,0.13378906,0.22070312,-0.1640625,-0.25585938,-0.16113281,-0.03540039,-0.1484375,-0.064453125,-0.006958008,-0.0078125,-0.12597656,0.010070801,-0.010437012,-0.13867188,0.029174805,0.019042969,-0.31445312,-0.15234375,0.20605469,0.103515625,0.17285156,-0.020507812,-0.027709961,-0.1640625,-0.024658203,-0.13769531,-0.088378906,-0.35546875,0.012817383,-0.043945312,-0.018310547,-0.017211914,-0.0063476562,0.10205078,-0.08203125,-0.07714844,-0.045654297,-0.010864258,0.047851562,-0.21679688,-0.045898438,0.028320312,0.026123047,-0.20019531,-0.19433594,0,0,0,0,0,0,0,0},{0.045898438,-0.26367188,0.03466797,-0.11425781,0.041503906,-0.06542969,-0.04663086,-0.21582031,0.107910156,-0.041992188,-0.07373047,-0.107421875,-0.18554688,0.049316406,-0.2734375,-0.28125,-0.38085938,-0.047851562,-0.063964844,0.12890625,0.017578125,-0.08935547,-0.007873535,0.11669922,0.036865234,-0.08251953,-0.056884766,0.063964844,0.13085938,-0.18457031,0.0859375,-0.2421875,0.20996094,-0.10888672,-0.083984375,0.11328125,0.05419922,-0.1015625,-0.1328125,-0.09033203,-0.38085938,0.008117676,-0.140625,-0.1328125,-0.060058594,-0.18359375,-0.026245117,0.0134887695,0.0025787354,-0.005706787,0.031982422,0.056396484,-0.23730469,-0.13378906,-0.029663086,-0.00592041,0.23632812,-0.2578125,-0.15234375,-0.29296875,-0.34960938,-0.08544922,0.10253906,0.039794922,-0.20703125,-0.115234375,0.118652344,-0.107910156,-0.04296875,0.052978516,-0.049560547,-0.12597656,0.030273438,0.045654297,-0.06347656,-0.22460938,0.08886719,-0.19921875,-0.17382812,-0.140625,-0.057861328,0.06298828,-0.04248047,0.099609375,-0.107910156,0.1171875,0.16503906,-0.515625,-0.18261719,-0.09033203,-0.08105469,-0.114746094,-0.107910156,0.087890625,-0.18359375,0.068847656,-0.09326172,-0.0859375,-0.028686523,-0.07324219,0.15234375,-0.13476562,-0.06591797,-0.009460449,-0.051513672,0.14550781,0.03930664,0.099609375,-0.06201172,-0.18261719,0.034423828,0.111816406,-0.11767578,-0.03857422,-0.08691406,0.09814453,-0.03466797,0.0070495605,0.096191406,-0.056884766,0,0,0,0,0,0,0,0},{-0.083984375,-0.34179688,-0.022949219,0.10205078,-0.028320312,-0.11767578,-0.2265625,0.024536133,0.18554688,-0.08984375,-0.30664062,-0.140625,-0.17871094,0.06347656,-0.041992188,-0.13476562,-0.0046081543,0.060791016,0.06542969,-0.265625,-0.100097656,0.080566406,-0.29296875,-0.22265625,-0.11767578,-0.12597656,-0.22753906,-0.008483887,-0.053222656,-0.05126953,0.017578125,0.030639648,-0.12011719,-0.041015625,-0.16992188,-0.07519531,-0.028686523,-0.064453125,-0.033203125,0.09277344,0.019042969,-0.15527344,0.21289062,0.017822266,0.03857422,-0.13769531,-0.13769531,-0.27539062,-0.17089844,-0.05834961,0.0047302246,0.016113281,-0.056640625,0.107910156,-0.32421875,0.05444336,0.09423828,-0.028442383,-0.03112793,-0.10986328,0.15234375,0.10595703,0.04296875,-0.14355469,-0.052734375,0.035888672,-0.010681152,0.05419922,-0.15429688,-0.11669922,-0.091796875,0.107910156,-0.060058594,-0.07910156,-0.16113281,-0.07324219,0.055664062,-0.21484375,-0.053955078,-0.10839844,0.061523438,-0.096191406,0.0625,0.050048828,-0.20019531,0.08691406,0.012207031,0.08496094,0.05078125,0.09472656,-0.2109375,-0.06982422,-0.055419922,-0.055419922,-0.111816406,-0.23339844,-0.060546875,-0.17382812,-0.051513672,-0.017211914,0.0002822876,-0.04321289,-0.23632812,-0.27539062,-0.0051574707,0.13671875,-0.16210938,-0.06542969,0.03930664,-0.10644531,-0.103027344,-0.12109375,-0.005706787,-0.076171875,-0.03112793,-0.12597656,0.14746094,0.022460938,0.029174805,-0.083984375,0,0,0,0,0,0,0,0},{-0.125,0.067871094,-0.20214844,-0.111328125,0.114746094,0.028198242,-0.24023438,-0.08300781,0.13671875,-0.23339844,-0.103515625,-0.034423828,0.056640625,0.12060547,-0.19140625,0.10253906,0.012512207,0.0045166016,0.05834961,0.08984375,0.037597656,-0.064453125,-0.016235352,-0.1171875,-0.019165039,-0.087890625,-0.12109375,-0.15820312,-0.10644531,-0.08251953,-0.115722656,0.30859375,0.19238281,0.044433594,0.067871094,-0.34765625,-0.12792969,0.22460938,-0.12402344,-0.17871094,0.1640625,-0.072753906,-0.06689453,0.19726562,-0.049072266,-0.17089844,0.16113281,0.057861328,0.16796875,-0.09277344,-0.11621094,-0.061767578,0.033203125,0.049072266,-0.06542969,-0.15820312,0.034179688,-0.0126953125,0.10986328,0.037597656,0.029052734,0.020629883,-0.033447266,0.00091171265,0.018798828,-0.12451172,0.012023926,-0.037109375,-0.047607422,0.06640625,0.034423828,0.10449219,0.024047852,-0.031982422,-0.083984375,-0.087890625,-0.055664062,-0.19042969,0.057861328,-0.044433594,0.07373047,-0.041015625,-0.095703125,-0.13476562,-0.11376953,0.091308594,-0.15332031,-0.091308594,0.08154297,-0.0003414154,0.01940918,0.015319824,-0.052978516,0.061523438,-0.1484375,-0.18261719,0.09863281,-0.28710938,0.23828125,-0.27734375,-0.265625,-0.020629883,-0.18164062,-0.10253906,-0.20898438,-0.0045166016,-0.04638672,-0.080566406,0.05126953,-0.068359375,0.03515625,0.03173828,0.046875,-0.23730469,-0.12597656,0.07910156,-0.14160156,0.103515625,-0.14453125,-0.016113281,0,0,0,0,0,0,0,0},{-0.15820312,-0.06982422,-0.171875,0.1640625,-0.1328125,0.033447266,-0.016601562,-0.04736328,-0.15722656,-0.059814453,-0.25195312,-0.03466797,-0.15917969,-0.13378906,-0.0859375,-0.18945312,-0.16113281,-0.16699219,-0.234375,-0.14257812,-0.041992188,-0.075683594,0.018188477,-0.026489258,-0.02758789,-0.17578125,-0.12695312,0.15234375,-0.107910156,-0.09472656,-0.10839844,0.11376953,-0.1796875,0.037109375,0.06982422,-0.15625,0.068359375,0.022705078,-0.12402344,0.035888672,0.111328125,0.12792969,0.029296875,0.071777344,0.11035156,0.06640625,0.057128906,-0.040283203,-0.040527344,0.0390625,-0.053466797,-0.10449219,-0.08105469,-0.15332031,-0.091308594,-0.040771484,-0.079589844,-0.12060547,0.038330078,-0.08886719,0.08886719,-0.071777344,0.005645752,0.17382812,0.14550781,-0.07324219,0.0115356445,0.19238281,-0.053466797,-0.083496094,-0.18164062,-0.17675781,0.033935547,-0.013977051,-0.15039062,-0.053955078,0.041015625,0.07080078,-0.16210938,0.076660156,-0.08203125,-0.00390625,0.024658203,-0.016113281,0.049316406,-0.06201172,-0.0703125,-0.061279297,-0.053710938,-0.1796875,-0.030273438,-0.0859375,-0.13085938,0.068359375,-0.14257812,-0.045654297,0.0079956055,-0.14453125,0.096191406,0.043945312,0.08105469,0.07519531,-0.15136719,-0.26171875,-0.15332031,-0.048339844,0.0032196045,-0.02368164,-0.056884766,-0.18457031,-0.13183594,0.056640625,-0.022827148,-0.07421875,0.09716797,0.08935547,0.07324219,-0.049560547,-0.14355469,0.08203125,0,0,0,0,0,0,0,0},{0.037597656,-0.16210938,-0.21289062,0.015563965,0.13769531,0.06738281,0.022338867,0.030517578,-0.06347656,-0.15332031,-0.060058594,0.08105469,0.095703125,0.005493164,0.06738281,-0.14941406,-0.13964844,-0.0390625,-0.20019531,-0.1171875,-0.20117188,0.32226562,-0.18652344,0.1640625,0.037597656,-0.100097656,-0.04321289,-0.16015625,-0.10058594,0.045654297,0.013549805,-0.122558594,0.045410156,-0.16503906,-0.028442383,-0.203125,0.046142578,0.16894531,0.01574707,-0.0060424805,0.022094727,-0.30859375,-0.028808594,-0.0049438477,-0.15820312,-0.0047912598,-0.10253906,-0.088378906,-0.013916016,-0.022583008,-0.04248047,0.19628906,0.055419922,0.016357422,-0.19433594,0.0029907227,-0.0071105957,0.029052734,-0.27539062,-0.037109375,0.15527344,0.016479492,-0.15234375,0.06591797,-0.12597656,0.061767578,-0.061279297,-0.18457031,-0.03149414,-0.12402344,-0.080078125,-0.18652344,-0.08544922,-0.22753906,0.029785156,0.071777344,0.080078125,0.10986328,-0.14941406,0.109375,0.20019531,-0.036865234,0.061279297,0.068359375,0.06689453,-0.06738281,-0.024047852,0.067871094,-0.21679688,-0.0020599365,0.041992188,-0.16015625,-0.008422852,-0.15625,-0.052001953,0.034423828,-0.078125,-0.10595703,-0.12988281,-0.0126953125,-0.16601562,-0.045654297,0.014038086,-0.119140625,-0.16699219,-0.12597656,-0.10595703,-0.010986328,-0.0005950928,0.043701172,0.060546875,0.17089844,-0.15136719,-0.18554688,-0.14453125,-0.09765625,0.12402344,0.045898438,0.08642578,-0.014404297,0,0,0,0,0,0,0,0},{-0.16699219,-0.006500244,-0.16113281,0.00793457,0.025878906,-0.0703125,0.15039062,-0.0023956299,-0.24609375,-0.30078125,-0.25585938,-0.04345703,-0.014526367,-0.12988281,-0.12451172,-0.044677734,-0.03540039,0.07373047,0.1875,0.0032348633,0.14941406,-0.09033203,0.06689453,0.18164062,0.21582031,-0.072753906,-0.08203125,0.119140625,-0.09277344,0.0066223145,-0.030029297,0.09375,-0.035888672,0.037353516,-0.0069885254,-0.10595703,-0.02734375,-0.17578125,0.05883789,0.024902344,0.027709961,-0.20800781,-0.24023438,0.11816406,0.118652344,-0.14550781,-0.11816406,0.0016326904,0.072265625,-0.14746094,0.04663086,0.14550781,0.019042969,-0.016723633,-0.25390625,-0.014221191,-0.08984375,0.23828125,-0.16113281,-0.24804688,0.044921875,-0.083496094,-0.10986328,-0.084472656,0.060058594,0.041992188,0.01977539,-0.1484375,-0.07763672,0.12402344,-0.08984375,0.06738281,-0.080566406,0.050048828,0.23730469,-0.18945312,0.092285156,-0.08154297,0.007537842,0.0703125,0.11328125,0.14941406,0.10986328,-0.060791016,0.10253906,-0.24707031,-0.14550781,-0.29492188,0.030883789,0.19628906,-0.30664062,-0.18457031,-0.07373047,-0.060058594,0.06689453,0.05810547,-0.05419922,-0.17285156,0.05493164,-0.13476562,0.08642578,-0.17773438,-0.35742188,-0.2734375,0.02368164,-0.1640625,0.11669922,0.17285156,0.053466797,-0.064941406,0.23632812,-0.328125,0.18457031,-0.1328125,0.061767578,0.022460938,-0.060546875,-0.14257812,0.052490234,0.003479004,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; #endif static elem_t fc_4_out[128][64] row_align(1); static const struct FcParams fc_4_params = {.batch_size=4, .in_features=120, .out_features=84, .bias=0, .output_scale=8, .I=128, .J=64, .K=128}; #ifdef ELEM_T_IS_BFLOAT static const float fc_5_w_float[64][128] row_align(1) = {{0.001953125,-0.008911133,0.06689453,0.05834961,-0.080078125,0.013916016,-0.18164062,0.12792969,0.05883789,-0.0049438477,0.15136719,0.08203125,0.21386719,0.20605469,-0.057128906,0.16503906,0.11767578,0.06225586,0.043701172,0.17773438,0.12988281,-0.016479492,-0.19140625,0.14257812,-0.17675781,0.13378906,-0.025756836,-0.016845703,0.022583008,0.009399414,-0.036621094,-0.055664062,0.14453125,-0.009216309,0.14453125,0.12890625,-0.084472656,-0.064453125,-0.018798828,0.22167969,-0.12695312,0.10644531,0.16113281,-0.07470703,0.14746094,0.10253906,0.03564453,-0.0032348633,-0.26367188,0.16015625,-0.011657715,-0.01574707,-0.13964844,0.072265625,-0.10888672,-0.049560547,-0.00044822693,0.09277344,0.11425781,-0.10644531,0.16894531,0.11621094,0.07714844,-0.025390625,-0.021118164,-0.29882812,-0.08300781,-0.08935547,-0.12597656,-0.045166016,-0.067871094,0.103515625,-0.14550781,-0.014221191,-0.18261719,0.026611328,0.075683594,-0.00491333,0.08642578,-0.16503906,0.02746582,-0.23242188,-0.034423828,0.17578125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.020874023,0.072265625,0.01550293,-0.033935547,0.11035156,-0.036621094,0.091308594,0.028076172,-0.003616333,0.023071289,-0.08544922,0.08642578,0.044189453,0.012634277,-0.037841797,0.032958984,-0.022216797,0.032226562,0.036621094,0.16699219,-0.022460938,0.17871094,0.16113281,0.18554688,-0.06640625,0.17871094,0.07128906,-0.15625,0.038330078,0.06347656,0.06640625,0.029174805,0.021850586,-0.060058594,-0.13085938,0.083984375,-0.024291992,0.15136719,-0.24804688,-0.21679688,0.08154297,-0.0010681152,0.114746094,0.14941406,-0.026855469,-0.140625,-0.18554688,0.048339844,-0.22070312,-0.18554688,-0.104003906,-0.30078125,0.10058594,0.0014724731,-0.40429688,0.033203125,0.008300781,-0.14648438,-0.030761719,-0.10107422,0.004333496,0.040771484,-0.0032806396,-0.24902344,-0.115234375,-0.22851562,0.15820312,0.0028076172,0.057861328,0.17089844,-0.20410156,-0.052978516,-0.095214844,-0.06738281,-0.006500244,0.07861328,-0.012145996,0.031982422,0.03125,-0.484375,0.09765625,0.14257812,-0.103515625,-0.1171875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0041503906,0.001045227,0.10449219,0.009094238,0.14355469,-0.06298828,0.14453125,-0.056640625,0.104003906,-0.19921875,0.14257812,-0.04345703,0.12402344,-0.17871094,-0.05029297,-0.14941406,-0.21484375,0.07861328,0.14355469,0.021240234,-0.06738281,0.18945312,0.13671875,0.022827148,0.025024414,0.053955078,-0.1875,0.10888672,0.10107422,0.04296875,0.039794922,-0.014282227,0.08642578,0.095703125,-0.018066406,0.12890625,-0.045654297,-0.14550781,-0.11035156,-0.0005722046,-0.080078125,-0.06738281,0.08300781,0.029174805,0.07128906,0.23339844,-0.00045204163,0.014160156,-0.07714844,-0.22265625,-0.118652344,0.016845703,0.044433594,0.0010070801,0.05444336,-0.008422852,-0.051513672,0.03466797,0.0033111572,-0.06591797,0.1953125,0.044677734,-0.110839844,-0.15722656,0.026977539,-0.022094727,0.07128906,0.026489258,-0.13867188,-0.22460938,-0.115234375,0.18066406,-0.008483887,0.06982422,-0.14160156,-0.11425781,0.068359375,0.009216309,0.05908203,-0.119140625,-0.26367188,0.125,0.08544922,0.17089844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0035705566,0.08251953,0.10449219,0.016967773,-0.13867188,0.14355469,0.008666992,-0.0010681152,0.05102539,-0.19433594,-0.16796875,0.100097656,-0.359375,-0.15820312,-0.25,-0.091796875,-0.056640625,-0.296875,0.092285156,0.05883789,-0.12207031,0.21191406,0.12890625,0.067871094,-0.076171875,0.013000488,-0.095214844,-0.041992188,0.091796875,0.037109375,0.025024414,0.055908203,-0.06689453,0.068359375,-0.040039062,0.052734375,-0.013916016,-0.029541016,0.0056762695,0.16601562,-0.025024414,0.003829956,0.0546875,0.13183594,0.10644531,0.040039062,-0.07861328,-0.03857422,0.060791016,-0.25585938,0.16699219,0.04638672,0.04272461,0.115722656,0.029296875,-0.08300781,0.03881836,-0.16992188,-0.171875,-0.06640625,-0.11425781,-0.0009765625,0.08544922,0.080078125,-0.24316406,0.16210938,-0.15332031,-0.1796875,-0.24902344,-0.17871094,0.04296875,0.021118164,0.0390625,0.043945312,-0.004333496,-0.07080078,0.041748047,0.09326172,0.064941406,-0.15039062,-0.13769531,-0.060791016,-0.014465332,-0.13378906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.034423828,0.0107421875,0.01965332,-0.0076904297,0.1328125,-0.12451172,-0.10644531,-0.0115356445,0.079589844,0.049560547,-0.05810547,-0.016357422,0.072265625,0.12792969,0.20898438,-0.23632812,-0.10839844,-0.002319336,0.049560547,-0.061035156,0.04272461,-0.20898438,-0.14453125,0.009033203,-0.234375,0.0075683594,-0.048339844,-0.06542969,0.18652344,-0.022949219,-0.029418945,0.05810547,-0.13476562,0.13574219,0.064453125,0.091796875,0.041015625,0.052490234,-0.24804688,-0.053222656,0.037841797,-0.25976562,0.11425781,-0.27734375,0.09472656,-0.16699219,0.022949219,-0.04663086,0.048339844,0.052490234,-0.22363281,-0.060302734,-0.08251953,0.076660156,0.13183594,-0.040283203,-0.10205078,-0.17675781,-0.18652344,-0.030639648,0.02319336,0.13183594,0.12011719,0.006378174,-0.01928711,-0.28710938,0.13085938,-0.18847656,-0.091308594,-0.015014648,0.0023345947,0.16699219,0.06542969,-0.011230469,0.079589844,-0.030883789,0.06347656,0.032714844,0.106933594,-0.13183594,-0.30664062,-0.16308594,0.009338379,0.060302734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.044189453,0.05834961,0.11669922,0.032958984,0.080566406,-0.05493164,-0.1484375,-0.16308594,0.046142578,-0.13769531,-0.140625,0.12597656,0.021606445,-0.18261719,-0.08105469,-0.14160156,-0.41015625,-0.115234375,0.07080078,0.1484375,0.022460938,-0.006866455,-0.22363281,0.043701172,-0.07763672,0.037109375,-0.080078125,-0.03881836,0.08935547,0.049560547,-0.06298828,0.049316406,-0.15234375,0.08154297,-0.1953125,0.0004825592,-0.037109375,0.05444336,-0.110839844,-0.079589844,-0.014282227,-0.28125,0.041259766,0.07470703,0.06347656,-0.122558594,0.011047363,-0.16894531,0.16503906,-0.20605469,-0.001335144,-0.20703125,0.057128906,0.21191406,-0.095214844,-0.032226562,-0.021118164,-0.29296875,-0.203125,-0.037597656,-0.10107422,0.016357422,-0.17578125,-0.2578125,-0.09082031,-0.103027344,0.031982422,-0.21679688,-0.07763672,-0.25585938,0.09423828,-0.079589844,0.037109375,0.014587402,-0.14355469,0.060546875,0.09326172,0.027954102,0.08984375,-0.19238281,-0.27929688,0.09863281,-0.29296875,0.10253906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-6.914139e-05,0.1484375,0.02734375,-0.045410156,-0.049316406,0.017822266,0.16894531,-0.005218506,0.05078125,-0.33007812,-0.06689453,0.045410156,0.16601562,-0.1015625,-0.22851562,-0.16699219,0.14257812,-0.1171875,0.14746094,-0.072753906,-0.20507812,-0.17382812,0.11328125,0.0007362366,-0.07324219,0.023803711,-0.004760742,-0.123046875,-0.027832031,0.08154297,0.037109375,-0.00680542,0.16503906,0.12597656,-0.203125,0.063964844,-0.019042969,-0.08691406,0.03540039,0.15429688,-0.078125,-0.140625,0.13964844,0.16601562,0.064941406,-0.08300781,-0.19824219,-0.083984375,0.078125,0.031982422,0.13867188,-0.13769531,-0.18554688,0.19140625,-0.048095703,0.0039367676,0.007659912,-0.10449219,-0.22851562,-0.10986328,-0.14746094,0.018066406,-0.1171875,-0.16601562,-0.171875,-0.20214844,-0.0625,0.087890625,0.17675781,-0.19433594,-0.05883789,-0.0625,-0.21679688,-0.110839844,0.0859375,0.020629883,0.024414062,-0.033447266,0.15820312,-0.20214844,-0.17089844,0.203125,-0.08691406,-0.083984375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.059570312,0.048583984,0.059814453,-0.040771484,-0.048828125,0.107910156,0.1796875,0.092285156,0.10058594,-0.13671875,-0.19824219,0.061279297,0.068847656,0.05419922,0.043701172,0.123046875,-0.25390625,-0.123046875,0.092285156,0.0546875,-0.23828125,0.13671875,0.20410156,0.063964844,0.011047363,0.030761719,-0.028076172,0.08203125,-0.19042969,-0.002960205,-0.20800781,-0.032714844,-0.057861328,0.056152344,-0.18652344,0.02758789,0.014038086,0.1953125,-0.20214844,0.10205078,0.012329102,0.011962891,0.061523438,0.11328125,0.0859375,-0.15136719,-0.15527344,-0.053222656,-0.20605469,-0.099609375,0.010925293,0.057128906,-0.12597656,0.19921875,-0.11669922,-0.032470703,0.07861328,-0.23828125,-0.18066406,0.056396484,0.021484375,0.09277344,-0.1640625,0.09814453,-0.052001953,-0.03466797,0.11816406,-0.07910156,-0.19140625,-0.1875,-0.16113281,-0.023925781,-0.25390625,0.061035156,0.00491333,-0.095703125,0.020263672,0.076171875,0.13867188,-0.24609375,-0.14550781,-0.03564453,0.17675781,0.083496094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.021850586,-0.067871094,0.049560547,0.01586914,-0.12158203,0.09082031,-0.03466797,-0.14355469,0.037841797,-0.1015625,0.19433594,0.12011719,0.13769531,0.033935547,-0.1328125,-0.15039062,0.103515625,0.17675781,0.09423828,0.040527344,-0.026977539,-0.071777344,0.039794922,0.15136719,0.07373047,0.10058594,-0.10986328,0.080078125,0.09765625,0.09033203,0.06298828,0.057128906,-0.07910156,-0.0703125,0.01574707,0.118652344,-0.096191406,0.079589844,-0.38085938,0.007659912,0.028320312,-0.020019531,0.19335938,0.059326172,0.099121094,0.10839844,0.0047912598,0.08886719,-0.012451172,-0.15917969,0.07373047,-0.13867188,0.06298828,0.17480469,-0.0011825562,-0.07470703,0.022460938,0.040283203,0.110839844,-0.15136719,0.012084961,0.036132812,-0.21289062,-0.2421875,-0.31445312,-0.09033203,0.08203125,-0.13671875,-0.08935547,-0.15039062,-0.052978516,0.0004749298,0.17382812,-0.079589844,-0.045410156,-0.076171875,-0.048828125,0.0126953125,0.04248047,-0.27539062,-0.040771484,0.111328125,0.03149414,-0.014404297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05419922,0.049072266,0.024169922,0.0038452148,-0.1875,0.11767578,0.009277344,-0.07714844,0.14941406,-0.05126953,0.07373047,0.09326172,-0.30078125,0.07861328,-0.23242188,-0.12988281,-0.28125,-0.03491211,0.07763672,-0.087402344,-0.38867188,0.033935547,0.095703125,0.171875,0.0146484375,0.063964844,0.17285156,-0.009887695,0.115234375,-0.0016860962,-0.017333984,0.0051879883,-0.13085938,-0.04296875,0.057861328,0.016479492,-0.07519531,0.057128906,-0.3125,0.23242188,0.033691406,-0.18457031,0.14257812,0.021240234,0.041259766,0.013061523,-0.265625,0.032226562,0.115234375,-0.20605469,-0.044189453,-0.1640625,0.03149414,0.11376953,-0.10986328,-0.017333984,-0.0069885254,-0.06298828,-0.12988281,-0.12109375,0.11230469,0.083496094,-0.1875,-0.084472656,-0.33789062,-0.36914062,-0.36328125,-0.19726562,-0.03564453,0.19238281,0.045166016,-0.037109375,-0.122558594,-0.067871094,0.041503906,0.037353516,-0.045654297,0.111328125,0.047851562,-0.024780273,-0.44140625,-0.111816406,0.06738281,-0.11816406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; static bfloat16_t fc_5_w[64][128] row_align(1); #else static const elem_t fc_5_w[64][128] row_align(1) = {{0.001953125,-0.008911133,0.06689453,0.05834961,-0.080078125,0.013916016,-0.18164062,0.12792969,0.05883789,-0.0049438477,0.15136719,0.08203125,0.21386719,0.20605469,-0.057128906,0.16503906,0.11767578,0.06225586,0.043701172,0.17773438,0.12988281,-0.016479492,-0.19140625,0.14257812,-0.17675781,0.13378906,-0.025756836,-0.016845703,0.022583008,0.009399414,-0.036621094,-0.055664062,0.14453125,-0.009216309,0.14453125,0.12890625,-0.084472656,-0.064453125,-0.018798828,0.22167969,-0.12695312,0.10644531,0.16113281,-0.07470703,0.14746094,0.10253906,0.03564453,-0.0032348633,-0.26367188,0.16015625,-0.011657715,-0.01574707,-0.13964844,0.072265625,-0.10888672,-0.049560547,-0.00044822693,0.09277344,0.11425781,-0.10644531,0.16894531,0.11621094,0.07714844,-0.025390625,-0.021118164,-0.29882812,-0.08300781,-0.08935547,-0.12597656,-0.045166016,-0.067871094,0.103515625,-0.14550781,-0.014221191,-0.18261719,0.026611328,0.075683594,-0.00491333,0.08642578,-0.16503906,0.02746582,-0.23242188,-0.034423828,0.17578125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.020874023,0.072265625,0.01550293,-0.033935547,0.11035156,-0.036621094,0.091308594,0.028076172,-0.003616333,0.023071289,-0.08544922,0.08642578,0.044189453,0.012634277,-0.037841797,0.032958984,-0.022216797,0.032226562,0.036621094,0.16699219,-0.022460938,0.17871094,0.16113281,0.18554688,-0.06640625,0.17871094,0.07128906,-0.15625,0.038330078,0.06347656,0.06640625,0.029174805,0.021850586,-0.060058594,-0.13085938,0.083984375,-0.024291992,0.15136719,-0.24804688,-0.21679688,0.08154297,-0.0010681152,0.114746094,0.14941406,-0.026855469,-0.140625,-0.18554688,0.048339844,-0.22070312,-0.18554688,-0.104003906,-0.30078125,0.10058594,0.0014724731,-0.40429688,0.033203125,0.008300781,-0.14648438,-0.030761719,-0.10107422,0.004333496,0.040771484,-0.0032806396,-0.24902344,-0.115234375,-0.22851562,0.15820312,0.0028076172,0.057861328,0.17089844,-0.20410156,-0.052978516,-0.095214844,-0.06738281,-0.006500244,0.07861328,-0.012145996,0.031982422,0.03125,-0.484375,0.09765625,0.14257812,-0.103515625,-0.1171875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0041503906,0.001045227,0.10449219,0.009094238,0.14355469,-0.06298828,0.14453125,-0.056640625,0.104003906,-0.19921875,0.14257812,-0.04345703,0.12402344,-0.17871094,-0.05029297,-0.14941406,-0.21484375,0.07861328,0.14355469,0.021240234,-0.06738281,0.18945312,0.13671875,0.022827148,0.025024414,0.053955078,-0.1875,0.10888672,0.10107422,0.04296875,0.039794922,-0.014282227,0.08642578,0.095703125,-0.018066406,0.12890625,-0.045654297,-0.14550781,-0.11035156,-0.0005722046,-0.080078125,-0.06738281,0.08300781,0.029174805,0.07128906,0.23339844,-0.00045204163,0.014160156,-0.07714844,-0.22265625,-0.118652344,0.016845703,0.044433594,0.0010070801,0.05444336,-0.008422852,-0.051513672,0.03466797,0.0033111572,-0.06591797,0.1953125,0.044677734,-0.110839844,-0.15722656,0.026977539,-0.022094727,0.07128906,0.026489258,-0.13867188,-0.22460938,-0.115234375,0.18066406,-0.008483887,0.06982422,-0.14160156,-0.11425781,0.068359375,0.009216309,0.05908203,-0.119140625,-0.26367188,0.125,0.08544922,0.17089844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.0035705566,0.08251953,0.10449219,0.016967773,-0.13867188,0.14355469,0.008666992,-0.0010681152,0.05102539,-0.19433594,-0.16796875,0.100097656,-0.359375,-0.15820312,-0.25,-0.091796875,-0.056640625,-0.296875,0.092285156,0.05883789,-0.12207031,0.21191406,0.12890625,0.067871094,-0.076171875,0.013000488,-0.095214844,-0.041992188,0.091796875,0.037109375,0.025024414,0.055908203,-0.06689453,0.068359375,-0.040039062,0.052734375,-0.013916016,-0.029541016,0.0056762695,0.16601562,-0.025024414,0.003829956,0.0546875,0.13183594,0.10644531,0.040039062,-0.07861328,-0.03857422,0.060791016,-0.25585938,0.16699219,0.04638672,0.04272461,0.115722656,0.029296875,-0.08300781,0.03881836,-0.16992188,-0.171875,-0.06640625,-0.11425781,-0.0009765625,0.08544922,0.080078125,-0.24316406,0.16210938,-0.15332031,-0.1796875,-0.24902344,-0.17871094,0.04296875,0.021118164,0.0390625,0.043945312,-0.004333496,-0.07080078,0.041748047,0.09326172,0.064941406,-0.15039062,-0.13769531,-0.060791016,-0.014465332,-0.13378906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.034423828,0.0107421875,0.01965332,-0.0076904297,0.1328125,-0.12451172,-0.10644531,-0.0115356445,0.079589844,0.049560547,-0.05810547,-0.016357422,0.072265625,0.12792969,0.20898438,-0.23632812,-0.10839844,-0.002319336,0.049560547,-0.061035156,0.04272461,-0.20898438,-0.14453125,0.009033203,-0.234375,0.0075683594,-0.048339844,-0.06542969,0.18652344,-0.022949219,-0.029418945,0.05810547,-0.13476562,0.13574219,0.064453125,0.091796875,0.041015625,0.052490234,-0.24804688,-0.053222656,0.037841797,-0.25976562,0.11425781,-0.27734375,0.09472656,-0.16699219,0.022949219,-0.04663086,0.048339844,0.052490234,-0.22363281,-0.060302734,-0.08251953,0.076660156,0.13183594,-0.040283203,-0.10205078,-0.17675781,-0.18652344,-0.030639648,0.02319336,0.13183594,0.12011719,0.006378174,-0.01928711,-0.28710938,0.13085938,-0.18847656,-0.091308594,-0.015014648,0.0023345947,0.16699219,0.06542969,-0.011230469,0.079589844,-0.030883789,0.06347656,0.032714844,0.106933594,-0.13183594,-0.30664062,-0.16308594,0.009338379,0.060302734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.044189453,0.05834961,0.11669922,0.032958984,0.080566406,-0.05493164,-0.1484375,-0.16308594,0.046142578,-0.13769531,-0.140625,0.12597656,0.021606445,-0.18261719,-0.08105469,-0.14160156,-0.41015625,-0.115234375,0.07080078,0.1484375,0.022460938,-0.006866455,-0.22363281,0.043701172,-0.07763672,0.037109375,-0.080078125,-0.03881836,0.08935547,0.049560547,-0.06298828,0.049316406,-0.15234375,0.08154297,-0.1953125,0.0004825592,-0.037109375,0.05444336,-0.110839844,-0.079589844,-0.014282227,-0.28125,0.041259766,0.07470703,0.06347656,-0.122558594,0.011047363,-0.16894531,0.16503906,-0.20605469,-0.001335144,-0.20703125,0.057128906,0.21191406,-0.095214844,-0.032226562,-0.021118164,-0.29296875,-0.203125,-0.037597656,-0.10107422,0.016357422,-0.17578125,-0.2578125,-0.09082031,-0.103027344,0.031982422,-0.21679688,-0.07763672,-0.25585938,0.09423828,-0.079589844,0.037109375,0.014587402,-0.14355469,0.060546875,0.09326172,0.027954102,0.08984375,-0.19238281,-0.27929688,0.09863281,-0.29296875,0.10253906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-6.914139e-05,0.1484375,0.02734375,-0.045410156,-0.049316406,0.017822266,0.16894531,-0.005218506,0.05078125,-0.33007812,-0.06689453,0.045410156,0.16601562,-0.1015625,-0.22851562,-0.16699219,0.14257812,-0.1171875,0.14746094,-0.072753906,-0.20507812,-0.17382812,0.11328125,0.0007362366,-0.07324219,0.023803711,-0.004760742,-0.123046875,-0.027832031,0.08154297,0.037109375,-0.00680542,0.16503906,0.12597656,-0.203125,0.063964844,-0.019042969,-0.08691406,0.03540039,0.15429688,-0.078125,-0.140625,0.13964844,0.16601562,0.064941406,-0.08300781,-0.19824219,-0.083984375,0.078125,0.031982422,0.13867188,-0.13769531,-0.18554688,0.19140625,-0.048095703,0.0039367676,0.007659912,-0.10449219,-0.22851562,-0.10986328,-0.14746094,0.018066406,-0.1171875,-0.16601562,-0.171875,-0.20214844,-0.0625,0.087890625,0.17675781,-0.19433594,-0.05883789,-0.0625,-0.21679688,-0.110839844,0.0859375,0.020629883,0.024414062,-0.033447266,0.15820312,-0.20214844,-0.17089844,0.203125,-0.08691406,-0.083984375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0.059570312,0.048583984,0.059814453,-0.040771484,-0.048828125,0.107910156,0.1796875,0.092285156,0.10058594,-0.13671875,-0.19824219,0.061279297,0.068847656,0.05419922,0.043701172,0.123046875,-0.25390625,-0.123046875,0.092285156,0.0546875,-0.23828125,0.13671875,0.20410156,0.063964844,0.011047363,0.030761719,-0.028076172,0.08203125,-0.19042969,-0.002960205,-0.20800781,-0.032714844,-0.057861328,0.056152344,-0.18652344,0.02758789,0.014038086,0.1953125,-0.20214844,0.10205078,0.012329102,0.011962891,0.061523438,0.11328125,0.0859375,-0.15136719,-0.15527344,-0.053222656,-0.20605469,-0.099609375,0.010925293,0.057128906,-0.12597656,0.19921875,-0.11669922,-0.032470703,0.07861328,-0.23828125,-0.18066406,0.056396484,0.021484375,0.09277344,-0.1640625,0.09814453,-0.052001953,-0.03466797,0.11816406,-0.07910156,-0.19140625,-0.1875,-0.16113281,-0.023925781,-0.25390625,0.061035156,0.00491333,-0.095703125,0.020263672,0.076171875,0.13867188,-0.24609375,-0.14550781,-0.03564453,0.17675781,0.083496094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.021850586,-0.067871094,0.049560547,0.01586914,-0.12158203,0.09082031,-0.03466797,-0.14355469,0.037841797,-0.1015625,0.19433594,0.12011719,0.13769531,0.033935547,-0.1328125,-0.15039062,0.103515625,0.17675781,0.09423828,0.040527344,-0.026977539,-0.071777344,0.039794922,0.15136719,0.07373047,0.10058594,-0.10986328,0.080078125,0.09765625,0.09033203,0.06298828,0.057128906,-0.07910156,-0.0703125,0.01574707,0.118652344,-0.096191406,0.079589844,-0.38085938,0.007659912,0.028320312,-0.020019531,0.19335938,0.059326172,0.099121094,0.10839844,0.0047912598,0.08886719,-0.012451172,-0.15917969,0.07373047,-0.13867188,0.06298828,0.17480469,-0.0011825562,-0.07470703,0.022460938,0.040283203,0.110839844,-0.15136719,0.012084961,0.036132812,-0.21289062,-0.2421875,-0.31445312,-0.09033203,0.08203125,-0.13671875,-0.08935547,-0.15039062,-0.052978516,0.0004749298,0.17382812,-0.079589844,-0.045410156,-0.076171875,-0.048828125,0.0126953125,0.04248047,-0.27539062,-0.040771484,0.111328125,0.03149414,-0.014404297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{-0.05419922,0.049072266,0.024169922,0.0038452148,-0.1875,0.11767578,0.009277344,-0.07714844,0.14941406,-0.05126953,0.07373047,0.09326172,-0.30078125,0.07861328,-0.23242188,-0.12988281,-0.28125,-0.03491211,0.07763672,-0.087402344,-0.38867188,0.033935547,0.095703125,0.171875,0.0146484375,0.063964844,0.17285156,-0.009887695,0.115234375,-0.0016860962,-0.017333984,0.0051879883,-0.13085938,-0.04296875,0.057861328,0.016479492,-0.07519531,0.057128906,-0.3125,0.23242188,0.033691406,-0.18457031,0.14257812,0.021240234,0.041259766,0.013061523,-0.265625,0.032226562,0.115234375,-0.20605469,-0.044189453,-0.1640625,0.03149414,0.11376953,-0.10986328,-0.017333984,-0.0069885254,-0.06298828,-0.12988281,-0.12109375,0.11230469,0.083496094,-0.1875,-0.084472656,-0.33789062,-0.36914062,-0.36328125,-0.19726562,-0.03564453,0.19238281,0.045166016,-0.037109375,-0.122558594,-0.067871094,0.041503906,0.037353516,-0.045654297,0.111328125,0.047851562,-0.024780273,-0.44140625,-0.111816406,0.06738281,-0.11816406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; #endif static elem_t fc_5_out[64][64] row_align(1); static const struct FcParams fc_5_params = {.batch_size=4, .in_features=84, .out_features=10, .bias=0, .output_scale=8, .I=64, .J=64, .K=128}; static const int tf_labels[5000] = {3,1,1,0,6,6,3,6,5,1,0,9,5,7,1,4,5,3,8,6,7,0,0,9,4,2,4,0,9,6,3,4,3,3,9,1,5,9,9,5,0,6,5,6,0,9,3,9,4,6,0,0,6,6,8,8,5,8,2,4,7,5,1,1,6,6,1,0,5,2,4,6,8,8,9,4,0,3,3,8,8,8,1,7,2,7,4,8,4,9,1,4,8,6,7,5,6,0,0,2,2,3,6,3,1,1,3,6,5,7,5,0,4,2,9,7,0,7,5,5,0,5,1,2,0,1,8,5,3,0,4,1,8,9,1,2,9,7,2,8,6,5,6,5,8,7,3,6,5,5,8,1,6,0,0,3,5,9,5,4,0,1,9,6,9,7,0,4,7,4,4,7,1,8,9,9,6,7,5,9,0,5,4,3,7,8,6,3,7,0,4,8,9,1,7,4,3,8,7,8,3,8,8,7,1,6,8,2,7,8,2,8,5,4,8,5,4,9,0,4,7,3,9,5,5,9,3,2,5,6,5,1,2,8,8,0,4,9,3,5,1,1,1,9,0,8,1,8,2,0,3,5,9,9,2,0,3,8,8,1,3,9,3,3,0,8,3,4,7,2,5,3,6,5,8,2,9,5,5,5,9,9,3,1,0,9,1,0,7,9,1,5,6,9,5,4,6,0,0,6,6,6,7,0,4,0,2,4,1,2,0,6,0,4,0,4,7,7,5,5,3,5,6,2,5,9,6,5,4,6,1,9,4,6,6,1,3,8,0,2,2,6,0,5,0,5,4,6,8,9,9,9,8,2,6,5,4,2,1,8,9,5,8,0,9,4,0,1,0,8,4,7,9,2,2,7,8,5,6,6,6,8,0,0,5,0,7,4,3,5,1,0,6,7,9,6,5,3,0,1,6,0,7,0,8,6,8,9,8,2,6,0,5,6,9,9,0,7,5,7,1,4,0,0,2,5,6,4,6,6,4,5,3,5,9,7,3,5,3,9,6,2,9,9,6,4,2,0,4,0,6,1,7,4,9,4,2,5,6,9,3,6,9,5,4,4,4,3,7,8,4,3,8,0,5,7,3,0,5,4,9,6,0,4,3,9,9,9,5,0,1,7,0,1,8,8,0,2,2,0,6,6,3,4,1,4,7,7,8,4,5,6,6,9,5,3,8,9,5,8,7,7,1,7,0,4,8,0,8,6,8,5,3,4,6,6,6,6,0,0,1,7,6,7,5,9,1,6,7,5,5,3,8,0,9,0,6,2,3,2,0,7,6,6,6,5,0,5,9,6,3,7,8,3,6,3,8,8,7,3,2,0,0,5,0,0,3,7,8,9,6,8,2,6,1,4,7,3,3,3,9,4,0,2,1,6,3,5,3,9,6,1,5,0,5,8,4,5,7,1,7,4,1,2,2,9,9,4,4,2,8,5,6,5,7,6,8,0,8,5,5,6,5,5,1,0,5,4,4,7,3,9,3,2,9,4,1,1,4,1,9,4,7,6,3,0,5,0,9,3,6,5,3,6,0,1,4,9,5,3,1,6,2,9,4,2,1,6,6,9,4,0,0,7,8,7,8,4,7,5,7,0,6,0,7,2,8,3,8,8,2,0,8,7,4,5,3,8,4,8,7,8,8,1,8,8,1,4,6,5,3,0,7,3,1,4,1,0,8,5,5,4,9,7,1,7,6,6,2,5,9,0,1,1,2,4,6,0,2,1,7,6,6,0,1,2,4,1,2,0,9,9,6,5,0,2,7,6,4,5,9,1,7,3,2,0,3,1,6,8,0,0,5,7,7,7,2,3,5,2,7,1,0,4,6,4,0,2,5,8,5,3,7,4,8,8,9,3,1,2,6,5,0,8,7,6,7,6,5,5,9,6,2,5,2,4,1,7,9,2,7,0,7,2,8,0,4,0,8,4,5,9,0,1,0,0,7,0,4,0,4,6,6,3,0,1,9,7,0,9,3,1,2,0,5,8,4,5,4,7,8,8,0,2,1,0,8,1,1,4,3,6,3,3,1,9,3,4,7,5,5,3,6,6,8,0,8,6,0,8,6,3,3,5,0,9,5,0,8,2,6,9,5,4,5,3,6,6,0,8,4,2,2,5,7,3,5,7,4,8,1,5,7,4,8,5,0,1,3,8,3,9,6,1,4,7,0,3,7,8,9,8,1,6,6,5,9,9,1,9,5,4,7,1,0,0,6,0,1,9,3,8,7,4,4,0,5,1,2,0,1,3,8,7,6,3,0,1,3,8,5,0,4,4,0,1,1,8,1,0,0,8,1,1,2,4,1,6,0,8,1,2,0,8,3,5,6,0,6,6,5,5,0,3,5,5,4,7,2,4,5,5,2,0,8,5,2,8,1,7,9,2,0,5,1,5,5,2,6,0,9,1,6,5,5,1,9,0,1,6,3,6,8,7,7,0,0,0,0,6,3,5,9,2,4,4,4,6,5,6,0,8,6,5,3,2,7,5,1,2,8,8,0,0,3,5,9,7,2,1,2,8,5,1,9,1,3,5,7,7,2,3,8,6,0,6,0,0,3,0,4,1,5,0,8,3,1,0,9,8,3,1,8,6,8,4,4,4,2,7,7,2,0,8,6,9,8,7,1,9,8,0,7,3,8,0,3,5,4,0,5,9,4,6,0,9,8,1,2,5,3,3,1,8,3,8,4,1,0,4,1,8,2,5,4,6,5,0,7,9,8,5,3,8,4,8,1,0,9,4,0,6,1,8,5,7,1,4,0,5,3,8,1,0,4,2,5,7,5,9,0,1,1,4,1,4,5,0,1,3,6,0,1,8,5,6,9,3,2,6,6,5,5,8,0,2,8,0,6,8,1,0,8,8,8,1,0,4,2,5,1,8,7,6,3,3,1,5,2,3,5,8,8,5,8,9,0,9,1,6,5,1,4,4,0,0,5,0,9,0,4,1,6,4,8,9,8,0,4,6,0,8,6,1,9,0,5,9,3,0,4,3,9,8,2,2,4,6,5,6,2,8,1,4,2,1,4,5,6,5,1,4,5,8,9,4,2,8,3,8,4,4,2,4,1,3,3,8,8,9,7,9,3,1,4,0,8,2,5,8,9,1,1,4,0,4,1,5,1,4,5,6,0,0,1,5,6,9,5,6,6,2,2,4,5,9,1,0,7,0,2,4,7,6,1,9,9,8,1,0,1,4,1,1,8,7,5,0,2,8,7,6,1,4,1,3,4,9,7,6,8,4,9,7,0,9,3,6,0,1,0,4,5,4,2,5,0,8,4,6,6,6,6,2,5,0,4,1,1,8,6,1,4,0,1,1,7,1,3,5,2,8,7,7,7,9,7,7,7,3,8,2,8,6,2,8,6,9,8,6,8,2,8,1,7,0,2,8,3,8,1,6,2,5,1,3,7,9,8,1,8,1,8,5,0,2,0,1,3,6,7,7,4,4,3,9,4,5,2,5,1,7,8,4,4,2,7,2,2,2,8,2,5,5,4,8,0,0,5,5,6,4,3,2,6,0,8,8,2,5,7,2,6,9,1,6,7,2,9,1,4,5,9,0,1,2,4,5,6,0,5,7,6,3,2,7,5,0,4,6,0,1,4,5,4,6,9,2,5,3,8,9,7,3,1,2,6,5,4,4,0,3,8,1,1,9,7,0,7,4,3,1,6,4,3,6,0,9,7,9,4,1,8,8,6,7,5,2,4,9,5,4,4,9,2,4,0,7,8,5,5,0,0,1,4,8,2,5,4,8,4,6,5,6,0,6,6,4,9,6,3,8,4,6,4,3,0,1,6,7,2,4,7,8,8,6,0,0,5,1,4,8,1,8,0,8,4,1,5,4,3,5,8,5,0,0,1,1,5,6,6,0,0,0,0,5,1,7,1,0,4,8,6,5,4,0,0,1,0,8,0,3,1,3,1,4,6,7,3,1,1,3,8,1,0,5,4,1,0,0,8,1,5,6,7,3,5,3,2,3,0,1,6,2,3,3,6,6,0,8,7,2,1,5,5,4,0,7,0,5,4,6,5,8,1,0,9,0,6,7,4,5,9,5,5,6,0,1,4,0,0,4,2,3,6,8,1,4,1,8,8,1,5,5,9,1,7,4,5,0,1,6,2,2,9,2,8,4,7,9,3,9,6,8,9,3,4,6,2,7,7,9,2,8,9,5,6,3,3,7,0,0,0,9,3,5,8,5,4,5,8,3,5,9,7,7,8,4,2,8,3,5,5,3,8,0,5,5,7,0,1,9,1,4,2,5,3,5,0,9,6,8,6,9,3,0,9,1,6,7,8,5,2,0,1,0,6,9,5,6,5,4,0,9,9,9,5,8,4,7,2,0,5,8,6,1,8,8,4,4,9,6,2,5,0,2,7,9,8,5,3,2,2,8,4,7,8,1,5,0,5,7,4,4,0,7,7,3,6,0,2,6,6,0,3,0,7,5,8,7,1,2,2,0,6,6,5,5,6,6,9,3,6,7,7,6,5,8,5,5,7,1,6,2,9,2,7,9,2,6,6,3,0,5,7,3,7,1,8,1,2,3,5,0,8,4,6,7,3,9,9,8,3,5,3,4,3,9,7,3,4,1,0,4,2,6,3,6,5,1,0,0,1,8,5,1,3,5,8,5,8,3,8,2,5,5,5,8,8,0,3,5,7,9,8,6,2,4,6,7,4,9,9,2,2,4,3,1,4,0,8,5,2,4,7,4,1,0,7,7,2,0,1,6,5,0,5,2,0,1,7,6,0,5,5,6,3,3,3,0,4,1,1,0,4,5,9,0,8,6,0,6,0,2,0,1,1,2,6,2,2,7,3,3,0,8,9,4,6,8,9,7,1,9,2,4,2,5,9,6,9,5,7,8,5,8,8,3,9,7,8,7,5,7,1,0,2,5,3,8,2,5,0,6,9,5,1,9,9,1,4,8,4,4,9,0,3,5,9,2,9,4,4,0,8,3,8,6,1,2,0,5,9,6,9,3,1,3,4,4,2,7,2,4,4,4,5,8,4,2,1,2,4,0,1,7,6,4,7,4,5,2,1,2,7,2,2,6,9,4,1,0,2,6,9,0,1,5,8,0,6,2,5,5,8,8,4,9,1,5,5,6,4,6,0,8,8,3,3,6,0,9,5,5,1,4,0,5,9,9,2,5,0,4,0,6,5,2,4,1,9,5,5,1,0,8,9,7,0,6,3,2,5,4,6,2,5,9,1,3,5,4,6,6,0,3,6,5,2,4,5,0,0,1,0,2,7,0,7,4,8,5,2,6,1,4,9,7,6,2,7,0,6,3,0,1,1,8,0,5,3,9,7,4,1,1,0,1,5,5,5,8,2,5,6,7,9,5,0,1,0,0,5,0,8,0,4,2,1,8,8,5,9,2,4,3,4,9,8,6,3,2,5,1,6,7,9,7,8,8,0,3,1,3,0,6,4,9,3,2,3,0,1,6,6,6,9,7,8,5,8,0,2,6,8,0,0,3,6,8,5,8,9,1,8,6,6,1,0,1,7,4,3,8,5,6,9,8,2,5,9,8,5,4,6,3,8,6,0,5,9,0,1,0,0,9,0,9,0,8,7,0,2,0,3,6,8,1,6,3,8,2,9,5,1,6,2,5,6,3,5,8,8,1,5,0,9,8,3,3,4,2,8,0,8,9,4,0,4,1,7,1,5,2,5,4,3,1,7,5,8,5,1,0,3,0,5,8,8,9,6,2,1,2,9,6,5,1,3,9,5,1,8,4,6,7,8,6,0,6,4,6,9,8,4,9,6,5,4,7,7,6,2,0,2,3,2,5,1,0,4,9,6,5,8,4,2,6,5,1,5,4,5,7,6,5,8,0,5,0,3,8,4,8,0,4,1,7,6,3,8,1,6,2,9,7,5,1,4,5,2,4,5,4,0,4,1,2,5,5,1,0,0,3,8,4,7,7,0,4,2,4,5,5,1,2,2,6,4,6,7,6,2,0,9,1,4,1,4,6,9,8,7,0,5,2,9,5,7,3,4,5,4,7,4,1,6,1,0,6,9,9,0,2,0,4,6,7,2,0,0,0,5,5,5,5,7,8,5,5,1,2,8,9,1,6,4,0,3,4,1,1,6,0,1,8,5,6,0,6,7,5,1,8,0,0,3,2,3,3,3,0,4,8,0,0,5,9,4,4,6,5,7,5,7,2,1,1,4,2,7,6,2,1,9,8,6,3,9,0,5,5,2,7,0,5,5,9,9,3,5,7,2,4,1,8,2,5,2,9,4,4,6,0,6,2,7,3,4,4,7,7,8,0,8,2,7,9,6,9,8,7,0,9,0,5,7,6,3,8,2,5,6,5,7,4,3,9,6,4,4,7,0,1,9,7,7,9,5,1,6,0,5,3,4,2,4,5,4,3,6,5,3,0,4,8,8,8,8,2,5,7,4,3,3,2,6,5,9,6,5,4,2,9,7,5,5,0,4,9,5,5,2,6,5,6,9,5,7,4,8,3,0,9,1,8,1,0,5,0,4,4,7,2,6,3,6,9,3,5,5,5,7,8,6,5,8,3,1,3,5,8,8,3,7,4,2,0,7,0,3,1,4,0,5,5,1,4,3,8,2,8,3,5,1,4,9,8,1,1,5,1,1,4,3,8,5,3,0,6,2,2,3,1,3,5,9,1,4,3,1,0,3,8,9,5,0,9,0,0,1,4,0,5,0,5,2,7,0,4,3,4,1,0,9,2,0,6,5,0,8,6,4,5,2,8,8,7,5,4,5,5,8,0,8,4,8,5,3,6,5,1,7,6,5,2,5,6,8,7,6,5,9,6,8,6,4,5,5,5,1,0,7,4,0,2,4,1,1,9,1,2,9,9,2,3,1,8,4,1,7,4,8,3,5,5,8,6,0,5,0,2,2,5,8,9,4,6,1,4,7,5,9,0,1,5,1,4,0,6,0,2,1,5,1,1,6,9,8,8,1,9,5,3,5,2,9,4,6,8,4,1,4,7,0,2,7,0,4,9,0,7,0,6,7,4,0,3,4,8,4,0,0,3,0,2,5,0,6,4,6,9,1,3,6,6,9,4,9,5,5,7,3,4,7,5,4,2,8,9,0,9,5,5,1,9,0,2,8,9,9,8,1,1,1,0,9,9,8,2,5,9,1,5,2,5,1,3,4,9,9,1,9,9,6,1,7,0,4,6,7,3,8,5,0,6,0,7,4,8,3,8,4,4,3,4,7,6,2,6,7,5,8,4,2,0,0,0,9,2,9,2,6,9,4,1,5,7,3,6,9,5,4,7,6,9,0,2,5,1,3,0,5,8,3,5,3,1,6,1,0,7,3,8,7,7,8,5,0,2,1,5,2,0,2,4,4,7,2,5,7,0,2,1,7,8,7,3,5,7,8,2,7,8,9,7,4,7,0,0,5,2,9,2,5,1,6,5,9,8,5,5,2,1,0,9,4,7,7,7,4,0,0,8,2,9,6,9,7,4,6,2,4,2,9,5,7,7,0,6,5,2,5,5,6,4,4,5,2,5,7,0,4,2,4,1,0,7,2,5,6,1,0,2,8,7,0,9,1,4,8,1,3,3,3,0,2,5,6,7,4,7,9,6,4,1,0,7,8,5,1,5,1,4,6,6,5,5,4,5,8,3,4,8,5,8,2,6,3,1,3,0,8,5,1,9,4,1,0,0,7,7,6,8,5,7,6,1,6,9,2,0,0,1,2,2,4,4,1,7,0,4,6,8,5,0,0,3,3,0,8,4,5,4,5,6,5,7,9,3,3,0,3,2,0,0,3,2,6,9,1,5,5,4,2,3,5,4,5,1,1,5,6,3,9,6,5,0,4,1,4,1,7,2,6,0,0,6,4,5,2,5,3,0,2,8,6,5,9,3,5,5,9,0,9,4,1,0,0,0,1,0,3,2,9,5,2,2,3,2,5,0,2,3,5,8,9,6,5,8,1,0,2,6,4,2,4,1,1,6,6,9,5,2,2,5,0,0,2,3,6,6,9,6,1,4,5,4,0,1,4,0,8,1,9,4,6,3,5,4,9,7,8,6,0,1,5,6,0,6,5,2,6,4,9,4,6,1,5,1,8,4,6,1,5,8,8,1,6,4,7,6,7,5,3,4,4,6,2,7,4,2,3,6,2,4,3,2,9,9,3,1,1,2,5,2,2,3,2,1,7,4,3,5,4,0,9,0,3,0,8,9,1,3,3,4,5,6,9,7,2,0,1,8,0,9,3,3,7,0,0,0,2,1,5,9,7,5,0,6,0,1,6,1,6,7,5,5,6,7,9,4,0,0,3,4,1,7,1,0,0,4,3,5,9,2,8,9,3,7,8,1,6,8,2,8,2,5,8,9,3,1,0,6,5,1,6,6,9,5,4,2,4,2,3,6,6,6,8,3,2,7,7,1,6,2,3,9,3,8,1,8,9,3,5,0,5,2,9,7,0,7,9,3,7,1,3,9,5,8,0,7,5,3,0,7,7,8,4,4,7,0,8,8,8,8,0,6,1,8,9,0,1,5,5,3,0,5,2,2,4,2,0,3,2,6,9,3,7,5,4,5,0,6,1,7,5,6,5,7,1,2,7,8,2,9,8,8,5,7,3,7,9,8,1,4,6,8,9,3,0,8,4,0,2,0,1,3,3,0,5,5,4,9,8,6,7,9,1,5,7,9,8,5,5,0,9,0,0,4,1,2,2,9,8,1,1,1,8,3,7,6,7,2,9,7,0,5,2,8,8,8,2,9,6,7,7,4,4,9,6,3,9,5,5,6,0,4,6,6,4,5,6,9,5,9,5,0,1,2,6,6,1,0,1,5,5,4,2,3,2,9,0,1,2,4,9,7,0,7,5,9,0,5,0,1,9,0,5,3,1,5,9,9,2,7,6,8,8,9,4,6,9,0,4,5,8,2,1,5,8,1,4,5,5,0,2,8,9,5,2,8,7,9,1,0,4,4,0,9,4,0,7,9,8,5,9,6,5,9,3,3,9,0,6,7,7,9,1,2,4,2,0,6,8,3,4,2,2,1,0,2,5,0,0,3,8,6,8,2,7,1,0,5,8,1,3,5,9,3,8,9,6,3,8,9,1,4,0,3,1,4,5,6,2,5,0,0,1,7,8,5,0,5,2,7,4,4,7,4,2,3,5,4,0,1,0,7,5,1,3,5,8,5,4,4,2,1,8,5,9,3,5,6,2,2,7,5,5,8,1,9,6,8,7,3,8,5,7,9,4,8,7,3,5,1,0,6,0,4,7,2,0,0,0,7,0,3,4,5,2,0,5,0,6,8,4,4,2,3,0,5,6,0,8,0,0,4,1,1,3,1,4,2,1,2,4,2,6,0,5,1,8,7,1,0,2,2,3,9,6,6,6,0,7,4,3,2,9,4,5,6,0,5,3,8,0,6,9,3,1,0,5,6,0,2,3,6,7,5,0,2,7,7,4,2,7,0,6,1,3,9,0,0,0,6,8,6,2,0,2,1,2,2,4,7,1,1,2,2,5,7,1,4,2,9,0,0,9,0,0,4,0,0,5,6,0,4,1,8,3,4,5,9,2,9,1,1,5,2,7,5,8,6,4,1,5,7,5,2,6,8,9,9,9,9,8,6,1,5,8,9,4,3,4,6,2,7,7,0,0,0,7,3,1,5,1,5,1,6,0,3,5,3,9,5,0,3,1,9,0,0,1,9,2,0,1,1,9,0,8,4,0,5,7,0,3,3,0,2,4,7,5,5,1,0,8,0,1,6,9,5,4,5,9,6,5,1,0,6,9,2,7,5,7,8,9,1,9,7,0,1,6,5,4,6,5,8,8,0,7,8,5,4,3,6,0,4,5,4,6,8,4,9,1,9,2,0,4,2,1,1,1,0,9,4,2,7,8,1,9,7,7,3,4,8,2,0,2,8,5,9,5,5,5,7,9,8,2,6,3,1,6,2,3,6,3,3,0,8,7,5,4,6,6,0,6,9,9,0,5,3,3,2,1,1,0,3,8,2,9,1,5,5,2,0,4,1,2,3,3,1,5,4,8,1,8,8,6,9,8,2,4,0,6,8,7,5,3,8,9,0,5,5,3,6,1,5,1,6,8,5,4,2,9,0,5,5,1,4,9,1,2,2,4,7,8,5,4,7,1,2,8,4,8,5,8,8,8,9,3,5,7,4,0,4,8,5,7,2,0,6,0,5,9,0,1,8,9,9,6,9,4,7,5,0,3,3,5,4,5,1,1,0,2,2,1,5,7,4,9,2,7,0,7,3,4,5,5,1,4,4,3,5,7,2,8,0,0,5,1,5,4,5,4,5,8,4,8,9,9,4,2,4,5,6,4,6,8,6,6,5,1,4,0,8,0,5,0,4,2,0,7,3,9,1,4,9,5,9,4,2,1,4,7,4,6,7,6,0,5,1,7,1,4,4,4,7,3,8,3,8,6,5,7,2,5,4,7,5,3,5,2,1,5,7,8,5,6,0,2,6,5,2,5,4,5,1,6,8,6,8,3,2,7,5,9,7,1,4,4,7,2,1,4,3,0,1,9,2,8,6,6,0,3,4,9,4,8,2,1,1,3,4,9,4,0,3,7,1,4,6,4,2,7,8,6,3,6,5,5,0,6,4,9,6,6,7,5,9,9,9,2,1,6,9,3,5,5,9,0,8,3,9,2,9,0,9,7,4,2,4,7,6,4,0,1,9,0,5,5,1,8,6,7,8,6,7,0,7,0,6,1,2,0,1,6,4,2,0,5,9,1,0,5,2,1,2,9,8,6,0,3,1,6,4,5,2,6,1,0,7,2,9,0,3,9,8,4,9,9,1,0,1,6,3,9,5,0,8,9,4,0,9,3,3,1,8,3,0,5,0,0,8,2,9,6,0,2,5,2,3,1,4,0,5,2,9,3,5,5,1,4,4,0,9,9,7,9,7,0,1,2,5,5,2,2,4,1,5,1,9,4,0,0,1,4,6,2,2,5,0,2,1,3,7,3,9,2,8,0,6,9,6,4,1,3,6,4,6,2,8,6,5,7,5,3,7,3,7,1,6,4,1,2,1,0,1,6,4,6,0,4,2,9,7,3,5,8,0,8,8,1,8,3,5,9,3,3,8,2,0,0,7,5,5,1,1,9,1,1,8,9,5,5,5,2,0,9,0,6,6,6,4,8,9,5,5,1,1,5,7,8,0,8,0,3,2,4,7,4,8,9,5,2,9,5,9,0,1,2,9,6,9,5,3,5,9,1,3,1,0,5,2,9,2,7,3,5,6,7,0,1,0,7,3,5,5,3,1}; #endif
a32fe62ca48daaf794fff7c9e69722d9ab6687e9
e43acd126b442bb627b6a2d066cb61fad26c467b
/course/4_socket/410121021_140520/server.c
2ba9b8d142be4a9bf1988d884afdb308e5e7b453
[]
no_license
ws23/102NPHW
82e0a58a8c8bba634253895b313375c0a241805f
75c99c8af3aa9dc2ba028422900d41eb9a83b6d3
refs/heads/master
2021-01-09T05:58:18.738429
2016-04-26T12:38:29
2016-04-26T12:38:29
16,722,002
0
0
null
null
null
null
UTF-8
C
false
false
1,361
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <netinet/in.h> #include <sys/socket.h> #define MAXLINE 1024 /*Calculate the fib(n)*/ int fib(int n){ static i = 2, fib[100] = {0, 1}; if(i==2) for(;i<100;i++) fib[i] = fib[i-1] + fib[i-2]; return fib[n]; } int main(int argc, char *argv[]){ int listenfd, connfd, len, n; struct sockaddr_in servaddr, clntaddr; char buff[MAXLINE]; if((listenfd = socket(AF_INET, SOCK_STREAM, 0))<0){ printf("socket error\n"); exit(1); } bzero(&servaddr, sizeof(servaddr)); servaddr.sin_family = AF_INET; servaddr.sin_addr.s_addr = htonl(INADDR_ANY); servaddr.sin_port = htons(1243); if(bind(listenfd, (struct sockaddr *)&servaddr, sizeof(servaddr))<0){ printf("bind error\n"); exit(1); } listen(listenfd, 128); while(1){ len = sizeof(clntaddr); connfd = accept(listenfd, (struct sockaddr*)&clntaddr, &len); printf("accept success\n"); while(1){ read(connfd, buff, sizeof(buff)); n = atoi(buff); n = ntohl(n); printf("get %d\n", n); if(n<0) break; n = fib(n); sprintf(buff, "%d", htonl(n)); write(connfd, buff, sizeof(buff)); printf("send %d\n", n); read(connfd, buff, sizeof(buff)); } close(connfd); } close(listenfd); return 0; }
7a53b5de577201e82bbcc5833f43028dcae19b99
27a08ef3cc9768c81aef1e8f83ac2b89ba40e09f
/Core/Src/i2c.c
dcc62061a7d11d6f964e4bd7dbd10fb56cfb107b
[]
no_license
VolkanoLiu/WirelessRemoteFreeRTOS
486e4d805f623f9078bd50af5de93bff6510aba4
ccd3196a05d3368b0cd587454c446c7a7e6931c3
refs/heads/master
2023-06-06T20:52:11.536582
2021-06-29T14:57:37
2021-06-29T14:57:37
381,398,446
0
0
null
null
null
null
UTF-8
C
false
false
2,747
c
/** ****************************************************************************** * @file i2c.c * @brief This file provides code for the configuration * of the I2C instances. ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under Ultimate Liberty license * SLA0044, the "License"; You may not use this file except in compliance with * the License. You may obtain a copy of the License at: * www.st.com/SLA0044 * ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ #include "i2c.h" /* USER CODE BEGIN 0 */ /* USER CODE END 0 */ I2C_HandleTypeDef hi2c1; /* I2C1 init function */ void MX_I2C1_Init(void) { hi2c1.Instance = I2C1; hi2c1.Init.ClockSpeed = 100000; hi2c1.Init.DutyCycle = I2C_DUTYCYCLE_2; hi2c1.Init.OwnAddress1 = 0; hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; hi2c1.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; hi2c1.Init.OwnAddress2 = 0; hi2c1.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; hi2c1.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; if (HAL_I2C_Init(&hi2c1) != HAL_OK) { Error_Handler(); } } void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle) { GPIO_InitTypeDef GPIO_InitStruct = {0}; if(i2cHandle->Instance==I2C1) { /* USER CODE BEGIN I2C1_MspInit 0 */ /* USER CODE END I2C1_MspInit 0 */ __HAL_RCC_GPIOB_CLK_ENABLE(); /**I2C1 GPIO Configuration PB6 ------> I2C1_SCL PB7 ------> I2C1_SDA */ GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_7; GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); /* I2C1 clock enable */ __HAL_RCC_I2C1_CLK_ENABLE(); /* USER CODE BEGIN I2C1_MspInit 1 */ /* USER CODE END I2C1_MspInit 1 */ } } void HAL_I2C_MspDeInit(I2C_HandleTypeDef* i2cHandle) { if(i2cHandle->Instance==I2C1) { /* USER CODE BEGIN I2C1_MspDeInit 0 */ /* USER CODE END I2C1_MspDeInit 0 */ /* Peripheral clock disable */ __HAL_RCC_I2C1_CLK_DISABLE(); /**I2C1 GPIO Configuration PB6 ------> I2C1_SCL PB7 ------> I2C1_SDA */ HAL_GPIO_DeInit(GPIOB, GPIO_PIN_6); HAL_GPIO_DeInit(GPIOB, GPIO_PIN_7); /* USER CODE BEGIN I2C1_MspDeInit 1 */ /* USER CODE END I2C1_MspDeInit 1 */ } } /* USER CODE BEGIN 1 */ /* USER CODE END 1 */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
66a16b1ff2240b5d09821b843e185f178c0a4673
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/pinctrl/bcm/extr_pinctrl-cygnus-mux.c_cygnus_get_groups_count.c
7512f0d47398c0ee074131a6e5a7d09e7751468d
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
733
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ /* Type definitions */ struct pinctrl_dev {int dummy; } ; struct cygnus_pinctrl {int num_groups; } ; /* Variables and functions */ struct cygnus_pinctrl* pinctrl_dev_get_drvdata (struct pinctrl_dev*) ; __attribute__((used)) static int cygnus_get_groups_count(struct pinctrl_dev *pctrl_dev) { struct cygnus_pinctrl *pinctrl = pinctrl_dev_get_drvdata(pctrl_dev); return pinctrl->num_groups; }
4ccffb556ab25e783a2a02d9630805dbcfe150c4
73fe793f997150a5225a55187507491222da7816
/EEL7030/Keil/C51/INC/SiLABS/EFM8BB2/inc/SI_EFM8BB2_Defs.h
a048c032cd630a4526fd1390d684f427e2ea566e
[ "Apache-2.0", "MIT", "HPND" ]
permissive
GSimas/MicroC
e2c567348bd4fa2bcbf67867d1db834383369fc7
ac9ef54bbeed027db532885407cc3e783fcb28eb
refs/heads/master
2020-12-02T18:02:07.348929
2018-06-21T11:45:05
2018-06-21T11:45:05
96,463,293
0
1
null
null
null
null
UTF-8
C
false
false
28,016
h
//------------------------------------------------------------------------------ // Copyright 2014 Silicon Laboratories, Inc. // All rights reserved. This program and the accompanying materials // are made available under the terms of the Silicon Laboratories End User // License Agreement which accompanies this distribution, and is available at // http://developer.silabs.com/legal/version/v11/Silicon_Labs_Software_License_Agreement.txt // Original content and implementation provided by Silicon Laboratories. //------------------------------------------------------------------------------ //Supported Devices: // EFM8BB21F16G // EFM8BB21F16G // EFM8BB22F16G #ifndef SI_EFM8BB2_DEFS_H #define SI_EFM8BB2_DEFS_H #include <si_toolchain.h> //----------------------------------------------------------------------------- // Register Definitions //----------------------------------------------------------------------------- SI_SFR (ACC, 0xE0); ///< Accumulator SI_SFR (ADC0AC, 0xB3); ///< ADC0 Accumulator Configuration SI_SFR (ADC0CF, 0xBC); ///< ADC0 Configuration SI_SFR (ADC0CN0, 0xE8); ///< ADC0 Control 0 SI_SFR (ADC0CN1, 0xB2); ///< ADC0 Control 1 SI_SFR (ADC0GTH, 0xC4); ///< ADC0 Greater-Than High Byte SI_SFR (ADC0GTL, 0xC3); ///< ADC0 Greater-Than Low Byte SI_SFR (ADC0H, 0xBE); ///< ADC0 Data Word High Byte SI_SFR (ADC0L, 0xBD); ///< ADC0 Data Word Low Byte SI_SFR (ADC0LTH, 0xC6); ///< ADC0 Less-Than High Byte SI_SFR (ADC0LTL, 0xC5); ///< ADC0 Less-Than Low Byte SI_SFR (ADC0MX, 0xBB); ///< ADC0 Multiplexer Selection SI_SFR (ADC0PWR, 0xDF); ///< ADC0 Power Control SI_SFR (ADC0TK, 0xB9); ///< ADC0 Burst Mode Track Time SI_SFR (B, 0xF0); ///< B Register SI_SFR (CKCON0, 0x8E); ///< Clock Control 0 SI_SFR (CKCON1, 0xA6); ///< Clock Control 1 SI_SFR (CLKSEL, 0xA9); ///< Clock Select SI_SFR (CMP0CN0, 0x9B); ///< Comparator 0 Control 0 SI_SFR (CMP0CN1, 0x99); ///< Comparator 0 Control 1 SI_SFR (CMP0MD, 0x9D); ///< Comparator 0 Mode SI_SFR (CMP0MX, 0x9F); ///< Comparator 0 Multiplexer Selection SI_SFR (CMP1CN0, 0xBF); ///< Comparator 1 Control 0 SI_SFR (CMP1CN1, 0xAC); ///< Comparator 1 Control 1 SI_SFR (CMP1MD, 0xAB); ///< Comparator 1 Mode SI_SFR (CMP1MX, 0xAA); ///< Comparator 1 Multiplexer Selection SI_SFR (CRC0CN0, 0xCE); ///< CRC0 Control 0 SI_SFR (CRC0CN1, 0x86); ///< CRC0 Control 1 SI_SFR (CRC0CNT, 0xD3); ///< CRC0 Automatic Flash Sector Count SI_SFR (CRC0DAT, 0xDE); ///< CRC0 Data Output SI_SFR (CRC0FLIP, 0xCF); ///< CRC0 Bit Flip SI_SFR (CRC0IN, 0xDD); ///< CRC0 Data Input SI_SFR (CRC0ST, 0xD2); ///< CRC0 Automatic Flash Sector Start SI_SFR (DERIVID, 0xAD); ///< Derivative Identification SI_SFR (DEVICEID, 0xB5); ///< Device Identification SI_SFR (DPH, 0x83); ///< Data Pointer High SI_SFR (DPL, 0x82); ///< Data Pointer Low SI_SFR (EIE1, 0xE6); ///< Extended Interrupt Enable 1 SI_SFR (EIE2, 0xCE); ///< Extended Interrupt Enable 2 SI_SFR (EIP1, 0xF3); ///< Extended Interrupt Priority 1 Low SI_SFR (EIP1H, 0xF5); ///< Extended Interrupt Priority 1 High SI_SFR (EIP2, 0xF4); ///< Extended Interrupt Priority 2 SI_SFR (EIP2H, 0xF6); ///< Extended Interrupt Priority 2 High SI_SFR (EMI0CN, 0xE7); ///< External Memory Interface Control SI_SFR (FLKEY, 0xB7); ///< Flash Lock and Key SI_SFR (HFO0CAL, 0xC7); ///< High Frequency Oscillator 0 Calibration SI_SFR (HFO1CAL, 0xD6); ///< High Frequency Oscillator 1 Calibration SI_SFR (HFOCN, 0xEF); ///< High Frequency Oscillator Control SI_SFR (I2C0CN0, 0xBA); ///< I2C0 Control SI_SFR (I2C0DIN, 0xBC); ///< I2C0 Received Data SI_SFR (I2C0DOUT, 0xBB); ///< I2C0 Transmit Data SI_SFR (I2C0FCN0, 0xAD); ///< I2C0 FIFO Control 0 SI_SFR (I2C0FCN1, 0xAB); ///< I2C0 FIFO Control 1 SI_SFR (I2C0FCT, 0xF5); ///< I2C0 FIFO Count SI_SFR (I2C0SLAD, 0xBD); ///< I2C0 Slave Address SI_SFR (I2C0STAT, 0xB9); ///< I2C0 Status SI_SFR (IE, 0xA8); ///< Interrupt Enable SI_SFR (IP, 0xB8); ///< Interrupt Priority SI_SFR (IPH, 0xF2); ///< Interrupt Priority High SI_SFR (IT01CF, 0xE4); ///< INT0/INT1 Configuration SI_SFR (LFO0CN, 0xB1); ///< Low Frequency Oscillator Control SI_SFR (P0, 0x80); ///< Port 0 Pin Latch SI_SFR (P0MASK, 0xFE); ///< Port 0 Mask SI_SFR (P0MAT, 0xFD); ///< Port 0 Match SI_SFR (P0MDIN, 0xF1); ///< Port 0 Input Mode SI_SFR (P0MDOUT, 0xA4); ///< Port 0 Output Mode SI_SFR (P0SKIP, 0xD4); ///< Port 0 Skip SI_SFR (P1, 0x90); ///< Port 1 Pin Latch SI_SFR (P1MASK, 0xEE); ///< Port 1 Mask SI_SFR (P1MAT, 0xED); ///< Port 1 Match SI_SFR (P1MDIN, 0xF2); ///< Port 1 Input Mode SI_SFR (P1MDOUT, 0xA5); ///< Port 1 Output Mode SI_SFR (P1SKIP, 0xD5); ///< Port 1 Skip SI_SFR (P2, 0xA0); ///< Port 2 Pin Latch SI_SFR (P2MASK, 0xFC); ///< Port 2 Mask SI_SFR (P2MAT, 0xFB); ///< Port 2 Match SI_SFR (P2MDIN, 0xF3); ///< Port 2 Input Mode SI_SFR (P2MDOUT, 0xA6); ///< Port 2 Output Mode SI_SFR (P2SKIP, 0xCC); ///< Port 2 Skip SI_SFR (P3, 0xB0); ///< Port 3 Pin Latch SI_SFR (P3MDIN, 0xF4); ///< Port 3 Input Mode SI_SFR (P3MDOUT, 0x9C); ///< Port 3 Output Mode SI_SFR (PCA0CENT, 0x9E); ///< PCA Center Alignment Enable SI_SFR (PCA0CLR, 0x9C); ///< PCA Comparator Clear Control SI_SFR (PCA0CN0, 0xD8); ///< PCA Control SI_SFR (PCA0CPH0, 0xFC); ///< PCA Channel 0 Capture Module High Byte SI_SFR (PCA0CPH1, 0xEA); ///< PCA Channel 1 Capture Module High Byte SI_SFR (PCA0CPH2, 0xEC); ///< PCA Channel 2 Capture Module High Byte SI_SFR (PCA0CPL0, 0xFB); ///< PCA Channel 0 Capture Module Low Byte SI_SFR (PCA0CPL1, 0xE9); ///< PCA Channel 1 Capture Module Low Byte SI_SFR (PCA0CPL2, 0xEB); ///< PCA Channel 2 Capture Module Low Byte SI_SFR (PCA0CPM0, 0xDA); ///< PCA Channel 0 Capture/Compare Mode SI_SFR (PCA0CPM1, 0xDB); ///< PCA Channel 1 Capture/Compare Mode SI_SFR (PCA0CPM2, 0xDC); ///< PCA Channel 2 Capture/Compare Mode SI_SFR (PCA0H, 0xFA); ///< PCA Counter/Timer High Byte SI_SFR (PCA0L, 0xF9); ///< PCA Counter/Timer Low Byte SI_SFR (PCA0MD, 0xD9); ///< PCA Mode SI_SFR (PCA0POL, 0x96); ///< PCA Output Polarity SI_SFR (PCA0PWM, 0xF7); ///< PCA PWM Configuration SI_SFR (PCON0, 0x87); ///< Power Control SI_SFR (PCON1, 0x9A); ///< Power Control 1 SI_SFR (PFE0CN, 0xC1); ///< Prefetch Engine Control SI_SFR (PRTDRV, 0xF6); ///< Port Drive Strength SI_SFR (PSCTL, 0x8F); ///< Program Store Control SI_SFR (PSW, 0xD0); ///< Program Status Word SI_SFR (REF0CN, 0xD1); ///< Voltage Reference Control SI_SFR (REG0CN, 0xC9); ///< Voltage Regulator 0 Control SI_SFR (REG1CN, 0xC6); ///< Voltage Regulator 1 Control SI_SFR (REVID, 0xB6); ///< Revision Identifcation SI_SFR (RSTSRC, 0xEF); ///< Reset Source SI_SFR (SBCON1, 0x94); ///< UART1 Baud Rate Generator Control SI_SFR (SBRLH1, 0x96); ///< UART1 Baud Rate Generator High Byte SI_SFR (SBRLL1, 0x95); ///< UART1 Baud Rate Generator Low Byte SI_SFR (SBUF0, 0x99); ///< UART0 Serial Port Data Buffer SI_SFR (SBUF1, 0x92); ///< UART1 Serial Port Data Buffer SI_SFR (SCON0, 0x98); ///< UART0 Serial Port Control SI_SFR (SCON1, 0xC8); ///< UART1 Serial Port Control SI_SFR (SFRPAGE, 0xA7); ///< SFR Page SI_SFR (SFRPGCN, 0xCF); ///< SFR Page Control SI_SFR (SFRSTACK, 0xD7); ///< SFR Page Stack SI_SFR (SMB0ADM, 0xD6); ///< SMBus 0 Slave Address Mask SI_SFR (SMB0ADR, 0xD7); ///< SMBus 0 Slave Address SI_SFR (SMB0CF, 0xC1); ///< SMBus 0 Configuration SI_SFR (SMB0CN0, 0xC0); ///< SMBus 0 Control SI_SFR (SMB0DAT, 0xC2); ///< SMBus 0 Data SI_SFR (SMB0FCN0, 0xC3); ///< SMBus0 FIFO Control 0 SI_SFR (SMB0FCN1, 0xC4); ///< SMBus0 FIFO Control 1 SI_SFR (SMB0FCT, 0xEF); ///< SMBus0 FIFO Count SI_SFR (SMB0RXLN, 0xC5); ///< SMBus0 Receive Length Counter SI_SFR (SMB0TC, 0xAC); ///< SMBus 0 Timing and Pin Control SI_SFR (SMOD1, 0x93); ///< UART1 Mode SI_SFR (SP, 0x81); ///< Stack Pointer SI_SFR (SPI0CFG, 0xA1); ///< SPI0 Configuration SI_SFR (SPI0CKR, 0xA2); ///< SPI0 Clock Rate SI_SFR (SPI0CN0, 0xF8); ///< SPI0 Control SI_SFR (SPI0DAT, 0xA3); ///< SPI0 Data SI_SFR (SPI0FCN0, 0x9A); ///< SPI0 FIFO Control 0 SI_SFR (SPI0FCN1, 0x9B); ///< SPI0 FIFO Control 1 SI_SFR (SPI0FCT, 0xF7); ///< SPI0 FIFO Count SI_SFR (TCON, 0x88); ///< Timer 0/1 Control SI_SFR (TH0, 0x8C); ///< Timer 0 High Byte SI_SFR (TH1, 0x8D); ///< Timer 1 High Byte SI_SFR (TL0, 0x8A); ///< Timer 0 Low Byte SI_SFR (TL1, 0x8B); ///< Timer 1 Low Byte SI_SFR (TMOD, 0x89); ///< Timer 0/1 Mode SI_SFR (TMR2CN0, 0xC8); ///< Timer 2 Control 0 SI_SFR (TMR2CN1, 0xFD); ///< Timer 2 Control 1 SI_SFR (TMR2H, 0xCD); ///< Timer 2 High Byte SI_SFR (TMR2L, 0xCC); ///< Timer 2 Low Byte SI_SFR (TMR2RLH, 0xCB); ///< Timer 2 Reload High Byte SI_SFR (TMR2RLL, 0xCA); ///< Timer 2 Reload Low Byte SI_SFR (TMR3CN0, 0x91); ///< Timer 3 Control 0 SI_SFR (TMR3CN1, 0xFE); ///< Timer 3 Control 1 SI_SFR (TMR3H, 0x95); ///< Timer 3 High Byte SI_SFR (TMR3L, 0x94); ///< Timer 3 Low Byte SI_SFR (TMR3RLH, 0x93); ///< Timer 3 Reload High Byte SI_SFR (TMR3RLL, 0x92); ///< Timer 3 Reload Low Byte SI_SFR (TMR4CN0, 0x98); ///< Timer 4 Control 0 SI_SFR (TMR4CN1, 0xFF); ///< Timer 4 Control 1 SI_SFR (TMR4H, 0xA5); ///< Timer 4 High Byte SI_SFR (TMR4L, 0xA4); ///< Timer 4 Low Byte SI_SFR (TMR4RLH, 0xA3); ///< Timer 4 Reload High Byte SI_SFR (TMR4RLL, 0xA2); ///< Timer 4 Reload Low Byte SI_SFR (UART1FCN0, 0x9D); ///< UART1 FIFO Control 0 SI_SFR (UART1FCN1, 0xD8); ///< UART1 FIFO Control 1 SI_SFR (UART1FCT, 0xFA); ///< UART1 FIFO Count SI_SFR (UART1LIN, 0x9E); ///< UART1 LIN Configuration SI_SFR (VDM0CN, 0xFF); ///< Supply Monitor Control SI_SFR (WDTCN, 0x97); ///< Watchdog Timer Control SI_SFR (XBR0, 0xE1); ///< Port I/O Crossbar 0 SI_SFR (XBR1, 0xE2); ///< Port I/O Crossbar 1 SI_SFR (XBR2, 0xE3); ///< Port I/O Crossbar 2 //------------------------------------------------------------------------------ // 16-bit Register Definitions (may not work on all compilers) //------------------------------------------------------------------------------ SI_SFR16 (ADC0GT, 0xC3); ///< ADC0 Greater-Than SI_SFR16 (ADC0, 0xBD); ///< ADC0 Data Word SI_SFR16 (ADC0LT, 0xC5); ///< ADC0 Less-Than SI_SFR16 (DP, 0x82); ///< Data Pointer SI_SFR16 (PCA0CP0, 0xFB); ///< PCA Channel 0 Capture Module SI_SFR16 (PCA0CP1, 0xE9); ///< PCA Channel 1 Capture Module SI_SFR16 (PCA0CP2, 0xEB); ///< PCA Channel 2 Capture Module SI_SFR16 (PCA0, 0xF9); ///< PCA Counter/Timer SI_SFR16 (SBRL1, 0x95); ///< UART1 Baud Rate Generator SI_SFR16 (TMR2, 0xCC); ///< Timer 2 SI_SFR16 (TMR2RL, 0xCA); ///< Timer 2 Reload SI_SFR16 (TMR3, 0x94); ///< Timer 3 SI_SFR16 (TMR3RL, 0x92); ///< Timer 3 Reload SI_SFR16 (TMR4, 0xA4); ///< Timer 4 SI_SFR16 (TMR4RL, 0xA2); ///< Timer 4 Reload //------------------------------------------------------------------------------ // Indirect Register Definitions //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ // Bit Definitions //------------------------------------------------------------------------------ // ACC (Accumulator) #define SFR_ACC 0xE0 SI_SBIT (ACC_ACC0, SFR_ACC, 0); ///< Accumulator Bit 0 SI_SBIT (ACC_ACC1, SFR_ACC, 1); ///< Accumulator Bit 1 SI_SBIT (ACC_ACC2, SFR_ACC, 2); ///< Accumulator Bit 2 SI_SBIT (ACC_ACC3, SFR_ACC, 3); ///< Accumulator Bit 3 SI_SBIT (ACC_ACC4, SFR_ACC, 4); ///< Accumulator Bit 4 SI_SBIT (ACC_ACC5, SFR_ACC, 5); ///< Accumulator Bit 5 SI_SBIT (ACC_ACC6, SFR_ACC, 6); ///< Accumulator Bit 6 SI_SBIT (ACC_ACC7, SFR_ACC, 7); ///< Accumulator Bit 7 // ADC0CN0 (ADC0 Control 0) #define SFR_ADC0CN0 0xE8 SI_SBIT (ADC0CN0_ADCM0, SFR_ADC0CN0, 0); ///< Start of Conversion Mode Select Bit 0 SI_SBIT (ADC0CN0_ADCM1, SFR_ADC0CN0, 1); ///< Start of Conversion Mode Select Bit 1 SI_SBIT (ADC0CN0_ADCM2, SFR_ADC0CN0, 2); ///< Start of Conversion Mode Select Bit 2 SI_SBIT (ADC0CN0_ADWINT, SFR_ADC0CN0, 3); ///< Window Compare Interrupt Flag SI_SBIT (ADC0CN0_ADBUSY, SFR_ADC0CN0, 4); ///< ADC Busy SI_SBIT (ADC0CN0_ADINT, SFR_ADC0CN0, 5); ///< Conversion Complete Interrupt Flag SI_SBIT (ADC0CN0_ADBMEN, SFR_ADC0CN0, 6); ///< Burst Mode Enable SI_SBIT (ADC0CN0_ADEN, SFR_ADC0CN0, 7); ///< ADC Enable // B (B Register) #define SFR_B 0xF0 SI_SBIT (B_B0, SFR_B, 0); ///< B Register Bit 0 SI_SBIT (B_B1, SFR_B, 1); ///< B Register Bit 1 SI_SBIT (B_B2, SFR_B, 2); ///< B Register Bit 2 SI_SBIT (B_B3, SFR_B, 3); ///< B Register Bit 3 SI_SBIT (B_B4, SFR_B, 4); ///< B Register Bit 4 SI_SBIT (B_B5, SFR_B, 5); ///< B Register Bit 5 SI_SBIT (B_B6, SFR_B, 6); ///< B Register Bit 6 SI_SBIT (B_B7, SFR_B, 7); ///< B Register Bit 7 // IE (Interrupt Enable) #define SFR_IE 0xA8 SI_SBIT (IE_EX0, SFR_IE, 0); ///< External Interrupt 0 Enable SI_SBIT (IE_ET0, SFR_IE, 1); ///< Timer 0 Interrupt Enable SI_SBIT (IE_EX1, SFR_IE, 2); ///< External Interrupt 1 Enable SI_SBIT (IE_ET1, SFR_IE, 3); ///< Timer 1 Interrupt Enable SI_SBIT (IE_ES0, SFR_IE, 4); ///< UART0 Interrupt Enable SI_SBIT (IE_ET2, SFR_IE, 5); ///< Timer 2 Interrupt Enable SI_SBIT (IE_ESPI0, SFR_IE, 6); ///< SPI0 Interrupt Enable SI_SBIT (IE_EA, SFR_IE, 7); ///< All Interrupts Enable // IP (Interrupt Priority) #define SFR_IP 0xB8 SI_SBIT (IP_PX0, SFR_IP, 0); ///< External Interrupt 0 Priority Control LSB SI_SBIT (IP_PT0, SFR_IP, 1); ///< Timer 0 Interrupt Priority Control LSB SI_SBIT (IP_PX1, SFR_IP, 2); ///< External Interrupt 1 Priority Control LSB SI_SBIT (IP_PT1, SFR_IP, 3); ///< Timer 1 Interrupt Priority Control LSB SI_SBIT (IP_PS0, SFR_IP, 4); ///< UART0 Interrupt Priority Control LSB SI_SBIT (IP_PT2, SFR_IP, 5); ///< Timer 2 Interrupt Priority Control LSB SI_SBIT (IP_PSPI0, SFR_IP, 6); ///< Serial Peripheral Interface (SPI0) Interrupt Priority Control LSB // P0 (Port 0 Pin Latch) #define SFR_P0 0x80 SI_SBIT (P0_B0, SFR_P0, 0); ///< Port 0 Bit 0 Latch SI_SBIT (P0_B1, SFR_P0, 1); ///< Port 0 Bit 1 Latch SI_SBIT (P0_B2, SFR_P0, 2); ///< Port 0 Bit 2 Latch SI_SBIT (P0_B3, SFR_P0, 3); ///< Port 0 Bit 3 Latch SI_SBIT (P0_B4, SFR_P0, 4); ///< Port 0 Bit 4 Latch SI_SBIT (P0_B5, SFR_P0, 5); ///< Port 0 Bit 5 Latch SI_SBIT (P0_B6, SFR_P0, 6); ///< Port 0 Bit 6 Latch SI_SBIT (P0_B7, SFR_P0, 7); ///< Port 0 Bit 7 Latch // P1 (Port 1 Pin Latch) #define SFR_P1 0x90 SI_SBIT (P1_B0, SFR_P1, 0); ///< Port 1 Bit 0 Latch SI_SBIT (P1_B1, SFR_P1, 1); ///< Port 1 Bit 1 Latch SI_SBIT (P1_B2, SFR_P1, 2); ///< Port 1 Bit 2 Latch SI_SBIT (P1_B3, SFR_P1, 3); ///< Port 1 Bit 3 Latch SI_SBIT (P1_B4, SFR_P1, 4); ///< Port 1 Bit 4 Latch SI_SBIT (P1_B5, SFR_P1, 5); ///< Port 1 Bit 5 Latch SI_SBIT (P1_B6, SFR_P1, 6); ///< Port 1 Bit 6 Latch SI_SBIT (P1_B7, SFR_P1, 7); ///< Port 1 Bit 7 Latch // P2 (Port 2 Pin Latch) #define SFR_P2 0xA0 SI_SBIT (P2_B0, SFR_P2, 0); ///< Port 2 Bit 0 Latch SI_SBIT (P2_B1, SFR_P2, 1); ///< Port 2 Bit 1 Latch SI_SBIT (P2_B2, SFR_P2, 2); ///< Port 2 Bit 2 Latch SI_SBIT (P2_B3, SFR_P2, 3); ///< Port 2 Bit 3 Latch // P3 (Port 3 Pin Latch) #define SFR_P3 0xB0 SI_SBIT (P3_B0, SFR_P3, 0); ///< Port 3 Bit 0 Latch SI_SBIT (P3_B1, SFR_P3, 1); ///< Port 3 Bit 1 Latch // PCA0CN0 (PCA Control) #define SFR_PCA0CN0 0xD8 SI_SBIT (PCA0CN0_CCF0, SFR_PCA0CN0, 0); ///< PCA Module 0 Capture/Compare Flag SI_SBIT (PCA0CN0_CCF1, SFR_PCA0CN0, 1); ///< PCA Module 1 Capture/Compare Flag SI_SBIT (PCA0CN0_CCF2, SFR_PCA0CN0, 2); ///< PCA Module 2 Capture/Compare Flag SI_SBIT (PCA0CN0_CR, SFR_PCA0CN0, 6); ///< PCA Counter/Timer Run Control SI_SBIT (PCA0CN0_CF, SFR_PCA0CN0, 7); ///< PCA Counter/Timer Overflow Flag // PSW (Program Status Word) #define SFR_PSW 0xD0 SI_SBIT (PSW_PARITY, SFR_PSW, 0); ///< Parity Flag SI_SBIT (PSW_F1, SFR_PSW, 1); ///< User Flag 1 SI_SBIT (PSW_OV, SFR_PSW, 2); ///< Overflow Flag SI_SBIT (PSW_RS0, SFR_PSW, 3); ///< Register Bank Select Bit 0 SI_SBIT (PSW_RS1, SFR_PSW, 4); ///< Register Bank Select Bit 1 SI_SBIT (PSW_F0, SFR_PSW, 5); ///< User Flag 0 SI_SBIT (PSW_AC, SFR_PSW, 6); ///< Auxiliary Carry Flag SI_SBIT (PSW_CY, SFR_PSW, 7); ///< Carry Flag // SCON0 (UART0 Serial Port Control) #define SFR_SCON0 0x98 SI_SBIT (SCON0_RI, SFR_SCON0, 0); ///< Receive Interrupt Flag SI_SBIT (SCON0_TI, SFR_SCON0, 1); ///< Transmit Interrupt Flag SI_SBIT (SCON0_RB8, SFR_SCON0, 2); ///< Ninth Receive Bit SI_SBIT (SCON0_TB8, SFR_SCON0, 3); ///< Ninth Transmission Bit SI_SBIT (SCON0_REN, SFR_SCON0, 4); ///< Receive Enable SI_SBIT (SCON0_MCE, SFR_SCON0, 5); ///< Multiprocessor Communication Enable SI_SBIT (SCON0_SMODE, SFR_SCON0, 7); ///< Serial Port 0 Operation Mode // SCON1 (UART1 Serial Port Control) #define SFR_SCON1 0xC8 SI_SBIT (SCON1_RI, SFR_SCON1, 0); ///< Receive Interrupt Flag SI_SBIT (SCON1_TI, SFR_SCON1, 1); ///< Transmit Interrupt Flag SI_SBIT (SCON1_RBX, SFR_SCON1, 2); ///< Extra Receive Bit SI_SBIT (SCON1_TBX, SFR_SCON1, 3); ///< Extra Transmission Bit SI_SBIT (SCON1_REN, SFR_SCON1, 4); ///< Receive Enable SI_SBIT (SCON1_PERR, SFR_SCON1, 6); ///< Parity Error Flag SI_SBIT (SCON1_OVR, SFR_SCON1, 7); ///< Receive FIFO Overrun Flag // SMB0CN0 (SMBus 0 Control) #define SFR_SMB0CN0 0xC0 SI_SBIT (SMB0CN0_SI, SFR_SMB0CN0, 0); ///< SMBus Interrupt Flag SI_SBIT (SMB0CN0_ACK, SFR_SMB0CN0, 1); ///< SMBus Acknowledge SI_SBIT (SMB0CN0_ARBLOST, SFR_SMB0CN0, 2); ///< SMBus Arbitration Lost Indicator SI_SBIT (SMB0CN0_ACKRQ, SFR_SMB0CN0, 3); ///< SMBus Acknowledge Request SI_SBIT (SMB0CN0_STO, SFR_SMB0CN0, 4); ///< SMBus Stop Flag SI_SBIT (SMB0CN0_STA, SFR_SMB0CN0, 5); ///< SMBus Start Flag SI_SBIT (SMB0CN0_TXMODE, SFR_SMB0CN0, 6); ///< SMBus Transmit Mode Indicator SI_SBIT (SMB0CN0_MASTER, SFR_SMB0CN0, 7); ///< SMBus Master/Slave Indicator // SPI0CN0 (SPI0 Control) #define SFR_SPI0CN0 0xF8 SI_SBIT (SPI0CN0_SPIEN, SFR_SPI0CN0, 0); ///< SPI0 Enable SI_SBIT (SPI0CN0_TXNF, SFR_SPI0CN0, 1); ///< TX FIFO Not Full SI_SBIT (SPI0CN0_NSSMD0, SFR_SPI0CN0, 2); ///< Slave Select Mode Bit 0 SI_SBIT (SPI0CN0_NSSMD1, SFR_SPI0CN0, 3); ///< Slave Select Mode Bit 1 SI_SBIT (SPI0CN0_RXOVRN, SFR_SPI0CN0, 4); ///< Receive Overrun Flag SI_SBIT (SPI0CN0_MODF, SFR_SPI0CN0, 5); ///< Mode Fault Flag SI_SBIT (SPI0CN0_WCOL, SFR_SPI0CN0, 6); ///< Write Collision Flag SI_SBIT (SPI0CN0_SPIF, SFR_SPI0CN0, 7); ///< SPI0 Interrupt Flag // TCON (Timer 0/1 Control) #define SFR_TCON 0x88 SI_SBIT (TCON_IT0, SFR_TCON, 0); ///< Interrupt 0 Type Select SI_SBIT (TCON_IE0, SFR_TCON, 1); ///< External Interrupt 0 SI_SBIT (TCON_IT1, SFR_TCON, 2); ///< Interrupt 1 Type Select SI_SBIT (TCON_IE1, SFR_TCON, 3); ///< External Interrupt 1 SI_SBIT (TCON_TR0, SFR_TCON, 4); ///< Timer 0 Run Control SI_SBIT (TCON_TF0, SFR_TCON, 5); ///< Timer 0 Overflow Flag SI_SBIT (TCON_TR1, SFR_TCON, 6); ///< Timer 1 Run Control SI_SBIT (TCON_TF1, SFR_TCON, 7); ///< Timer 1 Overflow Flag // TMR2CN0 (Timer 2 Control 0) #define SFR_TMR2CN0 0xC8 SI_SBIT (TMR2CN0_T2XCLK0, SFR_TMR2CN0, 0); ///< Timer 2 External Clock Select Bit 0 SI_SBIT (TMR2CN0_T2XCLK1, SFR_TMR2CN0, 1); ///< Timer 2 External Clock Select Bit 1 SI_SBIT (TMR2CN0_TR2, SFR_TMR2CN0, 2); ///< Timer 2 Run Control SI_SBIT (TMR2CN0_T2SPLIT, SFR_TMR2CN0, 3); ///< Timer 2 Split Mode Enable SI_SBIT (TMR2CN0_TF2CEN, SFR_TMR2CN0, 4); ///< Timer 2 Capture Enable SI_SBIT (TMR2CN0_TF2LEN, SFR_TMR2CN0, 5); ///< Timer 2 Low Byte Interrupt Enable SI_SBIT (TMR2CN0_TF2L, SFR_TMR2CN0, 6); ///< Timer 2 Low Byte Overflow Flag SI_SBIT (TMR2CN0_TF2H, SFR_TMR2CN0, 7); ///< Timer 2 High Byte Overflow Flag // TMR4CN0 (Timer 4 Control 0) #define SFR_TMR4CN0 0x98 SI_SBIT (TMR4CN0_T4XCLK0, SFR_TMR4CN0, 0); ///< Timer 4 External Clock Select Bit 0 SI_SBIT (TMR4CN0_T4XCLK1, SFR_TMR4CN0, 1); ///< Timer 4 External Clock Select Bit 1 SI_SBIT (TMR4CN0_TR4, SFR_TMR4CN0, 2); ///< Timer 4 Run Control SI_SBIT (TMR4CN0_T4SPLIT, SFR_TMR4CN0, 3); ///< Timer 4 Split Mode Enable SI_SBIT (TMR4CN0_TF4CEN, SFR_TMR4CN0, 4); ///< Timer 4 Capture Enable SI_SBIT (TMR4CN0_TF4LEN, SFR_TMR4CN0, 5); ///< Timer 4 Low Byte Interrupt Enable SI_SBIT (TMR4CN0_TF4L, SFR_TMR4CN0, 6); ///< Timer 4 Low Byte Overflow Flag SI_SBIT (TMR4CN0_TF4H, SFR_TMR4CN0, 7); ///< Timer 4 High Byte Overflow Flag // UART1FCN1 (UART1 FIFO Control 1) #define SFR_UART1FCN1 0xD8 SI_SBIT (UART1FCN1_RIE, SFR_UART1FCN1, 0); ///< Receive Interrupt Enable SI_SBIT (UART1FCN1_RXTO0, SFR_UART1FCN1, 1); ///< Receive Timeout Bit 0 SI_SBIT (UART1FCN1_RXTO1, SFR_UART1FCN1, 2); ///< Receive Timeout Bit 1 SI_SBIT (UART1FCN1_RFRQ, SFR_UART1FCN1, 3); ///< Receive FIFO Request SI_SBIT (UART1FCN1_TIE, SFR_UART1FCN1, 4); ///< Transmit Interrupt Enable SI_SBIT (UART1FCN1_TXHOLD, SFR_UART1FCN1, 5); ///< Transmit Hold SI_SBIT (UART1FCN1_TXNF, SFR_UART1FCN1, 6); ///< TX FIFO Not Full SI_SBIT (UART1FCN1_TFRQ, SFR_UART1FCN1, 7); ///< Transmit FIFO Request //------------------------------------------------------------------------------ // Interrupt Definitions //------------------------------------------------------------------------------ #define INT0_IRQn 0 ///< External Interrupt 0 #define TIMER0_IRQn 1 ///< Timer 0 Overflow #define INT1_IRQn 2 ///< External Interrupt 1 #define TIMER1_IRQn 3 ///< Timer 1 Overflow #define UART0_IRQn 4 ///< UART0 #define TIMER2_IRQn 5 ///< Timer 2 Overflow / Capture #define SPI0_IRQn 6 ///< SPI0 #define SMBUS0_IRQn 7 ///< SMBus0 #define PMATCH_IRQn 8 ///< Port Match #define ADC0WC_IRQn 9 ///< ADC0 Window Compare #define ADC0EOC_IRQn 10 ///< ADC0 End of Conversion #define PCA0_IRQn 11 ///< PCA0 #define CMP0_IRQn 12 ///< Comparator 0 #define CMP1_IRQn 13 ///< Comparator 1 #define TIMER3_IRQn 14 ///< Timer 3 Overflow / Capture #define UART1_IRQn 17 ///< UART1 #define I2C0_IRQn 18 ///< I2C0 Slave #define TIMER4_IRQn 19 ///< Timer 4 Overflow / Capture //------------------------------------------------------------------------------ // SFR Page Definitions //------------------------------------------------------------------------------ #define CRC0_PAGE 0x00 ///< CRC0 Page #define LEGACY_PAGE 0x00 ///< Legacy SFR Page #define PCA0_PAGE 0x00 ///< PCA0 Page #define PG2_PAGE 0x10 ///< Page2 #define TIMER2_PAGE 0x10 ///< Timer 2 Page #define TIMER3_PAGE 0x10 ///< Timer 3 Page #define TIMER4_PAGE 0x10 ///< Timer 4 Page #define I2CSLAVE0_PAGE 0x20 ///< I2C Slave 0 Page #define PG3_PAGE 0x20 ///< Page3 #define SMB0_PAGE 0x20 ///< SMBus 0 Page #define SPI0_PAGE 0x20 ///< SPI0 Page #define UART0_PAGE 0x20 ///< UART0 Page #define UART1_PAGE 0x20 ///< UART1 Page //----------------------------------------------------------------------------- // SDCC PDATA External Memory Paging Support //----------------------------------------------------------------------------- #if defined SDCC SI_SFR(_XPAGE, 0xAA); // Point to the EMI0CN register #endif #endif // SI_EFM8BB2_DEFS_H //-eof--------------------------------------------------------------------------
b3f5c2ff9871ca98b0ec58358aa037ac0534ecab
611359d7328e35c45a46aec25a155e2513e9c608
/hash/sha3/KeccakCodePackage/PlSnP/KeccakP-1600-times4/SIMD256/KeccakP-1600-times4-SIMD256.c
cab2513b64ce3b792e1c92b1cb12cee9a7c201eb
[ "BSD-2-Clause", "CC0-1.0", "BSD-3-Clause", "LicenseRef-scancode-public-domain" ]
permissive
gianpyc/tinycrypt
5033de93bcb1d81bef972e62b11e8608706c6ddd
966a4bac1a9c0a7d70f220e66751b6b46645ceb2
refs/heads/master
2020-04-20T01:55:17.966206
2019-01-31T06:40:02
2019-01-31T06:40:02
null
0
0
null
null
null
null
UTF-8
C
false
false
51,838
c
/* Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby denoted as "the implementer". For more information, feedback or questions, please refer to our websites: http://keccak.noekeon.org/ http://keyak.noekeon.org/ http://ketje.noekeon.org/ To the extent possible under law, the implementer has waived all copyright and related or neighboring rights to the source code in this file. http://creativecommons.org/publicdomain/zero/1.0/ */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <smmintrin.h> #include <wmmintrin.h> #include <immintrin.h> #include <emmintrin.h> #include "align.h" #include "KeccakP-1600-times4-SnP.h" #include "SIMD256-config.h" #include "brg_endian.h" #if (PLATFORM_BYTE_ORDER != IS_LITTLE_ENDIAN) #error Expecting a little-endian platform #endif typedef unsigned char UINT8; typedef unsigned long long int UINT64; typedef __m128i V128; typedef __m256i V256; #define laneIndex(instanceIndex, lanePosition) ((lanePosition)*4 + instanceIndex) #if defined(KeccakP1600times4_useAVX2) #define ANDnu256(a, b) _mm256_andnot_si256(a, b) #define CONST256(a) _mm256_load_si256((const V256 *)&(a)) #define CONST256_64(a) (V256)_mm256_broadcast_sd((const double*)(&a)) #define LOAD256(a) _mm256_load_si256((const V256 *)&(a)) #define LOAD256u(a) _mm256_loadu_si256((const V256 *)&(a)) #define LOAD4_64(a, b, c, d) _mm256_set_epi64x((UINT64)(a), (UINT64)(b), (UINT64)(c), (UINT64)(d)) #define ROL64in256(d, a, o) d = _mm256_or_si256(_mm256_slli_epi64(a, o), _mm256_srli_epi64(a, 64-(o))) #define ROL64in256_8(d, a) d = _mm256_shuffle_epi8(a, CONST256(rho8)) #define ROL64in256_56(d, a) d = _mm256_shuffle_epi8(a, CONST256(rho56)) static const UINT64 rho8[4] = {0x0605040302010007, 0x0E0D0C0B0A09080F, 0x1615141312111017, 0x1E1D1C1B1A19181F}; static const UINT64 rho56[4] = {0x0007060504030201, 0x080F0E0D0C0B0A09, 0x1017161514131211, 0x181F1E1D1C1B1A19}; #define STORE256(a, b) _mm256_store_si256((V256 *)&(a), b) #define STORE256u(a, b) _mm256_storeu_si256((V256 *)&(a), b) #define STORE2_128(ah, al, v) _mm256_storeu2_m128d((V128*)&(ah), (V128*)&(al), v) #define XOR256(a, b) _mm256_xor_si256(a, b) #define XOReq256(a, b) a = _mm256_xor_si256(a, b) #define UNPACKL( a, b ) _mm256_unpacklo_epi64((a), (b)) #define UNPACKH( a, b ) _mm256_unpackhi_epi64((a), (b)) #define PERM128( a, b, c ) (V256)_mm256_permute2f128_ps((__m256)(a), (__m256)(b), c) #define SHUFFLE64( a, b, c ) (V256)_mm256_shuffle_pd((__m256d)(a), (__m256d)(b), c) #define UNINTLEAVE() lanesL01 = UNPACKL( lanes0, lanes1 ), \ lanesH01 = UNPACKH( lanes0, lanes1 ), \ lanesL23 = UNPACKL( lanes2, lanes3 ), \ lanesH23 = UNPACKH( lanes2, lanes3 ), \ lanes0 = PERM128( lanesL01, lanesL23, 0x20 ), \ lanes2 = PERM128( lanesL01, lanesL23, 0x31 ), \ lanes1 = PERM128( lanesH01, lanesH23, 0x20 ), \ lanes3 = PERM128( lanesH01, lanesH23, 0x31 ) #define INTLEAVE() lanesL01 = PERM128( lanes0, lanes2, 0x20 ), \ lanesH01 = PERM128( lanes1, lanes3, 0x20 ), \ lanesL23 = PERM128( lanes0, lanes2, 0x31 ), \ lanesH23 = PERM128( lanes1, lanes3, 0x31 ), \ lanes0 = SHUFFLE64( lanesL01, lanesH01, 0x00 ), \ lanes1 = SHUFFLE64( lanesL01, lanesH01, 0x0F ), \ lanes2 = SHUFFLE64( lanesL23, lanesH23, 0x00 ), \ lanes3 = SHUFFLE64( lanesL23, lanesH23, 0x0F ) #endif #define SnP_laneLengthInBytes 8 void KeccakP1600times4_InitializeAll(void *states) { memset(states, 0, KeccakP1600times4_statesSizeInBytes); } void KeccakP1600times4_AddBytes(void *states, unsigned int instanceIndex, const unsigned char *data, unsigned int offset, unsigned int length) { unsigned int sizeLeft = length; unsigned int lanePosition = offset/SnP_laneLengthInBytes; unsigned int offsetInLane = offset%SnP_laneLengthInBytes; const unsigned char *curData = data; UINT64 *statesAsLanes = (UINT64 *)states; if ((sizeLeft > 0) && (offsetInLane != 0)) { unsigned int bytesInLane = SnP_laneLengthInBytes - offsetInLane; UINT64 lane = 0; if (bytesInLane > sizeLeft) bytesInLane = sizeLeft; memcpy((unsigned char*)&lane + offsetInLane, curData, bytesInLane); statesAsLanes[laneIndex(instanceIndex, lanePosition)] ^= lane; sizeLeft -= bytesInLane; lanePosition++; curData += bytesInLane; } while(sizeLeft >= SnP_laneLengthInBytes) { UINT64 lane = *((const UINT64*)curData); statesAsLanes[laneIndex(instanceIndex, lanePosition)] ^= lane; sizeLeft -= SnP_laneLengthInBytes; lanePosition++; curData += SnP_laneLengthInBytes; } if (sizeLeft > 0) { UINT64 lane = 0; memcpy(&lane, curData, sizeLeft); statesAsLanes[laneIndex(instanceIndex, lanePosition)] ^= lane; } } void KeccakP1600times4_AddLanesAll(void *states, const unsigned char *data, unsigned int laneCount, unsigned int laneOffset) { V256 *stateAsLanes = (V256 *)states; unsigned int i; const UINT64 *curData0 = (const UINT64 *)data; const UINT64 *curData1 = (const UINT64 *)(data+laneOffset*SnP_laneLengthInBytes); const UINT64 *curData2 = (const UINT64 *)(data+laneOffset*2*SnP_laneLengthInBytes); const UINT64 *curData3 = (const UINT64 *)(data+laneOffset*3*SnP_laneLengthInBytes); V256 lanes0, lanes1, lanes2, lanes3, lanesL01, lanesL23, lanesH01, lanesH23; #define Xor_In( argIndex ) XOReq256(stateAsLanes[argIndex], LOAD4_64(curData3[argIndex], curData2[argIndex], curData1[argIndex], curData0[argIndex])) #define Xor_In4( argIndex ) lanes0 = LOAD256u( curData0[argIndex]),\ lanes1 = LOAD256u( curData1[argIndex]),\ lanes2 = LOAD256u( curData2[argIndex]),\ lanes3 = LOAD256u( curData3[argIndex]),\ INTLEAVE(),\ XOReq256( stateAsLanes[argIndex+0], lanes0 ),\ XOReq256( stateAsLanes[argIndex+1], lanes1 ),\ XOReq256( stateAsLanes[argIndex+2], lanes2 ),\ XOReq256( stateAsLanes[argIndex+3], lanes3 ) if ( laneCount >= 16 ) { Xor_In4( 0 ); Xor_In4( 4 ); Xor_In4( 8 ); Xor_In4( 12 ); if ( laneCount >= 20 ) { Xor_In4( 16 ); for(i=20; i<laneCount; i++) Xor_In( i ); } else { for(i=16; i<laneCount; i++) Xor_In( i ); } } else { for(i=0; i<laneCount; i++) Xor_In( i ); } #undef Xor_In #undef Xor_In4 } void KeccakP1600times4_OverwriteBytes(void *states, unsigned int instanceIndex, const unsigned char *data, unsigned int offset, unsigned int length) { unsigned int sizeLeft = length; unsigned int lanePosition = offset/SnP_laneLengthInBytes; unsigned int offsetInLane = offset%SnP_laneLengthInBytes; const unsigned char *curData = data; UINT64 *statesAsLanes = (UINT64 *)states; if ((sizeLeft > 0) && (offsetInLane != 0)) { unsigned int bytesInLane = SnP_laneLengthInBytes - offsetInLane; if (bytesInLane > sizeLeft) bytesInLane = sizeLeft; memcpy( ((unsigned char *)&statesAsLanes[laneIndex(instanceIndex, lanePosition)]) + offsetInLane, curData, bytesInLane); sizeLeft -= bytesInLane; lanePosition++; curData += bytesInLane; } while(sizeLeft >= SnP_laneLengthInBytes) { UINT64 lane = *((const UINT64*)curData); statesAsLanes[laneIndex(instanceIndex, lanePosition)] = lane; sizeLeft -= SnP_laneLengthInBytes; lanePosition++; curData += SnP_laneLengthInBytes; } if (sizeLeft > 0) { memcpy(&statesAsLanes[laneIndex(instanceIndex, lanePosition)], curData, sizeLeft); } } void KeccakP1600times4_OverwriteLanesAll(void *states, const unsigned char *data, unsigned int laneCount, unsigned int laneOffset) { V256 *stateAsLanes = (V256 *)states; unsigned int i; const UINT64 *curData0 = (const UINT64 *)data; const UINT64 *curData1 = (const UINT64 *)(data+laneOffset*SnP_laneLengthInBytes); const UINT64 *curData2 = (const UINT64 *)(data+laneOffset*2*SnP_laneLengthInBytes); const UINT64 *curData3 = (const UINT64 *)(data+laneOffset*3*SnP_laneLengthInBytes); V256 lanes0, lanes1, lanes2, lanes3, lanesL01, lanesL23, lanesH01, lanesH23; #define OverWr( argIndex ) STORE256(stateAsLanes[argIndex], LOAD4_64(curData3[argIndex], curData2[argIndex], curData1[argIndex], curData0[argIndex])) #define OverWr4( argIndex ) lanes0 = LOAD256u( curData0[argIndex]),\ lanes1 = LOAD256u( curData1[argIndex]),\ lanes2 = LOAD256u( curData2[argIndex]),\ lanes3 = LOAD256u( curData3[argIndex]),\ INTLEAVE(),\ STORE256( stateAsLanes[argIndex+0], lanes0 ),\ STORE256( stateAsLanes[argIndex+1], lanes1 ),\ STORE256( stateAsLanes[argIndex+2], lanes2 ),\ STORE256( stateAsLanes[argIndex+3], lanes3 ) if ( laneCount >= 16 ) { OverWr4( 0 ); OverWr4( 4 ); OverWr4( 8 ); OverWr4( 12 ); if ( laneCount >= 20 ) { OverWr4( 16 ); for(i=20; i<laneCount; i++) OverWr( i ); } else { for(i=16; i<laneCount; i++) OverWr( i ); } } else { for(i=0; i<laneCount; i++) OverWr( i ); } #undef OverWr #undef OverWr4 } void KeccakP1600times4_OverwriteWithZeroes(void *states, unsigned int instanceIndex, unsigned int byteCount) { unsigned int sizeLeft = byteCount; unsigned int lanePosition = 0; UINT64 *statesAsLanes = (UINT64 *)states; while(sizeLeft >= SnP_laneLengthInBytes) { statesAsLanes[laneIndex(instanceIndex, lanePosition)] = 0; sizeLeft -= SnP_laneLengthInBytes; lanePosition++; } if (sizeLeft > 0) { memset(&statesAsLanes[laneIndex(instanceIndex, lanePosition)], 0, sizeLeft); } } void KeccakP1600times4_ExtractBytes(const void *states, unsigned int instanceIndex, unsigned char *data, unsigned int offset, unsigned int length) { unsigned int sizeLeft = length; unsigned int lanePosition = offset/SnP_laneLengthInBytes; unsigned int offsetInLane = offset%SnP_laneLengthInBytes; unsigned char *curData = data; const UINT64 *statesAsLanes = (const UINT64 *)states; if ((sizeLeft > 0) && (offsetInLane != 0)) { unsigned int bytesInLane = SnP_laneLengthInBytes - offsetInLane; if (bytesInLane > sizeLeft) bytesInLane = sizeLeft; memcpy( curData, ((unsigned char *)&statesAsLanes[laneIndex(instanceIndex, lanePosition)]) + offsetInLane, bytesInLane); sizeLeft -= bytesInLane; lanePosition++; curData += bytesInLane; } while(sizeLeft >= SnP_laneLengthInBytes) { *(UINT64*)curData = statesAsLanes[laneIndex(instanceIndex, lanePosition)]; sizeLeft -= SnP_laneLengthInBytes; lanePosition++; curData += SnP_laneLengthInBytes; } if (sizeLeft > 0) { memcpy( curData, &statesAsLanes[laneIndex(instanceIndex, lanePosition)], sizeLeft); } } void KeccakP1600times4_ExtractLanesAll(const void *states, unsigned char *data, unsigned int laneCount, unsigned int laneOffset) { UINT64 *curData0 = (UINT64 *)data; UINT64 *curData1 = (UINT64 *)(data+laneOffset*1*SnP_laneLengthInBytes); UINT64 *curData2 = (UINT64 *)(data+laneOffset*2*SnP_laneLengthInBytes); UINT64 *curData3 = (UINT64 *)(data+laneOffset*3*SnP_laneLengthInBytes); const V256 *stateAsLanes = (const V256 *)states; const UINT64 *stateAsLanes64 = (const UINT64*)states; V256 lanes0, lanes1, lanes2, lanes3, lanesL01, lanesL23, lanesH01, lanesH23; unsigned int i; #define Extr( argIndex ) curData0[argIndex] = stateAsLanes64[4*(argIndex)], \ curData1[argIndex] = stateAsLanes64[4*(argIndex)+1], \ curData2[argIndex] = stateAsLanes64[4*(argIndex)+2], \ curData3[argIndex] = stateAsLanes64[4*(argIndex)+3] #define Extr4( argIndex ) lanes0 = LOAD256( stateAsLanes[argIndex+0] ), \ lanes1 = LOAD256( stateAsLanes[argIndex+1] ), \ lanes2 = LOAD256( stateAsLanes[argIndex+2] ), \ lanes3 = LOAD256( stateAsLanes[argIndex+3] ), \ UNINTLEAVE(), \ STORE256u( curData0[argIndex], lanes0 ), \ STORE256u( curData1[argIndex], lanes1 ), \ STORE256u( curData2[argIndex], lanes2 ), \ STORE256u( curData3[argIndex], lanes3 ) if ( laneCount >= 16 ) { Extr4( 0 ); Extr4( 4 ); Extr4( 8 ); Extr4( 12 ); if ( laneCount >= 20 ) { Extr4( 16 ); for(i=20; i<laneCount; i++) Extr( i ); } else { for(i=16; i<laneCount; i++) Extr( i ); } } else { for(i=0; i<laneCount; i++) Extr( i ); } #undef Extr #undef Extr4 } void KeccakP1600times4_ExtractAndAddBytes(const void *states, unsigned int instanceIndex, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length) { unsigned int sizeLeft = length; unsigned int lanePosition = offset/SnP_laneLengthInBytes; unsigned int offsetInLane = offset%SnP_laneLengthInBytes; const unsigned char *curInput = input; unsigned char *curOutput = output; const UINT64 *statesAsLanes = (const UINT64 *)states; if ((sizeLeft > 0) && (offsetInLane != 0)) { unsigned int bytesInLane = SnP_laneLengthInBytes - offsetInLane; UINT64 lane = statesAsLanes[laneIndex(instanceIndex, lanePosition)] >> (8 * offsetInLane); if (bytesInLane > sizeLeft) bytesInLane = sizeLeft; sizeLeft -= bytesInLane; do { *(curOutput++) = *(curInput++) ^ (unsigned char)lane; lane >>= 8; } while ( --bytesInLane != 0); lanePosition++; } while(sizeLeft >= SnP_laneLengthInBytes) { *((UINT64*)curOutput) = *((UINT64*)curInput) ^ statesAsLanes[laneIndex(instanceIndex, lanePosition)]; sizeLeft -= SnP_laneLengthInBytes; lanePosition++; curInput += SnP_laneLengthInBytes; curOutput += SnP_laneLengthInBytes; } if (sizeLeft != 0) { UINT64 lane = statesAsLanes[laneIndex(instanceIndex, lanePosition)]; do { *(curOutput++) = *(curInput++) ^ (unsigned char)lane; lane >>= 8; } while ( --sizeLeft != 0); } } void KeccakP1600times4_ExtractAndAddLanesAll(const void *states, const unsigned char *input, unsigned char *output, unsigned int laneCount, unsigned int laneOffset) { const UINT64 *curInput0 = (UINT64 *)input; const UINT64 *curInput1 = (UINT64 *)(input+laneOffset*1*SnP_laneLengthInBytes); const UINT64 *curInput2 = (UINT64 *)(input+laneOffset*2*SnP_laneLengthInBytes); const UINT64 *curInput3 = (UINT64 *)(input+laneOffset*3*SnP_laneLengthInBytes); UINT64 *curOutput0 = (UINT64 *)output; UINT64 *curOutput1 = (UINT64 *)(output+laneOffset*1*SnP_laneLengthInBytes); UINT64 *curOutput2 = (UINT64 *)(output+laneOffset*2*SnP_laneLengthInBytes); UINT64 *curOutput3 = (UINT64 *)(output+laneOffset*3*SnP_laneLengthInBytes); const V256 *stateAsLanes = (const V256 *)states; const UINT64 *stateAsLanes64 = (const UINT64*)states; V256 lanes0, lanes1, lanes2, lanes3, lanesL01, lanesL23, lanesH01, lanesH23; unsigned int i; #define ExtrXor( argIndex ) \ curOutput0[argIndex] = curInput0[argIndex] ^ stateAsLanes64[4*(argIndex)],\ curOutput1[argIndex] = curInput1[argIndex] ^ stateAsLanes64[4*(argIndex)+1],\ curOutput2[argIndex] = curInput2[argIndex] ^ stateAsLanes64[4*(argIndex)+2],\ curOutput3[argIndex] = curInput3[argIndex] ^ stateAsLanes64[4*(argIndex)+3] #define ExtrXor4( argIndex ) \ lanes0 = LOAD256( stateAsLanes[argIndex+0] ),\ lanes1 = LOAD256( stateAsLanes[argIndex+1] ),\ lanes2 = LOAD256( stateAsLanes[argIndex+2] ),\ lanes3 = LOAD256( stateAsLanes[argIndex+3] ),\ UNINTLEAVE(),\ lanesL01 = LOAD256u( curInput0[argIndex]),\ lanesH01 = LOAD256u( curInput1[argIndex]),\ lanesL23 = LOAD256u( curInput2[argIndex]),\ lanesH23 = LOAD256u( curInput3[argIndex]),\ XOReq256( lanes0, lanesL01 ),\ XOReq256( lanes1, lanesH01 ),\ XOReq256( lanes2, lanesL23 ),\ XOReq256( lanes3, lanesH23 ),\ STORE256u( curOutput0[argIndex], lanes0 ),\ STORE256u( curOutput1[argIndex], lanes1 ),\ STORE256u( curOutput2[argIndex], lanes2 ),\ STORE256u( curOutput3[argIndex], lanes3 ) if ( laneCount >= 16 ) { ExtrXor4( 0 ); ExtrXor4( 4 ); ExtrXor4( 8 ); ExtrXor4( 12 ); if ( laneCount >= 20 ) { ExtrXor4( 16 ); for(i=20; i<laneCount; i++) ExtrXor( i ); } else { for(i=16; i<laneCount; i++) ExtrXor( i ); } } else { for(i=0; i<laneCount; i++) ExtrXor( i ); } #undef ExtrXor #undef ExtrXor4 } #define declareABCDE \ V256 Aba, Abe, Abi, Abo, Abu; \ V256 Aga, Age, Agi, Ago, Agu; \ V256 Aka, Ake, Aki, Ako, Aku; \ V256 Ama, Ame, Ami, Amo, Amu; \ V256 Asa, Ase, Asi, Aso, Asu; \ V256 Bba, Bbe, Bbi, Bbo, Bbu; \ V256 Bga, Bge, Bgi, Bgo, Bgu; \ V256 Bka, Bke, Bki, Bko, Bku; \ V256 Bma, Bme, Bmi, Bmo, Bmu; \ V256 Bsa, Bse, Bsi, Bso, Bsu; \ V256 Ca, Ce, Ci, Co, Cu; \ V256 Ca1, Ce1, Ci1, Co1, Cu1; \ V256 Da, De, Di, Do, Du; \ V256 Eba, Ebe, Ebi, Ebo, Ebu; \ V256 Ega, Ege, Egi, Ego, Egu; \ V256 Eka, Eke, Eki, Eko, Eku; \ V256 Ema, Eme, Emi, Emo, Emu; \ V256 Esa, Ese, Esi, Eso, Esu; \ #define prepareTheta \ Ca = XOR256(Aba, XOR256(Aga, XOR256(Aka, XOR256(Ama, Asa)))); \ Ce = XOR256(Abe, XOR256(Age, XOR256(Ake, XOR256(Ame, Ase)))); \ Ci = XOR256(Abi, XOR256(Agi, XOR256(Aki, XOR256(Ami, Asi)))); \ Co = XOR256(Abo, XOR256(Ago, XOR256(Ako, XOR256(Amo, Aso)))); \ Cu = XOR256(Abu, XOR256(Agu, XOR256(Aku, XOR256(Amu, Asu)))); \ /* --- Theta Rho Pi Chi Iota Prepare-theta */ /* --- 64-bit lanes mapped to 64-bit words */ #define thetaRhoPiChiIotaPrepareTheta(i, A, E) \ ROL64in256(Ce1, Ce, 1); \ Da = XOR256(Cu, Ce1); \ ROL64in256(Ci1, Ci, 1); \ De = XOR256(Ca, Ci1); \ ROL64in256(Co1, Co, 1); \ Di = XOR256(Ce, Co1); \ ROL64in256(Cu1, Cu, 1); \ Do = XOR256(Ci, Cu1); \ ROL64in256(Ca1, Ca, 1); \ Du = XOR256(Co, Ca1); \ \ XOReq256(A##ba, Da); \ Bba = A##ba; \ XOReq256(A##ge, De); \ ROL64in256(Bbe, A##ge, 44); \ XOReq256(A##ki, Di); \ ROL64in256(Bbi, A##ki, 43); \ E##ba = XOR256(Bba, ANDnu256(Bbe, Bbi)); \ XOReq256(E##ba, CONST256_64(KeccakF1600RoundConstants[i])); \ Ca = E##ba; \ XOReq256(A##mo, Do); \ ROL64in256(Bbo, A##mo, 21); \ E##be = XOR256(Bbe, ANDnu256(Bbi, Bbo)); \ Ce = E##be; \ XOReq256(A##su, Du); \ ROL64in256(Bbu, A##su, 14); \ E##bi = XOR256(Bbi, ANDnu256(Bbo, Bbu)); \ Ci = E##bi; \ E##bo = XOR256(Bbo, ANDnu256(Bbu, Bba)); \ Co = E##bo; \ E##bu = XOR256(Bbu, ANDnu256(Bba, Bbe)); \ Cu = E##bu; \ \ XOReq256(A##bo, Do); \ ROL64in256(Bga, A##bo, 28); \ XOReq256(A##gu, Du); \ ROL64in256(Bge, A##gu, 20); \ XOReq256(A##ka, Da); \ ROL64in256(Bgi, A##ka, 3); \ E##ga = XOR256(Bga, ANDnu256(Bge, Bgi)); \ XOReq256(Ca, E##ga); \ XOReq256(A##me, De); \ ROL64in256(Bgo, A##me, 45); \ E##ge = XOR256(Bge, ANDnu256(Bgi, Bgo)); \ XOReq256(Ce, E##ge); \ XOReq256(A##si, Di); \ ROL64in256(Bgu, A##si, 61); \ E##gi = XOR256(Bgi, ANDnu256(Bgo, Bgu)); \ XOReq256(Ci, E##gi); \ E##go = XOR256(Bgo, ANDnu256(Bgu, Bga)); \ XOReq256(Co, E##go); \ E##gu = XOR256(Bgu, ANDnu256(Bga, Bge)); \ XOReq256(Cu, E##gu); \ \ XOReq256(A##be, De); \ ROL64in256(Bka, A##be, 1); \ XOReq256(A##gi, Di); \ ROL64in256(Bke, A##gi, 6); \ XOReq256(A##ko, Do); \ ROL64in256(Bki, A##ko, 25); \ E##ka = XOR256(Bka, ANDnu256(Bke, Bki)); \ XOReq256(Ca, E##ka); \ XOReq256(A##mu, Du); \ ROL64in256_8(Bko, A##mu); \ E##ke = XOR256(Bke, ANDnu256(Bki, Bko)); \ XOReq256(Ce, E##ke); \ XOReq256(A##sa, Da); \ ROL64in256(Bku, A##sa, 18); \ E##ki = XOR256(Bki, ANDnu256(Bko, Bku)); \ XOReq256(Ci, E##ki); \ E##ko = XOR256(Bko, ANDnu256(Bku, Bka)); \ XOReq256(Co, E##ko); \ E##ku = XOR256(Bku, ANDnu256(Bka, Bke)); \ XOReq256(Cu, E##ku); \ \ XOReq256(A##bu, Du); \ ROL64in256(Bma, A##bu, 27); \ XOReq256(A##ga, Da); \ ROL64in256(Bme, A##ga, 36); \ XOReq256(A##ke, De); \ ROL64in256(Bmi, A##ke, 10); \ E##ma = XOR256(Bma, ANDnu256(Bme, Bmi)); \ XOReq256(Ca, E##ma); \ XOReq256(A##mi, Di); \ ROL64in256(Bmo, A##mi, 15); \ E##me = XOR256(Bme, ANDnu256(Bmi, Bmo)); \ XOReq256(Ce, E##me); \ XOReq256(A##so, Do); \ ROL64in256_56(Bmu, A##so); \ E##mi = XOR256(Bmi, ANDnu256(Bmo, Bmu)); \ XOReq256(Ci, E##mi); \ E##mo = XOR256(Bmo, ANDnu256(Bmu, Bma)); \ XOReq256(Co, E##mo); \ E##mu = XOR256(Bmu, ANDnu256(Bma, Bme)); \ XOReq256(Cu, E##mu); \ \ XOReq256(A##bi, Di); \ ROL64in256(Bsa, A##bi, 62); \ XOReq256(A##go, Do); \ ROL64in256(Bse, A##go, 55); \ XOReq256(A##ku, Du); \ ROL64in256(Bsi, A##ku, 39); \ E##sa = XOR256(Bsa, ANDnu256(Bse, Bsi)); \ XOReq256(Ca, E##sa); \ XOReq256(A##ma, Da); \ ROL64in256(Bso, A##ma, 41); \ E##se = XOR256(Bse, ANDnu256(Bsi, Bso)); \ XOReq256(Ce, E##se); \ XOReq256(A##se, De); \ ROL64in256(Bsu, A##se, 2); \ E##si = XOR256(Bsi, ANDnu256(Bso, Bsu)); \ XOReq256(Ci, E##si); \ E##so = XOR256(Bso, ANDnu256(Bsu, Bsa)); \ XOReq256(Co, E##so); \ E##su = XOR256(Bsu, ANDnu256(Bsa, Bse)); \ XOReq256(Cu, E##su); \ \ /* --- Theta Rho Pi Chi Iota */ /* --- 64-bit lanes mapped to 64-bit words */ #define thetaRhoPiChiIota(i, A, E) \ ROL64in256(Ce1, Ce, 1); \ Da = XOR256(Cu, Ce1); \ ROL64in256(Ci1, Ci, 1); \ De = XOR256(Ca, Ci1); \ ROL64in256(Co1, Co, 1); \ Di = XOR256(Ce, Co1); \ ROL64in256(Cu1, Cu, 1); \ Do = XOR256(Ci, Cu1); \ ROL64in256(Ca1, Ca, 1); \ Du = XOR256(Co, Ca1); \ \ XOReq256(A##ba, Da); \ Bba = A##ba; \ XOReq256(A##ge, De); \ ROL64in256(Bbe, A##ge, 44); \ XOReq256(A##ki, Di); \ ROL64in256(Bbi, A##ki, 43); \ E##ba = XOR256(Bba, ANDnu256(Bbe, Bbi)); \ XOReq256(E##ba, CONST256_64(KeccakF1600RoundConstants[i])); \ XOReq256(A##mo, Do); \ ROL64in256(Bbo, A##mo, 21); \ E##be = XOR256(Bbe, ANDnu256(Bbi, Bbo)); \ XOReq256(A##su, Du); \ ROL64in256(Bbu, A##su, 14); \ E##bi = XOR256(Bbi, ANDnu256(Bbo, Bbu)); \ E##bo = XOR256(Bbo, ANDnu256(Bbu, Bba)); \ E##bu = XOR256(Bbu, ANDnu256(Bba, Bbe)); \ \ XOReq256(A##bo, Do); \ ROL64in256(Bga, A##bo, 28); \ XOReq256(A##gu, Du); \ ROL64in256(Bge, A##gu, 20); \ XOReq256(A##ka, Da); \ ROL64in256(Bgi, A##ka, 3); \ E##ga = XOR256(Bga, ANDnu256(Bge, Bgi)); \ XOReq256(A##me, De); \ ROL64in256(Bgo, A##me, 45); \ E##ge = XOR256(Bge, ANDnu256(Bgi, Bgo)); \ XOReq256(A##si, Di); \ ROL64in256(Bgu, A##si, 61); \ E##gi = XOR256(Bgi, ANDnu256(Bgo, Bgu)); \ E##go = XOR256(Bgo, ANDnu256(Bgu, Bga)); \ E##gu = XOR256(Bgu, ANDnu256(Bga, Bge)); \ \ XOReq256(A##be, De); \ ROL64in256(Bka, A##be, 1); \ XOReq256(A##gi, Di); \ ROL64in256(Bke, A##gi, 6); \ XOReq256(A##ko, Do); \ ROL64in256(Bki, A##ko, 25); \ E##ka = XOR256(Bka, ANDnu256(Bke, Bki)); \ XOReq256(A##mu, Du); \ ROL64in256_8(Bko, A##mu); \ E##ke = XOR256(Bke, ANDnu256(Bki, Bko)); \ XOReq256(A##sa, Da); \ ROL64in256(Bku, A##sa, 18); \ E##ki = XOR256(Bki, ANDnu256(Bko, Bku)); \ E##ko = XOR256(Bko, ANDnu256(Bku, Bka)); \ E##ku = XOR256(Bku, ANDnu256(Bka, Bke)); \ \ XOReq256(A##bu, Du); \ ROL64in256(Bma, A##bu, 27); \ XOReq256(A##ga, Da); \ ROL64in256(Bme, A##ga, 36); \ XOReq256(A##ke, De); \ ROL64in256(Bmi, A##ke, 10); \ E##ma = XOR256(Bma, ANDnu256(Bme, Bmi)); \ XOReq256(A##mi, Di); \ ROL64in256(Bmo, A##mi, 15); \ E##me = XOR256(Bme, ANDnu256(Bmi, Bmo)); \ XOReq256(A##so, Do); \ ROL64in256_56(Bmu, A##so); \ E##mi = XOR256(Bmi, ANDnu256(Bmo, Bmu)); \ E##mo = XOR256(Bmo, ANDnu256(Bmu, Bma)); \ E##mu = XOR256(Bmu, ANDnu256(Bma, Bme)); \ \ XOReq256(A##bi, Di); \ ROL64in256(Bsa, A##bi, 62); \ XOReq256(A##go, Do); \ ROL64in256(Bse, A##go, 55); \ XOReq256(A##ku, Du); \ ROL64in256(Bsi, A##ku, 39); \ E##sa = XOR256(Bsa, ANDnu256(Bse, Bsi)); \ XOReq256(A##ma, Da); \ ROL64in256(Bso, A##ma, 41); \ E##se = XOR256(Bse, ANDnu256(Bsi, Bso)); \ XOReq256(A##se, De); \ ROL64in256(Bsu, A##se, 2); \ E##si = XOR256(Bsi, ANDnu256(Bso, Bsu)); \ E##so = XOR256(Bso, ANDnu256(Bsu, Bsa)); \ E##su = XOR256(Bsu, ANDnu256(Bsa, Bse)); \ \ static ALIGN(KeccakP1600times4_statesAlignment) const UINT64 KeccakF1600RoundConstants[24] = { 0x0000000000000001ULL, 0x0000000000008082ULL, 0x800000000000808aULL, 0x8000000080008000ULL, 0x000000000000808bULL, 0x0000000080000001ULL, 0x8000000080008081ULL, 0x8000000000008009ULL, 0x000000000000008aULL, 0x0000000000000088ULL, 0x0000000080008009ULL, 0x000000008000000aULL, 0x000000008000808bULL, 0x800000000000008bULL, 0x8000000000008089ULL, 0x8000000000008003ULL, 0x8000000000008002ULL, 0x8000000000000080ULL, 0x000000000000800aULL, 0x800000008000000aULL, 0x8000000080008081ULL, 0x8000000000008080ULL, 0x0000000080000001ULL, 0x8000000080008008ULL}; #define copyFromState(X, state) \ X##ba = LOAD256(state[ 0]); \ X##be = LOAD256(state[ 1]); \ X##bi = LOAD256(state[ 2]); \ X##bo = LOAD256(state[ 3]); \ X##bu = LOAD256(state[ 4]); \ X##ga = LOAD256(state[ 5]); \ X##ge = LOAD256(state[ 6]); \ X##gi = LOAD256(state[ 7]); \ X##go = LOAD256(state[ 8]); \ X##gu = LOAD256(state[ 9]); \ X##ka = LOAD256(state[10]); \ X##ke = LOAD256(state[11]); \ X##ki = LOAD256(state[12]); \ X##ko = LOAD256(state[13]); \ X##ku = LOAD256(state[14]); \ X##ma = LOAD256(state[15]); \ X##me = LOAD256(state[16]); \ X##mi = LOAD256(state[17]); \ X##mo = LOAD256(state[18]); \ X##mu = LOAD256(state[19]); \ X##sa = LOAD256(state[20]); \ X##se = LOAD256(state[21]); \ X##si = LOAD256(state[22]); \ X##so = LOAD256(state[23]); \ X##su = LOAD256(state[24]); \ #define copyToState(state, X) \ STORE256(state[ 0], X##ba); \ STORE256(state[ 1], X##be); \ STORE256(state[ 2], X##bi); \ STORE256(state[ 3], X##bo); \ STORE256(state[ 4], X##bu); \ STORE256(state[ 5], X##ga); \ STORE256(state[ 6], X##ge); \ STORE256(state[ 7], X##gi); \ STORE256(state[ 8], X##go); \ STORE256(state[ 9], X##gu); \ STORE256(state[10], X##ka); \ STORE256(state[11], X##ke); \ STORE256(state[12], X##ki); \ STORE256(state[13], X##ko); \ STORE256(state[14], X##ku); \ STORE256(state[15], X##ma); \ STORE256(state[16], X##me); \ STORE256(state[17], X##mi); \ STORE256(state[18], X##mo); \ STORE256(state[19], X##mu); \ STORE256(state[20], X##sa); \ STORE256(state[21], X##se); \ STORE256(state[22], X##si); \ STORE256(state[23], X##so); \ STORE256(state[24], X##su); \ #define copyStateVariables(X, Y) \ X##ba = Y##ba; \ X##be = Y##be; \ X##bi = Y##bi; \ X##bo = Y##bo; \ X##bu = Y##bu; \ X##ga = Y##ga; \ X##ge = Y##ge; \ X##gi = Y##gi; \ X##go = Y##go; \ X##gu = Y##gu; \ X##ka = Y##ka; \ X##ke = Y##ke; \ X##ki = Y##ki; \ X##ko = Y##ko; \ X##ku = Y##ku; \ X##ma = Y##ma; \ X##me = Y##me; \ X##mi = Y##mi; \ X##mo = Y##mo; \ X##mu = Y##mu; \ X##sa = Y##sa; \ X##se = Y##se; \ X##si = Y##si; \ X##so = Y##so; \ X##su = Y##su; \ #ifdef KeccakP1600times4_fullUnrolling #define FullUnrolling #else #define Unrolling KeccakP1600times4_unrolling #endif #include "KeccakP-1600-unrolling.macros" void KeccakP1600times4_PermuteAll_24rounds(void *states) { V256 *statesAsLanes = (V256 *)states; declareABCDE #ifndef KeccakP1600times4_fullUnrolling unsigned int i; #endif copyFromState(A, statesAsLanes) rounds24 copyToState(statesAsLanes, A) } void KeccakP1600times4_PermuteAll_12rounds(void *states) { V256 *statesAsLanes = (V256 *)states; declareABCDE #ifndef KeccakP1600times4_fullUnrolling unsigned int i; #endif copyFromState(A, statesAsLanes) rounds12 copyToState(statesAsLanes, A) } void KeccakP1600times4_PermuteAll_6rounds(void *states) { V256 *statesAsLanes = (V256 *)states; declareABCDE #ifndef KeccakP1600times4_fullUnrolling unsigned int i; #endif copyFromState(A, statesAsLanes) rounds6 copyToState(statesAsLanes, A) } void KeccakP1600times4_PermuteAll_4rounds(void *states) { V256 *statesAsLanes = (V256 *)states; declareABCDE #ifndef KeccakP1600times4_fullUnrolling unsigned int i; #endif copyFromState(A, statesAsLanes) rounds4 copyToState(statesAsLanes, A) } size_t KeccakF1600times4_FastLoop_Absorb(void *states, unsigned int laneCount, unsigned int laneOffsetParallel, unsigned int laneOffsetSerial, const unsigned char *data, size_t dataByteLen) { if (laneCount == 21) { #if 0 const unsigned char *dataStart = data; const UINT64 *curData0 = (const UINT64 *)data; const UINT64 *curData1 = (const UINT64 *)(data+laneOffsetParallel*1*SnP_laneLengthInBytes); const UINT64 *curData2 = (const UINT64 *)(data+laneOffsetParallel*2*SnP_laneLengthInBytes); const UINT64 *curData3 = (const UINT64 *)(data+laneOffsetParallel*3*SnP_laneLengthInBytes); while(dataByteLen >= (laneOffsetParallel*3 + laneCount)*8) { V256 *stateAsLanes = (V256 *)states; V256 lanes0, lanes1, lanes2, lanes3, lanesL01, lanesL23, lanesH01, lanesH23; #define Xor_In( argIndex ) \ XOReq256(stateAsLanes[argIndex], LOAD4_64(curData3[argIndex], curData2[argIndex], curData1[argIndex], curData0[argIndex])) #define Xor_In4( argIndex ) \ lanes0 = LOAD256u( curData0[argIndex]),\ lanes1 = LOAD256u( curData1[argIndex]),\ lanes2 = LOAD256u( curData2[argIndex]),\ lanes3 = LOAD256u( curData3[argIndex]),\ INTLEAVE(),\ XOReq256( stateAsLanes[argIndex+0], lanes0 ),\ XOReq256( stateAsLanes[argIndex+1], lanes1 ),\ XOReq256( stateAsLanes[argIndex+2], lanes2 ),\ XOReq256( stateAsLanes[argIndex+3], lanes3 ) Xor_In4( 0 ); Xor_In4( 4 ); Xor_In4( 8 ); Xor_In4( 12 ); Xor_In4( 16 ); Xor_In( 20 ); #undef Xor_In #undef Xor_In4 KeccakP1600times4_PermuteAll_24rounds(states); curData0 += laneOffsetSerial; curData1 += laneOffsetSerial; curData2 += laneOffsetSerial; curData3 += laneOffsetSerial; dataByteLen -= laneOffsetSerial*8; } return (const unsigned char *)curData0 - dataStart; #else unsigned int i; const unsigned char *dataStart = data; const UINT64 *curData0 = (const UINT64 *)data; const UINT64 *curData1 = (const UINT64 *)(data+laneOffsetParallel*1*SnP_laneLengthInBytes); const UINT64 *curData2 = (const UINT64 *)(data+laneOffsetParallel*2*SnP_laneLengthInBytes); const UINT64 *curData3 = (const UINT64 *)(data+laneOffsetParallel*3*SnP_laneLengthInBytes); V256 *statesAsLanes = (V256 *)states; declareABCDE copyFromState(A, statesAsLanes) while(dataByteLen >= (laneOffsetParallel*3 + laneCount)*8) { #define XOR_In( Xxx, argIndex ) \ XOReq256(Xxx, LOAD4_64(curData3[argIndex], curData2[argIndex], curData1[argIndex], curData0[argIndex])) XOR_In( Aba, 0 ); XOR_In( Abe, 1 ); XOR_In( Abi, 2 ); XOR_In( Abo, 3 ); XOR_In( Abu, 4 ); XOR_In( Aga, 5 ); XOR_In( Age, 6 ); XOR_In( Agi, 7 ); XOR_In( Ago, 8 ); XOR_In( Agu, 9 ); XOR_In( Aka, 10 ); XOR_In( Ake, 11 ); XOR_In( Aki, 12 ); XOR_In( Ako, 13 ); XOR_In( Aku, 14 ); XOR_In( Ama, 15 ); XOR_In( Ame, 16 ); XOR_In( Ami, 17 ); XOR_In( Amo, 18 ); XOR_In( Amu, 19 ); XOR_In( Asa, 20 ); #undef XOR_In rounds24 curData0 += laneOffsetSerial; curData1 += laneOffsetSerial; curData2 += laneOffsetSerial; curData3 += laneOffsetSerial; dataByteLen -= laneOffsetSerial*8; } copyToState(statesAsLanes, A) return (const unsigned char *)curData0 - dataStart; #endif } else { unsigned int i; const unsigned char *dataStart = data; while(dataByteLen >= (laneOffsetParallel*3 + laneCount)*8) { KeccakP1600times4_AddLanesAll(states, data, laneCount, laneOffsetParallel); KeccakP1600times4_PermuteAll_24rounds(states); data += laneOffsetSerial*8; dataByteLen -= laneOffsetSerial*8; } return data - dataStart; } } size_t KeccakP1600times4_12rounds_FastLoop_Absorb(void *states, unsigned int laneCount, unsigned int laneOffsetParallel, unsigned int laneOffsetSerial, const unsigned char *data, size_t dataByteLen) { if (laneCount == 21) { #if 0 const unsigned char *dataStart = data; const UINT64 *curData0 = (const UINT64 *)data; const UINT64 *curData1 = (const UINT64 *)(data+laneOffsetParallel*1*SnP_laneLengthInBytes); const UINT64 *curData2 = (const UINT64 *)(data+laneOffsetParallel*2*SnP_laneLengthInBytes); const UINT64 *curData3 = (const UINT64 *)(data+laneOffsetParallel*3*SnP_laneLengthInBytes); while(dataByteLen >= (laneOffsetParallel*3 + laneCount)*8) { V256 *stateAsLanes = states; V256 lanes0, lanes1, lanes2, lanes3, lanesL01, lanesL23, lanesH01, lanesH23; #define Xor_In( argIndex ) \ XOReq256(stateAsLanes[argIndex], LOAD4_64(curData3[argIndex], curData2[argIndex], curData1[argIndex], curData0[argIndex])) #define Xor_In4( argIndex ) \ lanes0 = LOAD256u( curData0[argIndex]),\ lanes1 = LOAD256u( curData1[argIndex]),\ lanes2 = LOAD256u( curData2[argIndex]),\ lanes3 = LOAD256u( curData3[argIndex]),\ INTLEAVE(),\ XOReq256( stateAsLanes[argIndex+0], lanes0 ),\ XOReq256( stateAsLanes[argIndex+1], lanes1 ),\ XOReq256( stateAsLanes[argIndex+2], lanes2 ),\ XOReq256( stateAsLanes[argIndex+3], lanes3 ) Xor_In4( 0 ); Xor_In4( 4 ); Xor_In4( 8 ); Xor_In4( 12 ); Xor_In4( 16 ); Xor_In( 20 ); #undef Xor_In #undef Xor_In4 KeccakP1600times4_PermuteAll_12rounds(states); curData0 += laneOffsetSerial; curData1 += laneOffsetSerial; curData2 += laneOffsetSerial; curData3 += laneOffsetSerial; dataByteLen -= laneOffsetSerial*8; } return (const unsigned char *)curData0 - dataStart; #else unsigned int i; const unsigned char *dataStart = data; const UINT64 *curData0 = (const UINT64 *)data; const UINT64 *curData1 = (const UINT64 *)(data+laneOffsetParallel*1*SnP_laneLengthInBytes); const UINT64 *curData2 = (const UINT64 *)(data+laneOffsetParallel*2*SnP_laneLengthInBytes); const UINT64 *curData3 = (const UINT64 *)(data+laneOffsetParallel*3*SnP_laneLengthInBytes); V256 *statesAsLanes = states; declareABCDE copyFromState(A, statesAsLanes) while(dataByteLen >= (laneOffsetParallel*3 + laneCount)*8) { #define XOR_In( Xxx, argIndex ) \ XOReq256(Xxx, LOAD4_64(curData3[argIndex], curData2[argIndex], curData1[argIndex], curData0[argIndex])) XOR_In( Aba, 0 ); XOR_In( Abe, 1 ); XOR_In( Abi, 2 ); XOR_In( Abo, 3 ); XOR_In( Abu, 4 ); XOR_In( Aga, 5 ); XOR_In( Age, 6 ); XOR_In( Agi, 7 ); XOR_In( Ago, 8 ); XOR_In( Agu, 9 ); XOR_In( Aka, 10 ); XOR_In( Ake, 11 ); XOR_In( Aki, 12 ); XOR_In( Ako, 13 ); XOR_In( Aku, 14 ); XOR_In( Ama, 15 ); XOR_In( Ame, 16 ); XOR_In( Ami, 17 ); XOR_In( Amo, 18 ); XOR_In( Amu, 19 ); XOR_In( Asa, 20 ); #undef XOR_In rounds12 curData0 += laneOffsetSerial; curData1 += laneOffsetSerial; curData2 += laneOffsetSerial; curData3 += laneOffsetSerial; dataByteLen -= laneOffsetSerial*8; } copyToState(statesAsLanes, A) return (const unsigned char *)curData0 - dataStart; #endif } else { unsigned int i; const unsigned char *dataStart = data; while(dataByteLen >= (laneOffsetParallel*3 + laneCount)*8) { KeccakP1600times4_AddLanesAll(states, data, laneCount, laneOffsetParallel); KeccakP1600times4_PermuteAll_12rounds(states); data += laneOffsetSerial*8; dataByteLen -= laneOffsetSerial*8; } return data - dataStart; } } /* ------------------------------------------------------------------------- */ #define Kravatte_Roll() \ Asa = x0x1x2x3, \ Ase = x1x2x3x4, \ ROL64in256(x1x2x3x4, x0x1x2x3, 7), \ XOReq256(x1x2x3x4, Ase), \ XOReq256(x1x2x3x4, _mm256_srli_epi64(Ase, 3)), \ Asi = _mm256_blend_epi32(_mm256_permute4x64_epi64(Ase, 0x39), _mm256_permute4x64_epi64(x1x2x3x4, 0x39), 0xC0), \ Aso = PERM128(Ase, x1x2x3x4, 0x21), \ Asu = _mm256_blend_epi32(_mm256_permute4x64_epi64(Ase, 0xFF), _mm256_permute4x64_epi64(x1x2x3x4, 0x90), 0xFC), \ x0x1x2x3 = Asu #define UNINTLEAVEa(lanes0, lanes1, lanes2, lanes3) \ lanesL01 = UNPACKL( lanes0, lanes1 ), \ lanesH01 = UNPACKH( lanes0, lanes1 ), \ lanesL23 = UNPACKL( lanes2, lanes3 ), \ lanesH23 = UNPACKH( lanes2, lanes3 ), \ lanes0 = PERM128( lanesL01, lanesL23, 0x20 ), \ lanes2 = PERM128( lanesL01, lanesL23, 0x31 ), \ lanes1 = PERM128( lanesH01, lanesH23, 0x20 ), \ lanes3 = PERM128( lanesH01, lanesH23, 0x31 ) #define INTLEAVEa(lanes0, lanes1, lanes2, lanes3) \ lanesL01 = PERM128( lanes0, lanes2, 0x20 ), \ lanesH01 = PERM128( lanes1, lanes3, 0x20 ), \ lanesL23 = PERM128( lanes0, lanes2, 0x31 ), \ lanesH23 = PERM128( lanes1, lanes3, 0x31 ), \ lanes0 = SHUFFLE64( lanesL01, lanesH01, 0x00 ), \ lanes1 = SHUFFLE64( lanesL01, lanesH01, 0x0F ), \ lanes2 = SHUFFLE64( lanesL23, lanesH23, 0x00 ), \ lanes3 = SHUFFLE64( lanesL23, lanesH23, 0x0F ) #define LoadXOReq256( lanes, inp, argIndex) XOReq256( lanes, LOAD4_64(inp[3*25+argIndex], inp[2*25+argIndex], inp[1*25+argIndex], inp[0*25+argIndex]) ) /* ------------------------------------------------------------------------- */ #define AddOverWr4( lanes0, lanes1, lanes2, lanes3, key, inp, argIndex ) \ lanes0 = LOAD256u( inp[argIndex+0*25]), \ lanes1 = LOAD256u( inp[argIndex+1*25]), \ lanes2 = LOAD256u( inp[argIndex+2*25]), \ lanes3 = LOAD256u( inp[argIndex+3*25]), \ INTLEAVEa(lanes0, lanes1, lanes2, lanes3), \ XOReq256( lanes0, CONST256_64( key[argIndex+0])), \ XOReq256( lanes1, CONST256_64( key[argIndex+1])), \ XOReq256( lanes2, CONST256_64( key[argIndex+2])), \ XOReq256( lanes3, CONST256_64( key[argIndex+3])) #define ExtrAccu( lanes, p, argIndex ) p[argIndex] ^= _mm256_extract_epi64(lanes, 0) ^ _mm256_extract_epi64(lanes, 1) \ ^ _mm256_extract_epi64(lanes, 2) ^ _mm256_extract_epi64(lanes, 3) #define ExtrAccu4( lanes0, lanes1, lanes2, lanes3, p, argIndex ) \ UNINTLEAVEa(lanes0, lanes1, lanes2, lanes3), \ XOReq256( lanes0, lanes1 ), \ XOReq256( lanes2, lanes3 ), \ lanes1 = LOAD256( p[argIndex]), \ XOReq256( lanes0, lanes2 ), \ XOReq256( lanes0, lanes1 ), \ STORE256( p[argIndex], lanes0 ) size_t KeccakP1600times4_KravatteCompress(uint64_t *xAccu, uint64_t *kRoll, const unsigned char *input, size_t inputByteLen) { uint64_t *in64 = (uint64_t *)input; size_t nBlocks = inputByteLen / (4 * 200); declareABCDE #if !defined(KeccakP1600times4_fullUnrolling) unsigned int i; #endif V256 lanesL01, lanesL23, lanesH01, lanesH23; V256 x0x1x2x3, x1x2x3x4; x0x1x2x3 = LOAD256(kRoll[20]); x1x2x3x4 = LOAD256u(kRoll[21]); do { AddOverWr4( Aba, Abe, Abi, Abo, kRoll, in64, 0 ); AddOverWr4( Abu, Aga, Age, Agi, kRoll, in64, 4 ); AddOverWr4( Ago, Agu, Aka, Ake, kRoll, in64, 8 ); AddOverWr4( Aki, Ako, Aku, Ama, kRoll, in64, 12 ); AddOverWr4( Ame, Ami, Amo, Amu, kRoll, in64, 16 ); Kravatte_Roll(); LoadXOReq256(Asa, in64, 20); LoadXOReq256(Ase, in64, 21); LoadXOReq256(Asi, in64, 22); LoadXOReq256(Aso, in64, 23); LoadXOReq256(Asu, in64, 24); rounds6 ExtrAccu4(Aba, Abe, Abi, Abo, xAccu, 0 ); ExtrAccu4(Abu, Aga, Age, Agi, xAccu, 4 ); ExtrAccu4(Ago, Agu, Aka, Ake, xAccu, 8 ); ExtrAccu4(Aki, Ako, Aku, Ama, xAccu, 12 ); ExtrAccu4(Ame, Ami, Amo, Amu, xAccu, 16 ); ExtrAccu4(Asa, Ase, Asi, Aso, xAccu, 20 ); ExtrAccu( Asu, xAccu, 24 ); in64 += 4 * 25; } while(--nBlocks != 0); STORE256(kRoll[20], x0x1x2x3); kRoll[24] = _mm256_extract_epi64(x1x2x3x4, 3); return (size_t)in64 - (size_t)input; } #undef LoadXOReq256 #undef AddOverWr4 #undef ExtrAccu #undef ExtrAccu4 /* ------------------------------------------------------------------------- */ #define OverWr4( lanes0, lanes1, lanes2, lanes3, p, argIndex ) \ lanes0 = CONST256_64( p[argIndex+0]), \ lanes1 = CONST256_64( p[argIndex+1]), \ lanes2 = CONST256_64( p[argIndex+2]), \ lanes3 = CONST256_64( p[argIndex+3]) #define ExtrAddKey( lanes, p, argIndex ) \ XOReq256(lanes, CONST256_64(kRoll[argIndex])), \ p[argIndex+0*25] = _mm256_extract_epi64(lanes, 0), \ p[argIndex+1*25] = _mm256_extract_epi64(lanes, 1), \ p[argIndex+2*25] = _mm256_extract_epi64(lanes, 2), \ p[argIndex+3*25] = _mm256_extract_epi64(lanes, 3) #define ExtrAddKey4( lanes0, lanes1, lanes2, lanes3, p, argIndex ) \ XOReq256(lanes0, CONST256_64(kRoll[argIndex+0])), \ XOReq256(lanes1, CONST256_64(kRoll[argIndex+1])), \ XOReq256(lanes2, CONST256_64(kRoll[argIndex+2])), \ XOReq256(lanes3, CONST256_64(kRoll[argIndex+3])), \ UNINTLEAVEa(lanes0, lanes1, lanes2, lanes3), \ STORE256u( p[argIndex+0*25], lanes0 ), \ STORE256u( p[argIndex+1*25], lanes1 ), \ STORE256u( p[argIndex+2*25], lanes2 ), \ STORE256u( p[argIndex+3*25], lanes3 ) size_t KeccakP1600times4_KravatteExpand(uint64_t *yAccu, const uint64_t *kRoll, unsigned char *output, size_t outputByteLen) { uint64_t *out64 = (uint64_t *)output; size_t nBlocks = outputByteLen / (4 * 200); declareABCDE #if !defined(KeccakP1600times4_fullUnrolling) unsigned int i; #endif V256 lanesL01, lanesL23, lanesH01, lanesH23; V256 x0x1x2x3, x1x2x3x4; x0x1x2x3 = LOAD256(yAccu[20]); x1x2x3x4 = LOAD256u(yAccu[21]); do { OverWr4( Aba, Abe, Abi, Abo, yAccu, 0 ); OverWr4( Abu, Aga, Age, Agi, yAccu, 4 ); OverWr4( Ago, Agu, Aka, Ake, yAccu, 8 ); OverWr4( Aki, Ako, Aku, Ama, yAccu, 12 ); OverWr4( Ame, Ami, Amo, Amu, yAccu, 16 ); Kravatte_Roll(); rounds4 ExtrAddKey4(Aba, Abe, Abi, Abo, out64, 0 ); ExtrAddKey4(Abu, Aga, Age, Agi, out64, 4 ); ExtrAddKey4(Ago, Agu, Aka, Ake, out64, 8 ); ExtrAddKey4(Aki, Ako, Aku, Ama, out64, 12 ); ExtrAddKey4(Ame, Ami, Amo, Amu, out64, 16 ); ExtrAddKey4(Asa, Ase, Asi, Aso, out64, 20 ); ExtrAddKey( Asu, out64, 24 ); out64 += 4 * 25; } while(--nBlocks != 0); STORE256(yAccu[20], x0x1x2x3); yAccu[24] = _mm256_extract_epi64(x1x2x3x4, 3); return (size_t)out64 - (size_t)output; } #undef OverWr4 #undef ExtrAddKey #undef ExtrAddKey4 #undef Kravatte_Roll #undef UNINTLEAVEa #undef INTLEAVEa
33e71dcdca52bcc1df0d025b113cb3701fe4ffef
a0d6b2c2dd8bcbe03e5c6fb35f766bd2af9a1d5c
/dynix.3.2.0/src/usr.lib/librpcsvc/sprayxdr.c
2873954c63c3807d893ed7aaeb852c602cc1e2a1
[]
no_license
legacy-codedigger/Dynix.3.2.Source
593485f234eee4de75c0e23fe689f247471c83f8
2789373c94bc57e4c4a915bcba354f2243e12ca4
refs/heads/master
2022-04-25T22:49:00.493902
2020-04-25T00:49:59
2020-04-25T00:49:59
258,656,640
0
0
null
null
null
null
UTF-8
C
false
false
1,182
c
/* $Copyright: $ * Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989, 1990 * Sequent Computer Systems, Inc. All rights reserved. * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ #ifndef lint static char rcsid[] = "$Header: sprayxdr.c 1.2 90/01/25 $"; #endif #ifndef lint /* @(#)sprayxdr.c 2.2 86/08/14 NFSSRC */ static char sccsid[] = "@(#)sprayxdr.c 1.1 86/02/05 Copyr 1985 Sun Micro"; #endif /* * Copyright (c) 1985 by Sun Microsystems, Inc. */ #include <sys/time.h> #include <rpc/rpc.h> #include <rpcsvc/spray.h> xdr_sprayarr(xdrsp, arrp) XDR *xdrsp; struct sprayarr *arrp; { if (!xdr_bytes(xdrsp, &arrp->data, &arrp->lnth, SPRAYMAX)) return(0); return(1); } xdr_spraycumul(xdrsp, cumulp) XDR *xdrsp; struct spraycumul *cumulp; { if (!xdr_u_int(xdrsp, &cumulp->counter)) return(0); if (!xdr_timeval(xdrsp, &cumulp->clock)) return(0); return(1); }