serial_no
int64
1
24.2k
cuda_source
stringlengths
11
9.01M
20,301
#include <iostream> #include <cassert> __device__ void cube(double* xi) { *xi = (*xi) * (*xi) * (*xi); } __global__ void cube_kernel(double* x, int size) { int tid = blockIdx.x * blockDim.x + threadIdx.x; if (tid < size) { cube(&x[tid]); } } int main(int argc, char* argv[]) { double* x = NULL; int size = 100; cudaError_t cuda_status = cudaSuccess; cuda_status = cudaMallocManaged(&x, sizeof(double) * size); assert(cuda_status == cudaSuccess); for (int i = 0; i < size; i++) { x[i] = 2.0; } int numThreads = std::min(32, size); int numBlocks = static_cast<int>(ceil(((double) size)/((double) numThreads))); cube_kernel<<<numBlocks, numThreads>>>(x, size); cuda_status = cudaDeviceSynchronize(); assert(cuda_status == cudaSuccess); double xsum = 0.0; for (int i = 0; i < size; i++) { xsum += x[i]; } std::cout << "sum of elementwise cubed x is: " << xsum << std::endl; if (xsum == 800.0) std::cout << "SUCCESS!" << std::endl; else std::cout << "ERROR!" << std::endl; return 0; }
20,302
#include "includes.h" __device__ __forceinline__ size_t gpu_fieldn_index(unsigned int x, unsigned int y, unsigned int z, unsigned int d) { return (NX*(NY*(NZ*(d-1)+z)+y)+x); } __device__ __forceinline__ size_t gpu_scalar_index(unsigned int x, unsigned int y, unsigned int z) { return NX*(NY*z + y)+x; } __device__ __forceinline__ size_t gpu_field0_index(unsigned int x, unsigned int y, unsigned int z) { return NX*(NY*z + y)+x; } __global__ void gpu_init_equilibrium(double *f0, double *f1, double *h0, double *h1, double *temp0, double *temp1, double *r, double *c, double *u, double *v, double *w, double *ex, double *ey, double *ez, double*temp) { unsigned int y = blockIdx.y; unsigned int z = blockIdx.z; unsigned int x = blockIdx.x*blockDim.x+threadIdx.x; double rho = r[gpu_scalar_index(x,y,z)]; double ux = u[gpu_scalar_index(x,y,z)]; double uy = v[gpu_scalar_index(x,y,z)]; double uz = w[gpu_scalar_index(x,y,z)]; double charge = c[gpu_scalar_index(x,y,z)]; double Ex = ex[gpu_scalar_index(x,y,z)]; double Ey = ey[gpu_scalar_index(x,y,z)]; double Ez = ez[gpu_scalar_index(x,y,z)]; double Temp = temp[gpu_scalar_index(x,y,z)]; // load equilibrium // feq_i = w_i rho [1 + 3(ci . u) + (9/2) (ci . u)^2 - (3/2) (u.u)] // feq_i = w_i rho [1 - 3/2 (u.u) + (ci . 3u) + (1/2) (ci . 3u)^2] // feq_i = w_i rho [1 - 3/2 (u.u) + (ci . 3u){ 1 + (1/2) (ci . 3u) }] // temporary variables double w0r = w0*rho; double wsr = ws*rho; double war = wa*rho; double wdr = wd*rho; double w0c = w0*charge; double wsc = ws*charge; double wac = wa*charge; double wdc = wd*charge; double w0t = w0*Temp; double wst = ws*Temp; double wat = wa*Temp; double wdt = wd*Temp; double omusq = 1.0 - 0.5*(ux*ux+uy*uy+uz*uz)/cs_square; double omusq_c = 1.0 - 0.5*((ux + K*Ex)*(ux + K*Ex) + (uy + K*Ey)*(uy + K*Ey) + (uz + K*Ez)*(uz + K*Ez)) / cs_square; double tux = ux / cs_square / CFL; double tuy = uy / cs_square / CFL; double tuz = uz / cs_square / CFL; double tux_c = (ux + K*Ex) / cs_square / CFL; double tuy_c = (uy + K*Ey) / cs_square / CFL; double tuz_c = (uz + K*Ez) / cs_square / CFL; // zero weight f0[gpu_field0_index(x,y,z)] = w0r*(omusq); h0[gpu_field0_index(x,y,z)] = w0c*(omusq_c); temp0[gpu_field0_index(x, y, z)] = w0t*(omusq); // adjacent weight // flow double cidot3u = tux; f1[gpu_fieldn_index(x,y,z,1)] = wsr*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = -tux; f1[gpu_fieldn_index(x,y,z,2)] = wsr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy; f1[gpu_fieldn_index(x,y,z,3)] = wsr*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = -tuy; f1[gpu_fieldn_index(x,y,z,4)] = wsr*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = tuz; f1[gpu_fieldn_index(x,y,z,5)] = wsr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuz; f1[gpu_fieldn_index(x,y,z,6)] = wsr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); // charge cidot3u = tux_c; h1[gpu_fieldn_index(x,y,z,1)] = wsc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tux_c; h1[gpu_fieldn_index(x,y,z,2)] = wsc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy_c; h1[gpu_fieldn_index(x,y,z,3)] = wsc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy_c; h1[gpu_fieldn_index(x,y,z,4)] = wsc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz_c; h1[gpu_fieldn_index(x,y,z,5)] = wsc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuz_c; h1[gpu_fieldn_index(x,y,z,6)] = wsc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); // temperature cidot3u = tux; temp1[gpu_fieldn_index(x, y, z, 1)] = wst*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tux; temp1[gpu_fieldn_index(x, y, z, 2)] = wst*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy; temp1[gpu_fieldn_index(x, y, z, 3)] = wst*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy; temp1[gpu_fieldn_index(x, y, z, 4)] = wst*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz; temp1[gpu_fieldn_index(x, y, z, 5)] = wst*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuz; temp1[gpu_fieldn_index(x, y, z, 6)] = wst*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); // diagonal weight // flow cidot3u = tux+tuy; f1[gpu_fieldn_index(x,y,z,7)] = war*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = -tuy-tux; f1[gpu_fieldn_index(x,y,z,8)] = war*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = tux+tuz; f1[gpu_fieldn_index(x,y,z,9)] = war*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = -tux-tuz; f1[gpu_fieldn_index(x,y,z,10)] = war*(omusq + cidot3u*(1.0+0.5*cidot3u)); cidot3u = tuz + tuy; f1[gpu_fieldn_index(x,y,z,11)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy - tuz; f1[gpu_fieldn_index(x,y,z,12)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux - tuy; f1[gpu_fieldn_index(x,y,z,13)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy - tux; f1[gpu_fieldn_index(x,y,z,14)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux - tuz; f1[gpu_fieldn_index(x,y,z,15)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz - tux; f1[gpu_fieldn_index(x,y,z,16)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy - tuz; f1[gpu_fieldn_index(x,y,z,17)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz - tuy; f1[gpu_fieldn_index(x,y,z,18)] = war*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); // charge cidot3u = tux_c + tuy_c; h1[gpu_fieldn_index(x, y, z, 7)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy_c - tux_c; h1[gpu_fieldn_index(x, y, z, 8)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux_c + tuz_c; h1[gpu_fieldn_index(x, y, z, 9)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tux_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 10)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy_c + tuz_c; h1[gpu_fieldn_index(x, y, z, 11)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 12)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux_c - tuy_c; h1[gpu_fieldn_index(x, y, z, 13)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy_c - tux_c; h1[gpu_fieldn_index(x, y, z, 14)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 15)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz_c - tux_c; h1[gpu_fieldn_index(x, y, z, 16)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 17)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz_c - tuy_c; h1[gpu_fieldn_index(x, y, z, 18)] = wac*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); // temperature cidot3u = tux + tuy; temp1[gpu_fieldn_index(x, y, z, 7)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy - tux; temp1[gpu_fieldn_index(x, y, z, 8)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux + tuz; temp1[gpu_fieldn_index(x, y, z, 9)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tux - tuz; temp1[gpu_fieldn_index(x, y, z, 10)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy + tuz; temp1[gpu_fieldn_index(x, y, z, 11)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy - tuz; temp1[gpu_fieldn_index(x, y, z, 12)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux - tuy; temp1[gpu_fieldn_index(x, y, z, 13)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy - tux; temp1[gpu_fieldn_index(x, y, z, 14)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux - tuz; temp1[gpu_fieldn_index(x, y, z, 15)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz - tux; temp1[gpu_fieldn_index(x, y, z, 16)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy - tuz; temp1[gpu_fieldn_index(x, y, z, 17)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz - tuy; temp1[gpu_fieldn_index(x, y, z, 18)] = wat*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); // 3d diagonal //flow cidot3u = tux + tuy + tuz; f1[gpu_fieldn_index(x, y, z, 19)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tuy - tux - tuz; f1[gpu_fieldn_index(x, y, z, 20)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux + tuy - tuz; f1[gpu_fieldn_index(x, y, z, 21)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz - tux - tuy; f1[gpu_fieldn_index(x, y, z, 22)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux + tuz - tuy; f1[gpu_fieldn_index(x, y, z, 23)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy - tux - tuz; f1[gpu_fieldn_index(x, y, z, 24)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy + tuz - tux; f1[gpu_fieldn_index(x, y, z, 25)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux - tuy - tuz; f1[gpu_fieldn_index(x, y, z, 26)] = wdr*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); //charge cidot3u = tux_c + tuy_c + tuz_c; h1[gpu_fieldn_index(x, y, z, 19)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tux_c -tuy_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 20)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux_c + tuy_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 21)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz_c - tux_c - tuy_c; h1[gpu_fieldn_index(x, y, z, 22)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux_c + tuz_c - tuy_c; h1[gpu_fieldn_index(x, y, z, 23)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy_c - tux_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 24)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy_c + tuz_c - tux_c; h1[gpu_fieldn_index(x, y, z, 25)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux_c - tuy_c - tuz_c; h1[gpu_fieldn_index(x, y, z, 26)] = wdc*(omusq_c + cidot3u*(1.0 + 0.5*cidot3u)); //temperature cidot3u = tux + tuy + tuz; temp1[gpu_fieldn_index(x, y, z, 19)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = -tux - tuy - tuz; temp1[gpu_fieldn_index(x, y, z, 20)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux + tuy - tuz; temp1[gpu_fieldn_index(x, y, z, 21)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuz - tux - tuy; temp1[gpu_fieldn_index(x, y, z, 22)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux + tuz - tuy; temp1[gpu_fieldn_index(x, y, z, 23)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy - tux - tuz; temp1[gpu_fieldn_index(x, y, z, 24)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tuy + tuz - tux; temp1[gpu_fieldn_index(x, y, z, 25)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); cidot3u = tux - tuy - tuz; temp1[gpu_fieldn_index(x, y, z, 26)] = wdt*(omusq + cidot3u*(1.0 + 0.5*cidot3u)); }
20,303
#include "Main.cuh" #include "Load.cuh" #include <iostream> #include <fstream> #include <sstream> #include <string> using namespace std; //Load the image void loadImage(int *image_array, int &width, int &height, int &grayscale, string &file) { string line; string dimensions[2]; int i = 0; cout << endl << "Loading image:" + file << endl; //Load .pgm (P2/ASCII Format) image into a 2D array. ifstream image_in(file); if (image_in) { getline(image_in, line);//Get .pgm "Magic number" if (line == "P2") { cout << "Valid P2/ASCII .pgm file found." << endl; } else{ errorExit("Not a valid File. Must be .pgm P2/ASCII."); } //Skip over any comments getline(image_in, line); while (line.at(0) == '#'){ getline(image_in, line); } //Get width and height dimensions of image //Use string stream to break line up into a string array then convert to ints stringstream ssin(line); while (ssin && i < 2){ ssin >> dimensions[i]; i++; } width = stoi(dimensions[0]);//Now convert strings to integers height = stoi(dimensions[1]); if (width > 1024 || height > 1024){//Change this check to accommodate larger images. Make sure enough memory is allocated. errorExit("Incorrect image dimensions. Max size is 1024x1024."); } else{ cout << "The image dimensions are : " << width << "x" << height << endl; } //Get grayscale value getline(image_in, line); grayscale = stoi(line);//String to int conversion cout << "The grayscale range for this image is 0 to " << grayscale << "." << endl; //Store numbers into the 2D int array for (int i = 0; i < width * height; i++){ image_in >> ws;//Extracts as many whitespace characters as possible from the current position in the input sequence. getline(image_in, line, ' '); image_array[i] = stoi(line); } image_in.close();//close ifstream } else{ errorExit("File not found."); } cout << "Finished loading image." << endl << endl; }
20,304
#include "includes.h" __global__ void kernel_push_atomic2( int *g_terminate, int *g_push_reser, int *s_push_reser, int *g_block_num, int width1) { int x = __umul24( blockIdx.x, blockDim.x ) + threadIdx.x ; int y = __umul24( blockIdx.y , blockDim.y ) + threadIdx.y ; int thid = __umul24( y , width1 ) + x ; if( s_push_reser[thid] - g_push_reser[thid] != 0) { g_terminate[blockIdx.y * (*g_block_num) + blockIdx.x] = 1 ; } }
20,305
#include <png.h> #include <zlib.h> #include <cassert> #include <cmath> #include <cstdlib> #include <iostream> #define MASK_N 2 #define MASK_X 5 #define MASK_Y 5 #define SCALE 8 // clang-format off __device__ int mask[MASK_N][MASK_X][MASK_Y] = { {{ -1, -4, -6, -4, -1}, { -2, -8,-12, -8, -2}, { 0, 0, 0, 0, 0}, { 2, 8, 12, 8, 2}, { 1, 4, 6, 4, 1}}, {{ -1, -2, 0, 2, 1}, { -4, -8, 0, 8, 4}, { -6,-12, 0, 12, 6}, { -4, -8, 0, 8, 4}, { -1, -2, 0, 2, 1}} }; // clang-format on int read_png(const char* filename, unsigned char** image, unsigned* height, unsigned* width, unsigned* channels) { unsigned char sig[8]; FILE* infile; infile = fopen(filename, "rb"); fread(sig, 1, 8, infile); if (!png_check_sig(sig, 8)) return 1; /* bad signature */ png_structp png_ptr; png_infop info_ptr; png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) return 4; /* out of memory */ info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { png_destroy_read_struct(&png_ptr, NULL, NULL); return 4; /* out of memory */ } png_init_io(png_ptr, infile); png_set_sig_bytes(png_ptr, 8); png_read_info(png_ptr, info_ptr); int bit_depth, color_type; png_get_IHDR(png_ptr, info_ptr, width, height, &bit_depth, &color_type, NULL, NULL, NULL); png_uint_32 i, rowbytes; png_bytep row_pointers[*height]; png_read_update_info(png_ptr, info_ptr); rowbytes = png_get_rowbytes(png_ptr, info_ptr); *channels = (int)png_get_channels(png_ptr, info_ptr); if ((*image = (unsigned char*)malloc(rowbytes * *height)) == NULL) { png_destroy_read_struct(&png_ptr, &info_ptr, NULL); return 3; } for (i = 0; i < *height; ++i) { row_pointers[i] = *image + i * rowbytes; } png_read_image(png_ptr, row_pointers); png_read_end(png_ptr, NULL); png_destroy_read_struct(&png_ptr, &info_ptr, NULL); return 0; } void write_png(const char* filename, png_bytep image, const unsigned height, const unsigned width, const unsigned channels) { FILE* fp = fopen(filename, "wb"); png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); png_infop info_ptr = png_create_info_struct(png_ptr); png_init_io(png_ptr, fp); png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); png_set_filter(png_ptr, 0, PNG_NO_FILTERS); png_write_info(png_ptr, info_ptr); png_set_compression_level(png_ptr, 0); png_bytep row_ptr[height]; for (int i = 0; i < height; ++i) { row_ptr[i] = image + i * width * channels * sizeof(unsigned char); } png_write_image(png_ptr, row_ptr); png_write_end(png_ptr, NULL); png_destroy_write_struct(&png_ptr, &info_ptr); fclose(fp); } __global__ void sobel_gpu(unsigned char* s, unsigned char* t, unsigned height, unsigned width, unsigned channels){ int x = blockIdx.x * blockDim.x + threadIdx.x; int y = blockIdx.y * blockDim.y + threadIdx.y; int i, v, u; int R, G, B; double val[MASK_N * 3] = {0.0}; int adjustX, adjustY, xBound, yBound; if((x>=0 && x < width) && (y>=0 && y<height)) { for (i = 0; i < MASK_N; ++i) { adjustX = (MASK_X % 2) ? 1 : 0; adjustY = (MASK_Y % 2) ? 1 : 0; xBound = MASK_X / 2; yBound = MASK_Y / 2; val[i * 3 + 2] = 0.0; val[i * 3 + 1] = 0.0; val[i * 3] = 0.0; for (v = -yBound; v < yBound + adjustY; ++v) { for (u = -xBound; u < xBound + adjustX; ++u) { if ((x + u) >= 0 && (x + u) < width && y + v >= 0 && y + v < height) { R = s[channels * (width * (y + v) + (x + u)) + 2]; G = s[channels * (width * (y + v) + (x + u)) + 1]; B = s[channels * (width * (y + v) + (x + u)) + 0]; val[i * 3 + 2] += R * mask[i][u + xBound][v + yBound]; val[i * 3 + 1] += G * mask[i][u + xBound][v + yBound]; val[i * 3 + 0] += B * mask[i][u + xBound][v + yBound]; } } } } double totalR = 0.0; double totalG = 0.0; double totalB = 0.0; for (i = 0; i < MASK_N; ++i) { totalR += val[i * 3 + 2] * val[i * 3 + 2]; totalG += val[i * 3 + 1] * val[i * 3 + 1]; totalB += val[i * 3 + 0] * val[i * 3 + 0]; } totalR = sqrt(totalR) / SCALE; totalG = sqrt(totalG) / SCALE; totalB = sqrt(totalB) / SCALE; const unsigned char cR = (totalR > 255.0) ? 255 : totalR; const unsigned char cG = (totalG > 255.0) ? 255 : totalG; const unsigned char cB = (totalB > 255.0) ? 255 : totalB; t[channels * (width * y + x) + 2] = cR; t[channels * (width * y + x) + 1] = cG; t[channels * (width * y + x) + 0] = cB; } } int main(int argc, char** argv) { assert(argc == 3); unsigned height, width, channels; unsigned char* src_img = NULL; read_png(argv[1], &src_img, &height, &width, &channels); assert(channels == 3); // src in GPU (device) unsigned char* src_cuda; cudaMalloc(&src_cuda, sizeof(unsigned char)* height * width * channels); cudaMemcpy(src_cuda, src_img, sizeof(unsigned char)* height * width * channels, cudaMemcpyHostToDevice); // dst in GPU (device) unsigned char* dst_img = (unsigned char*)malloc(height * width * channels * sizeof(unsigned char)); unsigned char* dst_cuda; cudaMalloc(&dst_cuda, sizeof(unsigned char)* height * width * channels); // 1204 threads in a block dim3 threadsPerBlock(32, 32); dim3 blocksPerGrid((width+31)/32, (height+31)/32); sobel_gpu<<<blocksPerGrid, threadsPerBlock>>>(src_cuda, dst_cuda, height, width, channels); cudaThreadSynchronize(); // passing dst_cuda to dst_img from device to host cudaMemcpy(dst_img, dst_cuda, sizeof(unsigned char)* height * width * channels, cudaMemcpyDeviceToHost); write_png(argv[2], dst_img, height, width, channels); cudaFree(src_cuda); cudaFree(dst_cuda); free(src_img); free(dst_img); return 0; }
20,306
#include <stdlib.h> #include <stdio.h> // Number of elements to put in the test array #define TEST_SIZE 16 #define NUM_BINS 10 //////////////////////////////////////////////////////////////// ////////////////// COPY EVERYTHING BELOW HERE ////////////////// //////////////////////////////////////////////////////////////// // Number of threads per block (1-d blocks) #define BLOCK_WIDTH 4 // Functions to reduce with #define ADD 0 #define MIN 1 #define MAX 2 // Device functions __device__ float addOp(float a, float b) { return a + b; } __device__ float minOp(float a, float b) { return a < b ? a : b; } __device__ float maxOp(float a, float b) { return a > b ? a : b; } // Perform a partial reduction // Only reduces per block, so this kernel may need to be called // multiple times to generate a complete reduction __global__ void reduceKernel(float* array, const size_t array_size, const unsigned int op, const size_t step) { __shared__ float temp[BLOCK_WIDTH]; int bx = blockIdx.x; int tx = threadIdx.x; int index = BLOCK_WIDTH * bx + tx; if(index < array_size) { temp[tx] = array[index * step]; } __syncthreads(); // Reduce for(int offset = BLOCK_WIDTH >> 1; offset > 0; offset >>= 1) { if(tx < offset) { switch(op) { case ADD: temp[tx] = addOp(temp[tx], temp[tx + offset]); break; case MIN: temp[tx] = minOp(temp[tx], temp[tx + offset]); break; case MAX: temp[tx] = maxOp(temp[tx], temp[tx + offset]); break; default: break; } } __syncthreads(); } if(index < array_size) { array[BLOCK_WIDTH * bx] = temp[0]; } } // Create a histogram with atomics __global__ void histogramKernel(unsigned int* d_hist, const float* const d_array, const size_t array_size, float max, float min, const size_t numBins) { int bx = blockIdx.x; int tx = threadIdx.x; int index = BLOCK_WIDTH * bx + tx; float range = max - min; // Initialize temp if(index < numBins) { d_hist[index] = 0; } __syncthreads(); if(index < array_size) { size_t bin = (size_t)((d_array[index] - min) * numBins / range ); atomicAdd(&d_hist[bin], 1); } } // This performs a partial exclusive scan (blockwise) using Blelloch's method __global__ void scanKernel(unsigned int* d_cdf, unsigned int* d_input, const size_t array_size) { __shared__ unsigned int temp[BLOCK_WIDTH<<1]; int bx = blockIdx.x; int tx = threadIdx.x; int index = BLOCK_WIDTH * bx + tx; int offset = 1; if(2*index + 1 < array_size) { temp[2*index] = d_input[2*index]; temp[2*index + 1] = d_input[2*index + 1]; } // Up-sweep for(int powOf2 = (2*BLOCK_WIDTH)>>1; powOf2 > 0; powOf2 >>= 1) { __syncthreads(); if(tx < powOf2) { int idx1 = offset*(2*tx + 1) - 1 + 2*BLOCK_WIDTH*bx; int idx2 = offset*(2*tx + 2) - 1 + 2*BLOCK_WIDTH*bx; temp[idx2] += temp[idx1]; } offset <<= 1; } __syncthreads(); ///// The below will need to be remembered for multiple blocks ///// if(tx == 0) { temp[2*BLOCK_WIDTH*(bx + 1) - 1] = 0; } // Down-sweep for(int powOf2 = 1; powOf2 < 2*BLOCK_WIDTH; powOf2 <<= 1) { offset >>= 1; __syncthreads(); if(tx < powOf2) { int idx1 = offset*(2*tx + 1) - 1 + 2*BLOCK_WIDTH*bx; int idx2 = offset*(2*tx + 2) - 1 + 2*BLOCK_WIDTH*bx; unsigned int t = temp[idx1]; temp[idx1] = temp[idx2]; temp[idx2] += t; } } __syncthreads(); if(2*index + 1 < array_size) { d_cdf[2*index] = temp[2*index]; d_cdf[2*index + 1] = temp[2*index + 1]; } } void reduce(float* d_array, const size_t array_size, float* result, unsigned int op) { float *d_array_copy; size_t mem_size = sizeof(float) * array_size; cudaMalloc((void**) &d_array_copy, mem_size); cudaMemcpy(d_array_copy, d_array, mem_size, cudaMemcpyDeviceToDevice); // First pass: size_t numBlocks = 1 + ((array_size - 1) / BLOCK_WIDTH); reduceKernel<<<numBlocks, BLOCK_WIDTH>>>(d_array_copy, array_size, op, 1); // Second pass: reduceKernel<<<1, BLOCK_WIDTH>>>(d_array_copy, array_size, op, BLOCK_WIDTH); cudaMemcpy(result, d_array_copy, sizeof(float), cudaMemcpyDeviceToHost); cudaFree(d_array_copy); } //d_hist, d_array, TEST_SIZE, reduce_result_max, reduce_result_min, numBins void histogram(unsigned int** d_hist, const float* const d_array, const size_t array_size, float max, float min, const size_t numBins) { cudaMalloc((void**) d_hist, sizeof(unsigned int) * numBins); size_t numBlocks = 1 + ((array_size - 1) / BLOCK_WIDTH); histogramKernel<<<numBlocks, BLOCK_WIDTH>>>( *d_hist, d_array, array_size, max, min, numBins ); } void scan(unsigned int** d_cdf, unsigned int* d_input, const size_t array_size) { cudaMalloc((void**) d_cdf, sizeof(unsigned int) * array_size); // Note the divide by 2 (a block can handle array of size 2*BLOCK_WIDTH) size_t numBlocks = (1 + ((array_size - 1) / BLOCK_WIDTH))/2; scanKernel<<<numBlocks, BLOCK_WIDTH>>>(*d_cdf, d_input, array_size); } //////////////////////////////////////////////////////////////// //////////////// EXCLUDE EVERYTHING BELOW HERE ///////////////// //////////////////////////////////////////////////////////////// void generateAndCopyTestValues(float** h_A, float** d_A, size_t size) { unsigned int mem_size = sizeof(float) * size; *h_A = (float*)malloc(mem_size); cudaMalloc((void**) d_A, mem_size); for(int i = 0; i < size; i++) { (*h_A)[i] = i+1; } cudaMemcpy(*d_A, *h_A, mem_size, cudaMemcpyHostToDevice); } void genTestValsCDF(unsigned int** h_A, unsigned int** d_A, size_t size) { unsigned int mem_size = sizeof(unsigned int) * size; *h_A = (unsigned int*)malloc(mem_size); cudaMalloc((void**) d_A, mem_size); for(int i = 0; i < size; i++) { (*h_A)[i] = i+1; } cudaMemcpy(*d_A, *h_A, mem_size, cudaMemcpyHostToDevice); } void prettyprint(float *h_A, size_t size) { // Lots of magic numbers if(size <= 16) { for(int i = 0; i < size; i++) { printf("%0.1f ", h_A[i]); } } else { for(int i = 0; i < 8; i++) { printf("%0.1f ", h_A[i]); } printf("... "); for(int i = 0; i < 8; i++) { printf("%0.1f ", h_A[size +i -8]); } } printf("\n"); } void prettyprint(unsigned int *h_A, size_t size) { // Lots of magic numbers if(size <= 16) { for(int i = 0; i < size; i++) { printf("%d ", h_A[i]); } } else { for(int i = 0; i < 8; i++) { printf("%d ", h_A[i]); } printf("... "); for(int i = 0; i < 8; i++) { printf("%d ", h_A[size +i -8]); } } printf("\n"); } int main(int argc, char** argv) { // Reduce float *h_array; float *d_array; float reduce_result_add; float reduce_result_max; float reduce_result_min; // Histogram unsigned int *h_hist; unsigned int *d_hist; size_t numBins = NUM_BINS; // CDF (exclusive scan - prefix sum) unsigned int *h_toBeScanned; unsigned int *d_toBeScanned; unsigned int *h_cdf; unsigned int *d_cdf; generateAndCopyTestValues(&h_array, &d_array, TEST_SIZE); printf("h_array = "); prettyprint(h_array, TEST_SIZE); // Perform reduce reduce(d_array, TEST_SIZE, &reduce_result_add, ADD); reduce(d_array, TEST_SIZE, &reduce_result_min, MIN); reduce(d_array, TEST_SIZE, &reduce_result_max, MAX); printf("reduce_result_add = %0.1f\n", reduce_result_add); printf("reduce_result_min = %0.1f\n", reduce_result_min); printf("reduce_result_max = %0.1f\n", reduce_result_max); // Perform histogram histogram(&d_hist, d_array, TEST_SIZE, reduce_result_max, reduce_result_min, numBins); // Host histogram (not to be used in student_func) h_hist = (unsigned int*)malloc(sizeof(unsigned int) * numBins); cudaMemcpy(h_hist, d_hist, sizeof(unsigned int) * numBins, cudaMemcpyDeviceToHost); printf("h_hist = "); prettyprint(h_hist, numBins); // Set up and perform exclusive scan genTestValsCDF(&h_toBeScanned, &d_toBeScanned, TEST_SIZE); printf("\nh_toBeScanned = "); prettyprint(h_toBeScanned, TEST_SIZE); scan(&d_cdf, d_toBeScanned, TEST_SIZE); h_cdf = (unsigned int*)malloc(sizeof(unsigned int) * TEST_SIZE); cudaMemcpy(h_cdf, d_cdf, sizeof(unsigned int) * TEST_SIZE, cudaMemcpyDeviceToHost); printf("h_cdf = "); prettyprint(h_cdf, TEST_SIZE); // Clean up free(h_array); free(h_hist); free(h_cdf); free(h_toBeScanned); cudaFree(d_array); cudaFree(d_hist); cudaFree(d_cdf); cudaFree(d_toBeScanned); return 0; }
20,307
/* * Copyright 1993-2015 NVIDIA Corporation. All rights reserved. * * Please refer to the NVIDIA end user license agreement (EULA) associated * with this source code for terms and conditions that govern your use of * this software. Any use, reproduction, disclosure, or distribution of * this software and related documentation outside the terms of the EULA * is strictly prohibited. * */ // Device code extern "C" __global__ void memMapIpc_kernel(char *ptr, int sz, char val) { // Dummy kernel int idx = blockIdx.x * blockDim.x + threadIdx.x; for (; idx < sz; idx += (gridDim.x * blockDim.x)) { ptr[idx] = val; } }
20,308
#include <stdio.h> //__device__ float Determinant(float *a,int n,float *temp); __device__ __shared__ float result[3]; __device__ void MatrixDeterminant(void *param) { float *input = (float *) param; int warp_size=32; int n = (int)input[0]; float* matrix = input+1; int thread = threadIdx.x % warp_size; float value =0; float *det = matrix +n*n; if(n < 1){ //Error return 0 value = 0; } else { if(n==1) value = matrix[0]; else if(n==2) value = matrix[0] * matrix[3] - matrix[2] * matrix[1]; else if (n==3){ if(thread < 3){ result[thread] = pow(-1.0,thread) *(matrix[thread]*(matrix[1*n + (thread+1)%3]*matrix[2*n + (thread+2)%3] - matrix[1*n + (thread+2)%3]*matrix[2 *n + (thread+1)%3])); } } else value = 0;//This program works only for n=1 to 3 } if(n==3 && thread ==0) { for(int i=0; i < n; i++) { value = value + result[i]; } *det = value; } else if(n<3) *det = value; } //Recursive function not working /* __device__ float Determinant(float *a,int n,float *m) { int i,j,j1,j2; float det = 0; printf("%dInput\n",n); if (n < 1) { * Error } else if (n == 1) { /* Shouldn't get used det = a[0]; } else if (n == 2) { det = a[0] * a[3] - a[2] * a[1]; } else { det = 0; for (j1=0;j1<n;j1++) { // m = (float *)malloc((n-1)*(n-1) * sizeof(float)); // for (i=0;i<n-1;i++) // m[i] = (float *)malloc((n-1)*sizeof(float)); for (i=1;i<n;i++) { j2 = 0; for (j=0;j<n;j++) { if (j == j1) continue; m[(i-1)*n+j2] = a[i * n + j]; j2++; } } det += pow(-1.0,1.0+j1+1.0) * a[j1] * Determinant(m,n-1,a); printf("%f Intermidiate det\n", det); // free(m); } } return(det); }*/
20,309
// #CSCS CUDA Training // // #Example 3 - transpose matrix // // #Author Ugo Varetto // // #Goal: compute the transpose of a matrix // // #Rationale: shows how to perform operations on a 2D grid and how to // use the GPU for data initializaion // // #Solution: straightworwad, simply compute the thread id associated with the element // and copy transposed data into output matrix // // #Code: typical flow: // 1) compute launch grid configuration // 2) allocate data on host(cpu) and device(gpu) // 3) initialize data directly on the GPU // 4) launch kernel // 5) read data back // 6) consume data (in this case print result) // 7) free memory // // #Compilation: nvcc -arch=sm_13 3_0_transpose.cu -o transpose // // #Execution: ./transpose // // #Note: kernel invocations ( foo<<<...>>>(...) ) are *always* asynchronous and a call to // cudaThreadSynchronize() is required to wait for the end of kernel execution from // a host thread; in case of synchronous copy operations like cudaMemcpy(...,cudaDeviceToHost) // kernel execution is guaranteed to be terminated before data are copied // // #Note: the code is C++ also because the default compilation mode for CUDA is C++, all functions // are named with C++ convention and the syntax is checked by default against C++ grammar rules // // #Note: -arch=sm_13 allows the code to run on every card with hw architecture GT200 (gtx 2xx) or better // // #Note: -arch=sm_13 is the lowest architecture version that supports double precision // // #Note: the example can be extended to read configuration data and matrix size from the command line //#include <cuda_runtime.h> // automatically added by nvcc #include <vector> #include <iostream> typedef float real_t; __global__ void transpose( const real_t* in, real_t *out, int num_rows, int num_columns ) { const int row = blockIdx.x * blockDim.x + threadIdx.x; const int col = blockIdx.y * blockDim.y + threadIdx.y; const int input_index = row * num_columns + col; const int output_index = col * num_rows + row; out[ output_index ] = in[ input_index ]; } __global__ void init_matrix( real_t* in ) { const int c = threadIdx.x + blockDim.x * blockIdx.x; const int r = threadIdx.y + blockDim.y * blockIdx.y; const int idx = c + gridDim.x * blockDim.x * r; in[ idx ] = (real_t) idx; } void print_matrix( const real_t* m, int r, int c ) { for( int i = 0; i != r; ++i ) { for( int j = 0; j != c; ++j ) std::cout << m[ i * c + j ] << ' '; std::cout << '\n'; } std::cout << std::endl; } //------------------------------------------------------------------------------ int main(int argc, char** argv ) { const int ROWS = 16; const int COLUMNS = 16; const dim3 BLOCKS( 4, 4 ); const dim3 THREADS_PER_BLOCK( 4, 4 ); const size_t SIZE = ROWS * COLUMNS * sizeof( real_t ); // device(gpu) storage real_t* dev_in = 0; real_t* dev_out = 0; cudaMalloc( &dev_in, SIZE ); cudaMalloc( &dev_out, SIZE ); // host(cpu) storage std::vector< real_t > outmatrix( ROWS * COLUMNS ); // initialize data with gpu kernel; faster than CPU for loops init_matrix<<<dim3( COLUMNS, ROWS ), 1>>>( dev_in ); cudaMemcpy( &outmatrix[ 0 ], dev_in, SIZE, cudaMemcpyDeviceToHost ); std::cout << "INPUT MATRIX - " << ROWS << " rows, " << COLUMNS << " columns" << std::endl; print_matrix( &outmatrix[ 0 ], ROWS, COLUMNS ); // invoke transpose kernel transpose<<<BLOCKS, THREADS_PER_BLOCK>>>( dev_in, dev_out, ROWS, COLUMNS ); // copy output data from device(gpu) to host(cpu) cudaMemcpy( &outmatrix[ 0 ], dev_out, SIZE, cudaMemcpyDeviceToHost ); // print result std::cout << "\nOUTPUT MATRIX - " << COLUMNS << " rows, " << ROWS << " columns" << std::endl; print_matrix( &outmatrix[ 0 ], COLUMNS, ROWS ); // free memory cudaFree( dev_in ); cudaFree( dev_out ); return 0; }
20,310
#if GOOGLE_CUDA #define EIGEN_USE_GPU extern "C" __global__ void default_function_kernel0(const float* __restrict__ Data, const float* __restrict__ K0, const float* __restrict__ K1, const float* __restrict__ K2, float* __restrict__ Output) { float Output_local[8]; __shared__ float pad_temp_shared[256]; __shared__ float K0_shared[6]; __shared__ float K1_shared[6]; __shared__ float K2_shared[24]; for (int nn_inner_outer = 0; nn_inner_outer < 4; ++nn_inner_outer) { for (int hh_inner_outer = 0; hh_inner_outer < 2; ++hh_inner_outer) { for (int ww_inner_outer = 0; ww_inner_outer < 2; ++ww_inner_outer) { Output_local[0] = 0.000000e+00f; Output_local[1] = 0.000000e+00f; Output_local[2] = 0.000000e+00f; Output_local[3] = 0.000000e+00f; Output_local[4] = 0.000000e+00f; Output_local[5] = 0.000000e+00f; Output_local[6] = 0.000000e+00f; Output_local[7] = 0.000000e+00f; for (int rc_outer = 0; rc_outer < 16; ++rc_outer) { __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = (((((1 - (((int)threadIdx.x) / 8)) - (((int)threadIdx.y) * 2)) <= ((((int)blockIdx.y) * 16) + (hh_inner_outer * 8))) && ((1 - ((((int)threadIdx.x) * 2) % 16)) <= (ww_inner_outer * 16))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) - 33)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = (((((1 - (((((int)threadIdx.x) * 2) + 1) / 16)) - (((int)threadIdx.y) * 2)) <= ((((int)blockIdx.y) * 16) + (hh_inner_outer * 8))) && ((1 - (((((int)threadIdx.x) * 2) + 1) % 16)) <= (ww_inner_outer * 16))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) - 33)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if ((((int)threadIdx.z) * 3) < ((18 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6))]; } } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = ((((1 - (((int)threadIdx.x) / 8)) - (((int)threadIdx.y) * 2)) <= ((((int)blockIdx.y) * 16) + (hh_inner_outer * 8))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) - 32)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = ((((1 - (((((int)threadIdx.x) * 2) + 1) / 16)) - (((int)threadIdx.y) * 2)) <= ((((int)blockIdx.y) * 16) + (hh_inner_outer * 8))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) - 32)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if ((((int)threadIdx.z) * 3) < ((18 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 6)]; } } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = (((((1 - (((int)threadIdx.x) / 8)) - (((int)threadIdx.y) * 2)) <= ((((int)blockIdx.y) * 16) + (hh_inner_outer * 8))) && ((ww_inner_outer * 16) < (31 - ((((int)threadIdx.x) * 2) % 16)))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) - 31)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = (((((1 - (((((int)threadIdx.x) * 2) + 1) / 16)) - (((int)threadIdx.y) * 2)) <= ((((int)blockIdx.y) * 16) + (hh_inner_outer * 8))) && ((ww_inner_outer * 16) < (31 - (((((int)threadIdx.x) * 2) + 1) % 16)))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) - 31)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if ((((int)threadIdx.z) * 3) < ((18 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 12)]; } } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = (((1 - ((((int)threadIdx.x) * 2) % 16)) <= (ww_inner_outer * 16)) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) - 1)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = (((1 - (((((int)threadIdx.x) * 2) + 1) % 16)) <= (ww_inner_outer * 16)) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) - 1)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if ((((int)threadIdx.z) * 3) < ((12 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 18)]; } } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = ((bool)1 ? Data[(((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16))] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = ((bool)1 ? Data[(((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16))] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if ((((int)threadIdx.z) * 3) < ((12 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 24)]; } } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = (((ww_inner_outer * 16) < (31 - ((((int)threadIdx.x) * 2) % 16))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) + 1)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = (((ww_inner_outer * 16) < (31 - (((((int)threadIdx.x) * 2) + 1) % 16))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) + 1)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if ((((int)threadIdx.z) * 3) < ((12 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 30)]; } } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = (((((((int)blockIdx.y) * 16) + (hh_inner_outer * 8)) < ((31 - (((int)threadIdx.x) / 8)) - (((int)threadIdx.y) * 2))) && ((1 - ((((int)threadIdx.x) * 2) % 16)) <= (ww_inner_outer * 16))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) + 31)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = (((((((int)blockIdx.y) * 16) + (hh_inner_outer * 8)) < ((31 - (((((int)threadIdx.x) * 2) + 1) / 16)) - (((int)threadIdx.y) * 2))) && ((1 - (((((int)threadIdx.x) * 2) + 1) % 16)) <= (ww_inner_outer * 16))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) + 31)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 36)]; } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = ((((((int)blockIdx.y) * 16) + (hh_inner_outer * 8)) < ((31 - (((int)threadIdx.x) / 8)) - (((int)threadIdx.y) * 2))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) + 32)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = ((((((int)blockIdx.y) * 16) + (hh_inner_outer * 8)) < ((31 - (((((int)threadIdx.x) * 2) + 1) / 16)) - (((int)threadIdx.y) * 2))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) + 32)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 42)]; } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); __syncthreads(); pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2))] = (((((((int)blockIdx.y) * 16) + (hh_inner_outer * 8)) < ((31 - (((int)threadIdx.x) / 8)) - (((int)threadIdx.y) * 2))) && ((ww_inner_outer * 16) < (31 - ((((int)threadIdx.x) * 2) % 16)))) ? Data[((((((((((nn_inner_outer * 32768) + ((((((int)threadIdx.y) * 16) + ((int)threadIdx.x)) / 64) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + ((((int)threadIdx.x) * 2) % 16)) + 33)] : 0.000000e+00f); pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + (((int)threadIdx.x) * 2)) + 1)] = (((((((int)blockIdx.y) * 16) + (hh_inner_outer * 8)) < ((31 - (((((int)threadIdx.x) * 2) + 1) / 16)) - (((int)threadIdx.y) * 2))) && ((ww_inner_outer * 16) < (31 - (((((int)threadIdx.x) * 2) + 1) % 16)))) ? Data[((((((((((nn_inner_outer * 32768) + (((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) / 128) * 16384)) + (((int)threadIdx.z) * 16384)) + (rc_outer * 1024)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + ((((((((int)threadIdx.y) * 32) + (((int)threadIdx.x) * 2)) + 1) % 128) / 16) * 32)) + (ww_inner_outer * 16)) + (((((int)threadIdx.x) * 2) + 1) % 16)) + 33)] : 0.000000e+00f); if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { if (((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) < (16 - rc_outer)) { K0_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K0[((((rc_outer * 6) + (((int)threadIdx.z) * 3)) + ((int)threadIdx.x)) + ((int)threadIdx.y))]; } } } } if ((((int)threadIdx.z) * 3) < ((6 - ((int)threadIdx.y)) - ((int)threadIdx.x))) { if (((int)threadIdx.x) < (3 - ((int)threadIdx.y))) { if (((int)threadIdx.x) < 1) { K1_shared[(((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y))] = K1[(((((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) / 6) * 18) + ((((((int)threadIdx.z) * 3) + ((int)threadIdx.x)) + ((int)threadIdx.y)) % 6)) + 48)]; } } } if ((((int)threadIdx.z) * 3) < (6 - (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4))) { if (((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) < (24 - ((int)threadIdx.x))) { if ((((int)threadIdx.y) * 3) < (12 - ((int)threadIdx.x))) { if (((int)threadIdx.x) < 3) { K2_shared[(((((int)threadIdx.z) * 12) + (((int)threadIdx.y) * 3)) + ((int)threadIdx.x))] = K2[((((((int)threadIdx.z) * 48) + ((((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) / 4) * 16)) + (((int)blockIdx.z) * 4)) + (((((int)threadIdx.y) * 3) + ((int)threadIdx.x)) % 4))]; } } } } __syncthreads(); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[0])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[1])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[2])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[0]) * K1_shared[0]) * K2_shared[3])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[4])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[5])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[6])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[1]) * K1_shared[1]) * K2_shared[7])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[8])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[9])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[10])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[2]) * K1_shared[2]) * K2_shared[11])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[12])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[13])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[14])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[3]) * K1_shared[3]) * K2_shared[15])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[16])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[17])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[18])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[4]) * K1_shared[4]) * K2_shared[19])); Output_local[0] = (Output_local[0] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[1] = (Output_local[1] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[20])); Output_local[2] = (Output_local[2] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[3] = (Output_local[3] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[21])); Output_local[4] = (Output_local[4] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[5] = (Output_local[5] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[22])); Output_local[6] = (Output_local[6] + (((pad_temp_shared[(((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x))] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); Output_local[7] = (Output_local[7] + (((pad_temp_shared[((((((int)threadIdx.z) * 128) + (((int)threadIdx.y) * 32)) + ((int)threadIdx.x)) + 16)] * K0_shared[5]) * K1_shared[5]) * K2_shared[23])); } Output[((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x))] = Output_local[0]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 32)] = Output_local[1]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 1024)] = Output_local[2]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 1056)] = Output_local[3]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 2048)] = Output_local[4]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 2080)] = Output_local[5]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 3072)] = Output_local[6]; Output[(((((((((nn_inner_outer * 32768) + (((int)threadIdx.z) * 16384)) + (((int)blockIdx.z) * 4096)) + (((int)blockIdx.y) * 512)) + (hh_inner_outer * 256)) + (((int)threadIdx.y) * 64)) + (ww_inner_outer * 16)) + ((int)threadIdx.x)) + 3104)] = Output_local[7]; } } } } void Conv2dCpFusedNchwKernelLauncher(const float* U, const float* K0, const float* K1, const float* K2, float* V){ dim3 gridDim0(1, 2, 4); dim3 blockDim0(16, 4, 2); default_function_kernel0<<<gridDim0, blockDim0>>>(U, K0, K1, K2, V); cudaDeviceSynchronize(); } #endif
20,311
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <iostream> #include <time.h> #include <stdio.h> #include <stdlib.h> #define N 5 #define BLOCK_DIM 10 using namespace std; __global__ void sum_Matrices_Normal (int *a, int *b, int *c) { int columna = blockIdx.x * blockDim.x + threadIdx.x; int fila = blockIdx.y * blockDim.y + threadIdx.y; int id = columna + fila * N; if (columna < N && fila < N) { c[id] = a[id] + b[id]; } } __global__ void sum_Matrices_fila (int *a, int *b, int *c) { int columna = blockIdx.x * blockDim.x + threadIdx.x; int fila = blockIdx.y * blockDim.y + threadIdx.y; for(int i=columna; i<N; i++){ int id = i + fila * N; c[id] = a[id] + b[id]; } } __global__ void sum_Matrices_columna (int *a, int *b, int *c) { int columna = blockIdx.x * blockDim.x + threadIdx.x; int fila = blockIdx.y * blockDim.y + threadIdx.y; for(int i=fila; i<N; i++){ int id = columna + i * N; c[id] = a[id] + b[id]; } } void imprimir_Matriz(int matrix[N][N]){ for(int i=0;i<N;i++){ for(int j=0; j<N; j++){ cout<<matrix[i][j]<<' '; } cout<<endl; } } void imprimir_vector(int vector[N]){ for(int j=0; j<N; j++){ cout<<vector[j]<<' '; } } int main() { int a[N][N], b[N][N], c[N][N]; int *dev_a, *dev_b, *dev_c; int size = N * N * sizeof(int); srand(time(NULL)); for(int i=0; i<N; i++) for (int j=0; j<N; j++){ a[i][j] = 1; b[i][j] = 1; } imprimir_Matriz(a); cout<<endl; imprimir_Matriz(b); cudaMalloc((void**)&dev_a, size); cudaMalloc((void**)&dev_b, size); cudaMalloc((void**)&dev_c, size); cudaMemcpy(dev_a, a, size, cudaMemcpyHostToDevice); cudaMemcpy(dev_b, b, size, cudaMemcpyHostToDevice); dim3 dimBlock(N,N); // cuantos threads se ejecutaran juntos y que compartiran memoria en un sigle proccessor dim3 dimGrid(1,1); // un grupo de thread block que se ejecutan en un sigle cuda program logically in parallel sum_Matrices_Normal<<<dimGrid,dimBlock>>>(dev_a,dev_b,dev_c); //sum_Matrices_fila<<<dimGrid,dimBlock>>>(dev_a,dev_b,dev_c); //sum_Matrices_columna<<<dimGrid,dimBlock>>>(dev_a,dev_b,dev_c); cudaDeviceSynchronize(); cudaMemcpy(c, dev_c, size, cudaMemcpyDeviceToHost); cout<<endl; for(int i=0; i<N; i++){ for (int j=0; j<N; j++){ printf("%d ", c[i][j] ); } printf("\n"); } cudaFree(dev_a); cudaFree(dev_b); cudaFree(dev_c); return 0; }
20,312
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <iostream> #include <numeric> #include <math.h> using namespace std; __global__ void max(int* input, int n) { const int tid = threadIdx.x; int step_size = 1; int number_of_threads = blockDim.x; while (number_of_threads > 0) { if (tid < number_of_threads) { const int fst = tid * step_size * 2; const int snd = fst + step_size; if(snd < n) { if(input[snd] > input[fst]) input[fst] = input[snd]; } } step_size *= 2; if(number_of_threads == 1) break; number_of_threads = (int)ceil((float)number_of_threads/2.0); // divide number of threads by 2 __syncthreads(); } } int main() { int count; int result; int* d; cout<<"\nEnter the number of elements : "; cin>>count; const int size = count * sizeof(int); int *h; h = new int[count]; cout<<"\nEnter the elements : \n"; for(int i=0;i<count;i++) cin>>h[i]; //h[i] = rand()%1000 cudaMalloc(&d, size); cudaMemcpy(d, h, size, cudaMemcpyHostToDevice); max <<<1, ceil((float)count/2.0) >>>(d , count); cudaMemcpy(&result, d, sizeof(int), cudaMemcpyDeviceToHost); cout << "Max is " << result << endl; getchar(); cudaFree(d); delete[] h; return 0; } /* PS D:\MyFiles\Projects\LP1-LabAsg\1-HPC> nvcc ParRedMax.cu -o ParRedMax ParRedMax.cu Creating library ParRedMax.lib and object ParRedMax.exp PS D:\MyFiles\Projects\LP1-LabAsg\1-HPC> nvprof ./ParRedMax Enter the number of elements : 4 Enter the elements : 67 3 78 32 ==10688== NVPROF is profiling process 10688, command: ./ParRedMax Max is 78 ==10688== Profiling application: ./ParRedMax ==10688== Profiling result: Type Time(%) Time Calls Avg Min Max Name GPU activities: 60.33% 2.4330us 1 2.4330us 2.4330us 2.4330us max(int*, int) 25.39% 1.0240us 1 1.0240us 1.0240us 1.0240us [CUDA memcpy HtoD] 14.28% 576ns 1 576ns 576ns 576ns [CUDA memcpy DtoH] API calls: 74.44% 154.08ms 1 154.08ms 154.08ms 154.08ms cudaMalloc 25.25% 52.275ms 1 52.275ms 52.275ms 52.275ms cuDevicePrimaryCtxRelease 0.13% 277.30us 97 2.8580us 100ns 178.30us cuDeviceGetAttribute 0.06% 130.30us 1 130.30us 130.30us 130.30us cudaFree 0.04% 82.600us 2 41.300us 24.900us 57.700us cudaMemcpy 0.04% 80.300us 1 80.300us 80.300us 80.300us cuModuleUnload 0.01% 28.900us 1 28.900us 28.900us 28.900us cudaLaunchKernel 0.01% 27.100us 1 27.100us 27.100us 27.100us cuDeviceTotalMem 0.00% 9.5000us 1 9.5000us 9.5000us 9.5000us cuDeviceGetPCIBusId 0.00% 2.3000us 2 1.1500us 200ns 2.1000us cuDeviceGet 0.00% 2.0000us 3 666ns 300ns 900ns cuDeviceGetCount 0.00% 800ns 1 800ns 800ns 800ns cuDeviceGetName 0.00% 400ns 1 400ns 400ns 400ns cuDeviceGetLuid 0.00% 300ns 1 300ns 300ns 300ns cuDeviceGetUuid */
20,313
#include "includes.h" #define THREADS 256 #define BLOCKS 32 #define NUM THREADS*BLOCKS int seed_var =1239; __global__ void work_efficient_scan_kernel(int *X, int *Y, int InputSize) { extern __shared__ int XY[]; int i= blockIdx.x*blockDim.x+ threadIdx.x; if (i < InputSize) { XY[threadIdx.x] = X[i]; } for (unsigned int stride = 1; stride < blockDim.x; stride *= 2) { __syncthreads(); int index = (threadIdx.x+1) * 2* stride -1; if (index < blockDim.x) { XY[index] += XY[index -stride]; } } for (int stride = THREADS/4; stride > 0; stride /= 2) { __syncthreads(); int index = (threadIdx.x+1)*stride*2 -1; if(index + stride < THREADS) { XY[index + stride] += XY[index]; } } __syncthreads(); Y[i] = XY[threadIdx.x]; //OWN CODE __syncthreads(); if(threadIdx.x < blockIdx.x) { XY[threadIdx.x] = Y[threadIdx.x*blockDim.x + (blockDim.x-1)]; } __syncthreads(); for(unsigned int stride =0; stride < blockIdx.x; stride++) { Y[i] += XY[stride]; } __syncthreads(); }
20,314
#include <curand_kernel.h> #include <curand.h> #include <stdio.h> #include <stdlib.h> #include <chrono> #include <iostream> // #define NUM_ITER 10000000000 //#define grid_size 1 // #define BLOCK_SIZE 1 #define MAX_THREADS 2048*12 __global__ void calc_pi(uint64_t *counts, int iterations, int block_size) { extern __shared__ int counter[]; counter[threadIdx.x] = 0; int id = threadIdx.x + blockDim.x * blockIdx.x; int seed = id; curandState_t rng; curand_init(clock64(), seed, 0, &rng); float x, y, z; for(int i = 0; i < iterations; i++){ x = curand_uniform(&rng); y = curand_uniform(&rng); z = sqrt((x*x) + (y*y)); if(z <= 1){ counter[threadIdx.x] += 1; } } __syncthreads(); // Do we need to sync warps?? if (threadIdx.x == 0) { counts[blockIdx.x] = 0; for (int i = 0; i < block_size; i++) { counts[blockIdx.x] += counter[i]; } } } int main(int argc, char* argv[]) { uint64_t num_iter = std::stol(argv[1]); int block_size = std::stol(argv[2]); int grid_size = MAX_THREADS/block_size; int n_thread_iterations = num_iter/(block_size * grid_size); printf("Total iterations %ld grid_size %d \n", num_iter, grid_size); uint64_t *h_total_counter, *d_total_counter; h_total_counter = new uint64_t[grid_size]; cudaMalloc(&d_total_counter, sizeof(uint64_t) * grid_size); auto gpu_start = std::chrono::steady_clock::now(); calc_pi<<<grid_size, block_size, block_size*sizeof(int)>>>(d_total_counter, n_thread_iterations, block_size); cudaMemcpy(h_total_counter, d_total_counter, sizeof(uint64_t) * grid_size, cudaMemcpyDeviceToHost); auto gpu_end = std::chrono::steady_clock::now(); std::chrono::duration<double> elapsed_gpu_seconds = gpu_end-gpu_start; uint64_t total = 0; for(int i = 0; i < grid_size; i++){ total += h_total_counter[i]; } float pi = 4 * total/(float)num_iter; printf("PI: %f\n", pi); std::cout << "GPU Execution Time" << " " << elapsed_gpu_seconds.count() << std::endl; }
20,315
///////////////////////// // matrixVecMult.cu // // Andrew Krepps // // Module 6 Assignment // // 3/12/2018 // ///////////////////////// #include <chrono> #include <stdio.h> #include <stdlib.h> #define MAX_SIZE 8192 /////////////////////////////////////////////////////////////////////////////// /// \brief perform matrix vector multiplication for a single output element /// /// \param [in] inMat the input matrix /// \param [in] inVec the input vector /// \param [out] outVec the output vector /// \param [in] m the number of matrix rows and the output vector length /// \param [in] n the number of matrix columns and the input vector length /////////////////////////////////////////////////////////////////////////////// __device__ void performMatVecMult( const float* inMat, const float* inVec, float* outVec, const unsigned int m, const unsigned int n) { const unsigned int outIdx = blockIdx.x*blockDim.x + threadIdx.x; if (outIdx < m) { // intermediate results are stored in registers // before being written back to the output float sum = 0.0f; unsigned int matRowStart = outIdx*n; for (unsigned int i = 0; i < n; i++) { unsigned int matIdx = matRowStart + i; sum += inMat[matIdx]*inVec[i]; } outVec[outIdx] = sum; } } /////////////////////////////////////////////////////////////////////////////// /// \brief perform matrix vector multiplication using global memory /// /// \param [in] inMat the input matrix /// \param [in] inVec the input vector /// \param [out] outVec the output vector /// \param [in] m the number of matrix rows and the output vector length /// \param [in] n the number of matrix columns and the input vector length /////////////////////////////////////////////////////////////////////////////// __global__ void matVecMultGlobalMem( const float* inMat, const float* inVec, float* outVec, const unsigned int m, const unsigned int n) { // we're just using global memory, so directly perform multiplication performMatVecMult(inMat, inVec, outVec, m, n); } /////////////////////////////////////////////////////////////////////////////// // \brief constant memory for storing input vector /////////////////////////////////////////////////////////////////////////////// __constant__ float inVecConstantMem[MAX_SIZE]; /////////////////////////////////////////////////////////////////////////////// /// \brief perform matrix vector mutiplication using constant memory /// /// This assumes that the input vector has already been copied to constant /// memory using the symbol inVecConstantMem /// /// \param [in] inMat the input matrix /// \param [out] outVec the output vector /// \param [in] m the number of matrix rows and the output vector length /// \param [in] n the number of matrix columns and the input vector length /////////////////////////////////////////////////////////////////////////////// __global__ void matVecMultConstantMem( const float* inMat, float* outVec, const unsigned int m, const unsigned int n) { // perform the multiplication using input vector bound to constant memory performMatVecMult(inMat, inVecConstantMem, outVec, m, n); } /////////////////////////////////////////////////////////////////////////////// /// \brief perform matrix vector multiplication using shared memory /// /// \param [in] inMat the input matrix /// \param [in] inVec the input vector /// \param [out] outVec the output vector /// \param [in] m the number of matrix rows and the output vector length /// \param [in] n the number of matrix columns and the input vector length /////////////////////////////////////////////////////////////////////////////// __global__ void matVecMultSharedMem( const float* inMat, const float* inVec, float* outVec, const unsigned int m, const unsigned int n) { // load input vector into shared memory for each block extern __shared__ float inVecSharedMem[]; const unsigned int localIdx = threadIdx.x; // input vector could be larger than the block size, // so we need to figure out which elements each thread // is responsible for copying over to shared memory const unsigned int elementsToCopy = n/blockDim.x + 1; const unsigned int startElement = localIdx*elementsToCopy; for (unsigned int i = 0; i < elementsToCopy; ++i) { unsigned int dataIdx = startElement + i; if (dataIdx < n) { inVecSharedMem[dataIdx] = inVec[dataIdx]; } } __syncthreads(); // after all data is loaded, perform multiplication using vector in shared memory performMatVecMult(inMat, inVecSharedMem, outVec, m, n); } /////////////////////////////////////////////////////////////////////////////// /// \brief initialize input data on the host /// /// \param [out] mat the input matrix /// \param [out] vec the input vector /// \param [in] m the number of matrix rows /// \param [in] n the number of matrix columns and the input vector length /////////////////////////////////////////////////////////////////////////////// void initializeInputData( float* mat, float* vec, const unsigned int m, const unsigned int n) { for (unsigned int i = 0; i < m; ++i) { for (unsigned int j = 0; j < n; ++j) { const unsigned int matIdx = i*n + j; mat[matIdx] = matIdx*0.01f; } vec[i] = i*0.1f; } } /////////////////////////////////////////////////////////////////////////////// /// \brief launch a kernel to perform matrix vector multiplication /// /// \param [in] kernel the kernel index (i.e., memory type) to use /// \param [in] blockSize the number of threads per block to use /// \param [in] inMat the input matrix (on the device) /// \param [in] inVec the input vector (on the device) /// \param [out] outVec the output vector (on the device) /// \param [in] m the number of matrix rows and the output vector length /// \param [in] n the number of matrix columns and the input vector length /// /// \returns the kernel execution time (in ms) /////////////////////////////////////////////////////////////////////////////// float launchKernel( const unsigned int kernel, const unsigned int blockSize, const float* inMat, const float* inVec, float* outVec, const unsigned int m, const unsigned int n) { const unsigned int numBlocks = m/blockSize; // start clock and launch kernel auto start = std::chrono::high_resolution_clock::now(); switch (kernel) { case 0: matVecMultGlobalMem<<<numBlocks, blockSize>>>(inMat, inVec, outVec, m, n); break; case 1: matVecMultConstantMem<<<numBlocks, blockSize>>>(inMat, outVec, m, n); break; case 2: matVecMultSharedMem<<<numBlocks, blockSize, n*sizeof(float)>>>(inMat, inVec, outVec, m, n); break; default: printf("Invalid kernel index: %d\n", kernel); } // wait for GPU kernel to finish cudaThreadSynchronize(); // calculate execution time in ms auto stop = std::chrono::high_resolution_clock::now(); std::chrono::duration<float> duration(stop - start); return duration.count()*1000.0f; } /////////////////////////////////////////////////////////////////////////////// /// \brief allocate device memory and run a kernel to perform matrix vector /// multiplication /// /// \param [in] kernel the kernel index (i.e., memory type) to use /// \param [in] kernel the kernel index (i.e., memory type) to use /// \param [in] blockSize the number of threads per block to use /// \param [in] inMat the input matrix (on the host) /// \param [in] inVec the input vector (on the host) /// \param [out] outVec the output vector (on the host) /// \param [in] m the number of matrix rows and the output vector length /// \param [in] n the number of matrix columns and the input vector length /// /// \returns the kernel execution time (in ms) not including data transfer /////////////////////////////////////////////////////////////////////////////// float runTimingTest( const unsigned int kernel, const unsigned int blockSize, const float* inMat, const float* inVec, float* outVec, const unsigned int m, const unsigned int n) { // allocate device memory float* d_inMat; float* d_inVec; float* d_outVec; const unsigned int matrixElements = m*n; const unsigned int matrixBytes = matrixElements*sizeof(float); const unsigned int vectorBytes = n*sizeof(float); cudaMalloc((void**)&d_inMat, matrixBytes); cudaMalloc((void**)&d_inVec, vectorBytes); cudaMalloc((void**)&d_outVec, vectorBytes); // copy input data to device cudaMemcpy(d_inMat, inMat, matrixBytes, cudaMemcpyHostToDevice); cudaMemcpy(d_inVec, inVec, vectorBytes, cudaMemcpyHostToDevice); float ms = launchKernel(kernel, blockSize, d_inMat, d_inVec, d_outVec, m, n); // copy output data to host cudaMemcpy(outVec, d_outVec, vectorBytes, cudaMemcpyDeviceToHost); // free device memory cudaFree(d_inMat); cudaFree(d_inVec); cudaFree(d_outVec); return ms; } int main(int argc, char** argv) { // configure run unsigned int dataSize = 512; unsigned int blockSize = 256; if (argc > 1) { dataSize = atoi(argv[1]); } if (argc > 2) { blockSize = atoi(argv[2]); } if (dataSize > MAX_SIZE) { dataSize = MAX_SIZE; printf("Warning: data size exceeds maximum limit. Setting to %d.\n", dataSize); } // allocate and initialize host memory const unsigned int matrixBytes = dataSize*dataSize*sizeof(float); const unsigned int vectorBytes = dataSize*sizeof(float); float* inMat = (float*)malloc(matrixBytes); float* inVec = (float*)malloc(vectorBytes); float* outVec = (float*)malloc(vectorBytes); initializeInputData(inMat, inVec, dataSize, dataSize); // initialize input vector in constant memory for later cudaMemcpyToSymbol(inVecConstantMem, inVec, vectorBytes); // dummy executions to avoid startup performance hit for (unsigned int kernel = 0; kernel < 3; ++kernel) { runTimingTest(kernel, blockSize, inMat, inVec, outVec, dataSize, dataSize); } // run timing comparisons for (unsigned int kernel = 0; kernel < 3; ++kernel) { switch (kernel) { case 0: printf("Running global memory kernel: "); break; case 1: printf("Running constant memory kernel: "); break; case 2: printf("Running shared memory kernel "); break; default: printf("Invalid kernel index: %d\n", kernel); } float ms = runTimingTest(kernel, blockSize, inMat, inVec, outVec, dataSize, dataSize); printf("Kernel took %.6f ms to run\n", ms); // print output of kernel for (unsigned int i = 0; i < dataSize; ++i) { //printf("outVec[%d] = %f\n", i, outVec[i]); } } // free host memory free(inMat); free(inVec); free(outVec); }
20,316
#include <stdio.h> __global__ void print() { printf("block = %d, thread = %d\n", blockIdx.x, threadIdx.x); } int main() { print<<<3,3>>>(); cudaDeviceSynchronize(); }
20,317
#include "includes.h" __global__ void multiplyBy2_self(int size, long *inout) { const int ix = threadIdx.x + blockIdx.x * blockDim.x; if (ix < size) { inout[ix] = inout[ix] * 2; } }
20,318
#include <cuda.h> #include <thrust/device_vector.h> #include <thrust/fill.h> #include <thrust/host_vector.h> #include <thrust/sequence.h> #include <thrust/transform.h> #include <iostream> using namespace std; #define N 10 #define V 0.2 #define T 2 #define CUDA_CHECK_RETURN(value) ((cudaError_t)value != cudaSuccess) ? printf("Error %s at line %d in the file %s\n", cudaGetErrorString((cudaError_t)value), __LINE__, __FILE__) : printf("") struct functor { const float koef; functor(float _koef) : koef(_koef){} __host__ __device__ float operator()(float x, float y) { return y + koef * (x - y); } }; void iteration(float _koef, thrust::device_vector<float> &x, thrust::device_vector<float> &y) { functor func(_koef); thrust::transform(x.begin(), x.end(), y.begin(), y.begin(), func); } __global__ void kernel(float *f, float *res) { int cur = threadIdx.x + blockDim.x * blockIdx.x; int prev = cur - 1; if(prev == -1) { prev = N - 1; } res[cur] = f[cur] + (V * T) * (f[prev] - f[cur]); } int main() { float *Function = new float[N]; float *FunctionData = new float[N]; float *frez; float *tempa; cudaEvent_t start, stop; float time; CUDA_CHECK_RETURN(cudaEventCreate(&start)); CUDA_CHECK_RETURN(cudaEventCreate(&stop)); for (int i = 0; i < N; i++) { FunctionData[i] = rand() % 100; Function[i] = FunctionData[i]; } CUDA_CHECK_RETURN(cudaMalloc((void **)&frez, N * sizeof(float))); CUDA_CHECK_RETURN(cudaMalloc((void **)&tempa, N * sizeof(float))); CUDA_CHECK_RETURN(cudaMemcpy(tempa, Function, N * sizeof(float), cudaMemcpyHostToDevice)); CUDA_CHECK_RETURN(cudaEventSynchronize(start)); CUDA_CHECK_RETURN(cudaEventRecord(start, 0)); for(int i = 0; i < 1000; i++) { kernel <<< 1, N >>> (tempa, frez); CUDA_CHECK_RETURN(cudaMemcpy(Function, frez, N * sizeof(float), cudaMemcpyDeviceToHost)); //CUDA_CHECK_RETURN(cudaMemcpy(tempa, frez, N * sizeof(float), cudaMemcpyHostToDevice)); /*for(int i = 0; i < N; i++) { cout << Function[i] << " "; } cout << endl;*/ } CUDA_CHECK_RETURN(cudaDeviceSynchronize()); CUDA_CHECK_RETURN(cudaEventRecord(stop, 0)); CUDA_CHECK_RETURN(cudaEventSynchronize(stop)); CUDA_CHECK_RETURN(cudaEventElapsedTime(&time, start, stop)); printf("CUDA: %f ms\n", time); thrust::host_vector<float> cpumem1(N); thrust::host_vector<float> cpumem2(N); for (int i = 0; i < N; i++) { cpumem1[i] = FunctionData[i]; if(i - 1 >= 0) { cpumem2[i] = FunctionData[i - 1]; } else { cpumem2[i] = FunctionData[N - 1]; } } thrust::device_vector<float> gpumem1 = cpumem1; thrust::device_vector<float> gpumem2 = cpumem2; CUDA_CHECK_RETURN(cudaEventSynchronize(start)); CUDA_CHECK_RETURN(cudaEventRecord(start, 0)); for(int i = 0; i < 1000; i++) { iteration(V * T, gpumem2, gpumem1); /*for(int i = 0; i < N; i++) { cout << gpumem1[i] << " "; } cout << endl;*/ thrust::copy(gpumem1.begin(), gpumem1.end(), gpumem2.begin()); /* thrust::copy(cpumem1.begin(), cpumem1.end(), gpumem1.begin()); thrust::copy(cpumem2.begin(), cpumem2.end(), gpumem2.begin());*/ /*for(int i = 0; i < N; i++) { if(i - 1 >= 0) { gpumem2[i] = gpumem1[i - 1]; } else { gpumem2[i] = gpumem1[N - 1]; } }*/ } CUDA_CHECK_RETURN(cudaDeviceSynchronize()); CUDA_CHECK_RETURN(cudaEventRecord(stop, 0)); CUDA_CHECK_RETURN(cudaEventSynchronize(stop)); CUDA_CHECK_RETURN(cudaEventElapsedTime(&time, start, stop)); printf("Thrust: %f ms\n", time); return 0; }
20,319
struct boundingVolume{ float3 u_f_r; float3 u_f_l; float3 u_b_r; float3 u_b_l; float3 lo_f_r; float3 lo_f_l; float3 lo_b_r; float3 lo_b_l; }; // class CellIDs{ // public: // int *cellIDArray; // int *objectIDArray; // CellIDs(){ // cellIDArray = (int*)malloc(sizeof(int)*8*OBJECT_COUNT); // objectIDArray = (int*)malloc(sizeof(int)*8*OBJECT_COUNT); // } // }; // CellIDs h_cellIDs, d_cellIDS;
20,320
#include "includes.h" // fill an image with a chekcer_board (BGR) __global__ void replace_image_by_distance_kernel(const unsigned char *pImage, const float* pDepth, const unsigned char *pBackground, unsigned char *result, const float max_value, const unsigned int width, const unsigned int height, const unsigned int image_channels) { const int x = blockIdx.x * blockDim.x + threadIdx.x; const int y = blockIdx.y * blockDim.y + threadIdx.y; if (y >= height || x >= width) return; // get the depth of the current pixel float z_distance = pDepth[y * width + x]; // replace part of the view int index = (y * width + x) * 3; if (isfinite(z_distance) && (z_distance > max_value)) { result[index] = pBackground[index]; result[index + 1] = pBackground[index + 1]; result[index + 2] = pBackground[index + 2]; } else { if (image_channels == 1)//gray image { int img_index = y * width + x; result[index] = pImage[img_index]; result[index + 1] = pImage[img_index]; result[index + 2] = pImage[img_index]; } else//color image { int img_index = (y * width + x) * image_channels; result[index] = pImage[img_index]; result[index + 1] = pImage[img_index + 1]; result[index + 2] = pImage[img_index + 2]; } } }
20,321
#ifndef __UTEPOCH_CU__ #define __UTEPOCH_CU__ #include <stdio.h> #include "sac.cuh" long long int time2utepoch(int year,int jday,int hour,int min,int sec,int msec,int usec) { long long int kk=1000000; long long int k=1000; long long int utepoch; int a4=year/4-!(year & 3); int a100=a4/25; int a400=a100/4; int intervening_leap_days=a4-a100+a400-477; int days=(365*(year-1970)+intervening_leap_days+jday-1); utepoch=(60*(60*((long long int)24*days+hour)+min)+sec)*kk+msec*k+usec; return utepoch; } long long int sactime2utepoch(SACHEAD hd,char mark) { long long int kk=1000000; long long int utepoch; float marktime=0; int year,jday,hour,min,sec,msec; year=hd.nzyear; jday=hd.nzjday; hour=hd.nzhour; min=hd.nzmin; sec=hd.nzsec; msec=hd.nzmsec; if( mark=='b') marktime = hd.b; else if(mark=='e') marktime=hd.e; utepoch=time2utepoch(year,jday,hour,min,sec,msec,0)+(long long int)((double)marktime*kk+0.5); return(utepoch); } #endif
20,322
//pass //--blockDim=1024 --gridDim=1 --no-inline #include <cuda.h> #include <stdio.h> #define N 2 //1024 __global__ void definitions (int* A, unsigned int* B, unsigned long long int* C) { atomicMin(A,10); atomicMin(B,1); atomicMin(C,5); }
20,323
#include <fstream> #include <iostream> #include <string> #include <vector> #include <sstream> #include <algorithm> #include <cuda_runtime.h> #include <math.h> #include <device_launch_parameters.h> int* readfile(const char* filename, int* size); /***************************************************** while !stable propose in parallel block accept/reject in parallel block *****************************************************/ __device__ bool stable; __device__ bool no_match; __device__ bool gpu_reduced_size_empty; __global__ void p1_proposal(int* preference_lists, int* proposal_to, int* proposed_to, int N) { int row = blockIdx.x * blockDim.x + threadIdx.x; stable = true; if (row < N) { __syncthreads(); if (proposed_to[row] >= (N-1)) { no_match = true; return; } // if proposal was rejected, or havent proposed to anyone yet if (proposal_to[row] == N) { proposal_to[row] = preference_lists[row * N + proposed_to[row] + 1]; } } } __global__ void p1_rejection(int* preference_lists, int* proposal_to, int* proposal_from, int* proposed_to, int N) { int row = blockIdx.x * blockDim.x + threadIdx.x; int proposee; if (row < N) { __syncthreads(); proposee = proposal_to[row]; int op = N; for (int i = 0; i < (N-1); i++) { if (preference_lists[proposee * N + i + 1] == row) { op = i; break; } } if (op == N) { no_match = true; return; } int op_curr = N; for (int i = 0; i < (N-1); i++) { if (preference_lists[proposee * N + i + 1] == proposal_from[proposee*N]) { op_curr = i; break; } } if (op < op_curr) { if (proposal_from[proposee*N] != N) { proposal_to[proposal_from[proposee*N]] = N; stable = false; } proposal_from[proposee*N + op + 1] = row; } else if (op == op_curr) { } else { stable = false; } atomicAdd(&proposed_to[row], 1); __syncthreads(); } } __global__ void p1_accept(int* proposal_from, int* proposal_to, int* C, int* rank, int N) { int i = threadIdx.x; int j = blockIdx.x; if (i < N && j < N) { C[j * N + i] = N; if (proposal_from[j * N + i] != N) { C[j * N + i] = rank[j * N + proposal_from[j * N + i]]; } for (int d = 1; d < N; d *= 2) { if (i - d >= 0) { if (C[j * N + i] > C[j * N + i - d]) { C[j * N + i] = C[j * N + i - d]; } } __syncthreads(); } if (C[j * N + i] != N) { proposal_from[j * N] = proposal_from[j * N + i]; } if (i != 0) { proposal_from[j * N + i] = N; } } } __global__ void p1_evaluate(int* proposal_from, int* proposal_to, int N) { int i = threadIdx.x; if (i < N) { proposal_to[i] = N; __syncthreads(); if (proposal_from[i * N] != N) { proposal_to[proposal_from[i * N]] = i; } else { stable = false; } __syncthreads(); } } __global__ void p1_remove(int* preference_lists, int* proposal_from, int* rank, int N) { int i = threadIdx.x; int j = blockIdx.x; if (i < (N - 1) && j < N) { if (rank[j * N + i] > rank[j * N + proposal_from[j * N]] && rank[j * N + i] != N) { preference_lists[j * N + rank[j * N + i]] = N; preference_lists[i * N + rank[i * N + j]] = N; } } } __global__ void p1_shift(int* preference_lists, int* reduced_size, int N) { int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < N) { int count = 0; for (int d = 0; d < N; d++) { if (preference_lists[i * N + d] != N) { preference_lists[i * N + count++] = preference_lists[i * N + d]; } } reduced_size[i] = count - 1; if (reduced_size[i] <= 0) { no_match = true; return; } while (count < N) { preference_lists[i * N + count++] = N; } } } __global__ void get_rank(int* preference_lists, int N, int* rank, int* reduced_size) { int i = threadIdx.x; int j = blockIdx.x; if (i < N && j < N) { rank[j * N + i] = N; if (i < reduced_size[j] + 1) { rank[j * N + preference_lists[j * N + i]] = i; } if (i == j) { rank[j * N + i] = N; } } __syncthreads(); } __global__ void p2_remove(int* preference_lists, int* reduced_size, int* rotations, int N, int* rank, int count) { int i = blockIdx.x * blockDim.x + threadIdx.x; __syncthreads(); if (i < count) { if (rotations[i] != N) { if (i % 2 == 1)//odd { preference_lists[rotations[i] * N + rank[rotations[i] * N + rotations[i - 1]]] = N; atomicSub(&reduced_size[rotations[i]], 1); if (reduced_size[rotations[i]] == 0) { no_match = true; return; } } else //even { preference_lists[rotations[i] * N + rank[rotations[i] * N + rotations[i + 1]]] = N; atomicSub(&reduced_size[rotations[i]], 1); if (reduced_size[rotations[i]] == 0) { no_match = true; return; } } } } } __global__ void p2_getSecondLastChoice(int* preference_lists, int* last_choice, int* second_choice, int* reduced_size, int N) { int i = threadIdx.x; int j = blockIdx.x; if (i < N && j < N) { if (preference_lists[j * N + i] < N && reduced_size[j] > 1) { // second choice if (i == 2) { second_choice[j] = preference_lists[j * N + i]; } // last choice needs to be size if (i == reduced_size[j]) { last_choice[j] = preference_lists[j * N + i]; } } else if (reduced_size[j] == 0) { no_match = true; return; } } } __global__ void get_reduced_sizes(int* reduced_size, int N) { int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < N) { if (reduced_size[i] <= 0) { gpu_reduced_size_empty = true; } } } __global__ void fill_matching_zeros(int* matching, int N) { int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < N) { matching[i] = 0; } } __global__ void fill_matching(int* preference_lists, int* matching, int N) { int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < N) { matching[i] = preference_lists[i * N + 1]; } } std::vector<int> stable_roommate(std::vector<std::vector<int>> preference_lists_vector, int N) { int NUM_BLOCKS; int NUM_THREADS; if (N % 32) { NUM_BLOCKS = N + (32 - N % 32); NUM_THREADS = N + (32 - N % 32); } else { NUM_BLOCKS = N; NUM_THREADS = N; } int* gpu_preference_lists; int* gpu_proposal_to; int* gpu_proposal_from; int* gpu_proposed_to; int* gpu_matching; int* gpu_reduced_size; int* gpu_second_choice; int* gpu_last_choice; int* gpu_rotations; int* gpu_C; int* preference_lists = new int[N*N]; for (int i = 0; i < N; i++) { preference_lists[i*N] = i; for (int j = 1; j < N; j++) { preference_lists[i*N+j] = preference_lists_vector[i][j-1]; } } int* proposal_from = new int[N*N]; proposal_from = (int *)calloc(N*N, sizeof(*proposal_from)); std::replace(proposal_from, proposal_from + N*N, 0, N); int *proposed_to = new int[N]; proposed_to = (int *)calloc(N, sizeof(*proposed_to)); int *proposal_to = new int[N]; proposal_to = (int *)calloc(N, sizeof(*proposal_to)); std::replace(proposal_to, proposal_to + N, 0, N); int* reduced_size = new int[N]; reduced_size = (int*)calloc(N, sizeof(*reduced_size)); std::replace(reduced_size, reduced_size + N, 0, N-1); int* second_choice = new int[N]; second_choice = (int*)calloc(N, sizeof(*second_choice)); std::replace(second_choice, second_choice + N, 0, N); int* last_choice = new int[N]; last_choice = (int*)calloc(N, sizeof(*last_choice)); std::replace(last_choice, last_choice + N, 0, N); int* rotations = new int[N * N]; rotations = (int*)calloc(N * N, sizeof(*rotations)); std::replace(rotations, rotations + N * N, 0, N); int* C = new int[N * N]; C = (int*)calloc(N * N, sizeof(*C)); std::replace(C, C + N * N, 0, N); int *matching = new int[N]; matching = (int *)calloc(N, sizeof(*matching)); cudaMalloc(&gpu_preference_lists, N * N * sizeof(int)); cudaMalloc(&gpu_proposal_to, N * sizeof(int)); cudaMalloc(&gpu_proposal_from, N * N * sizeof(int)); cudaMalloc(&gpu_proposed_to, N * sizeof(int)); cudaMalloc(&gpu_matching, N * sizeof(int)); cudaMalloc(&gpu_reduced_size, N * sizeof(int)); cudaMalloc(&gpu_second_choice, N * sizeof(int)); cudaMalloc(&gpu_last_choice, N * sizeof(int)); cudaMalloc(&gpu_rotations, N * N * sizeof(int)); cudaMalloc(&gpu_C, N * N * sizeof(int)); bool stable_host; bool no_match_host; bool reduced_size_empty; stable_host = false; no_match_host = false; cudaMemcpy(gpu_preference_lists, preference_lists, N * N * sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(gpu_proposal_to, proposal_to, N * sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(gpu_proposal_from, proposal_from, N * N * sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(gpu_proposed_to, proposed_to, N * sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(gpu_C, C, N * N * sizeof(int), cudaMemcpyHostToDevice); int* rank; cudaMalloc(&rank, N * N * sizeof(int)); cudaMemcpy(gpu_reduced_size, reduced_size, N * sizeof(int), cudaMemcpyHostToDevice); get_rank <<<NUM_BLOCKS, NUM_THREADS >>> (gpu_preference_lists, N, rank, gpu_reduced_size); while (!(stable_host) && !(no_match_host)) { p1_proposal<<<1, NUM_THREADS>>> (gpu_preference_lists, gpu_proposal_to, gpu_proposed_to, N); cudaDeviceSynchronize(); p1_rejection<<<1, NUM_THREADS>>> (gpu_preference_lists, gpu_proposal_to, gpu_proposal_from, gpu_proposed_to, N); cudaDeviceSynchronize(); p1_accept<<<NUM_BLOCKS, NUM_THREADS>>> (gpu_proposal_from, gpu_proposal_to, gpu_C, rank, N); cudaDeviceSynchronize(); p1_evaluate <<<1, NUM_THREADS>>> (gpu_proposal_from, gpu_proposal_to, N); cudaMemcpyFromSymbol(&stable_host, stable, sizeof(stable_host), 0, cudaMemcpyDeviceToHost); cudaMemcpyFromSymbol(&no_match_host, no_match, sizeof(no_match_host), 0, cudaMemcpyDeviceToHost); } if (!no_match_host) { int* rank; cudaMalloc(&rank, N * N * sizeof(int)); cudaMemcpy(gpu_reduced_size, reduced_size, N * sizeof(int), cudaMemcpyHostToDevice); get_rank <<<NUM_BLOCKS, NUM_THREADS>>> (gpu_preference_lists, N, rank, gpu_reduced_size); p1_remove <<<NUM_BLOCKS, NUM_THREADS>>> (gpu_preference_lists, gpu_proposal_from, rank, N); cudaDeviceSynchronize(); cudaMemcpy(gpu_reduced_size, reduced_size, N * sizeof(int), cudaMemcpyHostToDevice); p1_shift <<<1, NUM_THREADS>>> (gpu_preference_lists, gpu_reduced_size, N); cudaDeviceSynchronize(); cudaMemcpyFromSymbol(&no_match_host, no_match, sizeof(no_match_host), 0, cudaMemcpyDeviceToHost); p2_getSecondLastChoice <<<NUM_BLOCKS, NUM_THREADS>>> (gpu_preference_lists, gpu_last_choice, gpu_second_choice, gpu_reduced_size, N); cudaDeviceSynchronize(); } stable_host = false; // get rotations while (!(stable_host) && !(no_match_host)) { stable_host = true; for (int i = 0; i < N; i++) { cudaMemcpy(reduced_size, gpu_reduced_size, N * sizeof(int), cudaMemcpyDeviceToHost); cudaMemcpy(second_choice, gpu_second_choice, N * sizeof(int), cudaMemcpyDeviceToHost); cudaMemcpy(last_choice, gpu_last_choice, N * sizeof(int), cudaMemcpyDeviceToHost); rotations = (int*)calloc(N * N, sizeof(*rotations)); std::replace(rotations, rotations + N * N, 0, N); if (reduced_size[i] > 1) { stable_host = false; int counter = 0; bool cycle_complete = false; rotations[counter] = second_choice[i]; counter++; while (!cycle_complete) { if (counter % 2 == 0) { rotations[counter] = second_choice[rotations[counter-1]]; } else { rotations[counter] = last_choice[rotations[counter-1]]; } if (rotations[counter] == i) { cycle_complete = true; } counter++; } int* rank; int num_threads_counter; if (counter % 32) { num_threads_counter = counter + (32 - counter % 32); } else { num_threads_counter = counter; } cudaMalloc(&rank, N * N * sizeof(int)); cudaMemcpy(gpu_rotations, rotations, N * N * sizeof(int), cudaMemcpyHostToDevice); get_rank <<<NUM_BLOCKS, NUM_THREADS>>> (gpu_preference_lists, N, rank, gpu_reduced_size); cudaDeviceSynchronize(); p2_remove <<<1, num_threads_counter>>> (gpu_preference_lists, gpu_reduced_size, gpu_rotations, N, rank, counter); cudaDeviceSynchronize(); p1_shift <<<1, NUM_THREADS>>> (gpu_preference_lists, gpu_reduced_size, N); cudaDeviceSynchronize(); p2_getSecondLastChoice <<<NUM_BLOCKS, NUM_THREADS>>> (gpu_preference_lists, gpu_last_choice, gpu_second_choice, gpu_reduced_size, N); cudaDeviceSynchronize(); cudaMemcpyFromSymbol(&no_match_host, no_match, sizeof(no_match_host), 0, cudaMemcpyDeviceToHost); } } } reduced_size_empty = false; get_reduced_sizes <<<1, NUM_THREADS>>> (gpu_reduced_size, N); cudaMemcpyFromSymbol(&reduced_size_empty, gpu_reduced_size_empty, sizeof(reduced_size_empty), 0, cudaMemcpyDeviceToHost); cudaMemcpy(gpu_matching, matching, N * sizeof(int), cudaMemcpyHostToDevice); if (no_match_host || reduced_size_empty) { fill_matching_zeros <<<1, NUM_THREADS>>> (gpu_matching, N); } else { fill_matching <<<1, NUM_THREADS>>> (gpu_preference_lists, gpu_matching, N); } cudaDeviceSynchronize(); cudaMemcpy(matching, gpu_matching, N * sizeof(int), cudaMemcpyDeviceToHost); std::vector<int> matching_vector(matching, matching + N); cudaFree(gpu_preference_lists); cudaFree(gpu_proposal_to); cudaFree(gpu_proposal_from); cudaFree(gpu_proposed_to); cudaFree(gpu_matching); cudaFree(gpu_reduced_size); cudaFree(gpu_second_choice); cudaFree(gpu_last_choice); cudaFree(gpu_rotations); return matching_vector; } int main() { // 2d vector for the preference lists std::vector<std::vector<int>> preference_lists; int N = 0; std::vector<int> matching; // input file std::ifstream f("inp.txt"); // get line std::string line; // while another line to get while (std::getline(f, line)) { // inner vector std::vector<int> row; std::stringstream ss(line); std::string data; // numbers are separated by commas while (std::getline(ss, data, ',')) { // put numbers in vector row.push_back(std::stoi(data)); } // put vector in 2d vector preference_lists.push_back(row); N++; } matching = stable_roommate(preference_lists, N); // output to file std::fstream file; file.open("outp_p.txt", std::ios::out); // if all 0s, no matches. fill with zeros if (std::adjacent_find(matching.begin(), matching.end(), std::not_equal_to<>()) == matching.end()) { // print results to text file file << "NULL" << "\n"; } else { for (int i = 0; i < matching.size(); i++) { file << matching[i] << "\n"; } } file.close(); return 0; }
20,324
/* Group Members : Jose Garcia Kameron Bush Collatz code for CS 4380 / CS 5351 Copyright (c) 2019 Texas State University. All rights reserved. Redistribution in source or binary form, with or without modification, is *not* permitted. Use in source and binary forms, with or without modification, is only permitted for academic use in CS 4380 or CS 5351 at Texas State University. 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. Author: Martin Burtscher */ #include <cstdio> #include <algorithm> #include <cuda.h> #include <sys/time.h> static const int ThreadsPerBlock = 512; static __global__ void collatz(const long upper, int const maxlen[]) { // compute sequence lengths //*********has to be only odds************* const int i = (threadIdx.x + blockIdx.x * (long)blockDim.x) * 2 + 1; long val = i; int len = 1; while (val != 1) { len++; if ((val % 2) == 0) { val = val / 2; // even } else { val = 3 * val + 1; // odd } } int * temp = (int *)maxlen[0]; if (len > *temp) { //***********check if pointer correct******** atomicMax(temp, len); int temp2 = *temp; maxlen = &temp2; } } static void CheckCuda() { cudaError_t e; cudaDeviceSynchronize(); if (cudaSuccess != (e = cudaGetLastError())) { fprintf(stderr, "CUDA error %d: %s\n", e, cudaGetErrorString(e)); exit(-1); } } int main(int argc, char *argv[]) { printf("Collatz v1.2\n"); // check command line if (argc != 2) {fprintf(stderr, "USAGE: %s upper_bound\n", argv[0]); exit(-1);} const long upper = atol(argv[1]); if (upper < 5) {fprintf(stderr, "ERROR: upper_bound must be at least 5\n"); exit(-1);} if ((upper % 2) != 1) {fprintf(stderr, "ERROR: upper_bound must be an odd number\n"); exit(-1);} printf("upper bound: %ld\n", upper); //Initalize int* const maxlen = new int [1]; maxlen[0] = 0; // allocate vectors on GPU int* d_maxlen; if (cudaSuccess != cudaMalloc((void **)&d_maxlen, 1)) {fprintf(stderr, "ERROR: could not allocate memory\n"); exit(-1);} // initialize vectors on GPU if (cudaSuccess != cudaMemcpy(d_maxlen, maxlen, 1, cudaMemcpyHostToDevice)) {fprintf(stderr, "ERROR: copying to device failed\n"); exit(-1);} // start time timeval start, end; gettimeofday(&start, NULL); // execute timed code //**********************see if number of threads correct collatz<<<(upper + ThreadsPerBlock - 1) / ThreadsPerBlock, ThreadsPerBlock>>>(upper, d_maxlen); cudaDeviceSynchronize(); // end time gettimeofday(&end, NULL); const double runtime = end.tv_sec - start.tv_sec + (end.tv_usec - start.tv_usec) / 1000000.0; printf("compute time: %.4f s\n", runtime); // get result from GPU CheckCuda(); if (cudaSuccess != cudaMemcpy(maxlen, d_maxlen, 1, cudaMemcpyDeviceToHost)) {fprintf(stderr, "ERROR: copying from device failed\n"); exit(-1);} // print result printf("longest sequence: %d elements\n", maxlen[0]); cudaFree(d_maxlen); delete [] maxlen; return 0; }
20,325
#include <stdio.h> #include <stdlib.h> #include <math.h> // CUDA kernel. Each thread takes care of one element of c __global__ void matAdd(double *a, double *b, double *c, int n) { // Get our global thread ID int id = blockIdx.x*blockDim.x+threadIdx.x; // Make sure we do not go out of bounds - should be the same as before if (id < n) c[id] = a[id] + b[id]; } // CUDA Kernel. Each thread adds a whole row. __global__ void matAddRow(double *a, double *b, double *c, int n){ // Get our global thread ID int id = blockIdx.x*blockDim.x+threadIdx.x; // loop over your row int add = id*n; int i; for(i = 0; i < n; i++){ c[add + i] = a[add + i] + b[add + i]; } } // CUDA Kernel. Each thread adds a whole column. __global__ void matAddCol(double *a, double *b, double *c, int n){ // Get our global thread ID int id = blockIdx.x*blockDim.x+threadIdx.x; // loop over column int i; for( i = 0; i < n ; i++){ c[i*n + id] = a[i*n + id] + b[i*n + id]; } } int main( int argc, char* argv[] ) { // Size of matrices col * row int n = 1024; //how many data points there are 1024*1024 int nsquared = 1048576; // Host input matrix double *h_a; double *h_b; //Host output matrix double *h_c; // Device input matrix double *d_a; double *d_b; //Device output matrix double *d_c; // Size, in bytes, of each matrix size_t bytes = nsquared*sizeof(double); // Allocate memory for each matrix on host h_a = (double*)malloc(bytes); h_b = (double*)malloc(bytes); h_c = (double*)malloc(bytes); // Allocate memory for each matrix on GPU cudaMalloc(&d_a, bytes); cudaMalloc(&d_b, bytes); cudaMalloc(&d_c, bytes); int row_id; // Initialize matrix on host // Simple initialize for now for( row_id = 0; row_id < nsquared; row_id++ ) { h_a[row_id] = 4; h_b[row_id] = 1; } //print input matrix int col_id; printf("INPUT A: \n"); for(row_id = 0; row_id < 5; row_id++){ for(col_id = 0; col_id < 5; col_id++){ printf("%d ", (int)h_a[n*row_id + col_id]); } printf("\n"); } printf("INPUT A: \n"); for(row_id = 0; row_id < 5; row_id++){ for(col_id = 0; col_id < 5; col_id++){ printf("%d ", (int)h_b[n*row_id + col_id]); } printf("\n"); } // Copy host matrices to device cudaMemcpy( d_a, h_a, bytes, cudaMemcpyHostToDevice); cudaMemcpy( d_b, h_b, bytes, cudaMemcpyHostToDevice); int blockSize, gridSize; // Number of threads in each thread block blockSize = 1024; // Number of thread blocks in grid 1024 gridSize = (int)ceil((float)nsquared/blockSize); // Execute the kernel add each thread for one output matAdd<<<gridSize, blockSize>>>(d_a, d_b, d_c, nsquared); // Copy array back to host cudaMemcpy( h_c, d_c, bytes, cudaMemcpyDeviceToHost ); // Sum up vector c and print result divided by n, this should equal 1 within error //print out 5x5 printf("OUPUT C: \n"); for( row_id = 0; row_id < 5; row_id++){ for( col_id = 0; col_id < 5; col_id++){ printf("%d ", (int)h_c[n*row_id + col_id]); } printf("\n"); } // redo gridSize gridSize = (int)ceil((float)n/blockSize); // Execute the kernel, each thread for one row -- don't need to reset memory since dA and dB should be 1 matAddRow<<<gridSize, blockSize>>>(d_a, d_b, d_c, n); // Copy array back to host cudaMemcpy( h_c, d_c, bytes, cudaMemcpyDeviceToHost ); // execute other kernel for column -- same as above matAddCol<<<gridSize, blockSize>>>(d_a, d_b, d_c, n); // Copy array back to host cudaMemcpy( h_c, d_c, bytes, cudaMemcpyDeviceToHost ); // Release device memory cudaFree(d_a); cudaFree(d_b); cudaFree(d_c); // Release host memory free(h_a); free(h_b); free(h_c); printf("done\n"); return 0; }
20,326
/* ============================================================================ Name : cuda.c Author : Version : Copyright : Your copyright notice Description : Hello World in C, Ansi-style ============================================================================ */ #include<stdio.h> #include <cuda.h> #include<cuda_runtime.h> __global__ static void quicksort(int* values,int N) { #define MAX_LEVELS 300 int pivot, L, R; int idx = threadIdx.x + blockIdx.x * blockDim.x; int start[MAX_LEVELS]; int end[MAX_LEVELS]; start[idx] = idx; end[idx] = N - 1; while (idx >= 0) { L = start[idx]; R = end[idx]; if (L < R) { pivot = values[L]; while (L < R) { while (values[R] >= pivot && L < R) R--; if(L < R) values[L++] = values[R]; while (values[L] < pivot && L < R) L++; if (L < R) values[R--] = values[L]; } values[L] = pivot; start[idx + 1] = L + 1; end[idx + 1] = end[idx]; end[idx++] = L; if (end[idx] - start[idx] > end[idx - 1] - start[idx - 1]) { // swap start[idx] and start[idx-1] int tmp = start[idx]; start[idx] = start[idx - 1]; start[idx - 1] = tmp; // swap end[idx] and end[idx-1] tmp = end[idx]; end[idx] = end[idx - 1]; end[idx - 1] = tmp; } } else idx--; } } int main(){ int x[20],size,i; int *d_x,*d_size,*d_i; printf("Enter size of the array: "); scanf("%d",&size); printf("Enter %d elements: ",size); for(i=0;i<size;i++) scanf("%d",&x[i]); cudaMalloc((void **)&d_x,sizeof(int)*size); cudaMalloc((void **)&d_size,sizeof(int)); cudaMalloc((void **)&d_i,sizeof(int)); cudaMemcpy(d_x, &x, sizeof( int)*size, cudaMemcpyHostToDevice); cudaMemcpy(d_size, &size, sizeof( int), cudaMemcpyHostToDevice); cudaMemcpy(d_i, &i, sizeof( int), cudaMemcpyHostToDevice); quicksort<<<1,1,size>>>(d_x,size); cudaMemcpy(x, d_x, sizeof(int)*size, cudaMemcpyDeviceToHost); printf("Sorted elements: "); for(i=0;i<size;i++) printf(" %d",x[i]); cudaFree(d_x); cudaFree(d_size); cudaFree(d_i); return 0; }
20,327
/// @file /// @copyright 2016- The Science and Technology Facilities Council (STFC) /// @author Florent Lopez #include <stdio.h> #include <limits> #include <cuda_runtime.h> #include <cuda_runtime_api.h> // #define BLOCK_SIZE 128 // Number of threads // #define BLOCK_SIZE 16 // Number of threads #define BLOCK_SIZE 32 // Number of threads namespace /* anon */ { template<typename T> __global__ void cu_calc_ld( int m, int n, T *const l, int ldl, T *const d, double *ld, int ldld) { int bx = blockIdx.x; int by = blockIdx.y; int tx = threadIdx.x; int ty = threadIdx.y; // if (tx == 0 && ty == 0) // printf("[cu_calc_ld] m = %d, n = %d\n", m, n); for (int col = ty + by * blockDim.y; col < n; col += blockDim.y * gridDim.y) { // Check if we are halfway trhough a 2x2 pivot // if (col+1 < n && !std::isfinite(d[2*col])) // continue; if((col+1==n || std::isfinite(d[2*col+2])) && std::isfinite(d[2*col])) { // 1x1 pivot T d11 = d[2*col]; if(d11 != 0.0) d11 = 1/d11; for(int row = tx + bx * blockDim.x; row < m; row += blockDim.x * gridDim.x) ld[col*ldld+row] = d11 * l[col*ldl+row]; } // else { else if (std::isfinite(d[2*col])) { // else if (d[2*col]==std::numeric_limits<T>::infinity()) { // 2x2 pivot T d11 = d[2*col]; T d21 = d[2*col+1]; T d22 = d[2*col+3]; // printf("[cu_calc_ld] d11 = %f, d21 = %f, d22 = %f\n", d11, d21, d22); T det = d11*d22 - d21*d21; d11 = d11/det; d21 = d21/det; d22 = d22/det; for(int row = tx + bx * blockDim.x; row < m; row += blockDim.x * gridDim.x) { T a1, a2; a1 = l[col*ldl+row]; a2 = l[(col+1)*ldl+row]; ld[col*ldld+row] = d22*a1 - d21*a2; ld[(col+1)*ldld+row] = -d21*a1 + d11*a2; } } } } // template<typename T> // __global__ void // cu_calc_ld( // int m, // int n, // T *const l, int ldl, // T *const d, // double *ld, int ldld) { // // printf("[cu_calc_ld] blockIdx.x = %d\n", blockIdx.x); // for (int col = 0; col < n; ) { // if(col+1==n || std::isfinite(d[2*col+2])) { // // 1x1 pivot // // printf("[cu_calc_ld] 1x1\n"); // T d11 = d[2*col]; // if(d11 != 0.0) d11 = 1/d11; // for(int row = threadIdx.x + blockIdx.x * blockDim.x; row < m; row += blockDim.x * gridDim.x) // ld[col*ldld+row] = d11 * l[col*ldl+row]; // col++; // } // else { // // 2x2 pivot // // printf("[cu_calc_ld] 2x2\n"); // T d11 = d[2*col]; // T d21 = d[2*col+1]; // T d22 = d[2*col+3]; // // printf("[cu_calc_ld] d11 = %f, d21 = %f, d22 = %f\n", d11, d21, d22); // T det = d11*d22 - d21*d21; // d11 = d11/det; // d21 = d21/det; // d22 = d22/det; // for(int row = threadIdx.x + blockIdx.x * blockDim.x; row < m; row += blockDim.x * gridDim.x) { // T a1, a2; // a1 = l[col*ldl+row]; // a2 = l[(col+1)*ldl+row]; // ld[col*ldld+row] = d22*a1 - d21*a2; // ld[(col+1)*ldld+row] = -d21*a1 + d11*a2; // } // col += 2; // } // } // } } // end of anon namespace namespace sylver { namespace spldlt { namespace gpu { // template<typename T> void calc_ld( const cudaStream_t stream, int m, int n, double *const l, int ldl, double *const d, double *ld, int ldld ) { dim3 threads(BLOCK_SIZE, BLOCK_SIZE); dim3 grid((m + threads.x - 1) / threads.x, (n + threads.y -1) / threads.y); cu_calc_ld <double> <<<grid, threads, 0, stream>>> (m, n, l, ldl, d, ld, ldld); } }}} // End of namespace sylver::spldlt::gpu
20,328
float h_A[]= { 0.6268283168399733, 0.5820438295956624, 0.7155419277465724, 0.6529364371559196, 0.9515301876238671, 0.5313043871151091, 0.6366937516486788, 0.5752237649250644, 0.6688301026236152, 0.7924564403991801, 0.7127780398297493, 0.8825410410557307, 0.7795304387612063, 0.5831883604271031, 0.7635014054558178, 0.5845028026419947, 0.9769193131500157, 0.5986569239478308, 0.9771872651135183, 0.5706982738878061, 0.5655504243511911, 0.9787784925351168, 0.7255151576091641, 0.504539561798399, 0.9189874417248736, 0.5868629115070443, 0.8464846089722025, 0.6129727880245557, 0.673414788248178, 0.9565603941768499, 0.6061016736060079, 0.7473135252864294, 0.6780880447591489, 0.753648536559429, 0.7061132839441507, 0.7768473632688374, 0.6069769413118016, 0.9264556466239561, 0.6065909564219512, 0.5077259046887153, 0.6181178904761713, 0.7426904423540224, 0.6870746981083349, 0.727992515672684, 0.5755021478174948, 0.7704955029109959, 0.8290585808986233, 0.7172770202136067, 0.8670126493379693, 0.6416605666808382, 0.7361344572399395, 0.8857544951946521, 0.894856029489604, 0.8041028419486409, 0.6414337678105697, 0.6896067553920224, 0.9381048029553873, 0.9983054138582781, 0.8221118023513856, 0.6782056810317401, 0.9348831435705958, 0.7772925849973444, 0.7242789674163963, 0.7671497769240274, 0.5929843214942244, 0.6266841390064901, 0.8721625803242479, 0.7394670229557045, 0.6733289999373473, 0.9857059898251795, 0.7419575787943071, 0.7611675479694354, 0.863407859426127, 0.7968135849999325, 0.5424049959709002, 0.6565173493113797, 0.9527903067093388, 0.8100655442379351, 0.5307470087675424, 0.9357281596482208, 0.9339681888221909, 0.6212402131595047, 0.8165316552621937, 0.5945191102978719, 0.5676324757227449, 0.8325496746166331, 0.8531059046428082, 0.8421314645571942, 0.515275023873797, 0.6420499650035507, 0.7596131563702928, 0.904692652058516, 0.9811611836375086, 0.5846138112658954, 0.623058994918902, 0.6257138334934635, 0.678412062105248, 0.9923598133201186, 0.5459650340358795, 0.6188969365850279, 0.6143977508549578, 0.6618754978867776, 0.8495101668480587, 0.7451017724712115, 0.8813852677028532, 0.5257665846970615, 0.519972727073298, 0.74664671528845, 0.8365206256549966, 0.9088600598871681, 0.9725335805569907, 0.9786312434940365, 0.8845018563257189, 0.7117619122982692, 0.9179418769665793, 0.7089459582165598, 0.8394228395637928, 0.8656050148514266, 0.5795181176031429, 0.872941094542371, 0.813666099172177, 0.7187804943021978, 0.8428308952479763, 0.864977538111175, 0.8848047194537303, 0.8215300842996032, 0.7180183401544314, 0.934509713179313, 0.578376160183924, 0.636159568667387, 0.901692427918481, 0.7872913105127601, 0.6250933904199936, 0.8597790547752882, 0.5588034225265055, 0.5710796269832461, 0.6104722755204925, 0.6394758876102078, 0.8758452823985676, 0.882999384074572, 0.7866775601381741, 0.6444402511801853, 0.6818587936716349, 0.9688860514305309, 0.6882358922200469, 0.7387648701546805, 0.8453672387134, 0.9482234004191339, 0.646858408319565, 0.6106777876888348, 0.9713280022251882, 0.8881580442994076, 0.8550287863676509, 0.6927927884682396, 0.5074304183364535, 0.9508587391976466, 0.9107054137659165, 0.819894464739874, 0.6960616007626284, 0.555150372492861, 0.9525837199849332, 0.7577596623798046, 0.8553268422390026, 0.6194396236366896, 0.703398669771603, 0.6107614040563882, 0.6505937825843336, 0.7090831484697298, 0.9413149526045425, 0.5215286288684062, 0.9915167686290243, 0.7367772455963502, 0.749227013762219, 0.6340712557516281, 0.7121364776402821, 0.904873684331938, 0.8955862812361157, 0.5625442351003411, 0.5513608750534146, 0.9835646162774531, 0.757335055275124, 0.7436221510095263, 0.6219419554463248, 0.8096442036995821, 0.5120952733336708, 0.7640231861211313, 0.9197960081468775, 0.976513573434648, 0.6629419787766371, 0.6502391506806318, 0.6414122453775282, 0.636461807374565, 0.9372635801713765, 0.657210022185293, 0.7009281525164495, 0.6754206470048036, 0.9737772413801391, 0.7302082515916004, 0.6282996333895543, 0.8101221647429779, 0.6089761143442134, 0.6873383654744522, 0.5894675745647411, 0.7545043604754449, 0.8305446723744647, 0.8242720643104933, 0.9075286842202261, 0.5949258155489838, 0.7245741465930089, 0.680583446820868, 0.7745679992060872, 0.8727957134868817, 0.7468479591016876, 0.7053852188153391, 0.5392278420061019, 0.8244351400255765, 0.9847637943580458, 0.6219011068121838, 0.6995953153664743, 0.8041399733959922, 0.7832853167902133, 0.8469859364462905, 0.6311753288839379, 0.5000585324367666, 0.5025491301913312, 0.9290988741828645, 0.9028997219713066, 0.8593133913590646, 0.7620241401196977, 0.8405859477160701, 0.958247856340872, 0.7219100614315755, 0.6935813339534933, 0.9691708254436199, 0.5761869372514208, 0.5350530167258355, 0.662191825578857, 0.7320267322397827, 0.8001961176281724, 0.6597030594082862, 0.8242575651151983, 0.94783314941178, 0.8204424235765071, 0.6329875999838976, 0.5599468274501003, 0.8332586613571411, 0.9400721280136857, 0.8418424065513079, 0.8359199063225392, 0.5009110846189895, 0.8018412755347007, 0.5345682890501886, 0.9959578583267186, 0.6401246955553801, 0.8020816396105603, 0.8740288307659592, 0.6370227624326068, 0.5796822312711987, 0.8471352850396423, 0.6277466550601996, 0.9471041409072185, 0.9153182546105783, 0.981206735898356, 0.9058896796850621, 0.7668403736039157, 0.5538285931184147, 0.9827981305903155, 0.9567451286284347, 0.9132355774811506, 0.5572992359964779, 0.6177594335096435, 0.8782005446693405, 0.7757630552023029, 0.8716626773442587, 0.5718206218166799, 0.9467742671388856, 0.5698072159633205, 0.6427699128621152, 0.8351056080099742, 0.6315092659280988, 0.5095341121319449, 0.9398072599882349, 0.9002917875066982, 0.547496924327634, 0.9735276510757727, 0.8558501318846344, 0.8676242664032131, 0.6256665904069904, 0.7350291629633214, 0.6447542044968823, 0.9844926252574229, 0.5072428881519636, 0.9547496361644994, 0.7821330496871864, 0.6849947280274631, 0.6608463399988402, 0.6633801841819484, 0.8195540404703774, 0.5547483465606535, 0.7021134280226806, 0.923347620700763, 0.6577148195893967, 0.9930926347411103, 0.9476115857485683, 0.8798622950651502, 0.9778128858937336, 0.6850427746812583, 0.893557710280158, 0.7642717427569544, 0.9340074083042331, 0.5411051649660623, 0.5358547987808293, 0.7993976346162199, 0.7453389734732889, 0.5858626383236522, 0.5064760704694629, 0.7397945053588817, 0.5056037628550928, 0.8789619434520723, 0.6626999657870897, 0.6909556483122148, 0.5887985781024172, 0.682200406851283, 0.8549195141721804, 0.6713062643553875, 0.9129918351921944, 0.7274915255248471, 0.7576080569310337, 0.505321476710018, 0.5638408192141229, 0.5137916159917609, 0.6662797462532176, 0.8178800350343433, 0.7488263285037, 0.9062887057003512, 0.5167126184315013, 0.5687232576328327, 0.88160314259933, 0.7736721324742662, 0.9876863120578021, 0.9755765155857701, 0.9570681264791323, 0.8894967608691339, 0.5894332850684374, 0.6072930991046529, 0.9817607446746162, 0.9643537040553951, 0.5939394095744728, 0.6547813631198485, 0.6483516426687226, 0.5802641016261694, 0.7948897145079682, 0.6659150459772574, 0.6299557483656041, 0.851486232848687, 0.5734383612597858, 0.8902512884040369, 0.840369859625073, 0.5239867881109534, 0.8657350814774756, 0.7998182893727797, 0.9841479148535841, 0.6724905935135512, 0.5659420868023612, 0.6537067643294812, 0.7673254822792767, 0.6049844243317202, 0.6491223457704476, 0.7053958337105157, 0.6262511548269809, 0.6391525557739202, 0.6598481590866798, 0.8493799707179921, 0.5644059265217167, 0.893934269461168, 0.792793536813295, 0.9110107532588649, 0.5789010648954515, 0.5777565741094242, 0.5716086538312741, 0.6808787218459259, 0.647249357540538, 0.8153320047147712, 0.809265287717005, 0.837921098428668, 0.5943679004061642, 0.6995156689070623, 0.5919332186118906, 0.5184490718680874, 0.7120238992721684, 0.7854446950643881, 0.8313367162505678, 0.7736761902876257, 0.8072974501518403, 0.8170354697062185, 0.5821337585349516, 0.5687587399579068, 0.5266877822007594, 0.5179181028703048, 0.9850963362043529, 0.8228840910499318, 0.9206229244227868, 0.7949184131695851, 0.8123209838659762, 0.7384447518139594, 0.9768048157657467, 0.791499394263592, 0.5665343114320229, 0.9210795116930025, 0.9366598967987698, 0.8500875790189549, 0.9949518626166043, 0.7029881508124705, 0.7830102646763151, 0.7248616062571105, 0.7077144262330093, 0.8687158273850855, 0.6974864264638985, 0.707936989039954, 0.7069965381679331, 0.6554852627768353, 0.6633886293122351, 0.752679361951243, 0.9143940795945115, 0.8302190284681509, 0.9848821697034389, 0.8814616176586866, 0.8627021571964422, 0.6100737866502042, 0.6486952528682843, 0.7262687685712736, 0.6222124576531043, 0.7533645794971544, 0.9536891392445535, 0.6723029787682286, 0.5498388843690144, 0.5614910949740436, 0.8818296653613855, 0.7930204003242218, 0.7648825336904219, 0.8056702934076228, 0.7019541882627273, 0.9009133381921792, 0.8302451972339666, 0.7060035435346552, 0.5099317639379322, 0.9181597197496718, 0.7306962798419349, 0.5534732747890133, 0.5931587846648045, 0.5193374248416345, 0.566596434461897, 0.8965234455492228, 0.530628366976309, 0.9747403922866829, 0.9967725586539529, 0.7706589310049137, 0.6899803731359143, 0.6090173645869336, 0.8040167302680952, 0.7710919024202447, 0.5011596984427229, 0.7344244269664519, 0.9349411576571014, 0.9656603910777993, 0.9660252032234833, 0.5825811266092416, 0.8882354751903505, 0.7340878913436408, 0.8629453434660241, 0.8396077021084613, 0.8039759342660007, 0.961337048935855, 0.6786062043123154, 0.9787271344583376, 0.9647723385364988, 0.5106087391030687, 0.8011341032644588, 0.5123340815567496, 0.7935769948167195, 0.691026203740938, 0.5942615688679069, 0.9724733322680761, 0.7874663148701366, 0.9611933498277087, 0.9405085554673596, 0.769591001931392, 0.9720693387966968, 0.9194009363501987, 0.8469487210259777, 0.5493954999727042, 0.8403024200734047, 0.7085012928449375, 0.8751273463906037, 0.917388489949445, 0.650010721707714, 0.9932362164427341, 0.5042659192339072, 0.8241728768718508, 0.7407652437510225, 0.9556831070904748, 0.8877196795676947, 0.8094345337401698, 0.8551558061028315, 0.5047660344587741, 0.6510317497497434, 0.9602927886636876, 0.6674709353288757, 0.675346239051884, 0.9337708232981643, 0.6365114669959477, 0.5526566925165838, 0.613648136643387, 0.7883324252137826, 0.8178925138466722, 0.8393021816895121, 0.5561634756320225, 0.6242919105223957, 0.6068492342957028, 0.7138583018760054, 0.9386840192178763, 0.8765679574398548, 0.7281568791529553, 0.8826567730654811, 0.5918639958645299, 0.6736213992405733, 0.8735016269271308, 0.5353058004835807, 0.7184276786898636, 0.5545830613870661, 0.9124233479046646, 0.578957406053548, 0.6593451006079079, 0.7298824839166962, 0.7022988530097494, 0.9674592187558444, 0.9075285480339386, 0.6710944497703443, 0.7728625386999287, 0.915437518236565, 0.9979008104078786, 0.7815088113180715, 0.6628712045197762, 0.8804084237056193, 0.6343714983654418, 0.7179310253110976, 0.9696925167144634, 0.8329616735585703, 0.5676024913454241, 0.9684969176436544, 0.5922384313302614, 0.6637376567664894, 0.9943054960503483, 0.5821210822642078, 0.7735916928298712, 0.5625360633401267, 0.9981876915338274, 0.932050174304037, 0.6093142536262894, 0.8899739115151089, 0.5697183315768041, 0.7595956521816261, 0.7390500358787038, 0.867506488409333, 0.6465621244429678, 0.9506392776314325, 0.7830137128127811, 0.6572075274763969, 0.7978451688709237, 0.8553483717801244, 0.8875293896182814, 0.5535231419979969, 0.7888992982448825, 0.8201993460979458, 0.5459632347347823, 0.8857517409495212, 0.9945587490253486, 0.8486981668585467, 0.8946894575231842, 0.5924887854176482, 0.5731693331456936, 0.7884948929849216, 0.5199143642008095, 0.7276940281942683, 0.9090928661687172, 0.7150947534919496, 0.8238764782603388, 0.5215164944789894, 0.6256426139583274, 0.9115352525096925, 0.9231476556816816, 0.7214239023596563, 0.9846125696191315, 0.7197188025874898, 0.512834971382967, 0.7599845803407824, 0.6594176844145756, 0.7960770931674669, 0.6933699980725896, 0.8804361404418025, 0.8833928021312509, 0.8687855783398426, 0.7541289306196934, 0.9406386134315041, 0.7558672444704317, 0.6467679854296406, 0.6322775753609311, 0.6124591549724941, 0.5722782723583816, 0.909917561250581, 0.9520698946828565, 0.539137907124978, 0.7919565482398572, 0.826237801259646, 0.5910546934854952, 0.959585770295396, 0.5510020404292255, 0.7294178358450527, 0.9919780291638928, 0.8163975728905541, 0.5146365185841867, 0.6836949000745973, 0.80601238080957, 0.614798843352629, 0.6857260119619107, 0.8074974889477864, 0.5027849680725383, 0.7450778111161883, 0.9361320010521864, 0.5990984247258802, 0.9948590700599563, 0.9003295133431044, 0.636416346739581, 0.6340965423577447, 0.8946356943615688, 0.9716726055120366, 0.8761985978867652, 0.9272770823362411, 0.865943062387228, 0.7137289743043145, 0.5918314540494217, 0.7971829170920597, 0.9455439342431535, 0.949073333245193, 0.7852769756997048, 0.527651174448122, 0.7179332794699266, 0.6258307057243632, 0.6895916303904184, 0.9372034732440189, 0.9806751881201234, 0.7517491033903342, 0.5804483740975437, 0.9924471064561238, 0.9799589809961744, 0.6077023984798977, 0.8214769881473619, 0.8581986627485638, 0.5938454183103901, 0.6570627028781796, 0.9775312614043472, 0.5794662793211912, 0.7533884504205013, 0.9213203404817398, 0.6488641108051723, 0.5214415154935946, 0.982258907235499, 0.9994684224589168, 0.5320592119417582, 0.9162929265044912, 0.583318232846033, 0.5714481328441903, 0.5301146010047637, 0.7996878342214604, 0.6964870660240434, 0.9745656383157464, 0.7142837627769414, 0.7828706716957816, 0.7719480686441191, 0.9451643012897608, 0.8937225571628962, 0.6481163207671329, 0.5432946113068117, 0.8816510838313139, 0.8063640575874553, 0.5667075522530554, 0.6366616674811124, 0.9916150690226208, 0.8163477368071524, 0.9848595560607578, 0.6125579301748038, 0.5721709530326442, 0.8286686306150548, 0.8780232402972281, 0.8080130325090946, 0.5560410005403097, 0.6345367051049735, 0.7132012418382876, 0.9302137724750217, 0.5901485381605897, 0.5140261564938584, 0.9854602267606615, 0.8813770607564777, 0.5158315133802651, 0.5292193764206268, 0.7654876975003424, 0.5162078064010908, 0.5918885602761922, 0.8151838835111939, 0.7897119386014355, 0.9881509578015685, 0.5153628511348205, 0.6687546056513541, 0.8244387083660083, 0.7759333446616716, 0.8302047282436702, 0.8296145600231168, 0.7767606149496237, 0.7581724235889726, 0.8136530235759101, 0.7486620019250088, 0.6886686026698663, 0.627791482593248, 0.6456593199894155, 0.5681972295016209, 0.6161494111737115, 0.8049011245364133, 0.7034780620658206, 0.8620373009002131, 0.7616869013040304, 0.6976223069335855, 0.7094723918687742, 0.7539857413333975, 0.5506647812953283, 0.9400456119641503, 0.5893738024396875, 0.8413496696345957, 0.5735495459451003, 0.9088921179686911, 0.9272985396699764, 0.7211078556673918, 0.9341045699208821, 0.6007988960817761, 0.7787682783370343, 0.5548767692949563, 0.6292176544880941, 0.83159363063357, 0.7449807165079894, 0.8447150873878316, 0.8765857666697106, 0.7169833713845197, 0.7944456519164471, 0.6639808697767121, 0.9808035396463357, 0.9268329909651558, 0.9935758519538114, 0.8209667738041375, 0.8781944289229557, 0.6779342619196937, 0.9463911795210123, 0.780826710825737, 0.7008308133708434, 0.8658836482632706, 0.5785749699171716, 0.6715615078568933, 0.8986646171811721, 0.916371010004281, 0.9087697450900121, 0.9224584673973404, 0.6406949586079702, 0.6504894354869748, 0.9955386840560474, 0.8660198601126107, 0.5674119930723085, 0.9112303167337654, 0.5442379158931011, 0.5948662205740706, 0.8149427212929876, 0.8964440098117961, 0.843148688002038, 0.9427219379629314, 0.8962509427493965, 0.8351089525101154, 0.7161279290712534, 0.6284280312775964, 0.9805691857109857, 0.5411474875842315, 0.6867133764551312, 0.9558986801165474, 0.7003778474318777, 0.989467538655979, 0.9477791407318612, 0.5211176006721638, 0.9608133813620245, 0.9975134930524372, 0.7919199292445076, 0.8810372514364562, 0.8448590218675518, 0.5714120512426459, 0.5309178573507327, 0.822290861453555, 0.8991521760677843, 0.6729075325607088, 0.6573426203957138, 0.8079458470685184, 0.6873609133259253, 0.8661229909643031, 0.7397550252967222, 0.7094873504648271, 0.7443757900956172, 0.7091341233995261, 0.8896390016206559, 0.9885483223832623, 0.8183247449801436, 0.9048138404327528, 0.8060059277563638, 0.7836190954998132, 0.5705926397256331, 0.7228058741315516, 0.5913828432469294, 0.7423345661635916, 0.7274480228211841, 0.5431791055370694, 0.5821711407282848, 0.7218828757723621, 0.9738016735779703, 0.6424570151168916, 0.7616548523369437, 0.9789186034136357, 0.6536728927947397, 0.6127900372717445, 0.6664210513982786, 0.5321307391631904, 0.6056117187268066, 0.7909668556947598, 0.7807860915705817, 0.7786251780386306, 0.8820076367751912, 0.7296937290648317, 0.7598772877683122, 0.956581204952211, 0.5690223856390654, 0.6073560934487172, 0.733204409408353, 0.578808495558988, 0.9292470788766001, 0.6598113755196355, 0.932406105611828, 0.58555790814436, 0.5655612730478018, 0.9554590408593746, 0.703527034140933, 0.683415919774987, 0.8296769415606514, 0.5271114632201228, 0.5309033994634562, 0.7499570401058171, 0.7041791595797958, 0.7964512910785209, 0.928730770448374, 0.8987750615006918, 0.94766947626221, 0.8900521379812639, 0.653692028637643, 0.7673283236581798, 0.8258238958495813, 0.902604642080727, 0.9963604028328651, 0.781316029018378, 0.5882680187277798, 0.6762878997896684, 0.8691916883023215, 0.5781715028091878, 0.7758712269159712, 0.9746526538540612, 0.6695034590569104, 0.9839048412102704, 0.6475363410082557, 0.8131285725192862, 0.6992886751769674, 0.7202641132430039, 0.976588224377112, 0.7222680253285279, 0.6043567601461126, 0.5989082967564734, 0.7526499278102222, 0.5464095412418069, 0.6673818671845464, 0.5424392045144257, 0.8920756693356751, 0.9249368841889283, 0.5551726924003624, 0.9252916687211163, 0.7449696003982322, 0.7716520670307137, 0.6383013307806306, 0.574197895842911, 0.6771507663381777, 0.5694096641459212, 0.9303182056039785, 0.6382873722860087, 0.8669223050101376, 0.963938212807167, 0.9214997693582312, 0.8210825272725912, 0.5942968043255249, 0.6158563155431297, 0.9944294510874547, 0.8060181070430594, 0.6135455025176867, 0.5977470066541221, 0.7623395306850483, 0.5214366562727983, 0.920909557699964, 0.6515071612538563, 0.9829997859520645, 0.5583175315721066, 0.6332112415698152, 0.8439311921015098, 0.5586536144120438, 0.9864229888246654, 0.7627533444948909, 0.941893567151598, 0.6100187786130105, 0.9053031734462027, 0.8176864683486473, 0.8419195158860151, 0.8509257148007534, 0.7040936767121374, 0.8644960652618177, 0.9361835534489906, 0.5221898137684766, 0.7775478805812328, 0.537519651865656, 0.6090961953776606, 0.7426877040760698, 0.7286006350130562, 0.9482718889257212, 0.6130524229372465, 0.8690066979819622, 0.6856318205227223, 0.6290912872691456, 0.7731342953612246, 0.9443786771626943, 0.9273458185513757, 0.7610870589026941, 0.5139301943876908, 0.6868984114434479, 0.8059951669441524, 0.9978311705194756, 0.8654203679483917, 0.6082394815323562, 0.9201212164583776, 0.5807826969015168, 0.9939125736668712, 0.9481810654727173, 0.5413529136759291, 0.6117059902618471, 0.9197766173630643, 0.6588260752909252, 0.6163345933959059, 0.9831563087573743, 0.6016725503961732, 0.9960520952057028, 0.9203212154331343, 0.7969765548160481, 0.901533538460721, 0.9087496830613191, 0.5943381788325023, 0.5374631102010559, 0.5179194177563301, 0.8592304430541975, 0.9500108458278055, 0.5035177262850135, 0.9875738992184975, 0.855449741857707, 0.956784666214725, 0.6823823260024212, 0.5810608086020064, 0.9496323233198591, 0.982835865373981, 0.8110406525587224, 0.8531579235662987, 0.9305317996237117, 0.6300935454250671, 0.8431559023671404, 0.8010282781534686, 0.6439194384453695, 0.6108904460904772, 0.5690526872630781, 0.5380961264343629, 0.9690622609154269, 0.5514566803269461, 0.8504222166099179, 0.8450598990267573, 0.9720371059504548, 0.5327863131065963, 0.9162457288155034, 0.5074052075703415, 0.7126678929933472, 0.8408227274243618, 0.8929034420318802, 0.7739870744142543, 0.7967769853876523, 0.621984618586915, 0.5993640808895679, 0.8464924722468294, 0.6257110837209106, 0.5812197318120709, 0.5995463450819714, 0.6402089045192335, 0.6699641897770575, 0.5296468645875796, 0.6141085238570722, 0.9488600685409793, 0.7330409956279902, 0.9708676443903708, 0.8115901531731811, 0.5529914091125524, 0.76770675154799, 0.5560292844447564, 0.7093915402250988, 0.6023064141479871, 0.5288038620846491, 0.7055936691612331, 0.8546716082334163, 0.6004564120290308, 0.5210148892865416, 0.5714187033621704, 0.5744216978321511, 0.8512927304713209, 0.6550848164143044, 0.936091020265442, 0.8357949553383341, 0.7775841613719738, 0.9829581786921753, 0.9332963564377175, 0.9774326442894978, 0.6512551555149544, 0.7448322215048008, 0.6457033213841115, 0.8144606997050234, 0.7331877111031017, 0.6170524766598737, 0.8954884732940097, 0.744247456865708, 0.6602949658846988, 0.7870025406379964, 0.5645447924038356, 0.7178888385764626, 0.8131539638102947, 0.903695337995625, 0.9544623388691365, 0.5877097694537192, 0.8283118946860032, 0.660090619419146, 0.8177484026968717, 0.6139035358669365, 0.607817774266358, 0.9498306160086787, 0.8687331913116352, 0.7676123726944125, 0.8199772371439209, 0.9189057539913899, 0.5084159928203937, 0.5732182268545343, 0.7572766847839214, 0.9395319726365916, 0.5166386601306494, 0.883930791358833, 0.9181043582352488, 0.7157531114024906, 0.5836857201025065, 0.633789040590887, 0.9538246990743977, 0.6310645219398033, 0.5857629589539287, 0.760983647042137, 0.6143062287304302, 0.9881334943792972, 0.9456110460314678, 0.9482897991738743, 0.7629941567607184, 0.7163028526691764, 0.8520016771606407, 0.892129731176389, 0.5476500665244952, 0.9288823575365297, 0.662194898406953, 0.9911190428694394, 0.9960326667725026, 0.714646552656264, 0.9682340594245734, 0.8427636371524121, 0.7885101197692475, 0.7712607153784532, 0.9884052674428028, 0.8448422313841457, 0.8717067904674025, 0.6961758605344733, 0.6982447615275028, 0.928592713160431, 0.7369959703590876, 0.8354624205086443, 0.8857504636989302, 0.6278064159536619, 0.6684597855878129, 0.9508704672657495, 0.5133205851505922, 0.8875298267434915, 0.8908814602555748, 0.7347522284541949, 0.5979687493605974, 0.8765203074265875, 0.5640698191480122, 0.6535010222098371, 0.5515132411718352, 0.9520127674576613, 0.5824937287676462, 0.7316490642628458, 0.7790917674190647, 0.6561158249261081, 0.5589565781885526, 0.7791953364340672, 0.7607896955088365, 0.5846014193560567, 0.503638406867148, 0.9611436478304054, 0.9473791856197211, 0.7525007965377599, 0.7103959491756393, 0.6666022929606243, 0.9910968760038481, 0.8238336236447221, 0.8388899181909883, 0.5916774317221722, 0.5847980664845185, 0.8578872292152129, 0.6498693209632982, 0.8904668523025165, 0.832585576995833, 0.5416736081138904, 0.6155997582809645, 0.9871608536639734, 0.939843117047408, 0.7881073901472981, 0.8682522177235168, 0.8125554327080096, 0.7674578741864759, 0.7790198940881763, 0.8001954612148021, 0.6665762120681948, 0.5280221780850982, 0.5561100430232092, 0.5491237449561093, 0.7524617911211258, 0.8217769469018219, 0.9823179009763812, 0.564194060323031, 0.733164218614931, 0.5985904500590251, 0.8079829993097538, 0.8510160970710846, 0.6083037663389765, 0.8475209364330919, 0.9076238522446003, 0.9273112974234862, 0.5864268160030294, 0.7578206337144451, 0.7828553775807198, 0.8675266566578173, 0.6709849513298773, 0.6567069675120816, 0.5547765309049153, 0.8262866632526633, 0.8848705419547767, 0.8940057165751879, 0.8375870526279363, 0.7156244100171838, 0.9247035811711716, 0.6723058963886602, 0.9689986214301141, 0.8689886493945563, 0.9755327941684331, 0.5895321206445481, 0.7998278869253086, 0.9766519779548835, 0.525033576745226, 0.5163745642897897, 0.7069540929530541, 0.9850950483918506, 0.5295725592360575, 0.8292260631967441, 0.9290791585237428, 0.8668840292884887, 0.5352624076763477, 0.7640472676389205, 0.9895309705553454, 0.5209438703110201, 0.5498761453252945, 0.8512238383011848, 0.5569997935956504, 0.717981732950234, 0.5840493206246669, 0.8393814949680776, 0.8472995431564332, 0.8034165710273975, 0.5966041140363418, 0.5376447006048599, 0.7987221349168157, 0.9580834388606729, 0.9097991959241657, 0.983715080627249, 0.5562107526073925, 0.6481673407007952, 0.7551633596112326, 0.8819166119929427, 0.6208462285217734, 0.5711303945063837, 0.8850687502662898, 0.5829597507104687, 0.5094891730821944, 0.9741946087061619, 0.8102408744959626, 0.6392446862702121, 0.7081571668245256, 0.7024047412154125, 0.819268056402328, 0.7858713179370087, 0.6954639972221561, 0.8226161771786069, 0.8984384468921514, 0.5702934159785035, 0.5123796555674535, 0.803035456395391, 0.7339298741150888, 0.976115678569238, 0.996390740368945, 0.6610729564201717, 0.918894513846054, 0.8567947705556436, 0.9608176523550205, 0.9937888141817983, 0.5067440162810334, 0.7104855048845556, 0.9782520390800328, 0.6288728018413274, 0.7981274016983566, 0.7719325489629241, 0.5669999796110631, 0.5787033300710314, 0.6993556540412937, 0.8489724545612753, 0.5067181260936053, 0.6615946560865484, 0.5300361778825706, 0.51404972903916, 0.9169282085830552, 0.9879522880179308, 0.75729380454536, 0.5200651064715333, 0.7189236460288913, 0.6988969632382449, 0.5658687849462609, 0.9060842526087575, 0.6903826801152535, 0.7808513514522955, 0.7489324454344103, 0.7896343505221932, 0.9501488079393245, 0.8983084237706616, 0.8655770785901701, 0.8590925002906427, 0.8894580463063501, 0.7781515618792094, 0.7124665083166746, 0.5373813553425004, 0.6500684651674338, 0.9442846494262327, 0.6529808413498498, 0.7960173627827976, 0.5808619876374808, 0.9968768590857744, 0.8454293115541558, 0.586925411181809, 0.9319925006526446, 0.8972869702900452, 0.5631218731296536, 0.7485603400116532, 0.9135927927458276, 0.9136756334808727, 0.8109528341348945, 0.9206156024174261, 0.6825493547712999, 0.8692319731579217, 0.8137124416058121, 0.9191739840878639, 0.8109160411312339, 0.747840128009474, 0.740044960554622, 0.8367412939859876, 0.9300831201214683, 0.9601927810612769, 0.8802982066267375, 0.9998250206995352, 0.9632307852530435, 0.5465767460439648, 0.8139766587030624, 0.9343984320890324, 0.6983313542003668, 0.9456797219056607, 0.7270844911016635, 0.7160275213118257, 0.8496757099109802, 0.9219518178821018, 0.6901065076905561, 0.5933915880986675, 0.9739017896374688, 0.960068261966198, 0.7198150053412142, 0.7971327406134198, 0.991510391221319, 0.5657003678797909, 0.6273133970237135, 0.7608712882848692, 0.671211981222047, 0.5401833542423663, 0.7130976720642772, 0.6616474022093911, 0.844531696129062, 0.569641478656056, 0.8480831227169927, 0.7362545663642568, 0.740294816686135, 0.9132122657026532, 0.6566213342147369, 0.5999832603181712, 0.9993844606869318, 0.8837218950495931, 0.5416449161216799, 0.6255095788088512, 0.6232035803219458, 0.8008276322384607, 0.8065083522215504, 0.9681050109454976, 0.7205064484057266, 0.6608206737047071, 0.9194526239861542, 0.8954902549686661, 0.9149225574125062, 0.7988698763493869, 0.9021920965270833, 0.811944949830385, 0.7559603737306078, 0.5584209543253051, 0.8056196520746655, 0.7823171905081205, 0.817585495418368, 0.5703001294746137, 0.8403367684522183, 0.6802231068701222, 0.999324126681764, 0.9390509481138243, 0.7367682361753587, 0.9336777132903549, 0.6612573920530129, 0.9042242436796998, 0.6809287281386152, 0.7750126062607106, 0.5543518894611466, 0.6434499876825606, 0.8522952291922417, 0.8762528607249179, 0.5526232815440681, 0.7624985778465352, 0.514963502338248, 0.577586603793778, 0.720300429172074, 0.9828046775922565, 0.6529238773732113, 0.9923397489433428, 0.9038397571288452, 0.9927595971157482, 0.9350652399980088, 0.5922558796759673, 0.5323337273019406, 0.7277411974333694, 0.7636429873293742, 0.6219325940529079, 0.790184619479211, 0.8684863683526163, 0.5252890800963457, 0.9735914771511327, 0.5310195410930163, 0.9338057173823197, 0.5163920511920377, 0.6875131281229669, 0.6303397125577446, 0.5090854567965599, 0.5299768456117817, 0.6107195538003056, 0.9175501657785996, 0.8454254877060929, 0.9500832958552534, 0.6867048358584182, 0.7039972965841101, 0.6683375499235471, 0.5887636118267943, 0.5195323102430592, 0.9944954755026465, 0.7730534212778839, 0.5600701654608045, 0.8307377284801378, 0.6991504657047017, 0.8728107685183696, 0.8040541340339386, 0.8892834424081119, 0.9918212307126006, 0.8340715277791313, 0.6274565570219302, 0.5806101266065631, 0.7458655457671828, 0.9935825725836661, 0.9545775493578401, 0.6019444028523409, 0.7876844194107167, 0.8261143383929035, 0.6093444814874025, 0.5203028878151148, 0.5261446281483175, 0.5555496368158191, 0.8942745000781384, 0.9906504288910352, 0.8369180697177676, 0.7032374851208356, 0.6679014282047961, 0.5746279874543623, 0.9331729777693298, 0.9745560179578834, 0.8705016334348075, 0.7663340091594233, 0.5650707945650195, 0.7870005064276139, 0.9944001921838682, 0.5901799714700227, 0.8474247166655304, 0.6726766019251236, 0.7958594910749669, 0.9437045909409976, 0.9262553844709348, 0.5135031453274469, 0.9981219510270551, 0.5480329313680828, 0.730891295357305, 0.6094374966673222, 0.7776467737457431, 0.6508498682638115, 0.6382102114168057, 0.5460256793944462, 0.6273713285066507, 0.9620053369571935, 0.5248455915860225, 0.8022361858101283, 0.5040801170391962, 0.5243981856406021, 0.5851609372489757, 0.8107795385702556, 0.5496659179622839, 0.7303061746231909, 0.9990028979550936, 0.9432489331253694, 0.615639369790268, 0.6214928013693639, 0.5578300544304167, 0.9709707772178415, 0.6018858419416802, 0.5547260605714386, 0.7223962917460083, 0.851516529664147, 0.7442525178022774, 0.6040389235600367, 0.564400430329566, 0.6971976152533907, 0.6489970397791984, 0.8166708051701304, 0.590231955639663, 0.6935656806126707, 0.8478703316597095, 0.6202950165263414, 0.6474763072594529, 0.863218779065559, 0.5695256505227781, 0.6425560487175104, 0.9329313134405607, 0.6761086129248701, 0.751409326478685, 0.682969646886675, 0.5196553022010053, 0.9052866492706657, 0.8334574763127258, 0.6321679039565753, 0.8804413391329042, 0.9611093967017386, 0.754286591869899, 0.7774572588289161, 0.8315093899025882, 0.5489219428512293, 0.7584591223957329, 0.5392950222014743, 0.5188096381039186, 0.7735406649276143, 0.6566186022988025, 0.9931950581978206, 0.7764639557542838, 0.8645672015317178, 0.8451960352174859, 0.5566516398268393, 0.9437194145162647, 0.7435750694395848, 0.9787651413364677, 0.9670126418086424, 0.8100247343969773, 0.7183071332886791, 0.7686481918925634, 0.8783664082615956, 0.9061776302410075, 0.656482981031628, 0.7222672788126028, 0.9575420373091386, 0.9479203183582472, 0.525079574176173, 0.751103384055974, 0.7687028167008396, 0.7263685447586713, 0.9681473273379609, 0.5271526909442752, 0.9106828677456167, 0.7631243728122513, 0.8253531622000982, 0.8440352356807228, 0.9744623215920468, 0.9338184835317885, 0.7567955953900805, 0.5511306484226546, 0.6257406839090183, 0.6454395953184641, 0.5266404489192367, 0.9656878511239224, 0.586808363350405, 0.7471709249706415, 0.5198904419425859, 0.9653119156075645, 0.6731398508131565, 0.8864561336705623, 0.6900576465130523, 0.6047982872899909, 0.5681760518673225, 0.5534940869088333, 0.6759215964023618, 0.9048019898894314, 0.6265361620650186, 0.7637066068531094, 0.9623185627181536, 0.5118583768729483, 0.8913996831924307, 0.6573872314147432, 0.6264916775279299, 0.5152249482266269, 0.5470853812399594, 0.6017782678907344, 0.7539022695377711, 0.6418692352660149, 0.7581971717079553, 0.5519893100312434, 0.6601513069458584, 0.7066736071742528, 0.8397706433240093, 0.5187271672760334, 0.835414294650858, 0.9837106318605969, 0.8422877068975395, 0.678828688539012, 0.8150489444375515, 0.7829413139581569, 0.5192427922088025, 0.8482217154255924, 0.6592796189033816, 0.8350016645085934, 0.8137168612757228, 0.6922462187215522, 0.5524700920530041, 0.8863147497904321, 0.6531831444889244, 0.9896761214854872, 0.634389051917375, 0.8421958803412555, 0.8479018002349118, 0.83824681060668, 0.5496542239833833, 0.8451523231680431, 0.8747483905681677, 0.9323774470088331, 0.8466636931132514, 0.6663183984553271, 0.8365948402833796, 0.786420246430344, 0.7065975256765797, 0.6060122557210301, 0.5708113378546257, 0.7399965988068944, 0.6180043744148562, 0.8945976694537097, 0.7041276892986585, 0.5207757952995776, 0.9013032491221845, 0.7754586055478625, 0.5444700832226455, 0.9328411369750017, 0.6928663144852653, 0.9781956293327073, 0.9423723838783605, 0.797845428725187, 0.7839817590072076, 0.9816176999451423, 0.6308368084610575, 0.9017423496247678, 0.952437076083025, 0.8200643930252811, 0.5970553044609992, 0.5846301013696769, 0.9319805341509384, 0.5942297265138355, 0.7038647386178082, 0.7991423736744863, 0.7057464469997329, 0.9311540959098067, 0.684706980377465, 0.6340480763461589, 0.5328009726244987, 0.6797079266535839, 0.7227818545745062, 0.5266901866555067, 0.705674537199833, 0.9934678476063099, 0.6540458388596682, 0.7748857705654019, 0.5067079958085167, 0.943171767062957, 0.5556595375271914, 0.6694023421756051, 0.6434963266573274, 0.8542806913155913, 0.7860162111563975, 0.5158423414694954, 0.5672987619164015, 0.5865300273856054, 0.6975786074493253, 0.6937037216588047, 0.7173574781737254, 0.6702303218107097, 0.9970647157179957, 0.7243613977055561, 0.8637081450643291, 0.8146677159117861, 0.8784516972217487, 0.5910526336213333, 0.7766755371959273, 0.5357383718450623, 0.7377258254649405, 0.8217427963688878, 0.7793287906095725, 0.9348120235087325, 0.6812345952372216, 0.563737808248828, 0.7759945465126572, 0.8349887185153393, 0.848329339523934, 0.8839555922645067, 0.8492838935894136, 0.7865544179369803, 0.540043150583605, 0.8770151265531763, 0.9829863920453903, 0.8311437367398671, 0.9797440782636745, 0.6439224107684869, 0.9913064640066986, 0.7769427649925351, 0.9787488568555816, 0.5029997546538285, 0.9234632046718398, 0.5499920484099994, 0.5921919362313608, 0.6232127380100505, 0.928590632280007, 0.5835667940202784, 0.6474578319127361, 0.7433211481608367, 0.6092502810668835, 0.9725675799899373, 0.9160765342459359, 0.8973357434243161, 0.6184160757330904, 0.5265986749673537, 0.8358654049615803, 0.8819598266728936, 0.7438918060402688, 0.9964090141916462, 0.9701496823430604, 0.7749986524989068, 0.5047862615566863, 0.7017349972604816, 0.6541123816625156, 0.6826087179944564, 0.5415511243427853, 0.521025380523533, 0.5895512823452032, 0.9247414181095671, 0.8980603731971571, 0.7068869564248251, 0.91750285194269, 0.5689633587561236, 0.572365081338849, 0.6241547612509697, 0.9407197177431803, 0.5605063807879527, 0.7031878653341308, 0.7177182365531899, 0.5462506527790598, 0.8390644798448923, 0.7446190443012444, 0.7824612166794398, 0.7010164348796205, 0.7723072386470133, 0.5611813782034403, 0.5669099493730234, 0.7176447789972095, 0.6634373144581303, 0.7584519613836707, 0.583996244102709, 0.6107871865977215, 0.9652995295540575, 0.8644998917845488, 0.8062232182594409, 0.6500322074463045, 0.7674624683425271, 0.9742192314453024, 0.9792845269540555, 0.8347852898495682, 0.786131941216987, 0.7827420621952126, 0.818652069612602, 0.5713068582772038, 0.6178938211278134, 0.9240346331831986, 0.6161883101379941, 0.6873837992526045, 0.5717605058554791, 0.5253101071286501, 0.8029984240778891, 0.9243397570729146, 0.8993774109557632, 0.8282058400363241, 0.7233475348828069, 0.9505645533372018, 0.9796086601624521, 0.5114042721273461, 0.8442354589938114, 0.523074904214695, 0.5110415334832228, 0.9810575230430012, 0.892558630508794, 0.7401389050490903, 0.9248674589003083, 0.9953644622228668, 0.6614765720979034, 0.7742481549176374, 0.8587960004773063, 0.6695349509020587, 0.5403529148731172, 0.9059359106285864, 0.930732865825229, 0.8328454753766696, 0.8216783896423749, 0.6168039299740367, 0.9775239554420101, 0.5919867988975379, 0.8578410637853897, 0.8309559665578806, 0.6799052400046662, 0.9881952324612232, 0.9666450245531277, 0.7863630180099402, 0.9491515031965497, 0.6508256303915978, 0.8331490397936541, 0.8601787553174907, 0.7951867834890742, 0.6172480047151081, 0.9341581863582462, 0.9496320616716605, 0.9550526940422432, 0.9096892743724029, 0.9953306924420412, 0.509439007052867, 0.5658493778301301, 0.8134377157069475, 0.5010957755302043, 0.6691775685776331, 0.6819829159384541, 0.5800937504723069, 0.7066796472041951, 0.8587751949259692, 0.9743437812114522, 0.5300798937673075, 0.686426656110642, 0.8651500873185559, 0.9823969016282115, 0.8894644772018693, 0.8524760521988297, 0.6669166377265106, 0.9359502109578401, 0.6990371022119721, 0.9947303074540041, 0.9873707585538468, 0.7982803177178674, 0.6611563491624792, 0.7693158263350747, 0.925026737092553, 0.5138191161272851, 0.8930988536422244, 0.8770540781119771, 0.8941706023223894, 0.5562782793944031, 0.5876208119562113, 0.6416343961268358, 0.6308376157918658, 0.6991786137505694, 0.9464822419551087, 0.7030682756878266, 0.7334508663165147, 0.7606399588466333, 0.8571551374651065, 0.7468406505461187, 0.6359978723776398, 0.9753922906445507, 0.7463782645127445, 0.6195011727763395, 0.6937513371527376, 0.722631848935283, 0.9225885439094226, 0.7766770507749216, 0.8260793630596279, 0.5496219118260035, 0.9849197339034305, 0.787115538182853, 0.7852070430176068, 0.6884629944068403, 0.6733173278924813, 0.976583701434432, 0.6259822558264678, 0.556603398899785, 0.897474272836766, 0.8487828328212612, 0.5021914334936798, 0.8090956786213064, 0.6007692929023551, 0.7096696273191572, 0.5566126562730055, 0.7218820354793085, 0.6633043623262785, 0.8914953332650577, 0.7090533627301135, 0.5174125129878417, 0.5191433738596107, 0.7624412138621119, 0.608837479751499, 0.5630012633508601, 0.8137280580660768, 0.6021815839443269, 0.5054096799442314, 0.8519171978004025, 0.6809115574701593, 0.94346816805155, 0.9990596259871064, 0.7411602497970744, 0.6789647104121292, 0.912175137160196, 0.5752016400855893, 0.5274787142228186, 0.5614765867080891, 0.6065249321068599, 0.8309299073995224, 0.8792873080114554, 0.9159053614572692, 0.9673249734474488, 0.7449443935147746, 0.708335502110889, 0.8703759348385638, 0.6266570297378953, 0.5381894146314179, 0.7425805672705517, 0.9081481423343409, 0.5842929702626235, 0.648632333220492, 0.8729754752169538, 0.5625105849589156, 0.6081315515115562, 0.9576433026346558, 0.7947516462822406, 0.7305137018303592, 0.9024629105410493, 0.5678916032030503, 0.7038589030995919, 0.5188090709539358, 0.939357254237431, 0.5216245699585765, 0.6743255321428918, 0.6765932355070622, 0.7326670852201713, 0.7857248238728058, 0.8594629000514875, 0.6262324639796164, 0.6475106787795346, 0.9349444683237638, 0.860227733643169, 0.99810563188261, 0.8703993707363034, 0.6690394708598701, 0.8953708634468178, 0.8987223194000549, 0.6350814866145543, 0.5248884785155361, 0.5220907270689211, 0.5335149954589666, 0.5878187571849625, 0.7520742517742023, 0.7953280022021876, 0.6201245283277642, 0.7584128342054997, 0.516196575869416, 0.9317006394373185, 0.9608959579528501, 0.5093694934825141, 0.6381285620966923, 0.7593901370603882, 0.659122783269827, 0.6164092406251764, 0.9759244628753939, 0.8946843163980964, 0.6191517852458872, 0.8920236601275457, 0.7102537737189814, 0.7023938255404569, 0.7110227992273277, 0.9649515062768748, 0.5852603913211788, 0.8443164737450313, 0.9173844262343798, 0.5493499957593457, 0.9473781691039913, 0.9089508904611857, 0.559489079330258, 0.6528952090173767, 0.8556963939344897, 0.8413149989996238, 0.848584170662425, 0.723783580195862, 0.993480575167744, 0.956220281349392, 0.7507047007733769, 0.9385363594730742, 0.8838477627650845, 0.9869638509346434, 0.7394857991408187, 0.9915688674389536, 0.8310965695414072, 0.5488198783170679, 0.5558394450155271, 0.9761373887901712, 0.544078156053214, 0.8408798398363738, 0.8084666686741515, 0.8298028050193156, 0.9436220951728532, 0.5147817942034906, 0.7827261760571362, 0.7989357878845236, 0.6994824544498601, 0.9174388773797179, 0.5073080834232624, 0.779848058946092, 0.8913426896304624, 0.9801973998241539, 0.8749134478191405, 0.6224798578430414, 0.9717274926332706, 0.7293385154931424, 0.617386028943532, 0.681712529654074, 0.9979967799274293, 0.5160092570285719, 0.8300377621236024, 0.5772577984891167, 0.8798447457746986, 0.872663901485009, 0.6291835091674624, 0.7638362756871295, 0.6029464189646796, 0.7988104740192776, 0.5351370068336362, 0.5774426261363521, 0.9740110095363763, 0.7752309047473479, 0.7991028003152334, 0.9553468715562052, 0.8836541398026863, 0.622684331521907, 0.776649279525744, 0.8937596436152115, 0.7790685695868798, 0.7880903046805285, 0.8774587073858298, 0.9509322110892502, 0.8610640633952559, 0.9458913893681227, 0.5737974162501626, 0.6809499574985141, 0.5988281888997944, 0.8317492803763182, 0.9355975324937329, 0.8916799807700508, 0.9102368637207039, 0.6096437385137362, 0.8392829526265655, 0.5015766441399063, 0.7019313972949254, 0.9356935733954652, 0.9485202684580084, 0.8071322150160547, 0.8998515396791964, 0.9111333216265537, 0.5797815670152278, 0.7557489242983534, 0.5797678241712292, 0.7628866055521937, 0.9621154434905131, 0.5778912990444862, 0.7290813165900758, 0.9341204481881004, 0.6964093722705342, 0.6113816788030637, 0.8382818310538198, 0.555589944621645, 0.7889981902003534, 0.6798006399860209, 0.9869735969852441, 0.6404290999775825, 0.9576816471323608, 0.5377577986370177, 0.507684646160398, 0.6903164658358959, 0.6944377954308512, 0.9275603582611522, 0.8339779986888813, 0.5220073607478407, 0.5938478459800343, 0.8074815539233778, 0.9660069557633557, 0.6728817138661227, 0.8936300830364273, 0.7115236265741722, 0.6852852103933886, 0.7272674904313436, 0.9465656332209813, 0.9963411185626283, 0.8476732951531709, 0.5155333759712704, 0.6141284839784245, 0.634987926858236, 0.6921272952580545, 0.7516488354502386, 0.6309175046194835, 0.5208466743958525, 0.7688348630341445, 0.5437960267160891, 0.8974409339298195, 0.693950696057426, 0.5510320060521996, 0.5727216268641284, 0.769628554013382, 0.5807370853263463, 0.6958445408913891, 0.855589413616313, 0.809360034191206, 0.7282125286652028, 0.9828608941519859, 0.8002437946853735, 0.9609974148462038, 0.6891370518119715, 0.7844819806007814, 0.9839247205568029, 0.9509340511769482, 0.6346396306841514, 0.9672917228167266, 0.6543395185551001, 0.6523890936904293, 0.6768396101271454, 0.9026381919989213, 0.659203529594252, 0.6046707275611342, 0.8747245611250636, 0.7117984782183782, 0.6379463628185302, 0.641201437258366, 0.6970563763338522, 0.6120215144335421, 0.7153010163201885, 0.5620101757802987, 0.8986826348791102, 0.9444861895707306, 0.7223018339095917, 0.895925695381468, 0.5468689077922666, 0.6140918698314414, 0.6389192589047115, 0.6876701007110392, 0.8434887335997038, 0.8091966250621486, 0.525938998749415, 0.5394994398258524, 0.5540963000416556, 0.8018911665194313, 0.6864058210369566, 0.6170395137255936, 0.6571047206858152, 0.5921798302788032, 0.5097430348157936, 0.973197342132963, 0.5167769486791012, 0.5275878706144441, 0.520213479351848, 0.7350437750001199, 0.9014613891221868, 0.9523325552616938, 0.7232156752418418, 0.9056415642667499, 0.7326749050094854, 0.6868497424625328, 0.6839652846635843, 0.5952151880630916, 0.8101615163431147, 0.8370755672143676, 0.6770216747430029, 0.7276854018059512, 0.6752703495246287, 0.8341783768238948, 0.9975147465749212, 0.5196574019086253, 0.9446456184507928, 0.545100656483195, 0.8458356956827585, 0.5871896414490559, 0.8863530179456112, 0.6494489007119135, 0.7269329453743623, 0.6103172048803962, 0.947956644899036, 0.7425129436787277, 0.6513600400520002, 0.9677851756424174, 0.8255307968382801, 0.8541668818908318, 0.6162649898351862, 0.5305321930661262, 0.7105892511732366, 0.6854899845311471, 0.7756102845031658, 0.6531121891163834, 0.8334230954217196, 0.8590065310190815, 0.7400599427832768, 0.5736917468862149, 0.5791837220241722, 0.9727312132309432, 0.8862428872520649, 0.5859540772043057, 0.5304702567347775, 0.6752274781613214, 0.8617496766833228, 0.7483934991916833, 0.7772117642094482, 0.788683870311787, 0.7306172208877875, 0.8316282675912222, 0.8645667239435222, 0.7660876370790841, 0.7912205840844684, 0.5939196347984652, 0.8298387841854462, 0.5194135278381362, 0.727943403375822, 0.8872418640264682, 0.7298229723833418, 0.8194263250164371, 0.6750734568242472, 0.910225974098982, 0.8810027379219005, 0.5544144674829145, 0.7309313068598626, 0.8916968031244968, 0.5460725669729463, 0.5194966079648886, 0.8217804043511399, 0.9908257967156873, 0.6544652913317341, 0.8147655195290142, 0.7176310959881578, 0.9380507511180155, 0.6739039415750601, 0.5583430437712803, 0.9482698797682501, 0.7189149232919777, 0.8940964800275892, 0.7670142803548512, 0.6138016833845117, 0.9958966148530519, 0.9499009486347993, 0.8564500096919643, 0.8802537974442137, 0.6048930423343178, 0.836334876211339, 0.9427024370243322, 0.5896955707186495, 0.6214012212530828, 0.7752762820157997, 0.8085494380988989, 0.564434924942371, 0.653777716958388, 0.5584607115620386, 0.505807155181456, 0.9256977118481666, 0.588263097021458, 0.9794897209040457, 0.8307100914064132, 0.9753065354796076, 0.8335603975652712, 0.5537833587269706, 0.5774496329951047, 0.5833628408919836, 0.9081730254523932, 0.803980963656979, 0.7786816774252056, 0.6102438932864716, 0.533299439643822, 0.7239238067819578, 0.6542049909475998, 0.6658663562980992, 0.7464462348465367, 0.640192335781832, 0.9115976133908898, 0.9096959680741152, 0.8272047043239087, 0.5148659442071758, 0.9304003701991181, 0.642437052136253, 0.5769987678199013, 0.6464575094601226, 0.615601053103626, 0.507867731492738, 0.6302137629261357, 0.7837686751876891, 0.8790562544696575, 0.5430318671076477, 0.80495451244414, 0.6278045730091801, 0.6684412185467131, 0.9434872330243711, 0.8612449584959847, 0.7360948380949317, 0.8311188475001628, 0.8547725958850934, 0.5789226780191363, 0.658193323405484, 0.6109015505949051, 0.6887142109152425, 0.7624861466326565, 0.9734693874519967, 0.5307093533792508, 0.7402095935976474, 0.9122446554637529, 0.5242177332876405, 0.774590522914973, 0.8181836291964744, 0.9803800430605869, 0.8243226447384846, 0.9953581583286575, 0.9212894216280287, 0.959854469139187, 0.5537331500199909, 0.6482698974825116, 0.9130597497765237, 0.5252516708513357, 0.6602590985416443, 0.6077953799671192, 0.9414544194385639, 0.7258820484682456, 0.622287805105194, 0.9544072043186425, 0.865317201293607, 0.980377231167792, 0.8355904011736837, 0.7770410954556135, 0.8558252678161256, 0.915077216082363, 0.9289246974976679, 0.5936462091398966, 0.845844385892667, 0.5871811652575815, 0.951440435277517, 0.9806051465738128, 0.8380554612659982, 0.5543275700749758, 0.9477363744413478, 0.6567695569511894, 0.5047083565333, 0.5303140000138198, 0.9658793923826428, 0.6606733614331735, 0.6750867200909322, 0.7711128741397854, 0.6306701317305512, 0.7737696527463302, 0.7129646952540083, 0.829510891914843, 0.8623629598194206, 0.5950840922973457, 0.5186214261613555, 0.645457330321539, 0.5550000081500204, 0.6902187328488527, 0.8696712521112333, 0.763370055023971, 0.6282103642896536, 0.868035313086065, 0.7761775867112037, 0.8510867510806143, 0.5820083765831554, 0.7296618729387735, 0.6152603376687744, 0.9638227667352688, 0.7233256326172035, 0.8241264594403848, 0.5381119449608076, 0.7908395833326591, 0.9647742472084391, 0.5867748666633195, 0.9455101724279816, 0.5751444542483841, 0.8626014247548934, 0.5461947964143931, 0.9515954991240827, 0.8895252257365185, 0.9924969483076781, 0.6287546741594231, 0.5515798265951466, 0.8075454092113341, 0.979017748618398, 0.9129427420175225, 0.9808933360042573, 0.6202831953174452, 0.610324679947995, 0.519472075677881, 0.599711034140113, 0.9525512127094162, 0.5673946298667216, 0.8015174465718271, 0.7286171976768667, 0.6338331145953402, 0.8750726872921137, 0.6575443057106993, 0.9301892146783264, 0.8868149386596142, 0.5258089182603225, 0.7935009046938823, 0.8884239819279349, 0.9071207613981058, 0.7357206980255739, 0.6086447498661667, 0.9661065357864053, 0.5940189511395316, 0.515909397990543, 0.583065081073635, 0.7771915840565743, 0.8428715496901957, 0.5767338556293908, 0.6582088554223333, 0.8749627503814479, 0.7551800713400483, 0.5112163575481836, 0.7525190505656828, 0.6083920230744697, 0.7399623244723617, 0.6057408681627886, 0.9564898064568401, 0.5578466366279515, 0.8892856491872221, 0.8035776228228169, 0.9826839903913669, 0.5185224916658683, 0.8941754979019567, 0.9425821042034557, 0.9086978492509507, 0.741623601871443, 0.7645485826080076, 0.6820956477896403, 0.8382117154676448, 0.8641155467511299, 0.8745010328673422, 0.9022068077045811, 0.5166035478079469, 0.629950900115265, 0.6185032450098225, 0.7266850039786514, 0.8390402677286477, 0.5111907153455766, 0.8225520386013361, 0.6673394759215162, 0.97804308988055, 0.693836397366576, 0.5285406722582391, 0.7060428073831162, 0.948171159359417, 0.612418054166473, 0.9197381127189173, 0.9462109675804641, 0.6205211625735316, 0.7033935990759392, 0.5089841687780674, 0.9869014981937432, 0.8968011551010058, 0.9344422855542338, 0.5276943198235061, 0.8607328996594108, 0.8435201433569932, 0.7451332820128762, 0.5623930072551488, 0.715827978983188, 0.6822973137765185, 0.6259331921326454, 0.9384472023888388, 0.6961167334914391, 0.8921497799029898, 0.9179032995704468, 0.5469628555167185, 0.9308769868518083, 0.6736195243602645, 0.6496345904929848, 0.6694632826672644, 0.9428996110859389, 0.7465340777020386, 0.9455812779707702, 0.5283916981929233, 0.7119616557786648, 0.5872356324130918, 0.9523094902104343, 0.752933536016293, 0.7326376120977972, 0.9178916917718574, 0.9243237026508604, 0.7859458509428694, 0.5599357044660848, 0.83340300045008, 0.7100804474985511, 0.9243887605816096, 0.5621206560853766, 0.9585223147599082, 0.7010225152859673, 0.851702522391943, 0.9565613587883235, 0.8613950244058575, 0.9145692043901916, 0.8144471724164728, 0.977833919835916, 0.9097082715442377, 0.9083307044766362, 0.924355182071252, 0.781905730055387, 0.8973890747517669, 0.5275982953965175, 0.5030261373474731, 0.5179962541975216, 0.6537543997488093, 0.830983583460728, 0.9065501942315348, 0.6888944670616728, 0.9185238481408311, 0.7961964864626054, 0.6666155712275599, 0.9749205113442033, 0.9888577473652168, 0.9220245441271413, 0.8798726434640813, 0.6544090053060874, 0.6095997304092334, 0.7554404126232765, 0.7863816405337458, 0.5415320978481093, 0.743682654376465, 0.7330707349634282, 0.5931097608063414, 0.857536982297846, 0.9891005686013319, 0.8647286432765184, 0.9670949955864471, 0.9129992510776974, 0.5949972492662636, 0.9866399052152272, 0.6186189280760855, 0.9553240691621241, 0.9368783385620838, 0.7176633559617566, 0.8663789702844082, 0.659984692004083, 0.7496390911226359, 0.5647699461596154, 0.5834404742863727, 0.5574852742102319, 0.729103700953774, 0.7071649634858581, 0.6211105919303389, 0.5616817025714442, 0.608013889556839, 0.7011219829296433, 0.8828474906634811, 0.9901745835602214, 0.7270753950759332, 0.9961649656287106, 0.5065112741555211, 0.6880547234621834, 0.66293541021496, 0.6953487174387291, 0.8197541224812148, 0.8104658942851896, 0.6965509318111368, 0.5201368926948129, 0.5175185010794925, 0.8817549804919035, 0.8919081196574141, 0.907452461427116, 0.8135803496454286, 0.9959975054443171, 0.9524613195041888, 0.9993818780000444, 0.8699663803946611, 0.9468266630535842, 0.5559821035426786, 0.7233164389115638, 0.8655923205903593, 0.9223989300170446, 0.8606992924867819, 0.9009327103439764, 0.7265471766838889, 0.9240575538900839, 0.6405245143277403, 0.7255600586517404, 0.5348389392288881, 0.7464671335200092, 0.6078156147261677, 0.874796594660627, 0.6819490122841811, 0.9832707243054044, 0.9711280051362896, 0.7337972074726469, 0.7652199237222668, 0.9608868397170242, 0.7133057710315748, 0.5152835955854116, 0.850382121068375, 0.9204802794790321, 0.7805579703243009, 0.5170672968812733, 0.5167471390429459, 0.8552551751846624, 0.6445759136510535, 0.89362681742959, 0.9319171474739486, 0.7082761779830838, 0.8356696826197033, 0.5028898064865996, 0.986469004559064, 0.6770834387415596, 0.7362329237418741, 0.5337562447513751, 0.7132345456340972, 0.542584542184225, 0.7691739953689223, 0.5329164320763149, 0.7073383523920007, 0.7422552557449661, 0.5424972994695487, 0.6783085434019536, 0.7887267176602665, 0.8837447483719556, 0.7144182274602945, 0.7675354070824973, 0.8619342903728587, 0.7909610774289928, 0.8163516256658303, 0.6844745364967681, 0.7455583902578953, 0.6746617780281312, 0.5094003344134529, 0.6620176394937624, 0.8688241004781135, 0.9620790702291312, 0.6452443384759858, 0.8435347376391396, 0.611812415190773, 0.89024159829012, 0.9991661717228149, 0.9679397552135801, 0.6684626948002756, 0.6950268330861271, 0.6828471784756391, 0.5084895100033925, 0.5696808898061049, 0.8634945746180829, 0.957715382612758, 0.8286067919710558, 0.6730137407649097, 0.7841339979254337, 0.920223911283836, 0.9515755402890111, 0.883073700493219, 0.8839809804411309, 0.5834511365601374, 0.7637101934616295, 0.8010202848660711, 0.5306444364771215, 0.6319963511236535, 0.5707773822224684, 0.9421417248613013, 0.9474153343529761, 0.572967746835921, 0.540104895870321, 0.876512430146877, 0.8045970002137934, 0.6606026913476598, 0.6088984489190092, 0.7336050497015284, 0.5271432122066249, 0.8252612764912373, 0.9240703267536663, 0.8631741706352819, 0.5305123571699022, 0.7377151340024106, 0.9598147566413395, 0.7923023283796518, 0.7235106476451835, 0.9605120206661852, 0.8073939296380717, 0.9666676567723738, 0.8707738491503749, 0.8473477470428803, 0.8663804575172862, 0.8275726413385038, 0.9916448533205069, 0.7026164242245143, 0.922058321810432, 0.7829506222849567, 0.6234261529127716, 0.8460766968279863, 0.9888379243225061, 0.7657690925696914, 0.5162190487532551, 0.5431678644534514, 0.5506087325064941, 0.8579591983569836, 0.7961457514183796, 0.5445940340992166, 0.9853010880703543, 0.5100400143088597, 0.9088308707915529, 0.9181906552153334, 0.5913635100676895, 0.7247128314711836, 0.755344686842935, 0.7694517408886286, 0.8269101920890182, 0.5023438044419515, 0.9039631910159694, 0.5804145324897447, 0.7164980763788464, 0.6641577529512337, 0.7249961057748024, 0.5068616848819424, 0.5904165559919832, 0.576964963534332, 0.786097478920591, 0.5618879381640192, 0.6436944829718374, 0.7058912961157788, 0.5000587665985501, 0.8112550967025665, 0.6556249058067248, 0.5234834496822072, 0.8418762593879174, 0.5873626705912696, 0.888105210842498, 0.9186575007862068, 0.5172845838322869, 0.6062463432485381, 0.5285855423257575, 0.8144908058084228, 0.6344629140084788, 0.8809512210861945, 0.9839045672186684, 0.9445410261823881, 0.6499312967811457, 0.5299966649581888, 0.8963595997146011, 0.704547274255563, 0.7443240207743096, 0.8538982380622067, 0.7410432283241288, 0.7699629323839382, 0.8127821812278275, 0.9068083116371348, 0.5993154112439294, 0.7425124073048759, 0.6168889189249125, 0.7571660103114294, 0.5424690162405286, 0.9705992877568776, 0.9709487572473048, 0.557439696588429, 0.8837781572679846, 0.8118144389318684, 0.7714673870144515, 0.940811670638118, 0.7245568967555518, 0.8149125968899208, 0.8657720126451118, 0.9555564511015937, 0.6830575558073093, 0.9736210990938025, 0.580541029744738, 0.718386146912199, 0.7626193402387886, 0.8687141677682899, 0.5044511473356486, 0.9682545224555086, 0.7755417005664004, 0.9951852731642477, 0.8147730364484211, 0.8422722696823961, 0.5297397118897611, 0.6105549514209538, 0.8756846961236818, 0.9058346819674747, 0.8565762874776179, 0.9842247520627945, 0.963370371570053, 0.6202004372996797, 0.6375125913554558, 0.814791270198609, 0.9874223392001944, 0.6616147976274682, 0.7481098106416229, 0.8714095755560822, 0.807348901275234, 0.7599041426484447, 0.8788175251559316, 0.6302891137026454, 0.7787602425110196, 0.7142036818221993, 0.9888790303189308, 0.9214743280330306, 0.5707337256779421, 0.7979770293796129, 0.8911142026275927, 0.738311260647134, 0.9649148630030162, 0.7983312843311088, 0.6117538626040642, 0.6753049339136517, 0.7685733713805113, 0.9129289408937626, 0.7442984170558182, 0.9864310921187318, 0.9874578747337728, 0.7538523866071971, 0.5401425450796383, 0.9523382935976874, 0.836553358914707, 0.6556444361160687, 0.9432785382070905, 0.8507310066296347, 0.9393618750186709, 0.9294438016552784, 0.7567013000279292, 0.6713846577563057, 0.7203543429143672, 0.7434047182156964, 0.9988342830813154, 0.7201531422876679, 0.6958772484816416, 0.9829751767848216, 0.5371082415403935, 0.6420466282439521, 0.8699757990653565, 0.535235152353331, 0.6003597477169758, 0.8020342417928371, 0.7834813725422584, 0.7537188633971605, 0.6469753565120913, 0.682766972252854, 0.8540312554034575, 0.6124333394048784, 0.8739983024987192, 0.9951851520606574, 0.7022526170803408, 0.8329179620099982, 0.8366706318964507, 0.583480214595171, 0.6745796909945825, 0.5550232180265349, 0.5271936595505444, 0.8336147615044436, 0.6642866215354859, 0.6066714957592851, 0.6925855875801179, 0.7625974047425204, 0.6346447587704265, 0.5995576883699365, 0.616979226591253, 0.6909029770652833, 0.6739844154287018, 0.871286622573394, 0.9193865706146885, 0.7857647090213224, 0.6343949609938534, 0.858695351347282, 0.6584057173353539, 0.728073248179099, 0.9303893333545387, 0.5446694993284187, 0.5856986522359193, 0.679376697199901, 0.8441634855986812, 0.8138782326907661, 0.7626622718136545, 0.9903233679942804, 0.9826133503416089, 0.6131031723841305, 0.5728843952130063, 0.9826363561152438, 0.8530912003911091, 0.5934193974668928, 0.9802305702044379, 0.9852189365841462, 0.6960952573395541, 0.7642749343585158, 0.663494635503635, 0.8371826876506658, 0.5568342932899228, 0.7951836517511458, 0.6967684689023024, 0.5717525101932528, 0.8124342995884513, 0.6850589449750235, 0.5959575479624718, 0.660269206973499, 0.7657296634037959, 0.6484678813282007, 0.9467716406521263, 0.7113760271436709, 0.519673718897167, 0.5921710653153935, 0.9064019863947097, 0.9455807427386286, 0.736302990923021, 0.5288871340044032, 0.8535148025524525, 0.5459902561582322, 0.6264063062930915, 0.5665697027647294, 0.8969040913868844, 0.9040496847074682, 0.9839080893536936, 0.8714997608140085, 0.7368469199820463, 0.6213013336792466, 0.8248447960780798, 0.6744686974501424, 0.6378280745607123, 0.8532896508940204, 0.5622575493517036, 0.8279252248828866, 0.6620391892745303, 0.6540131850464899, 0.6882501891443632, 0.8562194871702592, 0.5478953508745807, 0.7438956372180263, 0.9628772720442146, 0.7867464873623545, 0.8688081635684958, 0.5582665981197694, 0.97428176691405, 0.7341332581357167, 0.8557268188609046, 0.8827802471898472, 0.7357342482448277, 0.7016304307440208, 0.513677066690759, 0.7149468833963722, 0.8264944711407995, 0.6781699572547925, 0.6473074202147524, 0.7112603078375994, 0.7588034417272029, 0.6128741352097111, 0.6091619233630396, 0.5535766126335425, 0.6535490147497802, 0.6324853661532122, 0.864679428517897, 0.706143019356007, 0.6718091984518555, 0.5871560534536212, 0.8407754991378666, 0.7062027609342222, 0.9207418740376703, 0.5287472296243685, 0.9939333814541919, 0.6486092217135325, 0.5323958347567792, 0.9761124049097147, 0.7289510205461531, 0.7842597224398317, 0.5072765653420195, 0.6491725693520906, 0.9086364620577656, 0.6670027660944042, 0.6934297239719946, 0.965606611356104, 0.6699822298748244, 0.8635261118918497, 0.6900939781327993, 0.5503443700598871, 0.9313813370039024, 0.8744155594550382, 0.8004444114618978, 0.9529300509549936, 0.6745178594672001, 0.7412749426235328, 0.513094362076989, 0.7373125054118119, 0.9479386975949711, 0.9020468648759865, 0.9050258643660545, 0.770924873874262, 0.9709353561949696, 0.7980459498129142, 0.719998980558312, 0.5462862097131966, 0.9284422781527539, 0.7779747838435407, 0.7161121596438275, 0.5329227444051788, 0.9519707576990541, 0.5821115799176907, 0.8510247487055504, 0.8585607488937839, 0.7201221423121176, 0.8241892189447272, 0.6930468979418551, 0.684107239076125, 0.5189691138061974, 0.5584449610207851, 0.9616061672338552, 0.9518418420618691, 0.539556576602294, 0.8417879321803368, 0.803232444667735, 0.8203054552136824, 0.5499846530386785, 0.6814629921320967, 0.9416411820370822, 0.9245704672680501, 0.6724099945603021, 0.6356036795234409, 0.6049687254805037, 0.9798452567791505, 0.9168625567586405, 0.8403887555554582, 0.7170892851722781, 0.8397432718992497, 0.7574960188434442, 0.8814417272690224, 0.8111524380028694, 0.9631708647919811, 0.7669852475408685, 0.6209203750243835, 0.8626887800252214, 0.7892926807707129, 0.9877934966763093, 0.5059522861061545, 0.5832656137362865, 0.8657226879201847, 0.7457948509394781, 0.7023258716648999, 0.7946303448238362, 0.8934786098589752, 0.6475900535919391, 0.8611542277905395, 0.808891924037207, 0.611412483258231, 0.8960744893549246, 0.6188698555605214, 0.8586675000844968, 0.717745596931451, 0.7300888637079737, 0.5177669631620729, 0.9837344085557712, 0.902254176042635, 0.881071845401993, 0.7218549230889458, 0.7764010361051055, 0.6145340823321765, 0.6046464508123488, 0.7120064046578063, 0.6136614720510463, 0.7394905318610563, 0.8237500255338435, 0.7333774492873089, 0.7262309804490501, 0.8180233638467291, 0.9397527458419357, 0.9514973225532638, 0.8835525409438404, 0.5736954914433627, 0.757231081491561, 0.7737105902299528, 0.7628316763222454, 0.8565523790661345, 0.5342195417512308, 0.8592275496443684, 0.8853904042459373, 0.7190690684742453, 0.9195515719195173, 0.8196957901270181, 0.5151626303094369, 0.6767497210615653, 0.6504790615294185, 0.6885899721840049, 0.5594831546041116, 0.8417966633202592, 0.6939841220896448, 0.7368084825531714, 0.8381438717690295, 0.9452596036310924, 0.511417229821212, 0.7308718258461742, 0.5838131970158237, 0.6433003498923973, 0.6137051325188674, 0.8906027152291094, 0.6604464669211465, 0.8820188140009152, 0.6566850659392384, 0.5104965619614001, 0.8246758140185004, 0.732352409259598, 0.5233610858395136, 0.9241411160058727, 0.7068230984632915, 0.6168191507007046, 0.5633751722271733, 0.8897492244279068, 0.9967612814538498, 0.6239610805192553, 0.5159162853952224, 0.8704459868171446, 0.9268172004844379, 0.8886267353910562, 0.5465679454851524, 0.5392228773138956, 0.598951566087934, 0.6561217987047542, 0.6269283534597114, 0.6658791468227828, 0.5877079651128352, 0.6682221443550258, 0.5493348854765445, 0.8934382547957397, 0.913127524253487, 0.9842711563295394, 0.839126021963817, 0.6871840334644974, 0.6988019022292592, 0.9105821931545175, 0.6133590622415732, 0.5029057492311474, 0.9492491847139457, 0.8657898964390653, 0.5849309431141276, 0.978053757986564, 0.9932139883747141, 0.56132891472086, 0.7748494582712302, 0.5958530395302357, 0.7681615129138394, 0.8832433220863344, 0.9121713406080969, 0.81055963241304, 0.9029738174086157, 0.7547748391254911, 0.7924937862440917, 0.8705347466753135, 0.7254759697180142, 0.6867852429959925, 0.6239960158328204, 0.5107101664037739, 0.6371187189385014, 0.9408255760452021, 0.9564407429606838, 0.6476871564146194, 0.8010254645594013, 0.7667372952234468, 0.7213281032321014, 0.8185801356079677, 0.6653504835604195, 0.7986553772749116, 0.8333146699581628, 0.5636217261130272, 0.8256300613017324, 0.7511169664682696, 0.6602479502164467, 0.5968185816968787, 0.8650042246853833, 0.6216793994511716, 0.6234901537914207, 0.6674920493339488, 0.7790837444537161, 0.9458083787346372, 0.5214628479904204, 0.9200066070925299, 0.8431724075817095, 0.8219949866081506, 0.5507767432932333, 0.7322732014106152, 0.7381838068540976, 0.8672962911037447, 0.9440581217108485, 0.8824336602265932, 0.8463135167980724, 0.6571531197951748, 0.9686686009378135, 0.9922966155945079, 0.7273746639496945, 0.9054565083084096, 0.7752153395654164, 0.506570570248106, 0.9870729297618692, 0.9802104287004793, 0.8902394494028028, 0.7767274227232339, 0.7303991030402093, 0.5112103893535709, 0.6595923507311985, 0.7582550738036441, 0.5360056861823491, 0.9981383284041616, 0.9596826065217938, 0.5470519923917132, 0.8575915744539331, 0.963204546571303, 0.8650189177285794, 0.7336968569818443, 0.5213215697597672, 0.7558767021243922, 0.5756874702324435, 0.9610324732269955, 0.500405454829496, 0.6522476403484828, 0.9293809353492879, 0.5786686674020248, 0.6568983624928967, 0.53518337726098, 0.8191314795178353, 0.6651799927315779, 0.7730713808210157, 0.5251956915900122, 0.8198859378300437, 0.5686686067094457, 0.7598192411058229, 0.941163899474305, 0.6621094718821051, 0.8137096501916663, 0.5453756984998477, 0.7821673137661114, 0.612356970084784, 0.9490906459619888, 0.8189739623217202, 0.6677285154036778, 0.9732782808339915, 0.6368866754596737, 0.6616920513079074, 0.7042932704210452, 0.5678251776766001, 0.500938522153479, 0.5959557708694707, 0.9746837129818097, 0.668256460507236, 0.6865698350310829, 0.7868276607484039, 0.9922419165689302, 0.8042822074460878, 0.5165715346729429, 0.7074831072789033, 0.6772114723399567, 0.8825535153188189, 0.6024839063321236, 0.7431982827368842, 0.6686227991573475, 0.7981190414614536, 0.9309363857471612, 0.6954014679115337, 0.9550287766509465, 0.7709566427011445, 0.7205806213417543, 0.7754191843703531, 0.6414170505472127, 0.7979120282595697, 0.9660177120546043, 0.92734724581454, 0.9793748276356796, 0.909242530704581, 0.6935412639962506, 0.993449725979114, 0.6130836749688181, 0.7674181741663015, 0.6693062514341803, 0.6121215841807433, 0.668615353212204, 0.6226165317531993, 0.9990956804733953, 0.615990926338545, 0.9929435091317842, 0.7777186040657337, 0.9581625535288703, 0.9504772765883593, 0.7622637979891536, 0.9771732435579699, 0.8694603721265535, 0.6976066818199559, 0.7175422260752867, 0.9567920159715388, 0.5302177264558336, 0.5502626686927987, 0.7459185634455432, 0.6655955081974942, 0.6380022937340688, 0.8228184648506917, 0.938525615656357, 0.7445087480598289, 0.6878573531398813, 0.7791511890734959, 0.9246934356963079, 0.7682580063674171, 0.7693855978029205, 0.8504784950134271, 0.6800750209394815, 0.985945692248813, 0.8010364263118493, 0.7124460141727988, 0.5898563790305169, 0.6267521052982024, 0.8709079774467388, 0.8086647247605933, 0.6598756328901797, 0.7400766065096325, 0.6202183147208353, 0.5247497401772547, 0.6711953797866859, 0.7764713970316877, 0.9276867647972974, 0.9364098272911698, 0.8028497031911883, 0.5882106081160079, 0.9163061951224758, 0.5085438042817463, 0.7567406960647791, 0.7599198830795387, 0.9468827593460012, 0.5446443397515461, 0.6954595523450273, 0.8114926221616062, 0.6477527619286927, 0.7480595788114811, 0.5094335498534206, 0.5847592691652115, 0.5303398070694382, 0.9561566851049109, 0.7999763968430825, 0.7740389620432337, 0.5802813198986312, 0.795700671257152, 0.8807063714277015, 0.5421710726538498, 0.761686984360403, 0.8417836918947115, 0.5042149442040009, 0.7904528386861744, 0.9959381956804724, 0.9786577019305701, 0.6899491241035667, 0.6780771130396493, 0.9716179535181111, 0.9475227258497751, 0.9088180011635394, 0.8013861225098458, 0.6796313667310224, 0.7194152731656057, 0.6826307433495045, 0.9052295316303633, 0.8950568494157731, 0.8004206405483565, 0.6640321966514168, 0.6560099203783831, 0.843431872701267, 0.9688165122033239, 0.7768465243766031, 0.7669450843353574, 0.9680215971731576, 0.9411365239873071, 0.9505998624704346, 0.7499588226067208, 0.6960119712967375, 0.6651916312188466, 0.6591874272240753, 0.5907385295207173, 0.6221613644837063, 0.9855329488506603, 0.6123601797409262, 0.9109409696293163, 0.9025122982092948, 0.7579855500398138, 0.684573564863838, 0.6875811516971189, 0.5509307267806005, 0.6625965283000032, 0.5782595366453931, 0.7834283945393414, 0.5584771471339501, 0.6290058133988569, 0.5284368102287532, 0.5375103100336662, 0.7135707142118122, 0.7448226821827347, 0.6675397243271848, 0.6961500305799576, 0.9003063899026829, 0.7167409074483644, 0.955776580493135, 0.6204960810207216, 0.9072889078262523, 0.6003500324618766, 0.8094899620679118, 0.9625202389226546, 0.6718253815528246, 0.7977003971738159, 0.7587939429600169, 0.9089311473700818, 0.5997437397451866, 0.5804721506471449, 0.7224270078713035, 0.6718366533319617, 0.5727833433970619, 0.7535927426423619, 0.588121372598299, 0.9843336062646117, 0.8427162163931354, 0.6235057174894462, 0.5488119921640995, 0.7079523799604542, 0.8190732343676869, 0.6412435491711006, 0.7950082211679452, 0.6985244386343012, 0.6068345787357022, 0.8662277521927602, 0.9458827574767322, 0.5387689360272856, 0.9150378059532782, 0.5352459926656025, 0.6456609830150559, 0.9018944029947127, 0.9704008927614634, 0.5378213666948692, 0.7629535864441124, 0.5896536668054593, 0.5292131795232797, 0.5724498906595332, 0.9822416825576398, 0.6948999757569567, 0.9678350138956324, 0.9569825384341387, 0.5235150581458163, 0.5677378770021712, 0.9839364527430805, 0.5948150794817624, 0.5837159665187942, 0.7642354474551292, 0.8063809410480383, 0.6442804448157124, 0.7774369828366019, 0.5079148586650335, 0.8570847342764807, 0.7555436954254677, 0.6997297720475522, 0.5543840999355281, 0.9769866511849278, 0.9946614776432156, 0.6418802503070065, 0.9255209482575997, 0.7701912612121449, 0.9077882189196735, 0.8172915564677496, 0.7375305461146691, 0.5268550093550184, 0.7613345016136643, 0.5093210853232479, 0.9614710287604757, 0.5260952534789656, 0.9056726329018142, 0.6739076497550421, 0.7371649834703371, 0.9617642729798475, 0.7341056835091908, 0.5465222381929093, 0.8597850868774228, 0.6592471930292042, 0.8746660477972048, 0.6451572925720023, 0.8616399382374094, 0.8753487590664322, 0.746321975805988, 0.9774843807404288, 0.7450575955664374, 0.6987279250181371, 0.6447048293141571, 0.8542645236596025, 0.8879217856737842, 0.8024243029445806, 0.7781793225647172, 0.9937419341645646, 0.543456675600781, 0.9297118996475481, 0.8218437377282859, 0.975321503590469, 0.5105345903646132, 0.6678613228564738, 0.836324469951635, 0.64470597773652, 0.9834344167611881, 0.6719143976035219, 0.9614467872955804, 0.6884904106210524, 0.925674174396795, 0.732471880684064, 0.9269549083211577, 0.578143265276401, 0.9870378223056424, 0.8974326774300762, 0.7113330151308644, 0.8261183358077251, 0.5087392876889723, 0.9578812692291152, 0.5269045255383311, 0.9154005860155418, 0.5504301916464578, 0.558352214242056, 0.9582787727490971, 0.7077903382621489, 0.7624462494555841, 0.9562604984851195, 0.6930186842343501, 0.804282637878509, 0.5911072822288654, 0.9056850149977869, 0.7809365383654163, 0.6848986970325208, 0.5876191415331055, 0.6332889028058281, 0.6871753802741944, 0.6910760334769015, 0.706005447541409, 0.8441455051460232, 0.5331326695455626, 0.5484334244522845, 0.6331603484418367, 0.7774708243265197, 0.5494184717761023, 0.7693570701255923, 0.8260705008443112, 0.9341667008935753, 0.5600104853959444, 0.545795650063692, 0.6361117081755221, 0.6673435499008229, 0.9644743294232335, 0.6702289203155389, 0.8645862937623624, 0.6092960703440109, 0.918620509044358, 0.5106862045117646, 0.9208453295745556, 0.9083821085473238, 0.9207646166794516, 0.5648322780796193, 0.7876675243903852, 0.5039751618749427, 0.5943134814558894, 0.7307714573318389, 0.5984010821901767, 0.7120772324321845, 0.8464341321401562, 0.5334537347490744, 0.791486899101582, 0.8319652012775303, 0.5712882414296931, 0.7983335616181775, 0.9451345753046634, 0.5466249207356383, 0.7764406215838371, 0.5495765418932225, 0.7585536779584632, 0.9004121224748592, 0.7642158813626193, 0.5015998169586716, 0.7209548083620607, 0.7533698598696841, 0.9728112035741002, 0.9011001781404195, 0.7466070999975989, 0.9032332865718187, 0.9323998185733771, 0.9999945210042469, 0.5476688201852108, 0.5486308275862284, 0.8631995679608839, 0.7943550244571121, 0.5229173303361399, 0.6561780935590049, 0.7546028663332425, 0.580703299556701, 0.5604325956653018, 0.7598759590221237, 0.5922880277556608, 0.5169690258868973, 0.9513724556273422, 0.6243430281557789, 0.8633848653708144, 0.8082353227388799, 0.6298650607047647, 0.7334361399422156, 0.5535708267636499, 0.6299696506991881, 0.5497527288899439, 0.8968365640382264, 0.688668765805216, 0.9183124667844608, 0.6848600739480233, 0.9577722110966371, 0.8445953064008616, 0.9963270605427967, 0.7396001004060329, 0.5525633970621504, 0.7633499758801434, 0.8732077744189276, 0.6794050298213123, 0.5545743898641702, 0.6824733467179751, 0.7680070580790511, 0.85429468593253, 0.7259903862943831, 0.5024541443026198, 0.841734115828493, 0.7922746983569208, 0.7156403826038522, 0.5969687070361174, 0.6276004142717306, 0.6632858101168084, 0.9714190422009259, 0.7439407841860202, 0.8260445634695109, 0.8011685290819781, 0.8674199312574258, 0.6165989499066982, 0.6376195816521391, 0.7887278835766631, 0.9172107996742623, 0.7289819380832732, 0.5722206230095959, 0.9363883878824499, 0.7441654602768375, 0.7911611443517255, 0.9388839171279474, 0.9247441746730034, 0.8507685536856188, 0.7153299248132614, 0.7486737559346268, 0.6142941748860488, 0.9270814244222857, 0.502114472104064, 0.8361518830739785, 0.5046870145359688, 0.9271484276031996, 0.9853555352274261, 0.6383492756962963, 0.8856586117170699, 0.7720982903497068, 0.814884712560161, 0.807152171510563, 0.8114388721430298, 0.9057348307361726, 0.7679966511820584, 0.7684736989360096, 0.6330991978910736, 0.8271977382384315, 0.7046264682814115, 0.8449572985480327, 0.8744458705746624, 0.568438052894674, 0.6138603400009814, 0.5519121088978102, 0.7689133892894168, 0.9340433799703465, 0.9840596156913752, 0.8308014942256687, 0.9186558960558875, 0.8926106027449902, 0.8010000860298818, 0.9910720289737218, 0.879371465217683, 0.9953156053252616, 0.5034707731642223, 0.873425641383434, 0.8567386710921325, 0.6920998636820226, 0.6169077991963161, 0.7735075004663925, 0.7294455788258682, 0.8226792612047702, 0.5000387290380643, 0.7043946175775211, 0.8232144568331047, 0.5020917159030014, 0.8788255143019563, 0.6611331663874542, 0.5506360565027646, 0.5300029404746818, 0.7338973807321032, 0.6155994969376255, 0.6248630258083369, 0.660117144160081, 0.5086213194193255, 0.693433279969581, 0.6436175225823169, 0.9979863996161372, 0.9334015708446799, 0.6991663784525615, 0.7553172708033792, 0.6544512958017046, 0.708281501443318, 0.6146648012052931, 0.5811810830586733, 0.7520447666451576, 0.8665699966072362, 0.6117874935509249, 0.9213211871254935, 0.7236589192089161, 0.7639839810019183, 0.9048466991790524, 0.6129719092751982, 0.6672114819053989, 0.8175523119361251, 0.7509214933638444, 0.7973672469627593, 0.5925126495925654, 0.9067531610674128, 0.8203582166590664, 0.5864377434649437, 0.7630191418823744, 0.8864654136782437, 0.6963550220014646, 0.6224805368162469, 0.5200509805120617, 0.6998146727459237, 0.5247287764512116, 0.9717219926129294, 0.6078111153636219, 0.7852078583429465, 0.6159755652950828, 0.6687261071518733, 0.683857874166304, 0.6408375173975667, 0.6195684201528089, 0.8131937171527486, 0.6709717902483332, 0.7643230163493049, 0.9091680400581073, 0.8627392153555034, 0.5170886645961663, 0.7469065015244127, 0.8126925493592927, 0.9746351181024449, 0.7772592891163319, 0.5694052963715348, 0.8893404292600765, 0.8073901911366915, 0.9319674074884533, 0.7277585276900187, 0.7572803001138915, 0.6376332179765685, 0.6582041549477583, 0.8269162081211467, 0.5921060234867317, 0.8027928383336229, 0.7441235147728485, 0.691851903456799, 0.7041532658977296, 0.6847066602260334, 0.8038984443327665, 0.9752988845013664, 0.6407157367190797, 0.820874179308849, 0.6974286387482056, 0.8429103897411714, 0.591646850759398, 0.5553704689371028, 0.67234365513798, 0.7946168609471225, 0.723240925767094, 0.8680308356435507, 0.8332243556318877, 0.996089907040114, 0.662562650226208, 0.8375442838735658, 0.7610144817923858, 0.8565349550348123, 0.7988411521173169, 0.7081111539370799, 0.8376686547896763, 0.9807273241587724, 0.9877250016449517, 0.8214595511027388, 0.9077414131936131, 0.761317855879523, 0.8501578615104852, 0.501714266933559, 0.7329576523916326, 0.6808812417595338, 0.5455954082863915, 0.6080781289999327, 0.9217117587332895, 0.6183878707980337, 0.9441651948185082, 0.734436168506846, 0.9424421945454451, 0.8571049125423418, 0.6031805674316095, 0.9808761068962386, 0.7011959673321244, 0.7590011805793954, 0.525809657266568, 0.8004120173658271, 0.6022144658068673, 0.658877001598678, 0.8785566128381881, 0.6656785211150054, 0.5725112361261795, 0.7751117565322772, 0.791036126695289, 0.6769527844093501, 0.8337191963989414, 0.552083337188462, 0.9333790178120314, 0.9006584011477411, 0.8592334489823177, 0.7487693054925444, 0.9110318803207519, 0.8152851907471494, 0.7408289611392969, 0.5128333355457866, 0.7456705034467159, 0.8905544108320723, 0.6623609478569337, 0.5367731131250106, 0.7099369433276004, 0.6557176086606835, 0.5585411837835652, 0.5071883409594301, 0.8819487393702969, 0.950770790987906, 0.5995063354004166, 0.9756687865451242, 0.9262514800785608, 0.7459678342830628, 0.7557388387804119, 0.8949796109760573, 0.5634154216910494, 0.8486136597531855, 0.5630524256856707, 0.8358161086879283, 0.8658339701249915, 0.7409502570870514, 0.5206504757743671, 0.6788433934639324, 0.8854284119447073, 0.840060550822286, 0.871934732739734, 0.9148965928656528, 0.7926385122181638, 0.9597543566150415, 0.8113579537878466, 0.9360852565993275, 0.6260298827664905, 0.6093623699293715, 0.6751118863790839, 0.5640511398210599, 0.9734951679821187, 0.5852073669034203, 0.6716988890530797, 0.7490228544004458, 0.8167432474497732, 0.6839492835633967, 0.6711689632583091, 0.9140286878312613, 0.8441931920791769, 0.7744423821263067, 0.5379039396653851, 0.9371951560677435, 0.6173653021538885, 0.8573002082656563, 0.8610676478452017, 0.6576539208806691, 0.8611722039177071, 0.5216684445142764, 0.7032513612609689, 0.7859472135226335, 0.7692109946036705, 0.7213246950374346, 0.5349735467553486, 0.5964866071063537, 0.9655252118328945, 0.6868852237210017, 0.9154430137551723, 0.5485454588091094, 0.7735693160977195, 0.7303500323717556, 0.9787702157320003, 0.7141848692383725, 0.9886422595743988, 0.5172787782418486, 0.5858426209846264, 0.8666163667430942, 0.921214134576277, 0.617175541721882, 0.9830563983271732, 0.6072196628777213, 0.9341976527278402, 0.9946729131115137, 0.9156777099683779, 0.7566947101618855, 0.6889364961523772, 0.7583018404706585, 0.8751285022608042, 0.6540102138347674, 0.8322197870960522, 0.7889449925231772, 0.8757360598916167, 0.6825386515327937, 0.7368399512950643, 0.5845812824509642, 0.5847096672226626, 0.5702350439708521, 0.520407900873987, 0.7287345767248316, 0.9427138828805768, 0.8913909979681052, 0.5678482481676262, 0.9186653982967872, 0.9754759622062614, 0.987944873901778, 0.7377137030572811, 0.9153734923549044, 0.843831561940189, 0.6847040160426772, 0.8493293072203845, 0.8403981337448629, 0.5164053067234424, 0.7705052558800667, 0.9219620239618227, 0.8030284655163753, 0.5756596399182577, 0.8584155908575416, 0.9103269516590777, 0.82548889721234, 0.5115436534773904, 0.7988380033389311, 0.7611306409461933, 0.640948590768884, 0.9825706929009856, 0.726047698473005, 0.7844013444652307, 0.6906027678852118, 0.9204222295691269, 0.8965659671671941, 0.8393651667102167, 0.6508010710357326, 0.5875513893179605, 0.8760232238205576, 0.7277557936678637, 0.7629148488907664, 0.7961171267682108, 0.7778455584692919, 0.9850282996179062, 0.9165562247954919, 0.9220338989387695, 0.7185460220270365, 0.5948411180219204, 0.8861188103291259, 0.6940195319892988, 0.9650112900407071, 0.7434984011057768, 0.8419076534848586, 0.5982001178726453, 0.7236518883121767, 0.6437528845217192, 0.8815907452032836, 0.7224174508717294, 0.775736126960372, 0.7891561778568705, 0.6813618547163484, 0.8708933379584709, 0.9543675876534099, 0.7175602353405155, 0.6361184947634636, 0.6765471821794342, 0.7078215657524085, 0.6903339170244156, 0.920874058287525, 0.723055000576259, 0.5141251240797073, 0.5545619754711721, 0.8504952626051183, 0.5624658706119564, 0.7605506817031884, 0.7335545160751763, 0.9551077450840499, 0.5721471185484205, 0.7701367248610425, 0.6884689267740334, 0.7539853159918297, 0.6695800172928852, 0.8520811305815725, 0.977548751845037, 0.8385735120942095, 0.6177622943273406, 0.7973329232615074, 0.6103021533505533, 0.6667649082278195, 0.9758784734481121, 0.5216223409941592, 0.9134497620218283, 0.8506586351113334, 0.6373242481741968, 0.5571428184894578, 0.7611413358739644, 0.9540117405940259, 0.53609088166343, 0.842972779221371, 0.8060930587112028, 0.7472567018604587, 0.7146775876392584, 0.5443469268025791, 0.6986580360693146, 0.8549851104082486, 0.9578688332900147, 0.9379440736006148, 0.5676832146621805, 0.6527820271806763, 0.8437476551704021, 0.5342318309517622, 0.6121736885224859, 0.5763993989341534, 0.5611645588281087, 0.9325778460458596, 0.5092675912845774, 0.5641232041460928, 0.5914291368226152, 0.5121302129517544, 0.9310719081064165, 0.9657447784337045, 0.5014692769582862, 0.7407736422872647, 0.5105433068293697, 0.6574253424324175, 0.8137483625301959, 0.951293018708576, 0.6213489782547876, 0.6579361474519296, 0.8989028944047084, 0.6874948792457846, 0.6421627513196033, 0.5344922604732929, 0.7234771520291756, 0.6942666262328528, 0.7393833052416223, 0.6542311527595799, 0.9405718427933374, 0.9391081145740678, 0.574995690344748, 0.7300567156711393, 0.8744838266338169, 0.8529946673147148, 0.7909847133404013, 0.7193622784543374, 0.781642531912595, 0.5967246339506572, 0.6221159280574253, 0.6488254408020591, 0.8037310959967837, 0.7912009293829245, 0.5503979608676381, 0.9487234156837676, 0.5678780739087208, 0.8013045495693563, 0.539974940598328, 0.7783735186050955, 0.7809733324067861, 0.5875577352719239, 0.8511822344069297, 0.6642346089164433, 0.9142511361373795, 0.7373867110804544, 0.7209586747544712, 0.7081298364547194, 0.9187216088468301, 0.9414766229170953, 0.7532215904356123, 0.5771142917590828, 0.5409590702113338, 0.8218243335035825, 0.5086374493010225, 0.9779262160307731, 0.5233388400509935, 0.5078320382142136, 0.5462352580993288, 0.7759923751177977, 0.989835346384879, 0.8838851469416205, 0.8804723079963472, 0.9005216391105852, 0.876585852266185, 0.9558908152248149, 0.5013114419313498, 0.714771971993662, 0.8919383952501134, 0.7392990203523839, 0.7665712648723152, 0.8141250186764422, 0.8883695096097943, 0.9395658441810169, 0.9047372480455371, 0.9375298759388873, 0.8104403421913755, 0.6523861690016061, 0.8113033016831663, 0.7418235981673855, 0.5138076577740094, 0.6900684841879909, 0.5805727156350271, 0.5928452870476457, 0.9324791409039273, 0.536457545842139, 0.7505106850867436, 0.7481778289195145, 0.5817154102156732, 0.959201717762628, 0.8639208004153901, 0.7985977525421777, 0.9817529540372343, 0.5973728561530675, 0.988859497250866, 0.6979855688758405, 0.5021616656917557, 0.576526409117735, 0.7594835862138195, 0.8290592182380818, 0.7939810631324107, 0.6189542349031352, 0.7673253763182901, 0.5599152821165583, 0.9891031437052562, 0.5746715407402953, 0.7139235304602236, 0.8153271842411909, 0.5453069040021401, 0.9069164178590484, 0.9104951525139267, 0.7561438532651764, 0.9796450515795982, 0.7972592910082399, 0.9959874841382201, 0.7709269717711142, 0.699186949299972, 0.8304790045708987, 0.5408351411179697, 0.5032448482769754, 0.5972308728575695, 0.9881792479968533, 0.7992687150228225, 0.8749914088336213, 0.7377649605103977, 0.8168628599607852, 0.6473405364706049, 0.8154195527114454, 0.5275439154868693, 0.846564246756307, 0.9452687240247046, 0.7710319494063784, 0.5918520958755896, 0.90069603003998, 0.7218407429308227, 0.5756087301438024, 0.792463541572345, 0.6055942889592294, 0.7242673139471153, 0.5562412780177357, 0.6669390766928371, 0.8952135744527778, 0.8647638803203145, 0.8014649970615949, 0.8523470282166077, 0.893451283316267, 0.9036104733923538, 0.5038110475167399, 0.5739027405230317, 0.9098295473202402, 0.7836798011182962, 0.5640265046674697, 0.6013669179598122, 0.7028966950428943, 0.7814020139039897, 0.8572599044225957, 0.9254116099825132, 0.8581657257605921, 0.8636059494551802, 0.8738920464007439, 0.6938826183716609, 0.8650612579603083, 0.7852185305765466, 0.5158651535909969, 0.8946342291516489, 0.5359911010294952, 0.6813962231371254, 0.930419226868364, 0.9005068526380258, 0.7666894874000919, 0.5988976616666953, 0.927527723019061, 0.8368134147212204, 0.7131721995936903, 0.9123005552454777, 0.9792345405358753, 0.7488805892438041, 0.9994639860623018, 0.9420593019871355, 0.7453926020897177, 0.8252872967205156, 0.8448847138837805, 0.7704411576151964, 0.772961332447095, 0.7585382343984334, 0.6468193643589577, 0.5832651876237398, 0.708433680074812, 0.7798117022627555, 0.7805526241118312, 0.5147546237091998, 0.8522612674904119, 0.6593916360864805, 0.899600026699048, 0.964984491756949, 0.7840491461815664, 0.9789847173262239, 0.5726486265446514, 0.8590327625170012, 0.6304574322475507, 0.7175100183311539, 0.8323917369887999, 0.6152325894714286, 0.8029280891573921, 0.9159238737510481, 0.7308672714734537, 0.9676149531713254, 0.621287126950706, 0.8191857925930931, 0.6163329306957481, 0.9709933360368611, 0.842499445782717, 0.679869636657467, 0.6220942925247608, 0.6067481632258718, 0.9627717510028979, 0.7443519776846309, 0.959979617512537, 0.8019974173744473, 0.6291371844508484, 0.5884604382152019, 0.7870304477985686, 0.9781703169703725, 0.7667612933923729, 0.6780086974057916, 0.8760231637995282, 0.5500871058930267, 0.5917705667346247, 0.8604437961564532, 0.6226616912141791, 0.8470290274970085, 0.8096207168773987, 0.8725068321960054, 0.8214534417761213, 0.9817607342292453, 0.8272702081670704, 0.8617870778943599, 0.9485462650910563, 0.8554494246746738, 0.8501763445186057, 0.667681742096758, 0.883713106936284, 0.7455492672840653, 0.9072528323495521, 0.6963712818166279, 0.6638927402173431, 0.8329769092335781, 0.6142695271491952, 0.6773441482387363, 0.5410337283329867, 0.5743219420625378, 0.6361190741338933, 0.5391177937325491, 0.9065374127993695, 0.5485829424569926, 0.9739472817933408, 0.8111130547870841, 0.7880784820104437, 0.6777235299356676, 0.9759565165361392, 0.8327521054183825, 0.5386803946162328, 0.5205107013035466, 0.8380494058900421, 0.9043227254747508, 0.6018464668939199, 0.634743741421211, 0.7189865193699584, 0.6326460991543252, 0.8701975303654574, 0.810031779654699, 0.8251991447676654, 0.7321804479535879, 0.8975909134605624, 0.7443486678424865, 0.6819498754495321, 0.9394753873359649, 0.5525034259415051, 0.6489143882397701, 0.7046494017891429, 0.9423842338512314, 0.7302816249623894, 0.8863533495792384, 0.7110722062752095, 0.7511993239358717, 0.9057667864338261, 0.503276203529009, 0.5491781871577578, 0.9807823466135457, 0.5740975954886776, 0.5941032966633597, 0.7213362276885675, 0.6241287563134099, 0.9346017824449053, 0.701017232170497, 0.9498665849454953, 0.9315547793988364, 0.8251556201186228, 0.7972626264427896, 0.7700864343669647, 0.9191762933168124, 0.6233011292683504, 0.9700905959770496, 0.95232802095035, 0.789243851494261, 0.9837770976568279, 0.6477529453781035, 0.9292013222655906, 0.9247516817245849, 0.5458812685427926, 0.628334809931907, 0.8009650094223677, 0.9145955131474972, 0.5956169816215491, 0.7758992859621057, 0.7460162712309009, 0.9707250306931794, 0.6940809306046031, 0.6786595103443638, 0.5621907980749306, 0.7600358930173474, 0.817862375014756, 0.8094737546282432, 0.7500258124958259, 0.8169451858928607, 0.7731922645409048, 0.9963015424400303, 0.6900437415123213, 0.9786477860801497, 0.9664120154969644, 0.6825622352334522, 0.8795570391053713, 0.557890221822928, 0.8277843779075851, 0.7309705504078514, 0.9206135302118139, 0.7489723061022477, 0.5899412023402062, 0.7806230302134605, 0.7828691680753123, 0.9930122052808367, 0.5479775653866648, 0.810435473798637, 0.7626044017005857, 0.691883561585697, 0.5931397774456258, 0.7142539047690526, 0.7864290607109818, 0.6010223879707618, 0.6036661120106486, 0.7382606507364733, 0.8633108081883246, 0.5991493910244082, 0.860610276584357, 0.6094085977531777, 0.8230568607596072, 0.792353274393851, 0.9541091409829778, 0.6828517732535185, 0.5750483270150142, 0.8501958998114464, 0.6852322105426731, 0.6818982552901036, 0.9602440942836477, 0.9459672599714869, 0.946549797441923, 0.5482392036530691, 0.5754952928466992, 0.5968290720589722, 0.8330582049616191, 0.8677305295556007, 0.5439839307505014, 0.5644391970863267, 0.9111327699700336, 0.5900433104990312, 0.8980829470284317, 0.8109285808649758, 0.7249452471153532, 0.8197322402352096, 0.9955706750898909, 0.5299215030699191, 0.7964577927818102, 0.8976167989591074, 0.8319951018010028, 0.5384203380983277, 0.578143949230182, 0.6910281436416332, 0.845487819173952, 0.9578880885778536, 0.9200862630176326, 0.8928872126146503, 0.9538220972895695, 0.9023762697414277, 0.7781126069306648, 0.730926947231435, 0.8560255829969928, 0.6131047207601948, 0.6682972564872776, 0.6738413804077743, 0.5712310307206926, 0.8404277329786354, 0.6930077990400425, 0.9016958106346183, 0.5863382958154844, 0.8147903392376349, 0.9980982905073483, 0.5588813389500088, 0.6150127801519301, 0.836759654167885, 0.766068561320286, 0.9518244707660808, 0.7143340778241787, 0.6794263584704445, 0.7991769108379196, 0.8163928022017235, 0.9052227216019675, 0.7904189938084245, 0.5726880785400126, 0.8823216198511667, 0.5448396841349783, 0.941907355266863, 0.894550642000544, 0.6665599602664132, 0.69431164749035, 0.6017205784145336, 0.8231740950899717, 0.5123851016123686, 0.7993774700689724, 0.8600353654477977, 0.5466456567571618, 0.6878854413051465, 0.7228168789424867, 0.6357353382085535, 0.6922200845493797, 0.5087707805780965, 0.9307182048314229, 0.7171795161377731, 0.6913818772460671, 0.7056045643831756, 0.6997600019259729, 0.5808924556166163, 0.6999838667267723, 0.9051208028714361, 0.53388700592377, 0.9481849547542154, 0.9606366952166192, 0.9559498268943885, 0.7912296241768003, 0.7277521280301595, 0.7900354527035893, 0.9442594641845071, 0.6357414261468849, 0.9000153718116158, 0.6224415501792964, 0.5212524273894893, 0.9600708646604803, 0.5701551451138485, 0.7936293632240623, 0.6930203652132443, 0.7121149644400102, 0.8805457235922697, 0.7309262037492712, 0.7174428722730386, 0.7691966205554307, 0.751797367623283, 0.5808036969286543, 0.7487925355386891, 0.5800095112196813, 0.8103435377487309, 0.926349596840252, 0.6395078780210175, 0.8441455270176654, 0.6751924687698425, 0.8930372431363257, 0.5359806827851544, 0.8311096125583064, 0.5960767628790016, 0.5343324365945913, 0.7567237241905529, 0.6072377239038653, 0.5790035905634645, 0.7443696751650433, 0.6266049106276737, 0.5616688174264932, 0.5097967886198254, 0.984884219260761, 0.5119611426655764, 0.7026020820661172, 0.6347096963872921, 0.5126680451851859, 0.5768144719439854, 0.5924420467537922, 0.7071219796271153, 0.738847021013549, 0.7192986267544788, 0.9940967392116231, 0.5249328575502241, 0.9511202514034909, 0.9437067971114137, 0.7874247200229927, 0.7727001923645211, 0.536366890805853, 0.7821370348136708, 0.8673528657412288, 0.7085730291582659, 0.8219636918513997, 0.7269156423915237, 0.8878934673592296, 0.605110409350277, 0.5813720336907899, 0.822737992856148, 0.7049677148934773, 0.5683368421512307, 0.8689444219042031, 0.879845221924203, 0.6254700527880517, 0.7402053780140156, 0.9213581253408849, 0.642452889443772, 0.5341984355298981, 0.5859434755250991, 0.9324936347959054, 0.5183080073255574, 0.5098158924805196, 0.8301084855945606, 0.7200026371426574, 0.6555199814005429, 0.9383384372184174, 0.5475963133897939, 0.8584346403824333, 0.7243917291042083, 0.6578668835611639, 0.9461821656325592, 0.6756244412876629, 0.7083388089528574, 0.5358872891509565, 0.688250489577416, 0.8352503953435142, 0.5748578158980638, 0.8951491674798002, 0.8052113706061796, 0.8768076786632302, 0.5979931793729433, 0.53929540392847, 0.6906265606386863, 0.8010595797665769, 0.6224920148343782, 0.6382865734718695, 0.8618174838219478, 0.7913926647487018, 0.8152391942301827, 0.6977778890184914, 0.8592895517386541, 0.67783395088581, 0.5122598169176877, 0.8346574909437052, 0.5044392664644368, 0.8633195962042921, 0.8954328262455621, 0.8101937366956169, 0.5993736955878854, 0.6732881263911665, 0.6729196077903037, 0.5004038239226967, 0.8928691896468455, 0.72839833645529, 0.7738029367719329, 0.936505955885687, 0.7576913307260366, 0.9580968253505359, 0.7373598733278242, 0.7848011400157636, 0.9728757864143238, 0.8219990317491706, 0.5691381202256806, 0.9529732066646955, 0.9241168016783512, 0.5519899219602891, 0.8833281067643566, 0.7219872631216315, 0.9771864663037118, 0.561744134852693, 0.9617826813080995, 0.9714280957122299, 0.8415942599465431, 0.7439391762575289, 0.8712159278615617, 0.52141029717427, 0.5034098102890976, 0.9576643351054117, 0.6086624680774444, 0.691018595956616, 0.5199800489327489, 0.9840202495408792, 0.6626461786116795, 0.9810441077751285, 0.6407387883408078, 0.680718722543473, 0.7979071806064246, 0.7092619181720448, 0.6652445975333803, 0.92205484070767, 0.5011035089111557, 0.8700406191222323, 0.9368280825040425, 0.9791540481403971, 0.6507359424360633, 0.978698116663359, 0.5425053542968439, 0.9329131988466993, 0.6839189458764136, 0.9666259849955838, 0.8787101537252395, 0.7739965210285218, 0.6920100745294493, 0.6928408174791612, 0.8461354875651388, 0.5110899125925203, 0.5305254582124421, 0.8955756913800571, 0.7173471215143512, 0.8989931850663951, 0.8377499588588169, 0.7174356876931445, 0.7557150819485693, 0.7988633610705485, 0.8078297336395399, 0.8524359714866634, 0.6781770841638315, 0.6440988731435162, 0.6507644688468133, 0.7772129490306414, 0.5076517978676873, 0.9812584617655986, 0.7129242157169291, 0.6502224526392093, 0.8870558319207497, 0.51413428434432, 0.7685045283709111, 0.8023571416241271, 0.5352569792385461, 0.7673201155387632, 0.5383675930020885, 0.7069569558109077, 0.6941123431634464, 0.6685579618374049, 0.7126086368991531, 0.6320408559254431, 0.9005884478099425, 0.5769287256246607, 0.5494499420789243, 0.9880795499575137, 0.8392823384247565, 0.6928919819908335, 0.94184401874419, 0.9112467101346192, 0.6301282242484886, 0.9856474137151721, 0.6374646990171181, 0.7873543376987204, 0.9357662096919265, 0.5321764524028555, 0.828429382341886, 0.5268027704159064, 0.5635782115114363, 0.6537980684730924, 0.9286686504178203, 0.5144028366600524, 0.9930096267764636, 0.8848357242749012, 0.7360712904344006, 0.6485494082793126, 0.5198398020522864, 0.9099640574920929, 0.9296352625141713, 0.7911864695831575, 0.549983895595037, 0.912493895017113, 0.8267642834749255, 0.8757175981366463, 0.6193697282884123, 0.6836435224468151, 0.9031339415061675, 0.5313783925452578, 0.775642146285334, 0.7993632921967209, 0.6612037125834429, 0.8730546530349685, 0.7409214758397583, 0.683058416287132, 0.9767076692067223, 0.8673213380747933, 0.7373296146436441, 0.9246068387961182, 0.8056968835510872, 0.7117480114764573, 0.9559937267386887, 0.8137387287601849, 0.8617399554134947, 0.9738959670958847, 0.8191664849007055, 0.7820889243777718, 0.7706335064882242, 0.9914816297582144, 0.7059763652629338, 0.7937027884128351, 0.6933202516148893, 0.6045498425693148, 0.9062886593932535, 0.5021277292669991, 0.8040693020486518, 0.6782373068307836, 0.6978610535633085, 0.9874883779799706, 0.5849650004298366, 0.8683191668946539, 0.8378136991771845, 0.6867549267928912, 0.5131552084432079, 0.8165576278229282, 0.7709906805103672, 0.7505364722961041, 0.714380723234052, 0.5440737433445942, 0.7234548982825719, 0.946564685824362, 0.5446790487120924, 0.8015398686656714, 0.582246658111652, 0.674985728551595, 0.5746039603575208, 0.5523300853000758, 0.6034154320004493, 0.6045993829406531, 0.606152494457002, 0.8089689906378451, 0.8010958980074773, 0.7162897258515541, 0.5783568616365815, 0.7956951061462042, 0.720333688505729, 0.8566024367773342, 0.6974660452148855, 0.6128270982779279, 0.5812460573454372, 0.8121073818377068, 0.9178789616285375, 0.8651231174071307, 0.8220461083869566, 0.673284052489449, 0.8426484126362533, 0.980121425370273, 0.6933009540456145, 0.591785472769141, 0.5270420863604042, 0.5699694277024007, 0.7940115856245666, 0.7989147054401109, 0.594559980792758, 0.6496592425560233, 0.8543307955477124, 0.8744720766262934, 0.5789391628564233, 0.543546880624187, 0.5343858541501918, 0.6049843664587145, 0.9827604171342899, 0.7453114051051433, 0.7428667662471142, 0.7886067157797411, 0.8679988929927249, 0.5785290105404712, 0.7956154475193074, 0.7155517025188658, 0.8032767120011499, 0.6026559220851704, 0.5556570095252755, 0.8218835602584755, 0.589222386561274, 0.6167510973350533, 0.9001136418906877, 0.6278348472938075, 0.9706177480710108, 0.9474051317422828, 0.7895721655336152, 0.936173881709629, 0.9269037336976976, 0.8244894130306701, 0.8327582572539329, 0.8864075034906731, 0.6561097946201897, 0.7958710491009815, 0.8912289994607809, 0.6862481585305087, 0.5398632114083455, 0.8427674376041161, 0.6559940225035572, 0.9696712839610881, 0.6171616625015006, 0.8978792386204114, 0.7392372846591007, 0.9897735806576543, 0.5235319392060682, 0.5693525821198462, 0.6945312049651471, 0.7825622705083422, 0.9618438658768711, 0.6071390283901374, 0.590963875002418, 0.8434801464138448, 0.7561683299354904, 0.5901837776925891, 0.7495380727339576, 0.7227156530568887, 0.8131586609406147, 0.7286649516207839, 0.6129634830567231, 0.6770823757648545, 0.6795967601758819, 0.934654020795459, 0.5147124654427926, 0.5685028116228379, 0.672334893472605, 0.7187988299922965, 0.8880105335203281, 0.9601970673996028, 0.7497879459039123, 0.5232032993056249, 0.7508667543998404, 0.8969118851251925, 0.6760926101999778, 0.6462313606153529, 0.5153974746548496, 0.7888618857813711, 0.5782951041474773, 0.9667023319537558, 0.7131003418349118, 0.6679985582471815, 0.896912469469359, 0.87810817790712, 0.8693205505479293, 0.639474835912829, 0.7914076728795995, 0.9670128484526948, 0.691252911463295, 0.6389538329101749, 0.5244918776923324, 0.9638833657071308, 0.5281859117356964, 0.7419616982896762, 0.9333506138486038, 0.7073092094632112, 0.9618657995204367, 0.7254890320945844, 0.6955199464696525, 0.5335885641582163, 0.7101798613364276, 0.5001626374765711, 0.6363011871599105, 0.5254610531493419, 0.7302062124933895, 0.5169764873644871, 0.9919264718734154, 0.9458959461364002, 0.9440528150180132, 0.6332736267585781, 0.7789212365115257, 0.600054429016508, 0.8012224595331858, 0.8643697529693057, 0.6768774116512182, 0.8518308813985902, 0.7876652878732486, 0.9462533010199681, 0.7777090085878812, 0.8314569381380873, 0.6772215417964924, 0.5593221228770242, 0.6904713478458797, 0.8255285414449791, 0.8630237988940882, 0.9558491085147236, 0.9743500627473068, 0.8938813973820225, 0.9576298507438912, 0.7162159337356083, 0.8795885745126537, 0.758159532890315, 0.9809767548668735, 0.7166546559680386, 0.9548751817523522, 0.5158198192006629, 0.722892181879133, 0.9729759901963555, 0.5733412367437309, 0.9798358659566218, 0.7551591814909006, 0.8195334208299413, 0.829413489410676, 0.546187169623216, 0.9921620959381044, 0.8913386991081409, 0.8619942341754518, 0.8655976603539282, 0.8581649190016291, 0.5783430774766909, 0.6234534422725114, 0.8695501830773971, 0.637408763419735, 0.5972948144312926, 0.8067455882506829, 0.62696527498211, 0.5989461824192398, 0.5884805675662171, 0.6060757863803048, 0.5419520901722917, 0.9347610123361322, 0.5194990965353925, 0.8045057887513936, 0.5011530502900841, 0.6439972990287866, 0.6843741910484857, 0.5363370047615781, 0.9117224677761657, 0.8696887734025212, 0.6012951791550909, 0.5818664363322434, 0.8472744730031128, 0.9057778312643087, 0.5732774000965508, 0.7897758243613889, 0.5713042202717726, 0.7859751932393542, 0.9334423930102341, 0.8014041830400409, 0.8213841109419999, 0.6912047967408486, 0.9728149287020921, 0.7595517860797594, 0.9523134153636716, 0.8260738173945975, 0.8652830274204679, 0.9705589899159204, 0.8474597604860579, 0.79533255412295, 0.5983395199606378, 0.6806961530777047, 0.5951445873121779, 0.8978627907542269, 0.8378631844476527, 0.9291010366055317, 0.5835031712920321, 0.5966278881911462, 0.582262721150987, 0.7481088064421597, 0.8124764467290628, 0.6261342949908661, 0.7980647798773322, 0.9103610733154036, 0.8678012822238518, 0.9685808134887719, 0.6516798736354086, 0.5730885404480212, 0.7729033472698734, 0.8363819812798958, 0.7074579401451397, 0.8892502471729571, 0.9587522020929791, 0.5875409261541609, 0.6486331326166029, 0.9156829311918504, 0.6518981218794111, 0.9645396392552503, 0.8799106408428141, 0.5318843719369091, 0.6799675081632908, 0.5554944140194279, 0.7194970444399195, 0.6953974389691272, 0.8822267768900963, 0.5941557614203958, 0.6196065196385216, 0.7241321078940284, 0.7376091936912531, 0.886450779510265, 0.9149032203715135, 0.6164166322599373, 0.8672842250842946, 0.9066259338628386, 0.5561566739485766, 0.8468317173366371, 0.5895154663030389, 0.8141957827673156, 0.7201873687075654, 0.5245545849372978, 0.6114358763132188, 0.9441907583287925, 0.643788709790936, 0.9017351748644296, 0.5860546805133635, 0.632208048140541, 0.8031613518996217, 0.5516347362737994, 0.8910449612765345, 0.8383766119144971, 0.7454761409004069, 0.7394227123370762, 0.6430053489238434, 0.6503314994305789, 0.5696119808187547, 0.5573545726434094, 0.5704898156961793, 0.8826146156111802, 0.9821916606155561, 0.6913919360823235, 0.8449767589845042, 0.8460847831033201, 0.8749192131889152, 0.8743957692803415, 0.6734635486314662, 0.6955714103846605, 0.9468302935005739, 0.6540801833003163, 0.9798960304861486, 0.6759116163185106, 0.5722928622733607, 0.6201884989604988, 0.5682718507116483, 0.7014927937707753, 0.6261430371862529, 0.5529921762751961, 0.5371506562530941, 0.8022370108184715, 0.7575033698683631, 0.6568141117817283, 0.5548373735251364, 0.7314845740624483, 0.7027652128867468, 0.5931323572928111, 0.8493399893910256, 0.9954184972025226, 0.7036387184679713, 0.963876393093805, 0.6538538762474825, 0.5145560976107177, 0.7603564607225742, 0.7988244182911253, 0.5191026161353082, 0.948558354690362, 0.999905674482197, 0.831537937346259, 0.5157281787404855, 0.7881243974094745, 0.9354549647846242, 0.9898966271958403, 0.6054602135004015, 0.8646117331468597, 0.6935609164759668, 0.5831816880950089, 0.9745835941416261, 0.565619877204526, 0.99787502214127, 0.6923198875665271, 0.501192969424233, 0.9604803153953109, 0.5132108281100625, 0.5842508868265646, 0.9494100250993567, 0.6705613728262965, 0.8348769603506236, 0.6466837570503909, 0.626884663563329, 0.7392542091720915, 0.813767579479945, 0.581094875300933, 0.891942265884278, 0.5694084864091444, 0.770996621740072, 0.6249380306777054, 0.5223205108157963, 0.5572469252280514, 0.9734168021136121, 0.8065809382225781, 0.676882689151262, 0.7699683491378759, 0.5559634654481982, 0.7936156948931525, 0.8231854130351196, 0.5247399962706334, 0.7528487684207199, 0.5181454264914861, 0.7833796713052749, 0.5707468845514708, 0.9314642198283374, 0.9776325322475298, 0.5866472063636361, 0.9915025752057733, 0.9777395959936046, 0.8186012884457502, 0.5562389241148057, 0.8272789263386175, 0.5717490295610717, 0.6098893063416453, 0.8985247748038037, 0.844130352796636, 0.7942810415155463, 0.65845391949269, 0.5218727105487456, 0.694433917593857, 0.5159592426430102, 0.9249764435694161, 0.5303835523287193, 0.5440392869165709, 0.9409536071910556, 0.8387014923682714, 0.9789898896405076, 0.6539674651707444, 0.5086305303306853, 0.8939130398249724, 0.7900195649319103, 0.8446520448719372, 0.6182428156123845, 0.9000245103144715, 0.6869321628077201, 0.5372879933573969, 0.8241269512937948, 0.5365369834098943, 0.5896348012750193, 0.8081844610862605, 0.68361062936933, 0.7424738028620139, 0.9068907729206002, 0.6814050762314061, 0.520854081229132, 0.8793361616887363, 0.9906027889524474, 0.9384887746955883, 0.6796891565631769, 0.9424478608696882, 0.6654268948527783, 0.7592537885639383, 0.9027775348384377, 0.5412195625095502, 0.9851628748889926, 0.587813685656082, 0.9781954667711009, 0.7737571032316974, 0.6268518662137252, 0.6540402020963808, 0.8640916041971531, 0.7451554332986278, 0.7776003208797899, 0.9581348209560803, 0.5856907790223276, 0.8393466663963659, 0.7116174008174921, 0.5967909681442116, 0.8491242153611562, 0.5342794646082225, 0.7030675674561203, 0.766982018140742, 0.7386168241309135, 0.7977431310061041, 0.5277268952204446, 0.6002982217481323, 0.6044656677256731, 0.8916391571080995, 0.5081033879418196, 0.5641234749550079, 0.5389605912187364, 0.7842996041509831, 0.8410021782655335, 0.770027057117213, 0.8176505318658978, 0.5769964883373083, 0.862396890471198, 0.5759850218997964, 0.5957159469077027, 0.555562302104474, 0.6676560128620387, 0.9381844571376347, 0.5458184274619171, 0.6944079947702678, 0.8147016475295419, 0.8342066552517158, 0.5286587621045018, 0.5320333900719348, 0.5906958943496754, 0.5289562428145814, 0.931858917660763, 0.7716836444243503, 0.5107818215947433, 0.9580947446143975, 0.5903526086168746, 0.5288825386071532, 0.5333580237243862, 0.9426259050952792, 0.5756934848891704, 0.8603399828314899, 0.9037270964410384, 0.5588059877853088, 0.8017595259667694, 0.8000360368569108, 0.5061605342700022, 0.70069515613006, 0.7732161946645004, 0.5868991864171783, 0.9788731790967511, 0.6494596013628081, 0.7603956165330445, 0.6605624842166099, 0.7018693587646284, 0.5898834397394911, 0.8158102543795571, 0.8265280375824218, 0.5773609227690986, 0.8132459942386037, 0.6358662639808677, 0.8892848712147605, 0.8594753822675227, 0.6204450028888979, 0.6272577639773566, 0.7021834425058538, 0.7670391268998301, 0.5386037357527708, 0.6013387672724533, 0.9394673995078996, 0.6616037889552755, 0.7149504381808579, 0.7222979155364923, 0.6834247091575147, 0.8947121792679504, 0.5727249369844981, 0.8804914502002784, 0.8146391938784467, 0.6250390180535663, 0.6353143875354017, 0.8362156255402535, 0.8189049576541108, 0.6235455171891005, 0.7532519795192955, 0.7700798430741389, 0.8387808729435957, 0.64786517131822, 0.5507143444103666, 0.8282463357548941, 0.6610590089352015, 0.9065842102165937, 0.7059455933691684, 0.8796014743044871, 0.5962189652657988, 0.9677287867013542, 0.9643528128903448, 0.7431911307643433, 0.9820774316022625, 0.6766521847907156, 0.613024754634367, 0.572073809061545, 0.9552263027778922, 0.9400368470386522, 0.6041866050046982, 0.6469131548079337, 0.5544382561533381, 0.8607604403239211, 0.9009490822670221, 0.5316558048833049, 0.7380123783489809, 0.6786093774008666, 0.5095007243275014, 0.5058786188298596, 0.7336350831638254, 0.7793346086205039, 0.7501632637977684, 0.901080737805406, 0.5522434084387654, 0.7944195270595376, 0.8439621473661212, 0.8950234168377171, 0.8558679660401503, 0.9133555064612655, 0.8345802286169893, 0.7667435473168387, 0.6281486287140596, 0.8209746342839952, 0.6345129959298939, 0.8111382598119747, 0.530340119584727, 0.8408171665595343, 0.7393694264934585, 0.5060027595498822, 0.8379843254426278, 0.5710935027882298, 0.7576859324322653, 0.6476718670366666, 0.7392619989436234, 0.8497388562612698, 0.8710618036621108, 0.8014910455307818, 0.5011487248612491, 0.8649609317711833, 0.5000788495233461, 0.8882336666775409, 0.8759742053726587, 0.5935943339415768, 0.7791644237414197, 0.9535845882753355, 0.8000815406366035, 0.7356326871059278, 0.9613109026672013, 0.6843099058386314, 0.8239625116073135, 0.6922639670934991, 0.7146077925731539, 0.7935717989674873, 0.6784083749759615, 0.8058741000706197, 0.9585854070783472, 0.5734349631858229, 0.5175636165559259, 0.523393548410781, 0.7114031667714429, 0.5540244812047698, 0.9543753994765342, 0.7630578445270033, 0.9041099456438093, 0.7442093316283649, 0.964009380911693, 0.6356031365384323, 0.7798019567350434, 0.9194746928645559, 0.6747757776649727, 0.8340919782180705, 0.731299066937252, 0.9131167014036925, 0.9059077969962389, 0.7938286854939565, 0.7995203648225271, 0.8842006812588341, 0.6392507860563625, 0.8408609911116569, 0.6702804617290181, 0.6258902088969778, 0.6427380392082127, 0.9107127124034873, 0.5140088695119123, 0.5299646269189626, 0.7535521070721177, 0.9433979226513292, 0.6980427009781547, 0.920665801502454, 0.6057762170773888, 0.97739636029686, 0.9239395698511779, 0.9509854008771952, 0.6841648454244927, 0.779523187650718, 0.6850198748409513, 0.6260615280893526, 0.5724583545751705, 0.6044381410290818, 0.9880231669008245, 0.6434969415699734, 0.6983501640312517, 0.6620465163483079, 0.9702389154813171, 0.6235993568411178, 0.9124329827050832, 0.8302318487081036, 0.636587493192674, 0.62546520167963, 0.7682367272963856, 0.9632417573384027, 0.9426057035086622, 0.5846402943001217, 0.7214788051601062, 0.8263942189056366, 0.8908471963537368, 0.8933139096863962, 0.7172283590627974, 0.647197447372938, 0.7632812143677807, 0.7230468306364306, 0.5786080180631202, 0.9228690595721977, 0.5593774616996192, 0.5424723746490269, 0.9586139783670682, 0.7012187629287971, 0.944591502379772, 0.8716723389563561, 0.6792771415418081, 0.7040622053872554, 0.8160494180758665, 0.6833096092117827, 0.7550655030422269, 0.7027602359054226, 0.7440645612636112, 0.9030069906665701, 0.7235139800453436, 0.8249485913038612, 0.6081200307436905, 0.9666315033057793, 0.5093270727083992, 0.8581602431513664, 0.8676443880009668, 0.5527901511906698, 0.5953317672549927, 0.7097655462760137, 0.8652490691550085, 0.7812239998041566, 0.6713272670988042, 0.6823812279427399, 0.5217900542447311, 0.5556171377346993, 0.7299799121734905, 0.6313686861204542, 0.6100369151728462, 0.9560257464158608, 0.5935569606116017, 0.7257679651633369, 0.7559655280029847, 0.6079719574240656, 0.5852772887638299, 0.7918156027288559, 0.8268705896519789, 0.5061460932896206, 0.5864387752658213, 0.9825638694073453, 0.8980236046454446, 0.937684343589287, 0.8561265783179582, 0.9428202898735325, 0.8193632849808841, 0.6611464420788561, 0.8166043223693773, 0.5452152535913792, 0.7913378066049628, 0.6948557811935123, 0.6657990346014249, 0.6813044486121347, 0.5358002320104864, 0.9111798760572225, 0.7493854373859369, 0.6001030950698147, 0.6363060195080439, 0.9297715917395836, 0.6348193783961376, 0.7105709502770081, 0.6247812652956255, 0.7294808397224486, 0.863033857998559, 0.6398975895256889, 0.6933874951401933, 0.8591937184256362, 0.8803689084411466, 0.5188655090533831, 0.6807509734933193, 0.8907881306151624, 0.5097037245544072, 0.9989665438372799, 0.633137440708933, 0.9932250302299321, 0.8395060784386452, 0.8817268634026774, 0.7507185434712309, 0.9864790427823598, 0.5364097807029735, 0.8051918886283793, 0.6870761609380711, 0.8205617689358691, 0.5576190012646784, 0.5408319448550358, 0.7310757516254134, 0.6571544853679478, 0.7788418929936907, 0.8320611673610578, 0.680070322736797, 0.7337731613178584, 0.9561864491694838, 0.8664916982604607, 0.9660846369348843, 0.5695716029245825, 0.9860420871586099, 0.5881772598885859, 0.6562051399379263, 0.9410708563707467, 0.8323349078550928, 0.8799944717550388, 0.9963212683322797, 0.7159995200673129, 0.9420230208900406, 0.8701289822866831, 0.8319430946173886, 0.5802075115578873, 0.7691446487999737, 0.802330560732107, 0.8670425208540127, 0.7432057743456644, 0.5243318594913303, 0.9930176611027491, 0.9239801625422468, 0.7724998247665169, 0.95428156889685, 0.8412522833210884, 0.5647577815630561, 0.583667265534032, 0.8939796238584983, 0.5872872383793646, 0.635908361618891, 0.5048765705514391, 0.7196574261026065, 0.8014786491913644, 0.9228485428999459, 0.8390255861108641, 0.9035431259630213, 0.7219888309811985, 0.907287754377272, 0.6055402699632468, 0.9997592022921143, 0.8346346768256134, 0.9004246778126334, 0.6402434890120868, 0.6479561980604653, 0.879613074497952, 0.7812059276002146, 0.7128416272878976, 0.8470925124314043, 0.8268660009446402, 0.9682819341995329, 0.9653109730412364, 0.7551637795400721, 0.5151046689385252, 0.9162373291663184, 0.8003971124081639, 0.5106956151553511, 0.8411498695105206, 0.9922636592260514, 0.634334208844302, 0.5596659932549095, 0.5791447583068419, 0.8966995697434068, 0.8230031484922811, 0.9613744782755674, 0.5888755051453753, 0.8304424245953563, 0.7592890112689035, 0.732913891095057, 0.8810026302276186, 0.7910577626350426, 0.6120244671315673, 0.6872987543999611, 0.5898648431927036, 0.5045067724512736, 0.9416940008194492, 0.8323043940544681, 0.7586813885007059, 0.5560384993241987, 0.7672148833439507, 0.9836967459923015, 0.8195560954092966, 0.5421906942268115, 0.8641590984856589, 0.7232430180052076, 0.9064693366070868, 0.8437421849486568, 0.8651110098128177, 0.7746283192506436, 0.7573606602895764, 0.7739253418853274, 0.5993822563516567, 0.5212725768918305, 0.6808649489565077, 0.9285250329307491, 0.7163134942172708, 0.5124233527243638, 0.6361182178196522, 0.7516426819792699, 0.7719857318085872, 0.5129970029518338, 0.5551970782077503, 0.5664220487254905, 0.692824462284505, 0.7279743177669769, 0.9475031459855692, 0.931632564130741, 0.5645576897545577, 0.6448218127054641, 0.8214566939820663, 0.6927723653674656, 0.6296986537057683, 0.8462434700101726, 0.7851347404018192, 0.5930469360225578, 0.8746656096664638, 0.9812701099358856, 0.7771712553529793, 0.8132106617302237, 0.7467833977561739, 0.6736151927309136, 0.9777000432329648, 0.6099037534084185, 0.7031037681119678, 0.5456209019194522, 0.7333575304671787, 0.5049727343998811, 0.6152553975732066, 0.9553233350660826, 0.975947833765762, 0.6797100473913572, 0.8347741965795563, 0.9046971416856067, 0.5865071122140486, 0.5712725270582353, 0.9025175113889101, 0.9983817456014517, 0.9265154972136422, 0.8954105925756628, 0.5825359885066899, 0.801086142143512, 0.6146517651367888, 0.9736808009367074, 0.7175429574523771, 0.6875819467260917, 0.8656463955249513, 0.75246071574204, 0.7509097723280456, 0.6029572234265979, 0.6450174826984587, 0.729087358575639, 0.6841373232996149, 0.8194094026812744, 0.8852935404168646, 0.8469865588539698, 0.8809327487031411, 0.6621357978538465, 0.8841756737874862, 0.7678507548849828, 0.7735946468464268, 0.8235823032287563, 0.5534635723566975, 0.811093464946073, 0.5230893216766045, 0.8615320501186333, 0.5469240064397114, 0.7417444147033602, 0.6819691216865367, 0.9072592197523625, 0.5630860231953487, 0.7619116928019106, 0.6711975234962384, 0.8524886997620575, 0.6401402178995736, 0.598979177526145, 0.7752455259438946, 0.5901444997320782, 0.59878709293069, 0.5758368744493731, 0.7493110088590557, 0.522329476828326, 0.631493619277069, 0.9348721087148086, 0.6584573436056895, 0.8554297169690779, 0.8335276884225942, 0.6638157519379653, 0.7371051459683319, 0.5970060541379475, 0.7888049075026555, 0.809282032021125, 0.7826456905691043, 0.5454522999484377, 0.5961583632245101, 0.568718206285826, 0.7956060724289319, 0.7432101858020164, 0.8355169904687538, 0.5968485167303483, 0.9725694822884197, 0.9637118386301635, 0.5981323160442364, 0.8364466612853358, 0.6944574706842193, 0.5595496860427898, 0.9702425653625009, 0.6652031271822041, 0.8690373414247704, 0.7646775006922684, 0.7407972956596374, 0.5939781859509207, 0.650752579040411, 0.9460884972051, 0.6548897165990392, 0.5011906243383363, 0.5936664871846411, 0.7481203984600764, 0.6737812541399124, 0.84278281284736, 0.5141995178424938, 0.9942676767784338, 0.9559308417124159, 0.9388654801032001, 0.6244586646103503, 0.8619123496558707, 0.637238976826986, 0.6803683113658083, 0.9170862265198239, 0.6698493780055663, 0.6530861443382011, 0.6848461322725441, 0.7379535638851826, 0.7564683467845907, 0.9712087254195257, 0.6812533135615029, 0.968272133325726, 0.8706009229383298, 0.892605974073899, 0.9121318730101097, 0.8122241042145781, 0.7701475978631368, 0.8369216886523141, 0.6329376460692578, 0.9681412553646285, 0.511462285520373, 0.6404076239544669, 0.7195697987994906, 0.8241624059171067, 0.5535022793678668, 0.8527242536581789, 0.8940987528760684, 0.7345225245758644, 0.6410582796698707, 0.8483292826024703, 0.6057898784311806, 0.7864446547117856, 0.7093535432581943, 0.6834189856017591, 0.6481457583796533, 0.7022394004496327, 0.6605572778948441, 0.5950494673844958, 0.9925880458263371, 0.8791966654982284, 0.9751754904386334, 0.8554310721154883, 0.6453120754995565, 0.8490521473741631, 0.5972458415435562, 0.6078475607380416, 0.7244933189320031, 0.5040498221749913, 0.7977852130847656, 0.6624490638240706, 0.6998127427671161, 0.9445833240764802, 0.8151822476534739, 0.5348267531061457, 0.5504361201408161, 0.9011161364904452, 0.770724806261128, 0.9157763737715925, 0.7010939252404962, 0.8171781816086263, 0.9243669183617238, 0.9200561722259855, 0.546736431574192, 0.7965646751883138, 0.517945552798653, 0.5729921096492256, 0.8166286898948015, 0.8424682102184078, 0.8396609369393397, 0.836457656086476, 0.827524766220957, 0.7631190578042248, 0.5699658953094089, 0.932183775779089, 0.6873025977481331, 0.9575009311561193, 0.892976283208935, 0.5370429974200113, 0.9014700582141628, 0.5751243304971676, 0.5802029571183089, 0.9370008912716077, 0.6087946858518338, 0.6070445125656612, 0.8098210068365697, 0.6183553163614377, 0.512837082625687, 0.8981277474682645, 0.7264617176890047, 0.5023210654165373, 0.5842978761512723, 0.8949162213145319, 0.5240199523651002, 0.5870829652488931, 0.6443549568607171, 0.5566342172434188, 0.5714573865056372, 0.5480338462844325, 0.7669706716440421, 0.8138586951596921, 0.9910238350077374, 0.9083039202505971, 0.7983401477887007, 0.9289664309849888, 0.6483509202862778, 0.6396277680171132, 0.5361156093474418, 0.54462776189185, 0.9378250654836806, 0.6311764026813262, 0.5475886431405411, 0.7459679016767591, 0.8050012634962462, 0.5880742293522516, 0.518155135111519, 0.7317072861322411, 0.8344799151059414, 0.8344427783033936, 0.7289754789027136, 0.5501644967977553, 0.9360725796959964, 0.5951516167405095, 0.5335283957141188, 0.5092698604735804, 0.8394018011295401, 0.9535352688832941, 0.574125554279185, 0.5425496290525693, 0.649645599197104, 0.8233452924600108, 0.9971907700212079, 0.5535549225079373, 0.6148287240868117, 0.8372826828929354, 0.6105486032700131, 0.9304265731260242, 0.5772142404366126, 0.5091488322617248, 0.8370747738467132, 0.7843792290716293, 0.528780134364026, 0.7691645049401179, 0.6501866106705791, 0.78593887480382, 0.8966186746330236, 0.7119109200652608, 0.7810009221071257, 0.8227116889090165, 0.7179626083838881, 0.5951216175195311, 0.6813354640091287, 0.8793888608889605, 0.7283542272043962, 0.608855873107547, 0.781068244471109, 0.9936733215131037, 0.8150590520606166, 0.6992428093152521, 0.9334415605523492, 0.7373302918977, 0.6370259152461991, 0.8059321607947889, 0.7019350988910105, 0.6298092001932394, 0.6988192288146959, 0.7887129849988984, 0.7580227427115096, 0.8363836227151902, 0.7431665424630975, 0.6527848682628045, 0.7747242265690271, 0.9759864028123678, 0.9052975056470716, 0.6379594310470711, 0.7631067839479612, 0.742076279939963, 0.7175019667348042, 0.5818456796054519, 0.6227966888887809, 0.7143278297523659, 0.8386203922258724, 0.6355278741837083, 0.9016940928182862, 0.898963425279525, 0.599926585563023, 0.7564722615482885, 0.7384955881910416, 0.822777283202251, 0.9725596255965862, 0.7233229883277535, 0.7628731912720363, 0.7817279278200266, 0.5561729660700613, 0.5502225610929995, 0.9875525809573347, 0.8678534783419778, 0.8105819661734541, 0.9451907970080857, 0.790216535906156, 0.934764849838997, 0.9629089369618651, 0.7624589183833008, 0.7891871137400037, 0.5715117152564282, 0.54324154135255, 0.6634711854750069, 0.5068803514138684, 0.7927598769566984, 0.6194851352538224, 0.9804803840043881, 0.9112271693365002, 0.6814928399630042, 0.5312024258459764, 0.7713241607551093, 0.5782377313267366, 0.7069053141223876, 0.5403426961531583, 0.5909668643527858, 0.8824328289670504, 0.9694099135841283, 0.7737748039836038, 0.6509560335891493, 0.799758244320159, 0.5003466027774774, 0.6223112780565996, 0.7848401326824631, 0.9821069937102072, 0.6684467995404892, 0.8426032790048765, 0.5232226843647158, 0.8225280886988116, 0.8542983056095925, 0.6483575262065674, 0.937504055752798, 0.5647567064427711, 0.6563299760022216, 0.6104859809816778, 0.8978569338046352, 0.6136621898433694, 0.5856097258861888, 0.7034080986353833, 0.7153721135129204, 0.8922350130030401, 0.6531448970758491, 0.8696387743607028, 0.9043681619814217, 0.664539470896363, 0.9434257577660239, 0.8747411441028417, 0.5081710095267322, 0.6789903677556839, 0.565814383638757, 0.9269777361639122, 0.9335821747768165, 0.5282331104888256, 0.7465330670181141, 0.7359484035370285, 0.9533029753691991, 0.9640934811602593, 0.5962342860684942, 0.6711468775932697, 0.8594984784529314, 0.7748556946563998, 0.8345934700587571, 0.7309961845602709, 0.5767474466902657, 0.798060682012136, 0.715217301807251, 0.6454347154935043, 0.751726543078116, 0.8601078859871693, 0.7262552571902524, 0.718714562892464, 0.867041571013291, 0.5137702557870484, 0.7014587502754289, 0.6939519553863218, 0.6835357730738576, 0.5924190161612275, 0.5888285389723927, 0.871757662473164, 0.567313144088079, 0.5929406543030948, 0.8268674942707839, 0.5841938740967992, 0.7391953861221057, 0.6106207866078663, 0.9910492090876284, 0.5726006154547213, 0.8182321932023676, 0.7887565441975988, 0.5398342666192272, 0.7907738257157096, 0.9209894919617733, 0.9339131636450441, 0.8527917974959774, 0.7682300504329844, 0.5951684596942433, 0.7929524455626752, 0.5243733842618397, 0.9343833814849893, 0.7751608652944055, 0.6170551402711295, 0.7174022986153299, 0.8771190035004042, 0.7531018261842868, 0.9157135808794832, 0.8861284719545136, 0.7095846374663949, 0.7625391931331683, 0.8805569941896105, 0.7846454029468457, 0.6634573827504224, 0.7425620482087796, 0.5594837561031396, 0.6105990142984616, 0.7956549763869037, 0.5129853176037691, 0.705306998092851, 0.989236317120425, 0.9738497155390868, 0.9317716939895911, 0.6615446726939282, 0.840170778829991, 0.9811893431766914, 0.9116178324371997, 0.6487744805345095, 0.5662122989994134, 0.8999929587913001, 0.8089628970766943, 0.5181785565667443, 0.5536114403494863, 0.9985764790756739, 0.7810653280596314, 0.6474822208989246, 0.5106452237153729, 0.9357004123488848, 0.7328466964326248, 0.99949045113452, 0.8966580469297045, 0.9865742070861615, 0.8924367691546033, 0.7946715830343596, 0.7904050519148225, 0.5943267396496046, 0.7763252298165435, 0.7041135860871909, 0.7989586589389074, 0.7721553091248733, 0.6864054907488015, 0.860293480926546, 0.5551087400906735, 0.6858800269164018, 0.6107462118075728, 0.9230942228742378, 0.760384180071252, 0.6105756901133, 0.9516222921532338, 0.5742842661326547, 0.5242475331104816, 0.7029669362613526, 0.8647361028845918, 0.6955522909067207, 0.9318883476721562, 0.755321429522288, 0.5221925236192475, 0.8963069246615037, 0.6089786855775383, 0.5017774510559203, 0.8703154820757024, 0.9095889015473875, 0.7979485683273406, 0.9459152264259478, 0.77693278587129, 0.8261977607525438, 0.5142337211852978, 0.5501610108236263, 0.729305373710129, 0.9147805403324076, 0.5780023802962738, 0.9234788127962336, 0.978739645929358, 0.7726369708369139, 0.9638680848676072, 0.9987101164573009, 0.9115051931401716, 0.8282590548675175, 0.8620234125069541, 0.5502936907585022, 0.7792834871529392, 0.7799247488955366, 0.6640717248980259, 0.5567276287045423, 0.5020719663620999, 0.5805564499084022, 0.8335543845085625, 0.9457763025065611, 0.9418059940744086, 0.5044750125592414, 0.5989286058805825, 0.5377895235240484, 0.8452684748815439, 0.885143080424433, 0.8096514718755454, 0.761580928115724, 0.6722784140450246, 0.5905944714405661, 0.5284134687242708, 0.7177527627695147, 0.6754235541027991, 0.7114106515837173, 0.7311090853512459, 0.8737041137349153, 0.6701395652676418, 0.8281266407934347, 0.9140365413060141, 0.6143297934251376, 0.994800331592081, 0.8506598032264387, 0.5074784495103206, 0.5363741710880194, 0.8714145941726708, 0.7182401145029389, 0.7433328131563459, 0.5015684739271752, 0.7416236116029573, 0.8013532093397282, 0.8886013631041256, 0.7427793654571693, 0.6470591735959177, 0.8471267061967633, 0.7921962875892299, 0.7420101030964414, 0.9862504538381759, 0.5104912514929616, 0.5588503587489757, 0.8148573163358701, 0.7617437361282793, 0.9672457220462589, 0.8544806474619822, 0.5325293452147937, 0.5476307193958416, 0.8241647575130743, 0.7358066371688874, 0.9867565615647542, 0.9758316809278063, 0.5381331645751606, 0.9761535808558897, 0.9118848278816298, 0.973366167565653, 0.6552937077011087, 0.7844947846761421, 0.7013074682223566, 0.6266938067649551, 0.6816964602133903, 0.7085947820345372, 0.8392592323341719, 0.8962980780069328, 0.5789943223887475, 0.5688873044557113, 0.8663248099878014, 0.6036307470953148, 0.6974551222082461, 0.5495706085447067, 0.7800552295412122, 0.8672214518115027, 0.69223340488316, 0.7288572004302447, 0.788813242246904, 0.777480606697937, 0.8129894375620024, 0.5935179722367943, 0.8424161248888354, 0.934407176254042, 0.6632136304192509, 0.9248176657398604, 0.8151906128620532, 0.685666292089773, 0.6245133328137037, 0.6061850567440674, 0.6659560896446735, 0.998187079827084, 0.9678183425524622, 0.94486206780442, 0.5355152972779071, 0.774713659411437, 0.7238555740455277, 0.8057955298521056, 0.7927656139880205, 0.7647571776743093, 0.7977932231380549, 0.9598600812451785, 0.7608365974233711, 0.7603513353231697, 0.5717585456522313, 0.6537052161836165, 0.9953578063950032, 0.6516964326986205, 0.662333313391734, 0.8242307889354048, 0.9493612660557819, 0.5746817955635024, 0.9289857658976934, 0.846648018831617, 0.9079310799576785, 0.8216213454096615, 0.9924387796854923, 0.8710786719512438, 0.707488762509661, 0.6185047875905749, 0.5298189171330678, 0.8992613637205515, 0.8031863500584352, 0.6771919347231828, 0.9705620740011305, 0.8621680886708833, 0.910996175088354, 0.9132052314626523, 0.5852085536959856, 0.5329874667049777, 0.5951292003275943, 0.8005018064558638, 0.6068327550506505, 0.7387326253362845, 0.8780037425258032, 0.5166552889177576, 0.6473242023079759, 0.8247409915529424, 0.7568770309410857, 0.5608814297523549, 0.594517869434021, 0.8776700036994541, 0.7246973248310253, 0.9847946879808697, 0.6729048047852905, 0.7625326017169924, 0.8833759668912888, 0.8958405231166893, 0.8235233482204147, 0.6620852177033324, 0.5316707758272206, 0.8756130010399494, 0.6174189389182227, 0.5576727504120131, 0.9127215889595006, 0.5461796742003693, 0.6801288538677729, 0.6993176086535416, 0.5725279260356486, 0.765233685437055, 0.7447138581080359, 0.5061354385459923, 0.70036499609002, 0.7632430157183061, 0.8928033584218857, 0.70056366261362, 0.6562761571061588, 0.9236979392051609, 0.7040103327196364, 0.7029035423876882, 0.9309324492436324, 0.7538815310939647, 0.6366161572562468, 0.5429059536847025, 0.8982433793408608, 0.6686148401258103, 0.8651759003273064, 0.6253905796848152, 0.7401630915581481, 0.9747783650909331, 0.5290153359357818, 0.6388270624219226, 0.912870407515894, 0.5752739621645706, 0.6081982964585478, 0.8561356991338847, 0.6274116070979625, 0.9438451089378739, 0.709747344540897, 0.6337098719362195, 0.8944272208762185, 0.6887977556743385, 0.5842742049903286, 0.7807960045865405, 0.5499531438484433, 0.6929663487395396, 0.541511938283211, 0.510871399489534, 0.8218989465214113, 0.5556902752537336, 0.7356545029736707, 0.6186674960957664, 0.6776114328776284, 0.529783945614408, 0.7861693542770983, 0.5685002131543722, 0.5365230865889643, 0.9318160911500429, 0.7001969728931181, 0.6315810136511276, 0.833478328267842, 0.9122759085605671, 0.9723122420139303, 0.7732509716042304, 0.7520771269226484, 0.8699488563720255, 0.8069267917133481, 0.9077801032573359, 0.691204791964086, 0.8888088471829264, 0.5021072390806438, 0.9686246989762786, 0.7412300158937419, 0.963068464509138, 0.5894682249434395, 0.5114776893818589, 0.9252860491778497, 0.6873640343895143, 0.8579602945170131, 0.6478508194904813, 0.8195523102721187, 0.9607176805293802, 0.9217406933280456, 0.5120564894519772, 0.9391204596690687, 0.5911872282995092, 0.711550600859396, 0.8398617711543979, 0.6852066625353735, 0.785333396022259, 0.7765633295881094, 0.5190120047821918, 0.7445005349560918, 0.7958590709825701, 0.8036080755935548, 0.8287135413033275, 0.87132535914895, 0.6485721192154514, 0.8258475548801462, 0.5640714163894984, 0.8981615562194609, 0.5006129371193186, 0.8742581398416194, 0.8350241095184654, 0.7359820682793958, 0.8239051286186079, 0.6159160923578406, 0.7880717925809892, 0.7857135184761537, 0.638779975243708, 0.946034983742581, 0.9471036105492996, 0.6245905619906909, 0.6796844230778749, 0.6696682020231546, 0.797494294300829, 0.7769080881668267, 0.9132363579977482, 0.9665026482961053, 0.6027076119745445, 0.7671268715126417, 0.5760396034350017, 0.6460754483100868, 0.936978684940998, 0.8168432821456832, 0.9935512762124956, 0.5523711308592704, 0.6613227566244243, 0.5475572177680958, 0.5056759110531464, 0.5164909413266731, 0.8307414321667383, 0.5027750042616657, 0.7493445898395659, 0.8216681924369281, 0.722351438229763, 0.8136323541649609, 0.9117659361063823, 0.5686969118529915, 0.7917001494053288, 0.836920732357681, 0.5260124038930124, 0.8102613096467219, 0.602393923344773, 0.8529788108705167, 0.9864955004547911, 0.595713866997805, 0.5356146962203379, 0.7153781773583631, 0.8093044852005183, 0.9659792341287989, 0.7706373522247828, 0.5386722202647127, 0.8404391294931866, 0.7450247753139179, 0.94126672397647, 0.7302975196122116, 0.535263202111443, 0.662219937469239, 0.8685378525133827, 0.6792765548367229, 0.7645670513663322, 0.5187389592488811, 0.8775672226393458, 0.8648431087719621, 0.7775170357511578, 0.6011722920587005, 0.9021656409318631, 0.9856942512398049, 0.8158767000341741, 0.9240205833561901, 0.5896105219465972, 0.5858011750252418, 0.7615896115149692, 0.5339492540564571, 0.8378491645504423, 0.6782963091724923, 0.8452241622816834, 0.5927040231642826, 0.7729709198574425, 0.9346979868321044, 0.5091691576946036, 0.5918937838678419, 0.5116227459855731, 0.5143881069086818, 0.7116898575524782, 0.9487501304102985, 0.5033544485555088, 0.5024370917022909, 0.9354049254845977, 0.8243587575153364, 0.8567691667358484, 0.519703292715691, 0.9228944099181575, 0.9726439947393553, 0.92479785091127, 0.7123518557132102, 0.5004147329321003, 0.8186788625833282, 0.7621556015182811, 0.646821707287166, 0.9283303640294543, 0.996171972142121, 0.6114979115167432, 0.6118485862767957, 0.7466207350391678, 0.8116481661218499, 0.6350822490803264, 0.8982534569213922, 0.5170167775998764, 0.9968056628137463, 0.676195794953955, 0.6507618983824262, 0.5937471715337073, 0.7585640286868766, 0.814161489906513, 0.8208381078699041, 0.7606326492729214, 0.9767214483272801, 0.8040245391090767, 0.5657004268072302, 0.9850561199362373, 0.787156292323786, 0.6740204356209767, 0.5096710744140728, 0.5110104629892593, 0.602212353112273, 0.8677017321119864, 0.817681717407809, 0.5570183642145515, 0.6712252657652604, 0.6466481298178273, 0.9898034125676601, 0.8016794722919478, 0.6222012971366387, 0.6259215289221828, 0.5672890835957484, 0.7929252818761563, 0.5486893991480712, 0.9986746359875205, 0.7953816086377737, 0.6725874776510884, 0.9439211104629701, 0.7804680768935272, 0.5483880381381272, 0.7018452206265868, 0.7869346292653434, 0.8899080765016054, 0.7766497180236656, 0.594968518666017, 0.7644358746712243, 0.5524100465011346, 0.6159784190417624, 0.818229599556239, 0.6705131219332636, 0.7026817437377272, 0.5513381653369256, 0.6817905857449791, 0.5350252286486605, 0.8985218670463366, 0.6593599594144498, 0.9069080254252992, 0.5141742723404916, 0.5351744326979866, 0.7063112601261099, 0.8248528437282463, 0.8418506048352498, 0.8653100583828846, 0.8309991943876225, 0.7347747429128019, 0.8720466047885722, 0.6804936292759136, 0.765621548372833, 0.5386222523645023, 0.8635938938846718, 0.8806421435378065, 0.5016505809800547, 0.9085300267585102, 0.8634172673691234, 0.751679459502518, 0.7506178174401391, 0.5113179224989874, 0.6822066114398118, 0.5551293326802926, 0.5848836260491432, 0.9380934542420911, 0.8087760578372826, 0.7135906018035931, 0.7717421670652326, 0.7429916024206354, 0.8699693863154752, 0.5745154373625307, 0.7326957142464057, 0.6659198149041967, 0.7706865479548686, 0.6687770406755784, 0.5411417823784084, 0.7337114053765015, 0.6696983176021427, 0.792638965697737, 0.6175035355119918, 0.5462751301444255, 0.6934866625406082, 0.532054316809352, 0.70560433639024, 0.8932011828592332, 0.5853366909826389, 0.7355945552954364, 0.9205724973990956, 0.9881156718304627, 0.9782756756361152, 0.6048029065146179, 0.8341833932011922, 0.6325228469905289, 0.6599853294683938, 0.6323664707053763, 0.8721932822435147, 0.7453935721960673, 0.8157699461669231, 0.7785261537144058, 0.9988203212013225, 0.9169875268625458, 0.5167872068644679, 0.6558547308423908, 0.7836153521407858, 0.7486122953702083, 0.5507369443026013, 0.9730250499273296, 0.9132719916371508, 0.6689992196813159, 0.9262388689424913, 0.8355544393625971, 0.6918174883447663, 0.8135245477658335, 0.9131143419054495, 0.8671293910046678, 0.694125746306808, 0.6290505210902726, 0.9457968171855229, 0.8459548354257618, 0.5609002883425513, 0.7718699905729374, 0.8223904415760726, 0.6248294940538703, 0.9046988844879941, 0.8586714683425463, 0.6500369037854485, 0.8686321822146312, 0.8508055935530546, 0.6708863004121135, 0.5828110057709062, 0.950865005725079, 0.9073164803671252, 0.6150414865657549, 0.9908862390664697, 0.9752811587832924, 0.8594873225095132, 0.6016077095997584, 0.9981387829803893, 0.9794419186761428, 0.8537099472383952, 0.8434602865803469, 0.6156456817199762, 0.5437477495607471, 0.6495375396387015, 0.5004273011098856, 0.8649228773346274, 0.9793380961742008, 0.6036740458187396, 0.6719315858113011, 0.9030867592759491, 0.9304111965767854, 0.6910479399877718, 0.8342277490751462, 0.9786446670359263, 0.6564736187457969, 0.6198226042358972, 0.775376964380154, 0.943488940058156, 0.9119834312445039, 0.6323816076453852, 0.9100263377795342, 0.5568044693774501, 0.7782896546441198, 0.8767663080865973, 0.8525327776205818, 0.8756217523222892, 0.6870905419103912, 0.8138688236115501, 0.8068131076136278, 0.5586278351152834, 0.8132885726689115, 0.5977700156006285, 0.8292704914281903, 0.8911582211222262, 0.885915922580609, 0.7220285756729964, 0.7601116949383935, 0.8688039088609931, 0.7946587530611848, 0.5030034139509088, 0.7581984374924791, 0.9927807098325152, 0.674975710216164, 0.6714957448618712, 0.6699358963474746, 0.8879831576316436, 0.5605796490535612, 0.7737297444075465, 0.7025690433108129, 0.7387284266822403, 0.8037947883047807, 0.5554641328172811, 0.5826594497038845, 0.9912470494083552, 0.5664189543730852, 0.8265654100921204, 0.9439749763357939, 0.7132632607587575, 0.9378353057488171, 0.8165144279905592, 0.8730123610183997, 0.8010225681108012, 0.5775353632828524, 0.8195742544410013, 0.924239889554725, 0.6973999034776515, 0.6146342007123794, 0.7038578534812324, 0.9712046024916237, 0.7406717369897321, 0.5030752583512454, 0.9653743280916494, 0.7718071446368784, 0.5958159760096272, 0.6109117236154554, 0.7462144032662148, 0.6595312513579469, 0.5278016299286683, 0.6022050354667516, 0.7655089379395477, 0.8635761709966618, 0.8775890317518057, 0.7020403601971043, 0.9758745158722819, 0.6345589775314189, 0.7572479480437346, 0.5776818827502677, 0.8443124498519861, 0.7442817404290083, 0.5164118328320171, 0.8202236507121397, 0.9489249736375645, 0.9658450875121214, 0.72307352069771, 0.9501262300887761, 0.6616862300256645, 0.977183358927795, 0.9072508058810747, 0.7641556246862188, 0.8917093029588551, 0.8855039840592691, 0.9266415107933801, 0.8735621573046408, 0.7248549314812889, 0.7311137628751108, 0.5038443808835814, 0.9427314631732845, 0.7874122922746136, 0.5733924998975681, 0.67081970414274, 0.7983664043311035, 0.5918109404103686, 0.9884339415996315, 0.5637279825718133, 0.7151389151416521, 0.6831573016281611, 0.7971383680609517, 0.7931457053211683, 0.9613825426804157, 0.5588724816008825, 0.9155496166229629, 0.8301063573668119, 0.8209636214098677, 0.9079157326059538, 0.8899683882256522, 0.7437366344046221, 0.6116491424020563, 0.6053629385977568, 0.8822070816837194, 0.6761544585173496, 0.8787831162015451, 0.5251856301278341, 0.5485261769060867, 0.8765509607937324, 0.6141017347810523, 0.8254465528854578, 0.5004221701788613, 0.8596513192816717, 0.5624122310730781, 0.7240849143015224, 0.7881034514706204, 0.6249533600756638, 0.9312502027888293, 0.8640673838121302, 0.9961647386228356, 0.5677415756259359, 0.5128551385639291, 0.9608021697504135, 0.7048835761305814, 0.6143991915494991, 0.8645235945007805, 0.826208432144407, 0.8832570480997828, 0.9921148247878468, 0.7960179111005025, 0.7900897819816619, 0.9893185789031466, 0.5449603399898282, 0.953126314775908, 0.5158995918911689, 0.91841517556537, 0.8296459156880129, 0.7240995598218589, 0.9468457910764863, 0.7616765218724222, 0.9669264136579423, 0.8172054318290168, 0.5304547257421135, 0.8581433242234104, 0.7774012160933874, 0.9006738682198115, 0.6762817017800253, 0.5020217801234208, 0.9274787783556322, 0.6992917266548768, 0.5538306301798319, 0.958400767887764, 0.9891316444616673, 0.6678538166962933, 0.7994334641647471, 0.8609373448672901, 0.9660696833178632, 0.6455716831052176, 0.8560162004453942, 0.511211761872358, 0.5507092782745331, 0.7882987663192443, 0.6166423586677463, 0.5670554457732766, 0.8620389750668844, 0.6722121606666958, 0.5379746339836686, 0.7201665224121137, 0.9834987117741496, 0.819668898038642, 0.5529395458288504, 0.5887581719341939, 0.9625177939310743, 0.6671055578581268, 0.6621216149662927, 0.7432660346186495, 0.9371306876967895, 0.6950830728487445, 0.9509416857221953, 0.897642358598119, 0.9132729003771753, 0.7149150055469201, 0.6779265555703131, 0.6582469898201141, 0.9804383874780119, 0.5025182882858417, 0.660188244797107, 0.5609428407670295, 0.6426151794308966, 0.5346272896542408, 0.5273980522830213, 0.8130735483228051, 0.5196323336480644, 0.5011773927412257, 0.9177100850350167, 0.6963128872905421, 0.791261112572402, 0.7925938300366628, 0.7442018343314158, 0.7333443662923467, 0.8591500993546815, 0.8066482215453312, 0.9051317332572628, 0.5693039112979168, 0.8371861357281417, 0.5421448069816148, 0.6699916152774403, 0.810744909250306, 0.6592243283880025, 0.808905633677329, 0.8362000781173748, 0.9688212653099102, 0.9568068220025331, 0.5604079188063258, 0.6237614090935454, 0.5940289608916451, 0.9965841393411097, 0.651167677061232, 0.9996881908387882, 0.7896525557739977, 0.9464298142304106, 0.7580746346059173, 0.9589459361927737, 0.8570425782474497, 0.8459085975409681, 0.5912436594681988, 0.9516532022450945, 0.6869689373480931, 0.978006769363092, 0.6464072209505304, 0.5535326434842869, 0.8781233349633593, 0.5633489358842707, 0.6193162224391082, 0.6566153840125266, 0.6569834640693277, 0.7008523385172575, 0.936487236111186, 0.5352494789878623, 0.6738754354409542, 0.6450550933727793, 0.9632920617816112, 0.791177721864772, 0.8195774588159968, 0.5667782677322781, 0.9351497357184919, 0.5524347418738529, 0.9728238145862882, 0.6202108107908065, 0.8608361981541351, 0.7838852725166988, 0.8622691485164021, 0.7811486867236347, 0.8433644619948455, 0.8581736204743737, 0.5549188014708999, 0.8211833448672942, 0.8311580124130027, 0.9365409380261047, 0.6151198653836953, 0.7341899761162712, 0.7153273973543794, 0.6830668074313182, 0.7388231316604883, 0.859091486106594, 0.7532485992070865, 0.5918148601804258, 0.8970023356574701, 0.7527020605829922, 0.5431974402194968, 0.6848722970283161, 0.7887974044984865, 0.5294503353869044, 0.9851614616444584, 0.8223791229571256, 0.7529255512218725, 0.7700378747050483, 0.818774438713737, 0.9217710819898493, 0.6522001273414203, 0.642592748068987, 0.6935552779146782, 0.51653190759287, 0.6238571011468215, 0.9188446968222936, 0.5506558502977372, 0.9987070000737319, 0.8343636130126766, 0.7226085679424152, 0.9066148131727438, 0.9289335064258522, 0.572698938675964, 0.8695171981872769, 0.7776178921607197, 0.9316584112699624, 0.7389544215767662, 0.633938823013417, 0.7906519426113637, 0.8880771469667427, 0.7250436010627033, 0.7218318439694136, 0.6376913873386566, 0.872329271077567, 0.7020078846191549, 0.5741657759032595, 0.6123509888211792, 0.7749483259611829, 0.8391727911286808, 0.9049004986464837, 0.5031468635556041, 0.639414826974559, 0.5292704047838764, 0.5653137554627725, 0.8934188632760096, 0.9670201605232209, 0.6500073554231202, 0.8802593061048091, 0.7920105646219691, 0.7259464048479329, 0.5879900411115715, 0.8174400804277071, 0.573301666319709, 0.6435877068613431, 0.5243762709689866, 0.6905458344735778, 0.876650501693343, 0.6013229314621984, 0.7550945298737657, 0.7852808166102028, 0.6065613138284132, 0.53171103720136, 0.9850112912517738, 0.9224095027969554, 0.8102862391866723, 0.8698668606377171, 0.8498134711922634, 0.7539318567379072, 0.739389188800305, 0.924630165904847, 0.7019650863821204, 0.9696473017933482, 0.5578508701774516, 0.6502406291091026, 0.8126776082822909, 0.8357414369677174, 0.6632307092352319, 0.6733988712720347, 0.880777933146168, 0.6277067934446596, 0.513474533270514, 0.7105688407082413, 0.8629919075252094, 0.6406573463785186, 0.9273712918026351, 0.8970881880453274, 0.983870872425699, 0.7514318134956717, 0.9412274607530482, 0.9273914129147387, 0.6107434758492429, 0.6718818000388812, 0.5826448307711348, 0.7317397401028256, 0.8740258995349335, 0.639595330164897, 0.8686307717214774, 0.8790973513156046, 0.6435310840220383, 0.8220194471448768, 0.5919276596999568, 0.802973340644219, 0.9904339027646335, 0.9163164992038305, 0.8085757366507996, 0.8370907716439762, 0.8603584395163447, 0.9402813908635133, 0.9509708331514835, 0.6835669937721233, 0.7078417823112004, 0.831954457677718, 0.5022134170597023, 0.8545888853662359, 0.5558538031249028, 0.7039760006023851, 0.755270957892813, 0.9716296387119643, 0.8423483618039431, 0.6411183505486644, 0.8739987605055846, 0.9901325241080502, 0.7978917218155388, 0.9805180040897926, 0.9829995244999193, 0.5429625758412407, 0.7859298494369391, 0.5109497935168803, 0.5214117581907226, 0.8438041551717707, 0.9614327447364381, 0.578799210000762, 0.7852963178760527, 0.9420953065104493, 0.7601175497272035, 0.785029882764035, 0.8972274319724769, 0.6660047939546093, 0.8015502157684795, 0.7241861279173971, 0.754810408530128, 0.844534262500272, 0.6679372462133328, 0.693984616811096, 0.5083868934345455, 0.5581583797764731, 0.6503649177294906, 0.8933958484217177, 0.9423207395841271, 0.7101186208055856, 0.7709617115188484, 0.9878367099359446, 0.8648431933988372, 0.9909732476217116, 0.7051390006527709, 0.6255632287585603, 0.5850032144162125, 0.7678401477777068, 0.6403001281208458, 0.5309590091912723, 0.820680709067964, 0.9551626770131156, 0.5117193737862389, 0.7521035639654675, 0.5244443747587265, 0.862979277053382, 0.5004462507452357, 0.9467231450600296, 0.6223718848918813, 0.7651749460231505, 0.7362833694417154, 0.6992551606476503, 0.8115238296104071, 0.8315484806575901, 0.5574661668018581, 0.5491155021098659, 0.627462221204989, 0.6904366900915592, 0.5345006788330833, 0.551893023830869, 0.6201074188631599, 0.8231233086795051, 0.7054208352719804, 0.7139591494310116, 0.6747533660147416, 0.8683062824246062, 0.750326095850871, 0.8255558697170691, 0.7804089047280778, 0.5497877754693197, 0.7768281816199886, 0.9402559881132233, 0.8215439520415087, 0.6626693493877991, 0.6215236025296793, 0.5507826735495043, 0.5603941165904294, 0.5424641306480855, 0.9779375116533765, 0.5124697891452156, 0.8225920500264239, 0.8050026661367835, 0.5447408246234406, 0.9377237275646206, 0.7307090986847504, 0.5813854749331261, 0.5124122107417968, 0.7710133660419971, 0.9091431956797488, 0.8587133163733844, 0.9784588286095728, 0.7998410955763625, 0.6112574782134075, 0.6536543479454284, 0.931724046001529, 0.7097204413984106, 0.6196375993328872, 0.5569713698316162, 0.8220662656973579, 0.6590441188829224, 0.7417344196625811, 0.9521834406651142, 0.7509197129034713, 0.6162780193572507, 0.7904591671831185, 0.9521410151603247, 0.7092106608465341, 0.9861552568480848, 0.6240915717956405, 0.9100900464795485, 0.5888115331304284, 0.9078626380929058, 0.7092684879133586, 0.9731921065544933, 0.9095087327026259, 0.9538526084067779, 0.7399209932669919, 0.9405334333213842, 0.8489795581042607, 0.7747781294581186, 0.5703518933682297, 0.9639327620665157, 0.9116551381748834, 0.9282474759427961, 0.8162576748303592, 0.7469530386824851, 0.9448478045288378, 0.8649850803835168, 0.9188163086989046, 0.9728295776341763, 0.6746900962130473, 0.5609028519016153, 0.7576597641039429, 0.5423894815496803, 0.7354089143044613, 0.6021561361429206, 0.8185079448096617, 0.9384980577034525, 0.6352849576170196, 0.901513385388024, 0.5696347059991007, 0.652029827728191, 0.6681468228191603, 0.6051478797894743, 0.8664966155067131, 0.7116480432432635, 0.7621363786419946, 0.7468741221445346, 0.9846617660048094, 0.5125085425446569, 0.9020428461413366, 0.9474764879836868, 0.8757034934823318, 0.6855711902757888, 0.9005739616518325, 0.7015910308374493, 0.741866789724853, 0.9067968042768344, 0.5843264858564252, 0.6807668300925216, 0.770444712823869, 0.9529947275137174, 0.8946792948761282, 0.8359561280510406, 0.5881844988268999, 0.6212761464012814, 0.6587951513277526, 0.8875495736072927, 0.6680140872036491, 0.5292801095766169, 0.7563019537564741, 0.6237231007425872, 0.7608385150585596, 0.5766709788873999, 0.9664329560772758, 0.7466924062646034, 0.7483521928431183, 0.8995573586680194, 0.5882519261795539, 0.9903192676945934, 0.7425549311231677, 0.9848349401369179, 0.742777284391017, 0.905256673696248, 0.966233215614114, 0.6969097897749186, 0.6923795039776608, 0.8643198020715503, 0.6724428458357334, 0.5929932646018066, 0.5367082489944394, 0.9001981080269874, 0.9321696403694115, 0.5809723348618445, 0.8791378048857372, 0.5685783610769786, 0.9863750533692475, 0.732225670001607, 0.6422804545662071, 0.6021811765551535, 0.6619813739354355, 0.7042315634850468, 0.7128857641346451, 0.8284867107349841, 0.7815429149035971, 0.5362912969215909, 0.5703449505042198, 0.6729198806169872, 0.9898436738297011, 0.7412228121326456, 0.7093156783546117, 0.9989105306995343, 0.5260741351424623, 0.9297595989047404, 0.9995526503535124, 0.7836459690594106, 0.9093218176785423, 0.5207631416126728, 0.6224519752120057, 0.7056953649604311, 0.6744336927150592, 0.6700644790625632, 0.976862386588611, 0.6758075878020341, 0.5338044685779213, 0.5114205257407829, 0.8744880299295166, 0.7580988688292047, 0.9637587506446649, 0.918139925328805, 0.9887440824794147, 0.746081957502035, 0.8873424407423832, 0.528097541890432, 0.7143893854335066, 0.7777909325331094, 0.7287420843113869, 0.79262810692009, 0.8516269607901397, 0.5388690753961043, 0.6801611027241501, 0.613049176835806, 0.55807628925213, 0.9088963668601677, 0.6796086015757503, 0.582520561175595, 0.9980705045592707, 0.9372971081540912, 0.5800333015050041, 0.5842318332727524, 0.8194039795680678, 0.7321786784588085, 0.5991172784725682, 0.5390995818316688, 0.9898210898946398, 0.9476685168638599, 0.8597546931955682, 0.8593648222255978, 0.9700013315555152, 0.8296378071510104, 0.5653440428764115, 0.6084017268974311, 0.6452744550464741, 0.8724557245874899, 0.8823794750572935, 0.651787377911554, 0.5203357161131779, 0.8732138037338513, 0.8338647755673582, 0.8293525424746294, 0.7963742636188258, 0.9773730885413228, 0.99230698741053, 0.7318811190064558, 0.5475725246685859, 0.5519836523071968, 0.7196531497717763, 0.9693899407486086, 0.6807826805389435, 0.7484091703333271, 0.8053842833055929, 0.9838511080854694, 0.7658244614034646, 0.8524172342438827, 0.7772058421297764, 0.555330836468849, 0.8104477881293766, 0.9816540659348056, 0.7287498201831586, 0.5674484339628523, 0.6940771746328744, 0.8096315581071432, 0.9317482793483503, 0.8927805619390294, 0.7184290666083301, 0.6731834551665888, 0.8232105818200168, 0.5343516078311652, 0.5366903926331239, 0.9186260916106201, 0.8362220415244573, 0.9418923314686651, 0.9760756868681333, 0.82702214873847, 0.5501403376753151, 0.8043512377699106, 0.8288538779504562, 0.672730781315271, 0.7277275006211954, 0.5626047394461857, 0.5772977059263988, 0.5066545153541508, 0.8769983509144332, 0.7866626519654571, 0.6232974906647728, 0.5250967017527184, 0.7828197192746784, 0.7694543469781003, 0.7182909811106097, 0.8569758443993578, 0.906252707966704, 0.8165240617659337, 0.6120263858691529, 0.6592206352017914, 0.924082292957392, 0.7970651432612934, 0.608473948592485, 0.9332693028041974, 0.92913190040537, 0.890067296066093, 0.7270888219326332, 0.743324092050141, 0.947009003062864, 0.8720394018841389, 0.8956746458756449, 0.6439625276194578, 0.8528942274587128, 0.970727272761355, 0.7824225742686328, 0.8286874730730727, 0.9488234520438825, 0.5790547956167185, 0.6806062822635794, 0.902175047915758, 0.907385995990756, 0.9824369072925057, 0.61440717909869, 0.5868563430545509, 0.847265651008192, 0.536656279157574, 0.955503280613166, 0.5787527775297803, 0.52736379572153, 0.9513341572417577, 0.5825745033711736, 0.6153954379240754, 0.8584055478999919, 0.7715466291305619, 0.755971585490635, 0.7612084269139678, 0.7977833899763769, 0.7059080610202403, 0.5803795877332159, 0.606342258826077, 0.856298080257674, 0.6276852957739856, 0.797981208088899, 0.7551101241633418, 0.629506278349156, 0.8330961425092935, 0.5245889500410836, 0.7772343404451036, 0.6335227975756379, 0.7358976683585152, 0.9449052768349195, 0.5539101107346626, 0.6565358582235721, 0.5021916198352956, 0.6027462976562775, 0.8182426667930524, 0.8200263620631829, 0.9350465410668609, 0.8022462863796187, 0.8871775384958154, 0.9281129297458567, 0.8528981736488702, 0.7188257263502319, 0.5937471926441629, 0.9769055632207417, 0.8456028620276075, 0.8762863115578237, 0.6622987068422543, 0.6824559777411519, 0.6825098767320763, 0.5652613538432179, 0.6689723938856459, 0.7095295957765829, 0.8889904594931406, 0.9358337793887546, 0.869584638126974, 0.645939962822351, 0.6185211000354942, 0.8622214032234061, 0.8639701751833357, 0.7081436052155583, 0.9838985248375964, 0.6645626373980056, 0.6386879046924183, 0.7460713401971474, 0.6899609110842175, 0.8952458046825866, 0.5399995139225133, 0.785431280814192, 0.5311140130025825, 0.6026759098576668, 0.6412882084094389, 0.5093335477921817, 0.8531301993754625, 0.539853650536145, 0.5176639234088944, 0.5880889274142013, 0.6524315449373541, 0.8421227591966565, 0.6581318886219651, 0.7933073464438345, 0.5062534464922566, 0.8802641718816491, 0.544782188905379, 0.6237665931140999, 0.9978327654986802, 0.6713810094418275, 0.65517334107691, 0.7532443528747517, 0.7434550630683641, 0.5667388000820335, 0.5407665984047774, 0.8912042606472879, 0.9889752585795337, 0.5402446351188253, 0.8829052471414478, 0.6593159472378564, 0.5618289548160813, 0.5126252879214686, 0.5205528519862623, 0.5049434723355112, 0.8587893496721939, 0.9056147789410753, 0.9271075072309154, 0.8061446033478654, 0.5173995370527291, 0.7987413218354181, 0.7234362343826465, 0.6444790085222101, 0.7300073158072262, 0.7257995354067812, 0.6146695438857459, 0.9070589690910197, 0.741298997925272, 0.5220470925917455, 0.5814253231796045, 0.684769550645191, 0.6054678566984131, 0.8909746254242774, 0.5975800732270447, 0.7143574531768415, 0.7275951505933614, 0.9050407638916029, 0.8120874731587338, 0.7574945164813958, 0.6614123824383078, 0.8962085938695665, 0.5401168966066467, 0.8172862355373904, 0.7621791849368762, 0.8563810360340017, 0.7134170459054677, 0.9107705345512604, 0.6760385898214738, 0.6075836109996873, 0.9782618310063111, 0.5872947104107276, 0.6530096050475814, 0.7513258908755154, 0.6617775387456328, 0.5794362116534364, 0.6061601893336765, 0.9494450764940849, 0.6247409991229882, 0.8746147127055222, 0.8465621101845382, 0.5099861899549227, 0.6208699271290115, 0.9313945002174355, 0.7470555761701247, 0.9036563700640536, 0.8871675795573004, 0.9966430725884856, 0.6965884568219002, 0.5667893467414855, 0.5840526200752038, 0.6559050658245468, 0.9422530892581602, 0.7755253863489179, 0.9871650135636599, 0.9737862171357243, 0.887412659742061, 0.9646437694031097, 0.6352493539396902, 0.6888375033789673, 0.5817322312067585, 0.8352872534166731, 0.5034239633221291, 0.804139319690667, 0.6423338502159301, 0.7979326542304799, 0.8063369758468668, 0.7743342451414408, 0.5349389535002901, 0.8430993956023392, 0.8911870389774665, 0.8972564113764179, 0.791663239239855, 0.5962020042656964, 0.5343730396768303, 0.7971818366193435, 0.8735684139415656, 0.7113537012433742, 0.7173753009439003, 0.5355519478142096, 0.7656891722385165, 0.585820499386631, 0.6352091614076341, 0.5721270020681559, 0.6034516729918082, 0.6908765066416115, 0.8287241706645614, 0.7375494887990515, 0.6127673033508356, 0.5020769566754543, 0.5140476870093943, 0.5199075840992397, 0.967713901518606, 0.7266367266568268, 0.5892658834489795, 0.8600119291345728, 0.639625457437227, 0.8810895452193772, 0.6471805035602526, 0.6932603455972626, 0.5909821241132653, 0.5323455716332427, 0.909420847664071, 0.8556433902331282, 0.7810315718412366, 0.7417675914358539, 0.6846381788006539, 0.6928084418270235, 0.7891797345401359, 0.6268920586808115, 0.9536405272219325, 0.8271337444720837, 0.8758048569893012, 0.624499687539677, 0.9058191963809259, 0.8399924086701372, 0.8235981552284213, 0.5727051416151534, 0.8254721733599018, 0.7995869330197864, 0.5198212436084411, 0.6601074848277924, 0.5849503666433031, 0.5270126968976427, 0.6256978917005078, 0.7708641900934576, 0.521881992400248, 0.689773854212065, 0.8155859861372851, 0.6290763247751232, 0.9752670494745759, 0.5939872284682248, 0.6933510930854225, 0.5027382775357376, 0.7327083805721386, 0.9814993738795312, 0.5743642189302445, 0.9319671750098498, 0.9141050905702013, 0.9823241682126485, 0.8533200550835496, 0.6071074486887647, 0.6459991808004697, 0.8759289857325615, 0.8835085631700419, 0.7390348154071402, 0.656102317411215, 0.6231827070712235, 0.6380957185048963, 0.5920323563189257, 0.9129402905440247, 0.9314968352153272, 0.5263561106739743, 0.8320352654858199, 0.8637983844754675, 0.7054406589192603, 0.5275587115319655, 0.8844369207474654, 0.9428355234919199, 0.7451443176237991, 0.8697845772163602, 0.9340806118424536, 0.9188700458302757, 0.8986096197988951, 0.8055005918663078, 0.8151237444022931, 0.8993370514401375, 0.6170944386679822, 0.737923400076937, 0.7975415526041513, 0.8469207281077658, 0.6375894906792849, 0.9831257402157724, 0.6375115537018717, 0.6871758294280714, 0.8134455901891668, 0.5949553047280625, 0.9575758094950607, 0.7476697437530693, 0.6256411443498894, 0.9972389778218675, 0.5504279615079368, 0.9035242255637557, 0.7282140246415216, 0.8638897221647592, 0.7715473161733173, 0.6015628510982745, 0.7044036855912872, 0.7239057149127487, 0.6674330414347158, 0.7876572059078273, 0.5872766284000012, 0.8631494373037699, 0.9691954859600975, 0.5527280003344976, 0.7909110401522881, 0.711397702671118, 0.9901610346474345, 0.5599915460301299, 0.5082791891694506, 0.5813786166473587, 0.5900948593830299, 0.5375570672221409, 0.9402103071521279, 0.7535683286311242, 0.6942253855985439, 0.9086344838516138, 0.5398973448083015, 0.9025671856055015, 0.6542018441106154, 0.6455838221259109, 0.6133781529331725, 0.8656671945234062, 0.5700164592283976, 0.9333297704239013, 0.6665023851268815, 0.7599985962400806, 0.6478573364295706, 0.9120796821659507, 0.8235483406622167, 0.8810246637980195, 0.6570970368849578, 0.6220705826050017, 0.6169838293513872, 0.7896648396719871, 0.775841811292654, 0.9952753746973044, 0.8063412454129637, 0.9721974621024246, 0.5368729978680321, 0.5627829114919061, 0.7609681353767523, 0.7914797744712891, 0.8718137780826105, 0.7173089420061971, 0.8627124185327735, 0.8412705586490945, 0.5329211914345189, 0.6766762836014241, 0.5440255907455791, 0.9268295136031064, 0.8334747337108119, 0.6005716988510932, 0.8230466524299731, 0.6470139622580894, 0.8555060773763099, 0.5558502711673983, 0.6838103038540508, 0.965383749329533, 0.5743059112434592, 0.771001468464898, 0.8372623835451001, 0.6540182635410439, 0.9678405688874799, 0.6672465367513556, 0.9324062117964175, 0.8716335832799236, 0.6156849807546521, 0.9213637372391585, 0.5648292300941475, 0.7177205932196298, 0.7621813326887129, 0.5281111206229774, 0.6582352640296618, 0.9901165700297259, 0.9352367994356625, 0.6527554302458876, 0.811562822778077, 0.691614361629513, 0.9449090578389592, 0.9193951766018773, 0.9666761318095467, 0.8511194747938089, 0.9653384063660895, 0.7775471662601586, 0.7318441315281861, 0.6719311134553659, 0.8729721241409405, 0.8380767935234124, 0.8719306182481007, 0.8760990486092255, 0.7642589970882147, 0.7419267930640414, 0.689180453678744, 0.9458114329876812, 0.68843445660869, 0.8060258823542104, 0.5852871736263593, 0.8175991123051247, 0.9082023577188555, 0.9713217112184482, 0.7607070002865377, 0.6970601260036215, 0.9768932070349238, 0.6418717544594361, 0.6354577473371756, 0.909116619698829, 0.983065674426324, 0.9245093577842501, 0.7421674876785639, 0.8909842088214072, 0.9330328262981153, 0.6514838462734298, 0.7385179626272025, 0.6633963218602281, 0.9193954770122018, 0.765030534634781, 0.7570414389361522, 0.659870504457377, 0.7184758132732556, 0.9115370615808444, 0.6372333886293373, 0.7194274757627557, 0.5649086818377644, 0.6119617903423795, 0.8179053001598979, 0.9489373331229294, 0.5010882635404417, 0.5712287131865774, 0.6638112353882856, 0.7150027770903276, 0.8554401244505725, 0.6428774576493619, 0.5462899870626378, 0.9459800844290928, 0.63542750012345, 0.7955774754525085, 0.8248030838701903, 0.9211876418734015, 0.5234133022503694, 0.6107251592142005, 0.865983638971136, 0.8619720997936173, 0.5271618986945644, 0.6263459863827127, 0.7715395180291549, 0.8832476890723693, 0.7432992133164122, 0.6168747369689649, 0.6341620807647529, 0.550711238128312, 0.6201750738015271, 0.5745021153284366, 0.7487250267685647, 0.6596649385037345, 0.845836254469991, 0.5375414439892899, 0.7436239746313532, 0.8724434619425714, 0.8276134191136648, 0.8817991280732553, 0.6160799546602356, 0.5005227242843214, 0.9714080661242304, 0.687278899749457, 0.9183114743322127, 0.9245138595912914, 0.815663079826007, 0.7949957191785592, 0.7728637679938674, 0.8885546149771447, 0.739350172729579, 0.5970018171697141, 0.8285067926763228, 0.5897000739749121, 0.7487049744343075, 0.9661767989948887, 0.5564184653069384, 0.8345507087518227, 0.6763935341881212, 0.9761205763239855, 0.762250383749944, 0.5725071256919873, 0.5445051229785887, 0.5798021986234825, 0.8341931932294981, 0.8576045409791639, 0.533334999709914, 0.6578678465254331, 0.5659426042885265, 0.5602961541455096, 0.7134999835827437, 0.7052415901204145, 0.5493874008712323, 0.5632370243970466, 0.6887320125745798, 0.8802912666754164, 0.5201435820703333, 0.5899027118256237, 0.8091216048318941, 0.6537729003378947, 0.6698962722454687, 0.5521909998352735, 0.93223663819148, 0.5846297596788472, 0.6645600537753695, 0.6804383946308648, 0.732557270486666, 0.8906168614623924, 0.7366893975474305, 0.9876039883381174, 0.6682315587926526, 0.6864757020117482, 0.8180392509535499, 0.9773392212113647, 0.7108924316342687, 0.8553753972613867, 0.964066898431023, 0.5220674420802494, 0.9168054891917921, 0.5575260477494541, 0.7121863528726773, 0.5643031489751591, 0.8589293076431388, 0.9925078958671181, 0.8902607368860587, 0.7021053286830736, 0.64125136925855, 0.771755859734155, 0.8011892411027299, 0.9972435721820635, 0.5860992194077586, 0.9328042957413155, 0.7586974505279954, 0.8967599181767008, 0.626636211296121, 0.5277189581687267, 0.5431488014567061, 0.9799918665463756, 0.679567795644513, 0.8280914214481375, 0.8026202558163489, 0.578520089670097, 0.7057795949219791, 0.5671351980978785, 0.8355028891945605, 0.5717914040160967, 0.937495265128581, 0.8016014350746246, 0.9374742854508857, 0.781476990763661, 0.7744605965716846, 0.6897394402475149, 0.8132914320820682, 0.7473043150552064, 0.7404475266721685, 0.9660725079769188, 0.7510050041382785, 0.7854193409474075, 0.6553604746857875, 0.8725368355573666, 0.7405948016212234, 0.9692482571693661, 0.6002336308893297, 0.5512691051588274, 0.5380584278831833, 0.7403604193307302, 0.7139500295408225, 0.9835751372287203, 0.8786017002500628, 0.5309011179292104, 0.5318165210074818, 0.8893453604733625, 0.9747422702883367, 0.9991620085502699, 0.7529425238376191, 0.9077369278030782, 0.5463324710793558, 0.5811701463039196, 0.6858847418174203, 0.6693212502758461, 0.8229191477907696, 0.7763040513018089, 0.9569628089334503, 0.8171332726050611, 0.7859606365092402, 0.6233516782290274, 0.6505739431535722, 0.9871166835134694, 0.6722450846791079, 0.773430964338209, 0.9502459542143051, 0.5597427793521454, 0.7617910690453786, 0.6780357114503124, 0.7965906282919817, 0.9937157991753549, 0.5654628657856913, 0.6551605220193539, 0.9471924263062506, 0.8312642089294264, 0.7207262785881361, 0.9621695970592838, 0.8544594944978605, 0.6194750675185279, 0.5984715718847997, 0.845175957352069, 0.6463535515874468, 0.9852574005633541, 0.5490084843501143, 0.618124659373898, 0.576204784963598, 0.9172000665972695, 0.5520697955543362, 0.532357886424706, 0.673127267879429, 0.7428348970433224, 0.9294293287082, 0.6186292101418345, 0.8986451333558824, 0.7954300597604508, 0.8883086697669165, 0.6436234516881452, 0.5659878425996518, 0.6968717198239455, 0.8665936193237338, 0.9193167394502153, 0.5911106872194228, 0.5348205170660151, 0.7713493428690458, 0.9634073552537699, 0.9129200183247457, 0.5059760339255821, 0.5549789770620821, 0.6118143961982812, 0.5923591569923314, 0.6132050446192343, 0.5035375375529992, 0.5733937723521578, 0.6488536756192471, 0.9241796235831601, 0.715285935245635, 0.8853814280002266, 0.6877413571089765, 0.6799336221364, 0.9111775637770609, 0.9887933600902836, 0.892783354511683, 0.8573566709364033, 0.6317530469184088, 0.6347580102536712, 0.7423890651942879, 0.7392358946041976, 0.876508373157419, 0.54111944305125, 0.5901773210192593, 0.9476374478872942, 0.6938340159476979, 0.5950562015498666, 0.7496108028040335, 0.6760662362772786, 0.5310604887593908, 0.6077141335572211, 0.938246236030073, 0.9675561863706778, 0.5809616770103089, 0.7554104688117789, 0.8283024245987403, 0.8387305175911444, 0.5787221005241228, 0.8924578580454503, 0.927224652442746, 0.5570212302410102, 0.5711449141220617, 0.8704907624681236, 0.8632395325318696, 0.9548431239209487, 0.8415037774305708, 0.8345975682697369, 0.7360383183789025, 0.9643880310347369, 0.9176541667857798, 0.514816040161151, 0.8797114855458201, 0.5462012838332532, 0.6266592821736334, 0.6639156934169905, 0.898189059473046, 0.5944916290077951, 0.9202961726716796, 0.9711132643504626, 0.7696088421420206, 0.8251852985204069, 0.6322512300859333, 0.5741067475910195, 0.6673348870102789, 0.716923904765371, 0.9149338463569099, 0.8048484663388741, 0.9378006940680429, 0.6801310437734667, 0.7556209911544973, 0.7497419396196723, 0.8008022007856427, 0.8283076939059453, 0.9823807688214863, 0.6465353793968754, 0.6590351082718617, 0.5202608001728897, 0.8505166308033169, 0.8579935160936063, 0.7714483688988946, 0.7916608018754929, 0.8155499360804963, 0.5227554166437902, 0.9680295589384322, 0.6030348022548574, 0.74937033911348, 0.7721332329485123, 0.5052366653764939, 0.6960194524126854, 0.8805009352240472, 0.7165052857946519, 0.9445001858396658, 0.5774742883378496, 0.5423924818929585, 0.8593866962088085, 0.9059532890340248, 0.8534578130446688, 0.9577670300418406, 0.6523666772137138, 0.5356764667510852, 0.8718256088154699, 0.6026847384896543, 0.6033997291175974, 0.8070963666900348, 0.7579644466117808, 0.916788500624256, 0.9580550723089987, 0.5911047340750673, 0.6788003786397417, 0.6576926130693556, 0.9894070002199737, 0.8602542167374878, 0.8864814808444158, 0.9502534950043584, 0.9234882256246215, 0.9538890431364286, 0.9216806909396731, 0.701571317275608, 0.6692814003901171, 0.7233406737730627, 0.8948939079984473, 0.6688548057939585, 0.8264948775986173, 0.5867155883517448, 0.8743055194159876, 0.755630315343452, 0.8578527621737433, 0.8942963479865499, 0.6330010485611972, 0.5816311280655062, 0.614143273873557, 0.5158867264773762, 0.9087285461538062, 0.7081859589683221, 0.9940229454697638, 0.9361128668569685, 0.6293209861963709, 0.6034310748595088, 0.7473319028055816, 0.687210482433515, 0.8169272816305341, 0.5651526282615291, 0.9060004120762242, 0.8440549432474902, 0.8056108380824004, 0.5713037313238425, 0.9753001149369405, 0.6275396703055554, 0.5274590049547209, 0.7648736695558869, 0.6543819852363308, 0.6973614792809589, 0.8695698878988718, 0.5970758595339258, 0.5234763217630092, 0.6406451248112932, 0.7940578696800523, 0.8145332045166673, 0.6493866492233291, 0.7315492738159735, 0.7893171144657849, 0.8924050264320461, 0.6783747052698904, 0.6039535813877557, 0.9871586320251224, 0.7007617566905902, 0.5521365229280343, 0.7511224221734243, 0.6756018480264194, 0.7593899092094243, 0.8047619121693169, 0.6636045005327884, 0.7844112656598847, 0.8679324385374686, 0.7017289669670613, 0.5768020607932264, 0.9372764650460088, 0.7803115777220315, 0.5002403343732172, 0.6527828456415222, 0.8176441416021747, 0.7321292358498062, 0.8643674077853609, 0.6061984499443858, 0.7392819322079127, 0.5134179384778632, 0.7090963278236806, 0.7501265134745434, 0.9012329709065304, 0.8736833663845021, 0.8228788544229517, 0.6125944926128231, 0.8334169793912766, 0.6126299890282693, 0.7797337067743603, 0.7506136706835349, 0.953735166547952, 0.6443395872789757, 0.8764124831492776, 0.8309297795608612, 0.9833251599724806, 0.695879173448199, 0.8731308966488945, 0.8555741318064913, 0.8253307216664639, 0.8925454676188203, 0.9954194092434907, 0.5961584052013363, 0.9671736610115331, 0.9880967771864522, 0.7267446242836136, 0.6248541751430092, 0.956632188667088, 0.9114175540434821, 0.787038563190045, 0.5759796269299889, 0.5359678253266413, 0.7801655592517038, 0.785297159246231, 0.5768421821111898, 0.6284187745087106, 0.7788597829513829, 0.9757465597820327, 0.9298454486768742, 0.9026422791615912, 0.5749402066848588, 0.6725312585597317, 0.7339575719135786, 0.7989698460444672, 0.9772819441857548, 0.8052714592658128, 0.9491842591925931, 0.7705388105218549, 0.5103657057269263, 0.8227905801459869, 0.8465439857909861, 0.556411431565373, 0.7438589074917867, 0.512439955772265, 0.7981739505808603, 0.8458463685417446, 0.9244749214685026, 0.8541319043300429, 0.9830929820944648, 0.7071331617059146, 0.9066863446295664, 0.5773396662051525, 0.6588125065585536, 0.950625265188098, 0.6890531129644974, 0.9975164955113556, 0.9621909609220942, 0.7946473219144581, 0.6937126933271154, 0.6265629343041278, 0.8142358167690023, 0.6624514186916897, 0.5483132328651755, 0.6397097249335133, 0.9007955918529159, 0.701098455195369, 0.5131016337327181, 0.5405489664936695, 0.6649217973672129, 0.9568120498905788, 0.7780095145848509, 0.9826078159781025, 0.5045052878534231, 0.7643152572142365, 0.9711238330659522, 0.5236158750538411, 0.5660207380742486, 0.5549256745800513, 0.6115970039044452, 0.6522610479629329, 0.7466223423276659, 0.7775763996820547, 0.6832448648588918, 0.6189097120953962, 0.8138649272543187, 0.7287309731799098, 0.6608698551302932, 0.9916634038903125, 0.6205946774204247, 0.8186552335405303, 0.9242724451416736, 0.512933801026564, 0.6309380232416475, 0.6345793076770984, 0.9269203901536032, 0.8775209785368585, 0.6771856409579746, 0.6707493952343273, 0.8401082015136534, 0.509682293228316, 0.964264143338607, 0.6168783075534172, 0.7905123535325347, 0.8808745411419762, 0.5105215375959788, 0.6526181305229705, 0.688736936265669, 0.5203276860961386, 0.7908633776106679, 0.6670934924108076, 0.578754078898778, 0.8148207793283673, 0.9614407770646038, 0.5199603736373343, 0.5358448570724277, 0.9411466452524904, 0.9770843750095923, 0.7916082693006443, 0.7710243156856411, 0.5833316024457387, 0.8266380284272752, 0.8188220956401507, 0.6185599138100351, 0.9634335409164365, 0.9230621871751792, 0.9662427696411862, 0.6699034397210863, 0.9160693766243146, 0.7566717141505483, 0.5364671924151831, 0.651909865729382, 0.8509142067791796, 0.7800750834755581, 0.7931584885809724, 0.8050958418943028, 0.5371728869271297, 0.6782173167618408, 0.999730651247021, 0.5439044671599145, 0.641306749446539, 0.8427661325681453, 0.9416838215215235, 0.765345379761851, 0.8664225833034365, 0.5843773199412944, 0.6202581550550087, 0.770257337893664, 0.6702805217122978, 0.8707199618983847, 0.6239245902597812, 0.6757436742192392, 0.54502888260727, 0.6659995280058071, 0.7580270051379527, 0.8984483227936245, 0.7187683812560106, 0.5682827658285494, 0.6147706717529724, 0.651472601230493, 0.9869922256561053, 0.9450455606131205, 0.6034376319503967, 0.5815780776763371, 0.9587019516613067, 0.8486401034351992, 0.9931768432907642, 0.7645710631376612, 0.8494995056635204, 0.9636729610138401, 0.5663558590724049, 0.5783156702166788, 0.9012812760747864, 0.8796723024434852, 0.6602835978668969, 0.6012722431437614, 0.8442111174356919, 0.5590578710002347, 0.5975662545626397, 0.7770057390006915, 0.5680504516278098, 0.8640713138717117, 0.5959903319337212, 0.9573043560149683, 0.5232609133449417, 0.774254005153187, 0.5175691116234906, 0.8284663343750346, 0.8758599508189232, 0.9083630406671345, 0.5316377744204809, 0.9518108852252584, 0.7282496063015382, 0.8749284668622596, 0.576510363072605, 0.591160872142956, 0.8960396908317088, 0.9165920757238647, 0.9751207800108611, 0.9503315726377122, 0.8828131339699206, 0.5101957357576747, 0.7571768980136143, 0.6529052132199382, 0.8167974948133488, 0.9102810356239447, 0.8516609266986814, 0.8749234546882388, 0.8775703052529487, 0.5355308938255188, 0.670017900183612, 0.7850554165021574, 0.9891565672533753, 0.6178600788700599, 0.7335453121968947, 0.7998480936181069, 0.9647408495929568, 0.9467486731138157, 0.5473670913109498, 0.8294826315062263, 0.5767331617899232, 0.8910537615193586, 0.6225594149730982, 0.9853225770684858, 0.6719936809244584, 0.5895998198671133, 0.9137020177342627, 0.6140252642881308, 0.7322603851913935, 0.8594299535089807, 0.9309319489778363, 0.8995781498530743, 0.5593595702048212, 0.7175552440686745, 0.5649259682259525, 0.9218248151747455, 0.8292307727437965, 0.9645120332487006, 0.5271892919673554, 0.5061943423752462, 0.9891248982519861, 0.6478557671473688, 0.5444237332272182, 0.8205124060300704, 0.5511482114489028, 0.9347110135845031, 0.9037456009055091, 0.6069007516235083, 0.5155386479438925, 0.9935014685298187, 0.9370133072099162, 0.6275648257294633, 0.6735158213612399, 0.5752063176176582, 0.9204480415646736, 0.7835687219803461, 0.5411673194115276, 0.979488011729212, 0.5408645841145101, 0.9882073373012841, 0.6406042407506344, 0.8208088274122276, 0.5310251818256502, 0.9272898261050287, 0.9374207216199126, 0.8655681090890379, 0.5529582494067455, 0.5437910373813863, 0.7431891918959863, 0.6697380428042976, 0.7454357333716226, 0.7212453576415845, 0.8541116014229838, 0.7832365174608509, 0.5113165044973165, 0.6562592172393639, 0.9786584047337924, 0.5738188588770583, 0.862173373382295, 0.570111646314561, 0.8467494835843886, 0.913877354278461, 0.8313349936955315, 0.5355546739837065, 0.74317289282099, 0.5589097576568406, 0.8711752669461821, 0.5834238055326695, 0.8788507328052861, 0.5775779909123824, 0.6089771037699269, 0.5383031916330672, 0.7082875919629829, 0.9014275016884883, 0.9501011942920754, 0.6078751376669934, 0.8092027504321797, 0.91518100356119, 0.5644800046997798, 0.7274246561793998, 0.9276423275213657, 0.88022137878714, 0.7757218147296301, 0.9271798492238367, 0.9515639386983601, 0.6692316962354732, 0.8065607828244741, 0.5283537794238091, 0.5992515586121012, 0.9366588698653113, 0.5069790672409593, 0.7677093301357101, 0.7797830605585134, 0.5652454180769029, 0.9282049928814271, 0.923224393267367, 0.771658054046634, 0.8889798764097175, 0.5097517363996741, 0.9178423510564666, 0.7800391072698099, 0.6414046299244678, 0.8060493929718426, 0.7764051963689468, 0.7959375403976328, 0.9158704812058804, 0.9983342048699859, 0.8254725759635261, 0.9583329052111782, 0.8656172611352491, 0.874062949087587, 0.8162207516369582, 0.597243010336193, 0.9169890685106941, 0.6689989873789088, 0.8735048633484972, 0.93694188199789, 0.8238716217919756, 0.71771717544087, 0.7263441494229694, 0.8894102767794819, 0.5510754379238865, 0.6161979957019446, 0.7678153414978508, 0.7701891152186622, 0.9579837518906287, 0.7579830728995421, 0.9786853011494818, 0.8451712741171267, 0.8760516595607434, 0.8575530650014256, 0.7840220990045699, 0.6807201240874399, 0.674189753559304, 0.8502774383831265, 0.9480119180099099, 0.8264360689746806, 0.7776180641206805, 0.6326290009126265, 0.582370010819697, 0.74337032945419, 0.6688388446732094, 0.5465003438795374, 0.8083630209347912, 0.5801687931565142, 0.7373854419362529, 0.9744987618567054, 0.5478409830452056, 0.9131814752787399, 0.7537726479446981, 0.6166148143654436, 0.579184069781363, 0.5478398865222676, 0.7812587646002234, 0.7874489399868727, 0.9117481693408964, 0.8728988168125291, 0.996818390110648, 0.5387952956356732, 0.7624837270777147, 0.5108183281793941, 0.6367658793354913, 0.6779902922155762, 0.5758064258531084, 0.8364457292517911, 0.9768470117524787, 0.7102921318573354, 0.989660422940811, 0.6089041975961023, 0.7365811902416318, 0.8598759350690117, 0.9364367721674405, 0.8210872710668367, 0.6956407488092673, 0.5411255053227984, 0.505525537886716, 0.5505025127059662, 0.7425949093802824, 0.5768162164990445, 0.5389824343350865, 0.7193899289807055, 0.5752300332153197, 0.912961744315486, 0.7154840291112259, 0.9214821891304916, 0.6053164348763355, 0.8770411395111044, 0.8218251203726599, 0.7162777987091989, 0.83662645286286, 0.8712039961527092, 0.8276131584395279, 0.5719885419068873, 0.644317177320485, 0.8888087217258822, 0.6766824731530814, 0.6366659036077408, 0.7260737632689036, 0.5151034417145453, 0.9954190738798772, 0.5491727419502885, 0.7414863138002714, 0.9739154882502796, 0.7294692912454275, 0.9930348545030236, 0.8474269228135163, 0.5099486438820526, 0.9472175688525797, 0.9506383989066324, 0.9092093659338034, 0.6811658483164011, 0.6513566712256549, 0.9637774174112195, 0.7310950962403915, 0.7244200045604059, 0.6161378735416687, 0.8425868601260891, 0.6335868858757014, 0.840755023237353, 0.6420263434313915, 0.5037965354173293, 0.5413841806226821, 0.8074573027121021, 0.9653687604847889, 0.8160858869982257, 0.6692712380630064, 0.8394863670205065, 0.512314323153666, 0.5229574358437266, 0.7224869885190527, 0.9825372115807836, 0.7466368647676924, 0.6186178555548443, 0.9102129201851721, 0.5386947015119927, 0.7650386440854957, 0.8750706393595606, 0.972097701782884, 0.6217190623167395, 0.5563766540313176, 0.9129444458313447, 0.5012267413687197, 0.6626960203927854, 0.6505951698395216, 0.5333796056964151, 0.8758006553101946, 0.7149160190441608, 0.9991003798192859, 0.5206721816181619, 0.8011411535677577, 0.5080803950709187, 0.7245364174555772, 0.9986193840580035, 0.9275583359731409, 0.9369327662377875, 0.8128210785129546, 0.7489951110372509, 0.7514704841531472, 0.7291663429896679, 0.8839100907871409, 0.7954154583035637, 0.6680677965178747, 0.8109947441220874, 0.7986807768486708, 0.6516958267641826, 0.7991849259778082, 0.5701822361090054, 0.9662915503376657, 0.5811930711733416, 0.7982353325361209, 0.5581974918904633, 0.8091092465106169, 0.9076735848946826, 0.7789002702837327, 0.6904450207566889, 0.8184890712718067, 0.7124209644133364, 0.7808353672551507, 0.9259803194158552, 0.5727267134012821, 0.8254952559238854, 0.6317802708988107, 0.6499885430233175, 0.897276610183612, 0.9044677571982781, 0.8529219593822568, 0.9231386216216433, 0.7955592318658442, 0.554586653912266, 0.5954390461220993, 0.6498661251012493, 0.5754154081928144, 0.8070962749874421, 0.7157630147727478, 0.9229459802238809, 0.6974838839517119, 0.9071750197324112, 0.7784027751991122, 0.8701867605403899, 0.8853128740420105, 0.5315850092340068, 0.6594268866464321, 0.5186460268369697, 0.6274688016567835, 0.8842493910093685, 0.6722337688472353, 0.6120285522923183, 0.6229256525519562, 0.6139894893828437, 0.6481037028594085, 0.7816780820235868, 0.6235326014863491, 0.7050034497205844, 0.8154351937169542, 0.830406200138009, 0.9756945467539655, 0.502118315471465, 0.7320574103766442, 0.9073024738964869, 0.9434876287304669, 0.8074775645803476, 0.5105074484652576, 0.5577223351289685, 0.6648915662006116, 0.9961757962348896, 0.928967481722257, 0.9243656094418387, 0.9228767957461596, 0.7935349068683364, 0.9369327188826073, 0.6211822636542599, 0.8793557439864234, 0.7676439244823652, 0.8878080431882742, 0.9848604813924173, 0.8245283714793651, 0.9535570572217655, 0.7473421115148289, 0.5695035403282294, 0.748591859370831, 0.6502319972801263, 0.5597353461210455, 0.7429364031999406, 0.7827104913902907, 0.5627227860733004, 0.9032825251970882, 0.7679282740461872, 0.7319239616771522, 0.5610545159206834, 0.8091918983230724, 0.5949575731307113, 0.5849596362968817, 0.8495532086384983, 0.8873297505646893, 0.9647941896152268, 0.5320320963160268, 0.7347642341163646, 0.6121736985338655, 0.8513258577857628, 0.9043877487285434, 0.822810926992934, 0.7667641905978217, 0.6974267203478715, 0.7457602559218893, 0.798101582912507, 0.8395022900115204, 0.9626128620718775, 0.9584780974710304, 0.7886378031222468, 0.7687040003701477, 0.5402729907457741, 0.8517263182276671, 0.6626348343282712, 0.8715450362305179, 0.8478541667829529, 0.5288074213234641, 0.7871451039441582, 0.9050168154271576, 0.9987833767107439, 0.662206977521566, 0.8152259458087789, 0.5652841056047149, 0.7694383303745429, 0.8133526256929573, 0.5867552916588289, 0.8731403202209909, 0.7517922247862412, 0.5991538995375814, 0.8690729792223741, 0.6323554290335115, 0.8737477114406086, 0.5834901909001053, 0.5353547230314264, 0.7556328783337352, 0.5142346574513911, 0.8251270092549633, 0.9401031871993384, 0.976274146235026, 0.9011667165197279, 0.8163133460485941, 0.7831407416200653, 0.6167450612306528, 0.5676560612696933, 0.5558335232430361, 0.757166403897098, 0.8257976566345675, 0.9353390043077511, 0.5778096795612409, 0.6380988312885778, 0.8507650329509124, 0.6039655652862606, 0.8423145388299809, 0.7267837497553484, 0.523051157483762, 0.5566203073438034, 0.526658040542529, 0.5617774288675786, 0.7773410151877744, 0.7098480470248143, 0.5858983373700319, 0.9461666496593618, 0.8587151890873033, 0.7123956803582978, 0.5711896428226522, 0.508087691057274, 0.6162546764107084, 0.7016191072328605, 0.6632401683871681, 0.5897837852899702, 0.7203131544946835, 0.5545013688729951, 0.9852986822379471, 0.7970829822678496, 0.5680422835739491, 0.8968908779759901, 0.697002237321285, 0.9876110029505791, 0.9878624358354884, 0.6174436374188013, 0.5147087923036466, 0.6415292578105252, 0.955265213913608, 0.9845273659938046, 0.6397536787738399, 0.7321683977673008, 0.7773000015464213, 0.5813652891234293, 0.5082295553383669, 0.9270279260220511, 0.9312853635736201, 0.853475286686288, 0.7908278010812977, 0.8858906924032617, 0.7003291152596052, 0.6854842893919749, 0.8022281172016493, 0.7059661575102933, 0.5368150440318138, 0.7746085391974113, 0.826082343316269, 0.8178232586444523, 0.6510376761712939, 0.8816258931787366, 0.579052548640804, 0.9692877396950776, 0.8615067896687587, 0.919484171751028, 0.7200207267619025, 0.6154213287611922, 0.8512445887757627, 0.8114333505322098, 0.9772030427362601, 0.7076620458676508, 0.9486055179881498, 0.750892826481576, 0.5755965220822268, 0.7807832897808413, 0.6055893886552811, 0.9892504049683324, 0.8829961390163181, 0.9097899339343798, 0.9189503377198988, 0.7901840770040364, 0.5420497261093098, 0.9255386139972498, 0.7693567330606279, 0.8560360548612578, 0.7371119433948812, 0.9130222294100996, 0.8987688483462526, 0.5438896030422089, 0.7258764961983541, 0.5048966787255971, 0.8895451431559631, 0.6432905743502803, 0.6995802005990592, 0.8393141258606625, 0.9769656001533005, 0.55528555293057, 0.6701578933515583, 0.6243568644369256, 0.9548196798144786, 0.8075507355211287, 0.7414848924982906, 0.8542991255499128, 0.5156417567121838, 0.9215687238162569, 0.8604979998967164, 0.8226346549316322, 0.9292321754879889, 0.8338917348966626, 0.9073191157860167, 0.8992910535057992, 0.5121580489403527, 0.6502928097172319, 0.7087994838420419, 0.7738888732505029, 0.8501605956408452, 0.9442648735638869, 0.5527508542527989, 0.6974669912161037, 0.6519660574261368, 0.5314595002500431, 0.6572576844695383, 0.8734558462707868, 0.5309014413177873, 0.5927883962301999, 0.5569525784189098, 0.8526417766864994, 0.7950139094817176, 0.5984016370363867, 0.5503401434725745, 0.6342377344380106, 0.5986935720991198, 0.9714403821681525, 0.7422207292235088, 0.8174629694400435, 0.5385521610527266, 0.9222580952677396, 0.7790322112379205, 0.5959780907132914, 0.6963923495144866, 0.5606897188769894, 0.7533382303410234, 0.7450827811623575, 0.6731473902298883, 0.5065173572573467, 0.8765793656694967, 0.7393248641448087, 0.7288672191855383, 0.6250397365404936, 0.5894118659742906, 0.883891751113975, 0.5315342102471261, 0.5543055687043645, 0.7561660278440674, 0.6072136914769501, 0.7906531271258987, 0.785111919106082, 0.8877794289724197, 0.638365426742322, 0.6458264304584365, 0.5425782669687006, 0.9284932182474335, 0.7613111471766087, 0.8599890217432882, 0.8870445059581022, 0.9989147071647146, 0.787238570286279, 0.6776532752680011, 0.9598318443308617, 0.9392812971534668, 0.790248567041533, 0.7288574216512534, 0.9636225911150358, 0.97378398341544, 0.5228027739336261, 0.5316215254058776, 0.5241956865071904, 0.9785403997203727, 0.5610682378492597, 0.8756452546049638, 0.9761622875469291, 0.8928879827676747, 0.8070266559153843, 0.7473345011240857, 0.8959606755172684, 0.9687089296770837, 0.7450271096605171, 0.9172288367014225, 0.6689311837752717, 0.6306024256962337, 0.7947903289892418, 0.7541845064549171, 0.6492531402469799, 0.9509187802871152, 0.5237130911403627, 0.7425936961346258, 0.9814994804947537, 0.9742221949623531, 0.8796564751827387, 0.7866875541782539, 0.8911843993948259, 0.8612356700517971, 0.5073945770305868, 0.689405578171763, 0.9242976412712574, 0.8030385947827151, 0.585891115130757, 0.5436425949191239, 0.9912503995273892, 0.662270311564442, 0.5748620312364665, 0.7576810579693951, 0.6453875506785347, 0.5055303600492382, 0.9536893568397049, 0.5791833229909169, 0.9559874405058848, 0.7350003931390093, 0.6873468107765773, 0.9712122013620084, 0.826968921378474, 0.6665794143086696, 0.852187716678672, 0.8227877973134399, 0.9284065400145003, 0.5875019946573652, 0.7873610335091901, 0.5231642875048497, 0.6533229614449189, 0.9290270291201295, 0.5348881473393816, 0.9351147900449588, 0.6264177365482247, 0.6933211604240859, 0.5279587819291451, 0.6688203801893666, 0.7444131418224498, 0.6249051917196837, 0.989647379428614, 0.9124609244907311, 0.670872818114147, 0.7913304174215015, 0.7103289496002925, 0.8230529213991425, 0.5191614636063107, 0.5489601849515393, 0.678674372753667, 0.6227722402861204, 0.8498547941756063, 0.8233041713913005, 0.9584358407190325, 0.6911534521030502, 0.5746932709806354, 0.9553130783975577, 0.7506371375115117, 0.8713742400920086, 0.8607822470997841, 0.6894917913831768, 0.7545110288146766, 0.8206681026972866, 0.8697648987589977, 0.7521773034893133, 0.7154920915344565, 0.8544103899673506, 0.6164248563589392, 0.5393370024457531, 0.8234786708349165, 0.6490593188790591, 0.8993496094345429, 0.7382243200312553, 0.8424968579271523, 0.582489781853853, 0.970703803503447, 0.8387747726726035, 0.7450698860589227, 0.8408219592915065, 0.5302341090294105, 0.7130217762974045, 0.5320224043985853, 0.9668047768085648, 0.7965666192000987, 0.5465711944171274, 0.8215077292354867, 0.990806780514919, 0.7531118392122709, 0.7433129153309728, 0.6997739766052224, 0.9666197041104274, 0.7943692880263601, 0.6159336890557682, 0.980208613045308, 0.8619290008624861, 0.7111118829067683, 0.6567301003758321, 0.6703097257762634, 0.8251006547433386, 0.9785478508717035, 0.9411767632742868, 0.6547822090202587, 0.9347056771013316, 0.5843991838340736, 0.915744714547176, 0.564968604962548, 0.6961417223775461, 0.7361881453714706, 0.9876668316142947, 0.7092199563059027, 0.8045443817496725, 0.7308260154986147, 0.6252908396009381, 0.8745729675326022, 0.5274794566841068, 0.5835722454285153, 0.5680941497673324, 0.8976387001276002, 0.7077716246304055, 0.8802135042337036, 0.7569051844560146, 0.888593325851375, 0.7581257171600145, 0.9109134775041159, 0.7187110212847545, 0.8473244486890833, 0.6469941893939563, 0.9060299453110435, 0.9188275671860884, 0.5548225921711782, 0.6153356205194052, 0.7162545402870986, 0.8902780062506046, 0.534429266661255, 0.5790137557400041, 0.8711938058965385, 0.5752267678195968, 0.7102642993725989, 0.5585643096438138, 0.9327386003632105, 0.6607871783170424, 0.6565564199913556, 0.9156772516887606, 0.8494831774846681, 0.770231279711695, 0.8870341644942266, 0.9611085372135206, 0.5145376771133352, 0.8758817065386837, 0.9127041691303012, 0.6509201540661238, 0.6020356392129074, 0.5714923927336277, 0.8791931243052149, 0.80805410070571, 0.9696778330749127, 0.7743713131185782, 0.8778007541163799, 0.641145812418277, 0.7566863607177216, 0.5378662611082308, 0.8053391771487148, 0.515783252087495, 0.7889013863643621, 0.583743984594195, 0.6686725805757864, 0.8831675920442761, 0.9697986381313621, 0.6032325708194595, 0.9329436598333579, 0.7385883890089495, 0.5796147261834306, 0.925679948606924, 0.8323037885975522, 0.6794266776313194, 0.7213713807752844, 0.7951502224766733, 0.9717651963607519, 0.688059233167367, 0.8069105515155065, 0.931761274620492, 0.9258257217170405, 0.5060197305078346, 0.5238840469870363, 0.8523170462020355, 0.920585365893523, 0.7912128948990605, 0.9779972368377716, 0.5934388312677245, 0.7282774175366801, 0.8052282534467872, 0.8009682572762797, 0.7255168207469698, 0.7938281339430647, 0.5057825602745116, 0.7886818148590824, 0.9928574680156771, 0.7875970050619334, 0.775472740485651, 0.6704948554165803, 0.8707063257206051, 0.8175290760195109, 0.7602244221017149, 0.7465829755913436, 0.5361719495468129, 0.9056790241998098, 0.8759529677166076, 0.5171489070596094, 0.7722996984640622, 0.9659888505105645, 0.566664093589783, 0.8196951048260577, 0.6526954840866643, 0.760742494007262, 0.6063319999390933, 0.7865161343341063, 0.9256591566052529, 0.8081186518841412, 0.5208247598455231, 0.7948623381138131, 0.6874446019611564, 0.7574981582551894, 0.9321587119484687, 0.8351173168122392, 0.8127303911105804, 0.501102186825871, 0.6369485896040405, 0.6824458816545995, 0.624862329964304, 0.6291250509918653, 0.6152880318003728, 0.9498714909560089, 0.5987811892046042, 0.6010220668770467, 0.6306636663759775, 0.7146784686655732, 0.7336323089237424, 0.5307312351317093, 0.5339817591696775, 0.947611853929841, 0.5937456766484259, 0.945817605281259, 0.504133080407529, 0.945211101437035, 0.914936949050565, 0.5249739588831772, 0.8254656700587597, 0.7366072972257676, 0.6685711284872479, 0.7012395978462127, 0.8609574480631828, 0.561925088774751, 0.7582430820020363, 0.7026271259545254, 0.6221269274063121, 0.6136685680390133, 0.7739940466556128, 0.972485212550541, 0.6297793853140403, 0.801835643113407, 0.7607260737898045, 0.7411908512785095, 0.8518260459977129, 0.6209506850238095, 0.8719949765588433, 0.5544127592324228, 0.8526624946193408, 0.9887224908509373, 0.7593403079866062, 0.9446215798949957, 0.808521632136666, 0.9403828246818509, 0.705265371092737, 0.6564941446728518, 0.7127425212850527, 0.6480600678902944, 0.656106324829654, 0.8051435763707788, 0.5887520226737333, 0.9723347560888773, 0.511218102056733, 0.8168221911759792, 0.9980070252057842, 0.6107758357042602, 0.5680206151112225, 0.9195726485340487, 0.9825155748340422, 0.7261120839333388, 0.7509786699746979, 0.5270385877143232, 0.9454631508903534, 0.8641378391301997, 0.8003586048932854, 0.7780801429996179, 0.8388609086028611, 0.944701769276029, 0.7208344853041165, 0.9778340044184809, 0.8766882958340685, 0.7332794088625059, 0.6027012688357376, 0.838314777061778, 0.656520541633665, 0.8980348694573154, 0.5668681233062041, 0.5264279147762101, 0.5940330497643656, 0.8121659001211428, 0.6257781699280776, 0.5548204393257765, 0.9479040015679302, 0.958350834933033, 0.7582803526321261, 0.9965311262414831, 0.6189223649372814, 0.738862418822251, 0.9555308358346066, 0.7880943139521759, 0.9768056406841313, 0.8187284499078681, 0.5136173694310153, 0.6546487249671229, 0.5078090989293693, 0.7521677681190964, 0.9107921108606211, 0.5274496463493329, 0.9295813013521229, 0.7639181206737091, 0.9333303777832498, 0.9533228713419692, 0.8018303495740758, 0.7382148100519057, 0.9154148258962734, 0.9855405604033833, 0.5639241751450956, 0.8804615908035087, 0.9780071808440757, 0.6217571432087998, 0.8268240526066191, 0.748615457068849, 0.7474196149592087, 0.8049697332950673, 0.8982081614063315, 0.6530082222486318, 0.8474136892603841, 0.944250100927783, 0.6026274056578993, 0.6507919025712359, 0.6232831509153001, 0.9989945161729301, 0.8718130573218261, 0.8671806874478085, 0.8451947636964564, 0.9016521038758891, 0.5804593213458646, 0.5412449150789772, 0.8370665058428919, 0.9289558839670455, 0.7001750323223476, 0.7954692200897675, 0.6506852933842674, 0.7071133217454828, 0.7396776629112686, 0.5530033690429559, 0.5613289169997666, 0.5757183993570334, 0.590454867202364, 0.9959376131498416, 0.5923510602555704, 0.7149567949996714, 0.7212519167435999, 0.6758692866478935, 0.9870387041635771, 0.7735647550912346, 0.9003322260345816, 0.7637796442465933, 0.5377460536022265, 0.7862670056031051, 0.5537105468732588, 0.6453309110588861, 0.9619217411095393, 0.8886520268273371, 0.5000652608935965, 0.9510465368091241, 0.8783824260303235, 0.8957534780060918, 0.6743912847755849, 0.6354857261851135, 0.7288162633300217, 0.8105684258752637, 0.5406906201290994, 0.6151838119006324, 0.9391509642375785, 0.8720125020131602, 0.795939247048397, 0.6372579556969996, 0.5990432833432868, 0.8276514120147405, 0.7934590466768667, 0.5252963165594478, 0.8212284034918818, 0.7150404065196645, 0.985756311748245, 0.8495620204545395, 0.9103027134432444, 0.874840393747085, 0.6647278252868847, 0.9437210571057275, 0.8841535919729516, 0.7854569095763271, 0.9698072101986832, 0.7518435299299335, 0.8480085462536947, 0.9403219061607504, 0.9516980726147304, 0.7010606364705412, 0.7353384628321464, 0.956362840991144, 0.9874336469776744, 0.6501135681402984, 0.8016408003963723, 0.5873107852905926, 0.8710399083051941, 0.5161630999457245, 0.5399814938703633, 0.8361799276004422, 0.6160387986506503, 0.8680051823987976, 0.8943530192192161, 0.8504588371626423, 0.7754575637406171, 0.6536486685850935, 0.5130303933774572, 0.9330403202412925, 0.5189460821669937, 0.5754396914870984, 0.9621674114888203, 0.7787161815191341, 0.7197773251039516, 0.8244052314930372, 0.9222515244715748, 0.5931022928012649, 0.9598498372917099, 0.7736321799539259, 0.554167957005292, 0.6865133121301651, 0.7804926333883093, 0.9224234114275467, 0.8453755671925061, 0.6992793463812745, 0.5424018644602033, 0.7395922255041218, 0.9871998500766959, 0.8155052898941657, 0.509181404060663, 0.5989856125752129, 0.8411068489165461, 0.7393935199209487, 0.7640958280276651, 0.6212913968199261, 0.63065147117902, 0.5237503825393259, 0.8343716794017977, 0.7531106338616784, 0.5546853578795568, 0.8853880242018328, 0.6366319952909263, 0.9101657540869018, 0.7653663975179974, 0.6652574593984193, 0.7679507998284094, 0.712002222296914, 0.570704732673418, 0.5216467995975814, 0.6653323034130835, 0.5664156165077714, 0.6927158103464941, 0.8189165827190372, 0.8797485037292829, 0.6362265652467594, 0.9502869705933858, 0.777426297428738, 0.6178406947164867, 0.6987619385796274, 0.9401491237141257, 0.8456682403701192, 0.5947000600237118, 0.7585642136252306, 0.7044450516640475, 0.5302783102029078, 0.9216134371466245, 0.652856607208393, 0.5532686452780702, 0.6756868254272106, 0.5098868446931863, 0.6128220680839352, 0.5188211028115538, 0.5591471732418155, 0.8453755700987903, 0.5599110497482881, 0.6356198146076986, 0.8351345777195178, 0.7423444551011291, 0.6661891774940747, 0.6222730080969334, 0.7309749905662439, 0.5346194188676516, 0.9219967293301605, 0.8365365872790824, 0.6357933098924634, 0.6381094832327607, 0.7750423617322528, 0.9772170836000893, 0.8523242021002662, 0.5572880227140227, 0.7643343040554119, 0.7149668729009866, 0.5773546631367377, 0.5024508214266725, 0.8164567573164871, 0.7519618423331381, 0.9648713596620475, 0.7147697178465751, 0.9900470418526088, 0.9373668568937215, 0.6840552576703918, 0.52274612713252, 0.9512465545599506, 0.5954475584722579, 0.8479996129298338, 0.9530947191185551, 0.7000524637752821, 0.7598630425770732, 0.8326968591490073, 0.5836143053247408, 0.5551008359006486, 0.9601222471878776, 0.9784183783029908, 0.9670770792417955, 0.7581706139664095, 0.5812221161405632, 0.7854883289479727, 0.6333970562536155, 0.9044631903821434, 0.5217854688141597, 0.5488866020483882, 0.6817482142589619, 0.9947067120000365, 0.6936853947969428, 0.6308462715567076, 0.594058909264864, 0.6137944052273062, 0.7782370347284185, 0.6372832873988794, 0.7794052256459202, 0.8341404728897109, 0.5688489164379114, 0.5977312758979223, 0.5498537104042764, 0.6631350552191503, 0.6893315632115039, 0.631797303128889, 0.8027330414380665, 0.8752085728419121, 0.9183946130322588, 0.668959680019614, 0.9516207295396036, 0.8176257925165076, 0.9399622017493876, 0.7373383096255042, 0.5809677677877001, 0.9140852112705783, 0.9565127114148759, 0.6271060115522605, 0.5893309342634228, 0.6935041922392686, 0.7033161185629526, 0.9645275051600717, 0.9768235450301811, 0.6221193271513812, 0.577881668619603, 0.708234091304227, 0.9949237952955579, 0.772891357246209, 0.5808245093011563, 0.8936598956152951, 0.7251141712609762, 0.5448055992053402, 0.5546932043458703, 0.7798227308929992, 0.9670869999904286, 0.6764769733618028, 0.9018460758683323, 0.8271993324529453, 0.6750354508797745, 0.916326550936508, 0.53412065344565, 0.8101019058694721, 0.9936113327406606, 0.6472886949348167, 0.7445351418044279, 0.6791444472409127, 0.7906474229900282, 0.9166206688765404, 0.8786606379021197, 0.8104645577395427, 0.8252145934587731, 0.8634025810745344, 0.9818441763648499, 0.6654298459830522, 0.7050258887031857, 0.5929589887962748, 0.8009793258005393, 0.7365723408882997, 0.8670295122528956, 0.7954220333875489, 0.9176325261105592, 0.5950994898613897, 0.5593090000419043, 0.8484366243678169, 0.67454561769273, 0.5128949961955435, 0.5963319905565372, 0.5114786777027308, 0.8199075948252252, 0.5798074368536731, 0.7959832981157979, 0.5682283190880345, 0.8395876306154298, 0.9416438439061339, 0.6093377665879463, 0.9671196288274753, 0.8460226897684671, 0.9921876777419631, 0.6863066800587727, 0.68666366992133, 0.8120529978074515, 0.9842406572354174, 0.8825642855333684, 0.7830010760330507, 0.8973826325557916, 0.9493828188197866, 0.9598507409602719, 0.9024527077940974, 0.7318933679399888, 0.9351196305752847, 0.9171506576902252, 0.8636514637699946, 0.9442232520871544, 0.7555743756473372, 0.8689668265740009, 0.9090104246795878, 0.8949863229985898, 0.8894032630750398, 0.7814882884285286, 0.5488685373302451, 0.6877829481326674, 0.9958557839651045, 0.6494386653289157, 0.6143346294027328, 0.5250377342744766, 0.6961645259956807, 0.5155387565455773, 0.6180609574573704, 0.9646356453175378, 0.9744130152782822, 0.5195329390807741, 0.5592803301295293, 0.6037986332230034, 0.9663598087046973, 0.9860395940744919, 0.5927255534465439, 0.7596188918782127, 0.8970807221112873, 0.8952231975048401, 0.553346488271353, 0.6172667535255978, 0.8729470909677945, 0.9815535442086636, 0.7875340404149461, 0.6493276457308867, 0.9365053500188504, 0.9376569176867255, 0.8688756789208429, 0.5197357183256812, 0.540844579537503, 0.9716682265604595, 0.8865896887322704, 0.6316329759605488, 0.5888766029133802, 0.9126450630054213, 0.6500730436033846, 0.8334635266562254, 0.7913928977389904, 0.9369684196481675, 0.6587934415496955, 0.5733108999339291, 0.5426443531509273, 0.505678728747415, 0.964984891182816, 0.918440356350946, 0.7022887903442133, 0.933554863827553, 0.6109025030799223, 0.8380532644515826, 0.9026481004198974, 0.5443867855138578, 0.5561291011266735, 0.502693714090426, 0.6647779068640303, 0.5597850397847761, 0.7524899663978188, 0.5450145907751116, 0.9589830882561416, 0.5710624492861243, 0.5032402626186974, 0.9316022424165163, 0.9463635283611962, 0.9958319995288658, 0.5431839710626929, 0.7379965828546551, 0.9110524719550229, 0.5526472379512947, 0.5513995941260298, 0.6512292593257489, 0.6307952604251887, 0.5792445303806233, 0.5039917843618928, 0.9002011995501127, 0.6436762029987206, 0.5998594980169949, 0.5983356419930341, 0.9998234970758173, 0.8126649269953203, 0.5915369033487603, 0.5406621271091556, 0.5605713129721114, 0.8481225089299724, 0.8929300750183577, 0.5471014776402296, 0.604358035338126, 0.717126926900718, 0.6455934086205661, 0.6020638223734514, 0.6767880152696781, 0.6629233992128345, 0.898920457348947, 0.6000631253054767, 0.7600340019501095, 0.7443595658070594, 0.5389958091693359, 0.9447611876356552, 0.9825144692762608, 0.5154926119786207, 0.8631567257280683, 0.7526308847800556, 0.7692467096382207, 0.6163457936566741, 0.927821646446745, 0.530328166472288, 0.7059248553445354, 0.5126926750753917, 0.9315470936964952, 0.7116541536635808, 0.8618421536367098, 0.6761054445714604, 0.5001356042688606, 0.9748931595660945, 0.8182299372455184, 0.7439927612878587, 0.6442768687746145, 0.7914541043331697, 0.7464565338995532, 0.9828087572231872, 0.6910381741856093, 0.9152290143504879, 0.9563379200391697, 0.8966850958752517, 0.7273195094529812, 0.6652995935857404, 0.9500218978536716, 0.6502596186686349, 0.625261578747822, 0.9714586648780437, 0.8048361515736107, 0.5869316035839828, 0.9145581350916572, 0.8632330292159625, 0.9217629556359042, 0.5583422245486591, 0.9834108220984852, 0.6153592335188482, 0.5076600805665012, 0.9194915552769549, 0.9431197212495399, 0.716205089193203, 0.8819387823442795, 0.86831535242002, 0.8716801349713614, 0.6308940423350359, 0.8600878091972091, 0.5838380955482616, 0.6160310067706911, 0.553952481813357, 0.7637116758730298, 0.893930162496853, 0.7577417839411102, 0.6376068996186577, 0.580723075159878, 0.51986686615628, 0.8281740994401074, 0.711563454054918, 0.6929234236757849, 0.5285208294724817, 0.6390551645585643, 0.8135909759348874, 0.8492760150392429, 0.8743514157795627, 0.6542204063909342, 0.8594206190420572, 0.5046856187958999, 0.5350101810302718, 0.5216291592468929, 0.9022235710343371, 0.7825789163225192, 0.8179458000752451, 0.507687812861515, 0.5398062504045036, 0.7142624358708516, 0.7522487894161067, 0.9451765603355164, 0.7909694728905983, 0.87118306632825, 0.602670907556297, 0.6091730781660161, 0.7432795870305584, 0.6035034784042668, 0.6601557718756308, 0.783227051317417, 0.9578937393268243, 0.56833016719429, 0.637364151481459, 0.8336262780346158, 0.9358239253261356, 0.6618157573866744, 0.8838042527866405, 0.5176771900748498, 0.8862258813169589, 0.6226228423235739, 0.8222336877568018, 0.7360068729589775, 0.9098154667721379, 0.8237535838006658, 0.9169029684146257, 0.9440556281338759, 0.5458776612777559, 0.7925506288950317, 0.8900504676435279, 0.9877688931289307, 0.8611088870077729, 0.5090170072390188, 0.8740307295144293, 0.5423751953296259, 0.9485757856105481, 0.8660006101368405, 0.7757097417714314, 0.5168997137752759, 0.830294304097364, 0.9956979424186114, 0.961263996410564, 0.5914601937676446, 0.763613838290881, 0.5234282686000573, 0.9250260324023047, 0.6604790116623035, 0.8509934597580243, 0.8853100885726026, 0.7360353127310764, 0.8015682478318904, 0.9562575876250765, 0.9349664425971695, 0.5705319140748285, 0.6337456883743624, 0.8112037556808376, 0.9884283737290173, 0.5427980309638354, 0.802441714992232, 0.5286458396864335, 0.7221991001667765, 0.9699713659050395, 0.634969776158419, 0.9118052447544878, 0.5618222107299886, 0.5882136271443695, 0.8113072801187461, 0.9091722125746908, 0.866274960252283, 0.9890391746376804, 0.7765859743586065, 0.9451242308564607, 0.6278907902797932, 0.8913709510300014, 0.7853524446241189, 0.9803837669030744, 0.6224343091012546, 0.6010148638261162, 0.7508306338176421, 0.6013075643687704, 0.5407755744758215, 0.7613357513307548, 0.7754929308919956, 0.5863363905088519, 0.9948613322234245, 0.5627472162209051, 0.5193728622537284, 0.545187537766969, 0.6153361184982035, 0.5181049724559377, 0.6691105162605235, 0.6615494353486834, 0.7918001555637328, 0.605817605296314, 0.5615866502348281, 0.5564806578960722, 0.5135373648549242, 0.8443597255531686, 0.7167952449686836, 0.5779458210804802, 0.7769403576563791, 0.7965335066304742, 0.9617730970886832, 0.7195722475497832, 0.9538946573003764, 0.5604490124432218, 0.7870742521454885, 0.8102832419659329, 0.703331347849313, 0.6290657055043078, 0.9122525562579895, 0.845647888178343, 0.5504431789682327, 0.6352021943940802, 0.8079115540044638, 0.7504982920903676, 0.9771502744734527, 0.7562221861270387, 0.9071435139285466, 0.5384019188633665, 0.6438827374883137, 0.5464276313096388, 0.7103827463795356, 0.8694295712168008, 0.6258103856220725, 0.5602798979468341, 0.6470810000313215, 0.9811438039801155, 0.5192433478694145, 0.9207824826833211, 0.7178564954563423, 0.5858700086482944, 0.5853981500913847, 0.6778137838614064, 0.9150958731938283, 0.5226024211936788, 0.9709261578229678, 0.9836008460836223, 0.6255579787390377, 0.8330899973091024, 0.5137418542381171, 0.8305660461771989, 0.8383784656781919, 0.9393248973365522, 0.5750822064456745, 0.6702949045388873, 0.8668696284795245, 0.6140202395762743, 0.909767544583689, 0.6289304022064123, 0.8492843788079623, 0.5604225489549239, 0.9519921179919242, 0.7210217565314578, 0.7027780405625097, 0.8951799476966603, 0.9971095377070618, 0.9945729661212777, 0.9927311929110594, 0.9932492752544338, 0.8870653199031269, 0.5064793602693716, 0.6931007653235429, 0.9252081617340899, 0.7563569053634421, 0.6852045532141995, 0.9327706914669609, 0.6384272383814463, 0.8773656886691439, 0.8403208205625726, 0.5156392722098048, 0.5171476766361518, 0.5317202768570719, 0.8274161984403503, 0.975540375231441, 0.9034595818964481, 0.5054866374276028, 0.5130561085176792, 0.5763895381052595, 0.7174618539443132, 0.8372648129410794, 0.6732726738839729, 0.7763541896630157, 0.9755700473591562, 0.7139679374636941, 0.9555050494113588, 0.5346091770595658, 0.6761585180479435, 0.928066228570614, 0.6048030444580134, 0.951718303336399, 0.5926052113359075, 0.8716369200347085, 0.7835142491283187, 0.597184079447783, 0.5491353922869646, 0.9904956663916451, 0.6104791814164449, 0.5506316554467654, 0.6807964108147572, 0.6434868675407628, 0.86844259729751, 0.8401819345127586, 0.6767493616840252, 0.9889774105648805, 0.8235002920199829, 0.9343317644435387, 0.9922821273923059, 0.6810612736872554, 0.6648589343685269, 0.8074924920536399, 0.786046345669644, 0.7972022071305771, 0.6537993567126579, 0.8529019015394714, 0.6858965450656322, 0.884821419000841, 0.5230588014152548, 0.5603900971233504, 0.7620722542497724, 0.5821047927738383, 0.7439032930163012, 0.5356104814843314, 0.9616058096400069, 0.8008087388972742, 0.9461379148838109, 0.6072707206785006, 0.9271797078689464, 0.9199813104742046, 0.7010481356711842, 0.9116322424672194, 0.7940307766579445, 0.5755996107745671, 0.7511426223602727, 0.9402797394479936, 0.6267027334962322, 0.9490091870237212, 0.6686978071638441, 0.7734087981150425, 0.9917289889684553, 0.7131760506834361, 0.5114922946402216, 0.9627602796283627, 0.9109220628666944, 0.6221043935069042, 0.9481753286934422, 0.7440449050720342, 0.9572143836122253, 0.8744464147007068, 0.9185299439222383, 0.6847931423507089, 0.8042849172766027, 0.9449053544329284, 0.5935996482662386, 0.5908005954957537, 0.8884640856905925, 0.950562884784153, 0.7700608072505414, 0.9871785827514501, 0.8858679627287196, 0.5523557895250284, 0.9820670747564852, 0.6037661704354959, 0.6584396384655445, 0.9774700557753877, 0.6578532812738545, 0.9522951232828636, 0.7234431518590957, 0.6771009414790332, 0.9247448698645138, 0.5045035239390965, 0.5581833573678736, 0.9250682053520269, 0.9214627760889904, 0.6470699807732018, 0.7955363275319359, 0.7840201146967362, 0.8899043889158715, 0.8748710838894629, 0.5857315243312888, 0.941913439310079, 0.5657900614600967, 0.5064093450768337, 0.9636805237937989, 0.7881819336660951, 0.5982265232378567, 0.6765585947523501, 0.7980260899548373, 0.7806502645423641, 0.5279018270957223, 0.8457360092168367, 0.7124334664685524, 0.7853718606275257, 0.5664662322248908, 0.9907715056671234, 0.8008636722909435, 0.7491840987105098, 0.6179610299831348, 0.5661891287605916, 0.565947394278876, 0.961811296834189, 0.8801011973519626, 0.8861231043622696, 0.7425733962592316, 0.922447182311001, 0.7711375319129093, 0.7584396363104816, 0.9317210832964116, 0.7504666996811857, 0.9039047491360785, 0.741378548088927, 0.9764858758650137, 0.5587058613469308, 0.8672581933914747, 0.8471451486576933, 0.8298713950581971, 0.9340098610639236, 0.8097561202790962, 0.6207964876118747, 0.774570026818092, 0.6131893585104006, 0.7821307247882426, 0.5967597434630023, 0.788717702974226, 0.7405766800674056, 0.9541369771926269, 0.6726560482539226, 0.928262771688994, 0.9483444801755494, 0.9899503200127837, 0.5279797507868877, 0.6980669087682083, 0.9401020372342346, 0.9359196385188728, 0.6257774020779633, 0.6376031274298881, 0.6085417348581462, 0.5331841174786486, 0.8115652242358241, 0.9957542791361247, 0.8916790428491561, 0.7414738079192316, 0.9157206732181061, 0.5651134614727101, 0.5594535528022591, 0.6006178473435774, 0.583613410854853, 0.9917510141039747, 0.9030480802264975, 0.8579460733232189, 0.8220354666334597, 0.5813324678954025, 0.5523335863712615, 0.5210225336804255, 0.9275505881569703, 0.563451923204844, 0.7664527888762993, 0.8768378214441337, 0.5299883678174373, 0.5885826578458033, 0.6056449074370701, 0.9536500001114772, 0.6099481606275867, 0.9613313231223536, 0.8007031001346715, 0.8732981478476651, 0.7392700200237752, 0.9946809888304461, 0.5090983350763161, 0.8869387699582698, 0.7262339142459003, 0.9621433822894389, 0.5003340466188473, 0.6727209350823167, 0.8464424441992972, 0.6418642628240463, 0.6766021289298982, 0.6523437315684797, 0.5579311920516317, 0.988137548960069, 0.6812760918297815, 0.8156830467060359, 0.8894269618698611, 0.7875031819995015, 0.9625399436656841, 0.6074401805839205, 0.8726062458349573, 0.905516014058766, 0.9775758901362515, 0.7931016728563874, 0.9992275473652708, 0.8242330966746463, 0.513189384180392, 0.6485522417594156, 0.894851914257887, 0.8663516052414775, 0.6013701689546904, 0.6879861692498606, 0.8606540120024702, 0.9924922913362453, 0.551240544765824, 0.5327880874681082, 0.580816783872248, 0.9811232403277252, 0.618303707821787, 0.9138199354885893, 0.832346648606459, 0.7276971996456104, 0.9176071243987857, 0.814379210273336, 0.5643530087396689, 0.9851508878763492, 0.5235326445763535, 0.6506531728157658, 0.7630940844190142, 0.954425635190649, 0.5721045986379324, 0.6664270159209964, 0.7535988150480131, 0.7839662416042126, 0.7471547488981368, 0.8912938940655006, 0.7906385015983833, 0.5657830214919917, 0.9597648357567348, 0.6244465061200666, 0.7432582982520144, 0.9925105981674983, 0.8535938933710809, 0.90284649658585, 0.8307175756313561, 0.7050138619423391, 0.8049415567754441, 0.66918266306305, 0.9788920438487806, 0.6457148624975428, 0.6423379599900559, 0.9079685948522906, 0.8604620955999059, 0.8220277890415012, 0.7551985899831846, 0.5482851971593428, 0.646197332942903, 0.5799083035008259, 0.5766027927187571, 0.5580592026383391, 0.6462335192504063, 0.697403041744965, 0.9257885460032911, 0.9624970523182431, 0.9686911570624683, 0.9494745408728915, 0.6070707988111441, 0.6183005552988381, 0.5198262918911254, 0.806794881944283, 0.6724639579292493, 0.6767461091753546, 0.6824801246401326, 0.7898782238355389, 0.5058988772285258, 0.5495196781249791, 0.5581617165499857, 0.5047827322370251, 0.6186021938701045, 0.680712562004147, 0.9448573153562806, 0.9772257723797126, 0.9124613640328326, 0.9775282527710978, 0.5505012127061217, 0.9674991850591672, 0.8765355575867189, 0.7929616627625953, 0.5590310708817244, 0.9850319512671296, 0.7767823195031802, 0.5704677385368562, 0.8049179829222377, 0.713101570641425, 0.9996192887104116, 0.7315958134662657, 0.5214632601260973, 0.7843028184472961, 0.9325535580394353, 0.7532989444109328, 0.8037163994829264, 0.5318053863191977, 0.6477627888609994, 0.7632329267844478, 0.6657414631235319, 0.9992387541500918, 0.772001661937877, 0.5649378486830361, 0.8969727609434603, 0.8723177435873709, 0.7531411503006852, 0.749907597590419, 0.9045302857291352, 0.5400421554032143, 0.8392718290892269, 0.6779860584605464, 0.9953813994792717, 0.6941785813502048, 0.8917616528933163, 0.7626802150892265, 0.5983475069487028, 0.6575742325777412, 0.6541617869878467, 0.7681649186029547, 0.8694434701114115, 0.626275047872414, 0.980660769347125, 0.7844707801039044, 0.8031593880396628, 0.7420514644759991, 0.8876081015810995, 0.8976877023417174, 0.9632412390736271, 0.6022057230437091, 0.5666843110854691, 0.7364692105329209, 0.5806875955811943, 0.7571694996088378, 0.5517889289395885, 0.5075607183512036, 0.8188284594945181, 0.760421290406539, 0.6294622088370037, 0.6026146951952838, 0.9724641053321034, 0.514082806216208, 0.6118920828616365, 0.5057437203583552, 0.5155304665991004, 0.5047196493082795, 0.8208414527270654, 0.5228357980882985, 0.7285436403657795, 0.5210915133139837, 0.7361985844825242, 0.9979172868850801, 0.8012158497044521, 0.6242098823632061, 0.6940085411013396, 0.5831861188341492, 0.7276926800149439, 0.8947983422874985, 0.9428599519378029, 0.5225337022977365, 0.5321736360887546, 0.9193366130028906, 0.9451854530499884, 0.566873802300702, 0.5217355091795157, 0.5709509478412769, 0.9894171820907531, 0.8762303304299838, 0.5498809243826996, 0.6225165328219848, 0.8746630035617247, 0.7752870165861168, 0.9207026953651334, 0.7989902361924139, 0.6796317284271594, 0.9518438077870488, 0.6290128432488228, 0.9711990562205679, 0.7817951862551078, 0.6483865025710797, 0.6792754309381712, 0.8366798817085739, 0.6767533318307462, 0.5005716542526548, 0.91181058996329, 0.9549546723265337, 0.9330750902817349, 0.9277196310648665, 0.9261783880519326, 0.5782404777325807, 0.9552354547929032, 0.7821199293021971, 0.8809054885882885, 0.5721455283528427, 0.5269037372333236, 0.6436180424578153, 0.9585008144632943, 0.8127071678348852, 0.9983361907844853, 0.5998944668746429, 0.539451563448996, 0.9244945925903418, 0.7977740132127323, 0.535987410471565, 0.6986585664052885, 0.7368935394616103, 0.7718924633868577, 0.5347532863854679, 0.8991121393381807, 0.7238969214875748, 0.9655959624462047, 0.8196622462125007, 0.811102775629529, 0.6292495288690106, 0.7561069502616449, 0.7188545855404687, 0.8157785569109888, 0.6811831485035205, 0.8986693933330228, 0.5487920134399081, 0.7105793606636235, 0.7323033287528817, 0.6048779522020327, 0.8151001570952301, 0.6729488552762166, 0.5533575480946202, 0.5879629520995033, 0.5134342437726216, 0.979551136535673, 0.8683698905985734, 0.9565067313015813, 0.8427939134051416, 0.6198432666972775, 0.9292604670013618, 0.9415639680541497, 0.6320939505873424, 0.724851509849141, 0.7795459525802165, 0.7552963587135371, 0.5487148032142932, 0.7248664783988599, 0.811839275542876, 0.9167619749083555, 0.9440233356283174, 0.712548533283841, 0.7937133930453858, 0.9747522323286166, 0.8627322726388504, 0.6056202426164699, 0.9433185685795851, 0.5346378877661463, 0.7200986944370815, 0.552028909926901, 0.733851968055273, 0.8903917019965979, 0.7357573266355325, 0.7835278530327723, 0.549944614058617, 0.7984974444575734, 0.9588018014170294, 0.9912065159760516, 0.8000782777289722, 0.9547378728339848, 0.8753265650055012, 0.6434717469956133, 0.6537019592593766, 0.83591292752125, 0.5179682858310047, 0.6384122268437561, 0.9378001325579703, 0.9118332476391935, 0.6996628595039396, 0.5724347212188468, 0.7695134012225859, 0.6273808267715288, 0.768792063009428, 0.6568026639170793, 0.8692858236341592, 0.7064904127842804, 0.9544683330024121, 0.8132827971312917, 0.6908511838828321, 0.616264692397514, 0.6946056485316839, 0.8056189464609139, 0.9798680997276346, 0.9322937725820963, 0.6688059297205169, 0.5774495929532288, 0.7824905683691402, 0.993054852565709, 0.5788845595659575, 0.6567722707489928, 0.9037227877832377, 0.7749394501893756, 0.7216222486233443, 0.8792532166552236, 0.9325107215539061, 0.8278371914555489, 0.9743158461564463, 0.6431533303384231, 0.9710866054860656, 0.5739751415316034, 0.555083260483719, 0.7912747768838968, 0.7300066357851736, 0.7378770518126208, 0.538367897875397, 0.7336179185495837, 0.9769699812030761, 0.9239642702302286, 0.5996180930239237, 0.7727831242032399, 0.8847988744180959, 0.6478056046654096, 0.9428957685107382, 0.8706462392585177, 0.6602723778350452, 0.9783541788738486, 0.8772820382364155, 0.576787605827112, 0.924920638264777, 0.6458019087113054, 0.6846198965161847, 0.7956968331425165, 0.5500695424922927, 0.8859121231146718, 0.9794578319502014, 0.5317905000471601, 0.6831758460945692, 0.8599862241294065, 0.8915175032154827, 0.75303716862457, 0.9701232760197925, 0.5789809410381195, 0.876113035515921, 0.8459044369900457, 0.877156768997174, 0.6768472101723368, 0.5006148872608573, 0.8152738357847158, 0.9551235599531194, 0.5174206271962055, 0.8259189087696162, 0.5038810245558669, 0.5768711032343629, 0.7010956066635905, 0.686625689007073, 0.7706507251995833, 0.5373708738637697, 0.8354270391144702, 0.541771793271321, 0.6647297365533651, 0.9103346547754847, 0.763789364076237, 0.6028293922117361, 0.9800285723280736, 0.883553204837316, 0.8220658610639373, 0.8974822587466421, 0.7548522336046807, 0.9966544015784968, 0.9285562083034566, 0.669236557975798, 0.7687655024649074, 0.8319013874862959, 0.9502946128359635, 0.6887911836093265, 0.5097076985811835, 0.6222832346628039, 0.5071903819168898, 0.5985622679385434, 0.988064591769644, 0.5144156092646739, 0.97725406852124, 0.5173398496807293, 0.8715472150682013, 0.957259752704801, 0.7262118452254303, 0.8265933146634716, 0.6235814355095217, 0.7601906628461319, 0.9216760403081727, 0.737775737993474, 0.9324184618222313, 0.7748634876092941, 0.8208714370076823, 0.5756890995656381, 0.7923858960959143, 0.9698532289890902, 0.6488893373498634, 0.7004500118914012, 0.5829464074270658, 0.6161965539014306, 0.961359397040314, 0.8314592804224454, 0.8358247027388299, 0.8116798752424621, 0.9992482216736132, 0.7700065010171968, 0.6592379920379043, 0.9330272705658698, 0.7605585881103366, 0.6195569737033362, 0.7038008296840998, 0.5546809616599924, 0.5777779991905798, 0.9062541342650116, 0.676830092223875, 0.6215811091169365, 0.5386368641115853, 0.9197691169835551, 0.7066890566981668, 0.8377626000400418, 0.5622058744181266, 0.9374644689572431, 0.5844255893115059, 0.5545629061370267, 0.7660861040229933, 0.6224835297382323, 0.7308510406708597, 0.7998404998746025, 0.8896490559292057, 0.7023989441179459, 0.6166591516959921, 0.7441336352519994, 0.7498964407395345, 0.7692079115183615, 0.6227469451492634, 0.8015598634055833, 0.5112273522531172, 0.9361029966554366, 0.6758979127917635, 0.535729258160695, 0.5899108425996198, 0.8805118417217372, 0.6074516798985194, 0.6829882522460454, 0.8582832095284219, 0.5275923949413331, 0.5780173720448356, 0.5192594191171341, 0.8162099208470814, 0.8996168734341212, 0.826103582523156, 0.894670845382969, 0.6592157094371356, 0.5033296010146902, 0.621168952033226, 0.8456242397337432, 0.7604035376465667, 0.8965223225338179, 0.8857637289281747, 0.6307263563312049, 0.5540597334030588, 0.509148945463523, 0.5530106984680272, 0.9841761707303527, 0.7302593450315717, 0.8960036737057493, 0.5382359775258376, 0.9336633628578519, 0.6406796461062578, 0.5439009525267304, 0.5517624780848829, 0.8511510003385659, 0.6966273723301695, 0.9159189592609136, 0.7197023231176176, 0.7173661630417985, 0.5707287949381608, 0.7915786345768352, 0.5741597108844145, 0.6685104734372169, 0.9272158765435755, 0.7891427835905938, 0.6686384404176073, 0.9702395665258574, 0.6985766550484469, 0.6644234498401044, 0.6479277983362606, 0.9710826309208256, 0.8836282744886195, 0.9908796878309366, 0.5273017928891937, 0.7521043737385705, 0.7164323233035237, 0.9314951432672495, 0.6843480162627047, 0.8593843499091711, 0.6016785932424902, 0.6421920801466532, 0.9416821891686011, 0.8525550990478439, 0.872369987035613, 0.7647469279185923, 0.5789865359528703, 0.8370454507216094, 0.8890421287755641, 0.8354230379634984, 0.5230432391172166, 0.6558756464775831, 0.952484503782772, 0.6328258446563186, 0.7779946823688452, 0.5086051903816664, 0.8317599548367163, 0.5710946075349164, 0.5656684196133689, 0.8473201115425479, 0.9052449932093634, 0.9553416533061818, 0.8675786005897066, 0.5716948189611448, 0.9654236376629206, 0.8777144046368182, 0.5830632219478717, 0.8217929649058695, 0.8863190127557159, 0.7002545790514507, 0.8535478386235178, 0.8847283655144704, 0.88663350431886, 0.9358271982981801, 0.7291940984044056, 0.9413020136738823, 0.7194998020544681, 0.5049399081680418, 0.5434273060667624, 0.9493537308026794, 0.6231349805287272, 0.8175875066627895, 0.9262885935413809, 0.9688227530582518, 0.9790057723280965, 0.7495987390446226, 0.9997510199181218, 0.6798860085656091, 0.5839430056921742, 0.9265231869627475, 0.5329632010853367, 0.915014596187243, 0.866842826161212, 0.8575188962739653, 0.5079545412790729, 0.7640316375150138, 0.9278134045854737, 0.88745713541256, 0.6648286610787966, 0.5171348012473794, 0.945798921340235, 0.6661466937238096, 0.9828059266568075, 0.6064534791902798, 0.9890227947611252, 0.6608322168554623, 0.7245315065147139, 0.7648408912463203, 0.5176752441844967, 0.691738123839263, 0.5479396904467586, 0.6580877371765235, 0.5423272710306077, 0.6711109524472615, 0.8506678643731027, 0.7091971017421412, 0.688462312608943, 0.8889990675505135, 0.8507127427943513, 0.8744814041410565, 0.9840179801042013, 0.7099761791702321, 0.6687644769842267, 0.7648635590436876, 0.5548322039263027, 0.9382716271984171, 0.6564022843868926, 0.9662509921680287, 0.523447544277192, 0.8627880465520124, 0.7925895559531082, 0.8944578996766827, 0.5879722959332814, 0.7724702612158165, 0.7953186773242872, 0.8436323828966135, 0.8941139660470865, 0.9974353491577399, 0.9940209000713875, 0.8478823714165591, 0.8867335559063336, 0.6217148858293401, 0.8152183815361329, 0.9856879803514818, 0.6939915518973344, 0.9863095673433522, 0.9152159086462519, 0.670519616754158, 0.9351998646806226, 0.7055040113586253, 0.8495347705961392, 0.9692021640918198, 0.8663048970067282, 0.801834525950202, 0.553969223440522, 0.9043468286508018, 0.7466314233944966, 0.5634835775504135, 0.528816556806367, 0.7917844947010793, 0.5607514967027812, 0.616224366454159, 0.8964855146282296, 0.7559210244772654, 0.8519749110396295, 0.5259765643732507, 0.9808439066751743, 0.8502282537043285, 0.9218066993292907, 0.8313929752651075, 0.6667570963951146, 0.9299421577449275, 0.606469469771374, 0.8054509608474305, 0.5230430604722942, 0.6052435183385858, 0.7871153199348027, 0.5988994532910843, 0.6618128776784487, 0.9130060612064611, 0.6809879893156938, 0.727512276661035, 0.593351750331724, 0.6964328149192353, 0.6166076770783843, 0.5062183924357617, 0.7850660711530002, 0.6094923313795944, 0.7394318722728472, 0.8144208873744585, 0.6995668521177444, 0.6523175034785511, 0.6664861903605404, 0.8116099497859548, 0.6755206812336911, 0.8310426240181277, 0.7403901244177384, 0.5274396634759944, 0.6062548562208945, 0.6873155328680645, 0.5994449553779534, 0.7184677781318325, 0.8388038776018766, 0.8000704077757816, 0.6336119611570595, 0.6156167168838844, 0.6267566625382521, 0.9303143991000994, 0.7012011545804252, 0.821881514451358, 0.9833199895807574, 0.5868150715706644, 0.751354831665191, 0.8079045245967917, 0.6025314398484769, 0.587513009406659, 0.5217979110524913, 0.9916391126761435, 0.7709456997554998, 0.7084870778850748, 0.8850388565562655, 0.542060560987567, 0.8194766115072721, 0.5913038551509784, 0.7466074952094137, 0.863378471343952, 0.8469985466746044, 0.5767072374961891, 0.7442147934478145, 0.7241662526295538, 0.6271865283048531, 0.7555594441835225, 0.6474794385714921, 0.5624404461904198, 0.7289498268388719, 0.5995607665555465, 0.9160354086261333, 0.7188988853103679, 0.7193907545648417, 0.581874356254585, 0.9752983372131271, 0.7633529851216388, 0.6033749461952564, 0.9257598193021381, 0.7409839771044621, 0.7824512155339267, 0.7417940776900758, 0.6374551903781436, 0.8391025328008092, 0.5708073096723074, 0.6996037389767724, 0.9601943815789633, 0.5360895874426063, 0.8299102410351371, 0.8148974628323944, 0.6977849900761404, 0.6894844655839223, 0.8285486907669348, 0.681344004908156, 0.6728382923621974, 0.9612828678409939, 0.8760466045709272, 0.5068801493925205, 0.938429823268119, 0.9446185139401254, 0.6007865601247013, 0.5867448131486079, 0.6845075387269123, 0.7496309857140682, 0.5118368611170264, 0.7789395682245996, 0.5593327143118834, 0.7145121543767672, 0.6890140055520662, 0.5402799960922466, 0.8643621380015762, 0.8793403333105683, 0.697246744250883, 0.8934365805503954, 0.9436732804709249, 0.5130834570903738, 0.9037967703062694, 0.8082626356029221, 0.6732110330655541, 0.9906355367764372, 0.5539472241106285, 0.6067436217289472, 0.6373142744789957, 0.8982012577334741, 0.5324382833994097, 0.5997437571868712, 0.9624179822731773, 0.5753059525356093, 0.7011908120027808, 0.5122674688476051, 0.919082719048075, 0.931126816248645, 0.5669455155059153, 0.8784723110759936, 0.6526420553264896, 0.8358040309157759, 0.5470128405190997, 0.6988063409760369, 0.7730610641271134, 0.6366557334494722, 0.8014438083298125, 0.9076754806874145, 0.8159098470757395, 0.9440626386171056, 0.87349690837878, 0.7399586732138339, 0.8275076202010355, 0.8648924739919218, 0.6953106392530568, 0.5005012718553712, 0.7111967261598684, 0.6701061556926595, 0.941167917513297, 0.6574653807636153, 0.6388049648925676, 0.5902959103903169, 0.8897674081013126, 0.9957943035020038, 0.8479371393701368, 0.5707644390756754, 0.8730218110290542, 0.7687347588462073, 0.7384044082469965, 0.9731981274736812, 0.5518927168417638, 0.7253501754062158, 0.7319558232479935, 0.5615932854761991, 0.806750981575723, 0.6898976834757324, 0.9057276047348245, 0.9370581803558522, 0.9670567847517365, 0.7517427079887217, 0.6754023790772824, 0.618431404820301, 0.9165104501617904, 0.933134281047152, 0.5550545094591638, 0.8748794836823472, 0.5222927246474798, 0.5494834662678927, 0.8323004454341432, 0.8722671417445247, 0.5802402070372484, 0.5083375922509223, 0.5029671027626001, 0.5165770099016579, 0.8561682215588275, 0.5067826623251619, 0.998828783948907, 0.7619753160414053, 0.8258009845117639, 0.9417841473513378, 0.8468636456489089, 0.7617148829527047, 0.8556768853662674, 0.8295945109504796, 0.8342281327188702, 0.7739586043903472, 0.7303006885648429, 0.6641753363869185, 0.905261604692788, 0.6907459232109829, 0.5648729819946208, 0.8252341127136463, 0.8314483742928538, 0.632505306099403, 0.87886053631474, 0.9933006647622102, 0.636255507920217, 0.9839543344419874, 0.661622654410976, 0.5755515102229765, 0.5064728562162533, 0.7173193391077217, 0.7359073289536624, 0.5733193042596674, 0.6953262686349415, 0.7095743606286039, 0.6779839034496069, 0.8429946437484248, 0.505220421414552, 0.9225656783092049, 0.8887310527528387, 0.6864200327309277, 0.6886631329614512, 0.8530209289329288, 0.7054775243854263, 0.9205134693668877, 0.723881432663753, 0.6690333705863356, 0.7927696284874621, 0.8502790455017186, 0.8713691955558782, 0.9622323969393773, 0.6375655978039892, 0.9740918491097315, 0.7388124925753983, 0.7922171117552055, 0.8450510502471864, 0.937040480524606, 0.8634276477099362, 0.7624446346962344, 0.92816202668599, 0.5787082760569014, 0.8847769173710325, 0.5582434143378595, 0.8806333519274276, 0.5840660838095539, 0.9814477278827944, 0.7663237961679881, 0.8171331353482895, 0.8937691248505318, 0.9328153945267935, 0.6422251495053445, 0.9709303670080398, 0.6906693834306036, 0.8741861881175623, 0.7644334108995702, 0.6532869845956499, 0.9702261223039613, 0.8148008821132144, 0.7933937031376004, 0.61123826725035, 0.7359229254969089, 0.5795681810536344, 0.7952931482003645, 0.695778953984013, 0.7592951942665874, 0.7769601070488475, 0.5578035568540384, 0.9448082118605956, 0.9008532583689193, 0.9926715180560678, 0.6241284649107394, 0.720881592147268, 0.9249609854422594, 0.5933695651346513, 0.8832043389023333, 0.920085635723094, 0.8572892370676245, 0.6730625617789312, 0.7912853042016017, 0.6913915904857668, 0.9191707659586137, 0.5614763642641836, 0.9468760265795615, 0.8650432532150893, 0.8879152800482235, 0.839800644606358, 0.850533021008318, 0.8005613972019593, 0.9962175395974524, 0.5314893018065037, 0.5634842135238829, 0.7421350664148998, 0.9882925867610386, 0.8599582155481529, 0.7187895591084653, 0.5997992330381854, 0.6487334430681497, 0.9498651887732859, 0.8629219274746096, 0.7770133157562706, 0.9020452847360205, 0.7642224477678051, 0.8826738169291408, 0.7233848488625398, 0.8571066932650289, 0.9043772457821424, 0.8077877615132816, 0.8090858040083876, 0.7401037712658457, 0.6772350644473033, 0.8451368196602869, 0.5312052472908617, 0.5070237196243244, 0.9464005095069843, 0.7403555216457895, 0.8521437206642015, 0.7584129796746655, 0.8573838476012206, 0.5284028601267214, 0.6283418220752308, 0.8534209840733866, 0.5302911919123561, 0.944077851035128, 0.889684836853984, 0.7092000982963058, 0.5099258760549674, 0.6355662591305831, 0.5008407411185365, 0.9132769777647175, 0.8713121800297795, 0.5980317180167491, 0.7771405851391398, 0.654856181497429, 0.7869807905771362, 0.6925173398925799, 0.5058855900901975, 0.644355007119934, 0.654440694797611, 0.7686792712945765, 0.8103871663086029, 0.6555319895541867, 0.8048831901210638, 0.679607507229099, 0.6291326059664137, 0.9476935587926882, 0.7491161259819326, 0.6437865926449049, 0.6330294205517881, 0.6720856463334381, 0.7211497455358138, 0.9063611666036437, 0.6796627403456887, 0.9970844115818979, 0.9578583279487338, 0.9197544783037657, 0.6124892012833916, 0.6540680306088229, 0.5783931290650275, 0.9534258618403483, 0.7917104378751827, 0.6136249526542916, 0.5538605307184246, 0.7197996113558169, 0.884419736786336, 0.9710101454120266, 0.5731563134144386, 0.5846943033662926, 0.8622330309047235, 0.7037301332676685, 0.6421416643030308, 0.7646877852465002, 0.9598449070245818, 0.6807979867006764, 0.9413746000141667, 0.5869735517899239, 0.550287054641609, 0.7816262182594251, 0.9546780147144984, 0.8737694321842413, 0.7280212475684145, 0.9934417177671657, 0.5982371766638581, 0.5753804049673696, 0.6352365199658221, 0.7482856907860188, 0.6486115811181166, 0.8650869868012183, 0.8332179526202892, 0.8171898413067782, 0.8184590719790465, 0.517787830203357, 0.9897769967409865, 0.5281262468772766, 0.591333204893439, 0.9344986514082191, 0.6146044151895691, 0.6912735958146647, 0.8897620459530668, 0.8473897311251091, 0.6570310870711379, 0.659739498550892, 0.8795526366724393, 0.9088140588361329, 0.7113995259523115, 0.5305463334922031, 0.8867510283686575, 0.6342660046629928, 0.7206930169438894, 0.8603504415736539, 0.5655607149445869, 0.9382019105535859, 0.9519039327714158, 0.9146106465827993, 0.9613702983522007, 0.9957393247761199, 0.5629893293594598, 0.5180406889553227, 0.58894378873195, 0.7607183354138103, 0.8353766406572782, 0.9437017182361298, 0.7668800395922901, 0.9988583446155227, 0.8454200280405377, 0.9707737401492975, 0.6016537824392537, 0.7639874289311723, 0.6765680113728837, 0.8926284769990893, 0.5902231800438773, 0.8093828477831292, 0.7584253673781906, 0.502531954482236, 0.7728360235765551, 0.5622186500257984, 0.7162569077163321, 0.6523487289564693, 0.9305667571663442, 0.839700068216908, 0.6165727325169464, 0.9554546531581056, 0.9450686879063841, 0.9895204871041984, 0.5077703422800728, 0.5442107790790314, 0.7262094070610174, 0.6714961174464573, 0.8423962706580992, 0.6400674772436756, 0.9130445877573607, 0.7692408052931268, 0.5658798263514575, 0.6146042551521748, 0.5967444232173278, 0.8528447934566661, 0.813382862070578, 0.6396245586000191, 0.6863299298290646, 0.9357608038427698, 0.5511422535035044, 0.7851768154476882, 0.919485161696673, 0.6818644473290447, 0.6196314694332474, 0.6627124765420284, 0.920636423612209, 0.7830187671273432, 0.8439521590635225, 0.8601773295707047, 0.8168448729183343, 0.7622948267865448, 0.9364983634101601, 0.893628340852868, 0.7211903260489669, 0.9993241977304496, 0.5146189033471993, 0.643764505058205, 0.6277595539740154, 0.6518882763896443, 0.7969564661302407, 0.9941466264038397, 0.9530726047119334, 0.6893039408967396, 0.7881919412924608, 0.658111773079399, 0.7426979705930343, 0.9983285787629628, 0.9460384572293272, 0.7150486906061002, 0.9557850963377492, 0.7831745066350208, 0.8226277856056722, 0.6781930828989833, 0.5825911257075609, 0.7740419796425997, 0.9089086106772599, 0.595879306780948, 0.6707576417636646, 0.8110865045115419, 0.5803327926251644, 0.5323058408387364, 0.5051087176328604, 0.707734713080052, 0.5386407182692903, 0.8910652137166953, 0.7126802158286651, 0.5433687812322594, 0.5018745241954787, 0.7694806876289015, 0.7981159310034762, 0.8969196355695499, 0.7084647086958638, 0.7461269237640017, 0.7191441133790801, 0.7413722195014105, 0.7739520541633849, 0.670704057873408, 0.8295935219129423, 0.8591514915765537, 0.8872236466333829, 0.7569514409935427, 0.7125492641037297, 0.8746675572309257, 0.6097815542845517, 0.6765523381551379, 0.8412597874518877, 0.8581723792312403, 0.6123673395822274, 0.6868196356325542, 0.861086519117543, 0.8391342428585128, 0.6908799238828612, 0.5885794356465022, 0.6344592673429985, 0.7365008217675557, 0.5223016743936955, 0.6822028110488776, 0.7025145665313706, 0.7953475769060988, 0.6176721509382002, 0.6068000075074672, 0.9790473456865973, 0.7960178306328647, 0.9516856674739929, 0.8281072229489108, 0.971260986964213, 0.5287734525227499, 0.6681462587293912, 0.5961841276773381, 0.5717107242816939, 0.725651168850138, 0.8048470137597754, 0.8623791625327901, 0.8901020457324892, 0.5539434956997745, 0.7644258661511412, 0.9907850993457354, 0.5890994201344816, 0.5389786632047775, 0.8831604444945866, 0.5710796409407479, 0.8903613332505087, 0.590197800308118, 0.93610096152306, 0.5914741159338333, 0.7580620159496467, 0.9879129591976358, 0.5638316674818276, 0.6971645163026001, 0.9157403823327295, 0.5159347708672313, 0.7282929566632568, 0.9626149503629635, 0.9614678570857313, 0.8184486898011121, 0.6105559381335949, 0.8138727838538911, 0.9894043137304087, 0.8304285424221853, 0.8858942251953488, 0.9608698984580106, 0.6529687314823283, 0.975038899002479, 0.68271500701341, 0.8576527050910261, 0.7026777935606758, 0.7555299795260448, 0.8864630017715063, 0.5178901847427468, 0.8162419736861667, 0.7910273627621492, 0.8382278829920984, 0.6823048559120939, 0.6250492015790496, 0.5150366433166925, 0.5395569598052601, 0.6314152327412933, 0.5874514774903047, 0.8448629628556645, 0.9758604167860807, 0.8365429101938827, 0.7340766002217461, 0.71732149278859, 0.6308993460773731, 0.8375247779416083, 0.804280756048452, 0.9079076381775002, 0.9484432763237032, 0.7061787987338037, 0.617637824333382, 0.9940656791032132, 0.6082102003097054, 0.6634424766260685, 0.5954587458011575, 0.5593745929032569, 0.5470564257950765, 0.755184647142616, 0.9558742671081687, 0.8050338495098656, 0.7033488490660791, 0.6852905135611809, 0.893198549553617, 0.976614774930731, 0.5961934744851001, 0.5816652849785919, 0.6204889048023146, 0.6274539408024142, 0.7794293698883674, 0.5774518689155621, 0.5559719277823751, 0.8123456178144741, 0.6918286612477, 0.7627340437624688, 0.6308441544583082, 0.8816421366286072, 0.8534996259323487, 0.8479555483425678, 0.5333034108562642, 0.6930621523235747, 0.9657083955949576, 0.8332951255079853, 0.6683770541261206, 0.765580523656086, 0.8266388091576152, 0.6546107129355554, 0.7773490930509899, 0.7665114935862158, 0.786925907588901, 0.8171870252960876, 0.8550347787549593, 0.5660431483758255, 0.577128485282741, 0.7888254639564765, 0.6003241457610284, 0.9232994967474686, 0.7205777451569276, 0.7111613614027803, 0.5896578439378544, 0.520909526485614, 0.6590392687286522, 0.8502195546558255, 0.9718742460292282, 0.6543753918815862, 0.7670323298386041, 0.7043748972071103, 0.6172193656577059, 0.9924829165825588, 0.8716875744369543, 0.6955092363607689, 0.6828677737002506, 0.8935115294104117, 0.7515710146530257, 0.9814484282991327, 0.7027483154504917, 0.5586757926718109, 0.5929772205755599, 0.9989290156684938, 0.6381480399038129, 0.9022753974283866, 0.8801877120035351, 0.7270354092918199, 0.879784755689303, 0.5248887814568387, 0.7560966695846529, 0.5515444046424813, 0.7655017262685844, 0.5476880942754467, 0.859974131169359, 0.6669908295688093, 0.5284919457843208, 0.8422512011284944, 0.5324611289553172, 0.7440974936575775, 0.5997592050329399, 0.5823392398615229, 0.965301837638041, 0.9226128685250139, 0.6115866717001902, 0.6442479595869978, 0.5905063579347873, 0.5462734711018313, 0.7706819640269218, 0.8592032034373269, 0.8542092757945493, 0.8842370786851819, 0.5978592818995834, 0.5792933044598266, 0.7280359539926973, 0.6485807005096262, 0.9406361768803883, 0.5569570812670852, 0.5547393937225285, 0.6411872097711029, 0.867345646530516, 0.6264005106848127, 0.6280263135000299, 0.9185990745352274, 0.8990756530370541, 0.9699035644579365, 0.9801986218815105, 0.8871149705441761, 0.8097635451448836, 0.5579287913887929, 0.7991293960593231, 0.5895460180338019, 0.845479992065257, 0.6582907630108463, 0.6402267366041425, 0.5268546802338627, 0.7268965101910234, 0.5955855925409237, 0.7341930295975605, 0.6580103379516195, 0.7198582518837597, 0.954186307039717, 0.7241600293714958, 0.683126550022338, 0.6809183935058718, 0.5759474810966082, 0.9948609371250265, 0.7713460547330684, 0.6684620852467623, 0.5413906947551321, 0.9682808597424953, 0.918950409547638, 0.5768330648828929, 0.7941447245164792, 0.8143178428310822, 0.6851826758486875, 0.7786981267767683, 0.7662340642566376, 0.7969340822355968, 0.7787961476640247, 0.6341574961577872, 0.9103510364030409, 0.6747626723191962, 0.9559186822082741, 0.8730980632027262, 0.5451562095609959, 0.6033475551958603, 0.8777887339875441, 0.8728758146930004, 0.5497007013000605, 0.7251282244995433, 0.5040524999733649, 0.6608917668353038, 0.6773198198080721, 0.6692069018346605, 0.7203692779029556, 0.7874575890582518, 0.7592308863904504, 0.9774700359006292, 0.7363238495131337, 0.9865781846178792, 0.681695763041873, 0.5975148427194865, 0.6161895850976744, 0.936829717205303, 0.9546666475888177, 0.6317777335158117, 0.7510501569820487, 0.7543645415099188, 0.9936499960664804, 0.606938337723024, 0.5067754010016399, 0.6783377915570044, 0.6953959767619018, 0.7951177601922738, 0.5522969832617188, 0.8953457416048343, 0.7239917618196786, 0.6580310703142999, 0.8153017502274758, 0.9289181286712413, 0.5652690442222004, 0.6943290834241733, 0.6701013883717954, 0.5032891790132902, 0.6224803798983384, 0.9109622878475121, 0.5482326193757199, 0.668340220962744, 0.682701296552709, 0.6800052647480042, 0.7913751422465725, 0.5300569927962736, 0.7101032116213717, 0.8930603235579806, 0.6716209030914254, 0.829654435102061, 0.6379800742359898, 0.8533701789788213, 0.792662006701575, 0.5239810316084659, 0.9148554814694382, 0.7647526849592622, 0.8229129717515745, 0.5032384973768043, 0.5595621085951524, 0.9202045436174305, 0.9630627961243318, 0.6904446225572983, 0.8015531544574943, 0.7402751822456612, 0.7980683040694866, 0.6755561542498391, 0.9931234263692015, 0.7000317906782689, 0.8950672951527392, 0.9077358410013803, 0.8685597377401841, 0.8076452934160996, 0.5993256982628218, 0.976345677779774, 0.5893157893544139, 0.6733557399694619, 0.9846580540866005, 0.965875482505713, 0.9029716117615434, 0.8880799536039677, 0.8555949878591786, 0.9880639225749948, 0.6807895101903167, 0.5551738352837153, 0.9520042975412751, 0.8758257729017999, 0.589472185025171, 0.8063005784189317, 0.8263045643763502, 0.9790813157978423, 0.5596996215139765, 0.5782088399525087, 0.5338871765630614, 0.7935920311484027, 0.5313002101001705, 0.9539501904322811, 0.9042930726624835, 0.7667200689979595, 0.6549224110990342, 0.6568248429814955, 0.8169364587715559, 0.6994677925646805, 0.5404193699523205, 0.7479122638731048, 0.5762800024315651, 0.6124099704114778, 0.6079646329771973, 0.8104936770324096, 0.5876357479059515, 0.5579696957543439, 0.6006133950746909, 0.6865593257169075, 0.8672142967885866, 0.6662745186689711, 0.5417131258926555, 0.6971510141352053, 0.9481320096011292, 0.9106055903036524, 0.8328129562120958, 0.9837658051807818, 0.5484963941809864, 0.7999732120622114, 0.53562573721386, 0.9227011293124343, 0.8862805617662198, 0.807327042097804, 0.7650621403403182, 0.6636265786875577, 0.809354017073399, 0.9636835733926341, 0.5881385404811758, 0.5353214651325484, 0.5473188162204641, 0.6483535252981323, 0.634356890332475, 0.698656818193814, 0.6850534619896622, 0.6714337420286389, 0.7630434370594625, 0.6143068500900615, 0.6476296784176783, 0.8594045730514903, 0.8941542688778378, 0.6308806412804822, 0.5574312594086266, 0.7557440252155199, 0.5143127176311086, 0.5161711258566588, 0.7503177665295357, 0.8074482707286046, 0.5224699739228751, 0.6734836567938073, 0.5497505461983798, 0.7942573493566751, 0.5563459768461325, 0.7569367692227407, 0.9243738628594347, 0.5047943957949808, 0.708467583604506, 0.647696597349941, 0.5614156658153955, 0.7595411166654724, 0.7226701660464495, 0.6841198705833222, 0.5986266103335209, 0.5342631899102623, 0.7235420369116964, 0.6488750481770746, 0.5042097867805342, 0.5846157207516012, 0.778331113952127, 0.7552153954511074, 0.8916344808006926, 0.5529962873612979, 0.6456351359149453, 0.5304062679223758, 0.5844411193045438, 0.6588028342871828, 0.8092184885703795, 0.5980595673380823, 0.7858133796361277, 0.5122065433695102, 0.6033259699368165, 0.9361742910650894, 0.6767127016902436, 0.9797914557557199, 0.9009032522210791, 0.9114779512367635, 0.6324208087940403, 0.899016220429848, 0.7631197265638562, 0.7345673232251007, 0.7514604430097667, 0.9373212347654936, 0.864958819546644, 0.5615152703072954, 0.5329916215958509, 0.614703550773219, 0.6749647543249628, 0.7706351450404274, 0.8425810941396715, 0.6118481364464687, 0.9367096956108814, 0.8539584567440838, 0.6928705098778953, 0.6570407105155469, 0.5142019024188644, 0.6665590455912682, 0.6351927498864978, 0.7478483068718087, 0.51143446549158, 0.5192542660948275, 0.8315121872251844, 0.7126882569938242, 0.9490118956767143, 0.9021531958593664, 0.7821204147715173, 0.6058493430116443, 0.9709565544317358, 0.7248604340273423, 0.9874570415528191, 0.556874377460862, 0.5754636896904841, 0.5559008065588344, 0.5413869976844421, 0.7509936828351618, 0.7433365218872415, 0.6913773650865322, 0.7204919345476544, 0.8158221571907053, 0.6160564082255711, 0.8187220043256616, 0.635832524586976, 0.7861107464008086, 0.7967931657028506, 0.9218425463182032, 0.6966715543924987, 0.7518069269921613, 0.6123317588929886, 0.7024588502780287, 0.8708016280642622, 0.880460457248599, 0.9371136669027862, 0.6629765399738357, 0.7532648371380856, 0.6379619446719982, 0.9494061577884412, 0.5206117009529929, 0.6797759887454605, 0.7240136358543733, 0.5077340951746394, 0.9755922063421669, 0.8470301051636655, 0.7861699935825381, 0.7174497541858869, 0.7577246555378848, 0.6384770902176712, 0.9013012937483927, 0.7991337472594318, 0.8280112484560723, 0.7232396308056521, 0.9235977551589145, 0.6516521499841392, 0.8043129587816837, 0.5999558476522724, 0.8267519271873519, 0.990728876736876, 0.9072773061593904, 0.5310374695435343, 0.5488719064832401, 0.7982289770610388, 0.7393021278372223, 0.5565962710467944, 0.7562798666581655, 0.8951130116635031, 0.7631542458973758, 0.9803028193516401, 0.6616056304679694, 0.6346721844051126, 0.528149191060198, 0.6186446871710513, 0.8058477389301222, 0.9355941878826337, 0.834153640481441, 0.8802145237466349, 0.5845178468898975, 0.5505816253454323, 0.811605678428462, 0.554526174782384, 0.924903356301182, 0.93271978685172, 0.7362875348859899, 0.5081223742595542, 0.8913051107172993, 0.7005291819015206, 0.5871646946430022, 0.8472767168280648, 0.5238663115465539, 0.842757365555718, 0.6797649221397115, 0.5236198193958348, 0.8270641735640731, 0.7932376748570864, 0.8721944479591557, 0.6072242567226669, 0.8439751210290255, 0.7397811321177614, 0.983550601223389, 0.5701150035972862, 0.9277100180010209, 0.7228873068494726, 0.9364203609816732, 0.7890762677587762, 0.7396136855737128, 0.7008710298487368, 0.9960857222854602, 0.7742683066944286, 0.6159986462770717, 0.6820604849503579, 0.7846311736002936, 0.9215279016879013, 0.7639592650779683, 0.7340317112253032, 0.7113921943945316, 0.9826087428810276, 0.9603566570248885, 0.7371392508140542, 0.6333927464233287, 0.9788601091507236, 0.573432303500718, 0.814527363241339, 0.6317785182296953, 0.8053562274431751, 0.7177438381437349, 0.85959605587284, 0.6592589086584346, 0.5307121708575417, 0.6390905073399846, 0.6351888452583325, 0.5179391278628224, 0.7677872539342707, 0.671951201979016, 0.8330319864347285, 0.5209562897000382, 0.6050702163174149, 0.5312451286033029, 0.5987624314398897, 0.626536245755938, 0.9880992483210302, 0.5655227087955783, 0.8342042865742145, 0.9311828495434462, 0.6395771334935403, 0.6228811518248385, 0.7840783175123449, 0.7503981334201701, 0.9925689170830476, 0.5525795235786349, 0.6496905038381987, 0.6479579440311422, 0.5154824292221645, 0.8976703100437828, 0.9274842244559869, 0.5218984018344283, 0.8198520734884127, 0.7492740107982465, 0.5857190818524693, 0.9384804608537127, 0.5892413960034875, 0.7490957747676481, 0.6911808632606512, 0.9585253193088908, 0.8997195908938558, 0.7863659294633989, 0.9786173869269559, 0.7257276418824082, 0.6702221122967398, 0.6688038472300656, 0.6265260179347072, 0.5307412309322739, 0.5328848972296139, 0.9474809486698228, 0.8114389390973782, 0.6824428801382538, 0.8538133541968627, 0.7683841748433882, 0.9283149118606144, 0.7566312665038972, 0.6596170379432564, 0.9235931303133086, 0.6265441443869528, 0.7072877860566407, 0.9752375666554276, 0.9070120956369696, 0.5881979617963363, 0.7414731788348659, 0.7600868840291941, 0.720244840584288, 0.8787733614643476, 0.7814666672247269, 0.7163062168822787, 0.9963279148304868, 0.5053487412907974, 0.7884746840886425, 0.5768026107126365, 0.8814014761506002, 0.6837407572654164, 0.7809835080633161, 0.9482634257091583, 0.5932328619719973, 0.6644178263652292, 0.8996921546762218, 0.9108038631968625, 0.540126599962768, 0.898824875027296, 0.8141873145477028, 0.8210038986916646, 0.7919401276597233, 0.6215541038614769, 0.9169953505579098, 0.8494592918544056, 0.8232566296928578, 0.7477559512553729, 0.8199891714565206, 0.7588257942595327, 0.6083841809116257, 0.9257335861687093, 0.893788685183236, 0.9251553648711581, 0.606407047187626, 0.71180624943982, 0.7835131253967467, 0.8752669727848457, 0.655405805022327, 0.7798665075607936, 0.6195954774329346, 0.7928158100314009, 0.7460652813548747, 0.8195781391940866, 0.779123707205761, 0.8438000054153116, 0.6256917770522006, 0.6514482115337973, 0.9295677370248687, 0.7908983873250557, 0.6755511098150295, 0.7292774592038187, 0.7390583215138978, 0.8118632840215496, 0.914416713169109, 0.9672751771911007, 0.6586194467491004, 0.519373422299988, 0.8232678916847431, 0.7682598940246649, 0.8755777086301983, 0.9873973826276431, 0.5618389067927388, 0.8117189594675369, 0.9781328281078461, 0.7552344264737931, 0.9029821695851912, 0.8133229082340121, 0.5165725426746758, 0.5540683242728075, 0.5368721587374794, 0.5957392750207908, 0.7976736504063602, 0.8276508702212888, 0.8153237715494894, 0.9257510233142368, 0.6438603913109151, 0.948925660667387, 0.6173643447079695, 0.6462135517300001, 0.91692192466103, 0.7691910362466772, 0.6115969275860107, 0.7392299989714646, 0.8668409053601089, 0.8010981386716407, 0.8756022582690672, 0.8515733604757496, 0.9584719359747087, 0.5182031621652522, 0.8739734040271104, 0.9630261247036691, 0.6108506179390492, 0.8503927137128375, 0.8921286958305441, 0.8151375942962622, 0.9833862958109505, 0.6961477172082069, 0.5328985293040043, 0.5100046649741654, 0.8098816125965274, 0.9696621213565533, 0.983429469000384, 0.6316585118681877, 0.7292438228816345, 0.5174379566978764, 0.6442596596826337, 0.5673851725398303, 0.9462409882085634, 0.8571313315758757, 0.6849183579364542, 0.6270334267343631, 0.8140343055760046, 0.9436221453369369, 0.9161985065531626, 0.9121560079754296, 0.59039136914093, 0.6042533332332833, 0.6018850946448194, 0.537690406190835, 0.7592315979018137, 0.6154269747510938, 0.7663632881322265, 0.5038648038597049, 0.9655970193752822, 0.9273114365555566, 0.9372205466482831, 0.5616045100876872, 0.536806673641939, 0.7141291075967601, 0.9535368612540456, 0.5980605809405509, 0.7702958121023457, 0.7040982200260063, 0.6162557718885899, 0.7488737090095436, 0.7626480967160509, 0.7068274265900042, 0.6884297487532789, 0.5468092711617278, 0.6795126579706693, 0.9466817419418868, 0.8448796943566164, 0.8588491415594602, 0.8448903315038172, 0.7182749915630471, 0.8214578643446562, 0.7866370204877927, 0.5463934947404128, 0.9061031541985622, 0.522361904429485, 0.8037614949850272, 0.8829888733094349, 0.9592082295986903, 0.7594555273464704, 0.9306796256246221, 0.5810774379547188, 0.598714537958043, 0.5280563916929131, 0.8422764454503455, 0.722866872592182, 0.8250578631643508, 0.9869131228831718, 0.7704782372723146, 0.6854471718558461, 0.7473961860724292, 0.6790820891562115, 0.5787012869283655, 0.9276233843930569, 0.9760098339882199, 0.7423323344215196, 0.6840645464298094, 0.869997318489526, 0.6808113321097609, 0.7291209887135786, 0.8364923557667283, 0.7834950997643718, 0.7129294534287179, 0.8568862896512718, 0.9726755262654527, 0.8236262572668138, 0.874082446432803, 0.8388305553301957, 0.7754583221526588, 0.5404129213737354, 0.8972253429108061, 0.9054499817198017, 0.5127772428680142, 0.603034627120631, 0.843048252933213, 0.50411890282286, 0.8785536659002051, 0.9693604720957835, 0.8611603069282814, 0.6722858413800266, 0.9158156305168434, 0.5900878113734007, 0.86496973594437, 0.5792367746789517, 0.6806650181321332, 0.6980663756652852, 0.8070453697994809, 0.9205880659345425, 0.9424673928378875, 0.787335637471037, 0.7977068104198566, 0.8010551353818096, 0.7190459684793669, 0.5044440783876757, 0.696829588747284, 0.8632461310238118, 0.6906719088957135, 0.9809189550365817, 0.6505769625998361, 0.5652282367150796, 0.6837724072778952, 0.6399202409734528, 0.9292227092676368, 0.7890218878373004, 0.8963667951823919, 0.9879054027631189, 0.5155054276310715, 0.8369063902695237, 0.9743479193608489, 0.9261920127286203, 0.5343587678912864, 0.9098781719109574, 0.7637261779581295, 0.7341806335393307, 0.7296871415456494, 0.6146634685106297, 0.6053031116539788, 0.790097135440552, 0.7069157984603769, 0.5896124598597836, 0.7582334097954794, 0.8870836594401118, 0.6330994188414514, 0.555623942364369, 0.9913113961431194, 0.5272078782828175, 0.5804045549967141, 0.5993920277058733, 0.6420046444686252, 0.9437254547135487, 0.9269300883658346, 0.9883392067868524, 0.8030256718529087, 0.6543010320611552, 0.9857060191185006, 0.7969862000553805, 0.7028154287275417, 0.8174579347930999, 0.8892744855780312, 0.6693436435568052, 0.5111508325041423, 0.5526963656806845, 0.5995679995807288, 0.6928099736493666, 0.8393169299310792, 0.9741990391465141, 0.6286004139428666, 0.5111532368164746, 0.8357216787541237, 0.6038583327018672, 0.5366595806518906, 0.7423776458901252, 0.5667129680099187, 0.6050260344917059, 0.6823631500560146, 0.5949022674559995, 0.9879104264782514, 0.7785454537417078, 0.7865977946596202, 0.6359876270220834, 0.7662665638233532, 0.9665856145422186, 0.8767867838506558, 0.9249456679535746, 0.7930627917242189, 0.8350578039433733, 0.8555009494018054, 0.5817794646196531, 0.7826233845553658, 0.6898012593073722, 0.6493311141713388, 0.6161851072827282, 0.6906854937164648, 0.7921053752096762, 0.5265670661025998, 0.9795599131455752, 0.8935936290476205, 0.9470372656795462, 0.8531277232599477, 0.9649199558714194, 0.5018410828228148, 0.9398476296151346, 0.7027476469773934, 0.7407731164735163, 0.5661387007237602, 0.9518006433613371, 0.9100334708400697, 0.9811057888087786, 0.5791666069170374, 0.9332906634274545, 0.7602047675590253, 0.7886269659302831, 0.7192297186340819, 0.7671877381813614, 0.7684837988149006, 0.948558101339523, 0.8929895900539062, 0.8607542084230884, 0.7622239188787467, 0.8367685617514511, 0.8848114179528822, 0.8136768818920003, 0.6655109113022363, 0.6387787481614956, 0.7862236224777125, 0.5519579154423869, 0.6435861090122592, 0.8270597141652694, 0.7312915981878204, 0.8031875641650841, 0.704902002067511, 0.9021024532163155, 0.8542081068101437, 0.853338745680944, 0.8079296205312512, 0.5617108353891314, 0.6153844052669131, 0.9335729016369153, 0.5969055958986957, 0.994634591565333, 0.5181484464628374, 0.5625679146265055, 0.7641273005059244, 0.5305530088221422, 0.6597240880045481, 0.5680732432498984, 0.8517477289469979, 0.8489709526639573, 0.9022588688774329, 0.8921334440552537, 0.8322075231293748, 0.5588468302394431, 0.5706136676779274, 0.7416176527332564, 0.5326458876461584, 0.9045563205275036, 0.9698751992182687, 0.740000105016596, 0.7879476892036494, 0.8571262545964928, 0.5857538082764233, 0.789524996168675, 0.6690939622188041, 0.5721110459497645, 0.9215356797618466, 0.669004629877866, 0.8433734967765606, 0.8365469117359176, 0.9688327804352335, 0.767375009892598, 0.9208904352835352, 0.9486325190156011, 0.6377660143626203, 0.9749865967502725, 0.6665655972340151, 0.9883384135648644, 0.7466182540792807, 0.585297215964828, 0.989265648563652, 0.5109886280619924, 0.5647910320094547, 0.6138601087634777, 0.6912375211853015, 0.7276633402119601, 0.7589816137729626, 0.8900043085124023, 0.5077097226702918, 0.7533597075543625, 0.7383853722721866, 0.8232840867719841, 0.5772035085932167, 0.9915530963395236, 0.6231171874544821, 0.5647974237610796, 0.5377229884436567, 0.9869301223950779, 0.7723653050172329, 0.8915945223371378, 0.692890557485804, 0.5999552391871192, 0.5069014781902659, 0.821488580106021, 0.9976443562936899, 0.539882166051588, 0.8317575811947373, 0.9101976864560934, 0.9385814380810493, 0.730384029078746, 0.5802835055807765, 0.6791926386561389, 0.7661317612358944, 0.886066192341096, 0.5482235765369617, 0.6237852890919893, 0.9896527908209144, 0.6502772765015556, 0.879337083717201, 0.5091818364670808, 0.8542016490888242, 0.5621504722472812, 0.7900647908265718, 0.904895156100437, 0.9571383431442505, 0.6618467980669169, 0.870789483334268, 0.5303699335923753, 0.8614853980111332, 0.6884064192684118, 0.5362323204752172, 0.7057181416717793, 0.99248949669821, 0.5082229401172684, 0.8659625916744282, 0.901952471592744, 0.9942937660462674, 0.6945925025351724, 0.6161603208357657, 0.5427918082029024, 0.8425771195745385, 0.7135451687834076, 0.5970131494830235, 0.6450170017447171, 0.8691869549314919, 0.7744216867125603, 0.682726473425938, 0.7211729303290138, 0.7909505653357427, 0.9602580161287597, 0.6928744393020819, 0.6479790456869401, 0.8182091617888037, 0.9696698106442719, 0.8811951448995314, 0.5521404470758527, 0.5487401980619502, 0.6102680929693407, 0.5132101513108023, 0.5680570036974251, 0.5113594028780022, 0.5665614017413975, 0.8822054039216309, 0.5873857514497951, 0.5329301198415678, 0.6175454803051704, 0.9926904823590449, 0.9864640658665055, 0.9631921226754496, 0.8679634060458412, 0.7278773933244931, 0.7415283753940258, 0.7724259553718065, 0.5347247382049114, 0.9714429857250129, 0.7980061206832108, 0.8525738609953535, 0.9550278600065691, 0.7266629864121701, 0.631445744216845, 0.7606273642646741, 0.5238073210164111, 0.6746323115336248, 0.6269185455151923, 0.7725880218908187, 0.9580130280341579, 0.9215537463023928, 0.5338892075044375, 0.9297705905396342, 0.9068260558499348, 0.5261217504279572, 0.9942529064666248, 0.6999434552619775, 0.8194228004644353, 0.8563949540755885, 0.6432030493321236, 0.6906588677583385, 0.5520581170544857, 0.836392880537558, 0.665495372011415, 0.5396861627478602, 0.6879470860940835, 0.6520584727957541, 0.7322647924366823, 0.6069159806875082, 0.7700243927115763, 0.6671582349185767, 0.5768915499852416, 0.8221114866161401, 0.8996071393383489, 0.79219678270129, 0.8357802437335742, 0.8555164867267059, 0.8462750882320929, 0.7038917258284794, 0.5515264692196649, 0.5497893490146488, 0.9423779398203823, 0.7636134105341779, 0.8762708068928862, 0.5102001334368418, 0.6502854602359907, 0.7038278286654545, 0.6832799125419036, 0.9702632597943625, 0.6436015487587734, 0.6456166022996672, 0.5885250704923031, 0.8136932706348021, 0.9002785488191133, 0.6100302917088228, 0.8849140736596063, 0.5773724616370606, 0.559468245709992, 0.6121218559677872, 0.9196786256190894, 0.9712281565988775, 0.5380085289981732, 0.8906517032506274, 0.819673902346558, 0.8408554674342901, 0.7964506395060656, 0.7045770105631401, 0.6846564493233938, 0.5748095780889728, 0.899491952937489, 0.6505847166268277, 0.5539318067358441, 0.5396528745852303, 0.6793031368197489, 0.5877860222826006, 0.6536154056690804, 0.8773876403746058, 0.7946928203623431, 0.9492820364549511, 0.5540134008624902, 0.8731191531813886, 0.6109491959765445, 0.8497852705918643, 0.9070805052490722, 0.8264973332662823, 0.8981022535928507, 0.6764937299377187, 0.512730543467217, 0.9654033305948677, 0.9134992378785878, 0.5513967816500527, 0.9050735658650766, 0.7453137727437262, 0.8137387160178757, 0.570588897183099, 0.7168441365718382, 0.7623625135493385, 0.876552149360053, 0.9142463029708081, 0.7587375787319621, 0.6745191009281066, 0.908619557900967, 0.7481300302955811, 0.530771294138874, 0.9641498713694054, 0.5891996023902576, 0.7282720086006266, 0.7350933064323821, 0.5071257883875726, 0.5900363696343902, 0.7146491074953538, 0.7733220125129915, 0.6074409278429364, 0.6938328618121241, 0.8793530878827578, 0.5401443643208079, 0.6326507136316861, 0.9420627828226069, 0.8001738457263892, 0.5395128875370816, 0.8463606001731325, 0.5916873119575342, 0.8146372034150875, 0.7308100358021965, 0.8717045045647742, 0.670637928783467, 0.5694364003417841, 0.6797355498182023, 0.763440838092805, 0.9165942881038747, 0.5137323891629099, 0.9055238308766859, 0.9674119112169042, 0.5736203963734519, 0.9490511719588827, 0.8589537888913965, 0.7480744527766192, 0.6761082172615724, 0.9232404978479194, 0.6949641865597668, 0.5639798898281152, 0.668583119500519, 0.8155174058648347, 0.5646394455299545, 0.7046251017321294, 0.8458825495177217, 0.801748394030477, 0.5028436224156453, 0.883774943761775, 0.9070106576160035, 0.5893994705607897, 0.9720833782178331, 0.9876920977721156, 0.8966043998921697, 0.5165619960375251, 0.8938804677018288, 0.8374816535446047, 0.56201101253966, 0.5397994119536307, 0.7407359652940135, 0.5916825849342038, 0.8961261544259864, 0.8400381834542902, 0.8741476923514367, 0.899580958039375, 0.9865186142514633, 0.9275142498661874, 0.9975882714682338, 0.7293833537981691, 0.7597505603212558, 0.7030862064903933, 0.9218053808928455, 0.7812959649549454, 0.5030469464982866, 0.5931577222691464, 0.6208024094360873, 0.6816829518622676, 0.6213396862355584, 0.820744167119029, 0.5613841977978848, 0.7209615873608388, 0.6214405220117514, 0.95785107606294, 0.7475874180944135, 0.8813547527447081, 0.7275899623370481, 0.9381339837527402, 0.5664946826035353, 0.9009033777385902, 0.8456486253835128, 0.7642201910720001, 0.6651766140665891, 0.8580015189977741, 0.8535993425658943, 0.8873441071532626, 0.9469254110721076, 0.9674788933201706, 0.9207710602214124, 0.5780360743349942, 0.5283182443977366, 0.8093916604054547, 0.5992055355198923, 0.5089832118743253, 0.8166902426472442, 0.9837790860219446, 0.5617792389428424, 0.9057956991813492, 0.6626930371000622, 0.9557129297913136, 0.8006301802982181, 0.592862710781705, 0.6366190742794772, 0.7707041258806764, 0.7848182464605405, 0.6086461578811331, 0.9990065591455998, 0.8256309281110565, 0.6058819701158412, 0.5358716381312632, 0.9673584934379782, 0.9726151896619741, 0.5099600013501131, 0.8570728252052914, 0.6110585125723348, 0.7912953784022861, 0.5651052106913366, 0.9868085059717574, 0.5008744127504748, 0.7816214466024372, 0.5703406344012744, 0.5146589255196825, 0.9276451717182161, 0.8381900845598749, 0.9292523952288556, 0.6354245024557338, 0.8557772340338856, 0.6808037684616823, 0.9311349978793289, 0.699548976687623, 0.7678247763246471, 0.7425709919030941, 0.8354528801107227, 0.7431294594121942, 0.9644368576978043, 0.904591920984688, 0.8054074393539497, 0.5581085877028824, 0.5765320681803001, 0.9840867814077128, 0.8922070229823518, 0.7253936058383792, 0.928860484682984, 0.6661557729507068, 0.6445293573702395, 0.8080268361955465, 0.9114260740721131, 0.8550027094531432, 0.6829162507784778, 0.5733569915091625, 0.7365539889919666, 0.7658527576533042, 0.6658414090006481, 0.8519251164223565, 0.678306815824109, 0.565437264018993, 0.9123457632948909, 0.6107233831147049, 0.9496240148415704, 0.7788408483511887, 0.5389860344691225, 0.5522563350499574, 0.8542781663290403, 0.9587917356531891, 0.7248658049176757, 0.7822335820961233, 0.5505823442472257, 0.8776658391354177, 0.7151137496074625, 0.7789259158103286, 0.8775966718724663, 0.526008513935006, 0.9448641779690912, 0.819007646435531, 0.6578241350501243, 0.7206736072354676, 0.7525372131256745, 0.7849276686693838, 0.6433831307483622, 0.6567872522929433, 0.8862325848215504, 0.8685620042971729, 0.9473752624070293, 0.5004553377041576, 0.9853030198245469, 0.9763102345741314, 0.7562817837375482, 0.9753853905047636, 0.7599724026141206, 0.9571177735192207, 0.7108139437211951, 0.9078368647612494, 0.9515093519551729, 0.5943917606034893, 0.6583625561691302, 0.9928277996159449, 0.516798271597767, 0.9926933719924824, 0.8142369487049088, 0.7504821710480211, 0.7587649043327769, 0.9036531979573588, 0.631971330017794, 0.8668902873620405, 0.9253247494023521, 0.9670584821648777, 0.6854573154858569, 0.936253504787493, 0.5473611136086185, 0.6833820893580994, 0.8365368277315505, 0.8751120942659196, 0.6354395443096537, 0.7690893577994116, 0.9729825725364811, 0.6894034041452926, 0.6124219105850475, 0.9842381615421689, 0.7183999125955354, 0.6130134089104541, 0.7402176699499102, 0.5079466534488091, 0.6549548006855739, 0.9626373259572427, 0.672933012142651, 0.9878107608445406, 0.5939356669255537, 0.5383145539164749, 0.7054030205804196, 0.6784324273872879, 0.9615810029098396, 0.5136037763299162, 0.7916335717080591, 0.8854600908978094, 0.8342606229665677, 0.9610040464190357, 0.8988821284993935, 0.6926353834213101, 0.6565325466337655, 0.6002106066714923, 0.6209707948496475, 0.8692179227336465, 0.6930858250478317, 0.5273164657639235, 0.7709026617435049, 0.9340458452383794, 0.6242354762797592, 0.6483317664559911, 0.6324955251454374, 0.6480505067667051, 0.9114441015525188, 0.8643381094353237, 0.7351551488125726, 0.6279753982957195, 0.9089722848445183, 0.6706986855785342, 0.9886017796802777, 0.5635587789166523, 0.698747148642769, 0.7435778710616774, 0.6338374747781252, 0.6443509921205214, 0.7901858669621329, 0.8261163235019662, 0.9879619027593156, 0.5100790271361508, 0.8110629689186211, 0.9442159941483159, 0.8892557319532907, 0.8464298747780941, 0.6818217596341245, 0.9909996191612973, 0.6019254831690446, 0.6898078238068022, 0.5731158207789288, 0.6489916958224833, 0.7181037956630976, 0.548933266105727, 0.6336699153545297, 0.8561128772894671, 0.6602138920614735, 0.8607558405724076, 0.7067218485165776, 0.8936984062591526, 0.5292911707284877, 0.8802676094129084, 0.9465648555075121, 0.9444001872381819, 0.7628266814983076, 0.7917760556275846, 0.739001061122498, 0.595845898726989, 0.946076771484893, 0.850113622009431, 0.5327194512331216, 0.797437446713013, 0.8492397840801, 0.982914960868724, 0.9466490574102858, 0.556939473588474, 0.821518838898696, 0.5041148871187676, 0.8355638889018231, 0.6418783958336514, 0.77777846173227, 0.8236101858551188, 0.845415906780854, 0.7701143821224168, 0.587027118570733, 0.9757023877494857, 0.7237038872328969, 0.8575747863256888, 0.6340984555302647, 0.6948430974037104, 0.534255189371224, 0.9171661943225239, 0.7726970209042257, 0.8514148138765989, 0.8965521742830728, 0.6353230100868292, 0.8817699349120667, 0.8369914795760183, 0.5864621829838361, 0.7114496179105827, 0.7083175236839072, 0.6477085400209142, 0.8684302761858473, 0.9812031742148548, 0.9561675720937608, 0.6926297706492015, 0.6036018576366463, 0.8632134675925962, 0.5103799736748231, 0.8913167752958016, 0.8955828061287305, 0.9364863759309681, 0.5505530385589797, 0.8813821686858502, 0.7702185191631241, 0.6402416461320604, 0.7656375551676071, 0.9881283606091296, 0.8881802163371769, 0.7581760483666773, 0.5379937891466413, 0.9569770839978332, 0.6681434111201212, 0.5114108697397951, 0.7478672509256898, 0.8252875333661878, 0.6860682097653432, 0.8825324809897337, 0.5066255107385971, 0.7222662071166019, 0.9655058980854345, 0.5608563980463626, 0.7564469855118923, 0.9825183710098118, 0.8857605552118712, 0.6592557406185784, 0.530759178466774, 0.8533890635926364, 0.5716838048658082, 0.6549387498950132, 0.9405650988554582, 0.8649185973636455, 0.9100719194318907, 0.6909590011040776, 0.9719149088205041, 0.7406416481097109, 0.7009863055217078, 0.5489738013538137, 0.5468895405433178, 0.7703598238770678, 0.948335789972174, 0.7388902712584852, 0.7279887937993867, 0.6837368636664434, 0.7634104787047387, 0.7830921609091305, 0.5039139859051968, 0.6573289005802168, 0.8383250024020124, 0.6969432825136462, 0.6247422807757501, 0.7322174297748736, 0.9412775901779982, 0.6917505908193247, 0.8454211261425704, 0.7372166151684482, 0.9874486806873655, 0.7891230489500127, 0.6659623559481918, 0.5441986565711165, 0.5564247968939047, 0.796987784345046, 0.8410450492857398, 0.8130768056450719, 0.9815169912363708, 0.9403106346039396, 0.9213984215580753, 0.8636914612806885, 0.9620214621652481, 0.5629277832823844, 0.8506273454860516, 0.5109416982354498, 0.639356992841928, 0.7020513910698166, 0.5983230770479387, 0.9614087244583984, 0.7991155439743172, 0.6078917070835202, 0.9597987568103579, 0.6146866941942501, 0.5010080224350182, 0.5384077999636441, 0.6791295699631509, 0.6151946570809051, 0.9970816054757417, 0.6494107143574581, 0.5471136415749045, 0.6144926859679206, 0.773489427331065, 0.6076398864683787, 0.9019511237697841, 0.8690439046977453, 0.5367846008347954, 0.6746514767495632, 0.582469056018602, 0.9837368984558059, 0.6376639081343232, 0.879221651495205, 0.9726569118509081, 0.6337529101637834, 0.5878408608822889, 0.6389090080735644, 0.5465472539067676, 0.6502143924813373, 0.5985232641328699, 0.5317980282332403, 0.6652318572692866, 0.7080416335450691, 0.5044362673043963, 0.6571644755158235, 0.5978029093232097, 0.5894896885027225, 0.9156772487780566, 0.703374356180394, 0.954225982097362, 0.9017774444512944, 0.9252595294339039, 0.967810545531838, 0.7802749897054309, 0.855093522793931, 0.8944981740133109, 0.7441606322089087, 0.572083735536111, 0.6786609553107172, 0.7792305594913358, 0.7674518748084963, 0.6548055419528106, 0.9479786014261031, 0.9683928208636371, 0.9666878683306297, 0.8323128107395724, 0.8927255333927824, 0.865324824305521, 0.6956469675089236, 0.9836036262651652, 0.8283308911045434, 0.9421175768657616, 0.8505950063650611, 0.8239259255080911, 0.819645022690794, 0.7841441450074058, 0.8145444055938775, 0.5627577066712168, 0.9845350921961437, 0.7945029763325726, 0.6791603778574133, 0.6809241464169071, 0.5800076329037167, 0.9909971523343666, 0.780614075161786, 0.5480639407279231, 0.9772426898511326, 0.6252874121195078, 0.5380133730015344, 0.7598549914762764, 0.6558339186683867, 0.7546990174178302, 0.700370449201309, 0.895722537196333, 0.776141328216135, 0.7005766330331242, 0.9631462577262642, 0.7521195470397681, 0.5666097848341699, 0.7471740623985894, 0.8576259024477001, 0.948265265760772, 0.6009829943240009, 0.5556864213203513, 0.5059023013820454, 0.9913678518837885, 0.7022313935471612, 0.5730495372306773, 0.7400890664103702, 0.8660657915957246, 0.7298794151263028, 0.8305291039826586, 0.9372325587511332, 0.7470639104577909, 0.5216280119175805, 0.8823168678341755, 0.8300720204157535, 0.5721727294268606, 0.8538345854502136, 0.5230545908033275, 0.6350525118057534, 0.7852139458217094, 0.8279489497586743, 0.9606995746559586, 0.8325613065263751, 0.9313756946635501, 0.9574096057234798, 0.5916331803807251, 0.6834304023011459, 0.6458408151735089, 0.8907812968925484, 0.9492588538635269, 0.9809148060918016, 0.9402098144509166, 0.7713431964923987, 0.5602723246038794, 0.8759227253154647, 0.511158690484705, 0.6860323417449737, 0.8409039720119802, 0.9735820503857184, 0.963777051195408, 0.5050824246878898, 0.9209871907957985, 0.9613402523393222, 0.8502111226493688, 0.910024199360723, 0.5356230222235876, 0.9462471719923748, 0.647012516881911, 0.7997507204776356, 0.5088013645170759, 0.9940263907332662, 0.5437332593245403, 0.5707033880473754, 0.9347624481472978, 0.9965197168006477, 0.510611370802475, 0.7896179999099031, 0.5046429300501645, 0.9646450910457617, 0.5987768005661029, 0.9532366075658532, 0.5444018236511672, 0.8086412252468936, 0.9633491192877581, 0.7495851630808754, 0.8042864931696887, 0.8866687409771351, 0.6587599611558566, 0.9774840415225237, 0.7139169073543974, 0.8898631601585271, 0.7388553746993561, 0.8769520906782908, 0.9063640137827338, 0.9388674498761765, 0.9985026054914476, 0.5420671456242977, 0.7758536851993756, 0.91778831783967, 0.9610373627032223, 0.6524714213995839, 0.782229481931019, 0.7246510677956709, 0.9274422951229686, 0.9855392364014364, 0.7081770181771916, 0.6585168667511687, 0.7077701633764566, 0.6070734675103835, 0.5197510608647997, 0.6480401887910168, 0.9233631799880972, 0.8916020992631011, 0.6397868997779184, 0.6413115044870188, 0.9253235425928661, 0.7515657917914886, 0.9067119097130818, 0.5227354250574954, 0.7661596160543495, 0.7014659660331184, 0.8429101267919966, 0.6288697573098536, 0.5792634783350876, 0.698432071188531, 0.9426484489453324, 0.864041823383209, 0.7255037013383767, 0.6406521835163871, 0.7018179668842884, 0.8690557050397414, 0.6270212618889535, 0.6363209514374706, 0.875346388290145, 0.575145879097761, 0.9084088774503549, 0.9143565223620431, 0.5112117170933139, 0.7883936149356219, 0.9336321049490808, 0.6062633959466954, 0.5268614812807337, 0.594868210529129, 0.5109367261984847, 0.8217888671760853, 0.6894913753179157, 0.9433104833737371, 0.6231716332370377, 0.7961171602190369, 0.9408404425730184, 0.8444574832036046, 0.6928270150725353, 0.9043348904897384, 0.7829866684179829, 0.9642674743876308, 0.7219059590375081, 0.7706779487747122, 0.9131450269881761, 0.778133445640966, 0.9934089984766102, 0.8252295003363709, 0.8666010900722325, 0.7905377126240491, 0.7487657079361136, 0.8480455595263314, 0.8134621986307171, 0.5855042235117958, 0.6792966337201577, 0.7625673872432019, 0.6549788494403509, 0.6424259190518702, 0.8753482793050056, 0.780205234533274, 0.7155081460413013, 0.908465404266136, 0.5618489640614642, 0.7071944991254785, 0.8106607983025065, 0.7120019022419418, 0.6509188077545844, 0.543797358914208, 0.6684017519711241, 0.9785145528915661, 0.5637837007441525, 0.7199821699288789, 0.8261245365253168, 0.9156842892396916, 0.5462808300544764, 0.6330971864508301, 0.5058907267536246, 0.5213112464592324, 0.7866463995607326, 0.9735032444824563, 0.5214205529113911, 0.5986529174400381, 0.9234337107074291, 0.6093173446849102, 0.7193795030156462, 0.5018306966634989, 0.8462531911015037, 0.9491215184553915, 0.603764850819557, 0.745786515036615, 0.7107187641073252, 0.7219701813795498, 0.536749369417834, 0.5887045484050226, 0.6838139674972654, 0.616965766977604, 0.7974860604857261, 0.8607860872245724, 0.7656072968935386, 0.8638780161080177, 0.9966610438375798, 0.9238086049059462, 0.7400005977793926, 0.9316129184451178, 0.900328355167926, 0.7700018095861223, 0.5702888548314028, 0.5848525546785427, 0.6854594218911279, 0.9755347994778257, 0.6375514580992191, 0.6563165171758866, 0.8957624758759098, 0.8644568317152548, 0.6946370929151855, 0.5261063989910495, 0.5853297760793055, 0.6260243931789005, 0.6166560988603014, 0.8497177952993284, 0.6767754106029713, 0.5997395797518275, 0.8738594374473023, 0.6418803478411674, 0.8041279591337019, 0.6280491128410304, 0.8163388361570912, 0.8001706406552163, 0.8445629633737423, 0.9619255359390904, 0.8368757389467327, 0.9285381732216049, 0.7211321811847436, 0.9715188294260417, 0.8361395652907211, 0.8595228607486654, 0.9123408373943291, 0.6128705636278642, 0.9773047345907842, 0.6494598875642504, 0.9216821250229021, 0.910592357041385, 0.557792926518021, 0.930673182444074, 0.6013520012462648, 0.862880944063347, 0.9713767556343778, 0.8628456912907776, 0.6737585175502947, 0.7665392346937006, 0.7482272743699574, 0.7567592741911431, 0.8232359576766626, 0.6153629045913598, 0.9628616842825712, 0.7723434618110638, 0.9878213400875504, 0.5740586010224891, 0.79761147714449, 0.9108707147093846, 0.7315027290850595, 0.9448417578695871, 0.8118819993640312, 0.7887491561475722, 0.9186520443076451, 0.5785351575509098, 0.9558867513043796, 0.709753300245855, 0.5802995610753567, 0.6636989227115524, 0.9641469954694656, 0.7104871049623813, 0.8707091996414318, 0.915392586595632, 0.6054500358270527, 0.6232800753060872, 0.6126027008512915, 0.7314485279045599, 0.9518483503755354, 0.7854077388962137, 0.9053640960281539, 0.5864916454560333, 0.749795459144339, 0.6677704587361526, 0.542458383038483, 0.8829284564137747, 0.8993984265188766, 0.7558250217140494, 0.6370404382736732, 0.6401399497423921, 0.5014663844184348, 0.7303996541115041, 0.7235084990776494, 0.8395316076712938, 0.5961284204759931, 0.7504602157393739, 0.9127555863457363, 0.7124267393505698, 0.7182882436864829, 0.5077617289036365, 0.9988808050111487, 0.6048888436102748, 0.9028087374566213, 0.7182884635246805, 0.5122913282777679, 0.5832702850250648, 0.8171375744642816, 0.9227913098994374, 0.9534185297598718, 0.5372094956850383, 0.5932963536579834, 0.6076321816337957, 0.6052362802439697, 0.6372399112550251, 0.5612799468538209, 0.6995609668832345, 0.9132224778619824, 0.8581823852318173, 0.7504811739899464, 0.520754223450699, 0.8366377774282765, 0.5162873066316024, 0.705448326149738, 0.5848936422853199, 0.9130972809533058, 0.73780894083702, 0.7890765597138963, 0.6098163063206871, 0.9863073430092957, 0.8896208326077519, 0.785896320826591, 0.626447954776935, 0.7027333149409789, 0.7375640448320724, 0.5096478889226611, 0.5243576339811533, 0.9219454426058851, 0.8925530135792419, 0.9246544447758221, 0.6984069909552437, 0.5908905534568647, 0.7703808015473147, 0.9278269570368669, 0.636286391164815, 0.924099490326869, 0.9096416217368772, 0.6952271555951445, 0.5977958655873836, 0.9584242161747843, 0.949295067013666, 0.6744755452587736, 0.9270551878087572, 0.7591838702711005, 0.5721576183888233, 0.5737017049073686, 0.8725371688938394, 0.6549065147806703, 0.6636662499646329, 0.8007608917814216, 0.872890268996229, 0.8291092516757887, 0.742915328596787, 0.7986964252879265, 0.8388447728462388, 0.6823305244490845, 0.9765205887865753, 0.9247565888017446, 0.847966311210731, 0.9641771253872887, 0.6105941820739043, 0.8480381904734473, 0.7865462046257206, 0.5554955251761036, 0.6303069860028561, 0.5863404966414001, 0.6388392207111708, 0.9153005882885321, 0.673335397125776, 0.8793438487137868, 0.7117772818970255, 0.7035259447927289, 0.8885203137095125, 0.7834609356541449, 0.845031116010894, 0.9826166130422567, 0.824431945159644, 0.5906243120454049, 0.9311865265230709, 0.7986517706715897, 0.7281546578078953, 0.8260481750843407, 0.9356169331338322, 0.515757812554259, 0.8494421524554675, 0.8068423728036407, 0.8111059232935189, 0.8097655882327249, 0.693196839922495, 0.907953203174862, 0.601687036742718, 0.9403063640452318, 0.943213397656488, 0.6266863648799894, 0.7896874559811786, 0.5877488097576, 0.6061964759063947, 0.742663136363273, 0.8094812975883352, 0.9447024584667084, 0.8547032643690753, 0.5220971796919729, 0.90477159050188, 0.9677047608004237, 0.6803601477654906, 0.5862155772275669, 0.7890459222957823, 0.677283783994217, 0.6984697134701735, 0.7537009451333058, 0.8624800454842535, 0.7590521923556355, 0.83131553573622, 0.9172388912291866, 0.9925663871410196, 0.6018561125390325, 0.7350498778767948, 0.8930401639614577, 0.8484599109372368, 0.953328173514655, 0.7072075844114104, 0.8045655311758092, 0.9570452089626257, 0.9401968395044691, 0.5756552642492444, 0.6388798531528754, 0.9491339070877299, 0.8698753578898555, 0.6790492622605839, 0.8156609458665252, 0.8073456391866608, 0.9258350021800432, 0.822339798335872, 0.9142054411693079, 0.8843292593844044, 0.7153314171883747, 0.8516464714768434, 0.6955369903622319, 0.6308589243837812, 0.5786802064490808, 0.9319725877882581, 0.8734964395383786, 0.8930918280352977, 0.5705276690573846, 0.7694306368675723, 0.6495250711039765, 0.7653115177628261, 0.6527135476941104, 0.9162070635297956, 0.649836571847827, 0.7460896156310843, 0.6194747763767683, 0.6180643894025348, 0.5844187048195357, 0.5242443696368523, 0.6174638234521106, 0.7806723494572447, 0.6080752832829961, 0.6277638789104945, 0.5655857786830375, 0.5544121419877782, 0.6442177896837159, 0.8531277146968317, 0.89557596241561, 0.5549668454212292, 0.6415720416526075, 0.5824059073784376, 0.7649078186045044, 0.6411376946212084, 0.9429473213224349, 0.6628253793961604, 0.5042002038491221, 0.6401926173874136, 0.7417247318604208, 0.6897749791662622, 0.7263541594675322, 0.8947933062615081, 0.690268607361964, 0.7649113366519097, 0.5400754829965081, 0.8945465176573022, 0.7549073877297148, 0.8899148228501659, 0.59677176463195, 0.9065045380106154, 0.8065592683690797, 0.6609529068192957, 0.8767427504406151, 0.7486873646293548, 0.8904369916522034, 0.5091324764831396, 0.9695758821321183, 0.6901583057065579, 0.7057450528568083, 0.9548148318177389, 0.7053529188620573, 0.6087564227541975, 0.8337121008731816, 0.8340992944581074, 0.6871178702601306, 0.5273721154956332, 0.8370714579902688, 0.589761017106057, 0.7582894842805419, 0.8219795023009052, 0.6183020400826235, 0.9167387424301164, 0.7308706233972393, 0.5825760560533075, 0.9566809466941816, 0.7737667328824072, 0.5349677082218615, 0.9958841597685175, 0.8110889357247072, 0.9762351995122158, 0.5082731105885852, 0.8252165132268401, 0.6505141905049026, 0.9380155641636307, 0.7935619698913099, 0.6723248425356423, 0.6253482815050495, 0.6344455727675048, 0.6912684873172246, 0.7546635387134235, 0.6338174985472502, 0.766703420846848, 0.7535874704423106, 0.5853547275900401, 0.6495856336327949, 0.9441988566264903, 0.6002588618384952, 0.6666259387683705, 0.5603128430773621, 0.7599364097845875, 0.8558323320954593, 0.9649385633525303, 0.7960148090204131, 0.8558682714982162, 0.8363495864888146, 0.9495649403410122, 0.5626473560188052, 0.9140805858861714, 0.5907210234217728, 0.8692931696020769, 0.7813940212950713, 0.6643935236813541, 0.8054469291655701, 0.8931549490380551, 0.9254584191694466, 0.8984026991384332, 0.7715861335782999, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0}; int h_B[]= { 0, 2, 4, 6, 8, 10, 12, 14, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 47, 49, 51, 53, 56, 58, 60, 62, 64, 66, 68, 70, 73, 75, 77, 79, 81, 83, 85, 87, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123, 125, 127, 129, 131, 133, 135, 137, 139, 141, 143, 145, 147, 149, 151, 153, 155, 157, 159, 161, 163, 165, 167, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 203, 205, 207, 209, 211, 213, 215, 217, 219, 221, 223, 225, 227, 229, 231, 233, 235, 237, 239, 241, 243, 245, 247, 249, 251, 253, 255, 257, 259, 261, 263, 265, 267, 269, 271, 273, 275, 277, 279, 281, 283, 285, 287, 289, 291, 293, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 397, 399, 401, 403, 405, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, 441, 443, 445, 447, 449, 451, 453, 455, 457, 459, 461, 463, 465, 467, 469, 471, 473, 475, 477, 479, 481, 483, 486, 488, 491, 493, 495, 497, 499, 501, 503, 505, 507, 509, 512, 514, 516, 518, 521, 523, 525, 527, 529, 531, 533, 535, 537, 539, 541, 543, 545, 547, 549, 551, 553, 555, 557, 559, 561, 563, 565, 567, 569, 571, 573, 575, 577, 579, 581, 583, 585, 587, 589, 591, 593, 595, 597, 599, 601, 603, 605, 607, 609, 611, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 682, 684, 686, 688, 691, 693, 695, 697, 699, 701, 703, 705, 707, 709, 711, 713, 715, 717, 719, 721, 723, 725, 727, 729, 731, 733, 735, 737, 739, 741, 743, 745, 747, 749, 751, 753, 755, 757, 759, 761, 763, 765, 767, 769, 771, 773, 775, 777, 779, 781, 783, 785, 787, 789, 791, 793, 795, 797, 799, 801, 803, 805, 807, 809, 811, 813, 817, 819, 821, 823, 825, 827, 829, 831, 833, 835, 837, 839, 841, 843, 845, 847, 849, 851, 853, 855, 857, 859, 861, 863, 865, 867, 869, 871, 873, 875, 877, 879, 881, 883, 885, 887, 889, 891, 893, 895, 897, 899, 901, 903, 905, 907, 909, 911, 913, 915, 917, 919, 921, 923, 925, 927, 929, 931, 933, 935, 937, 939, 941, 943, 947, 949, 951, 953, 955, 957, 959, 961, 963, 965, 967, 969, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1045, 1047, 1050, 1052, 1054, 1056, 1059, 1061, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1137, 1139, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1158, 1160, 1163, 1165, 1167, 1169, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1205, 1207, 1210, 1212, 1214, 1216, 1219, 1221, 1223, 1225, 1227, 1229, 1231, 1233, 1235, 1237, 1239, 1241, 1244, 1246, 1248, 1250, 1253, 1255, 1258, 1260, 1263, 1265, 1268, 1270, 1273, 1275, 1277, 1279, 1281, 1283, 1286, 1288, 1291, 1293, 1296, 1298, 1301, 1303, 1306, 1308, 1311, 1313, 1316, 1318, 1321, 1323, 1326, 1328, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1348, 1350, 1353, 1355, 1361, 1363, 1365, 1367, 1369, 1371, 1374, 1376, 1378, 1380, 1382, 1384, 1387, 1389, 1391, 1393, 1396, 1398, 1401, 1403, 1409, 1411, 1413, 1415, 1417, 1419, 1421, 1423, 1425, 1427, 1430, 1432, 1435, 1437, 1439, 1441, 1443, 1445, 1448, 1450, 1453, 1455, 1457, 1459, 1461, 1463, 1466, 1468, 1471, 1473, 1476, 1478, 1481, 1483, 1486, 1488, 1491, 1493, 1496, 1498, 1501, 1503, 1506, 1508, 1511, 1513, 1516, 1518, 1520, 1522, 1525, 1527, 1530, 1532, 1538, 1540, 1542, 1544, 1546, 1548, 1551, 1553, 1556, 1558, 1561, 1563, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636, 1639, 1641, 1643, 1645, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682, 1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 1726, 1728, 1730, 1732, 1734, 1736, 1738, 1740, 1742, 1744, 1746, 1748, 1750, 1752, 1754, 1756, 1758, 1760, 1762, 1764, 1766, 1768, 1770, 1772, 1774, 1776, 1778, 1780, 1782, 1784, 1786, 1788, 1790, 1792, 1794, 1796, 1798, 1800, 1802, 1804, 1806, 1809, 1811, 1813, 1815, 1817, 1819, 1821, 1823, 1825, 1827, 1829, 1831, 1833, 1835, 1839, 1841, 1843, 1845, 1847, 1849, 1851, 1853, 1855, 1857, 1859, 1861, 1863, 1865, 1867, 1869, 1871, 1873, 1875, 1877, 1880, 1882, 1884, 1886, 1888, 1890, 1893, 1895, 1898, 1900, 1903, 1905, 1908, 1910, 1912, 1914, 1917, 1919, 1921, 1923, 1926, 1928, 1932, 1934, 1936, 1938, 1940, 1942, 1944, 1946, 1948, 1950, 1952, 1954, 1956, 1958, 1960, 1962, 1964, 1966, 1968, 1970, 1973, 1975, 1978, 1980, 1983, 1985, 1988, 1990, 1993, 1995, 1997, 1999, 2002, 2004, 2007, 2009, 2014, 2016, 2019, 2021, 2024, 2026, 2029, 2031, 2034, 2036, 2039, 2041, 2044, 2046, 2048, 2050, 2052, 2054, 2057, 2059, 2062, 2064, 2066, 2068, 2071, 2073, 2075, 2077, 2079, 2081, 2083, 2085, 2087, 2089, 2092, 2094, 2099, 2101, 2104, 2106, 2109, 2111, 2113, 2115, 2117, 2119, 2121, 2123, 2125, 2127, 2129, 2131, 2133, 2135, 2137, 2139, 2141, 2143, 2145, 2147, 2149, 2151, 2153, 2155, 2157, 2159, 2161, 2163, 2165, 2167, 2170, 2172, 2174, 2176, 2179, 2181, 2184, 2186, 2192, 2194, 2196, 2198, 2200, 2202, 2205, 2207, 2210, 2212, 2215, 2217, 2220, 2222, 2224, 2226, 2228, 2230, 2233, 2235, 2238, 2240, 2243, 2245, 2248, 2250, 2253, 2255, 2262, 2264, 2266, 2268, 2270, 2272, 2274, 2276, 2279, 2281, 2284, 2286, 2292, 2294, 2296, 2298, 2301, 2303, 2306, 2308, 2317, 2319, 2322, 2324, 2327, 2329, 2332, 2334, 2337, 2339, 2343, 2345, 2347, 2349, 2352, 2354, 2356, 2358, 2360, 2362, 2364, 2366, 2368, 2370, 2372, 2374, 2376, 2378, 2380, 2382, 2384, 2386, 2388, 2390, 2392, 2394, 2396, 2398, 2400, 2402, 2404, 2406, 2408, 2410, 2412, 2414, 2416, 2418, 2420, 2422, 2424, 2426, 2428, 2430, 2432, 2434, 2436, 2438, 2441, 2443, 2445, 2447, 2450, 2452, 2454, 2456, 2458, 2460, 2462, 2464, 2466, 2468, 2470, 2472, 2474, 2476, 2479, 2481, 2483, 2485, 2487, 2489, 2491, 2493, 2495, 2497, 2499, 2501, 2503, 2505, 2507, 2509, 2512, 2514, 2516, 2518, 2520, 2522, 2524, 2526, 2528, 2530, 2533, 2535, 2537, 2539, 2541, 2543, 2545, 2547, 2549, 2551, 2553, 2555, 2557, 2559, 2561, 2563, 2566, 2568, 2570, 2572, 2574, 2576, 2578, 2580, 2582, 2584, 2586, 2588, 2590, 2592, 2594, 2596, 2598, 2600, 2602, 2604, 2606, 2608, 2610, 2612, 2614, 2616, 2618, 2620, 2622, 2624, 2626, 2628, 2630, 2632, 2634, 2636, 2638, 2640, 2642, 2644, 2646, 2648, 2650, 2652, 2654, 2656, 2658, 2660, 2662, 2664, 2666, 2668, 2670, 2672, 2674, 2676, 2678, 2680, 2682, 2684, 2686, 2688, 2690, 2692, 2694, 2696, 2699, 2701, 2703, 2705, 2708, 2710, 2712, 2714, 2716, 2718, 2720, 2722, 2724, 2726, 2729, 2731, 2734, 2736, 2738, 2740, 2742, 2744, 2746, 2748, 2750, 2752, 2754, 2756, 2759, 2761, 2763, 2765, 2767, 2769, 2771, 2773, 2776, 2778, 2780, 2782, 2785, 2787, 2789, 2791, 2793, 2795, 2797, 2799, 2801, 2803, 2805, 2807, 2810, 2812, 2814, 2816, 2819, 2821, 2823, 2825, 2827, 2829, 2831, 2833, 2835, 2837, 2840, 2842, 2844, 2846, 2848, 2850, 2852, 2854, 2856, 2858, 2861, 2863, 2865, 2867, 2869, 2871, 2873, 2875, 2877, 2879, 2881, 2883, 2885, 2887, 2889, 2891, 2893, 2895, 2898, 2900, 2903, 2905, 2908, 2910, 2913, 2915, 2917, 2919, 2921, 2923, 2926, 2928, 2931, 2933, 2935, 2937, 2940, 2942, 2945, 2947, 2950, 2952, 2954, 2956, 2958, 2960, 2963, 2965, 2967, 2969, 2971, 2973, 2976, 2978, 2980, 2982, 2984, 2986, 2989, 2991, 2994, 2996, 2999, 3001, 3005, 3007, 3009, 3011, 3015, 3017, 3019, 3021, 3023, 3025, 3028, 3030, 3033, 3035, 3038, 3040, 3043, 3045, 3048, 3050, 3053, 3055, 3061, 3063, 3065, 3067, 3069, 3071, 3073, 3075, 3077, 3079, 3081, 3083, 3085, 3087, 3089, 3091, 3093, 3095, 3097, 3099, 3101, 3103, 3105, 3107, 3109, 3111, 3114, 3116, 3118, 3120, 3122, 3124, 3126, 3128, 3130, 3132, 3134, 3136, 3139, 3141, 3145, 3147, 3150, 3152, 3155, 3157, 3160, 3162, 3165, 3167, 3170, 3172, 3175, 3177, 3180, 3182, 3184, 3186, 3188, 3190, 3193, 3195, 3198, 3200, 3203, 3205, 3208, 3210, 3212, 3214, 3216, 3218, 3221, 3223, 3226, 3228, 3231, 3233, 3236, 3238, 3241, 3243, 3246, 3248, 3251, 3253, 3256, 3258, 3261, 3263, 3269, 3271, 3274, 3276, 3279, 3281, 3284, 3286, 3291, 3293, 3295, 3297, 3299, 3301, 3303, 3305, 3307, 3309, 3311, 3313, 3316, 3318, 3320, 3322, 3325, 3327, 3329, 3331, 3333, 3335, 3337, 3339, 3341, 3343, 3345, 3347, 3350, 3352, 3355, 3357, 3359, 3361, 3364, 3366, 3369, 3371, 3374, 3376, 3379, 3381, 3384, 3386, 3389, 3391, 3394, 3396, 3399, 3401, 3404, 3406, 3409, 3411, 3414, 3416, 3419, 3421, 3424, 3426, 3428, 3430, 3433, 3435, 3437, 3439, 3442, 3444, 3448, 3450, 3452, 3454, 3456, 3458, 3460, 3462, 3464, 3466, 3469, 3471, 3473, 3475, 3480, 3482, 3484, 3486, 3488, 3490, 3493, 3495, 3498, 3500, 3503, 3505, 3508, 3510, 3512, 3514, 3516, 3518, 3521, 3523, 3525, 3527, 3530, 3532, 3535, 3537, 3542, 3544, 3546, 3548, 3554, 3556, 3558, 3560, 3562, 3564, 3566, 3568, 3570, 3572, 3574, 3576, 3580, 3582, 3584, 3586, 3588, 3590, 3592, 3594, 3596, 3598, 3601, 3603, 3605, 3607, 3609, 3611, 3613, 3615, 3617, 3619, 3623, 3625, 3628, 3630, 3632, 3634, 3637, 3639, 3641, 3643, 3647, 3649, 3651, 3653, 3656, 3658, 3660, 3662, 3665, 3667, 3670, 3672, 3674, 3676, 3678, 3680, 3682, 3684, 3686, 3688, 3690, 3692, 3694, 3696, 3698, 3700, 3702, 3704, 3706, 3708, 3710, 3712, 3714, 3716, 3719, 3721, 3723, 3725, 3727, 3729, 3731, 3733, 3735, 3737, 3739, 3741, 3743, 3745, 3747, 3749, 3752, 3754, 3757, 3759, 3762, 3764, 3767, 3769, 3772, 3774, 3777, 3779, 3782, 3784, 3787, 3789, 3792, 3794, 3797, 3799, 3802, 3804, 3808, 3810, 3812, 3814, 3817, 3819, 3822, 3824, 3827, 3829, 3832, 3834, 3837, 3839, 3841, 3843, 3845, 3847, 3849, 3851, 3854, 3856, 3858, 3860, 3863, 3865, 3869, 3871, 3873, 3875, 3878, 3880, 3883, 3885, 3888, 3890, 3893, 3895, 3897, 3899, 3901, 3903, 3905, 3907, 3909, 3911, 3913, 3915, 3917, 3919, 3921, 3923, 3925, 3927, 3929, 3931, 3933, 3935, 3937, 3939, 3941, 3943, 3945, 3947, 3949, 3951, 3953, 3955, 3958, 3960, 3963, 3965, 3967, 3969, 3971, 3973, 3975, 3977, 3979, 3981, 3983, 3985, 3987, 3989, 3991, 3993, 3995, 3997, 3999, 4001, 4003, 4005, 4007, 4009, 4011, 4013, 4016, 4018, 4020, 4022, 4024, 4026, 4028, 4030, 4032, 4034, 4036, 4038, 4040, 4042, 4044, 4046, 4048, 4050, 4052, 4054, 4056, 4058, 4060, 4062, 4064, 4066, 4068, 4070, 4072, 4074, 4076, 4078, 4080, 4082, 4084, 4086, 4088, 4090, 4092, 4094, 4096, 4098, 4100, 4102, 4104, 4106, 4108, 4110, 4112, 4114, 4116, 4118, 4120, 4122, 4124, 4126, 4128, 4130, 4132, 4134, 4136, 4138, 4140, 4142, 4144, 4146, 4148, 4150, 4152, 4154, 4156, 4158, 4160, 4162, 4164, 4166, 4168, 4170, 4172, 4174, 4176, 4178, 4181, 4183, 4185, 4187, 4189, 4191, 4193, 4195, 4197, 4199, 4201, 4203, 4205, 4207, 4209, 4211, 4213, 4215, 4217, 4219, 4221, 4223, 4225, 4227, 4229, 4231, 4233, 4235, 4237, 4239, 4241, 4243, 4246, 4248, 4250, 4252, 4254, 4256, 4258, 4260, 4262, 4264, 4266, 4268, 4270, 4272, 4274, 4276, 4278, 4280, 4282, 4284, 4286, 4288, 4290, 4292, 4294, 4296, 4298, 4300, 4302, 4304, 4306, 4308, 4310, 4312, 4314, 4316, 4318, 4320, 4322, 4324, 4326, 4328, 4330, 4332, 4335, 4337, 4339, 4341, 4344, 4346, 4348, 4350, 4353, 4355, 4357, 4359, 4361, 4363, 4366, 4368, 4371, 4373, 4376, 4378, 4380, 4382, 4384, 4386, 4389, 4391, 4393, 4395, 4397, 4399, 4402, 4404, 4407, 4409, 4412, 4414, 4417, 4419, 4421, 4423, 4433, 4435, 4438, 4440, 4446, 4448, 4450, 4452, 4454, 4456, 4459, 4461, 4464, 4466, 4469, 4471, 4474, 4476, 4479, 4481, 4484, 4486, 4489, 4491, 4494, 4496, 4499, 4501, 4504, 4506, 4509, 4511, 4514, 4516, 4518, 4520, 4522, 4524, 4527, 4529, 4532, 4534, 4537, 4539, 4542, 4544, 4546, 4548, 4550, 4552, 4554, 4556, 4558, 4560, 4562, 4564, 4566, 4568, 4570, 4572, 4574, 4576, 4578, 4580, 4582, 4584, 4586, 4588, 4590, 4592, 4594, 4596, 4598, 4600, 4602, 4604, 4607, 4609, 4611, 4613, 4615, 4617, 4619, 4621, 4624, 4626, 4628, 4630, 4632, 4634, 4636, 4638, 4642, 4644, 4646, 4648, 4651, 4653, 4656, 4658, 4664, 4666, 4669, 4671, 4677, 4679, 4682, 4684, 4690, 4692, 4694, 4696, 4699, 4701, 4703, 4705, 4709, 4711, 4713, 4715, 4717, 4719, 4721, 4723, 4725, 4727, 4729, 4731, 4734, 4736, 4738, 4740, 4742, 4744, 4746, 4748, 4752, 4754, 4756, 4758, 4760, 4762, 4764, 4766, 4768, 4770, 4772, 4774, 4778, 4780, 4782, 4784, 4787, 4789, 4792, 4794, 4800, 4802, 4805, 4807, 4810, 4812, 4815, 4817, 4819, 4821, 4823, 4825, 4828, 4830, 4832, 4834, 4836, 4838, 4841, 4843, 4846, 4848, 4851, 4853, 4856, 4858, 4860, 4862, 4864, 4866, 4869, 4871, 4873, 4875, 4877, 4879, 4881, 4883, 4885, 4887, 4890, 4892, 4895, 4897, 4900, 4902, 4904, 4906, 4908, 4910, 4912, 4914, 4916, 4918, 4920, 4922, 4924, 4926, 4928, 4930, 4932, 4934, 4936, 4938, 4940, 4942, 4944, 4946, 4948, 4950, 4952, 4954, 4956, 4958, 4961, 4963, 4965, 4967, 4969, 4971, 4973, 4975, 4977, 4979, 4981, 4983, 4986, 4988, 4990, 4992, 4994, 4996, 4999, 5001, 5004, 5006, 5009, 5011, 5017, 5019, 5022, 5024, 5027, 5029, 5031, 5033, 5035, 5037, 5040, 5042, 5048, 5050, 5053, 5055, 5057, 5059, 5061, 5063, 5065, 5067, 5069, 5071, 5073, 5075, 5077, 5079, 5081, 5083, 5085, 5087, 5089, 5091, 5093, 5095, 5097, 5099, 5101, 5103, 5105, 5107, 5109, 5111, 5114, 5116, 5120, 5122, 5124, 5126, 5128, 5130, 5133, 5135, 5138, 5140, 5143, 5145, 5148, 5150, 5152, 5154, 5156, 5158, 5161, 5163, 5165, 5167, 5169, 5171, 5174, 5176, 5179, 5181, 5184, 5186, 5189, 5191, 5193, 5195, 5198, 5200, 5202, 5204, 5208, 5210, 5212, 5214, 5217, 5219, 5221, 5223, 5226, 5228, 5230, 5232, 5235, 5237, 5240, 5242, 5244, 5246, 5248, 5250, 5252, 5254, 5256, 5258, 5260, 5262, 5264, 5266, 5268, 5270, 5272, 5274, 5276, 5278, 5280, 5282, 5285, 5287, 5289, 5291, 5294, 5296, 5298, 5300, 5302, 5304, 5306, 5308, 5311, 5313, 5315, 5317, 5320, 5322, 5324, 5326, 5328, 5330, 5332, 5334, 5336, 5338, 5340, 5342, 5345, 5347, 5349, 5351, 5353, 5355, 5357, 5359, 5361, 5363, 5365, 5367, 5369, 5371, 5374, 5376, 5378, 5380, 5382, 5384, 5387, 5389, 5392, 5394, 5397, 5399, 5402, 5404, 5407, 5409, 5412, 5414, 5417, 5419, 5422, 5424, 5427, 5429, 5432, 5434, 5437, 5439, 5442, 5444, 5447, 5449, 5452, 5454, 5457, 5459, 5461, 5463, 5465, 5467, 5469, 5471, 5473, 5475, 5477, 5479, 5482, 5484, 5486, 5488, 5490, 5492, 5495, 5497, 5500, 5502, 5506, 5508, 5511, 5513, 5516, 5518, 5520, 5522, 5524, 5526, 5529, 5531, 5534, 5536, 5539, 5541, 5544, 5546, 5549, 5551, 5553, 5555, 5557, 5559, 5562, 5564, 5567, 5569, 5571, 5573, 5575, 5577, 5579, 5581, 5584, 5586, 5588, 5590, 5593, 5595, 5597, 5599, 5601, 5603, 5605, 5607, 5609, 5611, 5613, 5615, 5617, 5619, 5621, 5623, 5625, 5627, 5629, 5631, 5633, 5635, 5637, 5639, 5641, 5643, 5645, 5647, 5649, 5651, 5653, 5655, 5657, 5659, 5661, 5663, 5665, 5667, 5669, 5671, 5673, 5675, 5677, 5679, 5681, 5683, 5685, 5687, 5689, 5691, 5693, 5695, 5697, 5699, 5701, 5703, 5705, 5707, 5709, 5711, 5713, 5715, 5717, 5719, 5721, 5723, 5725, 5727, 5729, 5731, 5733, 5735, 5737, 5739, 5741, 5743, 5745, 5747, 5749, 5751, 5753, 5755, 5757, 5759, 5761, 5763, 5765, 5767, 5769, 5771, 5773, 5775, 5777, 5779, 5781, 5783, 5785, 5787, 5789, 5791, 5793, 5795, 5797, 5799, 5801, 5803, 5805, 5807, 5809, 5811, 5813, 5815, 5817, 5819, 5821, 5823, 5826, 5828, 5830, 5832, 5835, 5837, 5839, 5841, 5843, 5845, 5847, 5849, 5851, 5853, 5855, 5857, 5859, 5861, 5863, 5865, 5867, 5869, 5871, 5873, 5875, 5877, 5879, 5881, 5884, 5886, 5889, 5891, 5893, 5895, 5898, 5900, 5902, 5904, 5907, 5909, 5911, 5913, 5915, 5917, 5919, 5921, 5923, 5925, 5927, 5929, 5932, 5934, 5937, 5939, 5941, 5943, 5945, 5947, 5949, 5951, 5953, 5955, 5957, 5959, 5961, 5963, 5965, 5967, 5969, 5971, 5973, 5975, 5977, 5979, 5981, 5983, 5986, 5988, 5990, 5992, 5994, 5996, 5998, 6000, 6002, 6004, 6007, 6009, 6011, 6013, 6015, 6017, 6019, 6021, 6023, 6025, 6027, 6029, 6031, 6033, 6036, 6038, 6041, 6043, 6045, 6047, 6049, 6051, 6053, 6055, 6058, 6060, 6064, 6066, 6068, 6070, 6074, 6076, 6079, 6081, 6084, 6086, 6089, 6091, 6094, 6096, 6098, 6100, 6102, 6104, 6107, 6109, 6111, 6113, 6115, 6117, 6120, 6122, 6124, 6126, 6129, 6131, 6134, 6136, 6142, 6144, 6146, 6148, 6150, 6152, 6155, 6157, 6159, 6161, 6163, 6165, 6167, 6169, 6171, 6173, 6175, 6177, 6179, 6181, 6183, 6185, 6187, 6189, 6191, 6193, 6196, 6198, 6200, 6202, 6204, 6206, 6208, 6210, 6213, 6215, 6218, 6220, 6223, 6225, 6228, 6230, 6233, 6235, 6238, 6240, 6243, 6245, 6248, 6250, 6256, 6258, 6261, 6263, 6266, 6268, 6271, 6273, 6276, 6278, 6281, 6283, 6286, 6288, 6290, 6292, 6294, 6296, 6299, 6301, 6303, 6305, 6307, 6309, 6311, 6313, 6316, 6318, 6324, 6326, 6329, 6331, 6334, 6336, 6338, 6340, 6343, 6345, 6347, 6349, 6353, 6355, 6358, 6360, 6363, 6365, 6368, 6370, 6373, 6375, 6378, 6380, 6383, 6385, 6388, 6390, 6393, 6395, 6398, 6400, 6402, 6404, 6406, 6408, 6410, 6412, 6414, 6416, 6419, 6421, 6424, 6426, 6429, 6431, 6434, 6436, 6438, 6440, 6442, 6444, 6447, 6449, 6452, 6454, 6456, 6458, 6460, 6462, 6465, 6467, 6469, 6471, 6473, 6475, 6478, 6480, 6482, 6484, 6486, 6488, 6490, 6492, 6494, 6496, 6498, 6500, 6502, 6504, 6506, 6508, 6510, 6512, 6514, 6516, 6518, 6520, 6522, 6524, 6526, 6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6548, 6550, 6552, 6554, 6556, 6558, 6560, 6562, 6564, 6566, 6568, 6570, 6572, 6574, 6576, 6578, 6580, 6582, 6584, 6586, 6588, 6590, 6592, 6594, 6596, 6599, 6601, 6603, 6605, 6608, 6610, 6612, 6614, 6616, 6618, 6620, 6622, 6625, 6627, 6630, 6632, 6634, 6636, 6638, 6640, 6642, 6644, 6647, 6649, 6651, 6653, 6655, 6657, 6659, 6661, 6664, 6666, 6668, 6670, 6672, 6674, 6677, 6679, 6682, 6684, 6687, 6689, 6692, 6694, 6697, 6699, 6702, 6704, 6707, 6709, 6712, 6714, 6717, 6719, 6722, 6724, 6727, 6729, 6732, 6734, 6736, 6738, 6740, 6742, 6744, 6746, 6748, 6750, 6752, 6754, 6756, 6758, 6760, 6762, 6765, 6767, 6769, 6771, 6773, 6775, 6777, 6779, 6781, 6783, 6786, 6788, 6791, 6793, 6796, 6798, 6801, 6803, 6805, 6807, 6810, 6812, 6814, 6816, 6819, 6821, 6825, 6827, 6829, 6831, 6834, 6836, 6839, 6841, 6844, 6846, 6849, 6851, 6854, 6856, 6859, 6861, 6863, 6865, 6867, 6869, 1537, 1535, 1136, 1408, 1406, 1136, 5391, 5386, 5391, 5386, 5391, 5386, 5411, 5494, 5416, 5494, 6701, 6706, 6255, 6253, 6387, 6382, 6387, 6382, 6701, 6706, 6706, 6701, 5416, 5411, 5426, 5421, 5416, 5411, 5426, 5421, 5416, 5411, 3060, 3058, 3268, 3268, 5416, 5411, 6800, 6141, 6139, 6141, 6139, 6255, 6253, 7064, 7066, 7068, 7070, 7072, 7074, 7076, 7078, 6800, 4429, 4427, 4442, 4437, 4660, 4655, 4660, 4655, 4673, 4668, 4676, 4674, 4660, 4655, 4660, 4655, 4660, 4655, 4660, 4655, 4689, 4687, 4689, 4687, 4660, 4655, 4809, 4804, 4429, 4427, 4442, 4437, 4660, 4655, 4660, 4655, 4660, 4655, 4660, 4655, 4660, 4655, 4660, 4655, 4429, 4427, 4442, 4437, 4443, 4445, 4429, 4427, 4442, 4437, 4443, 4445, 4416, 4416, 4442, 4437, 4388, 4388, 4429, 4427, 4432, 4430, 4429, 4427, 4432, 4430, 4797, 4799, 4708, 4698, 4799, 4797, 5456, 5451, 5456, 5451, 5416, 5411, 5047, 5045, 5047, 5045, 5391, 5386, 5391, 5386, 5416, 5411, 5416, 5411, 3220, 2478, 2511, 2478, 2511, 3220, 3477, 3479, 815, 3831, 3826, 3831, 3826, 816, 3831, 3826, 3796, 3791, 3060, 3058, 3060, 3058, 2758, 2511, 2511, 2478, 2478, 3290, 1300, 1295, 1310, 1305, 1320, 1315, 1300, 1295, 1310, 1305, 1204, 1310, 1305, 1204, 1320, 1315, 1320, 1315, 1360, 1358, 1360, 1358, 1405, 1400, 1408, 1406, 1360, 1358, 1360, 1358, 1405, 1400, 1408, 1406, 1360, 1358, 1360, 1358, 1405, 1400, 1408, 1406, 1360, 1358, 1360, 1358, 1408, 1406, 1272, 1267, 1272, 1267, 1272, 1267, 1272, 1267, 1320, 1315, 1320, 1315, 1360, 1358, 1360, 1358, 1408, 1406, 1408, 1406, 1537, 1535, 1537, 1535, 1987, 1987, 1838, 1838, 2070, 2098, 2001, 2013, 2001, 2013, 2070, 2098, 2260, 2258, 2191, 2189, 2191, 2189, 2260, 2258, 2291, 2289, 2313, 2311, 2313, 2311, 2314, 2291, 2289, 2313, 2311, 2313, 2311, 2316, 2289, 2291, 2291, 2289, 2313, 2311, 2313, 2311, 2316, 2314, 3060, 3058, 3278, 3273, 3278, 3273, 3268, 3266, 2930, 2930, 2925, 3060, 3058, 3164, 3159, 3164, 3159, 3235, 3235, 2758, 2925, 2925, 2988, 2988, 3060, 3058, 3014, 3014, 3060, 3058, 3144, 3144, 3268, 3266, 3268, 3266, 3290, 3403, 3398, 3403, 3398, 3550, 3552, 3477, 3479, 3479, 3477, 3541, 3541, 3552, 3550, 3887, 3892, 3831, 3826, 3831, 3826, 3579, 3578, 3887, 3892, 3796, 3791, 3796, 3791, 3796, 3791, 3821, 3816, 3821, 3816, 3831, 3826, 3796, 3791, 3796, 3791, 3821, 3816, 3831, 3826, 3831, 3826, 5406, 5406, 6093, 6088, 6093, 6088, 6255, 6253, 5016, 5014, 5391, 5386, 5391, 5386, 4445, 4443, 4687, 4689, 4689, 4687, 4429, 4427, 4442, 4437, 4429, 4427, 4442, 4437, 4429, 4427, 4432, 4430, 4429, 4427, 4432, 4430, 4445, 4443, 4429, 4427, 4432, 4430, 4429, 4427, 4432, 4430, 4445, 4443, 4689, 4687, 4698, 4708, 4663, 4661, 4663, 4661, 4673, 4668, 4676, 4674, 4663, 4661, 4663, 4661, 4673, 4668, 4676, 4674, 4663, 4661, 4663, 4661, 4676, 4674, 4689, 4687, 4698, 4708, 4797, 4799, 4799, 4797, 4809, 4804, 4799, 4797, 4799, 4797, 4809, 4804, 4777, 4799, 4797, 4799, 4797, 4777, 4799, 4797, 4799, 4797, 5016, 5014, 5008, 5008, 5045, 5047, 5016, 5014, 5016, 5014, 5047, 5045, 5047, 5045, 5119, 5119, 5207, 5207, 5391, 5386, 5391, 5386, 5373, 5373, 5456, 5451, 5456, 5451, 5481, 5481, 5505, 5505, 6320, 6315, 6320, 6315, 6323, 6321, 6320, 6315, 6320, 6315, 6323, 6321, 6731, 6726, 6731, 6726, 9144, 9146, 9148, 9150, 6255, 6253, 9166, 9168, 9170, 9172, 9174, 9176, 9178, 9180, 9182, 9184, 9186, 9188, 6141, 6139, 6141, 6139, 6255, 6253, 6320, 6315, 6320, 6315, 6323, 6321, 6315, 6320, 6320, 6315, 6320, 6315, 6320, 6315, 6323, 6321, 6320, 6315, 6320, 6315, 6323, 6321, 6451, 6446, 6451, 6446, 6711, 6711, 9355, 9357, 9359, 9361, 9363, 9365, 9367, 9369, 9371, 9373, 9375, 9377, 9379, 9381, 9383, 9385, 9387, 9389, 9391, 9393, 9396, 9398, 9400, 9402, 6141, 6139, 6141, 6139, 6073, 6073, 6141, 6139, 6141, 6139, 6255, 6253, 6255, 6253, 6255, 6253, 6323, 6321, 6323, 6321, 6323, 6321, 6352, 6352, 6858, 6858, 9573, 9575, 9578, 9580, 9582, 9584, 9586, 9588, 9590, 9592, 9594, 9596, 9665, 9667, 9670, 9672, 9678, 9680, 9682, 9684, 9687, 9689, 9692, 9694, 9700, 9702, 9705, 9707, 9710, 9712, 9715, 9717, 9577, 9674, 9577, 9675, 9677, 9674, 9697, 9697, 9726, 9724, 9721, 9726, 9724, 9723, 9726, 9724, 9699, 9699, 9723, 9721, 9697, 9699, 9697, 9699, 9723, 9721, 9723, 9721, 9726, 9724, 9677, 9675, 9677, 9675, 9699, 9697, 9699, 9697, 9723, 9721, 9726, 9724, 9723, 9721, 9726, 9724, 253, 254, 255, 13824, 13826, 13828, 13830, 13832, 13834, 13836, 13838, 13840, 13842, 13844, 13846, 13848, 13850, 13852, 13854, 13856, 13858, 13860, 13862, 13864, 13866, 13868, 13870, 13872, 13874, 13876, 13878, 13880, 13882, 13884, 13886, 13888, 13890, 13892, 13894, 13896, 13898, 13900, 13902, 13904, 13906, 13908, 13910, 13912, 13914, 13916, 13918, 13920, 13922, 13924, 13926, 13928, 13930, 13932, 13934, 13936, 13938, 13940, 13942, 13944, 13946, 13948, 13950, 13952, 13954, 13956, 13958, 13960, 13962, 13964, 13966, 13968, 13970, 13972, 13974, 13976, 13978, 13980, 13982, 13984, 13986, 13988, 13990, 13992, 13994, 13996, 13998, 14000, 14002, 14004, 14006, 14008, 14010, 14012, 14014, 14016, 14018, 14020, 14022, 14024, 14026, 14028, 14030, 14032, 14034, 14036, 14038, 14040, 14042, 14044, 14046, 14048, 14050, 14052, 14054, 14056, 14058, 14060, 14062, 14064, 14066, 14068, 14070, 14072, 14074, 14076, 14078, 14080, 14082, 14084, 14086, 14088, 14090, 14092, 14094, 14096, 14098, 14100, 14102, 14104, 14106, 14108, 14110, 14112, 14114, 14116, 14118, 14120, 14122, 14124, 14126, 14128, 14130, 14132, 14134, 14136, 14138, 14140, 14142, 14144, 14146, 14148, 14150, 14152, 14154, 14156, 14158, 14160, 14162, 14164, 14166, 14168, 14170, 14172, 14174, 14176, 14178, 14180, 14182, 14184, 14186, 14188, 14190, 14192, 14194, 14196, 14198, 14200, 14202, 14204, 14206, 14208, 14210, 14212, 14214, 14216, 14218, 14220, 14222, 14224, 14226, 14228, 14230, 14232, 14234, 14236, 14238, 14240, 14242, 14244, 14246, 14248, 14250, 14252, 14254, 14256, 14258, 14260, 14262, 14264, 14266, 14268, 14270, 14272, 14274, 14276, 14278, 14280, 14282, 14284, 14286, 14288, 14290, 14292, 14294, 14296, 14298, 14300, 14302, 14304, 14306, 14308, 14310, 14312, 14314, 14316, 14318, 14320, 14322, 14324, 14326, 14328, 14330, 14332, 14334, 14336, 14338, 14340, 14342, 14344, 14346, 14348, 14350, 14352, 14354, 14356, 14358, 14360, 14362, 14364, 14366, 14368, 14370, 14372, 14374, 14376, 14378, 14380, 14382, 14384, 14386, 14388, 14390, 14392, 14394, 14396, 14398, 14400, 14402, 14404, 14406, 14408, 14410, 14412, 14414, 14416, 14418, 14420, 14422, 14424, 14426, 14428, 14430, 14432, 14434, 14436, 14438, 14440, 14442, 14444, 14446, 14448, 14450, 14452, 14454, 14456, 14458, 14460, 14462, 14464, 14466, 14468, 14470, 14472, 14474, 14476, 14478, 14480, 14482, 14484, 14486, 14488, 14490, 14492, 14494, 14496, 14498, 14500, 14502, 14504, 14506, 14508, 14510, 14512, 14514, 14516, 14518, 14520, 14522, 14524, 14526, 14528, 14530, 14532, 14534, 14536, 14538, 14540, 14542, 14544, 14546, 14548, 14550, 14552, 14554, 14556, 14558, 14560, 14562, 14564, 14566, 14568, 14570, 14572, 14574, 14576, 14578, 14580, 14582, 14584, 14586, 14588, 14590, 14592, 14594, 14596, 14598, 14600, 14602, 14604, 14606, 14608, 14610, 14612, 14614, 14616, 14618, 14620, 14622, 14624, 14626, 14628, 14630, 14632, 14634, 14636, 14638, 14640, 14642, 14644, 14646, 14648, 14650, 14652, 14654, 14656, 14658, 14660, 14662, 14664, 14666, 14668, 14670, 14672, 14674, 14676, 14678, 14680, 14682, 14684, 14686, 14688, 14690, 14692, 14694, 14696, 14698, 14700, 14702, 14704, 14706, 14708, 14710, 14712, 14714, 14716, 14718, 14720, 14722, 14724, 14726, 14728, 14730, 14732, 14734, 14736, 14738, 14740, 14742, 14744, 14746, 14748, 14750, 14752, 14754, 14756, 14758, 14760, 14762, 14764, 14766, 14768, 14770, 14772, 14774, 14776, 14778, 14780, 14782, 14784, 14786, 14788, 14790, 14792, 14794, 14796, 14798, 14800, 14802, 14804, 14806, 14808, 14810, 14812, 14814, 14816, 14818, 14820, 14822, 14824, 14826, 14828, 14830, 14832, 14834, 14836, 14838, 14840, 14842, 14844, 14846, 14848, 14850, 14852, 14854, 14856, 14858, 14860, 14862, 14864, 14866, 14868, 14870, 14872, 14874, 14876, 14878, 14880, 14882, 14884, 14886, 14888, 14890, 14892, 14894, 14896, 14898, 14900, 14902, 14904, 14906, 14908, 14910, 14912, 14914, 14916, 14918, 14920, 14922, 14924, 14926, 14928, 14930, 14932, 14934, 14936, 14938, 14940, 14942, 14944, 14946, 14948, 14950, 14952, 14954, 14956, 14958, 14960, 14962, 14964, 14966, 14968, 14970, 14972, 14974, 14976, 14978, 14980, 14982, 14984, 14986, 14988, 14990, 14992, 14994, 14996, 14998, 15000, 15002, 15004, 15006, 15008, 15010, 15012, 15014, 15016, 15018, 15020, 15022, 15024, 15026, 15028, 15030, 15032, 15034, 15036, 15038, 15040, 15042, 15044, 15046, 15048, 15050, 15052, 15054, 15056, 15058, 15060, 15062, 15064, 15066, 15068, 15070, 15072, 15074, 15076, 15078, 15080, 15082, 15084, 15086, 15088, 15090, 15092, 15094, 15096, 15098, 15100, 15102, 15104, 15106, 15108, 15110, 15112, 15114, 15116, 15118, 15120, 15122, 15124, 15126, 15128, 15130, 15132, 15134, 15136, 15138, 15140, 15142, 15144, 15146, 15148, 15150, 15152, 15154, 15156, 15158, 15160, 15162, 15164, 15166, 15168, 15170, 15172, 15174, 15176, 15178, 15180, 15182, 15184, 15186, 15188, 15190, 15192, 15194, 15196, 15198, 15200, 15202, 15204, 15206, 15208, 15210, 15212, 15214, 15216, 15218, 15220, 15222, 15224, 15226, 15228, 15230, 15232, 15234, 15236, 15238, 15240, 15242, 15244, 15246, 15248, 15250, 15252, 15254, 15256, 15258, 15260, 15262, 15264, 15266, 15268, 15270, 15272, 15274, 15276, 15278, 15280, 15282, 15284, 15286, 15288, 15290, 15292, 15294, 15296, 15298, 15300, 15302, 15304, 15306, 15308, 15310, 15312, 15314, 15316, 15318, 15320, 15322, 15324, 15326, 15328, 15330, 15332, 15334, 15336, 15338, 15340, 15342, 15344, 15346, 15348, 15350, 15352, 15354, 15356, 15358, 15360, 15362, 15364, 15366, 15368, 15370, 15372, 15374, 15376, 15378, 15380, 15382, 15384, 15386, 15388, 15390, 15392, 15394, 15396, 15398, 15400, 15402, 15404, 15406, 15408, 15410, 15412, 15414, 15416, 15418, 15420, 15422, 15424, 15426, 15428, 15430, 15432, 15434, 15436, 15438, 15440, 15442, 15444, 15446, 15448, 15450, 15452, 15454, 15456, 15458, 15460, 15462, 15464, 15466, 15468, 15470, 15472, 15474, 15476, 15478, 15480, 15482, 15484, 15486, 15488, 15490, 15492, 15494, 15496, 15498, 15500, 15502, 15504, 15506, 15508, 15510, 15512, 15514, 15516, 15518, 15520, 15522, 15524, 15526, 15528, 15530, 15532, 15534, 15536, 15538, 15540, 15542, 15544, 15546, 15548, 15550, 15552, 15554, 15556, 15558, 15560, 15562, 15564, 15566, 15568, 15570, 15572, 15574, 15576, 15578, 15580, 15582, 15584, 15586, 15588, 15590, 15592, 15594, 15596, 15598, 15600, 15602, 15604, 15606, 15608, 15610, 15612, 15614, 15616, 15618, 15620, 15622, 15624, 15626, 15628, 15630, 15632, 15634, 15636, 15638, 15640, 15642, 15644, 15646, 15648, 15650, 15652, 15654, 15656, 15658, 15660, 15662, 15664, 15666, 15668, 15670, 15672, 15674, 15676, 15678, 15680, 15682, 15684, 15686, 15688, 15690, 15692, 15694, 15696, 15698, 15700, 15702, 15704, 15706, 15708, 15710, 15712, 15714, 15716, 15718, 15720, 15722, 15724, 15726, 15728, 15730, 15732, 15734, 15736, 15738, 15740, 15742, 15744, 15746, 15748, 15750, 15752, 15754, 15756, 15758, 15760, 15762, 15764, 15766, 15768, 15770, 15772, 15774, 15776, 15778, 15780, 15782, 15784, 15786, 15788, 15790, 15792, 15794, 15796, 15798, 15800, 15802, 15804, 15806, 15808, 15810, 15812, 15814, 15816, 15818, 15820, 15822, 15824, 15826, 15828, 15830, 15832, 15834, 15836, 15838, 15840, 15842, 15844, 15846, 15848, 15850, 15852, 15854, 15856, 15858, 15860, 15862, 15864, 15866, 15868, 15870, 15872, 15874, 15876, 15878, 15880, 15882, 15884, 15886, 15888, 15890, 15892, 15894, 15896, 15898, 15900, 15902, 15904, 15906, 15908, 15910, 15912, 15914, 15916, 15918, 15920, 15922, 15924, 15926, 15928, 15930, 15932, 15934, 15936, 15938, 15940, 15942, 15944, 15946, 15948, 15950, 15952, 15954, 15956, 15958, 15960, 15962, 15964, 15966, 15968, 15970, 15972, 15974, 15976, 15978, 15980, 15982, 15984, 15986, 15988, 15990, 15992, 15994, 15996, 15998, 16000, 16002, 16004, 16006, 16008, 16010, 16012, 16014, 16016, 16018, 16020, 16022, 16024, 16026, 16028, 16030, 16032, 16034, 16036, 16038, 16040, 16042, 16044, 16046, 16048, 16050, 16052, 16054, 16056, 16058, 16060, 16062, 16064, 16066, 16068, 16070, 16072, 16074, 16076, 16078, 16080, 16082, 16084, 16086, 16088, 16090, 16092, 16094, 16096, 16098, 16100, 16102, 16104, 16106, 16108, 16110, 16112, 16114, 16116, 16118, 16120, 16122, 16124, 16126, 16128, 16130, 16132, 16134, 16136, 16138, 16140, 16142, 16144, 16146, 16148, 16150, 16152, 16154, 16156, 16158, 16160, 16162, 16164, 16166, 16168, 16170, 16172, 16174, 16176, 16178, 16180, 16182, 16184, 16186, 16188, 16190, 16192, 16194, 16196, 16198, 16200, 16202, 16204, 16206, 16208, 16210, 16212, 16214, 16216, 16218, 16220, 16222, 16224, 16226, 16228, 16230, 16232, 16234, 16236, 16238, 16240, 16242, 16244, 16246, 16248, 16250, 16252, 16254, 16256, 16258, 16260, 16262, 16264, 16266, 16268, 16270, 16272, 16274, 16276, 16278, 16280, 16282, 16284, 16286, 16288, 16290, 16292, 16294, 16296, 16298, 16300, 16302, 16304, 16306, 16308, 16310, 16312, 16314, 16316, 16318, 16320, 16322, 16324, 16326, 16328, 16330, 16332, 16334, 16336, 16338, 16340, 16342, 16344, 16346, 16348, 16350, 16352, 16354, 16356, 16358, 16360, 16362, 16364, 16366, 16368, 16370, 16372, 16374, 16376, 16378, 16380, 16382, 16384, 16386, 16388, 16390, 16392, 16394, 16396, 16398, 16400, 16402, 16404, 16406, 16408, 16410, 16412, 16414, 16416, 16418, 16420, 16422, 16424, 16426, 16428, 16430, 16432, 16434, 16436, 16438, 16440, 16442, 16444, 16446, 16448, 16450, 16452, 16454, 16456, 16458, 16460, 16462, 16464, 16466, 16468, 16470, 16472, 16474, 16476, 16478, 16480, 16482, 16484, 16486, 16488, 16490, 16492, 16494, 16496, 16498, 16500, 16502, 16504, 16506, 16508, 16510, 16512, 16514, 16516, 16518, 16520, 16522, 16524, 16526, 16528, 16530, 16532, 16534, 16536, 16538, 16540, 16542, 16544, 16546, 16548, 16550, 16552, 16554, 16556, 16558, 16560, 16562, 16564, 16566, 16568, 16570, 16572, 16574, 16576, 16578, 16580, 16582, 16584, 16586, 16588, 16590, 16592, 16594, 16596, 16598, 16600, 16602, 16604, 16606, 16608, 16610, 16612, 16614, 16616, 16618, 16620, 16622, 16624, 16626, 16628, 16630, 16632, 16634, 16636, 16638, 16640, 16642, 16644, 16646, 16648, 16650, 16652, 16654, 16656, 16658, 16660, 16662, 16664, 16666, 16668, 16670, 16672, 16674, 16676, 16678, 16680, 16682, 16684, 16686, 16688, 16690, 16692, 16694, 16696, 16698, 16700, 16702, 16704, 16706, 16708, 16710, 16712, 16714, 16716, 16718, 16720, 16722, 16724, 16726, 16728, 16730, 16732, 16734, 16736, 16738, 16740, 16742, 16744, 16746, 16748, 16750, 16752, 16754, 16756, 16758, 16760, 16762, 16764, 16766, 16768, 16770, 16772, 16774, 16776, 16778, 16780, 16782, 16784, 16786, 16788, 16790, 16792, 16794, 16796, 16798, 16800, 16802, 16804, 16806, 16808, 16810, 16812, 16814, 16816, 16818, 16820, 16822, 16824, 16826, 16828, 16830, 16832, 16834, 16836, 16838, 16840, 16842, 16844, 16846, 16848, 16850, 16852, 16854, 16856, 16858, 16860, 16862, 16864, 16866, 16868, 16870, 16872, 16874, 16876, 16878, 16880, 16882, 16884, 16886, 16888, 16890, 16892, 16894, 16896, 16898, 16900, 16902, 16904, 16906, 16908, 16910, 16912, 16914, 16916, 16918, 16920, 16922, 16924, 16926, 16928, 16930, 16932, 16934, 16936, 16938, 16940, 16942, 16944, 16946, 16948, 16950, 16952, 16953, 16954, 16955, 16956, 16957, 16958, 16959, 16960, 16961, 16962, 16963, 16964, 16965, 16966, 16967, 16968, 16969, 16970, 16971, 16972, 16973, 16974, 16975, 16976, 16977, 16978, 16979, 16980, 16981, 16982, 16983, 16984, 16985, 16986, 16987, 16988, 16989, 16990, 16991, 16992, 16993, 16994, 16995, 16996, 16997, 16998, 16999, 17000, 17001, 17002, 17003, 17005, 17007, 17009, 17011, 17012, 17013, 17014, 17015, 17016, 17017, 17018, 17019, 17020, 17021, 17022, 17023, 17024, 17025, 17026, 17027, 17028, 17029, 17030, 17031, 17032, 17033, 17034, 17035, 17036, 17037, 17038, 17039, 17040, 17041, 17042, 17043, 17044, 17045, 17046, 17047, 17048, 17049, 17050, 17051, 17052, 17053, 17054, 17055, 17056, 17057, 17058, 17059, 17060, 17061, 17062, 17063, 17064, 17065, 17066, 17067, 17068, 17069, 17070, 17071, 17072, 17073, 17074, 17075, 17076, 17077, 17078, 17079, 17080, 17081, 17082, 17083, 17084, 17085, 17086, 17087, 17088, 17089, 17090, 17091, 17092, 17093, 17094, 17095, 17096, 17097, 17098, 17099, 17100, 17101, 17102, 17103, 17104, 17105, 17106, 17107, 17108, 17109, 17110, 17111, 17112, 17113, 17114, 17115, 17116, 17117, 17118, 17119, 17120, 17121, 17122, 17123, 17124, 17125, 17126, 17127, 17128, 17129, 17130, 17131, 17132, 17133, 17134, 17135, 17136, 17137, 17138, 17139, 17140, 17141, 17142, 17143, 17144, 17145, 17146, 17147, 17148, 17149, 17150, 17151, 17152, 17153, 17154, 17155, 17156, 17157, 17158, 17159, 17160, 17161, 17162, 17163, 17164, 17165, 17166, 17167, 17168, 17169, 17170, 17171, 17172, 17173, 17174, 17175, 17176, 17177, 17178, 17179, 17180, 17181, 17182, 17183, 17184, 17185, 17186, 17187, 17188, 17189, 17190, 17191, 17192, 17193, 17194, 17195, 17196, 17197, 17198, 17199, 17200, 17201, 17202, 17203, 17204, 17205, 17206, 17207, 17208, 17209, 17210, 17211, 17212, 17213, 17214, 17215, 17216, 17217, 17218, 17219, 17220, 17221, 17222, 17223, 17224, 17225, 17226, 17227, 17228, 17229, 17230, 17231, 17232, 17233, 17234, 17235, 17236, 17237, 17238, 17239, 17240, 17241, 17242, 17243, 17244, 17245, 17246, 17247, 17248, 17249, 17250, 17251, 17252, 17253, 17254, 17255, 17256, 17257, 17258, 17259, 17260, 17261, 17262, 17263, 17264, 17265, 17266, 17267, 17268, 17269, 17270, 17271, 17272, 17273, 17274, 17275, 17276, 17277, 17278, 17279, 17280, 17281, 17282, 17283, 17284, 17285, 17286, 17287, 17288, 17289, 17290, 17291, 17292, 17293, 17294, 17295, 17296, 17297, 17298, 17299, 17300, 17301, 17302, 17303, 17304, 17305, 17306, 17307, 17308, 17309, 17310, 17311, 17312, 17313, 17314, 17315, 17316, 17317, 17318, 17319, 17320, 17321, 17322, 17323, 17324, 17325, 17326, 17327, 17328, 17329, 17330, 17331, 17332, 17333, 17334, 17335, 17336, 17337, 17338, 17339, 17340, 17341, 17342, 17343, 17344, 17345, 17346, 17347, 17348, 17349, 17350, 17351, 17352, 17353, 17354, 17355, 17356, 17357, 17358, 17359, 17360, 17361, 17362, 17363, 17364, 17365, 17366, 17367, 17368, 17369, 17370, 17371, 17372, 17373, 17374, 17375, 17376, 17377, 17378, 17379, 17380, 17381, 17382, 17383, 17384, 17385, 17386, 17387, 17388, 17389, 17390, 17391, 17392, 17393, 17394, 17395, 17396, 17397, 17398, 17399, 17400, 17401, 17402, 17403, 17404, 17405, 17406, 17407, 17408, 17409, 17410, 17411, 17412, 17413, 17414, 17415, 17416, 17417, 17418, 17419, 17420, 17421, 17422, 17423, 17424, 17425, 17426, 17427, 17428, 17429, 17430, 17431, 17432, 17433, 17434, 17435, 17436, 17437, 17438, 17439, 17440, 17441, 17442, 17443, 17444, 17445, 17446, 17447, 17448, 17449, 17450, 17451, 17452, 17453, 17454, 17455, 17456, 17457, 17458, 17459, 17460, 17461, 17462, 17463, 17464, 17465, 17466, 17467, 17468, 17469, 17470, 17471, 17472, 17473, 17474, 17475, 17476, 17477, 17478, 17479, 17480, 17481, 17483, 17485, 17486, 17487, 17489, 17491, 17493, 17495, 17497, 17499, 17500, 17501, 17502, 17503, 17504, 17505, 17506, 17507, 17508, 17509, 17510, 17511, 17512, 17513, 17514, 17515, 17516, 17517, 17518, 17519, 17520, 17521, 17522, 17523, 17524, 17525, 17526, 17527, 17528, 17529, 17530, 17531, 17532, 17533, 17535, 17537, 17539, 17541, 17543, 17545, 17547, 17549, 17551, 17553, 17555, 17557, 17558, 17559, 17560, 17561, 17562, 17563, 17564, 17565, 17566, 17567, 17568, 17569, 17570, 17571, 17572, 17573, 17574, 17575, 17576, 17577, 17578, 17579, 17580, 17581, 17582, 17583, 17585, 17587, 17589, 17591, 17593, 17595, 17597, 17599, 17601, 17603, 17605, 17607, 17609, 17611, 17613, 17615, 17616, 17617, 17618, 17619, 17620, 17621, 17622, 17623, 17624, 17625, 17626, 17627, 17628, 17629, 17630, 17631, 17632, 17633, 17634, 17635, 17636, 17637, 17638, 17639, 17640, 17641, 17642, 17643, 17644, 17645, 17646, 17647, 17648, 17649, 17650, 17651, 17652, 17653, 17654, 17655, 17656, 17657, 17658, 17659, 17660, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 1136, 19228, 1560, 1555, 1550, 1405, 1400, 19231, 19234, 19236, 19238, 5481, 5118, 5113, 5118, 5113, 18927, 5515, 5510, 17674, 18927, 19244, 6252, 6247, 19246, 19248, 6397, 6392, 17680, 19250, 6795, 6790, 6785, 6823, 6818, 19153, 6838, 6833, 6843, 6853, 6848, 6853, 6848, 6795, 6790, 6785, 6795, 6790, 6800, 6823, 6818, 19153, 6795, 6790, 6785, 6795, 6790, 6800, 6823, 6818, 19162, 6833, 6838, 6843, 19171, 6871, 19252, 19254, 19256, 19258, 19260, 19262, 19264, 2912, 2897, 3047, 3042, 3230, 3225, 3245, 3240, 3255, 3245, 3240, 3250, 2988, 3052, 3042, 3047, 3052, 19266, 3057, 3057, 3278, 3273, 3235, 3220, 2912, 3273, 3230, 3278, 18883, 5386, 5391, 5401, 5396, 5373, 18890, 5391, 5386, 5401, 5396, 5406, 19270, 5426, 5421, 5436, 5431, 5446, 5441, 6785, 6083, 6078, 6093, 6088, 18565, 6106, 6040, 6035, 6119, 6133, 6138, 19273, 6062, 6057, 6083, 6078, 6093, 6088, 19042, 6106, 6040, 6035, 6119, 6133, 6138, 19275, 6212, 6217, 6222, 6227, 6237, 6232, 6242, 6252, 6247, 19277, 6265, 6260, 6270, 17713, 4388, 19284, 4432, 4430, 19286, 4468, 4463, 4458, 4503, 4498, 4513, 4508, 17725, 4388, 19288, 19290, 19292, 19294, 19296, 19298, 19300, 19302, 4686, 4681, 19304, 4686, 4681, 19306, 17732, 17734, 19308, 4796, 4791, 19310, 17738, 4827, 17741, 4840, 17744, 4388, 19312, 4430, 4432, 19314, 4443, 4445, 4370, 4365, 4375, 17752, 4388, 4483, 4478, 4493, 4488, 4493, 4488, 19316, 19318, 19320, 19322, 19324, 19326, 17761, 4827, 17764, 4840, 19328, 4432, 4430, 19330, 19332, 19334, 4432, 4430, 19336, 19338, 4483, 4478, 4493, 4488, 4503, 4498, 4513, 4508, 4536, 4531, 4401, 4411, 4411, 4432, 4430, 19342, 4443, 4445, 17787, 17789, 19346, 19348, 19350, 19352, 4442, 4437, 4445, 4443, 4468, 4463, 4483, 4478, 4493, 4488, 4503, 4498, 4513, 4508, 4536, 4531, 4541, 4526, 4660, 4655, 4676, 4674, 613, 4827, 613, 17814, 19356, 4791, 4796, 19358, 4796, 4791, 4791, 4796, 646, 646, 647, 647, 5515, 5510, 19360, 5515, 5510, 19362, 5533, 5528, 5344, 5548, 5543, 5548, 5543, 5548, 5543, 5494, 4180, 5561, 4180, 5561, 5515, 5510, 18920, 5548, 5543, 18927, 4180, 5561, 5566, 18883, 5386, 5391, 5401, 5396, 5373, 18890, 5391, 5386, 5401, 5396, 5406, 19364, 5426, 5421, 5436, 5431, 5446, 5441, 680, 4960, 19366, 5052, 5044, 680, 19368, 5052, 5044, 18853, 19370, 18851, 19372, 5401, 5396, 5401, 5396, 19374, 19376, 5426, 5421, 4180, 5561, 4180, 5561, 4180, 5561, 2018, 2108, 2103, 2011, 2006, 2023, 2108, 2103, 3266, 3278, 3273, 3283, 19379, 19381, 3164, 3159, 3268, 3373, 3368, 3383, 3378, 3393, 3388, 3413, 3408, 3423, 3418, 3502, 3497, 3507, 3502, 3497, 3492, 3766, 3761, 3776, 3771, 3786, 3781, 3796, 3791, 18478, 3821, 3816, 19387, 3821, 3816, 19389, 18478, 3821, 3816, 3821, 3816, 19392, 3786, 3781, 19394, 2907, 2902, 2912, 2907, 2902, 2897, 2988, 3037, 3032, 3047, 3042, 3057, 3052, 19396, 3037, 3032, 3042, 3037, 3032, 3047, 3057, 3052, 19398, 3265, 3113, 3268, 3266, 3278, 3273, 3283, 3278, 3273, 3288, 3113, 3278, 3273, 3288, 3283, 3278, 3273, 3283, 3278, 3273, 3288, 3245, 3240, 3255, 3250, 3265, 3268, 3266, 3278, 3273, 3288, 3283, 2478, 2511, 3393, 3388, 3354, 3349, 3403, 3398, 3446, 3441, 1262, 1257, 1272, 1267, 17970, 1285, 19406, 19408, 19410, 19412, 19414, 19417, 19420, 1262, 1257, 1272, 1267, 17951, 1252, 1310, 1305, 1320, 1315, 1262, 1257, 1272, 1267, 17915, 1252, 1204, 1300, 1295, 1310, 1305, 19422, 1330, 1325, 17982, 1357, 1352, 19424, 1357, 1352, 19426, 1042, 1373, 1042, 19428, 19430, 1330, 1325, 17982, 1357, 1352, 19432, 1357, 1352, 19434, 1043, 1373, 1043, 1386, 19436, 19438, 1330, 1325, 17982, 1357, 1352, 19440, 1357, 1352, 19442, 17988, 1373, 17991, 1386, 19444, 19446, 1330, 1325, 1063, 1058, 1357, 1352, 19448, 1357, 1352, 19450, 17988, 1373, 17991, 1386, 1405, 1400, 19452, 17924, 17926, 1452, 1447, 17930, 1490, 1485, 1500, 1495, 1510, 1505, 1136, 1262, 1257, 19454, 1262, 1257, 19456, 17939, 1252, 1262, 1257, 19458, 1262, 1257, 19460, 17944, 1252, 1204, 1300, 1295, 1310, 1305, 19462, 1262, 1257, 1272, 1267, 17951, 1252, 1204, 1300, 1295, 1310, 1305, 19464, 1262, 1257, 1272, 1267, 17957, 1252, 1262, 1257, 1272, 1267, 17963, 1252, 1262, 1257, 1272, 1267, 17970, 1285, 1290, 1300, 1295, 1310, 1305, 1320, 1315, 1330, 1325, 17982, 1357, 1352, 19466, 1357, 1352, 19468, 17988, 1373, 17991, 1386, 1405, 1400, 19470, 1405, 1400, 19472, 17998, 18000, 1434, 1429, 18004, 1452, 1447, 18008, 1470, 1465, 1480, 1475, 1490, 1485, 1500, 1495, 1510, 1505, 1515, 1534, 1529, 19474, 1534, 1529, 19476, 1560, 1555, 1550, 1560, 1555, 1565, 18030, 1982, 1977, 2023, 2018, 2033, 2028, 2038, 18039, 2096, 2091, 1902, 1897, 18044, 18045, 1982, 1977, 1982, 1977, 2011, 2006, 2023, 2018, 2033, 2028, 2043, 18058, 2096, 2091, 2098, 1902, 1897, 1892, 1902, 1897, 1930, 1925, 18068, 2023, 2018, 18072, 2204, 2219, 2288, 2283, 2291, 2289, 2305, 2310, 2313, 2311, 2316, 2314, 2326, 2321, 2336, 2316, 2314, 2321, 2316, 2314, 2326, 2336, 2288, 2283, 2291, 2289, 2305, 2310, 2313, 2311, 2316, 2314, 2326, 2321, 2341, 2316, 2314, 2321, 2316, 2314, 2326, 2341, 1902, 1897, 1930, 1925, 1930, 1925, 1982, 1977, 2061, 2056, 1902, 1897, 1892, 1902, 1897, 1907, 1930, 1925, 18115, 1930, 1925, 18118, 1982, 1977, 1987, 1982, 1977, 1992, 2011, 2006, 2011, 2006, 1982, 1977, 1992, 1987, 2011, 2006, 2011, 2006, 2023, 2018, 2033, 2028, 2043, 2038, 18143, 2061, 2056, 2096, 2091, 2108, 2103, 18151, 2096, 2091, 2108, 2103, 2188, 2183, 2189, 2188, 2183, 2191, 18163, 2204, 2219, 18182, 2232, 18169, 2247, 2257, 2252, 19490, 2188, 2183, 19492, 2188, 2183, 19494, 2214, 2209, 2204, 2214, 2209, 2219, 18182, 2232, 2242, 2237, 2247, 2257, 2252, 19496, 2288, 2283, 2288, 2283, 2288, 2283, 19498, 2310, 2305, 19500, 2310, 2305, 19502, 2326, 2321, 2331, 2341, 2336, 2288, 2283, 2288, 2283, 19505, 2310, 2305, 19507, 2310, 2305, 19509, 2326, 2321, 2331, 2341, 2336, 2288, 2283, 2288, 2283, 2288, 2283, 19514, 2310, 2305, 19516, 2310, 2305, 19518, 19520, 2326, 2321, 2331, 2341, 2336, 18282, 18362, 18364, 2912, 18205, 2988, 18282, 18362, 18364, 3037, 3032, 3047, 3042, 19522, 18211, 2930, 2925, 2897, 18216, 18218, 18220, 2930, 18223, 2962, 18226, 2975, 19524, 3245, 3245, 3265, 3113, 19526, 3174, 3169, 3174, 3169, 3202, 3197, 3240, 3250, 3240, 3265, 3113, 19528, 2478, 3225, 3225, 3245, 3240, 3265, 3113, 3278, 3273, 3288, 3283, 2511, 2907, 2902, 2897, 2907, 2902, 2912, 2532, 3037, 3032, 3047, 3042, 3057, 3052, 3060, 3058, 2565, 2993, 3060, 3058, 2907, 2902, 18263, 18265, 18267, 19531, 2939, 18270, 2988, 18282, 18362, 18364, 3027, 3037, 3032, 3042, 3037, 3032, 3047, 3057, 3052, 19533, 18356, 2988, 18282, 18362, 18364, 3027, 3032, 3037, 3042, 3047, 3057, 3052, 3154, 3149, 19535, 3154, 3149, 19537, 3174, 3169, 3174, 3169, 3207, 3230, 3230, 3230, 3245, 3240, 3255, 3245, 3240, 3250, 3265, 3113, 3265, 3113, 2912, 2897, 18308, 18310, 18312, 2930, 2962, 18316, 18318, 18320, 2993, 18323, 19546, 2907, 2902, 2897, 2902, 2907, 2912, 18342, 2930, 2925, 2860, 2939, 2860, 2949, 18331, 2962, 18334, 2975, 2907, 2902, 2897, 2907, 2902, 2912, 18342, 2930, 2925, 2944, 2939, 2944, 2949, 18350, 2962, 18353, 2975, 18356, 2993, 2988, 3003, 2998, 18362, 18364, 3027, 3037, 3032, 3047, 3042, 3057, 3052, 19550, 3174, 3169, 3202, 3197, 3207, 3202, 3197, 3230, 3225, 3220, 3230, 3225, 3113, 3113, 3154, 3149, 3164, 3159, 3174, 3169, 3174, 3169, 3154, 3149, 3164, 3159, 3174, 3169, 3179, 3202, 3197, 3192, 3202, 3197, 3207, 3230, 3225, 3220, 3230, 3225, 3235, 3245, 3240, 3255, 3250, 3265, 19554, 3265, 19556, 3278, 3273, 3288, 3283, 18422, 3373, 3368, 3393, 3388, 19559, 3393, 3388, 19561, 3502, 3497, 3492, 3539, 3534, 3354, 3349, 18437, 3373, 3368, 3383, 3378, 3393, 3388, 3403, 3398, 3413, 3408, 3423, 3418, 3446, 3441, 18452, 3446, 3441, 18455, 18457, 18459, 18461, 19567, 3502, 3497, 3492, 3502, 3497, 3507, 3539, 3534, 3520, 3539, 3534, 3539, 3534, 18476, 19571, 19573, 18478, 3821, 3816, 19575, 3821, 3816, 19577, 19579, 3877, 3882, 3887, 3892, 3600, 3877, 3882, 3887, 3892, 3621, 19581, 3664, 18541, 3766, 3761, 3776, 3771, 3786, 3781, 19583, 3786, 3781, 19585, 3801, 18534, 3821, 3816, 3831, 3826, 3766, 3761, 3776, 3771, 3786, 3781, 19587, 3806, 18534, 19589, 19591, 19593, 18494, 3766, 3761, 3776, 3771, 3786, 3781, 19595, 3786, 3781, 19597, 3806, 18534, 19599, 3831, 3826, 3836, 3664, 18500, 3836, 3664, 18503, 18504, 18506, 3887, 3892, 18510, 18512, 18514, 3786, 3781, 3796, 3791, 18522, 18523, 3821, 3816, 19601, 3766, 3761, 3776, 3771, 3786, 3781, 3791, 3796, 18522, 18523, 3821, 3816, 19603, 3766, 3761, 3776, 3771, 3786, 3781, 3796, 3791, 3806, 3801, 18534, 3821, 3816, 3831, 3826, 3836, 18541, 3867, 3862, 18544, 3867, 3862, 18547, 3882, 3877, 3892, 3887, 18553, 4889, 5188, 5188, 4889, 5113, 5113, 5113, 5113, 5118, 5118, 5118, 5118, 5548, 5543, 5543, 5548, 5494, 5494, 6083, 6078, 6093, 6088, 6040, 6035, 6106, 19060, 6119, 6133, 6138, 6141, 6139, 6062, 6057, 19051, 6133, 6138, 6139, 6141, 19067, 6154, 6083, 6078, 6093, 6088, 18565, 6106, 6040, 6035, 6119, 6138, 6133, 6141, 6139, 19051, 6062, 6057, 6083, 6078, 19607, 6083, 6078, 19609, 6138, 6133, 6141, 6139, 6217, 6212, 6227, 6222, 6237, 6232, 4015, 6252, 6247, 19611, 6265, 6260, 18574, 6217, 6212, 6227, 6222, 6237, 6232, 4015, 5446, 5441, 5533, 5528, 4180, 4180, 4536, 4531, 4526, 4536, 4531, 4541, 4655, 4660, 4663, 4661, 4673, 4668, 4676, 4674, 4689, 18604, 4827, 18607, 4840, 19613, 5142, 5137, 5132, 5147, 18841, 5173, 18822, 5160, 5183, 5178, 5188, 4889, 5118, 5113, 5113, 5118, 5142, 5137, 5132, 5142, 5137, 5147, 18841, 5173, 18838, 5160, 5183, 5178, 5188, 4889, 18847, 18849, 18614, 19615, 18616, 19617, 5401, 5396, 5401, 5396, 5401, 5396, 5406, 5416, 5411, 5426, 5421, 5436, 5431, 5446, 5441, 4180, 4442, 4437, 19619, 4483, 4478, 4493, 4488, 4503, 4498, 4513, 4508, 4686, 4681, 4686, 4681, 4686, 4681, 19623, 4370, 4365, 4375, 18643, 4388, 4406, 4401, 4406, 4416, 4370, 4365, 4375, 18653, 4388, 4411, 4401, 4411, 4416, 19625, 4432, 4430, 19627, 4443, 4445, 4370, 4365, 4375, 18671, 4388, 4411, 4406, 4401, 4411, 4406, 4416, 19629, 4430, 4432, 19631, 4443, 4445, 4370, 4365, 4375, 18671, 4388, 4411, 4406, 4401, 4411, 4406, 4416, 19633, 19635, 19637, 19639, 4442, 4437, 19641, 19643, 19645, 19647, 19649, 4442, 4437, 19651, 4468, 4463, 4458, 4468, 4463, 4473, 4483, 4478, 4493, 4488, 4503, 4498, 4513, 4508, 4536, 4531, 4526, 4536, 4531, 4541, 4660, 4655, 4663, 4661, 18708, 4676, 4674, 4686, 4681, 4686, 4681, 18716, 18718, 4660, 4655, 19657, 4660, 4655, 19659, 19661, 19663, 4660, 4655, 19665, 4660, 4655, 19667, 19669, 19671, 4660, 4655, 19673, 4660, 4655, 19675, 4673, 4668, 19677, 4686, 4681, 19679, 18736, 18738, 4796, 4791, 4796, 4791, 4796, 4791, 19685, 19687, 4796, 4791, 19689, 4796, 4791, 19691, 19693, 4796, 4791, 19696, 4796, 4791, 19698, 4809, 4804, 4796, 4791, 19701, 4796, 4791, 19703, 4809, 4804, 4814, 18763, 4827, 18766, 4840, 4850, 4845, 4855, 18772, 4868, 18775, 19705, 4889, 5160, 5183, 5178, 4889, 4998, 5003, 4998, 5003, 4998, 5003, 5013, 5014, 5016, 18787, 18789, 4960, 5052, 5044, 18794, 4960, 5052, 5044, 5003, 4998, 5013, 5008, 19711, 5026, 5021, 5003, 4998, 5013, 5008, 19713, 5026, 5021, 18811, 5039, 19715, 5044, 19717, 5052, 5142, 5137, 5147, 5132, 18820, 5173, 18822, 5160, 5183, 5178, 5188, 5118, 5113, 5118, 5113, 5142, 5137, 5132, 5142, 5137, 5147, 18838, 5160, 18841, 5173, 5183, 5178, 5188, 18847, 18849, 18851, 19723, 18853, 19725, 5401, 5396, 5401, 5396, 5401, 5396, 5406, 5416, 5411, 5426, 5421, 5436, 5431, 5446, 5441, 5515, 5510, 19729, 5515, 5510, 19731, 5533, 5528, 5344, 5548, 5543, 5548, 5543, 5548, 5543, 5494, 5561, 18880, 5344, 18883, 5391, 5386, 5401, 5396, 5373, 18890, 5391, 5386, 5401, 5396, 5406, 5416, 5411, 5426, 5421, 5436, 5431, 5446, 5441, 5515, 5510, 5456, 5451, 18907, 5538, 5548, 5543, 5481, 5548, 5543, 5494, 5561, 5561, 5515, 5510, 18920, 5533, 5528, 5538, 5548, 5543, 18927, 5561, 5566, 6280, 6285, 19737, 6285, 6280, 19739, 19741, 6333, 6328, 18993, 19743, 18995, 19745, 19747, 6333, 6328, 6362, 6357, 6352, 6362, 6357, 6367, 6377, 6372, 19004, 19181, 6663, 6629, 6624, 6676, 6686, 6681, 6696, 6691, 6701, 6721, 6716, 19749, 6721, 6716, 19751, 6629, 6624, 6663, 6629, 6624, 6676, 6686, 6681, 6696, 6691, 6706, 6721, 6716, 6731, 6726, 6818, 6818, 6818, 6818, 6252, 6247, 19755, 6265, 6260, 6275, 6270, 6367, 6377, 6372, 18945, 6823, 6823, 6083, 6078, 6088, 6093, 19057, 6106, 6040, 6035, 6119, 6133, 6138, 6141, 6139, 6062, 6057, 19051, 6133, 6138, 19763, 6133, 6138, 19765, 19067, 6154, 6217, 6212, 6227, 6222, 6237, 6232, 6242, 6252, 6247, 19767, 6265, 6260, 18962, 6285, 6280, 19769, 6285, 6280, 19771, 19773, 18967, 18969, 18971, 19777, 6362, 6357, 6352, 6362, 6357, 6367, 6377, 6372, 18980, 6397, 6392, 6423, 6423, 18985, 6285, 6280, 19779, 6285, 6280, 19781, 19783, 6333, 6328, 18993, 19785, 18995, 19787, 19789, 6333, 6328, 6362, 6357, 6367, 6362, 6357, 6352, 6377, 6372, 19004, 6397, 6392, 5888, 5883, 6428, 6428, 19010, 19791, 19012, 19793, 19014, 6464, 19181, 6663, 6629, 6624, 6676, 6686, 6681, 6696, 6691, 6706, 6701, 6721, 6716, 6731, 6726, 19181, 6663, 19184, 6676, 6686, 6681, 6696, 6691, 6706, 6701, 6721, 6716, 6731, 6726, 6701, 6706, 6646, 6795, 6790, 6800, 6785, 19028, 6764, 19030, 6858, 19032, 6871, 19035, 6764, 6858, 19037, 6871, 6083, 6078, 6093, 6088, 19042, 6106, 6040, 6035, 6119, 6133, 6138, 19809, 6062, 6057, 19051, 6083, 6078, 6093, 6088, 19042, 6106, 6040, 6035, 6119, 6133, 6138, 19811, 6062, 6057, 19051, 6083, 6078, 6093, 6088, 19057, 6106, 19060, 6119, 6138, 6133, 19815, 6138, 6133, 19817, 19067, 6154, 6212, 6217, 6222, 6227, 6237, 6232, 6242, 6252, 6247, 19819, 6265, 6260, 6270, 6252, 6247, 19821, 6265, 6260, 6275, 6217, 6212, 6227, 6222, 6237, 6232, 6242, 6252, 6247, 19823, 6265, 6260, 6275, 6270, 6285, 6280, 6320, 6315, 19825, 6328, 19827, 6333, 19102, 6320, 6315, 19829, 6333, 6328, 6362, 6357, 6362, 6357, 6362, 6357, 6367, 6377, 6372, 6387, 6382, 6397, 6392, 19121, 6428, 6423, 6418, 6428, 6423, 6433, 19129, 6451, 6446, 19133, 6464, 19136, 6477, 6721, 6716, 6731, 6726, 19143, 6764, 6795, 6790, 6785, 6795, 6790, 6800, 6823, 6818, 19153, 6795, 6790, 6785, 6795, 6790, 6800, 6823, 6818, 19162, 6833, 6838, 6843, 6853, 6848, 6853, 6848, 19171, 6871, 6629, 6624, 6663, 19184, 6676, 6686, 6681, 6696, 6691, 6701, 6706, 6646, 6721, 6716, 6731, 6726, 19181, 6663, 19184, 6676, 6686, 6681, 6696, 6691, 6706, 6701, 6711, 6721, 6716, 6731, 6726, 6795, 6790, 6800, 6785, 6823, 6818, 19215, 6823, 6818, 19218, 19203, 6764, 19206, 6858, 19226, 6871, 6795, 6790, 6785, 6795, 6790, 6800, 6823, 6818, 19215, 6823, 6818, 19218, 6838, 6833, 6843, 6853, 6848, 6858, 19226, 6871, 19402, 19401, 19404, 19403, 19404, 19403, 19404, 19403, 9709, 9704, 9719, 9714, 19859, 9709, 9704, 9719, 9714, 19862, 19865, 19402, 19401, 19404, 19403, 19869, 9726, 9724, 19758, 9677, 9675, 9696, 9691, 19871, 9709, 9704, 9719, 9714, 19798, 9677, 9675, 9696, 9691, 19873, 9709, 9704, 9719, 9714, 19875, 9726, 9724, 9577, 9577, 9696, 9691, 9709, 9704, 9719, 9714, 19877, 19879, 9674, 19881, 9674, 19883, 9696, 9691, 19885, 9696, 9691, 19887, 9709, 9704, 9719, 9714, 19889, 19891, 19893, 19895, 19855, 19854, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 19968, 19970, 19971, 19972, 19973, 19974, 19979, 19980, 19981, 19982, 19983, 19984, 19985, 19986, 19987, 19988, 19990, 19991, 19994, 19995, 19996, 19998, 19999, 20000, 20001, 20002, 20003, 20004, 20005, 20006, 20007, 20008, 20009, 20010, 20011, 20012, 20013, 20014, 20015, 20016, 20017, 20018, 20019, 20020, 20021, 20022, 20023, 20024, 20025, 20026, 20027, 20028, 20029, 20030, 20031, 20032, 20033, 20041, 20042, 20043, 20044, 20045, 20046, 20047, 20048, 20049, 20050, 20051, 20052, 20053, 20054, 20055, 20056, 20057, 20059, 20060, 20061, 20062, 20063, 20064, 20065, 20066, 20067, 20068, 20069, 20070, 20071, 20072, 20073, 20074, 20075, 20076, 20077, 20078, 20079, 20080, 20082, 20083, 20084, 20085, 20086, 20087, 20088, 20089, 20090, 20091, 20092, 20093, 20094, 20095, 20096, 20097, 20098, 20099, 20101, 20102, 20103, 20104, 20105, 20106, 20107, 20108, 20109, 20110, 20111, 20112, 20113, 20115, 20116, 20117, 20118, 20119, 20120, 20121, 20122, 20123, 20125, 20126, 20127, 20128, 20129, 20131, 20132, 20134, 20135, 20136, 20137, 20138, 20139, 20140, 20141, 20142, 20151, 20152, 20154, 20155, 20157, 20158, 20160, 20161, 20163, 20164, 20165, 20166, 20167, 20168, 20170, 20171, 20173, 20174, 20175, 20176, 20177, 20178, 20179, 20180, 20181, 20182, 20183, 20184, 20185, 20192, 20193, 20194, 20195, 20197, 20198, 20202, 20203, 20206, 20207, 20208, 20209, 20210, 20211, 20212, 20213, 20214, 20215, 20216, 20217, 20218, 20219, 20220, 20222, 20223, 20224, 20225, 20230, 20231, 20232, 20233, 20234, 20235, 20236, 20237, 20238, 20239, 20240, 20241, 20242, 20243, 20244, 20245, 20246, 20247, 20248, 20249, 20250, 20251, 20252, 20253, 20254, 20255, 20257, 20258, 20260, 20261, 20262, 20263, 20264, 20265, 20266, 20267, 20268, 20269, 20271, 20272, 20274, 20275, 20276, 20277, 20278, 20279, 20280, 20281, 20282, 20283, 20284, 20285, 20286, 20287, 20288, 20289, 20290, 20291, 20292, 20293, 20294, 20295, 20296, 20297, 20298, 20299, 20300, 20301, 20302, 20303, 20304, 20305, 20306, 20307, 20308, 20310, 20311, 20312, 20313, 20314, 20315, 20316, 20317, 20319, 20320, 20321, 20323, 20324, 20325, 20327, 20329, 20330, 20331, 20332, 20335, 20336, 20337, 20338, 20339, 20340, 20341, 20342, 20343, 20344, 20345, 20346, 20347, 20348, 20349, 20350, 20351, 20352, 20353, 20354, 20357, 20358, 20359, 20360, 20361, 20362, 20363, 20364, 20365, 20366, 20367, 20368, 20369, 20370, 20371, 20372, 20373, 20374, 20375, 20376, 20377, 20378, 20379, 20380, 20381, 20382, 20383, 20384, 20385, 20386, 20388, 20389, 20391, 20392, 20393, 20394, 20395, 20397, 20398, 20400, 20401, 20402, 20403, 20404, 20405, 20406, 20407, 20408, 20409, 20410, 20411, 20412, 20414, 20415, 20416, 20417, 20418, 20419, 20420, 20421, 20423, 20424, 20425, 20426, 20427, 20428, 20429, 20430, 20431, 20432, 20433, 20434, 20435, 20436, 20437, 20438, 20439, 20440, 20441, 20442, 20443, 20444, 20445, 20446, 20447, 20448, 20449, 20450, 20451, 20452, 20453, 20454, 20455, 20456, 20457, 20458, 20459, 20460, 20461, 20462, 20463, 20464, 20465, 20466, 20467, 20468, 20469, 20470, 20478, 20479, 20480, 20481, 20482, 20483, 20484, 20485, 20486, 20487, 20488, 20489, 20490, 20491, 20492, 20493, 20494, 20495, 20496, 20497, 20498, 20500, 20501, 20502, 20503, 20504, 20506, 20507, 20509, 20510, 20511, 20514, 20515, 20516, 20517, 20518, 20520, 20521, 20523, 20524, 20525, 20526, 20529, 20530, 20531, 20532, 20533, 20535, 20536, 20538, 20539, 20540, 20541, 20544, 20545, 20546, 20547, 20548, 20549, 20551, 20552, 20554, 20555, 20556, 20557, 20558, 20559, 20561, 20562, 20563, 20564, 20565, 20566, 20567, 20568, 20569, 20570, 20571, 20572, 20573, 20574, 20576, 20577, 20579, 20580, 20581, 20582, 20584, 20585, 20587, 20588, 20589, 20590, 20591, 20592, 20593, 20595, 20596, 20597, 20598, 20599, 20600, 20601, 20602, 20603, 20604, 20605, 20607, 20608, 20609, 20610, 20611, 20612, 20613, 20614, 20615, 20616, 20617, 20618, 20619, 20620, 20621, 20622, 20623, 20624, 20625, 20626, 20627, 20628, 20629, 20630, 20631, 20632, 20633, 20634, 20635, 20636, 20638, 20639, 20641, 20642, 20643, 20644, 20645, 20646, 20648, 20649, 20651, 20652, 20653, 20654, 20655, 20656, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, 20665, 20666, 20667, 20668, 20669, 20670, 20671, 20673, 20674, 20676, 20677, 20678, 20679, 20680, 20681, 20682, 20683, 20684, 20685, 20686, 20687, 20688, 20689, 20690, 20691, 20692, 20693, 20694, 20695, 20696, 20697, 20698, 20699, 20700, 20701, 20702, 20703, 20704, 20705, 20706, 20707, 20708, 20709, 20710, 20711, 20712, 20713, 20714, 20715, 20716, 20717, 20718, 20719, 20720, 20721, 20722, 20723, 20724, 20725, 20726, 20727, 20728, 20729, 20730, 20731, 20732, 20733, 20734, 20735, 20736, 20737, 20738, 20739, 20740, 20741, 20742, 20743, 20744, 20745, 20746, 20747, 20748, 20749, 20750, 20751, 20752, 20753, 20754, 20755, 20756, 20757, 20758, 20759, 20760, 20761, 20762, 20763, 20764, 20765, 20766, 20767, 20768, 20769, 20770, 20771, 20772, 20773, 20774, 20775, 20776, 20777, 20778, 20779, 20780, 20781, 20782, 20783, 20784, 20785, 20786, 20787, 20788, 20789, 20790, 20791, 20792, 20793, 20794, 20795, 20796, 20797, 20798, 20799, 20800, 20801, 20802, 20803, 20804, 20805, 20806, 20807, 20808, 20809, 20810, 20811, 20812, 20813, 20814, 20815, 20816, 20817, 20818, 20819, 20820, 20821, 20822, 20823, 20824, 20825, 20826, 20827, 20828, 20829, 20830, 20831, 20832, 20833, 20834, 20835, 20836, 20837, 20839, 20840, 20842, 20843, 20845, 20846, 20847, 20848, 20849, 20850, 20851, 20852, 20853, 20854, 20855, 20856, 20857, 20859, 20860, 20861, 20862, 20863, 20864, 20866, 20867, 20869, 20870, 20872, 20873, 20874, 20875, 20876, 20877, 20878, 20879, 20880, 20882, 20883, 20885, 20886, 20888, 20889, 20890, 20891, 20892, 20893, 20894, 20895, 20896, 20897, 20898, 20900, 20901, 20903, 20904, 20907, 20908, 20909, 20910, 20911, 20912, 20913, 20914, 20915, 20916, 20917, 20918, 20919, 20920, 20921, 20922, 20923, 20924, 20926, 20927, 20928, 20929, 20930, 20931, 20932, 20933, 20934, 20935, 20936, 20937, 20939, 20940, 20941, 20942, 20944, 20945, 20946, 20947, 20948, 20949, 20950, 20951, 20952, 20953, 20954, 20956, 20957, 20958, 20959, 20960, 20961, 20962, 20963, 20964, 20965, 20966, 20967, 20968, 20969, 20970, 20971, 20972, 20973, 20974, 20975, 20976, 20977, 20978, 20979, 20980, 20981, 20982, 20983, 20984, 20985, 20986, 20987, 20988, 20989, 20990, 20991, 20993, 20994, 20995, 20996, 20997, 20998, 20999, 21000, 21001, 21002, 21003, 21004, 21005, 21006, 21007, 21009, 21010, 21011, 21012, 21013, 21014, 21015, 21016, 21017, 21018, 21019, 21020, 21021, 21022, 21024, 21025, 21027, 21028, 21029, 21030, 21031, 21032, 21033, 21034, 21035, 21036, 21037, 21038, 21039, 21040, 21041, 21042, 21043, 21044, 21045, 21046, 21047, 21048, 21049, 21050, 21051, 21052, 21053, 21054, 21055, 21056, 21058, 21059, 21060, 21061, 21062, 21063, 21064, 21065, 21066, 21067, 21068, 21069, 21070, 21071, 21072, 21073, 21074, 21075, 21076, 21077, 21078, 21079, 21080, 21081, 21082, 21083, 21084, 21085, 21086, 21087, 21088, 21089, 21090, 21091, 21092, 21093, 21094, 21095, 21096, 21097, 21098, 21099, 21100, 21101, 21102, 21103, 21104, 21105, 21107, 21108, 21109, 21110, 21111, 21112, 21113, 21114, 21115, 21116, 21117, 21118, 21119, 21120, 21121, 21122, 21123, 21124, 21125, 21126, 21127, 21128, 21129, 21130, 21131, 21132, 21133, 21134, 21135, 21136, 21137, 21138, 21139, 21140, 21141, 21142, 21143, 21144, 21145, 21146, 21147, 21148, 21149, 21150, 21151, 21152, 21154, 21156, 21157, 21158, 21159, 21160, 21161, 21162, 21163, 21164, 21166, 21167, 21169, 21170, 21171, 21172, 21173, 21174, 21175, 21176, 21177, 21178, 21179, 21180, 21181, 21182, 21183, 21184, 21185, 21186, 21187, 21188, 21189, 21190, 21191, 21192, 21193, 21194, 21195, 21196, 21197, 21199, 21200, 21201, 21202, 21203, 21204, 21205, 21206, 21207, 21208, 21209, 21210, 21211, 21212, 21215, 21216, 21217, 21219, 21220, 21223, 21224, 21225, 21226, 21227, 21228, 21229, 21230, 21231, 21232, 21234, 21235, 21236, 21237, 21238, 21239, 21240, 21241, 21243, 21244, 21246, 21247, 21248, 21249, 21250, 21251, 21252, 21253, 21254, 21255, 21256, 21257, 21259, 21260, 21264, 21265, 21266, 21267, 21268, 21269, 21270, 21272, 21273, 21275, 21276, 21278, 21279, 21280, 21281, 21282, 21283, 21284, 21285, 21286, 21287, 21288, 21289, 21290, 21291, 21292, 21293, 21294, 21295, 21296, 21297, 21298, 21299, 21300, 21302, 21303, 21304, 21305, 21306, 21307, 21308, 21309, 21310, 21311, 21312, 21313, 21315, 21316, 21317, 21318, 21319, 21320, 21321, 21322, 21323, 21324, 21325, 21326, 21327, 21328, 21329, 21330, 21331, 21332, 21333, 21334, 21335, 21336, 21337, 21338, 21339, 21340, 21341, 21342, 21343, 21344, 21345, 21346, 21347, 21348, 21349, 21350, 21351, 21352, 21353, 21354, 21355, 21356, 21357, 21358, 21359, 21360, 21361, 21362, 21363, 21364, 21365, 21366, 21367, 21368, 21369, 21370, 21371, 21372, 21373, 21374, 21375, 21376, 21377, 21378, 21379, 21380, 21381, 21382, 21383, 21384, 21385, 21386, 21387, 21388, 21389, 21390, 21391, 21392, 21393, 21394, 21395, 21396, 21397, 21398, 21399, 21400, 21402, 21403, 21405, 21406, 21407, 21408, 21409, 21410, 21411, 21412, 21413, 21414, 21415, 21416, 21417, 21419, 21420, 21421, 21422, 21423, 21424, 21425, 21426, 21427, 21428, 21429, 21430, 21431, 21432, 21433, 21434, 21435, 21436, 21437, 21438, 21439, 21440, 21441, 21442, 21443, 21444, 21445, 21446, 21447, 21448, 21449, 21450, 21451, 21452, 21453, 21455, 21456, 21457, 21458, 21459, 21460, 21461, 21462, 21463, 21464, 21465, 21466, 21467, 21468, 21469, 21470, 21471, 21472, 21473, 21474, 21475, 21476, 21477, 21478, 21479, 21480, 21481, 21482, 21483, 21484, 21485, 21486, 21487, 21489, 21491, 21492, 21493, 21494, 21495, 21496, 21497, 21498, 21499, 21500, 21501, 21502, 21503, 21504, 21505, 21506, 21507, 21508, 21510, 21511, 21512, 21513, 21514, 21515, 21516, 21517, 21518, 21519, 21520, 21521, 21522, 21523, 21525, 21526, 21527, 21528, 21529, 21530, 21531, 21532, 21533, 21534, 21535, 21536, 21537, 21538, 21539, 21540, 21541, 21542, 21544, 21545, 21547, 21548, 21549, 21550, 21551, 21552, 21553, 21554, 21555, 21556, 21557, 21558, 21559, 21561, 21562, 21564, 21565, 21566, 21567, 21568, 21569, 21570, 21571, 21572, 21573, 21574, 21575, 21576, 21581, 21582, 21588, 21589, 21591, 21592, 21593, 21594, 21595, 21596, 21597, 21598, 21599, 21600, 21601, 21602, 21603, 21604, 21605, 21606, 21607, 21608, 21609, 21610, 21611, 21612, 21613, 21614, 21615, 21616, 21617, 21618, 21619, 21620, 21621, 21622, 21623, 21624, 21625, 21627, 21628, 21632, 21633, 21635, 21636, 21640, 21641, 21643, 21644, 21646, 21647, 21649, 21650, 21652, 21653, 21654, 21655, 21656, 21657, 21658, 21659, 21662, 21663, 21665, 21666, 21669, 21670, 21672, 21673, 21675, 21676, 21677, 21678, 21680, 21681, 21683, 21684, 21685, 21686, 21687, 21688, 21689, 21690, 21691, 21692, 21693, 21694, 21695, 21697, 21698, 21699, 21700, 21701, 21702, 21703, 21704, 21705, 21706, 21707, 21708, 21709, 21710, 21711, 21712, 21713, 21714, 21715, 21716, 21717, 21718, 21719, 21720, 21721, 21722, 21723, 21725, 21726, 21727, 21728, 21729, 21730, 21732, 21733, 21734, 21735, 21737, 21739, 21740, 21741, 21742, 21743, 21744, 21745, 21746, 21747, 21748, 21749, 21750, 21751, 21752, 21753, 21754, 21755, 21756, 21757, 21758, 21759, 21760, 21761, 21762, 21763, 21764, 21765, 21766, 21767, 21768, 21769, 21770, 21772, 21774, 21775, 21776, 21777, 21778, 21779, 21780, 21781, 21782, 21783, 21784, 21785, 21786, 21787, 21788, 21789, 21790, 21792, 21793, 21795, 21796, 21797, 21798, 21799, 21800, 21801, 21802, 21803, 21804, 21805, 21806, 21807, 21808, 21809, 21810, 21811, 21812, 21813, 21814, 21815, 21816, 21817, 21818, 21819, 21820, 21821, 21822, 21823, 21824, 21825, 21826, 21827, 21828, 21829, 21830, 21831, 21832, 21833, 21834, 21835, 21836, 21837, 21838, 21839, 21840, 21841, 21842, 21843, 21844, 21845, 21846, 21847, 21848, 21849, 21850, 21851, 21852, 21853, 21854, 21856, 21857, 21860, 21861, 21862, 21864, 21867, 21868, 21869, 21870, 21871, 21872, 21873, 21874, 21875, 21876, 21877, 21878, 21879, 21880, 21881, 21882, 21883, 21884, 21885, 21886, 21887, 21888, 21889, 21891, 21892, 21894, 21895, 21896, 21897, 21898, 21899, 21900, 21901, 21902, 21903, 21904, 21905, 21906, 21907, 21908, 21909, 21910, 21911, 21912, 21913, 21914, 21916, 21917, 21918, 21919, 21920, 21921, 21922, 21923, 21924, 21925, 21926, 21927, 21928, 21929, 21930, 21931, 21932, 21933, 21934, 21935, 21936, 21937, 21938, 21939, 21940, 21941, 21942, 21943, 21945, 21946, 21948, 21949, 21950, 21951, 21952, 21953, 21954, 21955, 21956, 21957, 21958, 21960, 21961, 21962, 21963, 21964, 21966, 21967, 21970, 21971, 21972, 21974, 21975, 21976, 21977, 21978, 21979, 21980, 21981, 21982, 21983, 21984, 21985, 21986, 21987, 21988, 21989, 21991, 21992, 21995, 21996, 21997, 21999, 22002, 22003, 22004, 22005, 22006, 22007, 22008, 22009, 22010, 22011, 22012, 22013, 22014, 22015, 22016, 22017, 22018, 22019, 22021, 22023, 22024, 22025, 22026, 22027, 22028, 22029, 22030, 22031, 22032, 22033, 22034, 22035, 22036, 22037, 22038, 22039, 22040, 22041, 22042, 22043, 22044, 22045, 22046, 22047, 22048, 22049, 22050, 22051, 22052, 22053, 22054, 22055, 22056, 22057, 22058, 22059, 22060, 22061, 22062, 22063, 22064, 22065, 22066, 22067, 22068, 22069, 22070, 22071, 22072, 22073, 22074, 22075, 22076, 22077, 22078, 22079, 22080, 22081, 22082, 22084, 22085, 22086, 22087, 22088, 22089, 22090, 22091, 22092, 22093, 22094, 22095, 22096, 22097, 22099, 22100, 22101, 22102, 22103, 22104, 22105, 22106, 22107, 22108, 22109, 22110, 22111, 22113, 22114, 22116, 22117, 22118, 22119, 22120, 22121, 22122, 22123, 22124, 22125, 22126, 22128, 22129, 22130, 22131, 22132, 22134, 22135, 22136, 22137, 22138, 22139, 22140, 22141, 22142, 22143, 22144, 22145, 22147, 22148, 22149, 22150, 22151, 22152, 22153, 22154, 22156, 22158, 22159, 22160, 22161, 22163, 22164, 22165, 22166, 22167, 22168, 22169, 22170, 22171, 22172, 22173, 22174, 22175, 22176, 22177, 22178, 22179, 22180, 22181, 22182, 22183, 22184, 22185, 22186, 22187, 22188, 22189, 22190, 22191, 22192, 22193, 22194, 22195, 22196, 22197, 22198, 22199, 22200, 22201, 22202, 22203, 22204, 22205, 22206, 22207, 22208, 22209, 22210, 22211, 22212, 22213, 22214, 22215, 22216, 22217, 22218, 22219, 22220, 22221, 22222, 22223, 22224, 22225, 22226, 22227, 22228, 22229, 22230, 22231, 22232, 22233, 22234, 22235, 22236, 22237, 22238, 22239, 22240, 22241, 22242, 22243, 22244, 22245, 22246, 22247, 22248, 22249, 22250, 22251, 22252, 22253, 22254, 22255, 22256, 22257, 22258, 22259, 22260, 22261, 22262, 22263, 22264, 22265, 22266, 22267, 22268, 22269, 22270, 22271, 22272, 22273, 22274, 22275, 22276, 22277, 22278, 22279, 22280, 22281, 22282, 22283, 22284, 22285, 22286, 22287, 22288, 22289, 22290, 22291, 20039, 20037, 22292, 22293, 22294, 22295, 22296, 22297, 22298, 22299, 22300, 22301, 22302, 22303, 22305, 22306, 22307, 22308, 21629, 21626, 20146, 21637, 21634, 21639, 21645, 21642, 19695, 19695, 21629, 21626, 21637, 21634, 21645, 21642, 20200, 20205, 20229, 20227, 20229, 20227, 21631, 21639, 19695, 21631, 21639, 19695, 19695, 20356, 20355, 22311, 22312, 22313, 22314, 20471, 20473, 20474, 20477, 20477, 20513, 20528, 20543, 21263, 21301, 21580, 21578, 21587, 21585, 21631, 21639, 19695, 19695, 22316, 22317, 22318, 22319, 22320, 22321, 22322, 22324, 22325, 22326, 22327, 22328, 22329, 22330, 22331, 22332, 22334, 22335, 22336, 22337, 22339, 22340, 22341, 22342, 22343, 22344, 22345, 22346, 22347, 22348, 22351, 22353, 22355, 22356, 22358, 22359, 22361, 22362, 22363, 22364, 22354, 22352, 22354, 22352, 22354, 22352, 22354, 22369, 22370, 22310, 22304, 22310, 22309, 22368, 22350, 22368, 22366, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 22529, 22532, 22535, 22537, 22540, 22544, 22546, 22549, 22552, 22555, 22558, 22560, 22562, 22565, 22568, 22571, 22574, 22577, 22580, 22587, 22589, 22591, 22594, 22604, 22613, 22615, 22619, 22621, 22624, 22626, 22628, 22631, 22633, 22637, 22640, 22642, 22644, 22646, 22650, 22653, 22655, 22657, 22659, 22662, 22664, 22669, 22671, 22674, 22676, 22680, 22682, 22686, 22694, 22696, 22698, 22703, 22705, 22707, 22713, 22715, 22717, 22719, 22721, 22723, 22725, 22730, 22732, 22736, 22738, 22740, 22742, 22744, 22746, 22748, 22750, 22754, 22756, 22762, 22764, 22766, 22772, 22774, 22776, 22779, 22781, 22783, 22786, 22788, 22790, 22793, 22796, 22800, 22802, 22806, 22808, 22811, 22813, 22815, 22819, 22822, 22826, 22828, 22830, 22832, 22834, 22836, 22839, 22841, 22844, 22847, 22850, 22853, 22855, 22857, 22859, 22861, 22863, 22866, 22869, 22871, 22873, 22875, 22878, 22880, 22883, 22885, 22887, 22889, 22892, 22896, 22898, 22900, 22902, 22905, 22908, 22910, 22912, 22914, 22917, 22921, 22923, 22925, 22928, 22931, 22933, 22936, 22938, 22940, 22942, 22944, 22946, 22948, 22950, 22952, 22954, 22958, 22960, 22964, 22966, 22968, 22970, 22975, 22977, 22979, 22982, 22984, 22989, 22992, 22994, 23000, 23003, 23005, 23011, 23013, 23015, 23017, 23023, 23027, 23030, 23032, 23034, 23037, 23039, 23043, 23045, 23050, 23052, 23054, 23056, 23061, 23063, 23065, 23067, 23071, 23073, 23077, 23079, 23084, 23086, 23088, 23090, 23093, 23095, 23101, 23103, 23107, 23110, 23113, 23115, 23117, 23119, 23121, 23124, 23126, 23128, 23131, 23135, 23137, 23139, 23143, 23145, 23149, 23151, 23153, 23155, 23157, 23161, 23164, 23167, 23169, 23172, 23175, 23177, 23179, 23181, 23183, 23185, 23187, 23190, 23193, 23197, 23199, 23201, 23203, 23205, 23207, 23210, 23213, 23217, 23219, 23221, 23223, 23225, 23227, 23230, 23233, 23236, 23239, 23242, 23245, 23247, 23249, 23251, 23253, 23255, 23257, 23259, 23261, 23264, 23266, 23268, 23271, 23273, 23275, 23278, 23282, 23288, 23290, 23292, 23294, 23297, 23302, 23305, 23307, 23309, 23311, 23313, 23315, 23317, 23320, 23322, 23324, 23326, 23328, 23330, 23333, 23335, 23337, 23339, 23341, 23343, 23345, 23348, 23359, 23361, 23364, 23377, 23379, 23381, 23383, 23388, 23393, 23395, 23397, 23399, 23402, 23405, 23409, 23411, 23413, 23415, 23419, 23421, 23433, 23436, 23439, 23447, 23449, 23451, 23453, 23455, 23457, 23459, 23465, 23468, 23471, 23473, 23487, 23490, 23494, 23504, 23507, 23511, 23522, 23524, 23529, 23531, 23533, 23535, 23537, 23540, 23542, 23545, 23549, 23551, 23553, 23555, 23557, 23559, 23561, 23564, 23567, 23570, 23573, 23576, 23578, 23582, 23584, 23587, 23589, 23591, 23593, 23596, 23598, 23601, 23603, 23605, 23607, 23609, 23611, 23613, 23616, 23622, 23625, 23628, 23631, 23633, 23637, 23639, 23641, 23643, 23646, 23648, 23653, 23655, 23657, 23659, 23663, 23665, 23667, 23669, 23671, 23676, 23678, 23680, 23682, 23686, 23688, 23691, 23696, 23701, 23703, 23707, 23709, 23711, 23713, 23715, 23719, 23721, 23723, 23725, 23727, 23729, 23732, 23734, 23738, 23741, 23744, 23746, 23749, 23751, 23761, 23763, 23767, 23769, 23771, 23776, 23778, 23780, 23783, 23785, 23789, 23791, 23795, 23798, 23800, 23803, 23805, 23807, 23809, 23811, 23813, 23815, 23817, 23820, 23822, 23825, 23827, 23829, 23832, 23834, 23838, 23841, 23844, 23846, 23848, 23850, 23857, 23859, 23865, 23867, 23869, 23871, 23873, 23876, 23883, 23885, 23891, 23893, 23895, 23898, 23900, 23902, 23904, 23907, 23909, 23911, 23913, 23915, 23917, 23919, 23921, 23923, 23932, 23941, 23943, 23945, 23950, 23953, 23956, 23958, 23960, 23965, 23968, 23971, 23973, 23975, 23978, 23981, 23983, 23985, 23987, 23989, 23992, 23995, 23997, 24000, 24002, 24004, 24008, 24010, 24012, 24014, 24016, 24018, 24020, 24022, 24026, 24028, 24030, 24032, 24034, 24036, 24038, 24040, 24042, 24044, 24046, 24053, 24061, 24064, 24066, 24068, 24071, 24076, 24080, 24082, 24084, 24086, 24088, 24090, 24092, 24098, 24100, 24106, 24109, 24111, 24113, 24116, 24123, 24130, 24132, 24134, 24137, 24139, 24141, 24143, 24145, 24147, 24149, 24152, 24154, 24156, 24163, 24165, 24169, 24171, 24174, 24176, 24178, 24180, 24182, 24184, 24188, 24191, 24196, 24199, 24202, 24207, 24209, 24211, 24215, 24217, 24220, 24223, 24228, 24231, 24233, 24236, 24238, 24240, 24243, 24246, 24248, 24251, 24253, 24259, 24261, 24263, 24266, 24271, 24273, 24277, 24280, 24282, 24284, 24287, 24289, 24293, 24295, 24297, 24300, 24302, 24305, 24307, 24312, 24315, 24318, 24321, 24326, 24328, 24330, 24334, 24336, 24339, 24342, 24345, 24347, 24357, 24360, 24362, 24364, 24366, 24368, 24374, 24376, 24378, 24380, 24382, 24384, 24387, 24389, 24402, 24404, 24408, 24411, 24413, 24416, 24418, 24422, 24425, 24427, 24430, 24432, 24438, 24440, 24444, 24446, 24448, 24451, 24453, 24456, 24458, 24461, 24463, 24465, 24468, 24470, 24472, 24474, 24476, 24481, 24483, 24485, 24487, 24489, 24492, 24494, 24496, 24499, 24502, 24506, 24512, 24514, 24518, 24521, 24524, 24527, 24530, 24533, 24536, 24539, 24541, 24545, 24550, 24552, 24554, 24557, 24559, 24565, 24567, 24569, 24572, 24574, 24576, 24578, 24580, 24583, 24592, 24595, 24598, 24601, 24604, 24607, 23026, 19976, 19977, 21488, 19978, 19978, 21490, 24556, 24571, 22584, 24556, 24571, 24612, 24613, 23480, 19543, 19542, 23516, 23514, 23520, 23481, 23485, 19545, 19544, 23528, 19549, 19548, 24614, 24616, 23516, 23426, 23520, 23518, 22597, 23528, 19549, 20413, 20058, 22895, 20413, 20422, 23355, 23575, 23572, 20992, 19530, 19542, 23516, 23426, 23520, 23518, 23355, 23432, 19549, 19548, 20992, 19530, 19542, 23575, 23544, 24618, 23575, 23572, 24620, 22636, 22649, 19814, 24622, 24624, 24626, 24628, 22668, 22679, 24630, 24631, 24632, 24633, 24634, 24635, 24636, 24637, 19682, 19681, 20256, 24638, 24639, 22691, 22689, 24057, 22693, 22702, 24640, 24641, 24642, 24643, 24644, 24645, 20256, 22712, 22710, 23927, 23931, 23929, 23936, 23940, 23938, 24646, 24647, 23949, 23964, 24648, 24649, 23927, 23931, 22727, 23936, 23938, 19341, 19340, 19345, 19344, 23964, 24650, 24651, 24652, 24653, 19682, 19681, 20256, 24654, 23856, 22759, 24057, 23856, 22759, 24655, 24656, 19682, 19681, 20256, 24657, 24658, 23856, 23854, 24057, 22818, 24095, 22818, 24095, 20328, 20326, 23142, 23160, 23142, 24659, 24660, 19384, 19565, 19564, 19385, 19566, 19564, 19386, 19391, 23142, 23160, 22895, 23528, 19549, 24661, 24663, 21198, 19566, 19565, 19564, 21198, 19566, 19565, 21213, 23718, 8430, 22957, 24665, 24666, 24667, 24668, 24669, 22963, 22973, 22999, 22987, 24670, 22999, 22997, 24671, 23010, 23008, 24672, 23022, 23020, 23026, 23042, 23048, 23059, 23070, 23076, 23082, 23100, 23098, 23106, 23142, 23160, 23189, 23196, 23209, 23216, 23287, 23285, 23301, 23355, 23432, 19549, 19548, 23499, 23497, 23503, 23501, 23516, 23426, 23520, 23518, 23355, 23432, 19549, 19548, 23516, 23426, 23370, 19543, 19542, 23374, 23372, 23575, 23572, 23467, 23386, 23390, 23467, 23386, 23390, 23575, 23572, 23467, 23386, 23390, 23575, 23572, 23401, 23516, 23426, 23520, 23518, 23418, 23528, 19549, 19548, 23418, 23499, 23497, 23503, 23501, 20992, 19530, 19542, 23516, 23426, 23520, 23518, 23428, 23432, 19549, 19548, 23442, 23446, 19549, 19548, 19540, 19539, 23544, 23586, 23480, 19543, 19542, 23516, 23514, 23520, 23481, 23485, 19545, 19544, 23528, 19549, 19548, 23499, 23497, 23503, 23501, 23516, 23514, 23520, 23518, 23528, 19549, 21155, 21153, 21155, 21153, 23586, 21198, 19566, 19565, 19564, 21198, 19566, 19565, 21213, 21214, 8430, 23731, 21222, 8485, 8485, 23718, 21233, 8430, 23652, 23662, 23674, 24673, 24674, 23675, 23685, 8430, 23700, 23706, 23718, 23737, 8485, 24105, 24103, 24060, 24122, 19722, 19721, 19720, 19719, 19722, 19721, 19720, 19719, 19722, 19721, 21490, 21488, 19736, 19735, 23775, 19814, 23788, 23794, 19814, 24437, 24435, 24443, 21490, 21488, 19736, 19735, 19736, 19735, 23856, 23854, 24075, 24079, 24095, 24097, 24096, 23864, 23862, 23882, 23880, 19722, 19721, 21490, 21488, 24206, 23927, 23931, 23929, 23936, 23940, 23938, 23949, 23964, 24675, 24676, 24677, 24678, 19656, 19655, 24679, 24680, 19682, 19681, 24681, 24682, 24052, 24050, 24057, 24075, 24079, 24095, 24097, 24096, 24060, 24122, 19722, 19721, 24075, 24079, 24095, 24097, 24096, 24105, 24103, 24122, 24120, 19722, 19721, 21773, 21771, 19736, 19735, 24161, 24187, 19736, 19735, 24206, 21865, 21863, 24227, 19795, 19795, 24585, 24268, 24603, 24600, 24683, 24585, 24268, 24603, 24600, 24686, 24688, 24690, 24692, 24276, 19814, 24292, 21973, 19776, 19775, 24504, 24501, 24511, 24509, 22000, 21998, 24504, 24501, 22022, 22020, 24511, 24354, 24356, 24373, 24371, 24392, 24396, 24394, 24398, 24401, 24399, 24695, 24697, 24699, 24701, 24703, 24407, 19814, 24421, 19814, 24437, 24435, 24443, 24479, 24478, 24511, 24509, 24517, 24544, 24707, 24709, 24711, 24549, 24564, 24562, 24587, 24591, 24589, 24611, 24715, 24717, 24719, 24721, 24723, 24724, 24725, 24726, 24727, 24728, 24729, 24732, 24733, 24734, 24735, 22354, 22352, 24736, 24737, 22354, 22352, 24738, 24739, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 25556, 23109, 23112, 25040, 25042, 22528, 20675, 19969, 23133, 22531, 19230, 19975, 19233, 25557, 25558, 25559, 25560, 25561, 24927, 23765, 22534, 25562, 25313, 19720, 19719, 19241, 19733, 22539, 19241, 19733, 22539, 24927, 19243, 19734, 22542, 25313, 19243, 19734, 22543, 25563, 25564, 19992, 19993, 22548, 19997, 22567, 22551, 22554, 22557, 19834, 19833, 22567, 22564, 22570, 22576, 22573, 22579, 22582, 25565, 25566, 25567, 25568, 24934, 22586, 22585, 25570, 25571, 25572, 25573, 25574, 25575, 25576, 25577, 25578, 25579, 25580, 25581, 25582, 24851, 21057, 25186, 19553, 19552, 24942, 23563, 23566, 23539, 23572, 23575, 22596, 22593, 24977, 24972, 22930, 22927, 23506, 23353, 25137, 25585, 25586, 25587, 25588, 25589, 25590, 25591, 19548, 25592, 22600, 22599, 25593, 25594, 25595, 22907, 22904, 25596, 21026, 21023, 19553, 19552, 24942, 23563, 23566, 23569, 23572, 22606, 24976, 19268, 22919, 22916, 24980, 24942, 23566, 23569, 23572, 22606, 19269, 22607, 22606, 25597, 25136, 25190, 23563, 21026, 21023, 23569, 23566, 25598, 25599, 23467, 23386, 21155, 20955, 25199, 23506, 22608, 25600, 25601, 25602, 25603, 25604, 25605, 25606, 25607, 25608, 25609, 25610, 25136, 20925, 25611, 25612, 25613, 21026, 21023, 19552, 19553, 25190, 23563, 23566, 23461, 25614, 25615, 23470, 23467, 21155, 20955, 25199, 21026, 21023, 19552, 19553, 23569, 23566, 25617, 25618, 23470, 23467, 21155, 20955, 25199, 24856, 22617, 24858, 22623, 24860, 24862, 19272, 19272, 19272, 19272, 24520, 24529, 22630, 24594, 24864, 22639, 25620, 20100, 19813, 24869, 22652, 25621, 20114, 25622, 24873, 22661, 20124, 22666, 19283, 19283, 19283, 19283, 25627, 22700, 24877, 25327, 22673, 24880, 25628, 22700, 25343, 25629, 25632, 25635, 21648, 20156, 20153, 25637, 25638, 25296, 25298, 23852, 19654, 19621, 25639, 21660, 19684, 19683, 21667, 21664, 21674, 21671, 19700, 21682, 21679, 24048, 25642, 25643, 25644, 24055, 25645, 22700, 24884, 24885, 25646, 22700, 24888, 24889, 25647, 25649, 25651, 25296, 25653, 19684, 19683, 20259, 25654, 25655, 25656, 23925, 25657, 25658, 25659, 23934, 25660, 25661, 24890, 24891, 25664, 23947, 23955, 23952, 25331, 25332, 25665, 23962, 23970, 23967, 25666, 24900, 23977, 24893, 24895, 23840, 23843, 25668, 23925, 25669, 25670, 25671, 23934, 25672, 25673, 25674, 24897, 24898, 23947, 25675, 25676, 23955, 23952, 25331, 25332, 25677, 23962, 23970, 23967, 25678, 24900, 23980, 24903, 24905, 22753, 22752, 21629, 21626, 21637, 21634, 21645, 21642, 21648, 21651, 21524, 25682, 25683, 25296, 24908, 19654, 19621, 23852, 25684, 19683, 19354, 19354, 19683, 19354, 19683, 19700, 19354, 19683, 24048, 25686, 25687, 25688, 24055, 25296, 24908, 19684, 19355, 19355, 19684, 19355, 19684, 19355, 19684, 25689, 25690, 21629, 21626, 21637, 21634, 21645, 21642, 21648, 21651, 21524, 25693, 25694, 25296, 25298, 23852, 19654, 19621, 25695, 19684, 19683, 20259, 21667, 21664, 21674, 21671, 19700, 21682, 21679, 24048, 25698, 25699, 25700, 24055, 25701, 25702, 23897, 19728, 19727, 20273, 20270, 22778, 22785, 19734, 19733, 19736, 19735, 22792, 22795, 22798, 24923, 22804, 24925, 22810, 24927, 24929, 25703, 24930, 25704, 24931, 25705, 25706, 24136, 19728, 19727, 25313, 19736, 19735, 24206, 24934, 25315, 19736, 19735, 24206, 23166, 23232, 23238, 23134, 23244, 19479, 19478, 19485, 19484, 25094, 19487, 19486, 25050, 25707, 25058, 24938, 23166, 23232, 23148, 23147, 23244, 19479, 19478, 19485, 19484, 25057, 25708, 25103, 24940, 23166, 23232, 23148, 23238, 19479, 19478, 23244, 19485, 19484, 25094, 19487, 19486, 25050, 25709, 25058, 24940, 19378, 19539, 21026, 21023, 19553, 19552, 25190, 23563, 23569, 23566, 19383, 19540, 24976, 22846, 22919, 22849, 25710, 21026, 21023, 19553, 19552, 24942, 23563, 23566, 23569, 19540, 19383, 24976, 22852, 22919, 22916, 24980, 25207, 21168, 21165, 25211, 23618, 23615, 25712, 25713, 23627, 23595, 19570, 19569, 23630, 25714, 19563, 24944, 21165, 21168, 24947, 23618, 23615, 25715, 25716, 22868, 22865, 23630, 19570, 19569, 25717, 19563, 25251, 25253, 23731, 25256, 24951, 24953, 25718, 20390, 20387, 25719, 20396, 21301, 25251, 21274, 20399, 23731, 25256, 23232, 23229, 23148, 23238, 25094, 19487, 19486, 23244, 19479, 19478, 19485, 19484, 25050, 25720, 25057, 25721, 25058, 25104, 22894, 22891, 25153, 25137, 25722, 25723, 25724, 19548, 24962, 20413, 22907, 22904, 20422, 19553, 19552, 23575, 23572, 24976, 24968, 22919, 22916, 24980, 24976, 24977, 24972, 22930, 22927, 24976, 24977, 24979, 24980, 25207, 21165, 21168, 25211, 23618, 23615, 25727, 25728, 25729, 23627, 23595, 23630, 19570, 19569, 25730, 19563, 25207, 24983, 25211, 23618, 23615, 25731, 25732, 25733, 23627, 23624, 23630, 19570, 19569, 25734, 25246, 25248, 25735, 21314, 23693, 23690, 23743, 25241, 25736, 24986, 25737, 25021, 25021, 20477, 24988, 25743, 24990, 24992, 25744, 24993, 20499, 22981, 20508, 20505, 25745, 25746, 22991, 20522, 20519, 25748, 25749, 23002, 20537, 20534, 25751, 25752, 25005, 20553, 20550, 25754, 25755, 20560, 25756, 23029, 25011, 23036, 20578, 20575, 25757, 20586, 20583, 25758, 25017, 20594, 25020, 25759, 25021, 20606, 25024, 25760, 25026, 25761, 25028, 25762, 25029, 25031, 23092, 20640, 20637, 25763, 25764, 20650, 20647, 25765, 23109, 23112, 25040, 25042, 23123, 20675, 20672, 23133, 23130, 23232, 23166, 23238, 23134, 19479, 19478, 23244, 19485, 19484, 25094, 19487, 19486, 25050, 25766, 25051, 25104, 23166, 23232, 23148, 23147, 23244, 19479, 19478, 19485, 19484, 25094, 19487, 19486, 25057, 25767, 25058, 25104, 23166, 23232, 23238, 23171, 23244, 23241, 19485, 19484, 25094, 19487, 19486, 25098, 23263, 25101, 25102, 23232, 23166, 23171, 23238, 23244, 23241, 19485, 19484, 25094, 19487, 19486, 25098, 23263, 25101, 25102, 25063, 25065, 25067, 25069, 25768, 23195, 23192, 25769, 25073, 25075, 25077, 25770, 23215, 23212, 25771, 23232, 23229, 23238, 23235, 23244, 23241, 19485, 19484, 25094, 19487, 19486, 25098, 23263, 25101, 25102, 25103, 25104, 23232, 23229, 23238, 23235, 23244, 23241, 19485, 19484, 25094, 19487, 19486, 25098, 23263, 25101, 25102, 25103, 25104, 23280, 23277, 25107, 25772, 25773, 20838, 20844, 20841, 23299, 23296, 23304, 25774, 20858, 20865, 19513, 19512, 20871, 20868, 25120, 25121, 20881, 19513, 19512, 20887, 20884, 25126, 25127, 20899, 19513, 19512, 20905, 20902, 25133, 25134, 23506, 23353, 25775, 25776, 25777, 25778, 25136, 21008, 23492, 23489, 25171, 25779, 25780, 25781, 25782, 23506, 23353, 25137, 25783, 25784, 25785, 25786, 25787, 25788, 25789, 25790, 25136, 20925, 23506, 23509, 25137, 25791, 25792, 23509, 23366, 25793, 25794, 25795, 25796, 25797, 25186, 19552, 19553, 25190, 23563, 23566, 23461, 25798, 25799, 25800, 25801, 20955, 21155, 25146, 25802, 19552, 19553, 23563, 23566, 23461, 25803, 25804, 20955, 21155, 25146, 25805, 25186, 19552, 19553, 25190, 23563, 23566, 23569, 25806, 25807, 25808, 25809, 20955, 21155, 25146, 25810, 19553, 19552, 25811, 25812, 23467, 23470, 21155, 21153, 25146, 25813, 23407, 23404, 25174, 25814, 25815, 25816, 25817, 25818, 25819, 25820, 25821, 25150, 25152, 25822, 25153, 23492, 23489, 25171, 25823, 25824, 25825, 25826, 23506, 23509, 25827, 25828, 25829, 25830, 25831, 25832, 25833, 25834, 25835, 25836, 25837, 23438, 23435, 21008, 25838, 25839, 25840, 25841, 25159, 21106, 21026, 21023, 19553, 19552, 25190, 23563, 23566, 23461, 25842, 25843, 25844, 23470, 23467, 21155, 21153, 25199, 25845, 23476, 23475, 25846, 25847, 25848, 25849, 25850, 25851, 25852, 25853, 25854, 25855, 25856, 25857, 25858, 25178, 21057, 23492, 23489, 25171, 25859, 25860, 25861, 25862, 23509, 23506, 25174, 25863, 25864, 25865, 25866, 25175, 25867, 25868, 19548, 25178, 21106, 25186, 19553, 19552, 25190, 23563, 23566, 23539, 23575, 23544, 25869, 25870, 25186, 19553, 19552, 25190, 23563, 23569, 23566, 23575, 23572, 25197, 25871, 25872, 25199, 25873, 25207, 21168, 21165, 25211, 23618, 23615, 25874, 25875, 25876, 23627, 23595, 23630, 19570, 19569, 25877, 19563, 25207, 25209, 25211, 23618, 23615, 25878, 25879, 25880, 23627, 23624, 19570, 19569, 23630, 25881, 23693, 23690, 23743, 25882, 25883, 25251, 25253, 25884, 21221, 21218, 25885, 23743, 23740, 25222, 25886, 25224, 25887, 25246, 25248, 25888, 21314, 25251, 25253, 23731, 25256, 23693, 23690, 23743, 25889, 25890, 25891, 25226, 21245, 21242, 25892, 25230, 25232, 21258, 21271, 25893, 25894, 25246, 25248, 25896, 21314, 25235, 21274, 21271, 25897, 25238, 23693, 23690, 23694, 25241, 25898, 25899, 25243, 25900, 21301, 25246, 25248, 25901, 21314, 25251, 25253, 23731, 25256, 25902, 23743, 23740, 25260, 25903, 25385, 25904, 25905, 25261, 19720, 19719, 24118, 24115, 25906, 25907, 25262, 25908, 25909, 25910, 25911, 25912, 25913, 25914, 25915, 25916, 25917, 19733, 19733, 19733, 19734, 19734, 19734, 19605, 19727, 24158, 19727, 19605, 23765, 23766, 25918, 25919, 19606, 19728, 25313, 25315, 25920, 25921, 19728, 19606, 25266, 25922, 23773, 25269, 25923, 19813, 25272, 25924, 25274, 23797, 25925, 25277, 19813, 25926, 21404, 21401, 25927, 25928, 25282, 25929, 25284, 23819, 21418, 23824, 25289, 23831, 25930, 25931, 23897, 19728, 19727, 25313, 25291, 21794, 21791, 24151, 24158, 19734, 19733, 25932, 25933, 25934, 25935, 23843, 23840, 21651, 21524, 25296, 25298, 23852, 19654, 19621, 25936, 25937, 24070, 19708, 19707, 24073, 25938, 25376, 25939, 25377, 25379, 25380, 25382, 25383, 25940, 25941, 25942, 25300, 25943, 25944, 25302, 19720, 19719, 23878, 23875, 25945, 25946, 25308, 25947, 25948, 25949, 25950, 23897, 19728, 19727, 25313, 25315, 25951, 21509, 25318, 25320, 19622, 19621, 21524, 25952, 23925, 25953, 25954, 25955, 23934, 25956, 25957, 25326, 25327, 25958, 23947, 23955, 23952, 25331, 25332, 25959, 23962, 23970, 23967, 25960, 21583, 25962, 21590, 23980, 23977, 25341, 25343, 23994, 23991, 25347, 25348, 19654, 19653, 25964, 25965, 21629, 21626, 21637, 21634, 21645, 21642, 21648, 21651, 25968, 25969, 21660, 19684, 19683, 21667, 21664, 21674, 21671, 19700, 21682, 21679, 24048, 25972, 25973, 25974, 24055, 24070, 19708, 19707, 24073, 25975, 25376, 25976, 25377, 25379, 25380, 25382, 25383, 25977, 25978, 25979, 24059, 24118, 24115, 25980, 25981, 24063, 25982, 25983, 24070, 19708, 19707, 24073, 25984, 25376, 25985, 25377, 25379, 25380, 25382, 25383, 25986, 25987, 25988, 25385, 25989, 25990, 24108, 19720, 19719, 24118, 24115, 25991, 25992, 24125, 25993, 25994, 25995, 25996, 24136, 19728, 19727, 25396, 25398, 21794, 21791, 24151, 24158, 19734, 19733, 25997, 25998, 24198, 25999, 24204, 25405, 24167, 25407, 24173, 25410, 25412, 25414, 26000, 24193, 24190, 26001, 26002, 24198, 24201, 24204, 26003, 21858, 21855, 25422, 26004, 26005, 25423, 24222, 24219, 24225, 24230, 26006, 25429, 26007, 21893, 21890, 24245, 24242, 25435, 26008, 25437, 26009, 26010, 26011, 26012, 21915, 25440, 24265, 24341, 24344, 26014, 26015, 26016, 26017, 25443, 24279, 26022, 25446, 26023, 19813, 21947, 21944, 26024, 25451, 24299, 21959, 24304, 22146, 25510, 21968, 21965, 25463, 26025, 26026, 26027, 25464, 24317, 24314, 24320, 24498, 26028, 26029, 25523, 26030, 26031, 21993, 21990, 25463, 26032, 26033, 25464, 24341, 24338, 24344, 25469, 26034, 26035, 26036, 26037, 26038, 26039, 24359, 26040, 25472, 19795, 25475, 26041, 26042, 25477, 19796, 25480, 24386, 25483, 26043, 26044, 26045, 26046, 26047, 26048, 25485, 24410, 26054, 22083, 26055, 19813, 25490, 24424, 26056, 22098, 26057, 19813, 25495, 26058, 26059, 22115, 22112, 26060, 25499, 24450, 22127, 24455, 22133, 24460, 25506, 24467, 22146, 25510, 25512, 26061, 26062, 25513, 25514, 24491, 19832, 19831, 25519, 24498, 24504, 24501, 25523, 26063, 26064, 25525, 26065, 24523, 24520, 24526, 24532, 24529, 24535, 24538, 26066, 19834, 19833, 26070, 24547, 25537, 24556, 25540, 26071, 26072, 25542, 24571, 25545, 25547, 24585, 24582, 26073, 26074, 26075, 24597, 24594, 24603, 24600, 24606, 26076, 24609, 25739, 25739, 26081, 26083, 26085, 19867, 19868, 26087, 19868, 19867, 19857, 19858, 19858, 19857, 19867, 19868, 25624, 26088, 25626, 26090, 19868, 19867, 25739, 25741, 26013, 26018, 22323, 26021, 26049, 22333, 26052, 26053, 26092, 26093, 22357, 22360, 26069, 26094, 26096, 26097, 22360, 22357, 26080, 26098, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 26113, 26114, 26115, 26116, 26117, 26118, 26119, 26120, 26121, 26122, 26123, 26124, 26130, 26131, 26132, 26134, 26135, 26136, 26137, 26138, 26139, 26140, 26141, 26142, 26143, 26144, 26145, 26146, 26147, 26148, 26149, 26150, 26153, 26154, 26155, 26156, 26157, 26158, 26159, 26160, 26161, 26162, 26163, 26164, 26165, 26166, 26167, 26168, 26169, 26174, 26175, 26176, 26177, 26180, 26182, 26184, 26187, 26190, 26191, 26192, 26193, 26194, 26195, 26196, 26197, 26198, 26199, 26200, 26201, 26202, 26203, 26204, 26205, 26206, 26207, 26208, 26209, 26210, 26212, 26217, 26215, 26219, 26220, 26224, 26225, 26227, 26228, 26229, 26230, 26231, 26232, 26233, 26234, 26235, 26236, 26237, 26238, 26239, 26240, 26241, 26242, 26243, 26244, 26245, 26246, 26247, 26248, 26249, 26251, 26252, 26253, 26254, 26255, 26256, 26257, 26258, 26260, 26261, 26262, 26263, 26264, 26265, 26266, 26267, 26270, 26272, 26275, 26278, 26279, 26280, 26283, 26284, 26285, 26286, 26287, 26288, 26289, 26290, 26291, 26293, 26294, 26295, 26296, 26297, 26298, 26299, 26300, 26301, 26302, 26303, 26304, 26306, 26307, 26308, 26309, 26310, 26311, 26312, 26313, 26314, 26315, 26316, 26317, 26318, 26319, 26320, 26321, 26322, 26323, 26324, 26325, 26326, 26328, 26329, 26330, 26331, 26333, 26335, 26336, 26337, 26338, 26339, 26340, 26341, 26342, 26344, 26345, 26346, 26347, 26348, 26350, 26351, 26355, 26356, 26357, 26358, 26360, 26361, 26362, 26363, 26364, 26366, 26367, 26368, 26369, 26370, 26371, 26372, 26373, 26374, 26375, 26376, 26377, 26380, 26382, 26383, 26384, 26386, 26387, 26388, 26392, 26394, 26395, 26396, 26397, 26400, 26401, 26404, 26405, 26407, 26408, 26410, 26411, 26412, 26413, 26414, 26416, 26417, 26418, 26420, 26421, 26422, 26423, 26424, 26425, 26427, 26428, 26431, 26432, 26435, 26436, 26437, 26440, 26441, 26442, 26443, 26445, 26446, 26447, 26449, 26450, 26451, 26452, 26453, 26454, 26455, 26456, 26457, 26458, 26459, 26460, 26461, 26462, 26463, 26464, 26466, 26467, 26468, 26469, 26470, 26472, 26473, 26474, 26475, 26476, 26477, 26478, 26479, 26480, 26481, 26482, 26485, 26486, 26487, 26488, 26489, 26490, 26491, 26492, 26493, 26494, 26495, 26496, 26498, 26499, 26500, 26501, 26502, 26503, 26504, 26505, 26506, 26507, 26509, 26510, 26511, 26512, 26513, 26515, 26516, 26517, 26518, 26519, 26520, 26521, 26522, 26523, 26524, 26525, 26526, 26529, 26532, 26533, 26534, 26535, 26536, 26537, 26538, 26539, 26540, 26541, 26542, 26543, 26544, 26545, 26546, 26547, 26548, 26549, 26550, 26551, 26553, 26555, 26556, 26558, 26559, 26560, 26561, 26562, 26563, 26564, 26565, 26566, 26567, 26568, 26569, 26570, 26571, 26572, 26573, 26574, 26575, 26576, 26577, 26578, 26579, 26580, 26581, 26582, 26584, 26585, 26586, 26587, 26588, 26589, 26590, 26591, 26592, 26593, 26594, 26595, 26597, 26598, 26599, 26600, 26601, 26602, 26603, 26604, 26605, 26606, 26607, 26608, 26609, 26610, 26611, 26613, 26614, 26615, 26616, 26617, 26618, 26619, 26620, 26621, 26622, 26623, 26624, 26625, 26626, 26627, 26628, 26629, 26630, 26632, 26633, 26634, 26635, 26636, 26637, 26638, 26639, 26640, 26641, 26642, 26643, 26644, 26645, 26646, 26647, 26648, 26649, 26650, 26651, 26652, 26653, 26655, 26656, 26657, 26658, 26659, 26661, 26662, 26663, 26664, 26665, 26666, 26667, 26668, 26670, 26671, 26672, 26673, 26674, 26676, 26677, 26678, 26679, 26680, 26681, 26682, 26684, 26685, 26687, 26688, 26689, 26690, 26691, 26692, 26693, 26694, 26695, 26696, 26697, 26698, 26699, 26700, 26701, 26702, 26703, 26704, 26705, 26706, 26708, 26710, 26711, 26712, 26713, 26714, 26715, 26719, 26717, 26720, 26721, 26722, 26723, 26724, 26725, 26726, 26727, 26728, 26729, 26730, 26731, 26732, 26733, 26734, 26735, 26736, 26737, 26738, 26739, 26740, 26741, 26742, 26743, 26744, 26745, 26746, 26747, 26748, 26749, 26752, 26753, 26754, 26755, 26756, 26758, 26759, 26760, 26761, 26762, 26763, 26764, 26767, 26768, 26769, 26770, 26771, 26773, 26774, 26776, 26777, 26778, 26779, 26780, 26782, 26784, 26785, 26786, 26787, 26789, 26790, 26792, 26793, 26794, 26795, 26796, 26797, 26799, 26800, 26801, 26802, 26804, 26805, 26806, 26807, 26809, 26810, 26811, 26812, 26814, 26816, 26817, 26818, 26819, 26820, 26822, 26823, 26825, 26826, 26827, 26829, 26830, 26831, 26833, 26835, 26837, 26838, 26839, 26840, 26841, 26842, 26844, 26845, 26847, 26848, 26849, 26850, 26851, 26852, 26853, 26854, 26855, 26856, 26857, 26858, 26859, 26860, 26861, 26862, 26863, 26864, 26865, 26866, 26867, 26868, 26870, 26871, 26872, 26873, 26874, 26875, 26876, 26877, 26878, 26879, 26880, 26881, 26882, 26883, 26884, 26886, 26887, 26888, 26889, 26890, 26891, 26892, 26893, 26894, 26895, 26896, 26897, 26898, 26899, 26900, 26901, 26902, 26903, 26904, 26905, 26906, 26907, 26908, 26909, 26910, 26911, 26912, 26913, 26914, 26915, 26916, 26917, 26918, 26919, 26920, 26921, 26923, 26924, 26926, 26927, 26928, 26930, 26931, 26933, 26934, 26935, 26936, 26937, 26938, 26939, 26940, 26941, 26942, 26943, 26944, 26945, 26946, 26947, 26948, 26949, 26950, 26951, 26952, 26953, 26954, 26955, 26956, 26957, 26958, 26959, 26960, 26961, 26962, 26963, 26964, 26965, 26966, 26967, 26968, 26969, 26970, 26972, 26973, 26974, 26975, 26976, 26977, 26979, 26980, 26981, 26982, 26983, 26984, 26985, 26986, 26987, 26988, 26989, 26990, 26991, 26992, 26993, 26994, 26995, 26996, 26997, 26998, 26999, 27000, 27001, 27002, 27004, 27007, 27008, 27009, 27010, 27011, 27012, 27014, 27016, 27017, 27018, 27019, 27021, 27024, 27027, 27028, 27029, 27030, 27031, 27032, 27034, 27035, 27036, 27039, 27041, 27042, 27043, 27044, 27045, 27046, 27047, 27048, 27050, 27052, 27053, 27054, 27056, 27057, 27058, 27059, 27060, 27061, 27063, 27064, 27065, 27067, 27068, 27069, 27070, 27071, 27072, 27073, 27074, 27076, 27078, 27079, 27080, 27082, 27083, 27084, 27086, 27087, 27088, 27089, 27090, 27092, 27093, 27094, 27095, 27097, 27100, 27103, 27104, 27106, 27107, 27108, 27109, 27110, 27112, 27114, 27115, 27116, 27119, 27121, 27124, 27127, 27128, 27129, 27131, 27134, 27135, 27136, 27137, 27138, 27139, 27140, 27141, 27142, 27143, 27144, 27147, 27148, 27149, 27150, 27151, 27153, 27154, 27155, 27158, 27160, 27162, 27165, 27168, 27169, 27170, 27171, 27172, 27173, 27175, 27177, 27178, 27179, 27180, 27182, 27184, 27187, 27185, 27188, 27189, 27190, 27191, 27192, 27193, 27194, 27195, 27196, 27197, 27198, 27199, 27201, 27202, 27203, 27204, 27205, 27206, 27207, 27208, 27209, 27210, 27211, 27213, 27215, 27216, 27217, 27218, 27219, 27220, 27221, 27224, 27225, 27226, 27227, 27228, 27230, 27231, 27232, 27233, 27234, 27235, 27236, 27239, 27240, 27241, 27242, 27243, 27245, 27246, 27247, 27250, 27251, 27253, 27254, 27256, 27257, 27258, 27260, 27262, 27263, 27265, 27266, 27267, 27268, 27269, 27270, 27271, 27272, 27276, 27277, 27278, 27280, 27281, 27282, 27283, 27286, 27287, 27289, 27290, 27291, 27292, 27294, 27295, 27296, 27297, 27298, 27301, 27303, 27304, 27305, 27307, 27308, 27309, 27310, 27311, 27313, 27314, 27315, 27317, 27318, 27320, 27321, 27322, 27323, 27324, 27325, 27327, 27328, 27330, 27332, 27334, 27336, 27338, 27339, 27340, 27341, 27342, 27343, 27344, 27345, 27346, 27347, 27348, 27349, 27350, 27351, 27353, 27354, 27355, 27356, 27357, 27359, 27360, 27361, 27363, 27364, 27366, 27367, 27369, 27370, 27372, 27373, 27375, 27376, 27377, 27379, 27381, 27382, 27383, 27384, 27385, 27386, 27387, 27389, 27390, 27391, 27392, 27393, 27394, 27395, 27396, 27397, 27398, 27399, 27400, 27402, 27404, 27405, 27406, 27407, 27408, 27409, 27410, 27411, 27412, 27413, 27415, 27416, 27417, 27418, 27420, 27422, 27423, 27424, 27425, 27426, 27428, 27430, 27431, 27433, 27434, 27435, 27436, 27437, 27438, 27440, 27441, 27443, 27445, 27446, 27447, 27448, 27449, 27451, 27452, 27453, 27454, 27455, 27456, 27458, 27459, 27462, 27463, 27465, 27466, 27468, 27469, 27470, 27471, 27472, 27474, 27475, 27476, 27478, 27480, 27481, 27482, 27483, 27484, 27485, 27486, 27487, 27488, 27489, 27490, 27491, 27493, 27494, 27495, 27496, 27497, 27498, 27499, 27500, 27501, 27503, 27504, 27505, 27506, 27507, 27508, 27509, 27510, 27511, 27512, 27513, 27514, 27517, 27518, 27519, 27520, 27521, 27523, 27525, 27526, 27527, 27528, 27529, 27531, 27533, 27534, 27535, 27536, 27538, 27539, 27541, 27542, 27543, 27544, 27546, 27548, 27549, 27550, 27551, 27552, 27554, 27556, 27557, 27559, 27560, 27561, 27562, 27563, 27564, 27566, 27567, 27569, 27571, 27572, 27573, 27574, 27575, 27576, 27577, 27578, 27579, 27580, 27581, 27582, 27584, 27586, 27587, 27588, 27589, 27590, 27591, 27592, 27593, 27595, 27596, 27597, 27599, 27600, 27601, 27603, 27604, 27605, 27606, 27608, 27609, 27610, 27611, 27612, 27614, 27616, 27617, 27618, 27619, 27620, 27622, 27623, 27625, 27627, 27628, 27629, 27630, 27631, 27632, 27634, 27636, 27637, 27639, 27641, 27642, 27643, 27645, 27646, 27647, 27648, 27649, 27650, 27651, 27652, 27653, 27654, 27657, 27658, 27659, 27660, 27661, 27662, 27664, 27665, 27667, 27668, 27669, 27670, 27672, 27673, 27674, 27675, 27676, 27677, 27679, 27681, 27683, 27685, 27686, 27687, 27688, 27690, 27691, 27692, 27693, 27694, 27696, 27699, 27701, 27702, 27704, 27706, 27707, 27708, 27710, 27712, 27713, 27714, 27716, 27717, 27719, 27720, 27721, 27722, 27723, 27724, 27725, 27726, 27727, 27728, 27729, 27730, 27732, 27733, 27734, 27735, 27736, 27737, 27738, 27739, 27740, 27741, 27742, 27744, 27746, 27747, 27748, 27749, 27750, 27751, 27752, 27754, 27755, 27757, 27758, 27759, 27760, 27761, 27763, 27764, 27765, 27766, 27767, 27768, 27770, 27772, 27773, 27774, 27775, 27776, 27778, 27779, 27780, 27784, 27785, 27786, 27787, 27788, 27789, 27790, 27791, 27792, 27793, 27794, 27795, 27797, 27799, 27800, 25634, 25631, 25967, 25966, 27801, 27802, 27249, 27274, 27285, 27803, 27804, 27805, 27806, 27807, 27808, 27809, 27810, 27811, 27813, 27814, 27815, 27817, 27819, 27820, 27821, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 27909, 27911, 27917, 27920, 27922, 27925, 27929, 27933, 27940, 27944, 27946, 27949, 27954, 27956, 27959, 27960, 27964, 27968, 27970, 27972, 27976, 27978, 27984, 27985, 27987, 27989, 27991, 27995, 27997, 28001, 28005, 28007, 28010, 28015, 28017, 28020, 28022, 28025, 28027, 28030, 28033, 28034, 28036, 28040, 28043, 28045, 28048, 28050, 28052, 28055, 28057, 28075, 28079, 26343, 26349, 28097, 28102, 28105, 28108, 28110, 28113, 26379, 26381, 26385, 28125, 26399, 26403, 26409, 28136, 26415, 28141, 28147, 26426, 26430, 28152, 28155, 28156, 26444, 28161, 28167, 28169, 28171, 28173, 28176, 28181, 28184, 28186, 28188, 28191, 26484, 28198, 28200, 28202, 28204, 28207, 28209, 28211, 28214, 28219, 28222, 28225, 28227, 28230, 26528, 28235, 28238, 28241, 28244, 28258, 28262, 28267, 28270, 28272, 28274, 28277, 28280, 28285, 28287, 28289, 28292, 28297, 28299, 28301, 28304, 28307, 28312, 28314, 28316, 28320, 28322, 28326, 28328, 28330, 28334, 28336, 28340, 28344, 28347, 28350, 28352, 26660, 28357, 28360, 28363, 28365, 26675, 28375, 28377, 28380, 28384, 28386, 28389, 28391, 28394, 28400, 28405, 28408, 28411, 28413, 28417, 28423, 28430, 28433, 28435, 28436, 28438, 26757, 28445, 28447, 28448, 28450, 28456, 28470, 28474, 28478, 28482, 28489, 28491, 28504, 28507, 28514, 28516, 28518, 28520, 28522, 28525, 28528, 28533, 28535, 28537, 28540, 28543, 28548, 28550, 28552, 28554, 28557, 28563, 28565, 28567, 28569, 28572, 28582, 28587, 28589, 28591, 28593, 28595, 28598, 28606, 28608, 28610, 28612, 28615, 28623, 28628, 28630, 28632, 28634, 28637, 28641, 28644, 28648, 28651, 28655, 28657, 28660, 28665, 28670, 28673, 28677, 28679, 28682, 28686, 28690, 28693, 28696, 28699, 28703, 28707, 28711, 28714, 28717, 28719, 28722, 28727, 28731, 28736, 28738, 28741, 28742, 28745, 28748, 28750, 28754, 28756, 28757, 28759, 28762, 28764, 28767, 28768, 28771, 28776, 28783, 28787, 28791, 28793, 28797, 28801, 28803, 28809, 28812, 28814, 28815, 28817, 27229, 28824, 28826, 28827, 28829, 28832, 28837, 28839, 28850, 28854, 28858, 28864, 28867, 28880, 28886, 28888, 28903, 28911, 27362, 27365, 28924, 28926, 28927, 28938, 28943, 28946, 28951, 28953, 28957, 28961, 28975, 28977, 28983, 28991, 27457, 27461, 27467, 29001, 27473, 29006, 29010, 29014, 29018, 29021, 29023, 29025, 29030, 29033, 29035, 29038, 27516, 29043, 29055, 29060, 29074, 29076, 29082, 29087, 29090, 29103, 29109, 29114, 29117, 29119, 29121, 29129, 29135, 27640, 29138, 29146, 29149, 29151, 29158, 29163, 29170, 29183, 27705, 29187, 27711, 29192, 29208, 29213, 29218, 29221, 27753, 27756, 29236, 29239, 29241, 27777, 27904, 27906, 27908, 26783, 26828, 26836, 26788, 28465, 26836, 26791, 28468, 25747, 25753, 28485, 28509, 28511, 27913, 26783, 26828, 26836, 26788, 28465, 26836, 26791, 28468, 25747, 25753, 27914, 28509, 28511, 27915, 28255, 28884, 28252, 28250, 28254, 29107, 28269, 28252, 28250, 28254, 28269, 28914, 28255, 28970, 28968, 28256, 28884, 28892, 28252, 28250, 28254, 27594, 29107, 28269, 28264, 28255, 28970, 28968, 28256, 28884, 28892, 28252, 28250, 28254, 27594, 29107, 28269, 28914, 28264, 29217, 29230, 29234, 27380, 28932, 28934, 28936, 29145, 29207, 29205, 29216, 27380, 28932, 28934, 28936, 29145, 29207, 29205, 29216, 29217, 29234, 26170, 29247, 29230, 29234, 29250, 28914, 28266, 27958, 27962, 27967, 25583, 27982, 26218, 26223, 27994, 28000, 28695, 28009, 28319, 28325, 28729, 28744, 28014, 27091, 28029, 28032, 28726, 28729, 28039, 25616, 28800, 25619, 28063, 28061, 28065, 29252, 29254, 29223, 29220, 29223, 29220, 28077, 26334, 28082, 28084, 29223, 29220, 29256, 29260, 28091, 28139, 28143, 28122, 28154, 28159, 28163, 28165, 28096, 29262, 29263, 28101, 28120, 28139, 28143, 28122, 28154, 28159, 28163, 28123, 29027, 29264, 29265, 28956, 25663, 25662, 28139, 28143, 28145, 28154, 28159, 28163, 28165, 28180, 28197, 28218, 28255, 28256, 27585, 28248, 28252, 28250, 28254, 28255, 28256, 28914, 28264, 28266, 28269, 26583, 28284, 26596, 28296, 26612, 28311, 28726, 28402, 28735, 28740, 28407, 28319, 28325, 28333, 28339, 28680, 28402, 28735, 28740, 28407, 28319, 28325, 28333, 28339, 28370, 28372, 28374, 28871, 28383, 26709, 26707, 28399, 28680, 28402, 28740, 28735, 28407, 28753, 28416, 28421, 25725, 28426, 28428, 28443, 28454, 28455, 26781, 26783, 26828, 25742, 28463, 26836, 26788, 28465, 26836, 26791, 28468, 25747, 25750, 25753, 28485, 28509, 28511, 28488, 26836, 28494, 26836, 26828, 28497, 26836, 26834, 26832, 28502, 28509, 28511, 28513, 26869, 28532, 26885, 28547, 28560, 28562, 28575, 28577, 28627, 28580, 26922, 28585, 26929, 28601, 28605, 28603, 28618, 28622, 28620, 28627, 28640, 28647, 28654, 28659, 28664, 28669, 28672, 28780, 28680, 28729, 28685, 27055, 28695, 27066, 28706, 27081, 28800, 27091, 28726, 28729, 28730, 28735, 28740, 28747, 28753, 27152, 28766, 28770, 28775, 28780, 28785, 28790, 28795, 28800, 28806, 27214, 28822, 29268, 28836, 27261, 27259, 28844, 28845, 28847, 28849, 29269, 28856, 29270, 28861, 28862, 28866, 27299, 28871, 28872, 28874, 28875, 28877, 28879, 27316, 28884, 28892, 28893, 28894, 28895, 28896, 28915, 28950, 27450, 28915, 28950, 27450, 28915, 28907, 28906, 28950, 27450, 28914, 28917, 28916, 27368, 27380, 28932, 28934, 28936, 29017, 28942, 28999, 29004, 28988, 29009, 28956, 28966, 28965, 28970, 28968, 28971, 28973, 28981, 28987, 27450, 27450, 28999, 29004, 28988, 29009, 29017, 29029, 28999, 29004, 29009, 29008, 29017, 29029, 29048, 29047, 29052, 29050, 29053, 29059, 29065, 29064, 29069, 29067, 29070, 29072, 29080, 29086, 27585, 27602, 29099, 29097, 29101, 27594, 29107, 27602, 29113, 29124, 29125, 29128, 29132, 29141, 29143, 29145, 29155, 29157, 29162, 29167, 29169, 29173, 29175, 29177, 29230, 29181, 29180, 29191, 29195, 29197, 29199, 29201, 29203, 29207, 29205, 29216, 29217, 29232, 29234, 29238, 29280, 29230, 29232, 29234, 29238, 29284, 27816, 27822, 27816, 27822, 27816, 27822, 27798, 27796, 27822, 29273, 29271, 29273, 29278, 29276, 29278, 27816, 27822, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 29496, 29497, 29504, 29515, 29524, 29538, 29539, 29544, 29546, 29548, 29553, 29558, 29562, 29579, 29584, 29592, 29605, 29610, 29624, 29629, 29658, 29660, 29662, 29715, 29720, 29739, 29741, 29744, 29745, 29748, 29762, 29767, 29769, 29772, 29774, 29796, 29800, 29806, 29807, 29808, 29441, 29809, 29810, 29811, 29812, 29813, 29814, 29815, 29816, 29612, 29817, 29614, 29818, 29615, 29819, 29820, 29821, 29822, 29621, 29823, 29824, 29825, 29826, 29827, 29828, 29829, 29830, 29612, 29831, 29614, 29832, 29615, 29833, 29834, 29835, 29836, 29621, 29837, 29838, 29443, 29839, 29840, 29841, 29842, 29843, 29443, 29844, 29845, 29846, 29550, 29847, 29848, 29849, 29850, 29851, 29852, 29853, 29443, 28890, 29854, 29855, 29856, 29857, 29858, 29550, 29859, 29860, 29549, 29861, 29862, 29863, 29864, 29865, 29866, 29730, 28890, 29867, 29868, 29869, 29870, 29871, 29550, 29872, 29873, 29874, 29089, 29549, 29875, 29876, 29877, 29878, 28929, 29879, 29880, 29881, 29882, 29883, 29884, 29885, 29797, 29886, 29736, 29737, 28929, 29887, 29888, 29889, 29890, 29891, 29892, 29893, 29797, 29894, 29895, 29896, 27951, 27942, 29449, 27951, 27948, 29897, 29899, 29900, 29902, 29903, 29453, 29904, 29455, 29905, 29906, 29456, 29458, 27974, 25584, 29907, 27980, 29908, 29462, 26221, 29909, 29704, 26226, 29910, 29911, 29466, 29468, 29912, 28003, 29913, 29708, 29471, 29914, 28419, 29915, 29567, 29472, 29916, 26631, 28724, 29917, 29689, 29918, 29675, 29919, 28019, 29476, 29920, 29478, 29921, 29479, 29922, 29480, 28724, 29923, 29685, 29924, 29925, 29482, 28042, 29485, 29926, 29927, 29487, 28054, 29490, 29928, 29929, 29930, 29931, 29934, 29935, 29802, 29804, 29802, 29936, 29937, 29802, 29804, 29491, 29938, 29492, 29939, 29940, 29941, 29802, 29942, 29943, 29802, 29804, 28130, 28132, 29946, 29508, 29947, 29510, 29948, 29949, 29511, 28150, 29514, 29950, 29951, 29518, 29952, 29953, 29519, 29954, 28099, 29957, 28115, 28112, 25641, 29501, 28130, 28132, 29958, 29508, 29959, 29510, 29960, 29961, 29511, 29514, 28150, 29962, 29963, 29518, 29964, 29965, 29519, 29966, 29029, 29969, 29040, 29037, 25971, 29766, 28132, 28130, 29970, 29971, 29508, 29972, 29510, 29973, 29974, 29511, 29514, 28150, 29975, 29976, 29518, 29977, 29978, 29519, 28175, 25681, 25680, 28178, 29979, 28193, 28190, 25697, 25685, 29529, 29980, 28232, 28229, 25697, 25696, 29543, 28213, 25692, 25691, 28216, 29981, 28232, 28229, 25697, 29543, 29982, 29983, 28240, 29984, 29985, 29986, 29987, 29988, 29989, 29990, 29991, 29992, 29993, 29550, 29994, 29552, 29555, 29995, 29996, 29557, 29631, 29997, 29998, 29561, 29564, 29999, 30000, 29671, 30001, 29685, 30002, 28733, 30003, 29688, 30004, 29595, 28410, 30005, 30006, 29567, 29565, 30007, 26631, 30008, 29572, 29565, 30009, 28342, 28724, 30010, 29685, 30011, 28733, 30012, 29688, 30013, 29595, 28410, 30014, 30015, 29567, 29569, 30016, 26631, 30017, 29572, 29574, 30018, 28342, 29576, 29577, 29578, 29581, 29582, 29583, 30019, 30020, 30021, 29586, 30022, 29587, 29588, 30023, 29590, 29591, 30024, 30025, 30026, 29671, 30027, 29685, 30028, 28403, 30029, 28733, 30030, 29595, 28410, 30031, 30032, 29597, 29598, 30033, 28419, 30034, 25726, 30035, 30036, 30037, 29601, 29602, 29604, 30038, 29607, 29609, 30039, 30040, 28458, 30041, 30042, 30043, 30044, 30045, 30046, 30047, 30048, 30049, 30050, 30051, 29612, 30052, 29613, 30053, 29614, 30054, 29615, 30055, 30056, 30057, 30058, 29621, 30059, 26824, 26821, 30060, 30061, 30062, 30063, 30064, 30065, 30066, 30067, 29618, 29619, 30068, 30069, 30070, 29621, 29623, 29626, 30071, 30072, 29628, 29631, 30073, 30074, 29633, 29636, 29635, 30075, 30076, 29638, 29641, 29640, 30077, 30078, 28578, 30079, 29656, 28633, 30080, 26925, 30081, 30082, 26932, 30083, 29645, 29648, 29647, 30084, 30085, 30086, 29650, 29653, 29652, 30087, 30088, 30089, 28625, 30090, 29656, 28633, 30091, 30092, 30093, 28675, 29665, 30094, 28662, 30095, 28667, 30096, 29668, 30097, 28675, 30098, 29671, 30099, 29685, 30100, 30101, 29672, 28688, 29674, 30102, 30103, 29675, 28716, 29677, 30104, 30105, 29678, 28709, 29680, 30106, 30107, 29681, 28716, 29683, 30108, 28724, 30109, 29685, 30110, 29704, 30111, 28733, 30112, 29688, 30113, 29689, 28744, 29691, 30114, 30115, 29693, 29695, 29697, 30116, 29699, 30117, 29701, 30118, 28773, 30119, 28778, 30120, 29704, 30121, 30122, 29705, 29707, 30123, 30124, 29708, 29710, 30125, 30126, 29711, 29712, 29714, 30127, 29717, 29719, 28834, 30129, 29722, 29723, 30130, 30131, 30132, 30133, 30134, 30135, 28852, 29729, 29725, 30137, 29726, 30139, 30140, 29727, 30141, 28869, 30142, 30143, 30144, 30145, 30146, 30147, 30148, 29729, 30149, 30150, 29730, 28890, 30151, 30152, 30153, 30154, 30155, 30156, 30157, 30158, 30159, 30160, 30161, 29732, 30162, 30163, 30164, 30165, 30166, 29733, 30167, 30168, 30169, 29734, 30170, 29735, 29736, 29737, 28929, 30171, 30172, 30173, 30174, 30175, 30176, 28945, 28950, 28997, 28995, 30177, 29753, 30178, 29755, 30179, 30180, 28989, 29742, 29027, 25967, 25966, 29029, 30181, 29040, 29037, 25971, 29766, 30182, 30183, 30184, 30185, 30186, 30187, 29746, 28979, 30188, 30189, 30190, 30191, 28997, 28995, 30192, 29753, 30193, 29755, 30194, 30195, 28989, 29757, 30196, 29020, 29027, 25967, 25966, 30197, 29040, 29037, 25971, 29766, 28997, 28995, 30198, 29753, 30199, 29755, 30200, 30201, 29012, 29757, 30202, 29020, 29027, 25967, 25966, 30203, 29040, 29037, 25971, 29766, 30204, 30205, 30206, 30207, 30208, 29770, 29057, 30209, 30210, 30211, 30212, 30213, 30214, 30215, 29770, 29078, 30216, 30217, 29089, 30218, 30219, 30220, 30221, 30222, 30223, 29105, 30224, 30225, 30226, 29111, 29116, 29118, 29779, 29123, 30227, 30228, 29126, 30229, 29131, 30230, 29133, 29782, 27644, 29783, 30231, 30232, 30233, 29150, 29148, 29153, 30234, 30235, 30236, 29160, 29165, 30237, 30238, 29171, 30239, 30240, 30241, 29228, 30242, 29802, 30243, 30244, 29804, 29805, 29791, 29792, 29793, 29794, 30245, 27718, 30246, 30247, 30248, 30249, 30250, 30251, 30252, 29797, 30253, 29228, 30254, 30255, 30256, 29802, 30257, 29223, 29220, 29228, 30259, 30260, 30261, 29802, 30262, 29804, 29805, 30258, 30263, 29932, 29933, 29898, 30264, 29901, 30265, 29932, 29933, 30258, 30266, 30263, 30267, 30258, 30268, 30263, 30269, 29944, 30270, 30271, 29945, 30272, 30273, 30274, 30275, 30276, 30277, 30278, 30258, 30279, 30263, 30280, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 30504, 30505, 30507, 30510, 30513, 30515, 30517, 30522, 30523, 30525, 30528, 30531, 30533, 30535, 30540, 28964, 30543, 30544, 30471, 30549, 30550, 30553, 30471, 29549, 28964, 30557, 30561, 30562, 30564, 30568, 30571, 28964, 30574, 30578, 30579, 30581, 30585, 30471, 30589, 30590, 30595, 30601, 27937, 30603, 30605, 30606, 30607, 30613, 27939, 30615, 30619, 30620, 30621, 30622, 30623, 30629, 30631, 30634, 30635, 30636, 30637, 30639, 30641, 30642, 30644, 30645, 30648, 30649, 30651, 30653, 30654, 30656, 30658, 30659, 30661, 30662, 30664, 30666, 30668, 30669, 30671, 30673, 30675, 30676, 30678, 30681, 30682, 30683, 30686, 30687, 30688, 30690, 30693, 30695, 30696, 30697, 30698, 30700, 30701, 30702, 30704, 30708, 30709, 30711, 30712, 30713, 30714, 30716, 30718, 30721, 30722, 30723, 29516, 30726, 30729, 30730, 30731, 26365, 30733, 30734, 30735, 25640, 30736, 30737, 30738, 30740, 30742, 30745, 30746, 30747, 29516, 30750, 30753, 30754, 30755, 26393, 30757, 30758, 30759, 25970, 30760, 30761, 30762, 30763, 30765, 30767, 30770, 30771, 30772, 29516, 30775, 30778, 30779, 30780, 30781, 30782, 26471, 30784, 30785, 30786, 30787, 30788, 30790, 30791, 30792, 30793, 30794, 30795, 30796, 30797, 30798, 26514, 30800, 30801, 30802, 25696, 30803, 30471, 30806, 29547, 30809, 30473, 29549, 30817, 30819, 30820, 29554, 30823, 30824, 29559, 30827, 30828, 29563, 30831, 30833, 30835, 30837, 30839, 30840, 30843, 30844, 30846, 30848, 30849, 30851, 30852, 30854, 30856, 30858, 30860, 30861, 30864, 30865, 30867, 30869, 30870, 30872, 30873, 30874, 30875, 29580, 30876, 30877, 30878, 29585, 30882, 30884, 30885, 30887, 29593, 30888, 30889, 30892, 30894, 30896, 30898, 30900, 30901, 30904, 30905, 30907, 30909, 30913, 30914, 30915, 29606, 30917, 30918, 26772, 30921, 30923, 30927, 30930, 30933, 30935, 30937, 30939, 30944, 30946, 30947, 30949, 30952, 30956, 30957, 30961, 30962, 30963, 29625, 30966, 30967, 29630, 30970, 30971, 30972, 30975, 30976, 30977, 30980, 30982, 30983, 30985, 30988, 30990, 30991, 30992, 30994, 30996, 30997, 30998, 31000, 31002, 31004, 31005, 29659, 29661, 29663, 31009, 31010, 31012, 31014, 31016, 31018, 31020, 31022, 31025, 31026, 31027, 31030, 31031, 31032, 31035, 31036, 31037, 31040, 31041, 31042, 31044, 31046, 31048, 31050, 31052, 31054, 31055, 31056, 31059, 31060, 31061, 31063, 31065, 31067, 31069, 31071, 31074, 31075, 31078, 31079, 31082, 31083, 31084, 29716, 31086, 31087, 27244, 31088, 31090, 31091, 31092, 31098, 31099, 31100, 31102, 31105, 31107, 31115, 31118, 31119, 31131, 31133, 31137, 28915, 31139, 31141, 31143, 31144, 31145, 31146, 30489, 31153, 28949, 31154, 31155, 31156, 31158, 31160, 31161, 31163, 31164, 31165, 31166, 31167, 31168, 29020, 31170, 31171, 31172, 25970, 31173, 28964, 31174, 31176, 31180, 31181, 30493, 31186, 31187, 31189, 31191, 31192, 31194, 31195, 31197, 31198, 31199, 31200, 31202, 31203, 31204, 25970, 31205, 31206, 31207, 31209, 31211, 31212, 31214, 31215, 31217, 31218, 31219, 31220, 31222, 31223, 31224, 25970, 31225, 29046, 31226, 31228, 31231, 31232, 29063, 31234, 31236, 31240, 31241, 30497, 31244, 29093, 31247, 31251, 31255, 31256, 31257, 31258, 31259, 31262, 31264, 31266, 31267, 31268, 31269, 31273, 31274, 31275, 31279, 31280, 31283, 31287, 31289, 31290, 31292, 31293, 31294, 31295, 31296, 31297, 31299, 31305, 29211, 31307, 31309, 31313, 31315, 31316, 30500, 31317, 31321, 31323, 31324, 30502, 30520, 30538, 30548, 30554, 30815, 30570, 30572, 30587, 30591, 31325, 31326, 30594, 30594, 30600, 30598, 30618, 31327, 30626, 31328, 30600, 30598, 30612, 30610, 30618, 31329, 30626, 31331, 31333, 31334, 31304, 31302, 31301, 31312, 31335, 31320, 31337, 31304, 31302, 31301, 31312, 31339, 31320, 31341, 31304, 31302, 30707, 31312, 31343, 31344, 31320, 31346, 30815, 30808, 30818, 30815, 30818, 30822, 30826, 30830, 30880, 31114, 30912, 31112, 31110, 30920, 31110, 31104, 31110, 30942, 30959, 30965, 30969, 30974, 30979, 31081, 31081, 31112, 31110, 31097, 31095, 31110, 31104, 31110, 31114, 31112, 31110, 31121, 31127, 31126, 31123, 31127, 31127, 31126, 31130, 31130, 31129, 31136, 31136, 31135, 31184, 31185, 31263, 31272, 31263, 31272, 31263, 31272, 31272, 31149, 31184, 31185, 31246, 31253, 31272, 31271, 31282, 31277, 31286, 31263, 31272, 31277, 31282, 31286, 31272, 31271, 31277, 31282, 31286, 31304, 31302, 31301, 31312, 31354, 31320, 31356, 31353, 31349, 31349, 31353, 31349, 31351, 31353, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 31503, 31506, 31510, 31511, 31512, 31519, 31525, 31530, 31536, 31538, 31541, 30633, 31548, 31551, 31553, 30647, 30652, 30657, 31565, 30680, 30685, 31593, 31598, 31600, 31603, 31605, 31609, 31606, 31611, 31616, 31618, 31621, 31623, 31627, 31624, 31629, 31635, 31637, 31640, 31644, 31645, 31647, 31650, 31652, 31655, 31659, 31663, 31660, 31665, 31667, 31669, 31670, 31674, 31677, 31680, 31686, 30842, 30847, 31698, 30863, 30868, 31708, 31712, 31717, 31725, 30903, 31729, 31733, 31736, 30945, 31749, 31755, 31758, 31760, 31763, 31768, 31769, 31771, 31775, 31781, 31782, 31783, 31024, 31029, 31034, 31039, 31058, 31073, 31077, 31827, 31830, 31847, 31142, 31854, 31856, 31858, 31865, 31869, 31873, 31870, 31875, 31880, 31881, 31889, 31895, 31892, 31897, 31905, 31911, 31908, 31913, 31918, 31923, 31925, 31254, 31937, 31939, 31278, 31956, 31960, 31962, 31967, 31488, 30925, 29245, 29267, 30509, 30512, 30926, 30518, 30516, 30936, 30514, 31968, 31495, 29267, 30926, 30925, 29246, 30530, 30527, 30536, 30534, 30936, 30532, 31969, 31502, 30576, 30580, 31504, 30546, 31970, 31509, 30580, 31507, 30552, 31971, 31509, 31972, 30559, 30563, 31514, 30566, 31973, 31517, 31974, 31518, 30576, 30580, 31521, 30583, 31975, 31524, 31976, 31527, 31979, 30592, 31314, 31980, 30593, 30596, 31533, 31981, 31982, 30604, 31983, 30617, 31314, 31985, 30625, 31966, 31322, 30596, 31533, 31987, 31988, 30604, 30608, 31533, 31989, 31990, 30616, 31991, 30617, 31314, 31993, 30625, 31966, 31322, 30628, 30628, 30630, 31068, 30632, 30640, 31068, 31556, 31559, 31562, 30832, 31068, 30663, 31057, 30665, 30670, 30672, 31068, 30674, 31019, 31068, 30677, 31068, 30679, 30684, 30689, 30692, 31314, 31966, 31322, 31954, 31953, 31951, 31997, 31998, 31999, 31308, 32000, 31310, 31314, 32002, 31318, 31966, 31322, 31954, 31953, 31951, 32004, 32005, 32006, 31308, 32007, 31310, 31314, 32009, 31318, 31966, 31322, 31954, 31953, 30705, 30703, 32011, 32012, 32013, 31308, 32014, 31310, 31314, 32017, 31318, 31966, 31322, 30719, 30717, 31597, 30727, 31602, 30743, 30741, 31615, 30751, 31620, 32019, 30816, 30768, 30766, 31634, 30776, 31639, 30805, 31120, 31842, 32020, 30811, 32021, 31671, 30813, 31120, 31842, 32022, 30816, 32023, 31671, 32024, 32025, 32026, 30832, 31068, 30834, 30838, 30836, 31689, 31692, 30853, 31068, 30855, 30859, 30857, 31701, 31704, 31706, 31710, 32027, 31714, 31713, 32028, 30886, 30891, 30893, 31068, 30895, 30899, 30897, 31728, 32029, 31731, 31734, 32030, 32031, 32032, 32033, 30922, 32034, 32035, 30925, 30926, 29267, 30929, 30932, 29266, 30940, 30938, 30936, 30934, 32036, 31745, 30951, 31751, 32037, 31752, 32038, 32039, 32040, 32041, 31767, 30981, 31773, 31777, 31780, 31003, 31019, 31068, 31011, 31015, 31013, 31017, 31019, 31068, 31057, 31021, 31068, 31023, 31028, 31033, 31038, 31043, 31045, 31068, 31047, 31049, 31053, 31051, 31057, 31810, 31062, 31064, 31068, 31066, 31070, 31068, 31072, 32042, 32043, 31825, 31828, 30128, 31832, 32044, 32045, 31834, 32046, 32047, 32048, 30136, 31116, 30138, 32049, 31106, 32050, 31101, 31108, 32051, 32052, 32053, 31116, 31862, 31159, 31864, 31178, 31120, 31842, 31862, 31159, 31864, 31178, 31122, 32054, 31249, 32055, 32056, 31124, 32057, 32058, 31125, 32059, 32060, 32061, 31128, 32062, 32063, 31138, 32064, 31132, 31249, 32065, 32066, 31138, 32067, 31249, 32068, 31857, 32069, 32070, 32071, 32072, 32073, 32074, 31147, 31852, 32075, 32076, 31862, 31159, 31864, 31178, 31182, 31878, 31249, 31857, 31862, 31159, 31864, 31178, 31182, 31878, 32077, 31249, 32078, 31885, 31190, 31887, 31888, 31901, 31210, 31903, 31904, 31230, 31233, 31916, 31238, 31242, 31921, 32079, 31249, 32080, 31927, 32081, 32082, 32083, 32084, 31288, 32085, 31260, 31931, 31949, 31947, 32086, 32087, 32088, 32089, 31288, 32090, 31284, 31949, 31947, 32091, 32092, 32093, 32094, 31288, 32095, 31284, 31949, 31947, 31954, 31953, 31951, 32096, 32097, 32098, 31308, 32099, 31310, 31314, 32101, 31318, 31966, 31322, 31336, 31338, 31336, 31338, 31330, 31332, 31336, 31338, 31336, 31338, 31340, 31342, 32016, 31347, 32103, 32104, 32105, 32106, 31355, 31357, 32107, 32108, 32109, 31355, 31357, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 31608, 31626, 32294, 32296, 32298, 32300, 31662, 31673, 31676, 31679, 32319, 32325, 31754, 31757, 32352, 31872, 32359, 31894, 32363, 31910, 32378, 32379, 32380, 32381, 32382, 32383, 32384, 32385, 32386, 32387, 32388, 32390, 32391, 32392, 32393, 32394, 32395, 32396, 32397, 32398, 32399, 32400, 32402, 32403, 30541, 32404, 32405, 32406, 32408, 30555, 32409, 32410, 32411, 32413, 30555, 32259, 32415, 30556, 32416, 32417, 32418, 32420, 32422, 32423, 30573, 32424, 32425, 32426, 32428, 30588, 32430, 32432, 32376, 32433, 32435, 32436, 32437, 32438, 32263, 32440, 32442, 32443, 30624, 31540, 32445, 32446, 32447, 32448, 32449, 32450, 32263, 32452, 32453, 32454, 32455, 32264, 32457, 32459, 32460, 30624, 31540, 32462, 32463, 32464, 30627, 32465, 30627, 32466, 32467, 32468, 32469, 31546, 32268, 32470, 32471, 32269, 32270, 31555, 32472, 31558, 32473, 31561, 32474, 32475, 32476, 32477, 32478, 32479, 31566, 32480, 32481, 32482, 32483, 32484, 32485, 32486, 32487, 32488, 31574, 32489, 31577, 32490, 32491, 32376, 32492, 32493, 32494, 32495, 32496, 32497, 32498, 32374, 32501, 32503, 32376, 32504, 32506, 32507, 32508, 32509, 32510, 32511, 32512, 32374, 32515, 32517, 32376, 32518, 32520, 32521, 32522, 32523, 32524, 32525, 32526, 32527, 32374, 32530, 32532, 32376, 32533, 32535, 32536, 32537, 32538, 32539, 30715, 32540, 32541, 30725, 30724, 32542, 32281, 31604, 32543, 32544, 30739, 32545, 32546, 30749, 30748, 32547, 32288, 31622, 32307, 32549, 32550, 32551, 31631, 32552, 32553, 30774, 30773, 32554, 32295, 32301, 32301, 32555, 30804, 32556, 32557, 30814, 32305, 32559, 32561, 32562, 30812, 32563, 32564, 30814, 32307, 32566, 32568, 32572, 32573, 32574, 32575, 32576, 32311, 31688, 32577, 31691, 32578, 32579, 32580, 32581, 32582, 32583, 32314, 31700, 32584, 31703, 32585, 32586, 32317, 32587, 32318, 32589, 32590, 32592, 32593, 32594, 32595, 32596, 32597, 32598, 32320, 31727, 32599, 32322, 32601, 32323, 32602, 32324, 32603, 32605, 32607, 32608, 32610, 32611, 32612, 32613, 32614, 32615, 32616, 32617, 32618, 32619, 32621, 30955, 32622, 32623, 32625, 32329, 32330, 32630, 32631, 32332, 32331, 32333, 32632, 32334, 32633, 32634, 32635, 31008, 31007, 31006, 32636, 32637, 32638, 32639, 32640, 32641, 32642, 32643, 32644, 32645, 32646, 32647, 31793, 32648, 31796, 32649, 31799, 32650, 31802, 32651, 32652, 32653, 32654, 32655, 32656, 32657, 32658, 32659, 31813, 32660, 32661, 32662, 32663, 32664, 32665, 32666, 31821, 31823, 32669, 32345, 32670, 32346, 32671, 32672, 32675, 32676, 32679, 32680, 32681, 32683, 32685, 32686, 32687, 32690, 32691, 32692, 31157, 32693, 32353, 32694, 31876, 32695, 32696, 32697, 32698, 31157, 32699, 32353, 32700, 31876, 32701, 32703, 32704, 32706, 32709, 32710, 32713, 32714, 32716, 32718, 32719, 32720, 32353, 32722, 32347, 32724, 32726, 32348, 32727, 31943, 32729, 32731, 32733, 32734, 32735, 32737, 32738, 31157, 32739, 32353, 32740, 31876, 32741, 32742, 31152, 32350, 32743, 32744, 32745, 32746, 31157, 32747, 32353, 32748, 31876, 32749, 32750, 31183, 32752, 32754, 32755, 31188, 32756, 32757, 32758, 32759, 31208, 32760, 32761, 32762, 31914, 32763, 32764, 32765, 31919, 32766, 32767, 31243, 32369, 32769, 32771, 32371, 32772, 31929, 31934, 32776, 32778, 32779, 32780, 32781, 32371, 32782, 31934, 31943, 32786, 32788, 32789, 32790, 32371, 32791, 31941, 31943, 32795, 32797, 32798, 32799, 32800, 32801, 32802, 32803, 32374, 32806, 32808, 32376, 32809, 32811, 32812, 32813, 32814, 32815, 32816, 32817, 32818, 32819, 32820, 32821, 32822, 32823, 32824, 32825, 32826, 32827, 32832, 32833, 32837, 32838, 248, 249, 250, 251, 252, 253, 254, 255, 32283, 32290, 32303, 32355, 32361, 32365, 33045, 33047, 33049, 33051, 33053, 33056, 33058, 33060, 33062, 33064, 33068, 33069, 32407, 33073, 33074, 32412, 33078, 33079, 33081, 33082, 32419, 32421, 33088, 33089, 32427, 33093, 32429, 32431, 33096, 32434, 33099, 33102, 32441, 33106, 33107, 32444, 33109, 33111, 33114, 33116, 33119, 32458, 33123, 33124, 32461, 33126, 33128, 33130, 33132, 33135, 33136, 33137, 33139, 33140, 33141, 33143, 33145, 33147, 33150, 33152, 33154, 33157, 33159, 33162, 33164, 33167, 33169, 33171, 33174, 33175, 32502, 33178, 32505, 33181, 33183, 33186, 33187, 32516, 33190, 32519, 33193, 33195, 33197, 33199, 33200, 32531, 33203, 32534, 33206, 33210, 33208, 33213, 33214, 33216, 33217, 33220, 33218, 33223, 33224, 33226, 33227, 33228, 33232, 33230, 33235, 33236, 33238, 31643, 31649, 33239, 31658, 31654, 33240, 31658, 33242, 33243, 33245, 33246, 32560, 33250, 33251, 33253, 33254, 32567, 33031, 33032, 33033, 33257, 33260, 33262, 33263, 33265, 33267, 33270, 33272, 33273, 33275, 33278, 33280, 33281, 33034, 33285, 33288, 33290, 33291, 33293, 33295, 33297, 33302, 33304, 33306, 33308, 33310, 33313, 30948, 33036, 33037, 33317, 33318, 33319, 33321, 33322, 33323, 33325, 33327, 33329, 33330, 33331, 33332, 33335, 33338, 33341, 33344, 33346, 33348, 33350, 33352, 33356, 33358, 33360, 33362, 33365, 33368, 33369, 33371, 33373, 33375, 33377, 33380, 33381, 33384, 33388, 33386, 31868, 33390, 33392, 33393, 33397, 33395, 31868, 33399, 33401, 33402, 33405, 32708, 32712, 32717, 31868, 33414, 33416, 32725, 33419, 33421, 33424, 33429, 33427, 31868, 33431, 33433, 33434, 33436, 33437, 33442, 33440, 33444, 31868, 33446, 33447, 33449, 33453, 33451, 31201, 33458, 33456, 31221, 33462, 33463, 33466, 33467, 33469, 33470, 32770, 33473, 33475, 33476, 33477, 33478, 33480, 33482, 33484, 33485, 33486, 33488, 33490, 33492, 33493, 33494, 33496, 33498, 33501, 33502, 32807, 33505, 32810, 33508, 33044, 33055, 33066, 33312, 33316, 33383, 33300, 33379, 33385, 33312, 33316, 33379, 33385, 33383, 33300, 33376, 33312, 33316, 33404, 33407, 33409, 33413, 33439, 32753, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 33542, 33545, 33547, 33550, 33067, 32414, 33080, 33087, 33570, 33105, 33122, 33607, 33609, 33613, 33616, 33620, 33623, 33628, 33632, 33212, 33635, 31610, 33638, 33222, 33641, 31628, 32548, 33645, 33234, 33649, 33650, 33652, 33653, 33655, 31664, 33241, 32558, 33249, 32565, 33666, 33667, 33668, 33682, 33690, 33693, 33696, 33695, 33697, 33698, 33702, 33707, 33728, 33730, 33734, 33735, 31874, 33391, 33740, 33741, 31874, 33400, 33749, 32723, 33757, 33758, 31874, 33432, 33765, 33767, 31874, 33445, 33772, 33773, 31896, 33775, 33776, 31912, 33461, 33465, 32768, 33787, 33793, 33798, 33800, 33804, 33807, 33808, 33809, 33554, 33557, 33563, 33562, 33568, 33566, 33578, 33101, 33103, 33578, 33113, 33115, 33118, 33120, 33587, 33660, 33665, 33367, 33134, 32600, 33592, 33355, 33287, 33595, 33594, 33146, 33144, 33142, 33600, 33355, 33149, 33153, 33355, 33161, 33340, 33156, 33165, 33163, 33660, 33608, 33176, 33615, 33188, 33622, 33201, 33630, 33660, 33491, 32794, 32793, 33474, 32775, 32774, 33660, 33665, 33810, 33811, 32629, 32628, 33326, 33324, 33671, 33355, 33259, 33266, 33264, 33676, 33355, 33269, 33276, 33274, 33367, 33364, 32600, 33687, 33689, 33680, 33679, 33812, 33813, 33814, 33815, 33376, 33816, 33817, 32629, 32628, 33326, 33324, 33685, 33355, 33287, 33292, 32600, 33687, 33689, 33688, 33818, 33819, 33820, 33821, 33822, 33823, 33824, 32629, 32628, 33326, 33324, 33355, 33334, 33337, 33340, 33343, 33351, 33349, 33347, 33345, 33720, 33355, 33354, 33361, 33367, 33364, 32668, 32667, 33727, 33726, 33378, 33379, 33374, 33385, 33783, 33825, 33746, 33826, 33746, 33827, 33747, 33828, 33748, 33752, 33420, 32774, 32775, 33422, 33423, 32794, 32793, 33426, 33503, 33806, 33829, 33763, 33830, 32751, 33783, 33474, 32775, 32774, 33483, 32785, 32784, 33491, 32794, 32793, 33503, 33806, 255, 34048, 34050, 34057, 34058, 34067, 34069, 34071, 34073, 34076, 33648, 33651, 33654, 34082, 34091, 34094, 34098, 34100, 34102, 34103, 34106, 34107, 34109, 34112, 34113, 33766, 34117, 34120, 34121, 34123, 34124, 33553, 34053, 34136, 33556, 34053, 34137, 33561, 34138, 34139, 33565, 34140, 34141, 34056, 34056, 34142, 34143, 34144, 34145, 34146, 34147, 34148, 34149, 34150, 33211, 33221, 33657, 34151, 34084, 34152, 34086, 34153, 34154, 34155, 34156, 34157, 34158, 34159, 34160, 34161, 34162, 34163, 34164, 34165, 34166, 34167, 34168, 34169, 34170, 34171, 34172, 34173, 33211, 33221, 33657, 34074, 34174, 34059, 34175, 33610, 34176, 34061, 34177, 33617, 34178, 34063, 34179, 33625, 34180, 34065, 34181, 33211, 33221, 33657, 34182, 34074, 34183, 34184, 34185, 33799, 34186, 34187, 34188, 33789, 33233, 33657, 34189, 34084, 33662, 34190, 34086, 32569, 32570, 34193, 34194, 32571, 34097, 34195, 34196, 34197, 34198, 34199, 34200, 34201, 34202, 34203, 34204, 34205, 34206, 34207, 34208, 34209, 34210, 34211, 34212, 34213, 34218, 34214, 34216, 33284, 34221, 34222, 34097, 34223, 34224, 34225, 34226, 34227, 34228, 34229, 34230, 34231, 34232, 34233, 34235, 34240, 34241, 32627, 32626, 34097, 34242, 34243, 34244, 34245, 34246, 34247, 34248, 34249, 34250, 34251, 34252, 34253, 34254, 34255, 34256, 34257, 34258, 34259, 34260, 34261, 34262, 34263, 34264, 34265, 33376, 34266, 33389, 33738, 34267, 34127, 33398, 33744, 34269, 33745, 34271, 34273, 34275, 34276, 34110, 34277, 34278, 34279, 33789, 34280, 34281, 34282, 34283, 33799, 34284, 34285, 34132, 34286, 33430, 33761, 34288, 33443, 33769, 34290, 33454, 33459, 33780, 33778, 34291, 34127, 34292, 34293, 34294, 33789, 34295, 34296, 34297, 33794, 34298, 34299, 34300, 33799, 33801, 34301, 34132, 34302, 249, 250, 251, 252, 253, 254, 255, 34049, 34051, 34334, 34335, 34337, 34338, 34340, 34341, 34343, 34344, 34346, 34347, 34306, 34307, 33215, 34357, 34309, 33225, 34358, 34311, 34359, 34361, 34363, 34364, 34366, 34368, 34370, 34372, 34375, 34379, 34381, 34383, 33215, 34385, 34309, 33225, 34386, 34311, 34387, 34388, 34390, 34392, 34394, 34396, 34398, 34400, 34402, 33215, 34404, 34309, 33225, 34405, 34311, 34406, 34408, 34410, 34412, 34414, 34416, 33237, 34417, 34316, 34080, 34078, 34418, 34420, 34421, 34423, 34092, 33315, 34424, 34425, 34428, 34426, 34429, 34430, 34319, 34432, 34435, 34437, 34440, 34442, 34444, 34446, 34450, 34092, 33315, 34452, 34455, 34456, 34319, 34458, 34462, 34464, 34466, 34092, 33315, 34470, 34471, 34468, 34472, 34473, 34319, 34475, 34477, 34480, 34482, 34484, 34488, 34490, 34492, 33383, 34497, 34495, 34499, 34322, 34500, 34502, 34503, 34324, 34504, 34268, 34506, 34270, 34272, 34274, 34329, 34511, 34513, 34515, 34518, 34520, 34523, 34525, 34327, 34526, 34287, 34528, 34329, 34529, 34289, 34531, 34331, 34532, 34333, 34533, 34534, 34536, 34538, 34540, 34542, 34544, 34546, 34548, 34549, 34551, 33511, 33519, 34355, 34350, 33513, 34355, 34353, 33515, 33527, 33517, 33519, 33521, 33523, 34522, 33525, 34522, 33525, 33527, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 34560, 34561, 34563, 34565, 34572, 34573, 34574, 34576, 34577, 34579, 34360, 34362, 34585, 34587, 34588, 34589, 34592, 34594, 34595, 34597, 34599, 34607, 34609, 34610, 34612, 34407, 34619, 34621, 34622, 34623, 34419, 34422, 34628, 34629, 34630, 34636, 34637, 34639, 34643, 34644, 34645, 34646, 34647, 34650, 34651, 34654, 34655, 34656, 34657, 34662, 34663, 34665, 34667, 34671, 34672, 34675, 34501, 34679, 34686, 34510, 34694, 34698, 34702, 34704, 34705, 34535, 34584, 34669, 34569, 34567, 34688, 32830, 34716, 33510, 34717, 33518, 34690, 32831, 34718, 34719, 34720, 34721, 34722, 34723, 34708, 32834, 34712, 32836, 34550, 34724, 33526, 34584, 34669, 34725, 33516, 34393, 34726, 33518, 34397, 34727, 33520, 34401, 34728, 33522, 34615, 32828, 34617, 32829, 34688, 32830, 34690, 32831, 34729, 34730, 33524, 34642, 34652, 34669, 34681, 34683, 34684, 34685, 34688, 32830, 34710, 34690, 32831, 34731, 34732, 33524, 34696, 34700, 34708, 32834, 34710, 32835, 34712, 32836, 34550, 34733, 33526, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 34822, 34824, 34832, 34834, 34837, 34839, 34842, 34843, 34850, 34858, 34659, 34866, 34869, 34192, 34133, 34851, 34829, 34882, 34855, 34239, 34135, 34134, 34865, 34883, 34591, 34378, 34884, 34885, 34819, 34818, 34886, 34887, 34889, 34891, 34892, 34893, 34894, 33512, 34897, 33514, 34826, 34827, 34900, 34901, 34902, 34903, 34904, 34906, 34192, 34191, 34851, 34829, 34907, 34855, 34239, 34238, 34865, 34908, 34591, 34378, 34836, 34910, 34911, 34913, 34914, 34916, 34917, 34919, 34841, 34920, 34921, 34922, 34923, 34846, 34847, 34924, 34925, 34926, 34927, 34930, 34192, 34191, 34851, 34931, 34640, 34638, 34855, 34220, 34219, 34859, 34932, 34461, 34861, 34239, 34238, 34865, 34933, 34487, 34871, 34872, 34873, 34934, 34935, 34936, 34937, 34874, 34875, 34938, 34939, 34940, 34941, 34942, 34945, 34876, 34946, 34877, 34947, 34879, 34878, 34881, 34948, 34949, 34950, 34951, 34952, 34953, 34954, 34956, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 35079, 35080, 35084, 35085, 35086, 35087, 35088, 35090, 35091, 35092, 35093, 35094, 34660, 34867, 35096, 35097, 35100, 35101, 35098, 34888, 34890, 35109, 35111, 34825, 34823, 35112, 35113, 34905, 35120, 35121, 35122, 35123, 35125, 35126, 35127, 35128, 34660, 34867, 35130, 35131, 34835, 34833, 35132, 34909, 34912, 34915, 34918, 34840, 34838, 35140, 35145, 35146, 34929, 35152, 35153, 35154, 35156, 35157, 35158, 35159, 35160, 35161, 34648, 35163, 35164, 35165, 35166, 35167, 34660, 35169, 34867, 35170, 35171, 35172, 35177, 35178, 34944, 35185, 35187, 35189, 35190, 35191, 34955, 35195, 35103, 35107, 35117, 35195, 35115, 35195, 35144, 35142, 35150, 35195, 35148, 35183, 35195, 35180, 35197, 35195, 35193, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 35330, 35331, 34634, 35334, 35336, 35340, 35341, 35342, 35328, 35344, 34896, 34899, 35351, 35352, 35356, 34634, 35359, 35361, 35364, 35365, 35366, 35368, 35369, 35375, 35376, 35328, 35381, 34634, 35155, 35387, 35390, 35162, 35393, 35396, 35398, 35168, 35407, 35354, 35411, 35412, 35348, 35347, 35413, 35354, 35355, 35414, 35415, 35416, 35379, 35374, 35373, 35372, 35371, 35379, 35417, 35418, 35419, 35379, 35380, 35420, 35421, 35422, 35174, 35173, 35400, 35175, 35403, 35176, 35404, 35423, 35424, 35425, 35188, 35186, 35410, 35426, 35427, 35428, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 35586, 35588, 35339, 35095, 35584, 35592, 35346, 35596, 35599, 35363, 35129, 35584, 35605, 35607, 35609, 35611, 35612, 35389, 35395, 35619, 35584, 35335, 35621, 35594, 35624, 35625, 35595, 35627, 35628, 35630, 35360, 35632, 35633, 35634, 35635, 35636, 35637, 35638, 35641, 35642, 35644, 35392, 35646, 35647, 35648, 35649, 35650, 35651, 35652, 35654, 35409, 35656, 35657, 35658, 35660, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 35333, 35843, 35844, 35358, 35850, 35851, 35383, 35860, 35861, 35842, 35846, 35863, 35866, 35623, 35353, 35868, 35870, 35849, 35370, 35872, 35874, 35377, 35877, 35378, 35879, 35386, 35857, 35881, 35858, 35882, 35884, 35886, 35888, 35890, 35893, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 36096, 36105, 36098, 36106, 36107, 35865, 36110, 36111, 36099, 36113, 36101, 36114, 36115, 36117, 36119, 36120, 36102, 36121, 36122, 36124, 36103, 36125, 36128, 36129, 36130, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 36352, 36354, 35862, 36356, 36357, 35867, 36360, 36362, 35871, 35876, 35878, 36368, 36372, 36373, 36375, 36123, 36123, 36123, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 36611, 36609, 36623, 36104, 36359, 36615, 36624, 36112, 36367, 36118, 36364, 36620, 36625, 36369, 36376, 36374, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 36865, 36867, 36868, 36864, 36869, 36871, 36872, 36873, 36874, 36875, 36877, 36878, 36879, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 37120, 37123, 37124, 37126, 37129, 37131, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 37376, 37122, 37378, 37379, 37380, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 37381, 37635, 37633, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 37888, 37889, 37890, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 38144, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 38400, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255}; int h_C[]= { 1, 3, 5, 7, 9, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 48, 50, 52, 54, 57, 59, 61, 63, 65, 67, 69, 71, 74, 76, 78, 80, 82, 84, 86, 88, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 171, 173, 175, 177, 179, 181, 183, 185, 187, 189, 191, 193, 195, 197, 199, 201, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 297, 299, 301, 303, 305, 307, 309, 311, 313, 315, 317, 319, 321, 323, 325, 327, 329, 331, 333, 335, 337, 339, 341, 343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 395, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 487, 489, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 513, 515, 517, 519, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 615, 617, 619, 621, 623, 625, 627, 629, 631, 633, 635, 637, 639, 641, 643, 645, 649, 651, 653, 655, 657, 659, 661, 663, 665, 667, 669, 671, 673, 675, 677, 679, 683, 685, 687, 689, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 973, 975, 977, 979, 981, 983, 985, 987, 989, 991, 993, 995, 997, 999, 1001, 1003, 1005, 1007, 1009, 1011, 1019, 1021, 1023, 1025, 1027, 1029, 1031, 1033, 1035, 1037, 1039, 1041, 1046, 1048, 1051, 1053, 1055, 1057, 1060, 1062, 1065, 1067, 1069, 1071, 1073, 1075, 1077, 1079, 1081, 1083, 1085, 1087, 1089, 1091, 1093, 1095, 1097, 1099, 1101, 1103, 1105, 1107, 1109, 1111, 1113, 1115, 1117, 1119, 1121, 1123, 1125, 1127, 1129, 1131, 1133, 1135, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1159, 1161, 1164, 1166, 1168, 1170, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1193, 1195, 1197, 1199, 1201, 1203, 1206, 1208, 1211, 1213, 1215, 1217, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1245, 1247, 1249, 1251, 1254, 1256, 1259, 1261, 1264, 1266, 1269, 1271, 1274, 1276, 1278, 1280, 1282, 1284, 1287, 1289, 1292, 1294, 1297, 1299, 1302, 1304, 1307, 1309, 1312, 1314, 1317, 1319, 1322, 1324, 1327, 1329, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1349, 1351, 1354, 1356, 1362, 1364, 1366, 1368, 1370, 1372, 1375, 1377, 1379, 1381, 1383, 1385, 1388, 1390, 1392, 1394, 1397, 1399, 1402, 1404, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1431, 1433, 1436, 1438, 1440, 1442, 1444, 1446, 1449, 1451, 1454, 1456, 1458, 1460, 1462, 1464, 1467, 1469, 1472, 1474, 1477, 1479, 1482, 1484, 1487, 1489, 1492, 1494, 1497, 1499, 1502, 1504, 1507, 1509, 1512, 1514, 1517, 1519, 1521, 1523, 1526, 1528, 1531, 1533, 1539, 1541, 1543, 1545, 1547, 1549, 1552, 1554, 1557, 1559, 1562, 1564, 1567, 1569, 1571, 1573, 1575, 1577, 1579, 1581, 1583, 1585, 1587, 1589, 1591, 1593, 1595, 1597, 1599, 1601, 1603, 1605, 1607, 1609, 1611, 1613, 1615, 1617, 1619, 1621, 1623, 1625, 1627, 1629, 1631, 1633, 1635, 1637, 1640, 1642, 1644, 1646, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721, 1723, 1725, 1727, 1729, 1731, 1733, 1735, 1737, 1739, 1741, 1743, 1745, 1747, 1749, 1751, 1753, 1755, 1757, 1759, 1761, 1763, 1765, 1767, 1769, 1771, 1773, 1775, 1777, 1779, 1781, 1783, 1785, 1787, 1789, 1791, 1793, 1795, 1797, 1799, 1801, 1803, 1805, 1807, 1810, 1812, 1814, 1816, 1818, 1820, 1822, 1824, 1826, 1828, 1830, 1832, 1834, 1836, 1840, 1842, 1844, 1846, 1848, 1850, 1852, 1854, 1856, 1858, 1860, 1862, 1864, 1866, 1868, 1870, 1872, 1874, 1876, 1878, 1881, 1883, 1885, 1887, 1889, 1891, 1894, 1896, 1899, 1901, 1904, 1906, 1909, 1911, 1913, 1915, 1918, 1920, 1922, 1924, 1927, 1929, 1933, 1935, 1937, 1939, 1941, 1943, 1945, 1947, 1949, 1951, 1953, 1955, 1957, 1959, 1961, 1963, 1965, 1967, 1969, 1971, 1974, 1976, 1979, 1981, 1984, 1986, 1989, 1991, 1994, 1996, 1998, 2000, 2003, 2005, 2008, 2010, 2015, 2017, 2020, 2022, 2025, 2027, 2030, 2032, 2035, 2037, 2040, 2042, 2045, 2047, 2049, 2051, 2053, 2055, 2058, 2060, 2063, 2065, 2067, 2069, 2072, 2074, 2076, 2078, 2080, 2082, 2084, 2086, 2088, 2090, 2093, 2095, 2100, 2102, 2105, 2107, 2110, 2112, 2114, 2116, 2118, 2120, 2122, 2124, 2126, 2128, 2130, 2132, 2134, 2136, 2138, 2140, 2142, 2144, 2146, 2148, 2150, 2152, 2154, 2156, 2158, 2160, 2162, 2164, 2166, 2168, 2171, 2173, 2175, 2177, 2180, 2182, 2185, 2187, 2193, 2195, 2197, 2199, 2201, 2203, 2206, 2208, 2211, 2213, 2216, 2218, 2221, 2223, 2225, 2227, 2229, 2231, 2234, 2236, 2239, 2241, 2244, 2246, 2249, 2251, 2254, 2256, 2263, 2265, 2267, 2269, 2271, 2273, 2275, 2277, 2280, 2282, 2285, 2287, 2293, 2295, 2297, 2299, 2302, 2304, 2307, 2309, 2318, 2320, 2323, 2325, 2328, 2330, 2333, 2335, 2338, 2340, 2344, 2346, 2348, 2350, 2353, 2355, 2357, 2359, 2361, 2363, 2365, 2367, 2369, 2371, 2373, 2375, 2377, 2379, 2381, 2383, 2385, 2387, 2389, 2391, 2393, 2395, 2397, 2399, 2401, 2403, 2405, 2407, 2409, 2411, 2413, 2415, 2417, 2419, 2421, 2423, 2425, 2427, 2429, 2431, 2433, 2435, 2437, 2439, 2442, 2444, 2446, 2448, 2451, 2453, 2455, 2457, 2459, 2461, 2463, 2465, 2467, 2469, 2471, 2473, 2475, 2477, 2480, 2482, 2484, 2486, 2488, 2490, 2492, 2494, 2496, 2498, 2500, 2502, 2504, 2506, 2508, 2510, 2513, 2515, 2517, 2519, 2521, 2523, 2525, 2527, 2529, 2531, 2534, 2536, 2538, 2540, 2542, 2544, 2546, 2548, 2550, 2552, 2554, 2556, 2558, 2560, 2562, 2564, 2567, 2569, 2571, 2573, 2575, 2577, 2579, 2581, 2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2599, 2601, 2603, 2605, 2607, 2609, 2611, 2613, 2615, 2617, 2619, 2621, 2623, 2625, 2627, 2629, 2631, 2633, 2635, 2637, 2639, 2641, 2643, 2645, 2647, 2649, 2651, 2653, 2655, 2657, 2659, 2661, 2663, 2665, 2667, 2669, 2671, 2673, 2675, 2677, 2679, 2681, 2683, 2685, 2687, 2689, 2691, 2693, 2695, 2697, 2700, 2702, 2704, 2706, 2709, 2711, 2713, 2715, 2717, 2719, 2721, 2723, 2725, 2727, 2730, 2732, 2735, 2737, 2739, 2741, 2743, 2745, 2747, 2749, 2751, 2753, 2755, 2757, 2760, 2762, 2764, 2766, 2768, 2770, 2772, 2774, 2777, 2779, 2781, 2783, 2786, 2788, 2790, 2792, 2794, 2796, 2798, 2800, 2802, 2804, 2806, 2808, 2811, 2813, 2815, 2817, 2820, 2822, 2824, 2826, 2828, 2830, 2832, 2834, 2836, 2838, 2841, 2843, 2845, 2847, 2849, 2851, 2853, 2855, 2857, 2859, 2862, 2864, 2866, 2868, 2870, 2872, 2874, 2876, 2878, 2880, 2882, 2884, 2886, 2888, 2890, 2892, 2894, 2896, 2899, 2901, 2904, 2906, 2909, 2911, 2914, 2916, 2918, 2920, 2922, 2924, 2927, 2929, 2932, 2934, 2936, 2938, 2941, 2943, 2946, 2948, 2951, 2953, 2955, 2957, 2959, 2961, 2964, 2966, 2968, 2970, 2972, 2974, 2977, 2979, 2981, 2983, 2985, 2987, 2990, 2992, 2995, 2997, 3000, 3002, 3006, 3008, 3010, 3012, 3016, 3018, 3020, 3022, 3024, 3026, 3029, 3031, 3034, 3036, 3039, 3041, 3044, 3046, 3049, 3051, 3054, 3056, 3062, 3064, 3066, 3068, 3070, 3072, 3074, 3076, 3078, 3080, 3082, 3084, 3086, 3088, 3090, 3092, 3094, 3096, 3098, 3100, 3102, 3104, 3106, 3108, 3110, 3112, 3115, 3117, 3119, 3121, 3123, 3125, 3127, 3129, 3131, 3133, 3135, 3137, 3140, 3142, 3146, 3148, 3151, 3153, 3156, 3158, 3161, 3163, 3166, 3168, 3171, 3173, 3176, 3178, 3181, 3183, 3185, 3187, 3189, 3191, 3194, 3196, 3199, 3201, 3204, 3206, 3209, 3211, 3213, 3215, 3217, 3219, 3222, 3224, 3227, 3229, 3232, 3234, 3237, 3239, 3242, 3244, 3247, 3249, 3252, 3254, 3257, 3259, 3262, 3264, 3270, 3272, 3275, 3277, 3280, 3282, 3285, 3287, 3292, 3294, 3296, 3298, 3300, 3302, 3304, 3306, 3308, 3310, 3312, 3314, 3317, 3319, 3321, 3323, 3326, 3328, 3330, 3332, 3334, 3336, 3338, 3340, 3342, 3344, 3346, 3348, 3351, 3353, 3356, 3358, 3360, 3362, 3365, 3367, 3370, 3372, 3375, 3377, 3380, 3382, 3385, 3387, 3390, 3392, 3395, 3397, 3400, 3402, 3405, 3407, 3410, 3412, 3415, 3417, 3420, 3422, 3425, 3427, 3429, 3431, 3434, 3436, 3438, 3440, 3443, 3445, 3449, 3451, 3453, 3455, 3457, 3459, 3461, 3463, 3465, 3467, 3470, 3472, 3474, 3476, 3481, 3483, 3485, 3487, 3489, 3491, 3494, 3496, 3499, 3501, 3504, 3506, 3509, 3511, 3513, 3515, 3517, 3519, 3522, 3524, 3526, 3528, 3531, 3533, 3536, 3538, 3543, 3545, 3547, 3549, 3555, 3557, 3559, 3561, 3563, 3565, 3567, 3569, 3571, 3573, 3575, 3577, 3581, 3583, 3585, 3587, 3589, 3591, 3593, 3595, 3597, 3599, 3602, 3604, 3606, 3608, 3610, 3612, 3614, 3616, 3618, 3620, 3624, 3626, 3629, 3631, 3633, 3635, 3638, 3640, 3642, 3644, 3648, 3650, 3652, 3654, 3657, 3659, 3661, 3663, 3666, 3668, 3671, 3673, 3675, 3677, 3679, 3681, 3683, 3685, 3687, 3689, 3691, 3693, 3695, 3697, 3699, 3701, 3703, 3705, 3707, 3709, 3711, 3713, 3715, 3717, 3720, 3722, 3724, 3726, 3728, 3730, 3732, 3734, 3736, 3738, 3740, 3742, 3744, 3746, 3748, 3750, 3753, 3755, 3758, 3760, 3763, 3765, 3768, 3770, 3773, 3775, 3778, 3780, 3783, 3785, 3788, 3790, 3793, 3795, 3798, 3800, 3803, 3805, 3809, 3811, 3813, 3815, 3818, 3820, 3823, 3825, 3828, 3830, 3833, 3835, 3838, 3840, 3842, 3844, 3846, 3848, 3850, 3852, 3855, 3857, 3859, 3861, 3864, 3866, 3870, 3872, 3874, 3876, 3879, 3881, 3884, 3886, 3889, 3891, 3894, 3896, 3898, 3900, 3902, 3904, 3906, 3908, 3910, 3912, 3914, 3916, 3918, 3920, 3922, 3924, 3926, 3928, 3930, 3932, 3934, 3936, 3938, 3940, 3942, 3944, 3946, 3948, 3950, 3952, 3954, 3956, 3959, 3961, 3964, 3966, 3968, 3970, 3972, 3974, 3976, 3978, 3980, 3982, 3984, 3986, 3988, 3990, 3992, 3994, 3996, 3998, 4000, 4002, 4004, 4006, 4008, 4010, 4012, 4014, 4017, 4019, 4021, 4023, 4025, 4027, 4029, 4031, 4033, 4035, 4037, 4039, 4041, 4043, 4045, 4047, 4049, 4051, 4053, 4055, 4057, 4059, 4061, 4063, 4065, 4067, 4069, 4071, 4073, 4075, 4077, 4079, 4081, 4083, 4085, 4087, 4089, 4091, 4093, 4095, 4097, 4099, 4101, 4103, 4105, 4107, 4109, 4111, 4113, 4115, 4117, 4119, 4121, 4123, 4125, 4127, 4129, 4131, 4133, 4135, 4137, 4139, 4141, 4143, 4145, 4147, 4149, 4151, 4153, 4155, 4157, 4159, 4161, 4163, 4165, 4167, 4169, 4171, 4173, 4175, 4177, 4179, 4182, 4184, 4186, 4188, 4190, 4192, 4194, 4196, 4198, 4200, 4202, 4204, 4206, 4208, 4210, 4212, 4214, 4216, 4218, 4220, 4222, 4224, 4226, 4228, 4230, 4232, 4234, 4236, 4238, 4240, 4242, 4244, 4247, 4249, 4251, 4253, 4255, 4257, 4259, 4261, 4263, 4265, 4267, 4269, 4271, 4273, 4275, 4277, 4279, 4281, 4283, 4285, 4287, 4289, 4291, 4293, 4295, 4297, 4299, 4301, 4303, 4305, 4307, 4309, 4311, 4313, 4315, 4317, 4319, 4321, 4323, 4325, 4327, 4329, 4331, 4333, 4336, 4338, 4340, 4342, 4345, 4347, 4349, 4351, 4354, 4356, 4358, 4360, 4362, 4364, 4367, 4369, 4372, 4374, 4377, 4379, 4381, 4383, 4385, 4387, 4390, 4392, 4394, 4396, 4398, 4400, 4403, 4405, 4408, 4410, 4413, 4415, 4418, 4420, 4422, 4424, 4434, 4436, 4439, 4441, 4447, 4449, 4451, 4453, 4455, 4457, 4460, 4462, 4465, 4467, 4470, 4472, 4475, 4477, 4480, 4482, 4485, 4487, 4490, 4492, 4495, 4497, 4500, 4502, 4505, 4507, 4510, 4512, 4515, 4517, 4519, 4521, 4523, 4525, 4528, 4530, 4533, 4535, 4538, 4540, 4543, 4545, 4547, 4549, 4551, 4553, 4555, 4557, 4559, 4561, 4563, 4565, 4567, 4569, 4571, 4573, 4575, 4577, 4579, 4581, 4583, 4585, 4587, 4589, 4591, 4593, 4595, 4597, 4599, 4601, 4603, 4605, 4608, 4610, 4612, 4614, 4616, 4618, 4620, 4622, 4625, 4627, 4629, 4631, 4633, 4635, 4637, 4639, 4643, 4645, 4647, 4649, 4652, 4654, 4657, 4659, 4665, 4667, 4670, 4672, 4678, 4680, 4683, 4685, 4691, 4693, 4695, 4697, 4700, 4702, 4704, 4706, 4710, 4712, 4714, 4716, 4718, 4720, 4722, 4724, 4726, 4728, 4730, 4732, 4735, 4737, 4739, 4741, 4743, 4745, 4747, 4749, 4753, 4755, 4757, 4759, 4761, 4763, 4765, 4767, 4769, 4771, 4773, 4775, 4779, 4781, 4783, 4785, 4788, 4790, 4793, 4795, 4801, 4803, 4806, 4808, 4811, 4813, 4816, 4818, 4820, 4822, 4824, 4826, 4829, 4831, 4833, 4835, 4837, 4839, 4842, 4844, 4847, 4849, 4852, 4854, 4857, 4859, 4861, 4863, 4865, 4867, 4870, 4872, 4874, 4876, 4878, 4880, 4882, 4884, 4886, 4888, 4891, 4893, 4896, 4898, 4901, 4903, 4905, 4907, 4909, 4911, 4913, 4915, 4917, 4919, 4921, 4923, 4925, 4927, 4929, 4931, 4933, 4935, 4937, 4939, 4941, 4943, 4945, 4947, 4949, 4951, 4953, 4955, 4957, 4959, 4962, 4964, 4966, 4968, 4970, 4972, 4974, 4976, 4978, 4980, 4982, 4984, 4987, 4989, 4991, 4993, 4995, 4997, 5000, 5002, 5005, 5007, 5010, 5012, 5018, 5020, 5023, 5025, 5028, 5030, 5032, 5034, 5036, 5038, 5041, 5043, 5049, 5051, 5054, 5056, 5058, 5060, 5062, 5064, 5066, 5068, 5070, 5072, 5074, 5076, 5078, 5080, 5082, 5084, 5086, 5088, 5090, 5092, 5094, 5096, 5098, 5100, 5102, 5104, 5106, 5108, 5110, 5112, 5115, 5117, 5121, 5123, 5125, 5127, 5129, 5131, 5134, 5136, 5139, 5141, 5144, 5146, 5149, 5151, 5153, 5155, 5157, 5159, 5162, 5164, 5166, 5168, 5170, 5172, 5175, 5177, 5180, 5182, 5185, 5187, 5190, 5192, 5194, 5196, 5199, 5201, 5203, 5205, 5209, 5211, 5213, 5215, 5218, 5220, 5222, 5224, 5227, 5229, 5231, 5233, 5236, 5238, 5241, 5243, 5245, 5247, 5249, 5251, 5253, 5255, 5257, 5259, 5261, 5263, 5265, 5267, 5269, 5271, 5273, 5275, 5277, 5279, 5281, 5283, 5286, 5288, 5290, 5292, 5295, 5297, 5299, 5301, 5303, 5305, 5307, 5309, 5312, 5314, 5316, 5318, 5321, 5323, 5325, 5327, 5329, 5331, 5333, 5335, 5337, 5339, 5341, 5343, 5346, 5348, 5350, 5352, 5354, 5356, 5358, 5360, 5362, 5364, 5366, 5368, 5370, 5372, 5375, 5377, 5379, 5381, 5383, 5385, 5388, 5390, 5393, 5395, 5398, 5400, 5403, 5405, 5408, 5410, 5413, 5415, 5418, 5420, 5423, 5425, 5428, 5430, 5433, 5435, 5438, 5440, 5443, 5445, 5448, 5450, 5453, 5455, 5458, 5460, 5462, 5464, 5466, 5468, 5470, 5472, 5474, 5476, 5478, 5480, 5483, 5485, 5487, 5489, 5491, 5493, 5496, 5498, 5501, 5503, 5507, 5509, 5512, 5514, 5517, 5519, 5521, 5523, 5525, 5527, 5530, 5532, 5535, 5537, 5540, 5542, 5545, 5547, 5550, 5552, 5554, 5556, 5558, 5560, 5563, 5565, 5568, 5570, 5572, 5574, 5576, 5578, 5580, 5582, 5585, 5587, 5589, 5591, 5594, 5596, 5598, 5600, 5602, 5604, 5606, 5608, 5610, 5612, 5614, 5616, 5618, 5620, 5622, 5624, 5626, 5628, 5630, 5632, 5634, 5636, 5638, 5640, 5642, 5644, 5646, 5648, 5650, 5652, 5654, 5656, 5658, 5660, 5662, 5664, 5666, 5668, 5670, 5672, 5674, 5676, 5678, 5680, 5682, 5684, 5686, 5688, 5690, 5692, 5694, 5696, 5698, 5700, 5702, 5704, 5706, 5708, 5710, 5712, 5714, 5716, 5718, 5720, 5722, 5724, 5726, 5728, 5730, 5732, 5734, 5736, 5738, 5740, 5742, 5744, 5746, 5748, 5750, 5752, 5754, 5756, 5758, 5760, 5762, 5764, 5766, 5768, 5770, 5772, 5774, 5776, 5778, 5780, 5782, 5784, 5786, 5788, 5790, 5792, 5794, 5796, 5798, 5800, 5802, 5804, 5806, 5808, 5810, 5812, 5814, 5816, 5818, 5820, 5822, 5824, 5827, 5829, 5831, 5833, 5836, 5838, 5840, 5842, 5844, 5846, 5848, 5850, 5852, 5854, 5856, 5858, 5860, 5862, 5864, 5866, 5868, 5870, 5872, 5874, 5876, 5878, 5880, 5882, 5885, 5887, 5890, 5892, 5894, 5896, 5899, 5901, 5903, 5905, 5908, 5910, 5912, 5914, 5916, 5918, 5920, 5922, 5924, 5926, 5928, 5930, 5933, 5935, 5938, 5940, 5942, 5944, 5946, 5948, 5950, 5952, 5954, 5956, 5958, 5960, 5962, 5964, 5966, 5968, 5970, 5972, 5974, 5976, 5978, 5980, 5982, 5984, 5987, 5989, 5991, 5993, 5995, 5997, 5999, 6001, 6003, 6005, 6008, 6010, 6012, 6014, 6016, 6018, 6020, 6022, 6024, 6026, 6028, 6030, 6032, 6034, 6037, 6039, 6042, 6044, 6046, 6048, 6050, 6052, 6054, 6056, 6059, 6061, 6065, 6067, 6069, 6071, 6075, 6077, 6080, 6082, 6085, 6087, 6090, 6092, 6095, 6097, 6099, 6101, 6103, 6105, 6108, 6110, 6112, 6114, 6116, 6118, 6121, 6123, 6125, 6127, 6130, 6132, 6135, 6137, 6143, 6145, 6147, 6149, 6151, 6153, 6156, 6158, 6160, 6162, 6164, 6166, 6168, 6170, 6172, 6174, 6176, 6178, 6180, 6182, 6184, 6186, 6188, 6190, 6192, 6194, 6197, 6199, 6201, 6203, 6205, 6207, 6209, 6211, 6214, 6216, 6219, 6221, 6224, 6226, 6229, 6231, 6234, 6236, 6239, 6241, 6244, 6246, 6249, 6251, 6257, 6259, 6262, 6264, 6267, 6269, 6272, 6274, 6277, 6279, 6282, 6284, 6287, 6289, 6291, 6293, 6295, 6297, 6300, 6302, 6304, 6306, 6308, 6310, 6312, 6314, 6317, 6319, 6325, 6327, 6330, 6332, 6335, 6337, 6339, 6341, 6344, 6346, 6348, 6350, 6354, 6356, 6359, 6361, 6364, 6366, 6369, 6371, 6374, 6376, 6379, 6381, 6384, 6386, 6389, 6391, 6394, 6396, 6399, 6401, 6403, 6405, 6407, 6409, 6411, 6413, 6415, 6417, 6420, 6422, 6425, 6427, 6430, 6432, 6435, 6437, 6439, 6441, 6443, 6445, 6448, 6450, 6453, 6455, 6457, 6459, 6461, 6463, 6466, 6468, 6470, 6472, 6474, 6476, 6479, 6481, 6483, 6485, 6487, 6489, 6491, 6493, 6495, 6497, 6499, 6501, 6503, 6505, 6507, 6509, 6511, 6513, 6515, 6517, 6519, 6521, 6523, 6525, 6527, 6529, 6531, 6533, 6535, 6537, 6539, 6541, 6543, 6545, 6547, 6549, 6551, 6553, 6555, 6557, 6559, 6561, 6563, 6565, 6567, 6569, 6571, 6573, 6575, 6577, 6579, 6581, 6583, 6585, 6587, 6589, 6591, 6593, 6595, 6597, 6600, 6602, 6604, 6606, 6609, 6611, 6613, 6615, 6617, 6619, 6621, 6623, 6626, 6628, 6631, 6633, 6635, 6637, 6639, 6641, 6643, 6645, 6648, 6650, 6652, 6654, 6656, 6658, 6660, 6662, 6665, 6667, 6669, 6671, 6673, 6675, 6678, 6680, 6683, 6685, 6688, 6690, 6693, 6695, 6698, 6700, 6703, 6705, 6708, 6710, 6713, 6715, 6718, 6720, 6723, 6725, 6728, 6730, 6733, 6735, 6737, 6739, 6741, 6743, 6745, 6747, 6749, 6751, 6753, 6755, 6757, 6759, 6761, 6763, 6766, 6768, 6770, 6772, 6774, 6776, 6778, 6780, 6782, 6784, 6787, 6789, 6792, 6794, 6797, 6799, 6802, 6804, 6806, 6808, 6811, 6813, 6815, 6817, 6820, 6822, 6826, 6828, 6830, 6832, 6835, 6837, 6840, 6842, 6845, 6847, 6850, 6852, 6855, 6857, 6860, 6862, 6864, 6866, 6868, 6870, 1524, 1524, 16, 1407, 1407, 17, 5216, 5216, 5216, 5216, 5225, 5225, 92, 5310, 92, 5319, 46, 46, 6195, 6195, 55, 55, 72, 72, 89, 89, 89, 89, 92, 92, 90, 90, 92, 92, 91, 91, 92, 92, 3059, 3059, 3260, 3267, 690, 690, 169, 6128, 6128, 6128, 6128, 6195, 6195, 7065, 7067, 7069, 7071, 7073, 7075, 7077, 7079, 202, 4343, 4343, 4334, 4334, 295, 295, 295, 295, 4623, 4623, 4641, 4641, 295, 295, 295, 295, 295, 295, 295, 295, 4245, 4245, 4688, 4688, 295, 295, 4733, 4733, 4343, 4343, 4334, 4334, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 4343, 4343, 4334, 4334, 4444, 4444, 4343, 4343, 4334, 4334, 4425, 4425, 485, 490, 4334, 4334, 511, 520, 4428, 4428, 4431, 4431, 4428, 4428, 4426, 4426, 4798, 4798, 4606, 4606, 4798, 4798, 5284, 5284, 5293, 5293, 690, 690, 681, 681, 681, 681, 5225, 5225, 5216, 5216, 690, 690, 690, 690, 2728, 945, 945, 946, 946, 2733, 3478, 3478, 3807, 3718, 3718, 3756, 3756, 3807, 3756, 3756, 3636, 3636, 2839, 2839, 3059, 3059, 971, 945, 946, 945, 946, 971, 1012, 1012, 1014, 1014, 1171, 1171, 1013, 1013, 1014, 1014, 1015, 1016, 1016, 1017, 1171, 1171, 1209, 1209, 1347, 1347, 1359, 1359, 1044, 1044, 1395, 1395, 1347, 1347, 1359, 1359, 1044, 1044, 1395, 1395, 1347, 1347, 1359, 1359, 1049, 1049, 1395, 1395, 1347, 1347, 1359, 1359, 1407, 1407, 1157, 1157, 1162, 1162, 1157, 1157, 1162, 1162, 1171, 1171, 1209, 1209, 1347, 1347, 1359, 1359, 1395, 1395, 1407, 1407, 1524, 1524, 1536, 1536, 1638, 1647, 1808, 1837, 1879, 1879, 1972, 1972, 2012, 2012, 2097, 2097, 2169, 2169, 2178, 2178, 2190, 2190, 2259, 2259, 2290, 2290, 2300, 2300, 2312, 2312, 2261, 2290, 2290, 2300, 2300, 2312, 2312, 2261, 2278, 2278, 2290, 2290, 2300, 2300, 2312, 2312, 2315, 2315, 2839, 2839, 2440, 2440, 2449, 2449, 3260, 3260, 2775, 2784, 2784, 2839, 2839, 2698, 2698, 2707, 2707, 2728, 2733, 3289, 2775, 2784, 2809, 2818, 2839, 2839, 3004, 3013, 3059, 3059, 3138, 3143, 3260, 3260, 3267, 3267, 3289, 3315, 3315, 3324, 3324, 3363, 3363, 3468, 3468, 3478, 3478, 3529, 3540, 3551, 3551, 3553, 3553, 3718, 3718, 3756, 3756, 3655, 3655, 3622, 3622, 3636, 3636, 3645, 3645, 3645, 3645, 3627, 3627, 3627, 3627, 3756, 3756, 3636, 3636, 3645, 3645, 3646, 3646, 3718, 3718, 3756, 3756, 5234, 5239, 3957, 3957, 3962, 3962, 6195, 6195, 4985, 4985, 5216, 5216, 5225, 5225, 4425, 4425, 4245, 4245, 4245, 4245, 4343, 4343, 4334, 4334, 4343, 4343, 4352, 4352, 4428, 4428, 4426, 4426, 4428, 4428, 4431, 4431, 4425, 4425, 4428, 4428, 4426, 4426, 4428, 4428, 4431, 4431, 4444, 4444, 4688, 4688, 4606, 4606, 4650, 4650, 4662, 4662, 4623, 4623, 4641, 4641, 4650, 4650, 4662, 4662, 4640, 4640, 4641, 4641, 4650, 4650, 4662, 4662, 4675, 4675, 4688, 4688, 4707, 4707, 4786, 4786, 4798, 4798, 4733, 4733, 4786, 4786, 4798, 4798, 4750, 4750, 4751, 4786, 4786, 4798, 4798, 4776, 4786, 4786, 4798, 4798, 4985, 4985, 4894, 4899, 5046, 5046, 4985, 4985, 5015, 5015, 5046, 5046, 5046, 5046, 5197, 5206, 5197, 5206, 5216, 5216, 5225, 5225, 5234, 5239, 5284, 5284, 5293, 5293, 5310, 5319, 5499, 5504, 5825, 5825, 5834, 5834, 6298, 6298, 5825, 5825, 5834, 5834, 6322, 6322, 5583, 5583, 5592, 5592, 9145, 9147, 9149, 9151, 6195, 6195, 9167, 9169, 9171, 9173, 9175, 9177, 9179, 9181, 9183, 9185, 9187, 9189, 6128, 6128, 6140, 6140, 6195, 6195, 5825, 5825, 5834, 5834, 6298, 6298, 5825, 5825, 5834, 5834, 5825, 5825, 5834, 5834, 6298, 6298, 5825, 5825, 5834, 5834, 6322, 6322, 5897, 5897, 5906, 5906, 5931, 5936, 9356, 9358, 9360, 9362, 9364, 9366, 9368, 9370, 9372, 9374, 9376, 9378, 9380, 9382, 9384, 9386, 9388, 9390, 9392, 9394, 9397, 9399, 9401, 9403, 6128, 6128, 6140, 6140, 6063, 6072, 6128, 6128, 6140, 6140, 6195, 6195, 6195, 6195, 6254, 6254, 6298, 6298, 6298, 6298, 6322, 6322, 6342, 6351, 6598, 6607, 9574, 9576, 9579, 9581, 9583, 9585, 9587, 9589, 9591, 9593, 9595, 9597, 9666, 9668, 9671, 9673, 9679, 9681, 9683, 9685, 9688, 9690, 9693, 9695, 9701, 9703, 9706, 9708, 9711, 9713, 9716, 9718, 6904, 6904, 6958, 9669, 9669, 6958, 9686, 9698, 9720, 9720, 9722, 9720, 9720, 9722, 9725, 9725, 9686, 9698, 9395, 9395, 9686, 9686, 9698, 9698, 9395, 9395, 9722, 9722, 9720, 9720, 9669, 9669, 9676, 9676, 9686, 9686, 9698, 9698, 9722, 9722, 9720, 9720, 9722, 9722, 9725, 9725, 253, 254, 255, 13825, 13827, 13829, 13831, 13833, 13835, 13837, 13839, 13841, 13843, 13845, 13847, 13849, 13851, 13853, 13855, 13857, 13859, 13861, 13863, 13865, 13867, 13869, 13871, 13873, 13875, 13877, 13879, 13881, 13883, 13885, 13887, 13889, 13891, 13893, 13895, 13897, 13899, 13901, 13903, 13905, 13907, 13909, 13911, 13913, 13915, 13917, 13919, 13921, 13923, 13925, 13927, 13929, 13931, 13933, 13935, 13937, 13939, 13941, 13943, 13945, 13947, 13949, 13951, 13953, 13955, 13957, 13959, 13961, 13963, 13965, 13967, 13969, 13971, 13973, 13975, 13977, 13979, 13981, 13983, 13985, 13987, 13989, 13991, 13993, 13995, 13997, 13999, 14001, 14003, 14005, 14007, 14009, 14011, 14013, 14015, 14017, 14019, 14021, 14023, 14025, 14027, 14029, 14031, 14033, 14035, 14037, 14039, 14041, 14043, 14045, 14047, 14049, 14051, 14053, 14055, 14057, 14059, 14061, 14063, 14065, 14067, 14069, 14071, 14073, 14075, 14077, 14079, 14081, 14083, 14085, 14087, 14089, 14091, 14093, 14095, 14097, 14099, 14101, 14103, 14105, 14107, 14109, 14111, 14113, 14115, 14117, 14119, 14121, 14123, 14125, 14127, 14129, 14131, 14133, 14135, 14137, 14139, 14141, 14143, 14145, 14147, 14149, 14151, 14153, 14155, 14157, 14159, 14161, 14163, 14165, 14167, 14169, 14171, 14173, 14175, 14177, 14179, 14181, 14183, 14185, 14187, 14189, 14191, 14193, 14195, 14197, 14199, 14201, 14203, 14205, 14207, 14209, 14211, 14213, 14215, 14217, 14219, 14221, 14223, 14225, 14227, 14229, 14231, 14233, 14235, 14237, 14239, 14241, 14243, 14245, 14247, 14249, 14251, 14253, 14255, 14257, 14259, 14261, 14263, 14265, 14267, 14269, 14271, 14273, 14275, 14277, 14279, 14281, 14283, 14285, 14287, 14289, 14291, 14293, 14295, 14297, 14299, 14301, 14303, 14305, 14307, 14309, 14311, 14313, 14315, 14317, 14319, 14321, 14323, 14325, 14327, 14329, 14331, 14333, 14335, 14337, 14339, 14341, 14343, 14345, 14347, 14349, 14351, 14353, 14355, 14357, 14359, 14361, 14363, 14365, 14367, 14369, 14371, 14373, 14375, 14377, 14379, 14381, 14383, 14385, 14387, 14389, 14391, 14393, 14395, 14397, 14399, 14401, 14403, 14405, 14407, 14409, 14411, 14413, 14415, 14417, 14419, 14421, 14423, 14425, 14427, 14429, 14431, 14433, 14435, 14437, 14439, 14441, 14443, 14445, 14447, 14449, 14451, 14453, 14455, 14457, 14459, 14461, 14463, 14465, 14467, 14469, 14471, 14473, 14475, 14477, 14479, 14481, 14483, 14485, 14487, 14489, 14491, 14493, 14495, 14497, 14499, 14501, 14503, 14505, 14507, 14509, 14511, 14513, 14515, 14517, 14519, 14521, 14523, 14525, 14527, 14529, 14531, 14533, 14535, 14537, 14539, 14541, 14543, 14545, 14547, 14549, 14551, 14553, 14555, 14557, 14559, 14561, 14563, 14565, 14567, 14569, 14571, 14573, 14575, 14577, 14579, 14581, 14583, 14585, 14587, 14589, 14591, 14593, 14595, 14597, 14599, 14601, 14603, 14605, 14607, 14609, 14611, 14613, 14615, 14617, 14619, 14621, 14623, 14625, 14627, 14629, 14631, 14633, 14635, 14637, 14639, 14641, 14643, 14645, 14647, 14649, 14651, 14653, 14655, 14657, 14659, 14661, 14663, 14665, 14667, 14669, 14671, 14673, 14675, 14677, 14679, 14681, 14683, 14685, 14687, 14689, 14691, 14693, 14695, 14697, 14699, 14701, 14703, 14705, 14707, 14709, 14711, 14713, 14715, 14717, 14719, 14721, 14723, 14725, 14727, 14729, 14731, 14733, 14735, 14737, 14739, 14741, 14743, 14745, 14747, 14749, 14751, 14753, 14755, 14757, 14759, 14761, 14763, 14765, 14767, 14769, 14771, 14773, 14775, 14777, 14779, 14781, 14783, 14785, 14787, 14789, 14791, 14793, 14795, 14797, 14799, 14801, 14803, 14805, 14807, 14809, 14811, 14813, 14815, 14817, 14819, 14821, 14823, 14825, 14827, 14829, 14831, 14833, 14835, 14837, 14839, 14841, 14843, 14845, 14847, 14849, 14851, 14853, 14855, 14857, 14859, 14861, 14863, 14865, 14867, 14869, 14871, 14873, 14875, 14877, 14879, 14881, 14883, 14885, 14887, 14889, 14891, 14893, 14895, 14897, 14899, 14901, 14903, 14905, 14907, 14909, 14911, 14913, 14915, 14917, 14919, 14921, 14923, 14925, 14927, 14929, 14931, 14933, 14935, 14937, 14939, 14941, 14943, 14945, 14947, 14949, 14951, 14953, 14955, 14957, 14959, 14961, 14963, 14965, 14967, 14969, 14971, 14973, 14975, 14977, 14979, 14981, 14983, 14985, 14987, 14989, 14991, 14993, 14995, 14997, 14999, 15001, 15003, 15005, 15007, 15009, 15011, 15013, 15015, 15017, 15019, 15021, 15023, 15025, 15027, 15029, 15031, 15033, 15035, 15037, 15039, 15041, 15043, 15045, 15047, 15049, 15051, 15053, 15055, 15057, 15059, 15061, 15063, 15065, 15067, 15069, 15071, 15073, 15075, 15077, 15079, 15081, 15083, 15085, 15087, 15089, 15091, 15093, 15095, 15097, 15099, 15101, 15103, 15105, 15107, 15109, 15111, 15113, 15115, 15117, 15119, 15121, 15123, 15125, 15127, 15129, 15131, 15133, 15135, 15137, 15139, 15141, 15143, 15145, 15147, 15149, 15151, 15153, 15155, 15157, 15159, 15161, 15163, 15165, 15167, 15169, 15171, 15173, 15175, 15177, 15179, 15181, 15183, 15185, 15187, 15189, 15191, 15193, 15195, 15197, 15199, 15201, 15203, 15205, 15207, 15209, 15211, 15213, 15215, 15217, 15219, 15221, 15223, 15225, 15227, 15229, 15231, 15233, 15235, 15237, 15239, 15241, 15243, 15245, 15247, 15249, 15251, 15253, 15255, 15257, 15259, 15261, 15263, 15265, 15267, 15269, 15271, 15273, 15275, 15277, 15279, 15281, 15283, 15285, 15287, 15289, 15291, 15293, 15295, 15297, 15299, 15301, 15303, 15305, 15307, 15309, 15311, 15313, 15315, 15317, 15319, 15321, 15323, 15325, 15327, 15329, 15331, 15333, 15335, 15337, 15339, 15341, 15343, 15345, 15347, 15349, 15351, 15353, 15355, 15357, 15359, 15361, 15363, 15365, 15367, 15369, 15371, 15373, 15375, 15377, 15379, 15381, 15383, 15385, 15387, 15389, 15391, 15393, 15395, 15397, 15399, 15401, 15403, 15405, 15407, 15409, 15411, 15413, 15415, 15417, 15419, 15421, 15423, 15425, 15427, 15429, 15431, 15433, 15435, 15437, 15439, 15441, 15443, 15445, 15447, 15449, 15451, 15453, 15455, 15457, 15459, 15461, 15463, 15465, 15467, 15469, 15471, 15473, 15475, 15477, 15479, 15481, 15483, 15485, 15487, 15489, 15491, 15493, 15495, 15497, 15499, 15501, 15503, 15505, 15507, 15509, 15511, 15513, 15515, 15517, 15519, 15521, 15523, 15525, 15527, 15529, 15531, 15533, 15535, 15537, 15539, 15541, 15543, 15545, 15547, 15549, 15551, 15553, 15555, 15557, 15559, 15561, 15563, 15565, 15567, 15569, 15571, 15573, 15575, 15577, 15579, 15581, 15583, 15585, 15587, 15589, 15591, 15593, 15595, 15597, 15599, 15601, 15603, 15605, 15607, 15609, 15611, 15613, 15615, 15617, 15619, 15621, 15623, 15625, 15627, 15629, 15631, 15633, 15635, 15637, 15639, 15641, 15643, 15645, 15647, 15649, 15651, 15653, 15655, 15657, 15659, 15661, 15663, 15665, 15667, 15669, 15671, 15673, 15675, 15677, 15679, 15681, 15683, 15685, 15687, 15689, 15691, 15693, 15695, 15697, 15699, 15701, 15703, 15705, 15707, 15709, 15711, 15713, 15715, 15717, 15719, 15721, 15723, 15725, 15727, 15729, 15731, 15733, 15735, 15737, 15739, 15741, 15743, 15745, 15747, 15749, 15751, 15753, 15755, 15757, 15759, 15761, 15763, 15765, 15767, 15769, 15771, 15773, 15775, 15777, 15779, 15781, 15783, 15785, 15787, 15789, 15791, 15793, 15795, 15797, 15799, 15801, 15803, 15805, 15807, 15809, 15811, 15813, 15815, 15817, 15819, 15821, 15823, 15825, 15827, 15829, 15831, 15833, 15835, 15837, 15839, 15841, 15843, 15845, 15847, 15849, 15851, 15853, 15855, 15857, 15859, 15861, 15863, 15865, 15867, 15869, 15871, 15873, 15875, 15877, 15879, 15881, 15883, 15885, 15887, 15889, 15891, 15893, 15895, 15897, 15899, 15901, 15903, 15905, 15907, 15909, 15911, 15913, 15915, 15917, 15919, 15921, 15923, 15925, 15927, 15929, 15931, 15933, 15935, 15937, 15939, 15941, 15943, 15945, 15947, 15949, 15951, 15953, 15955, 15957, 15959, 15961, 15963, 15965, 15967, 15969, 15971, 15973, 15975, 15977, 15979, 15981, 15983, 15985, 15987, 15989, 15991, 15993, 15995, 15997, 15999, 16001, 16003, 16005, 16007, 16009, 16011, 16013, 16015, 16017, 16019, 16021, 16023, 16025, 16027, 16029, 16031, 16033, 16035, 16037, 16039, 16041, 16043, 16045, 16047, 16049, 16051, 16053, 16055, 16057, 16059, 16061, 16063, 16065, 16067, 16069, 16071, 16073, 16075, 16077, 16079, 16081, 16083, 16085, 16087, 16089, 16091, 16093, 16095, 16097, 16099, 16101, 16103, 16105, 16107, 16109, 16111, 16113, 16115, 16117, 16119, 16121, 16123, 16125, 16127, 16129, 16131, 16133, 16135, 16137, 16139, 16141, 16143, 16145, 16147, 16149, 16151, 16153, 16155, 16157, 16159, 16161, 16163, 16165, 16167, 16169, 16171, 16173, 16175, 16177, 16179, 16181, 16183, 16185, 16187, 16189, 16191, 16193, 16195, 16197, 16199, 16201, 16203, 16205, 16207, 16209, 16211, 16213, 16215, 16217, 16219, 16221, 16223, 16225, 16227, 16229, 16231, 16233, 16235, 16237, 16239, 16241, 16243, 16245, 16247, 16249, 16251, 16253, 16255, 16257, 16259, 16261, 16263, 16265, 16267, 16269, 16271, 16273, 16275, 16277, 16279, 16281, 16283, 16285, 16287, 16289, 16291, 16293, 16295, 16297, 16299, 16301, 16303, 16305, 16307, 16309, 16311, 16313, 16315, 16317, 16319, 16321, 16323, 16325, 16327, 16329, 16331, 16333, 16335, 16337, 16339, 16341, 16343, 16345, 16347, 16349, 16351, 16353, 16355, 16357, 16359, 16361, 16363, 16365, 16367, 16369, 16371, 16373, 16375, 16377, 16379, 16381, 16383, 16385, 16387, 16389, 16391, 16393, 16395, 16397, 16399, 16401, 16403, 16405, 16407, 16409, 16411, 16413, 16415, 16417, 16419, 16421, 16423, 16425, 16427, 16429, 16431, 16433, 16435, 16437, 16439, 16441, 16443, 16445, 16447, 16449, 16451, 16453, 16455, 16457, 16459, 16461, 16463, 16465, 16467, 16469, 16471, 16473, 16475, 16477, 16479, 16481, 16483, 16485, 16487, 16489, 16491, 16493, 16495, 16497, 16499, 16501, 16503, 16505, 16507, 16509, 16511, 16513, 16515, 16517, 16519, 16521, 16523, 16525, 16527, 16529, 16531, 16533, 16535, 16537, 16539, 16541, 16543, 16545, 16547, 16549, 16551, 16553, 16555, 16557, 16559, 16561, 16563, 16565, 16567, 16569, 16571, 16573, 16575, 16577, 16579, 16581, 16583, 16585, 16587, 16589, 16591, 16593, 16595, 16597, 16599, 16601, 16603, 16605, 16607, 16609, 16611, 16613, 16615, 16617, 16619, 16621, 16623, 16625, 16627, 16629, 16631, 16633, 16635, 16637, 16639, 16641, 16643, 16645, 16647, 16649, 16651, 16653, 16655, 16657, 16659, 16661, 16663, 16665, 16667, 16669, 16671, 16673, 16675, 16677, 16679, 16681, 16683, 16685, 16687, 16689, 16691, 16693, 16695, 16697, 16699, 16701, 16703, 16705, 16707, 16709, 16711, 16713, 16715, 16717, 16719, 16721, 16723, 16725, 16727, 16729, 16731, 16733, 16735, 16737, 16739, 16741, 16743, 16745, 16747, 16749, 16751, 16753, 16755, 16757, 16759, 16761, 16763, 16765, 16767, 16769, 16771, 16773, 16775, 16777, 16779, 16781, 16783, 16785, 16787, 16789, 16791, 16793, 16795, 16797, 16799, 16801, 16803, 16805, 16807, 16809, 16811, 16813, 16815, 16817, 16819, 16821, 16823, 16825, 16827, 16829, 16831, 16833, 16835, 16837, 16839, 16841, 16843, 16845, 16847, 16849, 16851, 16853, 16855, 16857, 16859, 16861, 16863, 16865, 16867, 16869, 16871, 16873, 16875, 16877, 16879, 16881, 16883, 16885, 16887, 16889, 16891, 16893, 16895, 16897, 16899, 16901, 16903, 16905, 16907, 16909, 16911, 16913, 16915, 16917, 16919, 16921, 16923, 16925, 16927, 16929, 16931, 16933, 16935, 16937, 16939, 16941, 16943, 16945, 16947, 16949, 16951, 6873, 6874, 6878, 6881, 6882, 6883, 6884, 6885, 6886, 6887, 6888, 6889, 6891, 6896, 6901, 6902, 6905, 6906, 6909, 6910, 6911, 6912, 6916, 6917, 6954, 6955, 6956, 6957, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, 6986, 6987, 6990, 6993, 7012, 7013, 7020, 7033, 7034, 7048, 7049, 7059, 7060, 17004, 17006, 17008, 17010, 7080, 7083, 7084, 7087, 7088, 7098, 7099, 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, 7113, 7116, 7117, 7120, 7121, 7124, 7125, 7128, 7129, 7136, 7137, 7140, 7141, 7155, 7156, 7157, 7158, 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7171, 7172, 7175, 7176, 7177, 7178, 7179, 7180, 7183, 7184, 7185, 7186, 7199, 7201, 7204, 7205, 7209, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7238, 7243, 7248, 7249, 7252, 7253, 7264, 7265, 7268, 7269, 7305, 7306, 7315, 7316, 7320, 7321, 7325, 7326, 7328, 7329, 7334, 7335, 7336, 7337, 7354, 7359, 7360, 7361, 7362, 7365, 7369, 7378, 7394, 7397, 7398, 7401, 7402, 7404, 7409, 7410, 7413, 7414, 7428, 7429, 7438, 7439, 7450, 7456, 7457, 7464, 7465, 7477, 7494, 7495, 7496, 7497, 7498, 7499, 7500, 7501, 7502, 7503, 7504, 7505, 7506, 7507, 7508, 7509, 7531, 7532, 7538, 7539, 7542, 7543, 7547, 7548, 7549, 7550, 7556, 7557, 7560, 7561, 7566, 7567, 7568, 7569, 7575, 7576, 7579, 7580, 7585, 7586, 7587, 7588, 7595, 7596, 7599, 7600, 7607, 7608, 7623, 7624, 7627, 7628, 7633, 7634, 7637, 7638, 7646, 7647, 7659, 7660, 7691, 7692, 7695, 7696, 7703, 7704, 7707, 7708, 7730, 7731, 7734, 7735, 7759, 7762, 7819, 7827, 7839, 7840, 7861, 7864, 7871, 7874, 7886, 7892, 7910, 7911, 7914, 7915, 7918, 7919, 7933, 7934, 7941, 7942, 7945, 7946, 7949, 7950, 7951, 7961, 7962, 7965, 7966, 7969, 7970, 7971, 7979, 7982, 7985, 7986, 7989, 7990, 7993, 7994, 7995, 7996, 8015, 8016, 8029, 8030, 8035, 8036, 8048, 8049, 8085, 8087, 8088, 8104, 8105, 8120, 8121, 8124, 8125, 8133, 8135, 8146, 8150, 8152, 8157, 8159, 8163, 8164, 8204, 8206, 8215, 8216, 8237, 8240, 8265, 8266, 8268, 8269, 8274, 8280, 8281, 8284, 8285, 8293, 8295, 8315, 8317, 8319, 8320, 8332, 8335, 8337, 8338, 8339, 8340, 8344, 8345, 8348, 8349, 8350, 8351, 8362, 8363, 8372, 8373, 8376, 8377, 8390, 8391, 8394, 8395, 8396, 8397, 8398, 8399, 8407, 8408, 8411, 8412, 8415, 8416, 8441, 8442, 8455, 8456, 8500, 8505, 8546, 8547, 8550, 8551, 8565, 8566, 8602, 8603, 8637, 8638, 8640, 8641, 8660, 8661, 8672, 8675, 8678, 8679, 8698, 8699, 8702, 8703, 8717, 8718, 8721, 8722, 8736, 8737, 8738, 8739, 8740, 8741, 8742, 8743, 8746, 8747, 8748, 8749, 8750, 8751, 8752, 8753, 8754, 8755, 8758, 8759, 8789, 8792, 8794, 8796, 8799, 8800, 8803, 8804, 8805, 8806, 8807, 8808, 8811, 8812, 8815, 8816, 8817, 8818, 8819, 8820, 8823, 8824, 8827, 8828, 8831, 8832, 8835, 8836, 8838, 8840, 8843, 8846, 8849, 8850, 8851, 8852, 8855, 8856, 8859, 8860, 8861, 8862, 8863, 8866, 8867, 8870, 8871, 8874, 8877, 8878, 8881, 8882, 8896, 8897, 8905, 8908, 8917, 8922, 8929, 8930, 8937, 8938, 8943, 8944, 8946, 8947, 8962, 8965, 8980, 8982, 8984, 8985, 8987, 8988, 8991, 8994, 9008, 9009, 9012, 9013, 9019, 9022, 9062, 9064, 9078, 9079, 9082, 9083, 9084, 9085, 9089, 9090, 9092, 9093, 9094, 9095, 9119, 9120, 9123, 9124, 17482, 17484, 9154, 9155, 17488, 17490, 17492, 17494, 17496, 17498, 9208, 9209, 9212, 9213, 9225, 9226, 9232, 9233, 9236, 9237, 9238, 9239, 9241, 9243, 9245, 9246, 9263, 9264, 9267, 9268, 9269, 9270, 9274, 9275, 9277, 9278, 9279, 9280, 9299, 9300, 9302, 9303, 9317, 9332, 17534, 17536, 17538, 17540, 17542, 17544, 17546, 17548, 17550, 17552, 17554, 17556, 9415, 9416, 9431, 9432, 9435, 9437, 9448, 9449, 9452, 9453, 9465, 9466, 9472, 9473, 9486, 9487, 9496, 9497, 9499, 9500, 9505, 9506, 9511, 9514, 9567, 9570, 17584, 17586, 17588, 17590, 17592, 17594, 17596, 17598, 17600, 17602, 17604, 17606, 17608, 17610, 17612, 17614, 9766, 9767, 9788, 9791, 9792, 9793, 9947, 9948, 9977, 9978, 9979, 9984, 9985, 9986, 9987, 9988, 9991, 9992, 11318, 11319, 11336, 11337, 11412, 11413, 11418, 11419, 11485, 11486, 11487, 11488, 11513, 11514, 11516, 11517, 11520, 11521, 11524, 11525, 11530, 11531, 11532, 11533, 11534, 11535, 11536, 11537, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 17664, 19229, 17666, 17665, 17667, 17996, 17995, 19232, 19235, 19237, 19239, 17668, 17670, 17669, 17670, 17670, 5310, 17672, 17671, 17673, 5319, 19245, 17676, 17675, 19247, 19249, 17678, 17677, 17679, 19251, 19146, 17681, 17682, 19152, 17683, 6809, 19163, 17684, 19165, 19167, 19166, 19169, 19168, 19146, 19145, 19147, 19149, 19148, 19150, 19152, 19151, 6809, 19155, 19154, 19156, 19158, 19157, 19159, 19161, 19160, 6824, 19164, 19163, 19165, 19170, 19172, 19253, 19255, 19257, 19259, 19261, 19263, 19265, 17685, 17686, 17688, 17687, 18297, 17689, 18300, 17690, 17691, 17693, 17692, 17694, 17695, 18278, 17696, 17697, 18287, 19267, 18279, 18288, 17699, 17698, 17700, 17701, 17702, 18417, 18409, 18418, 18882, 17703, 17821, 18887, 18886, 18888, 18889, 18892, 18891, 18894, 18893, 18895, 19271, 17832, 17831, 18863, 18862, 18865, 18864, 19199, 19053, 19052, 19055, 19054, 19041, 19058, 19044, 19043, 19039, 19047, 19046, 19274, 19049, 18952, 19053, 19052, 19055, 19054, 19041, 19058, 19044, 19043, 19039, 19047, 19046, 19276, 19082, 17704, 17706, 17705, 19087, 19086, 19088, 17708, 17707, 19278, 17710, 17709, 17711, 17712, 17714, 19285, 17716, 17715, 19287, 17718, 17717, 17719, 17721, 17720, 17723, 17722, 17724, 17726, 19289, 19291, 19293, 19295, 19297, 19299, 19301, 19303, 17728, 17727, 19305, 17730, 17729, 19307, 17731, 17733, 19309, 17736, 17735, 19311, 17737, 17739, 17740, 17742, 17743, 17745, 19313, 17747, 17746, 19315, 17749, 17748, 18649, 18649, 17750, 17751, 17753, 17755, 17754, 17757, 17756, 17759, 17758, 19317, 19319, 19321, 19323, 19325, 19327, 17760, 17762, 17763, 17765, 19329, 17767, 17766, 19331, 19333, 19335, 17769, 17768, 19337, 19339, 17771, 17770, 17773, 17772, 17775, 17774, 17777, 17776, 17779, 17778, 17780, 17781, 17782, 18663, 17783, 19343, 17785, 17784, 17786, 17788, 19347, 19349, 19351, 19353, 17791, 17790, 17793, 17792, 17795, 17794, 17797, 17796, 17799, 17798, 17801, 17800, 17803, 17802, 17805, 17804, 17806, 17807, 17809, 17808, 17811, 17810, 18603, 17812, 18606, 17813, 19357, 17816, 17815, 19359, 17818, 17817, 17820, 17819, 18603, 18606, 17825, 18810, 18867, 18866, 19361, 18869, 18868, 19363, 18871, 18870, 18881, 18873, 18872, 18875, 18874, 18876, 18925, 18877, 18586, 17833, 18587, 18916, 18918, 18917, 18919, 18925, 18924, 18926, 18622, 18928, 18929, 18882, 18884, 17821, 18887, 18886, 17822, 17823, 18892, 18891, 18894, 18893, 18895, 19365, 17832, 17831, 18863, 18862, 18865, 17824, 17825, 17826, 19367, 17828, 17827, 18810, 19369, 17830, 17829, 18852, 19371, 18850, 19373, 18855, 18854, 18894, 18856, 19375, 19377, 17832, 17831, 18586, 17833, 18587, 18916, 18622, 18928, 18033, 17835, 17834, 17837, 17836, 18034, 17839, 17838, 17875, 17841, 17840, 17842, 19380, 19382, 17844, 17843, 17876, 17846, 17845, 17848, 17847, 17850, 17849, 17852, 17851, 17854, 17853, 17856, 17855, 17857, 17859, 17858, 17860, 18525, 17861, 18527, 18526, 18529, 18528, 18531, 18530, 18477, 18480, 18479, 19388, 18482, 18481, 19390, 18477, 18480, 18479, 18482, 18481, 19393, 18496, 18495, 19395, 17863, 17862, 17864, 18336, 17865, 17866, 18280, 18207, 18206, 18209, 18208, 18279, 18278, 19397, 17868, 17867, 17869, 17871, 17870, 17872, 18288, 18287, 19399, 17874, 17873, 17876, 17875, 17878, 17877, 17879, 17881, 17880, 17882, 17883, 17885, 17884, 17887, 17886, 17889, 17888, 17890, 17892, 17891, 17893, 18412, 18411, 18414, 17894, 17895, 17897, 17896, 18418, 17898, 18420, 17899, 17901, 17900, 17903, 17902, 17905, 17904, 17907, 17906, 17909, 17908, 17966, 17965, 17968, 17967, 17969, 17971, 19407, 19409, 19411, 19413, 19415, 19418, 19421, 17947, 17946, 17949, 17948, 17950, 17952, 17911, 17910, 17913, 17912, 17947, 17946, 17949, 17948, 17914, 17952, 17953, 17974, 17954, 17976, 17975, 19423, 17980, 17979, 17981, 17984, 17916, 19425, 17986, 17985, 19427, 17987, 17989, 17990, 19429, 19431, 17980, 17917, 17981, 17984, 17916, 19433, 17986, 17985, 19435, 17920, 17989, 17990, 17992, 19437, 19439, 17980, 17979, 17981, 17984, 17916, 19441, 17986, 17985, 19443, 17920, 17989, 17990, 17992, 19445, 19447, 17980, 17917, 17919, 17918, 17984, 17983, 19449, 17986, 17985, 19451, 17920, 17989, 17990, 17992, 17922, 17921, 19453, 17923, 17925, 17928, 17927, 17929, 17932, 17931, 17934, 17933, 17936, 17935, 17937, 17938, 17965, 19455, 17965, 17965, 19457, 1218, 17940, 17942, 17941, 19459, 17965, 17943, 19461, 1243, 17945, 17953, 17974, 17954, 17976, 17975, 19463, 17947, 17946, 17949, 17948, 17950, 17952, 17953, 17974, 17954, 17976, 17975, 19465, 17955, 17965, 17968, 17956, 1218, 17958, 17960, 17959, 17962, 17961, 1243, 17964, 17966, 17965, 17968, 17967, 17969, 17971, 17972, 17974, 17973, 17976, 17975, 17978, 17977, 17980, 17979, 17981, 17984, 17983, 19467, 17986, 17985, 19469, 17987, 17989, 17990, 17992, 17994, 17993, 19471, 17996, 17995, 19473, 17997, 17999, 18002, 18001, 18003, 18006, 18005, 18007, 18010, 18009, 18012, 18011, 18014, 18013, 18016, 18015, 18018, 18017, 18019, 18021, 18020, 19475, 18023, 18022, 19477, 18025, 18024, 18026, 18028, 18027, 18029, 1916, 18032, 18031, 18034, 18033, 18036, 18035, 18037, 18038, 18041, 18040, 18043, 18042, 1931, 1916, 18047, 18046, 18049, 18048, 18051, 18050, 18053, 18052, 18055, 18054, 18056, 18057, 18060, 18059, 18061, 18063, 18062, 18064, 18066, 18065, 18067, 18114, 1916, 18070, 18069, 18071, 18074, 18073, 18079, 18078, 18081, 18080, 18083, 18082, 18085, 18075, 18087, 18086, 18089, 18088, 18076, 18092, 18091, 18093, 18095, 18094, 18096, 18077, 18079, 18078, 18081, 18080, 18083, 18082, 18085, 18084, 18087, 18086, 18089, 18088, 18090, 18092, 18091, 18093, 18095, 18094, 18096, 18097, 18099, 18098, 18114, 18100, 18102, 18101, 18104, 18103, 18106, 18105, 18108, 18107, 18109, 18111, 18110, 18112, 18114, 18113, 1916, 18117, 18116, 1931, 18120, 18119, 18121, 18123, 18122, 18124, 18126, 18125, 18135, 18127, 18129, 18128, 18131, 18130, 18133, 18132, 18135, 18134, 18137, 18136, 18139, 18138, 18141, 18140, 18142, 18145, 18144, 18147, 18146, 18149, 18148, 18150, 18153, 18152, 18155, 18154, 18157, 18156, 18158, 18160, 18159, 18161, 18162, 18165, 18164, 18166, 18167, 18168, 18186, 18188, 18170, 19491, 18172, 18171, 19493, 18174, 18173, 19495, 18176, 18175, 18177, 18179, 18178, 18180, 18181, 18183, 18185, 18184, 18186, 18188, 18187, 19497, 18190, 18189, 18192, 18191, 18194, 18193, 19499, 18196, 18195, 19501, 18198, 18197, 19503, 18200, 18199, 18201, 18203, 18202, 18192, 18191, 18194, 18193, 19506, 18196, 18195, 19508, 18198, 18197, 19510, 18200, 18199, 18201, 18203, 18202, 18190, 18189, 18192, 18191, 18194, 18193, 19515, 18196, 18195, 19517, 18198, 18197, 19519, 19521, 18200, 18199, 18201, 18203, 18202, 2342, 2342, 2342, 18204, 18355, 18357, 2351, 2351, 2351, 18207, 18206, 18209, 18208, 19523, 18210, 18213, 18212, 18214, 18215, 18217, 18219, 18221, 18222, 18224, 18225, 18227, 19525, 18238, 18300, 18229, 18228, 19527, 18397, 18230, 18397, 18231, 18233, 18232, 18237, 18234, 18299, 18236, 18235, 19529, 18421, 18405, 18408, 18238, 18237, 18240, 18239, 18242, 18241, 18244, 18243, 18421, 18336, 18245, 18246, 18248, 18247, 18249, 18355, 18251, 18250, 18253, 18252, 18255, 18254, 18257, 18256, 18355, 18358, 18259, 18258, 18261, 18260, 18262, 18264, 18266, 19532, 18268, 18269, 18271, 18281, 18361, 18363, 18365, 18273, 18272, 18274, 18276, 18275, 18277, 18279, 18278, 19534, 18355, 18280, 18281, 18361, 18363, 18365, 18284, 18283, 18286, 18285, 18288, 18287, 18290, 18289, 19536, 18292, 18291, 19538, 18294, 18293, 18397, 18295, 18296, 18406, 18297, 18298, 18300, 18299, 18301, 18303, 18302, 18304, 18415, 18383, 18416, 18384, 18305, 18306, 18307, 18309, 18311, 18313, 18314, 18315, 18317, 18319, 18321, 18322, 19547, 18336, 18335, 18337, 18338, 18324, 18325, 18341, 18344, 18326, 18327, 18346, 18328, 18329, 18330, 18332, 18333, 18354, 18336, 18335, 18337, 18339, 18338, 18340, 18341, 18344, 18343, 18345, 18346, 18347, 18348, 18349, 18351, 18352, 18354, 18355, 18358, 18357, 18360, 18359, 18361, 18363, 18365, 18367, 18366, 18369, 18368, 18371, 18370, 19551, 18397, 18372, 18374, 18373, 18375, 18377, 18376, 18379, 18378, 18380, 18382, 18381, 18383, 18384, 18386, 18385, 18388, 18387, 18390, 18389, 18397, 18391, 18393, 18392, 18395, 18394, 18397, 18396, 18398, 18400, 18399, 18401, 18403, 18402, 18404, 18406, 18405, 18407, 18409, 18408, 18410, 18412, 18411, 18414, 18413, 18415, 19555, 18416, 19557, 18418, 18417, 18420, 18419, 18421, 18424, 18423, 18426, 18425, 19560, 18428, 18427, 19562, 18430, 18429, 18431, 18433, 18432, 18435, 18434, 18436, 18439, 18438, 18441, 18440, 18443, 18442, 18445, 18444, 18447, 18446, 18449, 18448, 18451, 18450, 3432, 18454, 18453, 3447, 18456, 18458, 18460, 19568, 18463, 18462, 18464, 18466, 18465, 18467, 18469, 18468, 18470, 18472, 18471, 18474, 18473, 18475, 19572, 19574, 18477, 18480, 18479, 19576, 18482, 18481, 19578, 19580, 18484, 18483, 18486, 18485, 18487, 18489, 18488, 18491, 18490, 18492, 19582, 18493, 3669, 18525, 18524, 18527, 18526, 18496, 18495, 19584, 18497, 18496, 19586, 18532, 3807, 18536, 18535, 18538, 18537, 18525, 18524, 18527, 18526, 18497, 18496, 19588, 18533, 3807, 19590, 19592, 19594, 3751, 18525, 18524, 18527, 18526, 18496, 18495, 19596, 18497, 18496, 19598, 18533, 3807, 19600, 18538, 18537, 18499, 18498, 3655, 18502, 18501, 3669, 3853, 18505, 18508, 18507, 18509, 18511, 18513, 18529, 18528, 18531, 18530, 18521, 3751, 18536, 18535, 19602, 18516, 18515, 18518, 18517, 18529, 18519, 18530, 18520, 18521, 3751, 18536, 18535, 19604, 18525, 18524, 18527, 18526, 18529, 18528, 18531, 18530, 18533, 18532, 3807, 18536, 18535, 18538, 18537, 18539, 18540, 18543, 18542, 3853, 18546, 18545, 3868, 18549, 18548, 18551, 18550, 18552, 18776, 18845, 18826, 18778, 18827, 18829, 18846, 18848, 18828, 18612, 18846, 18848, 18555, 18554, 18557, 18556, 18558, 18926, 19053, 18946, 19055, 19054, 18560, 18559, 19058, 19059, 19039, 19047, 19046, 18951, 18950, 19049, 18952, 19050, 18562, 18561, 18564, 18563, 19066, 19068, 19053, 19052, 19055, 19054, 19041, 19058, 19044, 19043, 19039, 19046, 18566, 18951, 18950, 19050, 19049, 18952, 18568, 18567, 19608, 18568, 18568, 19610, 18570, 18569, 18572, 18571, 18576, 18573, 18578, 18577, 18580, 18579, 18581, 19078, 19077, 19612, 19080, 19079, 19081, 18576, 18575, 18578, 18577, 18580, 18579, 18581, 18583, 18582, 18585, 18584, 18586, 18587, 18589, 18588, 18590, 18592, 18591, 18593, 18595, 18594, 18597, 18596, 18599, 18598, 18601, 18600, 18602, 18603, 18605, 18606, 18608, 19614, 18816, 18815, 18817, 18609, 18610, 18842, 18821, 18823, 18825, 18611, 18826, 18776, 18828, 18827, 18829, 18612, 18832, 18831, 18833, 18835, 18834, 18836, 18840, 18842, 18837, 18823, 18825, 18777, 18826, 18778, 18846, 18848, 18613, 19616, 18615, 19618, 18618, 18617, 18894, 18619, 18894, 18620, 18621, 18859, 18858, 18861, 18860, 18863, 18862, 18865, 18864, 18622, 18624, 18623, 19620, 18626, 18625, 18628, 18627, 18630, 18629, 18632, 18631, 18634, 18633, 18636, 18635, 18638, 18637, 19624, 18640, 18639, 18641, 18642, 18644, 18645, 18646, 18647, 18648, 18650, 18649, 18651, 18652, 18654, 18655, 18656, 18657, 18658, 19626, 18660, 18659, 19628, 18661, 18665, 18668, 18667, 18669, 18670, 18672, 18674, 18673, 18675, 18677, 18676, 18662, 19630, 18664, 18663, 19632, 18666, 18665, 18668, 18667, 18669, 18670, 18672, 18674, 18673, 18675, 18677, 18676, 18678, 19634, 19636, 19638, 19640, 18680, 18679, 19642, 19644, 19646, 19648, 19650, 18682, 18681, 19652, 18684, 18683, 18685, 18687, 18686, 18688, 18690, 18689, 18692, 18691, 18694, 18693, 18696, 18695, 18698, 18697, 18699, 18701, 18700, 18702, 18704, 18703, 18706, 18705, 18707, 18710, 18709, 18712, 18711, 18714, 18713, 18715, 18717, 18720, 18719, 19658, 18722, 18721, 19660, 19662, 19664, 18724, 18723, 19666, 18726, 18725, 19668, 19670, 19672, 18728, 18727, 19674, 18730, 18729, 19676, 18732, 18731, 19678, 18734, 18733, 19680, 18735, 18737, 18740, 18739, 18742, 18741, 18744, 18743, 19686, 19688, 18746, 18745, 19690, 18748, 18747, 19692, 19694, 18750, 18749, 19697, 18752, 18751, 19699, 18754, 18753, 18756, 18755, 19702, 18758, 18757, 19704, 18760, 18759, 18761, 18762, 18764, 18765, 18767, 18769, 18768, 18770, 18771, 18773, 18774, 19706, 18776, 18823, 18825, 18777, 18778, 18779, 18804, 18780, 18804, 18782, 18781, 18783, 18785, 18784, 18786, 18788, 18790, 18792, 18791, 18793, 18795, 18797, 18796, 18799, 18798, 18801, 18800, 19712, 18803, 18802, 18805, 18804, 18807, 18806, 19714, 18809, 18808, 18810, 18812, 19716, 18813, 19718, 18814, 18816, 18815, 18818, 18817, 18819, 18842, 18821, 18823, 18825, 18824, 18826, 18828, 18827, 18830, 18829, 18832, 18831, 18833, 18835, 18834, 18836, 18837, 18839, 18840, 18842, 18844, 18843, 18845, 18846, 18848, 18850, 19724, 18852, 19726, 18855, 18854, 18894, 18856, 18894, 18894, 18857, 18859, 18858, 18861, 18860, 18863, 18862, 18865, 18864, 18867, 18866, 19730, 18869, 18868, 19732, 18871, 18870, 18881, 18873, 18872, 18875, 18874, 18876, 18925, 18877, 18878, 18879, 18881, 18882, 18885, 18884, 18887, 18886, 18888, 18889, 18892, 18891, 18894, 18893, 18895, 18897, 18896, 18899, 18898, 18901, 18900, 18903, 18902, 18918, 18917, 18905, 18904, 18906, 18908, 18910, 18909, 18911, 18913, 18912, 18914, 18915, 18916, 18918, 18917, 18919, 18922, 18921, 18923, 18925, 18924, 18926, 18928, 18929, 18986, 18930, 19738, 18989, 18988, 19740, 19742, 18991, 18990, 18992, 19744, 18994, 19746, 19748, 19106, 18931, 18999, 18998, 19000, 19112, 18996, 18942, 19002, 19001, 19003, 19180, 19182, 19017, 19016, 19185, 19187, 19186, 19189, 19188, 19018, 18933, 18932, 19750, 18935, 18934, 19752, 18937, 18936, 19182, 19017, 19016, 19185, 19187, 19186, 19189, 19188, 18938, 19194, 19193, 19196, 19019, 18939, 19216, 19213, 19216, 19090, 19089, 19756, 19092, 19091, 18941, 18940, 18942, 18944, 18943, 6809, 19214, 19217, 19053, 18946, 18947, 19055, 19056, 19058, 18949, 18948, 19061, 19047, 19046, 18951, 18950, 19049, 18952, 19050, 18954, 18953, 19764, 18956, 18955, 19766, 19066, 19068, 19083, 19082, 19085, 19084, 19087, 19086, 19088, 18958, 18957, 19768, 18960, 18959, 18961, 18964, 18963, 19770, 18989, 18965, 19772, 19774, 18966, 18968, 18970, 19778, 18973, 18972, 18974, 19112, 18975, 18976, 18978, 18977, 18979, 18982, 18981, 18983, 19125, 18984, 18987, 18986, 19780, 18989, 18988, 19782, 19784, 18991, 18990, 18992, 19786, 18994, 19788, 19790, 19106, 19105, 19112, 18996, 18997, 18999, 18998, 19000, 19002, 19001, 19003, 19006, 19005, 19008, 19007, 19123, 19126, 19009, 19792, 19011, 19794, 19013, 19015, 19180, 19182, 19017, 19016, 19185, 19187, 19186, 19189, 19188, 19191, 19018, 19194, 19193, 19196, 19019, 19180, 19182, 19183, 19185, 19187, 19186, 19189, 19188, 19191, 19190, 19194, 19193, 19196, 19195, 19021, 19020, 19022, 19024, 19023, 19026, 19025, 19027, 19029, 5985, 19031, 5985, 19033, 19034, 19036, 19038, 6006, 19038, 19053, 19052, 19055, 19054, 19041, 19058, 19044, 19043, 19039, 19047, 19046, 19810, 19049, 19040, 19050, 19053, 19052, 19055, 19054, 19041, 19058, 19044, 19043, 19045, 19047, 19046, 19812, 19049, 19048, 19050, 19053, 19052, 19055, 19054, 19056, 19058, 19059, 19061, 19063, 19062, 19816, 19065, 19064, 19818, 19066, 19068, 19070, 19069, 19072, 19071, 19074, 19073, 19075, 19078, 19076, 19820, 19080, 19079, 19081, 19078, 19077, 19822, 19080, 19079, 19081, 19083, 19082, 19085, 19084, 19087, 19086, 19088, 19090, 19089, 19824, 19092, 19091, 19094, 19093, 19096, 19095, 19098, 19097, 19826, 19099, 19828, 19100, 19101, 19104, 19103, 19830, 19106, 19105, 19108, 19107, 19110, 19109, 19112, 19111, 19113, 19115, 19114, 19117, 19116, 19119, 19118, 19120, 19123, 19122, 19124, 19126, 19125, 19127, 19128, 19131, 19130, 19132, 19134, 19135, 19137, 19139, 19138, 19141, 19140, 19142, 19144, 19146, 19145, 19147, 19149, 19148, 19150, 19152, 19151, 6809, 19155, 19154, 19156, 19158, 19157, 19159, 19161, 19160, 6824, 19164, 19163, 19165, 19167, 19166, 19169, 19168, 19170, 19172, 19174, 19173, 19175, 19183, 19185, 19187, 19176, 19189, 19188, 19190, 19177, 19178, 19194, 19193, 19196, 19179, 19180, 19182, 19183, 19185, 19187, 19186, 19189, 19188, 19191, 19190, 19192, 19194, 19193, 19196, 19195, 19198, 19197, 19200, 19199, 19214, 19201, 6809, 19217, 19216, 6824, 19202, 19204, 19205, 19224, 19225, 19227, 19208, 19207, 19209, 19211, 19210, 19212, 19214, 19213, 6809, 19217, 19216, 6824, 19220, 19219, 19221, 19223, 19222, 19224, 19225, 19227, 19405, 19405, 19405, 19405, 19541, 19541, 19541, 19541, 19280, 19280, 19282, 19282, 19860, 19280, 19279, 19282, 19281, 19863, 19866, 19405, 19405, 19405, 19405, 19870, 19754, 19753, 19757, 19760, 19759, 19761, 19844, 19872, 19848, 19762, 19850, 19849, 19797, 19800, 19799, 19802, 19801, 19874, 19804, 19803, 19806, 19805, 19876, 19808, 19807, 19841, 19835, 19844, 19836, 19838, 19837, 19840, 19839, 19878, 19880, 19841, 19882, 19842, 19884, 19844, 19843, 19886, 19846, 19845, 19888, 19848, 19847, 19850, 19849, 19890, 19892, 19894, 19896, 19856, 19856, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 6872, 6875, 6876, 6877, 6879, 6880, 6890, 6892, 6893, 6894, 6895, 6897, 6898, 6899, 6900, 6903, 6907, 6908, 6913, 6914, 6915, 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, 6981, 6982, 6983, 6984, 6985, 6988, 6989, 6991, 6992, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7014, 7015, 7016, 7017, 7018, 7019, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, 7029, 7030, 7031, 7032, 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7050, 7051, 7052, 7053, 7054, 7055, 7056, 7057, 7058, 7061, 7062, 7063, 7081, 7082, 7085, 7086, 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7114, 7115, 7118, 7119, 7122, 7123, 7126, 7127, 7130, 7131, 7132, 7133, 7134, 7135, 7138, 7139, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, 7150, 7151, 7152, 7153, 7154, 7167, 7168, 7169, 7170, 7173, 7174, 7181, 7182, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, 7198, 7200, 7202, 7203, 7206, 7207, 7208, 7210, 7220, 7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232, 7233, 7234, 7235, 7236, 7237, 7239, 7240, 7241, 7242, 7244, 7245, 7246, 7247, 7250, 7251, 7254, 7255, 7256, 7257, 7258, 7259, 7260, 7261, 7262, 7263, 7266, 7267, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280, 7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, 7290, 7291, 7292, 7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7317, 7318, 7319, 7322, 7323, 7324, 7327, 7330, 7331, 7332, 7333, 7338, 7339, 7340, 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352, 7353, 7355, 7356, 7357, 7358, 7363, 7364, 7366, 7367, 7368, 7370, 7371, 7372, 7373, 7374, 7375, 7376, 7377, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388, 7389, 7390, 7391, 7392, 7393, 7395, 7396, 7399, 7400, 7403, 7405, 7406, 7407, 7408, 7411, 7412, 7415, 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, 7424, 7425, 7426, 7427, 7430, 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, 7449, 7451, 7452, 7453, 7454, 7455, 7458, 7459, 7460, 7461, 7462, 7463, 7466, 7467, 7468, 7469, 7470, 7471, 7472, 7473, 7474, 7475, 7476, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 7485, 7486, 7487, 7488, 7489, 7490, 7491, 7492, 7493, 7510, 7511, 7512, 7513, 7514, 7515, 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, 7524, 7525, 7526, 7527, 7528, 7529, 7530, 7533, 7534, 7535, 7536, 7537, 7540, 7541, 7544, 7545, 7546, 7551, 7552, 7553, 7554, 7555, 7558, 7559, 7562, 7563, 7564, 7565, 7570, 7571, 7572, 7573, 7574, 7577, 7578, 7581, 7582, 7583, 7584, 7589, 7590, 7591, 7592, 7593, 7594, 7597, 7598, 7601, 7602, 7603, 7604, 7605, 7606, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, 7619, 7620, 7621, 7622, 7625, 7626, 7629, 7630, 7631, 7632, 7635, 7636, 7639, 7640, 7641, 7642, 7643, 7644, 7645, 7648, 7649, 7650, 7651, 7652, 7653, 7654, 7655, 7656, 7657, 7658, 7661, 7662, 7663, 7664, 7665, 7666, 7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678, 7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 7687, 7688, 7689, 7690, 7693, 7694, 7697, 7698, 7699, 7700, 7701, 7702, 7705, 7706, 7709, 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, 7720, 7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, 7732, 7733, 7736, 7737, 7738, 7739, 7740, 7741, 7742, 7743, 7744, 7745, 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, 7754, 7755, 7756, 7757, 7758, 7760, 7761, 7763, 7764, 7765, 7766, 7767, 7768, 7769, 7770, 7771, 7772, 7773, 7774, 7775, 7776, 7777, 7778, 7779, 7780, 7781, 7782, 7783, 7784, 7785, 7786, 7787, 7788, 7789, 7790, 7791, 7792, 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7803, 7804, 7805, 7806, 7807, 7808, 7809, 7810, 7811, 7812, 7813, 7814, 7815, 7816, 7817, 7818, 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7828, 7829, 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, 7850, 7851, 7852, 7853, 7854, 7855, 7856, 7857, 7858, 7859, 7860, 7862, 7863, 7865, 7866, 7867, 7868, 7869, 7870, 7872, 7873, 7875, 7876, 7877, 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, 7887, 7888, 7889, 7890, 7891, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900, 7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7912, 7913, 7916, 7917, 7920, 7921, 7922, 7923, 7924, 7925, 7926, 7927, 7928, 7929, 7930, 7931, 7932, 7935, 7936, 7937, 7938, 7939, 7940, 7943, 7944, 7947, 7948, 7952, 7953, 7954, 7955, 7956, 7957, 7958, 7959, 7960, 7963, 7964, 7967, 7968, 7972, 7973, 7974, 7975, 7976, 7977, 7978, 7980, 7981, 7983, 7984, 7987, 7988, 7991, 7992, 7997, 7998, 7999, 8000, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, 8010, 8011, 8012, 8013, 8014, 8017, 8018, 8019, 8020, 8021, 8022, 8023, 8024, 8025, 8026, 8027, 8028, 8031, 8032, 8033, 8034, 8037, 8038, 8039, 8040, 8041, 8042, 8043, 8044, 8045, 8046, 8047, 8050, 8051, 8052, 8053, 8054, 8055, 8056, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 8065, 8066, 8067, 8068, 8069, 8070, 8071, 8072, 8073, 8074, 8075, 8076, 8077, 8078, 8079, 8080, 8081, 8082, 8083, 8084, 8086, 8089, 8090, 8091, 8092, 8093, 8094, 8095, 8096, 8097, 8098, 8099, 8100, 8101, 8102, 8103, 8106, 8107, 8108, 8109, 8110, 8111, 8112, 8113, 8114, 8115, 8116, 8117, 8118, 8119, 8122, 8123, 8126, 8127, 8128, 8129, 8130, 8131, 8132, 8134, 8136, 8137, 8138, 8139, 8140, 8141, 8142, 8143, 8144, 8145, 8147, 8148, 8149, 8151, 8153, 8154, 8155, 8156, 8158, 8160, 8161, 8162, 8165, 8166, 8167, 8168, 8169, 8170, 8171, 8172, 8173, 8174, 8175, 8176, 8177, 8178, 8179, 8180, 8181, 8182, 8183, 8184, 8185, 8186, 8187, 8188, 8189, 8190, 8191, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8199, 8200, 8201, 8202, 8203, 8205, 8207, 8208, 8209, 8210, 8211, 8212, 8213, 8214, 8217, 8218, 8219, 8220, 8221, 8222, 8223, 8224, 8225, 8226, 8227, 8228, 8229, 8230, 8231, 8232, 8233, 8234, 8235, 8236, 8238, 8239, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8257, 8258, 8259, 8260, 8261, 8262, 8263, 8264, 8267, 8270, 8271, 8272, 8273, 8275, 8276, 8277, 8278, 8279, 8282, 8283, 8286, 8287, 8288, 8289, 8290, 8291, 8292, 8294, 8296, 8297, 8298, 8299, 8300, 8301, 8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, 8310, 8311, 8312, 8313, 8314, 8316, 8318, 8321, 8322, 8323, 8324, 8325, 8326, 8327, 8328, 8329, 8330, 8331, 8333, 8334, 8336, 8341, 8342, 8343, 8346, 8347, 8352, 8353, 8354, 8355, 8356, 8357, 8358, 8359, 8360, 8361, 8364, 8365, 8366, 8367, 8368, 8369, 8370, 8371, 8374, 8375, 8378, 8379, 8380, 8381, 8382, 8383, 8384, 8385, 8386, 8387, 8388, 8389, 8392, 8393, 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8409, 8410, 8413, 8414, 8417, 8418, 8419, 8420, 8421, 8422, 8423, 8424, 8425, 8426, 8427, 8428, 8429, 8431, 8432, 8433, 8434, 8435, 8436, 8437, 8438, 8439, 8440, 8443, 8444, 8445, 8446, 8447, 8448, 8449, 8450, 8451, 8452, 8453, 8454, 8457, 8458, 8459, 8460, 8461, 8462, 8463, 8464, 8465, 8466, 8467, 8468, 8469, 8470, 8471, 8472, 8473, 8474, 8475, 8476, 8477, 8478, 8479, 8480, 8481, 8482, 8483, 8484, 8486, 8487, 8488, 8489, 8490, 8491, 8492, 8493, 8494, 8495, 8496, 8497, 8498, 8499, 8501, 8502, 8503, 8504, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 8514, 8515, 8516, 8517, 8518, 8519, 8520, 8521, 8522, 8523, 8524, 8525, 8526, 8527, 8528, 8529, 8530, 8531, 8532, 8533, 8534, 8535, 8536, 8537, 8538, 8539, 8540, 8541, 8542, 8543, 8544, 8545, 8548, 8549, 8552, 8553, 8554, 8555, 8556, 8557, 8558, 8559, 8560, 8561, 8562, 8563, 8564, 8567, 8568, 8569, 8570, 8571, 8572, 8573, 8574, 8575, 8576, 8577, 8578, 8579, 8580, 8581, 8582, 8583, 8584, 8585, 8586, 8587, 8588, 8589, 8590, 8591, 8592, 8593, 8594, 8595, 8596, 8597, 8598, 8599, 8600, 8601, 8604, 8605, 8606, 8607, 8608, 8609, 8610, 8611, 8612, 8613, 8614, 8615, 8616, 8617, 8618, 8619, 8620, 8621, 8622, 8623, 8624, 8625, 8626, 8627, 8628, 8629, 8630, 8631, 8632, 8633, 8634, 8635, 8636, 8639, 8642, 8643, 8644, 8645, 8646, 8647, 8648, 8649, 8650, 8651, 8652, 8653, 8654, 8655, 8656, 8657, 8658, 8659, 8662, 8663, 8664, 8665, 8666, 8667, 8668, 8669, 8670, 8671, 8673, 8674, 8676, 8677, 8680, 8681, 8682, 8683, 8684, 8685, 8686, 8687, 8688, 8689, 8690, 8691, 8692, 8693, 8694, 8695, 8696, 8697, 8700, 8701, 8704, 8705, 8706, 8707, 8708, 8709, 8710, 8711, 8712, 8713, 8714, 8715, 8716, 8719, 8720, 8723, 8724, 8725, 8726, 8727, 8728, 8729, 8730, 8731, 8732, 8733, 8734, 8735, 8744, 8745, 8756, 8757, 8760, 8761, 8762, 8763, 8764, 8765, 8766, 8767, 8768, 8769, 8770, 8771, 8772, 8773, 8774, 8775, 8776, 8777, 8778, 8779, 8780, 8781, 8782, 8783, 8784, 8785, 8786, 8787, 8788, 8790, 8791, 8793, 8795, 8797, 8798, 8801, 8802, 8809, 8810, 8813, 8814, 8821, 8822, 8825, 8826, 8829, 8830, 8833, 8834, 8837, 8839, 8841, 8842, 8844, 8845, 8847, 8848, 8853, 8854, 8857, 8858, 8864, 8865, 8868, 8869, 8872, 8873, 8875, 8876, 8879, 8880, 8883, 8884, 8885, 8886, 8887, 8888, 8889, 8890, 8891, 8892, 8893, 8894, 8895, 8898, 8899, 8900, 8901, 8902, 8903, 8904, 8906, 8907, 8909, 8910, 8911, 8912, 8913, 8914, 8915, 8916, 8918, 8919, 8920, 8921, 8923, 8924, 8925, 8926, 8927, 8928, 8931, 8932, 8933, 8934, 8935, 8936, 8939, 8940, 8941, 8942, 8945, 8948, 8949, 8950, 8951, 8952, 8953, 8954, 8955, 8956, 8957, 8958, 8959, 8960, 8961, 8963, 8964, 8966, 8967, 8968, 8969, 8970, 8971, 8972, 8973, 8974, 8975, 8976, 8977, 8978, 8979, 8981, 8983, 8986, 8989, 8990, 8992, 8993, 8995, 8996, 8997, 8998, 8999, 9000, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9010, 9011, 9014, 9015, 9016, 9017, 9018, 9020, 9021, 9023, 9024, 9025, 9026, 9027, 9028, 9029, 9030, 9031, 9032, 9033, 9034, 9035, 9036, 9037, 9038, 9039, 9040, 9041, 9042, 9043, 9044, 9045, 9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057, 9058, 9059, 9060, 9061, 9063, 9065, 9066, 9067, 9068, 9069, 9070, 9071, 9072, 9073, 9074, 9075, 9076, 9077, 9080, 9081, 9086, 9087, 9088, 9091, 9096, 9097, 9098, 9099, 9100, 9101, 9102, 9103, 9104, 9105, 9106, 9107, 9108, 9109, 9110, 9111, 9112, 9113, 9114, 9115, 9116, 9117, 9118, 9121, 9122, 9125, 9126, 9127, 9128, 9129, 9130, 9131, 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9139, 9140, 9141, 9142, 9143, 9152, 9153, 9156, 9157, 9158, 9159, 9160, 9161, 9162, 9163, 9164, 9165, 9190, 9191, 9192, 9193, 9194, 9195, 9196, 9197, 9198, 9199, 9200, 9201, 9202, 9203, 9204, 9205, 9206, 9207, 9210, 9211, 9214, 9215, 9216, 9217, 9218, 9219, 9220, 9221, 9222, 9223, 9224, 9227, 9228, 9229, 9230, 9231, 9234, 9235, 9240, 9242, 9244, 9247, 9248, 9249, 9250, 9251, 9252, 9253, 9254, 9255, 9256, 9257, 9258, 9259, 9260, 9261, 9262, 9265, 9266, 9271, 9272, 9273, 9276, 9281, 9282, 9283, 9284, 9285, 9286, 9287, 9288, 9289, 9290, 9291, 9292, 9293, 9294, 9295, 9296, 9297, 9298, 9301, 9304, 9305, 9306, 9307, 9308, 9309, 9310, 9311, 9312, 9313, 9314, 9315, 9316, 9318, 9319, 9320, 9321, 9322, 9323, 9324, 9325, 9326, 9327, 9328, 9329, 9330, 9331, 9333, 9334, 9335, 9336, 9337, 9338, 9339, 9340, 9341, 9342, 9343, 9344, 9345, 9346, 9347, 9348, 9349, 9350, 9351, 9352, 9353, 9354, 9404, 9405, 9406, 9407, 9408, 9409, 9410, 9411, 9412, 9413, 9414, 9417, 9418, 9419, 9420, 9421, 9422, 9423, 9424, 9425, 9426, 9427, 9428, 9429, 9430, 9433, 9434, 9436, 9438, 9439, 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9450, 9451, 9454, 9455, 9456, 9457, 9458, 9459, 9460, 9461, 9462, 9463, 9464, 9467, 9468, 9469, 9470, 9471, 9474, 9475, 9476, 9477, 9478, 9479, 9480, 9481, 9482, 9483, 9484, 9485, 9488, 9489, 9490, 9491, 9492, 9493, 9494, 9495, 9498, 9501, 9502, 9503, 9504, 9507, 9508, 9509, 9510, 9512, 9513, 9515, 9516, 9517, 9518, 9519, 9520, 9521, 9522, 9523, 9524, 9525, 9526, 9527, 9528, 9529, 9530, 9531, 9532, 9533, 9534, 9535, 9536, 9537, 9538, 9539, 9540, 9541, 9542, 9543, 9544, 9545, 9546, 9547, 9548, 9549, 9550, 9551, 9552, 9553, 9554, 9555, 9556, 9557, 9558, 9559, 9560, 9561, 9562, 9563, 9564, 9565, 9566, 9568, 9569, 9571, 9572, 9598, 9599, 9600, 9601, 9602, 9603, 9604, 9605, 9606, 9607, 9608, 9609, 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9618, 9619, 9620, 9621, 9622, 9623, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9632, 9633, 9634, 9635, 9636, 9637, 9638, 9639, 9640, 9641, 9642, 9643, 9644, 9645, 9646, 9647, 9648, 9649, 9650, 9651, 9652, 9653, 9654, 9655, 9656, 9657, 9658, 9659, 9660, 9661, 9662, 9663, 9664, 20038, 20036, 9827, 9828, 9831, 9832, 9924, 9925, 9939, 9940, 9973, 9974, 9975, 9976, 9980, 9981, 9982, 9983, 20144, 20143, 20145, 20148, 20147, 21638, 20150, 20149, 20162, 21668, 20187, 20186, 20188, 20189, 20190, 20189, 20199, 20204, 20228, 20226, 20228, 20226, 21630, 21638, 21661, 21630, 21638, 21661, 21668, 19400, 19400, 10409, 10410, 10413, 10414, 19416, 20472, 19416, 20475, 20476, 20512, 20527, 20542, 21262, 21261, 21579, 21577, 21586, 21584, 21630, 21638, 21661, 21668, 11320, 11321, 11331, 11332, 11333, 11334, 11335, 11338, 11339, 11340, 11341, 11407, 11408, 11409, 11410, 11411, 11414, 11415, 11416, 11417, 11420, 11421, 11477, 11478, 11479, 11480, 11481, 11482, 11483, 11484, 11512, 11515, 11518, 11519, 11522, 11523, 11526, 11527, 11528, 11529, 19851, 19851, 19852, 19852, 19853, 19853, 19856, 11684, 11685, 19861, 19861, 19864, 19864, 22367, 22349, 22367, 22365, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 22530, 22533, 22536, 22538, 22541, 22545, 22547, 22550, 22553, 22556, 22559, 22561, 22563, 22566, 22569, 22572, 22575, 22578, 22581, 22588, 22590, 22592, 22595, 22605, 22614, 22616, 22620, 22622, 22625, 22627, 22629, 22632, 22634, 22638, 22641, 22643, 22645, 22647, 22651, 22654, 22656, 22658, 22660, 22663, 22665, 22670, 22672, 22675, 22677, 22681, 22683, 22687, 22695, 22697, 22699, 22704, 22706, 22708, 22714, 22716, 22718, 22720, 22722, 22724, 22726, 22731, 22733, 22737, 22739, 22741, 22743, 22745, 22747, 22749, 22751, 22755, 22757, 22763, 22765, 22767, 22773, 22775, 22777, 22780, 22782, 22784, 22787, 22789, 22791, 22794, 22797, 22801, 22803, 22807, 22809, 22812, 22814, 22816, 22820, 22823, 22827, 22829, 22831, 22833, 22835, 22837, 22840, 22842, 22845, 22848, 22851, 22854, 22856, 22858, 22860, 22862, 22864, 22867, 22870, 22872, 22874, 22876, 22879, 22881, 22884, 22886, 22888, 22890, 22893, 22897, 22899, 22901, 22903, 22906, 22909, 22911, 22913, 22915, 22918, 22922, 22924, 22926, 22929, 22932, 22934, 22937, 22939, 22941, 22943, 22945, 22947, 22949, 22951, 22953, 22955, 22959, 22961, 22965, 22967, 22969, 22971, 22976, 22978, 22980, 22983, 22985, 22990, 22993, 22995, 23001, 23004, 23006, 23012, 23014, 23016, 23018, 23024, 23028, 23031, 23033, 23035, 23038, 23040, 23044, 23046, 23051, 23053, 23055, 23057, 23062, 23064, 23066, 23068, 23072, 23074, 23078, 23080, 23085, 23087, 23089, 23091, 23094, 23096, 23102, 23104, 23108, 23111, 23114, 23116, 23118, 23120, 23122, 23125, 23127, 23129, 23132, 23136, 23138, 23140, 23144, 23146, 23150, 23152, 23154, 23156, 23158, 23162, 23165, 23168, 23170, 23173, 23176, 23178, 23180, 23182, 23184, 23186, 23188, 23191, 23194, 23198, 23200, 23202, 23204, 23206, 23208, 23211, 23214, 23218, 23220, 23222, 23224, 23226, 23228, 23231, 23234, 23237, 23240, 23243, 23246, 23248, 23250, 23252, 23254, 23256, 23258, 23260, 23262, 23265, 23267, 23269, 23272, 23274, 23276, 23279, 23283, 23289, 23291, 23293, 23295, 23298, 23303, 23306, 23308, 23310, 23312, 23314, 23316, 23318, 23321, 23323, 23325, 23327, 23329, 23331, 23334, 23336, 23338, 23340, 23342, 23344, 23346, 23349, 23360, 23362, 23365, 23378, 23380, 23382, 23384, 23389, 23394, 23396, 23398, 23400, 23403, 23406, 23410, 23412, 23414, 23416, 23420, 23422, 23434, 23437, 23440, 23448, 23450, 23452, 23454, 23456, 23458, 23460, 23466, 23469, 23472, 23474, 23488, 23491, 23495, 23505, 23508, 23512, 23523, 23525, 23530, 23532, 23534, 23536, 23538, 23541, 23543, 23546, 23550, 23552, 23554, 23556, 23558, 23560, 23562, 23565, 23568, 23571, 23574, 23577, 23579, 23583, 23585, 23588, 23590, 23592, 23594, 23597, 23599, 23602, 23604, 23606, 23608, 23610, 23612, 23614, 23617, 23623, 23626, 23629, 23632, 23634, 23638, 23640, 23642, 23644, 23647, 23649, 23654, 23656, 23658, 23660, 23664, 23666, 23668, 23670, 23672, 23677, 23679, 23681, 23683, 23687, 23689, 23692, 23697, 23702, 23704, 23708, 23710, 23712, 23714, 23716, 23720, 23722, 23724, 23726, 23728, 23730, 23733, 23735, 23739, 23742, 23745, 23747, 23750, 23752, 23762, 23764, 23768, 23770, 23772, 23777, 23779, 23781, 23784, 23786, 23790, 23792, 23796, 23799, 23801, 23804, 23806, 23808, 23810, 23812, 23814, 23816, 23818, 23821, 23823, 23826, 23828, 23830, 23833, 23835, 23839, 23842, 23845, 23847, 23849, 23851, 23858, 23860, 23866, 23868, 23870, 23872, 23874, 23877, 23884, 23886, 23892, 23894, 23896, 23899, 23901, 23903, 23905, 23908, 23910, 23912, 23914, 23916, 23918, 23920, 23922, 23924, 23933, 23942, 23944, 23946, 23951, 23954, 23957, 23959, 23961, 23966, 23969, 23972, 23974, 23976, 23979, 23982, 23984, 23986, 23988, 23990, 23993, 23996, 23998, 24001, 24003, 24005, 24009, 24011, 24013, 24015, 24017, 24019, 24021, 24023, 24027, 24029, 24031, 24033, 24035, 24037, 24039, 24041, 24043, 24045, 24047, 24054, 24062, 24065, 24067, 24069, 24072, 24077, 24081, 24083, 24085, 24087, 24089, 24091, 24093, 24099, 24101, 24107, 24110, 24112, 24114, 24117, 24124, 24131, 24133, 24135, 24138, 24140, 24142, 24144, 24146, 24148, 24150, 24153, 24155, 24157, 24164, 24166, 24170, 24172, 24175, 24177, 24179, 24181, 24183, 24185, 24189, 24192, 24197, 24200, 24203, 24208, 24210, 24212, 24216, 24218, 24221, 24224, 24229, 24232, 24234, 24237, 24239, 24241, 24244, 24247, 24249, 24252, 24254, 24260, 24262, 24264, 24267, 24272, 24274, 24278, 24281, 24283, 24285, 24288, 24290, 24294, 24296, 24298, 24301, 24303, 24306, 24308, 24313, 24316, 24319, 24322, 24327, 24329, 24331, 24335, 24337, 24340, 24343, 24346, 24348, 24358, 24361, 24363, 24365, 24367, 24369, 24375, 24377, 24379, 24381, 24383, 24385, 24388, 24390, 24403, 24405, 24409, 24412, 24414, 24417, 24419, 24423, 24426, 24428, 24431, 24433, 24439, 24441, 24445, 24447, 24449, 24452, 24454, 24457, 24459, 24462, 24464, 24466, 24469, 24471, 24473, 24475, 24477, 24482, 24484, 24486, 24488, 24490, 24493, 24495, 24497, 24500, 24503, 24507, 24513, 24515, 24519, 24522, 24525, 24528, 24531, 24534, 24537, 24540, 24542, 24546, 24551, 24553, 24555, 24558, 24560, 24566, 24568, 24570, 24573, 24575, 24577, 24579, 24581, 24584, 24593, 24596, 24599, 24602, 24605, 24608, 23025, 22799, 22805, 23889, 22799, 22805, 23890, 19989, 19989, 22583, 20034, 20035, 9794, 9795, 23479, 23478, 23477, 23515, 23513, 23519, 23517, 23484, 23483, 23482, 23527, 23526, 23486, 24615, 24617, 23515, 23513, 23519, 23517, 23521, 23527, 23526, 22598, 22601, 23521, 22602, 22603, 23354, 22610, 23462, 23425, 23424, 23423, 23515, 23513, 23519, 23517, 23354, 23431, 23430, 23429, 23425, 23424, 23423, 22610, 23462, 24619, 22610, 23462, 24621, 22635, 22648, 23782, 24623, 24625, 24627, 24629, 22667, 22678, 10002, 10003, 10004, 10005, 10006, 10007, 10008, 10009, 22685, 22684, 22761, 10024, 10027, 22690, 22688, 24056, 22692, 22701, 10046, 10047, 10048, 10049, 10050, 10051, 22761, 22711, 22709, 23926, 23930, 23928, 23935, 23939, 23937, 10068, 10070, 23948, 23963, 10081, 10082, 23926, 23930, 23928, 23935, 23937, 22729, 22728, 22735, 22734, 23963, 10111, 10112, 10121, 10124, 24025, 24024, 22761, 10140, 22760, 22758, 24056, 22760, 22758, 10167, 10170, 24025, 24024, 22761, 10187, 10190, 22769, 22768, 24056, 22770, 22771, 22817, 22821, 22825, 22824, 23141, 23159, 23141, 10302, 10303, 23621, 23619, 23600, 23621, 23620, 23600, 22877, 22882, 23141, 23159, 23521, 23527, 23526, 24662, 24664, 23621, 23620, 23619, 23600, 23621, 23620, 23619, 23635, 23717, 23698, 22956, 10460, 10461, 10462, 10463, 10465, 22962, 22972, 22988, 22986, 10480, 22998, 22996, 10486, 23009, 23007, 10492, 23021, 23019, 23025, 23041, 23047, 23058, 23069, 23075, 23081, 23099, 23097, 23105, 23141, 23159, 19480, 19481, 19480, 19481, 23286, 23284, 23300, 23354, 23352, 23351, 23350, 23498, 23496, 23502, 23500, 23515, 23513, 23519, 23517, 23354, 23358, 23357, 23356, 23515, 23513, 23369, 23368, 23367, 23373, 23371, 23392, 23391, 23376, 23375, 19541, 23376, 23375, 19541, 23392, 23391, 23387, 23385, 19541, 23392, 23391, 19541, 23515, 23513, 23519, 23517, 23408, 23527, 23526, 23486, 23417, 23498, 23496, 23502, 23500, 23425, 23424, 23423, 23515, 23513, 23519, 23517, 23427, 23431, 23430, 23429, 23441, 23445, 23444, 23443, 23464, 23463, 23462, 19541, 23479, 23478, 23477, 23515, 23513, 23519, 23517, 23484, 23483, 23482, 23527, 23526, 23486, 23498, 23496, 23502, 23500, 23515, 23513, 23519, 23517, 23527, 23526, 23548, 23547, 23581, 23580, 19558, 23621, 23620, 23619, 23600, 23621, 23620, 23619, 23635, 23695, 23698, 23636, 23651, 23645, 23650, 23717, 23695, 23698, 23651, 23661, 23673, 10969, 10970, 23717, 23684, 23698, 23699, 23705, 23717, 23736, 23748, 24104, 24102, 24119, 24121, 24127, 24126, 23754, 23753, 23756, 23755, 23758, 23757, 23760, 23759, 23890, 23889, 23837, 23836, 23774, 23782, 23787, 23793, 23802, 24436, 24434, 24442, 23890, 23889, 23837, 23836, 23837, 23836, 23855, 23853, 24074, 24078, 24094, 21738, 21736, 23863, 23861, 23881, 23879, 23888, 23887, 23890, 23889, 23906, 23926, 23930, 23928, 23935, 23939, 23937, 23948, 23963, 11162, 11163, 11165, 11166, 24007, 24006, 11182, 11185, 24025, 24024, 11195, 11198, 24051, 24049, 24056, 24074, 24058, 24094, 21738, 21736, 24119, 24121, 24127, 24126, 24074, 24078, 24094, 21738, 21736, 24104, 24102, 24121, 24119, 24127, 24126, 24129, 24128, 24195, 24159, 24160, 24186, 24195, 24194, 24205, 24214, 24213, 24226, 24235, 24250, 24256, 24255, 24258, 24257, 24684, 24270, 24269, 24270, 24269, 24687, 24689, 24691, 24693, 24275, 24286, 24291, 24311, 24310, 24309, 24324, 24323, 24510, 24508, 24333, 24332, 24350, 24349, 24352, 24351, 24510, 24353, 24355, 24372, 24370, 24391, 24395, 24393, 24397, 24400, 24400, 24696, 24698, 24700, 24702, 24704, 24406, 24415, 24420, 24429, 24436, 24434, 24442, 22157, 22155, 24510, 24508, 24516, 24543, 24708, 24710, 24712, 24548, 24563, 24561, 24586, 24590, 24588, 24610, 24716, 24718, 24720, 24722, 11638, 11639, 11640, 11641, 11677, 11678, 11683, 11779, 11780, 11782, 11783, 24706, 24705, 12458, 12459, 24714, 24713, 12473, 12474, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 9727, 25037, 25038, 25039, 25041, 25012, 25045, 25044, 25047, 24832, 25012, 24833, 25012, 9740, 9741, 9742, 9743, 9744, 19240, 25264, 25263, 9748, 19240, 24835, 24834, 25264, 25263, 25419, 25404, 25402, 25419, 19242, 25264, 25263, 24836, 19242, 25404, 25403, 25419, 9768, 9769, 24837, 25518, 24838, 25518, 24845, 24839, 24840, 24841, 24843, 24842, 24845, 24844, 24846, 24848, 24847, 24849, 24850, 9787, 9789, 9790, 25569, 20040, 25172, 25173, 9799, 9800, 9801, 9802, 9803, 9804, 9805, 9806, 9807, 9808, 9809, 9810, 9811, 25149, 25179, 25185, 25188, 25187, 25189, 25140, 25182, 25181, 25194, 24852, 24854, 24853, 22920, 24971, 24974, 24973, 25172, 25154, 23363, 9836, 9837, 9838, 9839, 9840, 9841, 9842, 25176, 9844, 24965, 24964, 9847, 9848, 9849, 24965, 24964, 9852, 25162, 25161, 25188, 25187, 25189, 25140, 25182, 25141, 25194, 25195, 24975, 24967, 24970, 24855, 19400, 25189, 25182, 25141, 25194, 25195, 24967, 25194, 25195, 9876, 25135, 25189, 25191, 25162, 25161, 25193, 25192, 9884, 9885, 25165, 25166, 25168, 25167, 25198, 25172, 25154, 9893, 9894, 9895, 9896, 9897, 9898, 9899, 9900, 9901, 9902, 9903, 25135, 25157, 9906, 9907, 9908, 25162, 25161, 25163, 25139, 25189, 25191, 25192, 25193, 9917, 9918, 25166, 25165, 25168, 25167, 22609, 25162, 25161, 25163, 25139, 25193, 25192, 9932, 9933, 25166, 25165, 25168, 25167, 22611, 22612, 24857, 22618, 24859, 20081, 24861, 25527, 25530, 25546, 25551, 25526, 25529, 25546, 25550, 24863, 24865, 9959, 24866, 24867, 24868, 24870, 9964, 24871, 9966, 24872, 24874, 24875, 24876, 25527, 25530, 25546, 25551, 9993, 24886, 20130, 20133, 24878, 24879, 9999, 24886, 25342, 25630, 25633, 25636, 25357, 24882, 24881, 10013, 10014, 20159, 25297, 25322, 25350, 25321, 10020, 25361, 25360, 24883, 25363, 25362, 25365, 25364, 25366, 25368, 25367, 25369, 10034, 10035, 10036, 25370, 10038, 24886, 20169, 20172, 10042, 24886, 24887, 25317, 25648, 25650, 25652, 20191, 10053, 24911, 24910, 24909, 10057, 10058, 10059, 25324, 10061, 10062, 10063, 25325, 10065, 10066, 20196, 20201, 10071, 25328, 25330, 25329, 21560, 21563, 10077, 25333, 25335, 25334, 25667, 24899, 25338, 24892, 24894, 24896, 24906, 10089, 25324, 10091, 10092, 10093, 25325, 10095, 10096, 10097, 21543, 20221, 25328, 10101, 10102, 25330, 25329, 21560, 21563, 10107, 25333, 25335, 25334, 25679, 24899, 24901, 24902, 24904, 25293, 24906, 25352, 25351, 25354, 25353, 25356, 25355, 25357, 25358, 25323, 10130, 10131, 24907, 25297, 25350, 25321, 25349, 10137, 24910, 24909, 25363, 25362, 25365, 25364, 25366, 25368, 25367, 25369, 10149, 10150, 10151, 25370, 24907, 25297, 24911, 24909, 25363, 25362, 25365, 25364, 25368, 25367, 10163, 10164, 25352, 25351, 25354, 25353, 25356, 25355, 25357, 25358, 25323, 10176, 10177, 25295, 25297, 25322, 25350, 25321, 10183, 24911, 24910, 24909, 25363, 25362, 25365, 25364, 25366, 25368, 25367, 25369, 10197, 10198, 10199, 25370, 10201, 10202, 25311, 25310, 25309, 24913, 24912, 24914, 24917, 24916, 24915, 24919, 24918, 24920, 24921, 24922, 22799, 24924, 22805, 24926, 20309, 24928, 10223, 20318, 10225, 20322, 10227, 10228, 25394, 24933, 24932, 20333, 24936, 24935, 24937, 20334, 25314, 24936, 24935, 24937, 25059, 25052, 25088, 25087, 25090, 25054, 25053, 25092, 25055, 25093, 25096, 25095, 22838, 10254, 23270, 23163, 25059, 25052, 25087, 25088, 25090, 25054, 25053, 25092, 24939, 25056, 10267, 23270, 23163, 25059, 25052, 25087, 25088, 25054, 25053, 25048, 25092, 25055, 25093, 25096, 25095, 22843, 10283, 23270, 23163, 25194, 25195, 25162, 25161, 25188, 25187, 25189, 25180, 25193, 25182, 25194, 25195, 24975, 24967, 24970, 24941, 25711, 25162, 25161, 25188, 25187, 25189, 25140, 25182, 25141, 25195, 25183, 24975, 24967, 24970, 24969, 19400, 24943, 25202, 25201, 25210, 25213, 25212, 10325, 10326, 25215, 25203, 25218, 25217, 25216, 10332, 25205, 25200, 24981, 24945, 24946, 25213, 24984, 10340, 10341, 24949, 24948, 25204, 25218, 25217, 10347, 24982, 25250, 25252, 25254, 25255, 24950, 24952, 10355, 24955, 24954, 10358, 24957, 24956, 25250, 25237, 24958, 25254, 25255, 25086, 25059, 25087, 25088, 25093, 25096, 25095, 25090, 25054, 25053, 25092, 25055, 25049, 10379, 25056, 10381, 23270, 23163, 24960, 24959, 25179, 23363, 10388, 10389, 10390, 25176, 24961, 24963, 24965, 24964, 24966, 25188, 25187, 25195, 25194, 24975, 24967, 24970, 24969, 19400, 24975, 22920, 24971, 24974, 24973, 24975, 22935, 24978, 19405, 25200, 24981, 25202, 25210, 25213, 24984, 10425, 10426, 10427, 25215, 25203, 25204, 25218, 25217, 10433, 24982, 25206, 25208, 25210, 25213, 24984, 10440, 10441, 10442, 25215, 25214, 25204, 25218, 25217, 10448, 25245, 25247, 10451, 25249, 25240, 25239, 25258, 23695, 10457, 24985, 10459, 19416, 19419, 25022, 24987, 10469, 24989, 24991, 10472, 22974, 24994, 24995, 24997, 24996, 10478, 10479, 24998, 25000, 24999, 10484, 10485, 25001, 25003, 25002, 10490, 10491, 25004, 25007, 25006, 10496, 10497, 25008, 10499, 25009, 25010, 25012, 25014, 25013, 10505, 25016, 25015, 10508, 23049, 25018, 25019, 10512, 23060, 25022, 25023, 10516, 25025, 10518, 25027, 10520, 23083, 25030, 25032, 25034, 25033, 10526, 10527, 25036, 25035, 10530, 25037, 25038, 25039, 25041, 25043, 25045, 25044, 25047, 25046, 25086, 25085, 25088, 25087, 25054, 25053, 25048, 25092, 25055, 25093, 25096, 25095, 25049, 10553, 23270, 23163, 25059, 25052, 25087, 25088, 25090, 25054, 25053, 25092, 25055, 25093, 25096, 25095, 25056, 10569, 23270, 23163, 25059, 25060, 25082, 25081, 25090, 25089, 25092, 25091, 25083, 25096, 25095, 25097, 25099, 25084, 19482, 25060, 25085, 25087, 25061, 25090, 25089, 25092, 25091, 25093, 25096, 25095, 25062, 25099, 25100, 19488, 23174, 25064, 25066, 25068, 10606, 25071, 25070, 10609, 25072, 25074, 25076, 10613, 25079, 25078, 10616, 25086, 25080, 25082, 25081, 25090, 25089, 25092, 25091, 25083, 25096, 25095, 25097, 25099, 25084, 19482, 23270, 19483, 25086, 25085, 25088, 25087, 25090, 25089, 25092, 25091, 25093, 25096, 25095, 25097, 25099, 25100, 19488, 23270, 19489, 25106, 25105, 23281, 10654, 10655, 25108, 25110, 25109, 25112, 25111, 25113, 10662, 25114, 25117, 25116, 25115, 25119, 25118, 19504, 23319, 25123, 25122, 25128, 25125, 25124, 19511, 23332, 25130, 25129, 25128, 25132, 25131, 20906, 23347, 25172, 25154, 10687, 10688, 10689, 10690, 25135, 25157, 25170, 25169, 23493, 10696, 10697, 10698, 10699, 25172, 25154, 23363, 10703, 10704, 10705, 10706, 10707, 10708, 10709, 10710, 25135, 25157, 25172, 25154, 23363, 10716, 10717, 25154, 25172, 10720, 10721, 10722, 10723, 10724, 25185, 25163, 25139, 25189, 25140, 25182, 25141, 10732, 10733, 10734, 10735, 25144, 25138, 20938, 10739, 25163, 25139, 25140, 25182, 25141, 10745, 10746, 25144, 25138, 20943, 10750, 25185, 25163, 25139, 25189, 25140, 25182, 25141, 10758, 10759, 10760, 10761, 25144, 25142, 25145, 10765, 25164, 25163, 10768, 10769, 25165, 25143, 25168, 25144, 25145, 10775, 25148, 25147, 23510, 10779, 10780, 10781, 10782, 10783, 10784, 10785, 10786, 25149, 25151, 10789, 25179, 25170, 25169, 23493, 10794, 10795, 10796, 10797, 25172, 25154, 10800, 10801, 10802, 10803, 10804, 10805, 10806, 10807, 10808, 10809, 10810, 25156, 25155, 25157, 10814, 10815, 10816, 10817, 25158, 25160, 25162, 25161, 25164, 25163, 25189, 25191, 25192, 25193, 10828, 10829, 10830, 25166, 25165, 25168, 25167, 25198, 10836, 25172, 25173, 10839, 10840, 10841, 10842, 10843, 10844, 10845, 10846, 10847, 10848, 10849, 10850, 10851, 25177, 25179, 25170, 25169, 23493, 10857, 10858, 10859, 10860, 25173, 25172, 23510, 10864, 10865, 10866, 10867, 23521, 10869, 10870, 25176, 25177, 25179, 25185, 25188, 25187, 25189, 25180, 25182, 25181, 25184, 25183, 10883, 10884, 25185, 25188, 25187, 25189, 25191, 25193, 25192, 25195, 25194, 25196, 10895, 10896, 25198, 10898, 25200, 25202, 25201, 25210, 25213, 25212, 10905, 10906, 10907, 25215, 25203, 25204, 25218, 25217, 10913, 25205, 25206, 25208, 25210, 25213, 25212, 10920, 10921, 10922, 25215, 25214, 25218, 25217, 25216, 10928, 25240, 25239, 25258, 10932, 10933, 25250, 25252, 10936, 25220, 25219, 10939, 25258, 25257, 25221, 10943, 25223, 10945, 25245, 25247, 10948, 25249, 25250, 25252, 25254, 25255, 25240, 25239, 25258, 10957, 10958, 10959, 25225, 25228, 25227, 10963, 25229, 25231, 25233, 25236, 10968, 25895, 25245, 25247, 10973, 25249, 25234, 25237, 25236, 10978, 21277, 25240, 25239, 25257, 23695, 10984, 10985, 25242, 10987, 25244, 25245, 25247, 10991, 25249, 25250, 25252, 25254, 25255, 10997, 25258, 25257, 25259, 11001, 25384, 11003, 11004, 25386, 25388, 25387, 25390, 25389, 11010, 11011, 25371, 11013, 11014, 11015, 11016, 11017, 11018, 11019, 11020, 11021, 11022, 25402, 25263, 25419, 25403, 25263, 25419, 25311, 25309, 25404, 25406, 25408, 25264, 25419, 11036, 11037, 25311, 25310, 25312, 25314, 11042, 11043, 25406, 25408, 25265, 11047, 25267, 25268, 11050, 25270, 25271, 11053, 25273, 25275, 11056, 25276, 25278, 11059, 25280, 25279, 11062, 11063, 25281, 11065, 25283, 25285, 25286, 25287, 25288, 25290, 11072, 11073, 25311, 25310, 25309, 25312, 25314, 25400, 25399, 25292, 25404, 25403, 25402, 11085, 11086, 11087, 11088, 25294, 25293, 25358, 25323, 25295, 25297, 25322, 25350, 25321, 11098, 11099, 25374, 25373, 25372, 25375, 11104, 19709, 11106, 19710, 25378, 21454, 25381, 21731, 11112, 11113, 11114, 25299, 11116, 11117, 25301, 25304, 25303, 25306, 25305, 11123, 11124, 25307, 11126, 11127, 11128, 11129, 25311, 25310, 25309, 25312, 25314, 11135, 25316, 25317, 25319, 25322, 25321, 25323, 11142, 25324, 11144, 11145, 11146, 25325, 11148, 11149, 21543, 21546, 11152, 25328, 25330, 25329, 21560, 21563, 11158, 25333, 25335, 25334, 25961, 25336, 25963, 25337, 25339, 25338, 25340, 25342, 25345, 25344, 25346, 23999, 25350, 25349, 11178, 11179, 25352, 25351, 25354, 25353, 25356, 25355, 25357, 25358, 11190, 11191, 25361, 25360, 25359, 25363, 25362, 25365, 25364, 25366, 25368, 25367, 25369, 11205, 11206, 11207, 25370, 25374, 25373, 25372, 25375, 11213, 19709, 11215, 19710, 25378, 21696, 25381, 21731, 11221, 11222, 11223, 25386, 25390, 25389, 11227, 11228, 25371, 11230, 11231, 25374, 25373, 25372, 25375, 11236, 19709, 11238, 19710, 25378, 21724, 25381, 21731, 11244, 11245, 11246, 25384, 11248, 11249, 25386, 25388, 25387, 25390, 25389, 11255, 11256, 25391, 11258, 11259, 11260, 11261, 25394, 25393, 25392, 25395, 25397, 25400, 25399, 25401, 25404, 25403, 25402, 11273, 11274, 25417, 11276, 25419, 24162, 25406, 24168, 25408, 25409, 25411, 25413, 11285, 25416, 25415, 11288, 11289, 25417, 25418, 25419, 11293, 25421, 25420, 21859, 11297, 11298, 21866, 25425, 25424, 25426, 25427, 11304, 25428, 11306, 25431, 25430, 25433, 25432, 25434, 11312, 25436, 11314, 11315, 11316, 11317, 25438, 25439, 25465, 25466, 25441, 11327, 11328, 11329, 11330, 25442, 25444, 11344, 25445, 11346, 25447, 25449, 25448, 11350, 25450, 25452, 25453, 25454, 25508, 25509, 25456, 25455, 21969, 11360, 11361, 11362, 22001, 25458, 25457, 25459, 25460, 11368, 11369, 24325, 11371, 11372, 25462, 25461, 21994, 11376, 11377, 22001, 25466, 25465, 25467, 25468, 11383, 11384, 11385, 11386, 11387, 11388, 25470, 11390, 25471, 25473, 25474, 11394, 11395, 25476, 25478, 25479, 25481, 25482, 11401, 11402, 11403, 11404, 11405, 11406, 25484, 25486, 11424, 25487, 11426, 25488, 25489, 25491, 11430, 25492, 11432, 25493, 25494, 11435, 11436, 25497, 25496, 11439, 25498, 25500, 25501, 25502, 25503, 25504, 25505, 25507, 25508, 25509, 25511, 11451, 11452, 24480, 22162, 25517, 25516, 25515, 25518, 25520, 25522, 25521, 24505, 11463, 11464, 25524, 11466, 25527, 25526, 25528, 25530, 25529, 25531, 25532, 11474, 25534, 25533, 11489, 25535, 25536, 25538, 25539, 11494, 11495, 25541, 25543, 25544, 25546, 25549, 25548, 11502, 11503, 11504, 25551, 25550, 25553, 25552, 25554, 11510, 25555, 25738, 25738, 26082, 26084, 26086, 26077, 26067, 24730, 26078, 26077, 26077, 26067, 26078, 26077, 26077, 26067, 25623, 26089, 25625, 26091, 26078, 26077, 25738, 25740, 22315, 24685, 26019, 26020, 24694, 26050, 26051, 22338, 12453, 12454, 26077, 26067, 26068, 26095, 12468, 12469, 26078, 26077, 26079, 26099, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 9728, 9729, 9730, 9731, 9732, 9733, 9734, 9735, 9736, 9737, 9738, 9739, 9745, 9746, 9747, 9749, 9750, 9751, 9752, 9753, 9754, 9755, 9756, 9757, 9758, 9759, 9760, 9761, 9762, 9763, 9764, 9765, 9770, 9771, 9772, 9773, 9774, 9775, 9776, 9777, 9778, 9779, 9780, 9781, 9782, 9783, 9784, 9785, 9786, 9796, 9797, 9798, 26178, 26181, 26183, 26185, 26188, 9812, 9813, 9814, 9815, 9816, 9817, 9818, 9819, 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9829, 9830, 9833, 9834, 9835, 26211, 26213, 9843, 26216, 9845, 9846, 9850, 9851, 9853, 9854, 9855, 9856, 9857, 9858, 9859, 9860, 9861, 9862, 9863, 9864, 9865, 9866, 9867, 9868, 9869, 9870, 9871, 9872, 9873, 9874, 9875, 9877, 9878, 9879, 9880, 9881, 9882, 9883, 26259, 9886, 9887, 9888, 9889, 9890, 9891, 9892, 26268, 26271, 26273, 26276, 9904, 9905, 26281, 9909, 9910, 9911, 9912, 9913, 9914, 9915, 9916, 26292, 9919, 9920, 9921, 9922, 9923, 9926, 9927, 9928, 9929, 9930, 9931, 26305, 9934, 9935, 9936, 9937, 9938, 9941, 9942, 9943, 9944, 9945, 9946, 9949, 9950, 9951, 9952, 9953, 9954, 9955, 9956, 9957, 9958, 9960, 9961, 9962, 9963, 9965, 9967, 9968, 9969, 9970, 9971, 9972, 9989, 9990, 9994, 9995, 9996, 9997, 9998, 10000, 10001, 10010, 10011, 10012, 26359, 10015, 10016, 10017, 10018, 10019, 10021, 10022, 10023, 10025, 10026, 10028, 10029, 10030, 10031, 10032, 10033, 26378, 10037, 10039, 10040, 10041, 10043, 10044, 10045, 10052, 10054, 10055, 10056, 26398, 10060, 26402, 10064, 26406, 10067, 10069, 10072, 10073, 10074, 10075, 10076, 10078, 10079, 10080, 10083, 10084, 10085, 10086, 10087, 10088, 10090, 26429, 10094, 26433, 10098, 10099, 10100, 10103, 10104, 10105, 10106, 10108, 10109, 10110, 10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10122, 10123, 10125, 10126, 10127, 10128, 10129, 26465, 10132, 10133, 10134, 10135, 10136, 10138, 10139, 10141, 10142, 10143, 10144, 10145, 10146, 10147, 10148, 26483, 10152, 10153, 10154, 10155, 10156, 10157, 10158, 10159, 10160, 10161, 10162, 26497, 10165, 10166, 10168, 10169, 10171, 10172, 10173, 10174, 10175, 26508, 10178, 10179, 10180, 10181, 10182, 10184, 10185, 10186, 10188, 10189, 10191, 10192, 10193, 10194, 10195, 10196, 26527, 10200, 10203, 10204, 10205, 10206, 10207, 10208, 10209, 10210, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 10218, 10219, 10220, 10221, 10222, 10224, 10226, 26557, 10229, 10230, 10231, 10232, 10233, 10234, 10235, 10236, 10237, 10238, 10239, 10240, 10241, 10242, 10243, 10244, 10245, 10246, 10247, 10248, 10249, 10250, 10251, 10252, 10253, 10255, 10256, 10257, 10258, 10259, 10260, 10261, 10262, 10263, 10264, 10265, 10266, 10268, 10269, 10270, 10271, 10272, 10273, 10274, 10275, 10276, 10277, 10278, 10279, 10280, 10281, 10282, 10284, 10285, 10286, 10287, 10288, 10289, 10290, 10291, 10292, 10293, 10294, 10295, 10296, 10297, 10298, 10299, 10300, 10301, 10304, 10305, 10306, 10307, 10308, 10309, 10310, 10311, 10312, 10313, 10314, 10315, 10316, 10317, 10318, 10319, 10320, 10321, 10322, 10323, 10324, 26654, 10327, 10328, 10329, 10330, 10331, 10333, 10334, 10335, 10336, 10337, 10338, 10339, 26669, 10342, 10343, 10344, 10345, 10346, 10348, 10349, 10350, 10351, 10352, 10353, 10354, 10356, 10357, 10359, 10360, 10361, 10362, 10363, 10364, 10365, 10366, 10367, 10368, 10369, 10370, 10371, 10372, 10373, 10374, 10375, 10376, 10377, 10378, 10380, 10382, 10383, 10384, 10385, 10386, 10387, 10391, 26718, 10392, 10393, 10394, 10395, 10396, 10397, 10398, 10399, 10400, 10401, 10402, 10403, 10404, 10405, 10406, 10407, 10408, 10411, 10412, 10415, 10416, 10417, 10418, 10419, 10420, 10421, 10422, 10423, 10424, 26750, 10428, 10429, 10430, 10431, 10432, 10434, 10435, 10436, 10437, 10438, 10439, 26765, 10443, 10444, 10445, 10446, 10447, 10449, 10450, 10452, 10453, 10454, 10455, 10456, 10458, 10464, 10466, 10467, 10468, 10470, 10471, 10473, 10474, 10475, 10476, 10477, 26798, 10481, 10482, 10483, 26803, 10487, 10488, 10489, 26808, 10493, 10494, 10495, 26813, 10498, 10500, 10501, 10502, 10503, 10504, 10506, 10507, 10509, 10510, 10511, 10513, 10514, 10515, 10517, 10519, 10521, 10522, 10523, 10524, 10525, 26843, 10528, 10529, 10531, 10532, 10533, 10534, 10535, 10536, 10537, 10538, 10539, 10540, 10541, 10542, 10543, 10544, 10545, 10546, 10547, 10548, 10549, 10550, 10551, 10552, 10554, 10555, 10556, 10557, 10558, 10559, 10560, 10561, 10562, 10563, 10564, 10565, 10566, 10567, 10568, 10570, 10571, 10572, 10573, 10574, 10575, 10576, 10577, 10578, 10579, 10580, 10581, 10582, 10583, 10584, 10585, 10586, 10587, 10588, 10589, 10590, 10591, 10592, 10593, 10594, 10595, 10596, 10597, 10598, 10599, 10600, 10601, 10602, 10603, 10604, 10605, 10607, 10608, 10610, 10611, 10612, 10614, 10615, 10617, 10618, 10619, 10620, 10621, 10622, 10623, 10624, 10625, 10626, 10627, 10628, 10629, 10630, 10631, 10632, 10633, 10634, 10635, 10636, 10637, 10638, 10639, 10640, 10641, 10642, 10643, 10644, 10645, 10646, 10647, 10648, 10649, 10650, 10651, 10652, 10653, 26971, 10656, 10657, 10658, 10659, 10660, 10661, 10663, 10664, 10665, 10666, 10667, 10668, 10669, 10670, 10671, 10672, 10673, 10674, 10675, 10676, 10677, 10678, 10679, 10680, 10681, 10682, 10683, 10684, 10685, 10686, 27005, 10691, 10692, 10693, 10694, 10695, 27013, 27015, 10700, 10701, 10702, 27020, 27022, 27025, 10711, 10712, 10713, 10714, 10715, 27033, 10718, 10719, 27037, 27040, 10725, 10726, 10727, 10728, 10729, 10730, 10731, 27049, 27051, 10736, 10737, 10738, 10740, 10741, 10742, 10743, 10744, 27062, 10747, 10748, 10749, 10751, 10752, 10753, 10754, 10755, 10756, 10757, 27075, 27077, 10762, 10763, 10764, 10766, 10767, 27085, 10770, 10771, 10772, 10773, 10774, 10776, 10777, 10778, 27096, 27098, 27101, 10787, 10788, 10790, 10791, 10792, 10793, 27111, 27113, 10798, 10799, 27117, 27120, 27122, 27125, 10811, 10812, 10813, 27132, 10818, 10819, 10820, 10821, 10822, 10823, 10824, 10825, 10826, 10827, 27145, 10831, 10832, 10833, 10834, 10835, 10837, 10838, 27156, 27159, 27161, 27163, 27166, 10852, 10853, 10854, 10855, 10856, 27174, 27176, 10861, 10862, 10863, 27181, 27183, 10868, 10871, 27186, 10872, 10873, 10874, 10875, 10876, 10877, 10878, 10879, 10880, 10881, 10882, 27200, 10885, 10886, 10887, 10888, 10889, 10890, 10891, 10892, 10893, 10894, 27212, 10897, 10899, 10900, 10901, 10902, 10903, 10904, 27222, 10908, 10909, 10910, 10911, 10912, 10914, 10915, 10916, 10917, 10918, 10919, 27237, 10923, 10924, 10925, 10926, 10927, 10929, 10930, 10931, 10934, 10935, 10937, 10938, 10940, 10941, 10942, 10944, 10946, 10947, 10949, 10950, 10951, 10952, 10953, 10954, 10955, 10956, 10960, 10961, 10962, 10964, 10965, 10966, 10967, 10971, 10972, 10974, 10975, 10976, 10977, 10979, 10980, 10981, 10982, 10983, 10986, 10988, 10989, 10990, 10992, 10993, 10994, 10995, 10996, 10998, 10999, 11000, 11002, 27319, 11005, 11006, 11007, 11008, 11009, 27326, 11012, 27329, 27331, 27333, 27335, 27337, 11023, 11024, 11025, 11026, 11027, 11028, 11029, 11030, 11031, 11032, 11033, 11034, 11035, 27352, 11038, 11039, 11040, 11041, 27358, 11044, 11045, 11046, 11048, 11049, 11051, 11052, 11054, 11055, 11057, 11058, 11060, 11061, 27378, 11064, 11066, 11067, 11068, 11069, 11070, 11071, 27388, 11074, 11075, 11076, 11077, 11078, 11079, 11080, 11081, 11082, 11083, 11084, 27401, 27403, 11089, 11090, 11091, 11092, 11093, 11094, 11095, 11096, 11097, 27414, 11100, 11101, 11102, 11103, 11105, 11107, 11108, 11109, 11110, 11111, 27429, 11115, 27432, 11118, 11119, 11120, 11121, 11122, 27439, 11125, 27442, 27444, 11130, 11131, 11132, 11133, 11134, 11136, 11137, 11138, 11139, 11140, 11141, 11143, 27460, 11147, 27464, 11150, 11151, 11153, 11154, 11155, 11156, 11157, 11159, 11160, 11161, 11164, 11167, 11168, 11169, 11170, 11171, 11172, 11173, 11174, 11175, 11176, 11177, 27492, 11180, 11181, 11183, 11184, 11186, 11187, 11188, 11189, 27502, 11192, 11193, 11194, 11196, 11197, 11199, 11200, 11201, 11202, 11203, 11204, 27515, 11208, 11209, 11210, 11211, 11212, 11214, 11216, 11217, 11218, 11219, 11220, 27532, 11224, 11225, 11226, 27537, 11229, 27540, 11232, 11233, 11234, 11235, 11237, 11239, 11240, 11241, 11242, 11243, 27555, 11247, 27558, 11250, 11251, 11252, 11253, 11254, 27565, 11257, 27568, 27570, 11262, 11263, 11264, 11265, 11266, 11267, 11268, 11269, 11270, 11271, 11272, 27583, 11275, 11277, 11278, 11279, 11280, 11281, 11282, 11283, 11284, 11286, 11287, 27598, 11290, 11291, 11292, 11294, 11295, 11296, 27607, 11299, 11300, 11301, 11302, 11303, 11305, 11307, 11308, 11309, 11310, 11311, 11313, 27624, 27626, 11322, 11323, 11324, 11325, 11326, 27633, 27635, 11342, 11343, 11345, 11347, 11348, 11349, 11351, 11352, 11353, 11354, 11355, 11356, 11357, 11358, 11359, 27655, 11363, 11364, 11365, 11366, 11367, 27663, 11370, 27666, 11373, 11374, 11375, 27671, 11378, 11379, 11380, 11381, 11382, 27678, 27680, 27682, 11389, 11391, 11392, 11393, 27689, 11396, 11397, 11398, 11399, 11400, 27697, 27700, 11422, 11423, 11425, 11427, 11428, 11429, 11431, 11433, 11434, 27715, 11437, 11438, 11440, 11441, 11442, 11443, 11444, 11445, 11446, 11447, 11448, 11449, 11450, 27731, 11453, 11454, 11455, 11456, 11457, 11458, 11459, 11460, 11461, 11462, 27743, 11465, 11467, 11468, 11469, 11470, 11471, 11472, 11473, 11475, 11476, 11490, 11491, 11492, 11493, 27762, 11496, 11497, 11498, 11499, 11500, 11501, 27771, 11505, 11506, 11507, 11508, 11509, 11511, 11544, 11563, 11679, 11680, 24731, 11686, 11687, 11754, 11755, 11756, 11757, 11776, 11777, 11778, 11781, 11786, 11787, 26353, 26352, 26390, 26389, 12026, 12027, 27248, 27273, 27284, 12389, 12394, 12395, 12396, 12424, 12425, 12426, 12427, 27812, 12455, 12456, 12457, 27818, 12470, 12471, 12472, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 27910, 27912, 27918, 27921, 27923, 27926, 27930, 27934, 27941, 27945, 27947, 27950, 27955, 26179, 26186, 26189, 27965, 27969, 27971, 27973, 27977, 27979, 27983, 27986, 27988, 27990, 27992, 27996, 27998, 28002, 28006, 28008, 28011, 28016, 28018, 28021, 28023, 28026, 26269, 26277, 26282, 28035, 28037, 28041, 28044, 28046, 28049, 28051, 28053, 28056, 28058, 26327, 26332, 28089, 28094, 28098, 28103, 28106, 28109, 28111, 28114, 28117, 28118, 28121, 28126, 28129, 28131, 28135, 28137, 28140, 28142, 28148, 28149, 28151, 26434, 26438, 28157, 28160, 28162, 28168, 28170, 28172, 28174, 28177, 28182, 28185, 28187, 28189, 28192, 28195, 28199, 28201, 28203, 28205, 28208, 28210, 28212, 28215, 28220, 28223, 28226, 28228, 28231, 28234, 28236, 28239, 28242, 28245, 28259, 28263, 28268, 28271, 28273, 28275, 28278, 28281, 28286, 28288, 28290, 28293, 28298, 28300, 28302, 28305, 28308, 28313, 28315, 28317, 28321, 28323, 28327, 28329, 28331, 28335, 28337, 28341, 28345, 28348, 28351, 28353, 28355, 28358, 28361, 28364, 28366, 28368, 28376, 28378, 28381, 28385, 28387, 28390, 28392, 28395, 28401, 28404, 28409, 28412, 28414, 28418, 28424, 28431, 28434, 26751, 28437, 28439, 28441, 28446, 26766, 28449, 28451, 28457, 28471, 28475, 28479, 28483, 28490, 28492, 28505, 28508, 28515, 28517, 28519, 28521, 28523, 28526, 28529, 28534, 28536, 28538, 28541, 28544, 28549, 28551, 28553, 28555, 28558, 28564, 28566, 28568, 28570, 28573, 28583, 28588, 28590, 28592, 28594, 28596, 28599, 28607, 28609, 28611, 28613, 28616, 28624, 28629, 28631, 26978, 28635, 28638, 28642, 28645, 28649, 28652, 28656, 27006, 28661, 28666, 27026, 28674, 28678, 27038, 28683, 28687, 28691, 28694, 28697, 28700, 28704, 28708, 28712, 28715, 28718, 28720, 28723, 27102, 28732, 28737, 27118, 27126, 28743, 27133, 28749, 28751, 28755, 27146, 28758, 28760, 28763, 27157, 27164, 27167, 28772, 28777, 28782, 28788, 28792, 28794, 28798, 28802, 28804, 28810, 28813, 27223, 28816, 28818, 28820, 28825, 27238, 28828, 28830, 28833, 28838, 28840, 28851, 28855, 28859, 28865, 28868, 28881, 28887, 28889, 28904, 28912, 28919, 28921, 27371, 27374, 28928, 28939, 28944, 28947, 28952, 28954, 28958, 28962, 28976, 28978, 28984, 28992, 28994, 28996, 29000, 29002, 29005, 29007, 29011, 29015, 29019, 29022, 29024, 29026, 29031, 29034, 29036, 29039, 29042, 29044, 29056, 29061, 29075, 29077, 29083, 29088, 29091, 29104, 29110, 29115, 27613, 29120, 29122, 29130, 27638, 29137, 29139, 29147, 27656, 29152, 29159, 29164, 27684, 27703, 29185, 27709, 29189, 29193, 29209, 29214, 29219, 29222, 29225, 29227, 29237, 29240, 29242, 29244, 26112, 27905, 27907, 28460, 28495, 28500, 28464, 28501, 28500, 28466, 28467, 28472, 28480, 28484, 26846, 28510, 28487, 28460, 28495, 28500, 28464, 28501, 28500, 28466, 28467, 28472, 28480, 28484, 26846, 28510, 28512, 26530, 28883, 26126, 26125, 27916, 27931, 29108, 26129, 26128, 27916, 29108, 27919, 26530, 28969, 28967, 26531, 28883, 28891, 28251, 28249, 27928, 29102, 27931, 27924, 27927, 26530, 28969, 28967, 26531, 28883, 28891, 28251, 28249, 27928, 29102, 27931, 27935, 27932, 27935, 26151, 26151, 26152, 28930, 28931, 27936, 28935, 29144, 29206, 29204, 29215, 28930, 28931, 28933, 28935, 29144, 29206, 29204, 29215, 26171, 26172, 27952, 29248, 26171, 26172, 29251, 26173, 27953, 27957, 27961, 27966, 27975, 27981, 28406, 28406, 27993, 27999, 28004, 28425, 28318, 28324, 28728, 28012, 28013, 28024, 28028, 28031, 28725, 28728, 28038, 28047, 28799, 28059, 28062, 28060, 28064, 29253, 29255, 28067, 28066, 28071, 28070, 28076, 28080, 28081, 28083, 28086, 28085, 29257, 29261, 28090, 28138, 26419, 28092, 28153, 28158, 26448, 28164, 26354, 11807, 11808, 28100, 28119, 28138, 26419, 28144, 28153, 28158, 26448, 28164, 26391, 11836, 11837, 28124, 28134, 28133, 28138, 26419, 28144, 28153, 28158, 26448, 28164, 28179, 28196, 28217, 26530, 26531, 28246, 28247, 28251, 28249, 28253, 26552, 26554, 28261, 29095, 28265, 29108, 28282, 28283, 28294, 28295, 28309, 28310, 28725, 28728, 28734, 28739, 28406, 28318, 28324, 28332, 28338, 28725, 28728, 28734, 28739, 28406, 28318, 28324, 28332, 28338, 28369, 28371, 28373, 28863, 28382, 28397, 28396, 28398, 28725, 28728, 28739, 28734, 28406, 28752, 28415, 28420, 28422, 28425, 28427, 28442, 28453, 26775, 28459, 28460, 28495, 28461, 28462, 28500, 28464, 28501, 28500, 28466, 28467, 28472, 28476, 28480, 28484, 26815, 28486, 28487, 28500, 28493, 28500, 28495, 28496, 28500, 28499, 28498, 28501, 26846, 28510, 28512, 28530, 28531, 28545, 28546, 28559, 28561, 28574, 28576, 28626, 28579, 28581, 28584, 28586, 28600, 28604, 28602, 28617, 28621, 28619, 28626, 28639, 28646, 28653, 28658, 28663, 28668, 28671, 28676, 28725, 28728, 28684, 28692, 28799, 28701, 28705, 28713, 28799, 28721, 28725, 28728, 28784, 28734, 28739, 28746, 28752, 28761, 28765, 28769, 28774, 28779, 28784, 28789, 28805, 28799, 28805, 28807, 28821, 12199, 28835, 28842, 28841, 28843, 27264, 28846, 28848, 12210, 27279, 12215, 28860, 27288, 27293, 28870, 27300, 27302, 28873, 27306, 28876, 28878, 28882, 28883, 28891, 28974, 28980, 28974, 28980, 28897, 28898, 28899, 28900, 28901, 28902, 28905, 29098, 29096, 28908, 28909, 28913, 29098, 29096, 28922, 28930, 28931, 28933, 28935, 29016, 28941, 28998, 29003, 27477, 27479, 28955, 27421, 27419, 28969, 28967, 27427, 28972, 28980, 28986, 29095, 29108, 28998, 29003, 27477, 27479, 29016, 28993, 28998, 29003, 27479, 27477, 29016, 29028, 27524, 27522, 29051, 29049, 27530, 29058, 27547, 27545, 29068, 29066, 27553, 29071, 29079, 29085, 29094, 29095, 29098, 29096, 29100, 29102, 29106, 29108, 29112, 27621, 29179, 29127, 29235, 29140, 29142, 29144, 29154, 29156, 29161, 29166, 29168, 29172, 29174, 29176, 29178, 27698, 27695, 29190, 29194, 29196, 29198, 29200, 29202, 29206, 29204, 29215, 29229, 29231, 29233, 27745, 29281, 29229, 29231, 29233, 27769, 29285, 29282, 29286, 29282, 29286, 29282, 29286, 29259, 29258, 29286, 29272, 29274, 29272, 29274, 29275, 29277, 29282, 29286, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 28104, 28107, 28127, 26439, 28183, 28221, 28224, 28237, 28243, 28260, 28276, 28291, 28303, 28354, 28367, 28393, 28440, 28452, 28524, 28539, 28636, 28643, 28650, 28819, 28831, 28940, 28948, 28959, 28963, 28985, 29032, 29045, 29062, 29084, 29092, 29210, 29226, 11538, 11539, 11540, 29440, 11542, 11543, 11545, 11546, 11547, 11548, 11549, 11550, 28469, 11552, 28477, 11554, 28481, 11556, 11557, 11558, 11559, 29620, 11561, 11562, 11564, 11565, 11566, 11567, 11568, 11569, 28469, 11571, 28477, 11573, 28481, 11575, 11576, 11577, 11578, 29620, 11581, 11582, 28885, 11584, 11585, 11586, 11587, 11588, 28885, 11591, 11592, 11593, 29442, 11595, 11597, 11600, 11601, 11602, 11603, 11604, 28885, 29731, 11607, 11608, 11609, 11610, 11611, 29444, 11613, 11614, 29445, 11616, 11618, 11619, 11620, 11621, 11622, 28885, 29731, 11625, 11626, 11627, 11628, 11629, 29446, 11631, 11632, 11634, 29773, 29447, 11637, 11642, 11643, 11644, 29738, 11646, 11647, 11648, 11649, 11650, 11651, 11652, 27938, 11655, 28923, 28925, 29738, 11659, 11660, 11661, 11662, 11663, 11664, 11665, 29212, 11668, 11669, 11670, 29451, 29448, 27943, 29451, 29450, 11676, 11681, 11682, 11688, 11689, 29452, 11691, 29454, 11693, 11694, 27963, 29457, 29459, 29460, 11699, 29461, 11701, 26214, 29463, 11704, 26222, 29464, 11707, 11708, 29465, 29467, 11711, 29469, 11713, 29473, 29470, 11716, 29599, 11718, 29566, 29568, 11721, 29570, 29670, 11724, 26250, 11726, 29473, 11728, 29474, 29475, 11731, 29477, 11733, 26274, 11735, 29669, 29684, 11738, 27099, 11740, 11741, 29481, 29483, 29484, 11745, 11746, 29486, 29488, 29489, 11750, 11751, 11752, 11753, 11758, 11759, 28068, 28069, 28072, 11763, 11764, 28072, 28073, 28074, 11768, 28078, 11770, 11771, 11772, 28087, 11774, 11775, 28087, 28088, 29493, 29502, 11790, 29503, 11792, 29509, 11794, 11795, 28093, 29512, 29494, 11799, 11801, 29517, 11803, 11804, 28095, 11806, 29495, 11810, 29500, 29499, 29498, 28116, 29505, 29502, 11819, 29503, 11821, 29509, 11823, 11824, 28146, 29513, 29512, 11828, 11830, 29517, 11832, 11833, 28166, 11835, 29743, 11839, 29765, 29764, 29763, 28128, 29506, 29505, 11848, 11849, 29507, 11851, 29509, 11853, 11854, 28146, 29513, 29512, 11858, 11860, 29517, 11862, 11863, 28166, 29522, 29521, 29520, 29523, 11869, 29528, 29527, 29526, 29525, 28194, 11876, 29533, 29532, 29531, 29530, 28206, 29536, 29535, 29534, 29537, 11886, 29542, 29541, 29540, 28233, 11893, 11894, 29545, 11898, 11899, 11900, 11901, 11902, 11903, 11904, 11906, 11908, 11909, 29775, 11911, 29551, 28279, 11915, 11916, 29556, 28542, 11920, 11921, 29560, 28306, 11925, 11926, 29594, 11928, 27099, 11930, 29686, 11932, 29687, 11934, 26716, 29596, 11937, 11938, 29566, 29568, 11941, 29570, 11943, 29571, 29573, 11946, 29575, 29594, 11949, 27099, 11951, 29686, 11953, 29687, 11955, 26716, 29596, 11958, 11959, 29566, 29568, 11962, 29570, 11964, 29571, 29573, 11967, 29575, 28343, 28346, 28349, 28356, 28359, 28362, 11977, 11978, 11979, 26683, 11981, 26686, 28379, 11984, 29589, 28388, 11988, 11989, 11990, 29594, 11992, 27099, 11994, 29687, 11996, 29686, 11998, 26716, 29596, 12001, 12002, 29692, 29694, 12005, 29599, 12007, 29600, 12009, 12010, 12011, 28429, 28432, 29603, 12016, 28444, 29608, 12020, 12021, 29611, 12023, 12024, 12025, 12028, 12029, 12030, 12031, 12032, 12033, 12034, 12035, 28469, 12037, 28473, 12039, 28477, 12041, 28481, 12043, 12044, 12045, 12046, 29620, 12048, 29617, 29616, 12051, 12052, 12053, 12054, 12055, 12056, 12057, 12058, 28503, 28506, 12061, 12062, 12063, 29620, 29622, 28527, 12068, 12069, 29627, 28542, 12073, 12074, 29632, 28556, 29634, 12078, 12079, 29637, 28571, 29639, 12083, 12084, 29654, 12086, 29655, 29657, 12089, 29642, 12091, 12092, 29643, 12094, 29644, 28597, 29646, 12098, 12099, 12100, 29649, 28614, 29651, 12104, 12105, 12106, 29654, 12108, 29655, 29657, 12112, 12114, 12116, 29664, 27003, 12119, 29666, 12121, 29667, 12123, 27023, 12125, 29669, 12127, 29670, 12129, 27099, 12131, 12132, 28681, 29673, 28689, 12136, 12137, 28796, 29676, 28698, 12141, 12142, 28702, 29679, 28710, 12146, 12147, 28796, 29709, 29682, 12151, 29684, 12153, 27099, 12155, 27105, 12157, 29686, 12159, 29687, 12161, 27123, 29690, 27130, 12165, 12166, 29692, 29694, 29696, 12170, 29698, 12172, 29700, 12174, 29702, 12176, 29703, 12178, 28781, 12180, 12181, 28786, 29706, 12184, 12185, 28796, 29709, 12188, 12189, 28808, 28811, 29713, 12194, 28823, 29718, 29721, 12200, 27252, 27255, 12203, 12204, 12205, 12206, 12207, 12208, 29724, 27275, 28853, 12213, 28857, 12216, 12217, 28863, 12219, 29728, 12221, 12222, 12223, 12224, 12225, 12226, 12227, 27312, 12229, 12230, 28885, 29731, 12233, 12234, 12235, 12236, 12237, 12238, 12239, 12240, 12241, 12242, 12243, 28910, 12245, 12246, 12247, 12248, 12249, 28910, 12251, 12253, 12254, 28918, 12256, 28920, 28923, 28925, 29738, 12261, 12262, 12263, 12264, 12265, 12267, 29740, 29775, 29751, 29750, 12273, 29752, 12275, 29754, 12277, 12278, 29756, 28990, 29761, 29760, 29759, 29743, 12285, 29765, 29764, 29763, 28960, 12293, 12294, 12295, 12296, 12297, 12298, 28974, 29747, 12301, 12303, 12304, 12305, 29751, 29750, 12308, 29752, 12310, 29754, 12312, 12313, 29756, 28990, 12316, 29749, 29761, 29760, 29759, 12321, 29765, 29764, 29763, 29041, 29751, 29750, 12329, 29752, 12331, 29754, 12333, 12334, 29756, 29013, 12337, 29758, 29761, 29760, 29759, 12342, 29765, 29764, 29763, 29041, 12349, 12350, 12351, 12352, 12353, 29054, 29768, 12356, 12358, 12359, 12360, 12361, 12362, 12363, 29073, 29771, 12366, 12368, 29773, 12371, 12372, 12373, 12374, 12375, 12376, 29775, 12378, 12379, 12380, 29776, 29777, 29778, 27615, 29780, 12386, 12387, 29803, 12390, 29781, 12392, 29803, 29134, 29784, 29136, 12400, 12401, 12402, 29786, 29785, 29787, 12406, 12407, 12408, 29788, 29789, 12411, 12412, 29790, 12414, 12415, 12416, 29801, 12418, 29179, 12420, 12421, 29803, 29243, 29182, 29184, 29186, 29188, 12432, 29795, 12434, 12435, 12436, 12437, 12438, 12439, 12440, 29212, 12443, 29801, 12445, 12446, 12447, 29235, 12449, 29799, 29798, 29801, 12461, 12462, 12463, 29235, 12465, 29803, 29243, 27781, 27782, 27783, 29249, 27783, 12579, 29249, 12585, 29279, 29283, 29279, 12644, 29283, 12650, 29279, 12664, 29283, 12670, 29279, 12685, 12686, 29283, 12692, 13048, 13049, 13062, 13063, 13076, 13077, 29279, 13091, 29283, 13097, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 11541, 30506, 30508, 30511, 11551, 11553, 11555, 11560, 30524, 30526, 30529, 11570, 11572, 11574, 11579, 30492, 11583, 30545, 26127, 11590, 30551, 11594, 26133, 30498, 30492, 30558, 11605, 11606, 30565, 11612, 11615, 30492, 30575, 11623, 11624, 30582, 11630, 28910, 11635, 11636, 11645, 30602, 30499, 11654, 11656, 11657, 11658, 30614, 30499, 11667, 11671, 11672, 11673, 11674, 11675, 11690, 11692, 11695, 11696, 11697, 11698, 11700, 11702, 11703, 11705, 11706, 11709, 11710, 11712, 11714, 11715, 11717, 11719, 11720, 11722, 11723, 11725, 11727, 11729, 11730, 11732, 11734, 11736, 11737, 11739, 11742, 11743, 11744, 11747, 11748, 11749, 30691, 30694, 11760, 11761, 11762, 30699, 11765, 11766, 11767, 11769, 11773, 30710, 11784, 11785, 11788, 11789, 11791, 11793, 11796, 11797, 11798, 30467, 11802, 11805, 29955, 11809, 30464, 11812, 11813, 11814, 30465, 11816, 11817, 11818, 11820, 11822, 11825, 11826, 11827, 30467, 11831, 11834, 29967, 11838, 30491, 11841, 11842, 11843, 30466, 11845, 11846, 11847, 30764, 11850, 11852, 11855, 11856, 11857, 30467, 11861, 11864, 11865, 11866, 11867, 11868, 30468, 11871, 11872, 11873, 11874, 11875, 11877, 11878, 11879, 11880, 11881, 11882, 11883, 11884, 11885, 30469, 11888, 11889, 11890, 30470, 11892, 28910, 11896, 30472, 30810, 28257, 30498, 11910, 11912, 11913, 30474, 11917, 11918, 30475, 11922, 11923, 30476, 11927, 11929, 11931, 11933, 11935, 11936, 11939, 11940, 11942, 11944, 11945, 11947, 11948, 11950, 11952, 11954, 11956, 11957, 11960, 11961, 11963, 11965, 11966, 11968, 11969, 11970, 11971, 30477, 11973, 11974, 11975, 30478, 11980, 11982, 11983, 11985, 30479, 11987, 30890, 11991, 11993, 11995, 11997, 11999, 12000, 12003, 12004, 12006, 12008, 12012, 12013, 12014, 30480, 12017, 12018, 30481, 12022, 30924, 30928, 30931, 12036, 12038, 12040, 12042, 12047, 12049, 12050, 30950, 30953, 12059, 12060, 12064, 12065, 12066, 30482, 12070, 12071, 30483, 12075, 12076, 12077, 12080, 12081, 12082, 12085, 12087, 12088, 12090, 12093, 12095, 12096, 12097, 30995, 12101, 12102, 12103, 31001, 12107, 12109, 12110, 30484, 30485, 30486, 12117, 12118, 12120, 12122, 12124, 12126, 12128, 12130, 12133, 12134, 12135, 12138, 12139, 12140, 12143, 12144, 12145, 12148, 12149, 12150, 12152, 12154, 12156, 12158, 12160, 12162, 12163, 12164, 12167, 12168, 12169, 12171, 12173, 12175, 12177, 12179, 12182, 12183, 12186, 12187, 12190, 12191, 12192, 30487, 12195, 12196, 30488, 12198, 12201, 12202, 31093, 12209, 12211, 12212, 12214, 12218, 12220, 12228, 12231, 12232, 12244, 31134, 12250, 30498, 31140, 12255, 12257, 12258, 12259, 12260, 28937, 12268, 30490, 12270, 12271, 12272, 12274, 12276, 31162, 12279, 12280, 12281, 12282, 12283, 12284, 30491, 12287, 12288, 12289, 30494, 12291, 30492, 31175, 31177, 12299, 12300, 28982, 12306, 12307, 12309, 12311, 31193, 12314, 12315, 12317, 12318, 12319, 12320, 12322, 12323, 12324, 30494, 12326, 12327, 12328, 12330, 12332, 31213, 12335, 12336, 12338, 12339, 12340, 12341, 12343, 12344, 12345, 30494, 12347, 30495, 31227, 31229, 12354, 12355, 30496, 31235, 31237, 12364, 12365, 29081, 12369, 30498, 31248, 12377, 12381, 12382, 12383, 12384, 12385, 12388, 12391, 12393, 12397, 12398, 12399, 12403, 12404, 12405, 12409, 12410, 12413, 12417, 12419, 31291, 12422, 12423, 12428, 12429, 12430, 12431, 12433, 31306, 30499, 12442, 12444, 12448, 12450, 12451, 29224, 12460, 12464, 12466, 12467, 30501, 30519, 30537, 30547, 30586, 31245, 30569, 31245, 30586, 31245, 12536, 12537, 31311, 31319, 30599, 30597, 31311, 12555, 31319, 12560, 30599, 30597, 30611, 30609, 31311, 12578, 31319, 12584, 12627, 12630, 31303, 31303, 31300, 31311, 12643, 31319, 12649, 31303, 31303, 31300, 31311, 12663, 31319, 12669, 31303, 31303, 30706, 31311, 12684, 31345, 31319, 12691, 31245, 30807, 31252, 31245, 31252, 30821, 30825, 30829, 30879, 31113, 30911, 31111, 31109, 30919, 31109, 31103, 31109, 30941, 30958, 30964, 30968, 30973, 30978, 31076, 31080, 31111, 31109, 31096, 31094, 31109, 31103, 31109, 31113, 31111, 31109, 31179, 31252, 31250, 31179, 31245, 31252, 31250, 31245, 31252, 31250, 31245, 31252, 31250, 31245, 31252, 31148, 31150, 31148, 31150, 31148, 31150, 31150, 31148, 31245, 31252, 31245, 31252, 31303, 31270, 31281, 31276, 31285, 31270, 31303, 31276, 31281, 31285, 31303, 31270, 31276, 31281, 31285, 31303, 31303, 31300, 31311, 13090, 31319, 13096, 31352, 31348, 31348, 31352, 31348, 31350, 31352, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 11580, 11589, 11596, 11598, 11599, 11617, 11633, 11653, 11666, 31539, 31542, 31545, 30638, 30643, 30646, 31554, 31557, 31560, 30667, 31573, 31576, 31594, 31599, 11800, 29956, 11811, 11815, 31607, 31612, 31617, 11829, 29968, 11840, 11844, 31625, 31630, 31636, 11859, 31641, 11870, 31646, 31648, 31651, 31653, 31656, 11887, 11891, 31661, 11895, 11897, 11905, 11907, 11914, 11919, 11924, 30841, 31687, 31690, 30862, 31699, 31702, 11972, 11976, 11986, 30902, 31726, 30910, 12015, 12019, 31746, 30954, 12067, 12072, 31761, 31764, 30986, 30989, 31772, 31776, 12111, 12113, 12115, 31792, 31795, 31798, 31801, 31812, 31820, 31822, 12193, 12197, 12252, 31850, 12266, 12269, 31859, 31866, 12286, 12290, 31871, 12292, 12302, 31882, 31890, 12325, 31893, 31898, 31906, 12346, 31909, 12348, 12357, 12367, 12370, 31928, 31938, 31940, 31942, 12441, 31961, 12452, 12475, 30503, 31748, 31489, 31748, 31490, 31491, 31748, 31494, 31493, 31742, 31492, 12487, 30521, 31748, 31748, 31748, 31496, 31498, 31497, 31501, 31500, 31742, 31499, 12499, 30539, 31520, 31522, 30542, 31505, 12506, 30584, 31522, 30577, 31508, 12512, 30584, 12515, 31513, 31515, 30560, 31516, 12522, 30567, 12524, 31526, 31520, 31522, 30577, 31523, 12531, 30584, 12534, 31526, 12538, 31958, 31959, 12542, 31963, 31528, 31532, 12546, 12547, 31531, 12550, 31958, 31959, 12556, 31963, 31965, 31964, 31528, 31532, 12563, 12564, 31531, 31534, 31532, 12569, 12570, 31537, 12573, 31958, 31959, 12580, 31963, 31965, 31964, 31926, 31926, 31543, 31817, 31544, 31549, 31817, 30650, 30655, 30660, 31563, 31817, 31682, 31811, 31564, 31567, 31568, 31817, 31569, 31570, 31817, 31571, 31817, 31572, 31575, 31578, 31579, 31589, 31592, 31591, 31298, 31952, 31950, 12634, 12635, 12636, 31957, 12639, 31958, 31581, 12645, 31963, 31582, 31581, 31298, 31952, 31950, 12654, 12655, 12656, 31957, 12659, 31958, 31583, 12665, 31963, 31586, 31585, 31298, 31952, 31588, 31587, 12675, 12676, 12677, 31957, 12680, 31958, 31589, 12687, 31963, 31592, 31591, 31596, 31595, 30720, 31601, 30728, 31614, 31613, 30744, 31619, 30752, 12715, 31926, 31633, 31632, 30769, 31638, 30777, 31877, 31843, 31117, 12740, 31668, 12743, 31250, 31877, 31843, 31117, 12750, 31926, 12753, 31250, 12756, 12758, 12760, 31681, 31817, 31682, 31684, 31683, 30845, 30850, 31693, 31817, 31694, 31696, 31695, 30866, 30871, 31705, 31709, 12785, 30883, 30881, 12788, 31715, 31719, 31720, 31817, 31721, 31723, 31722, 30906, 12801, 31730, 30916, 12806, 12807, 12808, 12809, 31737, 12811, 12812, 31748, 31748, 31748, 31739, 31740, 31738, 31744, 31743, 31742, 31741, 12823, 30943, 31748, 31750, 12829, 30960, 12832, 12834, 12836, 12838, 31766, 31765, 30993, 30999, 31779, 31778, 31784, 31817, 31785, 31787, 31786, 31788, 31789, 31817, 31811, 31790, 31817, 31791, 31794, 31797, 31800, 31803, 31804, 31817, 31805, 31806, 31808, 31807, 31811, 31809, 31814, 31815, 31817, 31816, 31818, 31817, 31819, 12889, 12891, 31824, 31085, 31831, 31089, 12898, 12899, 31833, 12901, 12902, 12903, 31835, 31836, 31838, 12907, 31839, 12909, 31837, 31840, 12912, 12913, 12914, 31841, 31861, 31860, 31863, 31877, 31843, 31117, 31861, 31860, 31863, 31877, 31879, 12937, 31845, 12939, 12940, 31879, 12942, 12943, 31924, 12945, 12946, 12947, 31924, 12949, 12950, 31844, 12952, 31924, 31845, 12955, 12956, 31846, 12960, 31848, 12963, 31250, 12966, 12967, 12969, 12970, 12971, 12972, 31853, 31851, 12975, 12976, 31861, 31860, 31863, 31877, 31879, 31179, 31926, 31250, 31861, 31860, 31863, 31877, 31879, 31179, 13004, 31926, 13006, 31884, 31883, 31886, 31196, 31900, 31899, 31902, 31216, 31915, 31917, 31239, 31920, 31922, 31239, 13030, 31926, 13033, 31250, 13036, 13037, 13039, 13041, 31945, 13043, 31932, 31930, 31933, 31261, 13051, 13052, 13054, 13056, 31945, 13058, 31944, 31935, 31265, 13065, 13066, 13068, 13070, 31945, 13072, 31944, 31948, 31946, 31298, 31952, 31950, 13081, 13082, 13083, 31957, 13086, 31958, 31959, 13092, 31963, 31965, 31964, 31977, 31978, 31984, 31986, 31992, 31994, 31995, 31996, 32001, 32003, 32008, 32010, 32015, 32018, 13210, 13215, 13347, 13353, 32100, 32102, 13382, 13387, 13392, 32100, 32102, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 32282, 32289, 31642, 32297, 32299, 31657, 32302, 32308, 32309, 32310, 31718, 31747, 32327, 32328, 31867, 32354, 31891, 32360, 31907, 32364, 12476, 12477, 12478, 12479, 12480, 12481, 12482, 12483, 12484, 12485, 12486, 12488, 12489, 12490, 12491, 12492, 12493, 12494, 12495, 12496, 12497, 12498, 12500, 12501, 32256, 12503, 12504, 12505, 12507, 32257, 12509, 12510, 12511, 12513, 32258, 31526, 12517, 32260, 12519, 12520, 12521, 12523, 12525, 12526, 32261, 12528, 12529, 12530, 12532, 32262, 12535, 12539, 32375, 12541, 12543, 12544, 12545, 32439, 31529, 12549, 12551, 12552, 32266, 32265, 12557, 12558, 12559, 12561, 12562, 32451, 31529, 12566, 12567, 12568, 32456, 31535, 12572, 12574, 12575, 32266, 32265, 12581, 12582, 12583, 32304, 12587, 32304, 12589, 12590, 12591, 12592, 32267, 31547, 12595, 12596, 31550, 31552, 32271, 12600, 32272, 12602, 32273, 12604, 12605, 12606, 12607, 12608, 12609, 32274, 12611, 12612, 12613, 12614, 12615, 12616, 12617, 12618, 12619, 32275, 12621, 32276, 12623, 12624, 31590, 12626, 12628, 12629, 12631, 12632, 12633, 32499, 31955, 12638, 12640, 31580, 12642, 12646, 12647, 12648, 12651, 12652, 12653, 32513, 31955, 12658, 12660, 31584, 12662, 12666, 12667, 12668, 12671, 12672, 12673, 12674, 32528, 31955, 12679, 12681, 31590, 12683, 12688, 12689, 12690, 12693, 12694, 32277, 12696, 12697, 32279, 32278, 12700, 30732, 32280, 12704, 12705, 32284, 12707, 12708, 32286, 32285, 12711, 30756, 32287, 31924, 12717, 12718, 12719, 32291, 12721, 12722, 32293, 32292, 12725, 30783, 30789, 30799, 12735, 32356, 12737, 12738, 32304, 31666, 12742, 12744, 12745, 32356, 12747, 12748, 32306, 31924, 12752, 12754, 12761, 12762, 12763, 12764, 12765, 31685, 32312, 12768, 32313, 12770, 12771, 12772, 12773, 12774, 12775, 31697, 32315, 12778, 32316, 12780, 12781, 31707, 12783, 31711, 12786, 12787, 12789, 12791, 12792, 12793, 12794, 12795, 12796, 31724, 32321, 12799, 30908, 12802, 31732, 12804, 31735, 32604, 32606, 12810, 32609, 12813, 12814, 12815, 12816, 12817, 12818, 12819, 12820, 12821, 12822, 12824, 32326, 12826, 12828, 12830, 31759, 31762, 12839, 12840, 30987, 30984, 31770, 12844, 31774, 12846, 12847, 12848, 32337, 32336, 32335, 12852, 12853, 12854, 12855, 12856, 12857, 12858, 12859, 12860, 12861, 12862, 12863, 32338, 12865, 32339, 12867, 32340, 12869, 32341, 12871, 12872, 12873, 12874, 12875, 12876, 12877, 12878, 12879, 32342, 12881, 12882, 12883, 12884, 12885, 12886, 12887, 32343, 32344, 12892, 31826, 12894, 31829, 12896, 12897, 12900, 32677, 12904, 12905, 12906, 12908, 12910, 12911, 32688, 12915, 12916, 12917, 32351, 12919, 31151, 12923, 32356, 12925, 12926, 12927, 12928, 32351, 12930, 31151, 12934, 32356, 12936, 12938, 32705, 12941, 12944, 32711, 12948, 32715, 12951, 12953, 12954, 32721, 31151, 12959, 31924, 12962, 12964, 31849, 32728, 32373, 32730, 32732, 12973, 12974, 32736, 12977, 12978, 32351, 12980, 31151, 12984, 32356, 12986, 12987, 32349, 31855, 12990, 12991, 12992, 12993, 32351, 12995, 31169, 12999, 32356, 13001, 13002, 32357, 13005, 13007, 13008, 32358, 13010, 13012, 13014, 13015, 32362, 13017, 13019, 13021, 32366, 13023, 13024, 13025, 32367, 13027, 13028, 32368, 31924, 13032, 13034, 31936, 32773, 32370, 32372, 13042, 13044, 13045, 13046, 13047, 31936, 32783, 32372, 32373, 13057, 13059, 13060, 13061, 31936, 32792, 32372, 32373, 13071, 13073, 13074, 13075, 13078, 13079, 13080, 32804, 31955, 13085, 13087, 32375, 13089, 13093, 13094, 13095, 13116, 13117, 13123, 13125, 13131, 13133, 13176, 13178, 13182, 13184, 13188, 13190, 13194, 13196, 13357, 13359, 13396, 13398, 248, 249, 250, 251, 252, 253, 254, 255, 33024, 33025, 33030, 33039, 33041, 33043, 33046, 33048, 33050, 33052, 33054, 33057, 33059, 33061, 33063, 33065, 12502, 33070, 33072, 12508, 33075, 33077, 12514, 12516, 12518, 33083, 33085, 33086, 12527, 33090, 33092, 12533, 33094, 33095, 12540, 33098, 33100, 12548, 33104, 12553, 12554, 33108, 33110, 33112, 12565, 33117, 12571, 33121, 12576, 12577, 33125, 33127, 12586, 12588, 33133, 12593, 12594, 33138, 12597, 12598, 12599, 12601, 12603, 33148, 33151, 12610, 33155, 33158, 33160, 12620, 12622, 12625, 33170, 33172, 32500, 12637, 33177, 12641, 33180, 33182, 33184, 32514, 12657, 33189, 12661, 33192, 33194, 33196, 33198, 32529, 12678, 33202, 12682, 33205, 33207, 12695, 33209, 12698, 12699, 12701, 12702, 12706, 33219, 12709, 12710, 12712, 12713, 12716, 12720, 33231, 12723, 12724, 12726, 33026, 33027, 12729, 33029, 33028, 12732, 33029, 12736, 33244, 12739, 12741, 33248, 12746, 33252, 12749, 12751, 33256, 31672, 31675, 31678, 33258, 33261, 12766, 12767, 12769, 33268, 33271, 12776, 12777, 12779, 12782, 12784, 33282, 31716, 33286, 33289, 12797, 12798, 12800, 12803, 12805, 33303, 33305, 33307, 33309, 33311, 12825, 33035, 31753, 31756, 12835, 12837, 33320, 12841, 12842, 12843, 12845, 33328, 12849, 12850, 12851, 33333, 33336, 33339, 33342, 12864, 12866, 12868, 12870, 33353, 33357, 33359, 12880, 33363, 33366, 12888, 12890, 12893, 12895, 32673, 32678, 32682, 32684, 32689, 12918, 33387, 33038, 12921, 12924, 33394, 12929, 33396, 33038, 12932, 12935, 32702, 32707, 33406, 33408, 33411, 33038, 12958, 12961, 33418, 12965, 12968, 33425, 12979, 33428, 33038, 12982, 12985, 33435, 12988, 12989, 12994, 33441, 12996, 33038, 13000, 33448, 13003, 13009, 33452, 33040, 13016, 33457, 33042, 13022, 33464, 13026, 33468, 13029, 13031, 33472, 13035, 13038, 13040, 32777, 33479, 33481, 13050, 13053, 13055, 32787, 33489, 13064, 13067, 13069, 32796, 33497, 33499, 32805, 13084, 33504, 13088, 33507, 33509, 32377, 32389, 32401, 32620, 32624, 33283, 32588, 32591, 32591, 32620, 32624, 33298, 33298, 33301, 33299, 33298, 32620, 32624, 33403, 33412, 33412, 33412, 33438, 33450, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 33543, 33546, 33548, 33551, 33552, 33559, 33560, 33564, 33097, 33575, 33584, 33168, 33173, 33179, 33185, 33191, 33624, 33204, 33631, 33633, 33636, 33536, 33637, 33639, 33642, 33537, 33643, 33644, 33646, 12727, 12728, 12730, 12731, 12733, 33538, 33656, 33659, 33661, 33664, 12755, 12757, 12759, 12790, 33691, 33694, 12827, 33314, 12831, 12833, 33703, 33708, 32674, 33731, 33733, 12920, 33539, 33737, 33739, 12931, 33539, 33743, 12957, 33751, 33756, 12981, 33539, 33760, 33764, 12997, 33539, 33768, 33771, 13011, 33540, 33774, 13018, 33541, 33777, 33779, 33782, 33788, 33487, 33495, 33500, 33506, 13098, 13100, 13102, 33071, 33076, 33567, 33084, 33567, 33091, 33571, 33572, 33573, 33577, 33579, 33580, 33581, 33582, 33586, 33129, 33131, 33723, 33590, 33725, 33591, 33723, 33683, 33712, 33593, 33598, 33597, 33596, 33670, 33723, 33599, 33601, 33723, 33604, 33603, 33602, 33606, 33605, 33166, 33614, 33611, 33614, 33618, 33621, 33626, 33629, 33229, 33795, 33797, 33796, 33784, 33786, 33785, 33247, 33255, 13228, 13230, 33700, 33699, 33705, 33704, 33670, 33723, 33669, 33673, 33672, 33675, 33723, 33674, 33678, 33677, 33723, 33722, 33725, 33724, 33296, 33279, 33277, 13257, 13258, 13259, 13260, 33681, 13263, 13265, 33700, 33699, 33705, 33704, 33684, 33723, 33683, 33686, 33725, 33724, 33296, 33294, 13281, 13282, 13283, 13284, 13285, 13287, 13289, 33700, 33699, 33705, 33704, 33723, 33710, 33711, 33712, 33713, 33717, 33716, 33715, 33714, 33719, 33723, 33718, 33721, 33723, 33722, 33725, 33724, 33372, 33370, 33729, 33732, 33732, 33732, 33471, 13331, 33410, 13334, 33410, 13336, 33410, 13338, 33410, 33417, 33753, 33754, 33786, 33790, 33795, 33797, 33796, 33755, 33802, 33805, 13363, 33762, 13368, 33770, 33471, 33784, 33786, 33785, 33790, 33792, 33791, 33795, 33797, 33796, 33802, 33805, 255, 33544, 33549, 33576, 33585, 33634, 12703, 33640, 12714, 33647, 34077, 34079, 34081, 12734, 33692, 34093, 33709, 33382, 33736, 12922, 33742, 12933, 33750, 33759, 12983, 34116, 12998, 33455, 13013, 33460, 13020, 34052, 33555, 13105, 34055, 33558, 13108, 34054, 13110, 13111, 34055, 13113, 13114, 33574, 33569, 13119, 13120, 13121, 13124, 13126, 13127, 13128, 13129, 13132, 34066, 34070, 34083, 13141, 33588, 13143, 33589, 13145, 13146, 13147, 13148, 13149, 13150, 13151, 13152, 13153, 13154, 13155, 13156, 13157, 13158, 13159, 13160, 13161, 13162, 13163, 13164, 13165, 34066, 34070, 34083, 33658, 13174, 33612, 13177, 34060, 13180, 33612, 13183, 34062, 13186, 33619, 13189, 34064, 13192, 33627, 13195, 34066, 34070, 34083, 13204, 33658, 13206, 13207, 13208, 34130, 13211, 13212, 13213, 34128, 34075, 34083, 13222, 33658, 34085, 13225, 33663, 34087, 34088, 13233, 13234, 34089, 33701, 13237, 13238, 13240, 13241, 13242, 13243, 13244, 13245, 13246, 13247, 13248, 13249, 13250, 13251, 13252, 13253, 13254, 13255, 13256, 13261, 34215, 34217, 34090, 13267, 13268, 33701, 13270, 13271, 13273, 13274, 13275, 13276, 13277, 13278, 13279, 13280, 34234, 34236, 13290, 13291, 34096, 34095, 33701, 13295, 13296, 13298, 13299, 13300, 13301, 13302, 13303, 13304, 13305, 13306, 13307, 13308, 13309, 13310, 13311, 13312, 13313, 13314, 13315, 13316, 13318, 13319, 13320, 34099, 13322, 34101, 34104, 13326, 33781, 34105, 34108, 13332, 34118, 13335, 13337, 13339, 13341, 33415, 13343, 13344, 13345, 34128, 13348, 13349, 13350, 13351, 34130, 13354, 13355, 33803, 13358, 34111, 34114, 13364, 34115, 34118, 13369, 34119, 34122, 34126, 34125, 13376, 33781, 13378, 13379, 13380, 34128, 13383, 13384, 13385, 34129, 13388, 13389, 13390, 34130, 34131, 13394, 33803, 13397, 249, 250, 251, 252, 253, 254, 255, 34304, 34305, 13103, 13104, 13106, 13107, 13109, 34342, 13112, 34345, 13115, 13118, 33574, 33583, 34308, 13135, 34068, 34310, 13138, 34072, 13140, 13142, 13144, 34365, 34367, 34369, 34371, 34373, 34376, 34380, 34382, 34384, 34308, 13167, 34068, 34310, 13170, 34072, 13172, 13173, 13175, 13179, 13181, 13185, 13187, 13191, 13193, 34308, 13198, 34068, 34310, 13201, 34072, 13203, 13205, 34411, 13209, 34415, 13214, 34312, 13217, 34315, 34314, 34313, 13221, 13223, 13224, 13226, 34317, 34318, 13231, 13232, 13235, 34427, 13236, 34431, 33706, 34433, 34436, 34438, 34441, 34443, 34445, 34447, 34451, 34317, 34318, 13266, 13269, 34457, 33706, 34459, 34463, 34465, 34467, 34317, 34318, 13292, 13293, 34469, 13294, 34474, 33706, 34476, 34478, 34481, 34483, 34485, 34489, 34491, 34493, 34320, 13321, 34496, 13323, 34321, 13325, 13327, 13328, 34323, 13330, 34505, 13333, 34507, 34508, 34509, 34325, 13342, 34514, 13346, 34519, 13352, 13356, 13360, 34326, 13362, 34527, 13365, 34328, 13367, 34530, 13370, 34330, 13372, 34332, 13374, 13375, 13377, 34539, 13381, 34543, 13386, 34547, 13391, 13393, 13395, 34351, 34348, 34354, 34349, 34351, 34354, 34352, 34356, 34552, 34391, 34395, 34399, 34403, 34521, 34524, 34521, 34524, 34552, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 13099, 13101, 34336, 34339, 13122, 13130, 13134, 13136, 13137, 13139, 34581, 34582, 34586, 34374, 34377, 34590, 13166, 13168, 13169, 13171, 34389, 13197, 13199, 13200, 13202, 34614, 13216, 13218, 13219, 13220, 34625, 34627, 13227, 13229, 34631, 13239, 34434, 34439, 34448, 34449, 13262, 13264, 34453, 13272, 34460, 34237, 13286, 13288, 34658, 13297, 34664, 34666, 34486, 13317, 34498, 13324, 34677, 13329, 13340, 34687, 13361, 13366, 13371, 13373, 34706, 34707, 34641, 34668, 34568, 34566, 34512, 34689, 13423, 34570, 13425, 34571, 34517, 34691, 13429, 13430, 13431, 13433, 13434, 13435, 34537, 34709, 34545, 34713, 34714, 13446, 34715, 34583, 34668, 13467, 34600, 34601, 13470, 34602, 34603, 13473, 34604, 34605, 13476, 34606, 34409, 34616, 34413, 34618, 34512, 34689, 34517, 34691, 13492, 13493, 34692, 34641, 34668, 34668, 34680, 34682, 34699, 34699, 34512, 34689, 34516, 34517, 34691, 13532, 13533, 34692, 34695, 34699, 34537, 34709, 34541, 34711, 34545, 34713, 34714, 13549, 34715, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 34575, 34578, 34593, 34596, 34608, 34611, 34620, 34844, 34633, 34454, 34864, 34479, 34494, 34849, 34848, 34635, 34828, 13404, 34854, 34863, 34817, 34816, 34661, 13411, 34831, 34830, 13417, 13418, 34564, 34562, 13421, 13422, 13424, 13426, 13427, 13428, 34895, 34820, 34898, 34821, 34580, 34626, 13441, 13442, 13443, 13444, 13445, 13447, 34849, 34848, 34635, 34828, 13453, 34854, 34863, 34862, 34661, 13459, 34831, 34830, 34598, 13468, 13469, 13471, 13472, 13474, 13475, 13477, 34613, 13481, 13482, 13483, 13484, 34624, 34626, 13488, 13489, 13490, 13491, 13494, 34849, 34848, 34635, 13499, 34853, 34852, 34854, 34857, 34856, 34649, 13507, 34860, 34653, 34863, 34862, 34661, 13514, 34868, 34674, 34676, 34678, 13521, 13522, 13523, 13524, 34697, 34699, 13527, 13528, 13529, 13530, 13531, 13534, 34693, 13536, 34697, 13538, 34703, 34701, 34880, 13542, 13543, 13544, 13545, 13546, 13547, 13548, 13550, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 34845, 34632, 34673, 13399, 13400, 13401, 13403, 13405, 13406, 13407, 13408, 13409, 35082, 35083, 13413, 13414, 13419, 13420, 35099, 35104, 35105, 13432, 13436, 35073, 35072, 13439, 13440, 35119, 13448, 13449, 13450, 13452, 13454, 13455, 13456, 13457, 35082, 35083, 13461, 13462, 35075, 35074, 13466, 35133, 35135, 35137, 35139, 35077, 35076, 13480, 13486, 13487, 35151, 13495, 13496, 13497, 13500, 13501, 13502, 13503, 13504, 13505, 35081, 13508, 13509, 13510, 13511, 13512, 35082, 13515, 35083, 13518, 13519, 13520, 13525, 13526, 35184, 13535, 13537, 13539, 13540, 13541, 35199, 35181, 35102, 35106, 35116, 35194, 35114, 35194, 35143, 35141, 35149, 35181, 35147, 35182, 35181, 35179, 35196, 35194, 35192, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 34870, 35332, 35329, 35089, 35337, 13410, 13412, 35343, 35078, 35345, 35349, 35350, 13437, 13438, 35357, 35329, 35124, 35362, 13458, 13460, 35367, 13464, 13465, 13478, 13479, 35078, 35382, 35329, 35384, 35388, 13506, 35391, 35394, 13513, 13516, 35397, 35408, 35406, 13558, 13559, 35108, 35108, 13563, 35406, 35118, 13567, 13568, 13569, 35406, 35138, 35136, 35134, 35134, 35406, 13582, 13583, 13584, 35406, 34928, 13588, 13589, 13590, 35402, 35401, 35399, 35402, 35402, 35402, 34943, 13604, 13605, 13606, 35406, 35405, 35198, 13611, 13612, 13613, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 13402, 35338, 35589, 35590, 34670, 13416, 35593, 35597, 13451, 35602, 35603, 34670, 35606, 35608, 13485, 13498, 35385, 35614, 35617, 35618, 34670, 35587, 13555, 35108, 13560, 13561, 35110, 13564, 13566, 35631, 35600, 13574, 13576, 13577, 13578, 13579, 13580, 35639, 13585, 13587, 35645, 35615, 13597, 13598, 13599, 13600, 13601, 13602, 13603, 35655, 35620, 13608, 13609, 13610, 35661, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 35840, 35591, 13415, 35848, 35604, 13463, 35855, 13517, 13552, 35841, 35845, 13557, 13562, 35864, 35847, 35629, 13571, 35601, 35852, 35873, 35875, 35853, 35640, 35854, 35643, 35856, 35613, 13594, 35616, 35883, 35885, 35887, 35653, 13607, 35659, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 35585, 13553, 36097, 13556, 35622, 36108, 13565, 35869, 35598, 13572, 36100, 13575, 36116, 13581, 13586, 35880, 35610, 13592, 13593, 13595, 35859, 36126, 35889, 35891, 35894, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 13551, 13554, 36355, 36109, 35626, 36358, 13570, 13573, 36363, 36365, 36366, 13591, 13596, 36127, 35892, 36370, 36370, 36370, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 36612, 36353, 13615, 36608, 36613, 36361, 13620, 36614, 36618, 36617, 36616, 36371, 13626, 36619, 36622, 36621, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 13614, 13616, 13617, 36610, 13619, 13621, 13622, 13623, 13624, 13625, 13627, 13628, 13629, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 36866, 13618, 36870, 37127, 36876, 37132, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 37121, 37377, 37125, 37128, 37130, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 37636, 37634, 37632, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 13630, 13631, 13632, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 38145, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 38146, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255}; bool h_Op[]= { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; #define THREADS_PER_BLOCK 256 #define BLOCKS_PER_GRID 1 #define SIZE_OF_IN 13824 #define SIZE_OF_AC 25088 __device__ void ac(float *A, const int *B, const int *C, const bool *Op, int n_iter) { int i= blockDim.x * blockIdx.x + threadIdx.x; __shared__ float R[152*THREADS_PER_BLOCK]; const int t= THREADS_PER_BLOCK; __shared__ float final; final=0; R[i + 0*t] = A[i + 0*t]; R[i + 1*t] = A[i + 1*t]; R[i + 2*t] = A[i + 2*t]; R[i + 3*t] = A[i + 3*t]; R[i + 4*t] = A[i + 4*t]; R[i + 5*t] = A[i + 5*t]; R[i + 6*t] = A[i + 6*t]; R[i + 7*t] = A[i + 7*t]; R[i + 8*t] = A[i + 8*t]; R[i + 9*t] = A[i + 9*t]; R[i + 10*t] = A[i + 10*t]; R[i + 11*t] = A[i + 11*t]; R[i + 12*t] = A[i + 12*t]; R[i + 13*t] = A[i + 13*t]; R[i + 14*t] = A[i + 14*t]; R[i + 15*t] = A[i + 15*t]; R[i + 16*t] = A[i + 16*t]; R[i + 17*t] = A[i + 17*t]; R[i + 18*t] = A[i + 18*t]; R[i + 19*t] = A[i + 19*t]; R[i + 20*t] = A[i + 20*t]; R[i + 21*t] = A[i + 21*t]; R[i + 22*t] = A[i + 22*t]; R[i + 23*t] = A[i + 23*t]; R[i + 24*t] = A[i + 24*t]; R[i + 25*t] = A[i + 25*t]; R[i + 26*t] = A[i + 26*t]; R[i + 27*t] = A[i + 27*t]; R[i + 28*t] = A[i + 28*t]; R[i + 29*t] = A[i + 29*t]; R[i + 30*t] = A[i + 30*t]; R[i + 31*t] = A[i + 31*t]; R[i + 32*t] = A[i + 32*t]; R[i + 33*t] = A[i + 33*t]; R[i + 34*t] = A[i + 34*t]; R[i + 35*t] = A[i + 35*t]; R[i + 36*t] = A[i + 36*t]; R[i + 37*t] = A[i + 37*t]; R[i + 38*t] = A[i + 38*t]; R[i + 39*t] = A[i + 39*t]; R[i + 40*t] = A[i + 40*t]; R[i + 41*t] = A[i + 41*t]; R[i + 42*t] = A[i + 42*t]; R[i + 43*t] = A[i + 43*t]; R[i + 44*t] = A[i + 44*t]; R[i + 45*t] = A[i + 45*t]; R[i + 46*t] = A[i + 46*t]; R[i + 47*t] = A[i + 47*t]; R[i + 48*t] = A[i + 48*t]; R[i + 49*t] = A[i + 49*t]; R[i + 50*t] = A[i + 50*t]; R[i + 51*t] = A[i + 51*t]; R[i + 52*t] = A[i + 52*t]; R[i + 53*t] = A[i + 53*t]; __syncthreads(); for (int iter=0; iter< n_iter; iter++) { R[i + 54*t] = Op[i + 0*t] ? R[B[i + 0*t]] * R[C[i + 0*t]] : R[B[i + 0*t]] + R[C[i + 0*t]]; R[i + 55*t] = Op[i + 1*t] ? R[B[i + 1*t]] * R[C[i + 1*t]] : R[B[i + 1*t]] + R[C[i + 1*t]]; R[i + 56*t] = Op[i + 2*t] ? R[B[i + 2*t]] * R[C[i + 2*t]] : R[B[i + 2*t]] + R[C[i + 2*t]]; R[i + 57*t] = Op[i + 3*t] ? R[B[i + 3*t]] * R[C[i + 3*t]] : R[B[i + 3*t]] + R[C[i + 3*t]]; R[i + 58*t] = Op[i + 4*t] ? R[B[i + 4*t]] * R[C[i + 4*t]] : R[B[i + 4*t]] + R[C[i + 4*t]]; R[i + 59*t] = Op[i + 5*t] ? R[B[i + 5*t]] * R[C[i + 5*t]] : R[B[i + 5*t]] + R[C[i + 5*t]]; R[i + 60*t] = Op[i + 6*t] ? R[B[i + 6*t]] * R[C[i + 6*t]] : R[B[i + 6*t]] + R[C[i + 6*t]]; R[i + 61*t] = Op[i + 7*t] ? R[B[i + 7*t]] * R[C[i + 7*t]] : R[B[i + 7*t]] + R[C[i + 7*t]]; R[i + 62*t] = Op[i + 8*t] ? R[B[i + 8*t]] * R[C[i + 8*t]] : R[B[i + 8*t]] + R[C[i + 8*t]]; R[i + 63*t] = Op[i + 9*t] ? R[B[i + 9*t]] * R[C[i + 9*t]] : R[B[i + 9*t]] + R[C[i + 9*t]]; R[i + 64*t] = Op[i + 10*t] ? R[B[i + 10*t]] * R[C[i + 10*t]] : R[B[i + 10*t]] + R[C[i + 10*t]]; R[i + 65*t] = Op[i + 11*t] ? R[B[i + 11*t]] * R[C[i + 11*t]] : R[B[i + 11*t]] + R[C[i + 11*t]]; R[i + 66*t] = Op[i + 12*t] ? R[B[i + 12*t]] * R[C[i + 12*t]] : R[B[i + 12*t]] + R[C[i + 12*t]]; R[i + 67*t] = Op[i + 13*t] ? R[B[i + 13*t]] * R[C[i + 13*t]] : R[B[i + 13*t]] + R[C[i + 13*t]]; R[i + 68*t] = Op[i + 14*t] ? R[B[i + 14*t]] * R[C[i + 14*t]] : R[B[i + 14*t]] + R[C[i + 14*t]]; __syncthreads(); R[i + 69*t] = Op[i + 15*t] ? R[B[i + 15*t]] * R[C[i + 15*t]] : R[B[i + 15*t]] + R[C[i + 15*t]]; R[i + 70*t] = Op[i + 16*t] ? R[B[i + 16*t]] * R[C[i + 16*t]] : R[B[i + 16*t]] + R[C[i + 16*t]]; R[i + 71*t] = Op[i + 17*t] ? R[B[i + 17*t]] * R[C[i + 17*t]] : R[B[i + 17*t]] + R[C[i + 17*t]]; R[i + 72*t] = Op[i + 18*t] ? R[B[i + 18*t]] * R[C[i + 18*t]] : R[B[i + 18*t]] + R[C[i + 18*t]]; R[i + 73*t] = Op[i + 19*t] ? R[B[i + 19*t]] * R[C[i + 19*t]] : R[B[i + 19*t]] + R[C[i + 19*t]]; R[i + 74*t] = Op[i + 20*t] ? R[B[i + 20*t]] * R[C[i + 20*t]] : R[B[i + 20*t]] + R[C[i + 20*t]]; R[i + 75*t] = Op[i + 21*t] ? R[B[i + 21*t]] * R[C[i + 21*t]] : R[B[i + 21*t]] + R[C[i + 21*t]]; R[i + 76*t] = Op[i + 22*t] ? R[B[i + 22*t]] * R[C[i + 22*t]] : R[B[i + 22*t]] + R[C[i + 22*t]]; R[i + 77*t] = Op[i + 23*t] ? R[B[i + 23*t]] * R[C[i + 23*t]] : R[B[i + 23*t]] + R[C[i + 23*t]]; __syncthreads(); R[i + 78*t] = Op[i + 24*t] ? R[B[i + 24*t]] * R[C[i + 24*t]] : R[B[i + 24*t]] + R[C[i + 24*t]]; R[i + 79*t] = Op[i + 25*t] ? R[B[i + 25*t]] * R[C[i + 25*t]] : R[B[i + 25*t]] + R[C[i + 25*t]]; R[i + 80*t] = Op[i + 26*t] ? R[B[i + 26*t]] * R[C[i + 26*t]] : R[B[i + 26*t]] + R[C[i + 26*t]]; R[i + 81*t] = Op[i + 27*t] ? R[B[i + 27*t]] * R[C[i + 27*t]] : R[B[i + 27*t]] + R[C[i + 27*t]]; R[i + 82*t] = Op[i + 28*t] ? R[B[i + 28*t]] * R[C[i + 28*t]] : R[B[i + 28*t]] + R[C[i + 28*t]]; R[i + 83*t] = Op[i + 29*t] ? R[B[i + 29*t]] * R[C[i + 29*t]] : R[B[i + 29*t]] + R[C[i + 29*t]]; R[i + 84*t] = Op[i + 30*t] ? R[B[i + 30*t]] * R[C[i + 30*t]] : R[B[i + 30*t]] + R[C[i + 30*t]]; R[i + 85*t] = Op[i + 31*t] ? R[B[i + 31*t]] * R[C[i + 31*t]] : R[B[i + 31*t]] + R[C[i + 31*t]]; R[i + 86*t] = Op[i + 32*t] ? R[B[i + 32*t]] * R[C[i + 32*t]] : R[B[i + 32*t]] + R[C[i + 32*t]]; R[i + 87*t] = Op[i + 33*t] ? R[B[i + 33*t]] * R[C[i + 33*t]] : R[B[i + 33*t]] + R[C[i + 33*t]]; __syncthreads(); R[i + 88*t] = Op[i + 34*t] ? R[B[i + 34*t]] * R[C[i + 34*t]] : R[B[i + 34*t]] + R[C[i + 34*t]]; R[i + 89*t] = Op[i + 35*t] ? R[B[i + 35*t]] * R[C[i + 35*t]] : R[B[i + 35*t]] + R[C[i + 35*t]]; R[i + 90*t] = Op[i + 36*t] ? R[B[i + 36*t]] * R[C[i + 36*t]] : R[B[i + 36*t]] + R[C[i + 36*t]]; R[i + 91*t] = Op[i + 37*t] ? R[B[i + 37*t]] * R[C[i + 37*t]] : R[B[i + 37*t]] + R[C[i + 37*t]]; R[i + 92*t] = Op[i + 38*t] ? R[B[i + 38*t]] * R[C[i + 38*t]] : R[B[i + 38*t]] + R[C[i + 38*t]]; R[i + 93*t] = Op[i + 39*t] ? R[B[i + 39*t]] * R[C[i + 39*t]] : R[B[i + 39*t]] + R[C[i + 39*t]]; R[i + 94*t] = Op[i + 40*t] ? R[B[i + 40*t]] * R[C[i + 40*t]] : R[B[i + 40*t]] + R[C[i + 40*t]]; R[i + 95*t] = Op[i + 41*t] ? R[B[i + 41*t]] * R[C[i + 41*t]] : R[B[i + 41*t]] + R[C[i + 41*t]]; R[i + 96*t] = Op[i + 42*t] ? R[B[i + 42*t]] * R[C[i + 42*t]] : R[B[i + 42*t]] + R[C[i + 42*t]]; __syncthreads(); R[i + 97*t] = Op[i + 43*t] ? R[B[i + 43*t]] * R[C[i + 43*t]] : R[B[i + 43*t]] + R[C[i + 43*t]]; R[i + 98*t] = Op[i + 44*t] ? R[B[i + 44*t]] * R[C[i + 44*t]] : R[B[i + 44*t]] + R[C[i + 44*t]]; R[i + 99*t] = Op[i + 45*t] ? R[B[i + 45*t]] * R[C[i + 45*t]] : R[B[i + 45*t]] + R[C[i + 45*t]]; R[i + 100*t] = Op[i + 46*t] ? R[B[i + 46*t]] * R[C[i + 46*t]] : R[B[i + 46*t]] + R[C[i + 46*t]]; R[i + 101*t] = Op[i + 47*t] ? R[B[i + 47*t]] * R[C[i + 47*t]] : R[B[i + 47*t]] + R[C[i + 47*t]]; __syncthreads(); R[i + 102*t] = Op[i + 48*t] ? R[B[i + 48*t]] * R[C[i + 48*t]] : R[B[i + 48*t]] + R[C[i + 48*t]]; R[i + 103*t] = Op[i + 49*t] ? R[B[i + 49*t]] * R[C[i + 49*t]] : R[B[i + 49*t]] + R[C[i + 49*t]]; R[i + 104*t] = Op[i + 50*t] ? R[B[i + 50*t]] * R[C[i + 50*t]] : R[B[i + 50*t]] + R[C[i + 50*t]]; R[i + 105*t] = Op[i + 51*t] ? R[B[i + 51*t]] * R[C[i + 51*t]] : R[B[i + 51*t]] + R[C[i + 51*t]]; R[i + 106*t] = Op[i + 52*t] ? R[B[i + 52*t]] * R[C[i + 52*t]] : R[B[i + 52*t]] + R[C[i + 52*t]]; R[i + 107*t] = Op[i + 53*t] ? R[B[i + 53*t]] * R[C[i + 53*t]] : R[B[i + 53*t]] + R[C[i + 53*t]]; R[i + 108*t] = Op[i + 54*t] ? R[B[i + 54*t]] * R[C[i + 54*t]] : R[B[i + 54*t]] + R[C[i + 54*t]]; __syncthreads(); R[i + 109*t] = Op[i + 55*t] ? R[B[i + 55*t]] * R[C[i + 55*t]] : R[B[i + 55*t]] + R[C[i + 55*t]]; R[i + 110*t] = Op[i + 56*t] ? R[B[i + 56*t]] * R[C[i + 56*t]] : R[B[i + 56*t]] + R[C[i + 56*t]]; R[i + 111*t] = Op[i + 57*t] ? R[B[i + 57*t]] * R[C[i + 57*t]] : R[B[i + 57*t]] + R[C[i + 57*t]]; R[i + 112*t] = Op[i + 58*t] ? R[B[i + 58*t]] * R[C[i + 58*t]] : R[B[i + 58*t]] + R[C[i + 58*t]]; R[i + 113*t] = Op[i + 59*t] ? R[B[i + 59*t]] * R[C[i + 59*t]] : R[B[i + 59*t]] + R[C[i + 59*t]]; R[i + 114*t] = Op[i + 60*t] ? R[B[i + 60*t]] * R[C[i + 60*t]] : R[B[i + 60*t]] + R[C[i + 60*t]]; __syncthreads(); R[i + 115*t] = Op[i + 61*t] ? R[B[i + 61*t]] * R[C[i + 61*t]] : R[B[i + 61*t]] + R[C[i + 61*t]]; R[i + 116*t] = Op[i + 62*t] ? R[B[i + 62*t]] * R[C[i + 62*t]] : R[B[i + 62*t]] + R[C[i + 62*t]]; R[i + 117*t] = Op[i + 63*t] ? R[B[i + 63*t]] * R[C[i + 63*t]] : R[B[i + 63*t]] + R[C[i + 63*t]]; R[i + 118*t] = Op[i + 64*t] ? R[B[i + 64*t]] * R[C[i + 64*t]] : R[B[i + 64*t]] + R[C[i + 64*t]]; __syncthreads(); R[i + 119*t] = Op[i + 65*t] ? R[B[i + 65*t]] * R[C[i + 65*t]] : R[B[i + 65*t]] + R[C[i + 65*t]]; R[i + 120*t] = Op[i + 66*t] ? R[B[i + 66*t]] * R[C[i + 66*t]] : R[B[i + 66*t]] + R[C[i + 66*t]]; R[i + 121*t] = Op[i + 67*t] ? R[B[i + 67*t]] * R[C[i + 67*t]] : R[B[i + 67*t]] + R[C[i + 67*t]]; R[i + 122*t] = Op[i + 68*t] ? R[B[i + 68*t]] * R[C[i + 68*t]] : R[B[i + 68*t]] + R[C[i + 68*t]]; __syncthreads(); R[i + 123*t] = Op[i + 69*t] ? R[B[i + 69*t]] * R[C[i + 69*t]] : R[B[i + 69*t]] + R[C[i + 69*t]]; R[i + 124*t] = Op[i + 70*t] ? R[B[i + 70*t]] * R[C[i + 70*t]] : R[B[i + 70*t]] + R[C[i + 70*t]]; R[i + 125*t] = Op[i + 71*t] ? R[B[i + 71*t]] * R[C[i + 71*t]] : R[B[i + 71*t]] + R[C[i + 71*t]]; __syncthreads(); R[i + 126*t] = Op[i + 72*t] ? R[B[i + 72*t]] * R[C[i + 72*t]] : R[B[i + 72*t]] + R[C[i + 72*t]]; R[i + 127*t] = Op[i + 73*t] ? R[B[i + 73*t]] * R[C[i + 73*t]] : R[B[i + 73*t]] + R[C[i + 73*t]]; R[i + 128*t] = Op[i + 74*t] ? R[B[i + 74*t]] * R[C[i + 74*t]] : R[B[i + 74*t]] + R[C[i + 74*t]]; __syncthreads(); R[i + 129*t] = Op[i + 75*t] ? R[B[i + 75*t]] * R[C[i + 75*t]] : R[B[i + 75*t]] + R[C[i + 75*t]]; R[i + 130*t] = Op[i + 76*t] ? R[B[i + 76*t]] * R[C[i + 76*t]] : R[B[i + 76*t]] + R[C[i + 76*t]]; __syncthreads(); R[i + 131*t] = Op[i + 77*t] ? R[B[i + 77*t]] * R[C[i + 77*t]] : R[B[i + 77*t]] + R[C[i + 77*t]]; R[i + 132*t] = Op[i + 78*t] ? R[B[i + 78*t]] * R[C[i + 78*t]] : R[B[i + 78*t]] + R[C[i + 78*t]]; __syncthreads(); R[i + 133*t] = Op[i + 79*t] ? R[B[i + 79*t]] * R[C[i + 79*t]] : R[B[i + 79*t]] + R[C[i + 79*t]]; __syncthreads(); R[i + 134*t] = Op[i + 80*t] ? R[B[i + 80*t]] * R[C[i + 80*t]] : R[B[i + 80*t]] + R[C[i + 80*t]]; __syncthreads(); R[i + 135*t] = Op[i + 81*t] ? R[B[i + 81*t]] * R[C[i + 81*t]] : R[B[i + 81*t]] + R[C[i + 81*t]]; __syncthreads(); R[i + 136*t] = Op[i + 82*t] ? R[B[i + 82*t]] * R[C[i + 82*t]] : R[B[i + 82*t]] + R[C[i + 82*t]]; __syncthreads(); R[i + 137*t] = Op[i + 83*t] ? R[B[i + 83*t]] * R[C[i + 83*t]] : R[B[i + 83*t]] + R[C[i + 83*t]]; __syncthreads(); R[i + 138*t] = Op[i + 84*t] ? R[B[i + 84*t]] * R[C[i + 84*t]] : R[B[i + 84*t]] + R[C[i + 84*t]]; __syncthreads(); R[i + 139*t] = Op[i + 85*t] ? R[B[i + 85*t]] * R[C[i + 85*t]] : R[B[i + 85*t]] + R[C[i + 85*t]]; __syncthreads(); R[i + 140*t] = Op[i + 86*t] ? R[B[i + 86*t]] * R[C[i + 86*t]] : R[B[i + 86*t]] + R[C[i + 86*t]]; __syncthreads(); R[i + 141*t] = Op[i + 87*t] ? R[B[i + 87*t]] * R[C[i + 87*t]] : R[B[i + 87*t]] + R[C[i + 87*t]]; __syncthreads(); R[i + 142*t] = Op[i + 88*t] ? R[B[i + 88*t]] * R[C[i + 88*t]] : R[B[i + 88*t]] + R[C[i + 88*t]]; __syncthreads(); R[i + 143*t] = Op[i + 89*t] ? R[B[i + 89*t]] * R[C[i + 89*t]] : R[B[i + 89*t]] + R[C[i + 89*t]]; __syncthreads(); R[i + 144*t] = Op[i + 90*t] ? R[B[i + 90*t]] * R[C[i + 90*t]] : R[B[i + 90*t]] + R[C[i + 90*t]]; __syncthreads(); R[i + 145*t] = Op[i + 91*t] ? R[B[i + 91*t]] * R[C[i + 91*t]] : R[B[i + 91*t]] + R[C[i + 91*t]]; __syncthreads(); R[i + 146*t] = Op[i + 92*t] ? R[B[i + 92*t]] * R[C[i + 92*t]] : R[B[i + 92*t]] + R[C[i + 92*t]]; __syncthreads(); R[i + 147*t] = Op[i + 93*t] ? R[B[i + 93*t]] * R[C[i + 93*t]] : R[B[i + 93*t]] + R[C[i + 93*t]]; __syncthreads(); R[i + 148*t] = Op[i + 94*t] ? R[B[i + 94*t]] * R[C[i + 94*t]] : R[B[i + 94*t]] + R[C[i + 94*t]]; __syncthreads(); R[i + 149*t] = Op[i + 95*t] ? R[B[i + 95*t]] * R[C[i + 95*t]] : R[B[i + 95*t]] + R[C[i + 95*t]]; __syncthreads(); R[i + 150*t] = Op[i + 96*t] ? R[B[i + 96*t]] * R[C[i + 96*t]] : R[B[i + 96*t]] + R[C[i + 96*t]]; __syncthreads(); R[i + 151*t] = Op[i + 97*t] ? R[B[i + 97*t]] * R[C[i + 97*t]] : R[B[i + 97*t]] + R[C[i + 97*t]]; if (i==0) { final += R[151*t]; } __syncthreads(); } if (i==0) { A[0]= final;} }
20,329
#include "includes.h" __global__ void fillZero(int *c_red, int size) { int id = threadIdx.x + blockIdx.x * blockDim.x; int stride = blockDim.x * gridDim.x; for (int i = id; i < size; i+=stride) { c_red[i] = 0; } }
20,330
#include <stdio.h> #include <stdlib.h> #include <iostream> #include <math.h> using namespace std; // Blocksize #define BLOCKSIZE 1024 //************************************************* // GLOBAL MEMORY VERSION OF THE ALGORITHM // ************************************************ __global__ void vectorNS(float *in, float *out, int n, int ex) { int i = threadIdx.x + blockDim.x * blockIdx.x + 2; int iB = i - 2; if (iB < n) { float Aim2 = in[i - 2]; float Aim1 = in[i - 1]; float Ai = in[i]; float Aip1 = in[i + 1]; float Aip2 = in[i + 2]; out[iB] = (pow(Aim2, ex) + 2.0 * pow(Aim1, ex) + pow(Ai, ex) - 3.0 * pow(Aip1, ex) + 5.0 * pow(Aip2, ex)) / 24.0; } } //************************************************* // TILING VERSION (USES SHARED MEMORY) OF THE ALGORITHM // ************************************************ __global__ void vectorS(float *in, float *out, int n, int ex) { int li = threadIdx.x + 2; //local index in shared memory vector int gi = blockDim.x * blockIdx.x + threadIdx.x + 2; // global memory index int lstart = 0; __shared__ float s_in[BLOCKSIZE + 4]; //shared mem. vector // Load Tile in shared memory if (gi < n + 3) { s_in[li] = in[gi]; } if (threadIdx.x == 0) { // First Thread (in the current block) s_in[lstart] = in[gi - 2]; s_in[lstart + 1] = in[gi - 1]; } if ((gi >= n + 1) || (threadIdx.x == BLOCKSIZE - 1)) { // Last Block || Last Thread s_in[li + 1] = in[gi + 1]; s_in[li + 2] = in[gi + 2]; } __syncthreads(); int iB = gi - 2; if (iB < n) { float Aim2 = s_in[li - 2]; float Aim1 = s_in[li - 1]; float Ai = s_in[li]; float Aip1 = s_in[li + 1]; float Aip2 = s_in[li + 2]; out[iB] = (pow(Aim2, ex) + 2.0 * pow(Aim1, ex) + pow(Ai, ex) - 3.0 * pow(Aip1, ex) + 5.0 * pow(Aip2, ex)) / 24.0; } } //************************************************************************** // FIND MAX IN VECTOR __global__ void reduceMax(float * V_in, float * V_out, const int N) { extern __shared__ float sdata[]; int tid = threadIdx.x; int mid = blockDim.x/2; int i = blockIdx.x * (blockDim.x * 2) + threadIdx.x; sdata[tid] = ((i < N) ? V_in[i] : -1); sdata[tid + blockDim.x] = ((i + blockDim.x) < N ? V_in[i + blockDim.x] : -1); __syncthreads(); for(int s = mid; s > 0; s >>= 1) { if (tid < s) { if(sdata[tid] < sdata[tid + s]) { sdata[tid] = sdata[tid + s]; } } else if((i + blockDim.x + s) < N) { if(sdata[tid + mid] < sdata[tid + mid + s]) { sdata[tid + mid] = sdata[tid + mid + s]; } } __syncthreads(); } if (tid == 0) { V_out[blockIdx.x * 2] = sdata[0]; } else if (tid == mid) { V_out[(blockIdx.x * 2) + 1] = sdata[tid + mid]; } } //************************************************************************** int main(int argc, char *argv[]) { //****************************** //Get GPU information int devID; cudaDeviceProp props; cudaError_t err; err = cudaGetDevice(&devID); if (err != cudaSuccess) { cout << "ERRORRR" << endl; } cudaGetDeviceProperties(&props, devID); printf("Device %d: \"%s\" with Compute %d.%d capability\n", devID, props.name, props.major, props.minor); int N; int ex; if (argc != 3) { cout << "Uso: transformacion Num_elementos Potencia " << endl; return (0); } else { N = atoi(argv[1]); ex = atoi(argv[2]); } //* pointers to host memory */ float *A, *B; //* Allocate arrays a, b and c on host*/ A = new float[N + 4]; B = new float[N]; float mx; // maximum of B //* Initialize array A */ for (int i = 2; i < N + 2; i++) A[i] = (float)(1 - (i % 100) * 0.001); // Impose Boundary Conditions A[0] = 0.0; A[1] = 0.0; A[N + 2] = 0.0; A[N + 3] = 0.0; //************************** // GPU phase //************************** float *B_GPU_global = new float[N]; float *B_GPU_shared = new float[N]; int Nsize = N * sizeof(float); int NsizeWithBound = (N + 4) * sizeof(float); // Allocation in device mem float *A_GPU = NULL; err = cudaMalloc((void **)&A_GPU, NsizeWithBound); if (err != cudaSuccess) { cout << "ALLOCATION ERROR" << endl; } float *out = NULL; err = cudaMalloc((void **)&out, Nsize); if (err != cudaSuccess) { cout << "ALLOCATION ERROR" << endl; } // Copy A values to device memory err = cudaMemcpy(A_GPU, A, NsizeWithBound, cudaMemcpyHostToDevice); if (err != cudaSuccess) { cout << "GPU COPY ERROR" << endl; } int blocksPerGrid = (int)ceil((float)(N) / BLOCKSIZE); // Shared memory // Take initial time cout << "Start GPU Shared" << endl; cudaDeviceSynchronize(); double gst1 = clock(); int smemSizeVec = (BLOCKSIZE + 4)*sizeof(float); cout << endl; // ********* Kernel Launch ************************************ vectorS<<<blocksPerGrid, BLOCKSIZE, smemSizeVec>>>(A_GPU, out, N, ex); // ************************************************************ cudaDeviceSynchronize(); double TgpuS = clock(); TgpuS = (TgpuS - gst1) / CLOCKS_PER_SEC; cout << "End GPU shared" << endl; err = cudaGetLastError(); if (err != cudaSuccess) { fprintf(stderr, "Failed to launch kernel! %d \n", err); exit(EXIT_FAILURE); } cudaMemcpy(B_GPU_shared, out, Nsize, cudaMemcpyDeviceToHost); // Global memory // Take initial time cout << "Start GPU Global" << endl; cudaDeviceSynchronize(); double ggt1 = clock(); cout << endl; // ********* Kernel Launch ************************************ vectorNS<<<blocksPerGrid, BLOCKSIZE>>>(A_GPU, out, N, ex); // ************************************************************ cudaDeviceSynchronize(); double TgpuG = clock(); TgpuG = (TgpuG - ggt1) / CLOCKS_PER_SEC; cout << "End GPU global" << endl; err = cudaGetLastError(); if (err != cudaSuccess) { fprintf(stderr, "Failed to launch kernel! %d \n", err); exit(EXIT_FAILURE); } cudaMemcpy(B_GPU_global, out, Nsize, cudaMemcpyDeviceToHost); //************************** // CPU phase //************************** cout << "Start CPU" << endl; // Time measurement double ct1 = clock(); float Ai, Aim1, Aim2, Aip1, Aip2; // Compute B[i] and mx for (int i = 2; i < N + 2; i++) { const int iB = i - 2; Aim2 = A[i - 2]; Aim1 = A[i - 1]; Ai = A[i]; Aip1 = A[i + 1]; Aip2 = A[i + 2]; B[iB] = (pow(Aim2, ex) + 2.0 * pow(Aim1, ex) + pow(Ai, ex) - 3.0 * pow(Aip1, ex) + 5.0 * pow(Aip2, ex)) / 24.0; mx = (iB == 0) ? B[0] : max(B[iB], mx); } double Tcpu = clock(); Tcpu = (Tcpu - ct1) / CLOCKS_PER_SEC; cout << "End CPU" << endl; //************************** // CPU-GPU comparison and error checking //************************** int passed = 1; int i = 0; while (passed && i < N) { float diff = fabs(B[i] - B_GPU_global[i]); if (diff > 0) { passed = 0; cout << endl << i << endl; cout << "DIFF= " << diff << endl; } i++; } if (passed) { cout << "PASSED TEST GLOBAL MEMORY!!!" << endl; } else { cout << "ERROR IN TEST GLOBAL MEMORY!!!" << endl; } passed = 1; i = 0; while (passed && i < N) { float diff = fabs(B[i] - B_GPU_shared[i]); if (diff > 0) { passed = 0; cout << endl << i << endl; cout << "DIFF= " << diff << endl; } i++; } if (passed) { cout << "PASSED TEST SHARED MEMORY!!!" << endl; } else { cout << "ERROR IN TEST SHARED MEMORY!!!" << endl; } // c_d Maximum computation on GPU dim3 threadsPerBlock(BLOCKSIZE); dim3 numBlocks( ceil ((float)(N / 2)/threadsPerBlock.x)); // Maximum vector on CPU float * vmax; vmax = (float*) malloc(2*numBlocks.x*sizeof(float)); // Maximum vector to be computed on GPU float *vmax_d; cudaMalloc ((void **) &vmax_d, sizeof(float)*2*numBlocks.x); float smemSize = 2*threadsPerBlock.x*sizeof(float); // Kernel launch to compute Minimum Vector reduceMax<<<numBlocks, threadsPerBlock, smemSize>>>(out,vmax_d, N); /* Copy data from device memory to host memory */ cudaMemcpy(vmax, vmax_d, 2*numBlocks.x*sizeof(float),cudaMemcpyDeviceToHost); // Perform final reduction in CPU float max_gpu = -1; for (int i=0; i<numBlocks.x; i++) { max_gpu =max(max_gpu,vmax[i]); } if (N < 16) { for (int i = 0; i < N; i++) { cout << "CPU[" << i << "] = " << B[i] << ", GPU[" << i << "] = " << B_GPU_global[i] << endl; } } cout << "................................." << endl; cout << "................................." << endl << "El valor máximo en B es (CPU): " << mx << endl; cout << "................................." << endl << "El valor máximo en B es (GPU): " << max_gpu << endl; cout << endl << "Tiempo gastado CPU= " << Tcpu << endl << endl; cout << endl << "Tiempo gastado GPU (SHARED MEMORY)= " << TgpuS << endl << endl; cout << endl << "Speedup GPU (SHARED MEMORY)= " << Tcpu / TgpuS << endl << endl; cout << endl << "Tiempo gastado GPU (GLOBAL MEMORY)= " << TgpuG << endl << endl; cout << endl << "Speedup GPU (GLOBAL MEMORY)= " << Tcpu / TgpuG << endl << endl; //* Free the memory */ delete (A); delete (B); cudaFree(A_GPU); cudaFree(B_GPU_global); cudaFree(out); }
20,331
// System includes #include <stdio.h> #include <assert.h> // CUDA runtime #include <cuda_runtime.h> // Matrices are stored in row-major order: // M(row, col) = *(M.elements + row * M.width + col) typedef struct { int width; int height; int stride; double* elements; } Matrix; // Thread block size #define BLOCK_SIZE 32 // Matrix size #define MATRIX_SIZE 5760 void constantInit(double *data, int size, double val) { for (int i = 0; i < size; ++i) { data[i] = val; } } __device__ double GetElement(const Matrix A, int row, int col) { return A.elements[row * A.stride + col]; } __device__ void SetElement(const Matrix A, int row, int col, double value) { A.elements[row * A.stride + col] = value; } __device__ Matrix GetSubMatrix(Matrix A, int row, int col) { Matrix Asub; Asub.width = BLOCK_SIZE; Asub.height = BLOCK_SIZE; Asub.stride = A.stride; Asub.elements = &A.elements[A.stride * BLOCK_SIZE * row + BLOCK_SIZE * col]; return Asub; } __global__ void MatMulKernel(const Matrix A, const Matrix B, Matrix C) { int blockRow = blockIdx.y; int blockCol = blockIdx.x; Matrix Csub = GetSubMatrix(C, blockRow, blockCol); double Cvalue = 0; int row = threadIdx.y; int col = threadIdx.x; for(int m=0; m < (A.width / BLOCK_SIZE); ++m) { Matrix Asub = GetSubMatrix(A, blockRow, m); Matrix Bsub = GetSubMatrix(B, m, blockCol); __shared__ double As[BLOCK_SIZE][BLOCK_SIZE]; __shared__ double Bs[BLOCK_SIZE][BLOCK_SIZE]; As[row][col] = GetElement(Asub, row, col); Bs[row][col] = GetElement(Bsub, row, col); __syncthreads(); for(int e=0; e<BLOCK_SIZE; ++e) { Cvalue += As[row][e] * Bs[e][col]; } __syncthreads(); } SetElement(Csub, row, col, Cvalue); } int main(int argc, char **argv) { printf("[Share memory Matrix Multiply Using CUDA] - Starting...\n"); // By default, we use device 0, otherwise change here int devID = 0; cudaSetDevice(devID); cudaError_t error; cudaDeviceProp deviceProp; error = cudaGetDevice(&devID); error = cudaGetDeviceProperties(&deviceProp, devID); if (deviceProp.computeMode == cudaComputeModeProhibited) { fprintf(stderr, "Error: device is running in <Compute Mode Prohibited>, no threads can use ::cudaSetDevice().\n"); exit(EXIT_SUCCESS); } printf("GPU Device %d: \"%s\" with compute capability %d.%d\n\n", devID, deviceProp.name, deviceProp.major, deviceProp.minor); //Alloc and init host matrix Matrix A,B,C; A.width = A.height = A.stride = MATRIX_SIZE; B.width = B.height = B.stride = MATRIX_SIZE; C.width = C.height = C.stride = MATRIX_SIZE; printf("MatrixA(%d,%d), MatrixB(%d,%d)\n", A.width, A.height, B.width, B.height); unsigned int size_A = A.width * A.height; unsigned int mem_size_A = sizeof(double) * size_A; A.elements = (double *)malloc(mem_size_A); unsigned int size_B = B.width * B.height; unsigned int mem_size_B = sizeof(double) * size_B; B.elements = (double *)malloc(mem_size_B); unsigned int size_C = C.width * C.height; unsigned int mem_size_C = sizeof(double) * size_C; C.elements = (double *)malloc(mem_size_C); const double valA = 1.0f; const double valB = 0.01f; constantInit(A.elements, size_A, valA); constantInit(B.elements, size_B, valB); /* for(int i=0; i<size_A; i++) { printf("%f\n", A.elements[i]); printf("%f\n", B.elements[i]); } */ //Alloc and init device matrix Matrix d_A; d_A.width = A.width; d_A.height = A.height; d_A.stride = A.stride; cudaMalloc(&d_A.elements, mem_size_A); cudaMemcpy(d_A.elements, A.elements, mem_size_A, cudaMemcpyHostToDevice); Matrix d_B; d_B.width = B.width; d_B.height = B.height; d_B.stride = B.stride; cudaMalloc(&d_B.elements, mem_size_B); cudaMemcpy(d_B.elements, B.elements, mem_size_B, cudaMemcpyHostToDevice); Matrix d_C; d_C.width = C.width; d_C.height = C.height; d_C.stride = C.stride; cudaMalloc(&d_C.elements, mem_size_C); //launch kernel dim3 dimBlock(BLOCK_SIZE, BLOCK_SIZE); dim3 dimGrid(C.width / dimBlock.x, C.height / dimBlock.y); MatMulKernel<<<dimGrid, dimBlock>>>(d_A, d_B, d_C); //copy back cudaMemcpy(C.elements, d_C.elements, mem_size_C, cudaMemcpyDeviceToHost); //result check printf("Checking computed result for correctness: "); bool correct = true; // test relative error by the formula // |<x, y>_cpu - <x,y>_gpu|/<|x|, |y|> < eps double eps = 1.e-6 ; // machine zero for (int i = 0; i < (int)(C.width * C.height); i++) { double abs_err = fabs(C.elements[i] - (A.width * valB)); double dot_length = A.width; double abs_val = fabs(C.elements[i]); double rel_err = abs_err/abs_val/dot_length ; if (rel_err > eps) { printf("Error! Matrix[%05d]=%.8f, ref=%.8f error term is > %E\n", i, C.elements[i], A.width*valB, eps); correct = false; } } printf("%s\n", correct ? "Result = PASS" : "Result = FAIL"); /* for(int i=0; i<size_C; i++) { printf("%f\n", C.elements[i]); } */ cudaDeviceSynchronize(); //Get Gflops cudaEvent_t start; error = cudaEventCreate(&start); cudaEvent_t stop; error = cudaEventCreate(&stop); int nIter = 10; // Record the start event error = cudaEventRecord(start, NULL); for (int j = 0; j < nIter; j++) { MatMulKernel<<<dimGrid, dimBlock>>>(d_A, d_B, d_C); } error = cudaEventRecord(stop, NULL); error = cudaEventSynchronize(stop); float msecTotal = 0.0f; error = cudaEventElapsedTime(&msecTotal, start, stop); if (error != cudaSuccess) { fprintf(stderr, "Failed to get time elapsed between events (error code %s)!\n", cudaGetErrorString(error)); exit(EXIT_FAILURE); } // Compute and print the performance float msecPerMatrixMul = msecTotal / nIter; double flopsPerMatrixMul = 2.0 * (double)A.width * (double)A.height * (double)B.width; double gigaFlops = (flopsPerMatrixMul * 1.0e-9f) / (msecPerMatrixMul / 1000.0f); printf( "Performance= %.2f GFlop/s, Time= %.3f msec, Size= %.0f Ops, WorkgroupSize= %u threads/block\n", gigaFlops, msecPerMatrixMul, flopsPerMatrixMul, dimBlock.x * dimBlock.y); cudaDeviceSynchronize(); free(A.elements); free(B.elements); free(C.elements); cudaFree(d_A.elements); cudaFree(d_B.elements); cudaFree(d_C.elements); return 0; }
20,332
#include <cuda.h> #include <cuComplex.h> #include <math_constants.h> // Use symmetry // Use max_half_support threads only // Perhaps it's not very cache friendly, but it is // very simple to perform work-distribution for this variant #define __SET_MAP \ const int \ x = blockIdx.x * blockDim.x + threadIdx.x \ , y = blockIdx.y * blockDim.y + threadIdx.y \ , xl = max_half_support - x \ , xr = max_half_support + x \ , yl = max_half_support - y \ , yr = max_half_support + y \ ; template <int max_half_support> __device__ __inline__ void ucs_common( cuDoubleComplex mesh[max_half_support * 2 + 1][max_half_support * 2 + 1] , double t2 ){ __SET_MAP double t2_div_sc = t2 / double(max_half_support) , xs = double(x) * t2_div_sc , ys = double(y) * t2_div_sc ; cuDoubleComplex r2 = make_cuDoubleComplex(xs * xs + ys * ys, 0.0); mesh[xl][yl] = r2; mesh[xl][yr] = r2; mesh[xr][yl] = r2; mesh[xr][yr] = r2; } extern "C" __global__ void r2(cuDoubleComplex mesh[257][257], double t2) { ucs_common<128>(mesh, t2); } #if 0 template <int max_half_support> __device__ void calc_inplace( cuDoubleComplex mesh[max_half_support * 2 + 1][max_half_support * 2 + 1] , double w ){ __SET_MAP // mesh is symmetric, thus we need no recalc ph double ph = w * (1.0 - sqrt(1.0 - mesh[xl][yl].x)); double s, c; sincos(2.0 * CUDART_PI * ph, &s, &c); cuDoubleComplex res = make_cuDoubleComplex(c, -s); // to get rid of conj later mesh[xl][yl] = res; mesh[xl][yr] = res; mesh[xr][yl] = res; mesh[xr][yr] = res; } // test instantiation template __device__ void calc_inplace<128>( cuDoubleComplex mesh[257][257] , double w ); #endif template <int max_half_support> __device__ __inline__ void calc( cuDoubleComplex dst[max_half_support * 2 + 1][max_half_support * 2 + 1] , const cuDoubleComplex src[max_half_support * 2 + 1][max_half_support * 2 + 1] , double w ){ __SET_MAP double ph = w * (1.0 - sqrt(1.0 - src[xl][yl].x)); double s, c; sincos(2.0 * CUDART_PI * ph, &s, &c); cuDoubleComplex res = make_cuDoubleComplex(c, -s); // to get rid of conj later dst[xl][yl] = res; dst[xl][yr] = res; dst[xr][yl] = res; dst[xr][yr] = res; } extern "C" __global__ void wkernff( cuDoubleComplex dst[257][257] , const cuDoubleComplex src[257][257] , double w ){ calc<128>(dst, src, w); } template < int max_half_support , int oversample > __device__ __inline__ void copy_ucs_2_over( cuDoubleComplex dst[(max_half_support * 2 + 1) * oversample][(max_half_support * 2 + 1) * oversample] , const cuDoubleComplex src[max_half_support * 2 + 1][max_half_support * 2 + 1] ){ const int dst_center = (max_half_support * 2 + 1) * oversample / 2; __SET_MAP dst[dst_center - x][dst_center - y] = src[xl][yl]; dst[dst_center - x][dst_center + y] = src[xl][yr]; dst[dst_center + x][dst_center - y] = src[xr][yl]; dst[dst_center + x][dst_center + y] = src[xr][yr]; } extern "C" __global__ void copy_2_over( cuDoubleComplex dst[2056][2056] , const cuDoubleComplex src[257][257] ){ copy_ucs_2_over<128,8>(dst, src); } #ifdef __SMALL_EXTRACT template < int max_half_support , int oversample > __device__ __inline__ void extract_over( int overx , int overy , cuDoubleComplex dst[max_half_support * 2 + 1][max_half_support * 2 + 1] , const cuDoubleComplex src[(max_half_support * 2 + 1) * oversample][(max_half_support * 2 + 1) * oversample] ) { __SET_MAP const int sxl = xl * oversample + overx , sxr = xr * oversample + overx , syl = yl * oversample + overy , syr = yr * oversample + overy ; dst[xl][yl] = src[sxl][syl]; dst[xl][yr] = src[sxl][syr]; dst[xr][yl] = src[sxr][syl]; dst[xr][yr] = src[sxr][syr]; } extern "C" __global__ void wextract0( int overx , int overy , cuDoubleComplex dst[257][257] , const cuDoubleComplex src[2056][2056] ){ extract_over<128,8>(overx, overy, dst, src); } #else // We use 3rd grid dimension to cover oversample range template < int max_half_support , int oversample > __device__ __inline__ void transpose_over( cuDoubleComplex dst[oversample][oversample][max_half_support * 2 + 1][max_half_support * 2 + 1] , const cuDoubleComplex src[(max_half_support * 2 + 1) * oversample][(max_half_support * 2 + 1) * oversample] ) { __SET_MAP const int overx = blockIdx.z / oversample , overy = blockIdx.z % oversample , sxl = xl * oversample + overx , sxr = xr * oversample + overx , syl = yl * oversample + overy , syr = yr * oversample + overy ; dst[overx][overy][xl][yl] = src[sxl][syl]; dst[overx][overy][xl][yr] = src[sxl][syr]; dst[overx][overy][xr][yl] = src[sxr][syl]; dst[overx][overy][xr][yr] = src[sxr][syr]; } extern "C" __global__ void transpose_over0( cuDoubleComplex dst[8][8][257][257] , const cuDoubleComplex src[2056][2056] ){ transpose_over<128,8>(dst, src); } #endif template < int max_half_support , int oversample > __device__ __inline__ void cut_out( int half_supp , cuDoubleComplex * dst , const cuDoubleComplex src[max_half_support * 2 + 1][max_half_support * 2 + 1] ) { __SET_MAP const int supp = half_supp * 2 + 1; if (x > half_supp || y > half_supp) return; const int dxl = (half_supp - x) * supp , dxr = (half_supp + x) * supp , dyl = half_supp - y , dyr = half_supp + y ; dst[dxl + dyl] = src[xl][yl]; dst[dxl + dyr] = src[xl][yr]; dst[dxr + dyl] = src[xr][yl]; dst[dxr + dyr] = src[xr][yr]; } extern "C" __global__ void wextract1( int half_supp , cuDoubleComplex * dst , const cuDoubleComplex src[257][257] ){ cut_out<128,8>(half_supp, dst, src); }
20,333
#include "includes.h" __global__ void calcSoftmaxDivForwardGPU(float *out, float *sum, int batch_size, int in_size_x, unsigned int n) { // int id = (blockIdx.x + blockIdx.y*gridDim.x) * blockDim.x + threadIdx.x; unsigned int index = threadIdx.x + blockIdx.x * blockDim.x; if(index<n && *(sum + blockIdx.x)>0.0){ // out[id] = out[id] / *sum; out[index] = out[index] / *(sum + blockIdx.x); } /* original for ( int i = 0; i < in.size.x; ++i ){ out( b, i, 0, 0 ) = out( b, i, 0, 0 ) / sum; } */ }
20,334
//CUDA code for matrix multiplicationn . The values of a,b,c,q have to changed according to N #include<stdlib.h> #include<stdio.h> #include<iostream> #include<cuda_runtime.h> __global__ void Product (float *a, float *b, float *c) { // Out of all the threads created each one computes 1 value of C and stores into cval float cval = 0.00; int R = blockIdx.y * blockDim.y + threadIdx.y; //Row of the matrix int C = blockIdx.x * blockDim.x + threadIdx.x; //Column of the matrix //Defining the size of the matrix// int N=1000; if(R> N || C > N ){ return; } for (int j = 0; j < N; j++) { cval += a[R * N+ j] *b[j * N + C]; } c[R * N + C]+= cval; } using namespace std; int main(){ //The timing function cudaEvent_t start,stop; float time; int N=5000; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start,0); static float a[25000000],b[25000000]; static float c[25000000]; //Inputting values in the matrix long int q = 25000000; // Standard int runs out of memory so long int used int i=0; //For checking the matrix multiplication all entries are 1 while(i != q) { a[i] = 1; b[i] = 1; i++; } int o=0; //for(int m=0;m<N;m++){ //for(int n=0;n<N;n++){ //a[o]=m+n; //b[o]=m*n; //o=o+1; //}} //This section is the GPU part float *device_a, *device_b, *device_c; dim3 griddimension(500,500); // The dimension of the total grid (Blocks) dim3 blockdimension(10,10); // The dimension of one block ( threads in one block) //Allocating memory in the device for the matrices: device_a,b,c are device variables cudaMalloc( (void**)&device_c, q * sizeof(float) ); cudaMalloc( (void**)&device_b, q * sizeof(float) ); cudaMalloc( (void**)&device_a, q * sizeof(float) ); //Copying the variables from CPU to GPU cudaMemcpy( device_a,a,q * sizeof(float),cudaMemcpyHostToDevice ); cudaMemcpy( device_b,b,q * sizeof(float),cudaMemcpyHostToDevice ); cudaMemcpy( device_c,c,q * sizeof(float),cudaMemcpyHostToDevice ); Product<<<griddimension, blockdimension>>>( device_a, device_b, device_c ); //The device function Product is called cudaMemcpy( c,device_c,q * sizeof(float),cudaMemcpyDeviceToHost ); cudaFree( device_a ); cudaFree( device_b ); cudaFree( device_c ); cudaEventRecord(stop,0); cudaEventSynchronize(stop); cudaEventElapsedTime(&time,start,stop); cout<<"\n\nTime = "<<time<<" ms"; //For printing the matrix long int g=N*N,d=0; while(d!=g){ printf("%f\n",c[d]); d=d+1; } //} }
20,335
#include <stdio.h> #include <stdlib.h> #include <thrust/sort.h> #define num_thread 64 #define thread 16 __global__ void count(int *data,int input, int *result) { int i = blockIdx.x * blockDim.x + threadIdx.x; if(data[i] == input) { int a = 1; atomicAdd(result,a); } } int main(int argc, char *argv[]){ int Data[num_thread], *arr,input,*result; int i; int resultarr[1]; int size = sizeof(int)*num_thread; srand(123456846); printf(" Generate Ok\n"); cudaSetDevice(0); for(i = 0; i < num_thread; i++) { Data[i] = rand() % 50; printf("%d ",Data[i]); } printf(" \n Working Ok\n"); printf("Input value to find: "); scanf("%d",&input); cudaMalloc( (void**) &arr, size); cudaMalloc( (void**) &result, sizeof(int)); printf(" Malloc Ok\n"); cudaMemcpy(arr,Data,size, cudaMemcpyHostToDevice); printf(" Copy Ok\n"); count<<<num_thread/thread,thread>>>(arr,input,result); printf(" Function Ok\n"); cudaMemcpy(resultarr,result,sizeof(int),cudaMemcpyDeviceToHost); printf(" Copy Back Ok\n"); cudaFree(result); cudaFree(arr); printf(" Value %d to search occurrences Data found: %d",input,resultarr[0]); printf("\n"); return 0; }
20,336
#include "includes.h" __global__ void LowPassColMulti(float *d_Result, float *d_Data, int width, int pitch, int height) { __shared__ float data[CONVCOL_W*(CONVCOL_H + 2*RADIUS)]; const int tx = threadIdx.x; const int ty = threadIdx.y; const int block = blockIdx.x/(NUM_SCALES+3); const int scale = blockIdx.x - (NUM_SCALES+3)*block; const int miny = blockIdx.y*CONVCOL_H; const int maxy = min(miny + CONVCOL_H, height) - 1; const int totStart = miny - RADIUS; const int totEnd = maxy + RADIUS; const int colStart = block*CONVCOL_W + tx; const int colEnd = colStart + (height-1)*pitch; const int sStep = CONVCOL_W*CONVCOL_S; const int gStep = pitch*CONVCOL_S; float *kernel = d_Kernel + scale*16; const int size = pitch*height*scale; d_Result += size; d_Data += size; if (colStart<width) { float *sdata = data + ty*CONVCOL_W + tx; int gPos = colStart + (totStart + ty)*pitch; for (int y = totStart+ty;y<=totEnd;y+=blockDim.y){ if (y<0) sdata[0] = d_Data[colStart]; else if (y>=height) sdata[0] = d_Data[colEnd]; else sdata[0] = d_Data[gPos]; sdata += sStep; gPos += gStep; } } __syncthreads(); if (colStart<width) { float *sdata = data + ty*CONVCOL_W + tx; int gPos = colStart + (miny + ty)*pitch; for (int y=miny+ty;y<=maxy;y+=blockDim.y) { d_Result[gPos] = (sdata[0*CONVCOL_W] + sdata[8*CONVCOL_W])*kernel[0] + (sdata[1*CONVCOL_W] + sdata[7*CONVCOL_W])*kernel[1] + (sdata[2*CONVCOL_W] + sdata[6*CONVCOL_W])*kernel[2] + (sdata[3*CONVCOL_W] + sdata[5*CONVCOL_W])*kernel[3] + sdata[4*CONVCOL_W]*kernel[4]; sdata += sStep; gPos += gStep; } } }
20,337
#include <stdio.h> #include <stdlib.h> #include <time.h> void printArr( int arr[], int n ) { int i; for ( i = 0; i < n; ++i ) printf( "%d ", arr[i] ); } __device__ int d_size; __global__ void partition (int *arr, int *arr_l, int *arr_h, int n) { int z = blockIdx.x*blockDim.x+threadIdx.x; d_size = 0; __syncthreads(); if (z<n) { int h = arr_h[z]; int l = arr_l[z]; int x = arr[h]; int i = (l - 1); int temp; for (int j = l; j <= h- 1; j++) { if (arr[j] <= x) { i++; temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } temp = arr[i+1]; arr[i+1] = arr[h]; arr[h] = temp; int p = (i + 1); if (p-1 > l) { int ind = atomicAdd(&d_size, 1); arr_l[ind] = l; arr_h[ind] = p-1; } if ( p+1 < h ) { int ind = atomicAdd(&d_size, 1); arr_l[ind] = p+1; arr_h[ind] = h; } } } void quickSortIterative (int arr[], int l, int h) { int lstack[ h - l + 1 ], hstack[ h - l + 1]; int top = -1, *d_d, *d_l, *d_h; lstack[ ++top ] = l; hstack[ top ] = h; cudaMalloc(&d_d, (h-l+1)*sizeof(int)); cudaMemcpy(d_d, arr,(h-l+1)*sizeof(int),cudaMemcpyHostToDevice); cudaMalloc(&d_l, (h-l+1)*sizeof(int)); cudaMemcpy(d_l, lstack,(h-l+1)*sizeof(int),cudaMemcpyHostToDevice); cudaMalloc(&d_h, (h-l+1)*sizeof(int)); cudaMemcpy(d_h, hstack,(h-l+1)*sizeof(int),cudaMemcpyHostToDevice); int n_t = 1; int n_b = 1; int n_i = 1; while ( n_i > 0 ) { partition<<<n_b,n_t>>>( d_d, d_l, d_h, n_i); int answer; cudaMemcpyFromSymbol(&answer, d_size, sizeof(int), 0, cudaMemcpyDeviceToHost); if (answer < 1024) { n_t = answer; } else { n_t = 1024; n_b = answer/n_t + (answer%n_t==0?0:1); } n_i = answer; cudaMemcpy(arr, d_d,(h-l+1)*sizeof(int),cudaMemcpyDeviceToHost); } } int main() { int arr[5000]; srand(time(NULL)); for (int i = 0; i<5000; i++) { arr[i] = rand ()%10000; } int n = sizeof( arr ) / sizeof( *arr ); quickSortIterative( arr, 0, n - 1 ); printArr( arr, n ); return 0; }
20,338
#include <stdio.h> #include <string.h> #include <stdbool.h> #include <cuda.h> #include <cuda_runtime_api.h> #define V 9 #define E 14 long int* get_graph_dim(char* filename) { FILE* file; file = fopen(filename, "r"); if (file == NULL) { printf("Unable to read the CSR file: %s.", filename); exit(1); } long int* dim = (long int*)malloc(2*sizeof(long int)); fscanf(file, "%ld %ld", &dim[0], &dim[1]); return dim; } long int* read_csr(char* filename, long int v, long int e) { FILE* file; file = fopen(filename, "r"); if (file == NULL) { printf("Unable to read the CSR file: %s.", filename); exit(1); } long int* csr = (long int*)malloc((v+1+(2*e))*sizeof(long int)); fscanf(file, "%ld %ld", &v, &e); long int i; for(i=0; i<v+1; i++) fscanf(file, "%ld", &csr[i]); for(; i<v+1+2*e; i++) fscanf(file, "%ld", &csr[i]); return csr; } __global__ void between_centre(double* bc, long int* R, long int* C, long int *vert, long int *edge) { //long int V = *vert; //long int E = *edge; long int idx = threadIdx.x; long int s = blockIdx.x; __shared__ long int d[V], sigma[V]; double dep[V]; __shared__ long int P[V][V]; __shared__ long int p_top[V]; long int k, r; //Initialize d and sigma // for(k=idx; k<V; k+=blockDim.x) // { // if(k == s) // { // d[k] = 0; // sigma[k] = 1; // } // else // { // d[k] = INT_MAX; // sigma[k] = 0; // } // // p_top[k] = 0; // // } // // __shared__ long int Q[V]; // __shared__ long int Q2[V]; // __shared__ long int Q_len; // __shared__ long int Q2_len; // // __shared__ long int S[V]; // __shared__ long int s_top; // // if(idx == 0) // { // Q[0] = s; // Q_len = 1; // Q2_len = 0; // s_top = 0; // } // __syncthreads(); // // while(1) // { // // for(k=idx; k<Q_len; k+=blockDim.x) // { // int v = Q[k]; // // atomicAdd((int*)&s_top, 1); // S[s_top] = v; // // for(r=R[v]; r<R[v+1]; r++) // { // long int w = C[r]; // // if(atomicCAS((int*)&d[w],INT_MAX,(int)d[v]+1) == INT_MAX) // { // int t = atomicAdd((int*)&Q2_len,1); // Q2[t] = w; // } // // if(d[w] == (d[v]+1)) // { // atomicAdd((int*)&sigma[w],sigma[v]); // atomicAdd((int*)&p_top[w], 1); // atomicAdd((int*)&P[w][p_top[w]-1], v); // } // } // } // __syncthreads(); // // if(Q2_len == 0) // break; // // else // { // for(k=idx; k<Q2_len; k+=blockDim.x) // Q[k] = Q2[k]; // // __syncthreads(); // // if(idx == 0) // { // Q_len = Q2_len; // Q2_len = 0; // } // __syncthreads(); // } // } // // while(s_top!=0) // { // atomicAdd((int*)&s_top, -1); // long int w = S[s_top]; // // for(k = 0; k < P[w][p_top[w]-1]; k++) // dep[k] += (double)(sigma[k] * (1 + dep[w]) / sigma[w]); // // if(w!=s) // atomicAdd((float*)&bc[w], (float)dep[w]); // // __syncthreads(); // } } int main() { long int* dim; dim = get_graph_dim("01.txt"); printf("Hello!\n"); long int v = dim[0], e = dim[1]; long int* csr; csr = read_csr("01.txt", v, e); printf("Holla!!\n"); long int *r, *c; double *bc; r = (long int*)malloc((v+1)*sizeof(long int)); c = (long int*)malloc(2*e*sizeof(long int)); bc = (double*)malloc(v*sizeof(double)); memcpy(r, csr, (v+1)*sizeof(long int)); memcpy(c, csr+v+1, 2*e*sizeof(long int)); free(csr); long int *d_v, *d_e; long int *d_r, *d_c; double *d_bc; printf("Sui!\n"); cudaMalloc((void**)&d_v, sizeof(long int)); cudaMalloc((void**)&d_e, sizeof(long int)); cudaMalloc((void**)&d_bc, v * sizeof(double)); cudaMalloc((void**)&d_r, (v+1) * sizeof(long int)); cudaMalloc((void**)&d_c, 2*e * sizeof(long int)); cudaMemcpy(d_v, &v, sizeof(long int), cudaMemcpyHostToDevice); cudaMemcpy(d_e, &e, sizeof(long int), cudaMemcpyHostToDevice); cudaMemcpy(d_r, r, (v+1)*sizeof(long int), cudaMemcpyHostToDevice); cudaMemcpy(d_c, c, 2*e*sizeof(long int), cudaMemcpyHostToDevice); printf("Namaskara!\n"); dim3 dimGrid(v); dim3 dimBlock(1024); cudaEvent_t start, stop; float timer; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); between_centre<<<dimGrid, dimBlock>>>(d_bc, d_r, d_c, d_v, d_e); cudaEventRecord(stop, 0); cudaEventSynchronize(stop); cudaEventElapsedTime(&timer, start, stop); cudaEventDestroy(start); cudaEventDestroy(stop); cudaMemcpy(bc, d_bc, v*sizeof(double), cudaMemcpyDeviceToHost); long int k; for(k = 0; k < v; k++) printf("%.2f ", bc[k]); printf("\nElapsed Time: %lf\n", timer); cudaFree(d_v); cudaFree(d_e); cudaFree(d_bc); cudaFree(d_r); cudaFree(d_c); free(r); free(c); }
20,339
/* 159.735 Semester 2, 2016. Ian Bond, 3/10/2016 Sequential version of the N-sphere counting problem for Assignment 5. Two alternative algorithms are presented. Note: a rethink will be needed when implementing a GPU version of this. You can't just cut and paste code. To compile: g++ -O3 -o nsphere nsphere.cpp (you will get slightly better performance with the O3 optimization flag) */ #include <cstdlib> #include <cmath> #include <iostream> #include <string> #include <cuda.h> #include <vector> #include <fstream> using namespace std; const long MAXDIM = 8; const double RMIN = 2.0; const double RMAX = 8.0; const int MAX_POINTS_PER_THREAD = 500; double diffclock(clock_t clock1, clock_t clock2) { double diffticks = clock1 - clock2; double diffms = (diffticks * 1000) / CLOCKS_PER_SEC; return diffms; // Time difference in milliseconds } /* * Evaluate n**k where both are long integers */ long powlong(long n, long k) { long p = 1; for (long i = 0; i < k; ++i) p *= n; return p; } /* * Convert a decimal number into another base system - the individual * digits in the new base are stored in the index array. */ void convert(long num, long base, std::vector<long>& index) { const long ndim = index.size(); for (long i = 0; i < ndim; ++i) index[i] = 0; long idx = 0; while (num != 0) { long rem = num % base; num = num / base; index[idx] = rem; ++idx; } } long count_in_v1(long ndim, double radius) { const long halfb = static_cast<long>(floor(radius)); const long base = 2 * halfb + 1; const double rsquare = radius * radius; const long ntotal = powlong(base, ndim); cout << "ntotal:"<<ntotal<<endl; long count = 0; std::vector<long> index(ndim, 0); for (long n = 0; n < ntotal; ++n) { convert(n, base, index); double rtestsq = 0; for (long k = 0; k < ndim; ++k) { double xk = index[k] - halfb; rtestsq += xk * xk; } if (rtestsq < rsquare) ++count; } return count; } // kernel __global__ void cuda_func_count(int ndim, double radius, long nfrom, long nto, long nthreads, int* counter) { long id = blockIdx.x * blockDim.x + threadIdx.x; counter[id] = 0; if (id >= nto) return; const long halfb = static_cast<long>(floor(radius)); const long base = 2 * halfb + 1; const double rsquare = radius*radius; long index = 0; long num = nfrom + id; while (num < nto) { double rtestsq = 0; for (int i=0; i<ndim; i++) { long rem = num % base; num = num / base; double xk = rem - halfb; rtestsq += xk * xk; } if (rtestsq < rsquare ) { atomicAdd(&counter[id], 1); } index++; num = nfrom + id + nthreads*index; } } long count_in_gpu(long ndim, double radius) { const long halfb = static_cast<long>(floor(radius)); const long base = 2 * halfb + 1; const long ntotal = powlong(base, ndim); cout << "ntotal:"<<ntotal<<endl; const int threadsPerBlock_x = (ntotal<1024)?ntotal:1024; int blocksPerGrid = ntotal / 1024 + 1; if (blocksPerGrid > 1024) { blocksPerGrid = 1024; } const long nthreads = threadsPerBlock_x*blocksPerGrid; //maximum 1024*1024 threads int* counters = new int[nthreads]; memset(counters, 0, sizeof(int)*nthreads); int* d_counters; cudaMalloc(&d_counters, sizeof(int)*nthreads); long total_count = 0; //invoke the kernel //std::cout << "Launching a grid of " << nthreads << " threads" << std::endl; const long points_for_each = MAX_POINTS_PER_THREAD * nthreads; long nfrom = 0; long nto = points_for_each; do { if (nto > ntotal){ nto = ntotal; } cuda_func_count <<<blocksPerGrid, threadsPerBlock_x>>>(ndim, radius, nfrom, nto, nthreads, d_counters); //copyback the counters to host cudaMemcpy(counters, d_counters, sizeof(int)*nthreads, cudaMemcpyDeviceToHost); //coculate all counters amount for (long i = 0; i < nthreads; i++) { total_count += counters[i]; } nfrom = nto; nto += points_for_each; }while (nfrom < ntotal); cudaFree(d_counters); delete[] counters; return total_count; } int main(int argc, char* argv[]) { const double r = atof(argv[1]); const long nd = atol(argv[2]); clock_t tstart = clock(); // const long seq_count = count_in_v1(nd, r); // double seq_t_cost = diffclock(clock(), tstart); // tstart = clock(); /**********************************************/ const long cuda_count = count_in_gpu(nd, r); double cuda_t_cost = diffclock(clock(), tstart); cout <<"r:"<< r << "; nd:" << nd // << "; seq_count:" << seq_count << "; seq_t_cost:" << seq_t_cost <<"; cuda_count:"<< cuda_count << "; cuda_t_cost"<< cuda_t_cost <<endl; return 0; }
20,340
#include <iostream> #include <stdlib.h> #include <math.h> #include <stdio.h> #define PI 3.141592654 using namespace std; const int nOrder = 3; const int nTimePreSnap = 100; typedef struct { int nx, nz; int Nx, Nz; int sx, sz; int npx, npz; float dx, dz; } dim; typedef struct { float *vp, *vs, *rho; } media; typedef struct { float *vxx, *vxz, *vzx, *vzz, *txxx, *txxz, *tzzx, *tzzz, *txzx, *txzz; float *vxt, *vzt, *txxt, *tzzt, *txzt; } wave; typedef struct { float dt; float d0x, d0z; float C[nOrder]; } coeff; typedef struct { float *f0, *f1, *f2, *f3, *f4, *f5, *f6, *f7, *f8, *f9; } factor; __global__ void pre_eval(wave W, media M, dim D, coeff C, factor F) { int ix = threadIdx.x + blockIdx.x*blockDim.x; int iz = threadIdx.y + blockIdx.y*blockDim.y; int idx = iz*D.Nx + ix; float dpmlx = 0.0, dpmlz = 0.0; float lambda, mu; if(ix < D.Nx && iz < D.Nz) { mu = M.rho[idx]*M.vs[idx]*M.vs[idx]; lambda = M.rho[idx]*M.vp[idx]*M.vp[idx] - 2*mu; if(ix < D.npx + nOrder && ix >= nOrder) dpmlx = C.d0x*pow(1.0*(D.npx + nOrder - ix)/D.npx, 2); if(ix >= D.Nx - D.npx - nOrder && ix < D.Nx - nOrder) dpmlx = C.d0x*pow(1.0*(ix + D.npx + nOrder + 1 - D.Nx)/D.npx, 2); if(iz < D.npz + nOrder && iz >= nOrder) dpmlz = C.d0z*pow(1.0*(D.npz + nOrder - iz)/D.npz, 2); if(iz >= D.Nz - D.npz - nOrder && iz < D.Nz - nOrder) dpmlz = C.d0z*pow(1.0*(iz + D.npz + nOrder + 1 - D.Nz)/D.npz, 2); F.f0[idx] = (2 - C.dt*dpmlx)/(2 + C.dt*dpmlx); F.f1[idx] = (2 - C.dt*dpmlz)/(2 + C.dt*dpmlz); F.f2[idx] = 2*C.dt/(2 + C.dt*dpmlx)/M.rho[idx]/D.dx; F.f3[idx] = 2*C.dt/(2 + C.dt*dpmlz)/M.rho[idx]/D.dz; F.f4[idx] = 2*C.dt/(2 + C.dt*dpmlx)*(lambda + 2*mu)/D.dx; F.f5[idx] = 2*C.dt/(2 + C.dt*dpmlz)*lambda/D.dz; F.f6[idx] = 2*C.dt/(2 + C.dt*dpmlx)*lambda/D.dx; F.f7[idx] = 2*C.dt/(2 + C.dt*dpmlz)*(lambda + 2*mu)/D.dz; F.f8[idx] = 2*C.dt/(2 + C.dt*dpmlx)*mu/D.dx; F.f9[idx] = 2*C.dt/(2 + C.dt*dpmlz)*mu/D.dz; W.vxx [idx] = 0.0; W.vxz [idx] = 0.0; W.vxt [idx] = 0.0; W.vzx [idx] = 0.0; W.vzz [idx] = 0.0; W.vzt [idx] = 0.0; W.txxx[idx] = 0.0; W.txxz[idx] = 0.0; W.txxt[idx] = 0.0; W.tzzx[idx] = 0.0; W.tzzz[idx] = 0.0; W.tzzt[idx] = 0.0; W.txzx[idx] = 0.0; W.txzz[idx] = 0.0; W.txzt[idx] = 0.0; } } __global__ void vel_eval(wave W, dim D, coeff C, factor F, int sidx) { int ix = threadIdx.x + blockIdx.x*blockDim.x; int iz = threadIdx.y + blockIdx.y*blockDim.y; int idx = iz*D.Nx + ix; int i; float Psum; if(ix >= nOrder && ix < D.Nx - nOrder && iz >= nOrder && iz < D.Nz - nOrder) { Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.txxt[idx + i] - W.txxt[idx - i - 1]); W.vxx[idx] = F.f0[idx]*W.vxx[idx] + F.f2[idx]*Psum; Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.txzt[idx + i*D.Nx] - W.txzt[idx - (i + 1)*D.Nx]); W.vxz[idx] = F.f1[idx]*W.vxz[idx] + F.f3[idx]*Psum; W.vxt[idx] = W.vxx[idx] + W.vxz[idx]; Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.txzt[idx + i + 1] - W.txzt[idx - i]); W.vzx[idx] = F.f0[idx]*W.vzx[idx] + F.f2[idx]*Psum; Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.tzzt[idx + (i + 1)*D.Nx] - W.tzzt[idx - i*D.Nx]); W.vzz[idx] = F.f1[idx]*W.vzz[idx] + F.f3[idx]*Psum; W.vzt[idx] = W.vzx[idx] + W.vzz[idx]; } } __global__ void str_eval(wave W, dim D, coeff C, int sidx, float srclet, factor F) { int ix = threadIdx.x + blockIdx.x*blockDim.x; int iz = threadIdx.y + blockIdx.y*blockDim.y; int idx = iz*D.Nx + ix; int i; float Psum; if(ix >= nOrder && ix < D.Nx - nOrder && iz >= nOrder && iz < D.Nz - nOrder) { Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.vxt[idx + i + 1] - W.vxt[idx - i]); W.txxx[idx] = F.f0[idx]*W.txxx[idx] + F.f4[idx]*Psum; W.tzzx[idx] = F.f0[idx]*W.tzzx[idx] + F.f6[idx]*Psum; Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.vzt[idx + i*D.Nx] - W.vzt[idx - (i + 1)*D.Nx]); W.txxz[idx] = F.f1[idx]*W.txxz[idx] + F.f5[idx]*Psum; W.tzzz[idx] = F.f1[idx]*W.tzzz[idx] + F.f7[idx]*Psum; Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.vzt[idx + i] - W.vzt[idx - i - 1]); W.txzx[idx] = F.f0[idx]*W.txzx[idx] + F.f8[idx]*Psum; Psum = 0.0; for(i = 0; i < nOrder; i++) Psum += C.C[i]*(W.vxt[idx + (i + 1)*D.Nx] - W.vxt[idx - i*D.Nx]); W.txzz[idx] = F.f1[idx]*W.txzz[idx] + F.f9[idx]*Psum; W.txzt[idx] = W.txzx[idx] + W.txzz[idx]; if(idx == sidx) { W.txxx[idx] += srclet/4; W.txxz[idx] += srclet/4; W.tzzx[idx] += srclet/4; W.tzzz[idx] += srclet/4; } W.txxt[idx] = W.txxx[idx] + W.txxz[idx]; W.tzzt[idx] = W.tzzx[idx] + W.tzzz[idx]; } } void exp_wave(dim D, char *filename, float *P) { // FILE *fp = fopen(filename, "wb"); fwrite(&D.nx, sizeof(float), 1, fp); fwrite(&D.nz, sizeof(float), 1, fp); for(int i = 0; i < D.nz; i++) { fwrite(&P[(i + D.npz + nOrder)*D.Nx + D.npx + nOrder], sizeof(float), D.nx, fp); } fclose(fp); /* FILE *fp = fopen(filename, "wt"); for(int i = 0; i < D.nz; i++) { for(int j = 0; j < D.nx; j++) fprintf(fp, "%lf, ", (double)P[(i + D.npz + nOrder)*D.Nx + D.npx + nOrder + j]); fprintf(fp, "\n"); } fclose(fp); */ } int main(int argc, char *argv[]) { int nx = 500, nz = 600; int npmlx = 20, npmlz = 20; int sx = 80, sz = 80; float dx = 5.0, dz = 5.0; int nt = 1000; float dt = 1.0e-3; int nppw = 12; float ampl = 1.0e0; wave W; media M; dim D; coeff C; factor F; int Nx, Nz; size_t memSize; int i, j; cout << "Input nt = "; cin >> nt; int prod1, prod2; for(int m = 1; m < nOrder + 1; m++) { prod1 = 1; for(i = 1; i <= nOrder; i++) if(i != m) prod1 *= (2*i - 1)*(2*i - 1); prod2 = 1; for(i = 1; i <= nOrder; i++) if(i != m) prod2 *= abs((2*m - 1)*(2*m - 1) - (2*i - 1)*(2*i - 1)); C.C[m - 1] = pow(-1.0, m + 1)*prod1/(2*m - 1)/prod2; } Nx = nx + 2*npmlx + 2*nOrder; Nz = nz + 2*npmlz + 2*nOrder; memSize = Nx*Nz*sizeof(float); D.nx = nx; D.nz = nz; D.Nx = Nx; D.Nz = Nz; D.sx = sx; D.sz = sz; D.npx = npmlx; D.npz = npmlz; D.dx = dx; D.dz= dz; float *Vp = (float*) malloc(memSize); float *Vs = (float*) malloc(memSize); float *Rho = (float*) malloc(memSize); for(i = 0; i < Nx*Nz; i++) { Vp [i] = 2000.0; Vs [i] = 1000.0; Rho[i] = 1000.0; } cudaMalloc((float**) &M.vp , memSize); cudaMalloc((float**) &M.vs , memSize); cudaMalloc((float**) &M.rho, memSize); cudaMemcpy(M.vp , Vp , memSize, cudaMemcpyHostToDevice); cudaMemcpy(M.vs , Vs , memSize, cudaMemcpyHostToDevice); cudaMemcpy(M.rho, Rho, memSize, cudaMemcpyHostToDevice); float *vsmin = Vs, *vsmax = Vs; for(i = 1; i < Nx*Nz; i++) { if(*vsmin > Vs[i]) vsmin = &Vs[i]; if(*vsmax < Vs[i]) vsmax = &Vs[i]; } float f0, t0; f0 = (*vsmin)/(max(dx, dz)*nppw); t0 = 1.0/f0; C.dt = dt; C.d0x = 3*(*vsmax)/dx*(8.0/15 - 3.0/100*npmlx + 1.0/1500*npmlx*npmlx); C.d0z = 3*(*vsmax)/dz*(8.0/15 - 3.0/100*npmlz + 1.0/1500*npmlz*npmlz); cudaMalloc((float**) &F.f0, memSize); cudaMalloc((float**) &F.f1, memSize); cudaMalloc((float**) &F.f2, memSize); cudaMalloc((float**) &F.f3, memSize); cudaMalloc((float**) &F.f4, memSize); cudaMalloc((float**) &F.f5, memSize); cudaMalloc((float**) &F.f6, memSize); cudaMalloc((float**) &F.f7, memSize); cudaMalloc((float**) &F.f8, memSize); cudaMalloc((float**) &F.f9, memSize); cudaMalloc((float**) &W.vxx , memSize); cudaMalloc((float**) &W.vxz , memSize); cudaMalloc((float**) &W.vzx , memSize); cudaMalloc((float**) &W.vzz , memSize); cudaMalloc((float**) &W.txxx, memSize); cudaMalloc((float**) &W.txxz, memSize); cudaMalloc((float**) &W.tzzx, memSize); cudaMalloc((float**) &W.tzzz, memSize); cudaMalloc((float**) &W.txzx, memSize); cudaMalloc((float**) &W.txzz, memSize); cudaMalloc((float**) &W.vxt , memSize); cudaMalloc((float**) &W.vzt , memSize); cudaMalloc((float**) &W.txxt, memSize); cudaMalloc((float**) &W.tzzt, memSize); cudaMalloc((float**) &W.txzt, memSize); dim3 Block(32, 16); dim3 Grid(ceil(1.0*Nx/Block.x), ceil(1.0*Nz/Block.y)); cout << "Block = " << Block.x << " " << Block.y << endl; cout << "Grid = " << Grid.x << " " << Grid.y << endl; float *P; P = (float*) malloc(memSize); float srclet; int sidx = npmlx + sx + nOrder - 1 + (npmlz + sz + nOrder - 1)*D.Nx; pre_eval <<< Grid, Block >>> (W, M, D, C, F); int it = 0; char file[200]; for(i = 0; i*nTimePreSnap < nt; i++) { printf("calculating and exporting for step %5d ...\n", it); for(j = 0; j < nTimePreSnap; j++, it++) { if(it > nt) break; srclet = ampl*(1 - 2*pow(PI*f0*(dt*it - t0), 2))*exp( - pow(PI*f0*(dt*it - t0), 2)); str_eval <<< Grid, Block >>> (W, D, C, sidx, srclet, F); vel_eval <<< Grid, Block >>> (W, D, C, F, sidx); if((it - 1)%nTimePreSnap == 0) { cudaDeviceSynchronize(); sprintf(file, "P%05d.bin", it - 1); cudaMemcpy(P, W.txxt, memSize, cudaMemcpyDeviceToHost); exp_wave(D, file, P); } } } free(Vp); free(Vs); free(Rho); cudaFree(M.vp); cudaFree(M.vs); cudaFree(M.rho); free(P); cudaFree(W.vxx ); cudaFree(W.vxz ); cudaFree(W.vxt ); cudaFree(W.vzx ); cudaFree(W.vzz ); cudaFree(W.vzt ); cudaFree(W.txxx); cudaFree(W.txxz); cudaFree(W.txxt); cudaFree(W.tzzx); cudaFree(W.tzzz); cudaFree(W.tzzt); cudaFree(W.txzx); cudaFree(W.txzz); cudaFree(W.txzt); return 0; }
20,341
#include <thrust/device_vector.h> #include <thrust/host_vector.h> #include <thrust/random/linear_congruential_engine.h> #include <thrust/random/uniform_real_distribution.h> #include <iostream> // nvcc -std=c++14 -O3 tarefa6_multSeed.cu -o t6 && ./t6 struct raw_access { int SEED; __device__ __host__ double operator()(const int &i) { thrust::minstd_rand rng(SEED * i); thrust::uniform_real_distribution<double> dist(0, 1); double x = dist(rng); double y = dist(rng); if (x * x + y * y <= 1) return 1.0; return 0.0; } }; int main() { int N = 100000; thrust::device_vector<double> vetor(N); thrust::counting_iterator<int> iter(0); raw_access ra = {.SEED = 1230}; thrust::transform(iter, iter + vetor.size(), vetor.begin(), ra); double sum = thrust::reduce(vetor.begin(), vetor.end(), 0.0, thrust::plus<double>()); std::cout << sum << "\n"; double pi = (double)4 * sum / N; std::cout << "PI monte carlo: " << pi << "\n"; }
20,342
#include <iostream> #include <math.h> #include <time.h> #include <stdlib.h> #include <random> #include <vector> #include <chrono> #define TILE_DIM 32 __global__ void multiplyNaive(const int *mat_1, const int *mat_2, int *mat_prod, const int n, const int m, const int p) { int x = blockIdx.x * blockDim.x + threadIdx.x; int y = blockIdx.y * blockDim.y + threadIdx.y; if (y < n && x < p) { int sum = 0; for (int i = 0; i < m; i++) { sum += mat_1[y*m+i] * mat_2[i*p+x]; } mat_prod[y*p+x] = sum; } } __global__ void multiplySharedMem(const int *mat_1, const int *mat_2, int *mat_prod, const int n, const int m, const int p, const int start, const int end) { __shared__ int aTile[TILE_DIM][TILE_DIM], bTile[TILE_DIM][TILE_DIM]; int x = blockIdx.x * blockDim.x + threadIdx.x; int y = blockIdx.y * blockDim.y + threadIdx.y; aTile[threadIdx.y][threadIdx.x] = mat_1[y*m+threadIdx.x+start]; bTile[threadIdx.y][threadIdx.x] = mat_2[(threadIdx.y+start)*p+x]; __syncthreads(); int dims_tile = end-start; if (y < n && x < p) { int sum = 0; for (int i = 0; i < dims_tile; i++) { sum += aTile[threadIdx.y][i] * bTile[i][threadIdx.x]; } mat_prod[y*p+x] += sum; } } std::vector<std::vector<int>> random_matrix(const int num_rows, const int num_cols, const int min_val=0.0, const int max_val=1000.0) { std::vector<std::vector<int>> my_arr; static std::random_device rd; static std::mt19937 mte(rd()); std::uniform_int_distribution<int> dist(min_val, max_val); for (int i = 0; i < num_rows; i++) { std::vector<int> my_arr_col; for (int j = 0; j < num_cols; j++) { my_arr_col.push_back(dist(mte)); } my_arr.push_back(my_arr_col); } return my_arr; } bool check_correctness(const int *mat_1, const int *mat_2, int *mat_prod, const int n, const int m, const int p) { for (int i = 0; i < n; i++) { for (int j = 0; j < p; j++) { int sum = 0; for (int k = 0; k < m; k++) { sum += mat_1[i*m+k] * mat_2[k*p+j]; } if (sum != mat_prod[i*p+j]) { return false; } } } return true; } int main(void) { int n = 2000; int m = 1000; int p = 5000; dim3 dimGrid((p + TILE_DIM - 1)/TILE_DIM, (n + TILE_DIM - 1)/TILE_DIM, 1); dim3 dimBlock(TILE_DIM, TILE_DIM, 1); int *mat_1, *mat_2, *mat_prod; cudaMallocManaged(&mat_1, n*m*sizeof(int)); cudaMallocManaged(&mat_2, m*p*sizeof(int)); cudaMallocManaged(&mat_prod, n*p*sizeof(int)); std::vector<std::vector<int>> my_arr_1 = random_matrix(n, m, 0, 10); std::vector<std::vector<int>> my_arr_2 = random_matrix(m, p, 0, 10); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { mat_1[m*i + j] = my_arr_1[i][j]; } } for (int i = 0; i < m; i++) { for (int j = 0; j < p; j++) { mat_2[p*i + j] = my_arr_2[i][j]; } } int num_parts = (m+TILE_DIM-1)/TILE_DIM; cudaStream_t stream[num_parts]; auto t1 = std::chrono::high_resolution_clock::now(); for (int i = 0; i < num_parts; i++) { int start = i*TILE_DIM; int end = m < ((i+1)*TILE_DIM)?m:((i+1)*TILE_DIM); cudaStreamCreate(&stream[i]); multiplySharedMem<<<dimGrid, dimBlock, 0, stream[i]>>>(mat_1, mat_2, mat_prod, n, m, p, start, end); } cudaDeviceSynchronize(); auto t2 = std::chrono::high_resolution_clock::now(); auto duration = std::chrono::duration_cast<std::chrono::milliseconds>( t2 - t1 ).count(); std::cout << duration << std::endl; std::cout << check_correctness(mat_1, mat_2, mat_prod, n, m, p) << std::endl; for (int i = 0; i < num_parts; i++) { cudaStreamDestroy(stream[i]); } cudaFree(mat_1); cudaFree(mat_2); cudaFree(mat_prod); return 0; }
20,343
#include <stdio.h> #include <stdlib.h> #include <cuda_runtime.h> #include <time.h> #define N 10000 __global__ void add(int *d_a, int *d_b, int *d_c){ d_c[blockIdx.x] = d_a[blockIdx.x] + d_b[blockIdx.x]; } int main(){ int *a, *b, *c, *gold_c; int *d_a, *d_b, *d_c; int i; int pass = 1; a = (int*)malloc(N*sizeof(int)); b = (int*)malloc(N*sizeof(int)); c = (int*)malloc(N*sizeof(int)); gold_c = (int*)malloc(N*sizeof(int)); for(i=0; i<N; i++){ a[i] = rand()%100; b[i] = rand()%100; } struct timespec t_start, t_end; double elapsedTimeCPU; // start time clock_gettime( CLOCK_REALTIME, &t_start); for(i=0; i<N; i++){ gold_c[i] = a[i] + b[i]; } // stop time clock_gettime( CLOCK_REALTIME, &t_end); // compute and print the elapsed time in millisec elapsedTimeCPU = (t_end.tv_sec - t_start.tv_sec) * 1000.0; elapsedTimeCPU += (t_end.tv_nsec - t_start.tv_nsec) / 1000000.0; printf("CPU elapsedTime: %lf ms\n", elapsedTimeCPU); cudaMalloc((void**)&d_a, N * sizeof(int)); cudaMalloc((void**)&d_b, N * sizeof(int)); cudaMalloc((void**)&d_c, N * sizeof(int)); cudaMemcpy(d_a, a, N*sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(d_b, b, N*sizeof(int), cudaMemcpyHostToDevice); // Get start time event cudaEvent_t start, stop; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); add<<<N, 1>>>(d_a, d_b, d_c); // Get stop time event cudaEventRecord(stop, 0); cudaEventSynchronize(stop); // Compute execution time float elapsedTime; cudaEventElapsedTime(&elapsedTime, start, stop); printf("GPU time: %13f msec\n", elapsedTime); cudaEventDestroy(start); cudaEventDestroy(stop); cudaMemcpy(c, d_c, N*sizeof(int), cudaMemcpyDeviceToHost); for(i=0; i<N; i++){ if(gold_c[i]!=c[i]){ pass = 0; break; } } if(pass==1) printf("test pass!\n"); else printf("error...\n"); return 0; }
20,344
#include <cuda_runtime_api.h> #include <iostream> //////////////////////////////////////////////////////////////////////////////// // Program main //////////////////////////////////////////////////////////////////////////////// using namespace std; int main( int argc, char** argv) { int deviceCount = 0; cudaError_t error_id = cudaGetDeviceCount(&deviceCount); if ( error_id != cudaSuccess ) { cerr << "cudaGetDeviceCount failed" << endl; return -1; } int driverVersion = 0; int runtimeVersion = 0; cudaDriverGetVersion( &driverVersion ); cudaRuntimeGetVersion( &runtimeVersion ); cout << "CUDA Driver Version = " << driverVersion << endl; cout << "CUDA Runtime Version = " << runtimeVersion << endl; for (int dev = 0; dev < deviceCount; ++dev) { cudaDeviceProp deviceProp; cudaGetDeviceProperties( &deviceProp, dev ); cout << "Device " << dev << ": " << deviceProp.name << endl; cout << " total amount of global memory = " << deviceProp.totalGlobalMem << " Byte" << " = " << deviceProp.totalGlobalMem / ( 1024.0 * 1024.0 ) << " MByte" << endl; cout << " compute capability = " << deviceProp.major << "." << deviceProp.minor << endl; } }
20,345
#include "includes.h" __global__ void vecAddKernel(float* A, float* B, float* C, int n) { // Calculate global thread index based on the block and thread indices ---- //INSERT KERNEL CODE HERE int i = blockDim.x*blockIdx.x+threadIdx.x; // Use global index to determine which elements to read, add, and write --- //INSERT KERNEL CODE HERE if (i<n) C[i] = A[i] + B[i]; }
20,346
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <algorithm> #include <map> #include <iostream>
20,347
#include <iostream> using namespace std; #include <thrust/reduce.h> #include <thrust/sequence.h> #include <thrust/host_vector.h> #include <thrust/device_vector.h> int main() { const int N = 50000; thrust::device_vector<int> a(N); thrust::sequence(a.begin(), a.end(), 0); int sumA = thrust::reduce(a.begin(), a.end(), 0); int sumCheck = 0; for (int i = 0; i < N; i++) sumCheck += i; if (sumA == sumCheck) cout << "Test Succeeded!" << endl; else { cout << "Test Failed" << endl; return 1; } return 0; }
20,348
#include "includes.h" __global__ void sReduceSingle(int *idata,int *single,unsigned int ncols) { int i; unsigned int tid = threadIdx.x; extern __shared__ int sdata[]; unsigned int startPos = blockDim.x + threadIdx.x; int colsPerThread = ncols/blockDim.x; int myPart = 0; for(i=0;i<colsPerThread;i++) { myPart+=idata[startPos+i]; } sdata[tid]=myPart; __syncthreads(); unsigned int s; for(s=blockDim.x/2;s>0;s>>=1) { if(tid<s) { sdata[tid] += sdata[tid+s]; } __syncthreads(); } if(tid==0)*single=sdata[0]; }
20,349
/* This is a automatically generated test. Do not modify */ #include <stdio.h> #include <stdlib.h> #include <math.h> __global__ void compute(float comp, int var_1,float var_2,int var_3,int var_4,float var_5,float var_6,float var_7,float var_8,float var_9,float var_10,float var_11,float var_12,float var_13,float var_14,float var_15,float var_16,float var_17,float var_18) { if (comp < (-1.2964E-35f / var_2)) { for (int i=0; i < var_1; ++i) { comp = (var_5 - (-1.0299E-43f * (-0.0f + acosf((-1.7670E-37f - +1.1236E-8f / -1.0999E-36f - floorf((var_6 + var_7))))))); for (int i=0; i < var_3; ++i) { comp += (var_8 - -1.4604E-44f); } for (int i=0; i < var_4; ++i) { comp += var_9 / +1.0312E-29f; comp = var_10 + var_11; } if (comp <= tanhf(var_12 / sqrtf((var_13 + +1.1098E-27f * (-1.8034E-3f - var_14))))) { comp += +0.0f - atan2f(var_15 + (var_16 + (+1.6843E36f - +1.5738E-21f - var_17 - +1.5894E-37f)), -1.2096E15f); comp = (var_18 / -1.2181E-12f); } } } printf("%.17g\n", comp); } float* initPointer(float v) { float *ret = (float*) malloc(sizeof(float)*10); for(int i=0; i < 10; ++i) ret[i] = v; return ret; } int main(int argc, char** argv) { /* Program variables */ float tmp_1 = atof(argv[1]); int tmp_2 = atoi(argv[2]); float tmp_3 = atof(argv[3]); int tmp_4 = atoi(argv[4]); int tmp_5 = atoi(argv[5]); float tmp_6 = atof(argv[6]); float tmp_7 = atof(argv[7]); float tmp_8 = atof(argv[8]); float tmp_9 = atof(argv[9]); float tmp_10 = atof(argv[10]); float tmp_11 = atof(argv[11]); float tmp_12 = atof(argv[12]); float tmp_13 = atof(argv[13]); float tmp_14 = atof(argv[14]); float tmp_15 = atof(argv[15]); float tmp_16 = atof(argv[16]); float tmp_17 = atof(argv[17]); float tmp_18 = atof(argv[18]); float tmp_19 = atof(argv[19]); compute<<<1,1>>>(tmp_1,tmp_2,tmp_3,tmp_4,tmp_5,tmp_6,tmp_7,tmp_8,tmp_9,tmp_10,tmp_11,tmp_12,tmp_13,tmp_14,tmp_15,tmp_16,tmp_17,tmp_18,tmp_19); cudaDeviceSynchronize(); return 0; }
20,350
__global__ void dijkstra(int* V, int* E, int* W, int* n, int* vis, int* dist, int* predist){ const int u0 = threadIdx.z * blockDim.x * blockDim.y + threadIdx.y * blockDim.x + threadIdx.x; const int offset = blockDim.x * blockDim.y * blockDim.z; __shared__ int quickBreak[1]; int u = -1; for(int i = 0; i < (*n); i++){ quickBreak[0] = 0; u = u0; while(u < *n){ if(vis[u] == 0){ vis[u] = 1; for(int j = V[u]; j < V[u + 1]; j++){ atomicMin(&predist[E[j]], dist[u] + W[j]); } } u += offset; } __syncthreads(); u = u0; while(u < *n){ if(predist[u] < dist[u]){ dist[u] = predist[u]; vis[u] = 0; quickBreak[0] = 1; } u += offset; } __syncthreads(); if(quickBreak[0] == 0) break; __syncthreads(); } } __global__ void divide(int* V, int* E, int* W, int* n, int* flag, int* base, int* part, int* vis, int* dist, int* predist){ const int u0 = threadIdx.z * blockDim.x * blockDim.y + threadIdx.y * blockDim.x + threadIdx.x; const int offset = blockDim.x * blockDim.y * blockDim.z; int u = -1; int l = -1; int r = -1; int localBase = base[0]; int localPart = part[0]; u = u0; //u + l is the vertex index while(u < (*n)){ if(V[u + 1] <= localBase){ // self right u += offset; continue; // illegal } else if(V[u] >= localBase + localPart){ // self left u += offset; continue; // illegal } if(vis[u]){ atomicSub(&vis[u], 1); l = localBase>V[u]?localBase:V[u]; r = (localBase + localPart)<V[u + 1]?(localBase + localPart):V[u + 1]; for(int j = l; j < r; j++){ atomicMin(&predist[E[j - localBase]], dist[u] + W[j - localBase]); } } u += offset; } __syncthreads(); u = u0; while(u < (*n)){ if(predist[u] < dist[u]){ dist[u] = predist[u]; vis[u] = (V[u + 1] + localPart - 1) / localPart - V[u] / localPart; // re calc the ability of updating flag[0] = 1; } u += offset; } }
20,351
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <limits.h> #include <time.h> #define gpuErrchk(ans) { gpuAssert((ans), __FILE__, __LINE__); } inline void gpuAssert(cudaError_t code, const char *file, int line, bool abort=true) { if (code != cudaSuccess) { fprintf(stderr,"GPUassert: %s %s %d\n", cudaGetErrorString(code), file, line); if (abort) exit(code); } } typedef struct Edge { int fromIndex; int toIndex; int departure; int arrival; } Edge; /* ******************************************************************************************************** Cuda functions ******************************************************************************************************** */ __global__ void edgeScan(int n, unsigned int* labels, Edge* edges, int offset) { int i = threadIdx.x + blockDim.x * blockIdx.x; if (i < n) { Edge e = edges[offset + i]; int fromIndex = e.fromIndex; int toIndex = e.toIndex; int departure = e.departure; int arrival = e.arrival; if (departure >= labels[fromIndex]) { atomicMin(&(labels[toIndex]), arrival); } } } __global__ void initLabels(int n, unsigned int* labels) { int i = threadIdx.x + blockDim.x * blockIdx.x; if (i < n) { labels[i] = INT_MAX; } } __global__ void setSource(unsigned int* labels, int source, int time) { labels[source] = time; } /* ******************************************************************************************************** Function Definitions ******************************************************************************************************** */ int stringToInt(char* str, int len); int compare(const void* a, const void* b); // berlin int numOfBatches = 1495; int numOfEdges = 1209980; int numOfVertices = 12746; char file1[] = "e:\\data\\berlin.txt.meta"; char file2[] = "e:\\data\\berlin.txt.edges"; // wikipedia-growth // int numOfBatches = 700; // int numOfEdges = 39953145; // int numOfVertices = 1870709; // char file1[] = "e:\\data\\out.wikipedia-growth.meta"; // char file2[] = "e:\\data\\out.wikipedia-growth.edges"; // munmun_digg_reply // int numOfBatches = 30; // int numOfEdges = 86203; // int numOfVertices = 30360; // char file1[] = "e:\\data\\out.munmun_digg_reply.meta"; // char file2[] = "e:\\data\\out.munmun_digg_reply.edges"; // loans // int numOfBatches = 59; // int numOfEdges = 3343284; // int numOfVertices = 89269; // char file1[] = "e:\\data\\out.prosper-loans.meta"; // char file2[] = "e:\\data\\out.prosper-loans.edges"; // digg-friends // int numOfBatches = 4623; // int numOfEdges = 1731653; // int numOfVertices = 279630; // char file1[] = "e:\\data\\out.digg-friends.meta"; // char file2[] = "e:\\data\\out.digg-friends.edges"; int numOfRuns = 100; const int max_thread = 512; bool printResult = false; /* ******************************************************************************************************** Entry point ******************************************************************************************************** */ int main() { /* ******************************************************************************************************** Read meta file ******************************************************************************************************** */ printf("\nReading file %s...\n", file1); FILE *fp; fp = fopen(file1,"r"); // read mode if(fp == NULL) { perror("Error while opening the file.\n"); exit(EXIT_FAILURE); } int* batchSizes = (int*)malloc(numOfBatches* sizeof(int)); char line[256]; int count = 0; while (fgets(line, sizeof(line), fp) != NULL) { /* note that fgets don't strip the terminating \n, checking its presence would allow to handle lines longer that sizeof(line) */ int size = stringToInt(line, strlen(line) - 1); batchSizes[count] = size; count++; // printf("New batch size added: %d...\n", size); } fclose(fp); /* ******************************************************************************************************** Read data file ******************************************************************************************************** */ printf("\nReading file %s...\n", file2); fp = fopen(file2,"r"); // read mode if(fp == NULL) { perror("Error while opening the file.\n"); exit(EXIT_FAILURE); } Edge* edges = (Edge *)malloc(numOfEdges * sizeof(Edge)); // Initialize all values of the array to 0 // for(int i = 0; i < numOfEdges; i++) { // memset(&(edges[i]),0,sizeof(Edge)); // } count = 0; while (fgets(line, sizeof(line), fp) != NULL) { /* note that fgets don't strip the terminating \n, checking its presence would allow to handle lines longer that sizeof(line) */ char copy[256] = ""; strncpy(copy, line, strlen(line)); char* parts; parts = strtok(copy," "); if (parts != NULL) { edges[count].fromIndex = stringToInt(parts, strlen(parts)); parts = strtok(NULL, " "); edges[count].toIndex = stringToInt(parts, strlen(parts)); parts = strtok(NULL, " "); edges[count].departure = stringToInt(parts, strlen(parts)); parts = strtok(NULL, " "); edges[count].arrival = stringToInt(parts, strlen(parts) - 1); } count++; } fclose(fp); /* ******************************************************************************************************** Get shortest paths ******************************************************************************************************** */ // GPU implementation unsigned int* labels = (unsigned int*)malloc(numOfVertices * sizeof(unsigned int)); unsigned int* gpuLabels; Edge* gpuEdges; const int labelSize = numOfVertices * sizeof(unsigned int); const int edgeSize = numOfEdges * sizeof(Edge); gpuErrchk(cudaMalloc((void**)&gpuLabels, labelSize)); gpuErrchk(cudaMalloc((void**)&gpuEdges, edgeSize)); gpuErrchk(cudaMemcpy(gpuEdges, edges, edgeSize, cudaMemcpyHostToDevice)); gpuErrchk(cudaDeviceSynchronize()); clock_t begin, end; double time_spent; begin = clock(); for (int i = 0; i < numOfRuns; i++) { // Initialize labels initLabels<<<numOfVertices / max_thread + 1, max_thread>>>(numOfVertices, gpuLabels); gpuErrchk(cudaPeekAtLastError()); gpuErrchk(cudaDeviceSynchronize()); // end = clock(); // time_spent = (double)(end - begin) / CLOCKS_PER_SEC; // printf("Up to init label running time: %f\n", time_spent); setSource<<<1, 1>>>(gpuLabels, i, 0); gpuErrchk(cudaPeekAtLastError()); gpuErrchk(cudaDeviceSynchronize()); // end = clock(); // time_spent = (double)(end - begin) / CLOCKS_PER_SEC; // printf("Up to set source running time: %f\n", time_spent); // Start edge scan int offset = 0; for (int j = 0; j < numOfBatches; j++) { int size = batchSizes[j]; edgeScan<<<size / max_thread + 1, max_thread>>>(size, gpuLabels, gpuEdges, offset); gpuErrchk(cudaPeekAtLastError()); gpuErrchk(cudaDeviceSynchronize()); offset = offset + size; } // end = clock(); // time_spent = (double)(end - begin) / CLOCKS_PER_SEC; // printf("Up to GPU computing running time: %f\n", time_spent); gpuErrchk(cudaMemcpy(labels, gpuLabels, labelSize, cudaMemcpyDeviceToHost)); gpuErrchk(cudaDeviceSynchronize()); if (printResult) { int numOfReachable = 0; for (int j = 0; j < numOfVertices; j++) { //printf("Label[%d]=%d\n", j, labels[j]); if (labels[j] != INT_MAX) { numOfReachable++; } } printf("Number of reachable vertices: %d...\n", numOfReachable); } } end = clock(); time_spent = (double)(end - begin) / CLOCKS_PER_SEC; printf("Total running time: %f\n", time_spent); // Clean up GPU memory cudaFree(gpuLabels); cudaFree(gpuEdges); //cudaFree(gpuBatchSizes); cudaDeviceSynchronize(); /* ******************************************************************************************************** Cleanup ******************************************************************************************************** */ free(labels); free(batchSizes); free(edges); return 0; } int stringToInt(char* str, int len) { int size = 0; for(int i = 0; i < len; i++) { size = size * 10 + (str[i] - '0'); } return size; } int compare(const void* a, const void* b) { int int_a = * ( (int*) a ); int int_b = * ( (int*) b ); if ( int_a == int_b ) return 0; else if ( int_a < int_b ) return -1; else return 1; }
20,352
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <device_functions.h> #include <device_launch_parameters.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <cuda.h> CUcontext hContext = 0; #define CUDA_CHECK( fn ) do { \ CUresult status = (fn); \ if ( CUDA_SUCCESS != status ) { \ const char* errstr; \ cuGetErrorString(status, &errstr); \ printf("CUDA Driver Failure (line %d of file %s):\n\t%s returned 0x%x (%s)\n", __LINE__, __FILE__, #fn, status, errstr); \ exit(EXIT_FAILURE); \ } \ } while (0) void gflops(const char* ident, int N, float ms, int repeat) { double msecPerMatrixMul = ms / repeat; long int Gflops = (128*16*1024)*1024*2.0*1e-9f;//*2 for MUL and ADD double gigaFlops = (Gflops) / (msecPerMatrixMul) * 1000.0f ; printf("ms = %f \n", msecPerMatrixMul); printf("%s GFLOPS: %.2f (size: %d, iterations: %d)\n", ident, gigaFlops, N, repeat); } int main() { //-----------------sample_data_config--------------------- int NBLOCK = 1024; int N = 2048*NBLOCK + 1024*30;//1024032;//1023985; 160768.0*4/1024/1024=0.61328125MB int M = 1024;//16; int P = 2048*NBLOCK; size_t sizeSampleFloat = N * sizeof(float); size_t sizeFilterFloat = M * sizeof(float);//16 * 4; size_t sizeResultFloat = P * sizeof(float); int repeat = 4; dim3 threads(128, 1, 1); dim3 grid(NBLOCK, 1, 1); cudaError_t error; char deviceName[32]; int count, ordinal, major, minor; CUdevice hDevice; CUevent hStart, hStop; CUdeviceptr devH, devX, devY; // ------Initialize the Driver API and find a device----- CUDA_CHECK(cuInit(0)); CUDA_CHECK(cuDeviceGetCount(&count)); for (ordinal = 0; ordinal < count; ordinal++) { CUDA_CHECK(cuDeviceGet(&hDevice, ordinal)); CUDA_CHECK(cuDeviceGetAttribute(&major, CU_DEVICE_ATTRIBUTE_COMPUTE_CAPABILITY_MAJOR, hDevice)); CUDA_CHECK(cuDeviceGetAttribute(&minor, CU_DEVICE_ATTRIBUTE_COMPUTE_CAPABILITY_MINOR, hDevice)); CUDA_CHECK(cuDeviceGetName(deviceName, sizeof(deviceName), hDevice)); if (major >= 5 && minor >= 2) { //printf("Using: Id:%d %s (%d.%d)\n\n", ordinal, deviceName, major, minor); break; } } if (ordinal == count) { printf("No compute 5.0 device found, exiting.\n"); exit(EXIT_FAILURE); } //-----------------device_test------------------------ int device = 0; error = cudaSetDevice(0); if (error != cudaSuccess) { printf("device error"); exit(EXIT_FAILURE); } else printf("device: %d \n", device); cudaDeviceProp deviceProp; error = cudaGetDeviceProperties(&deviceProp, 0); if (error != cudaSuccess) { printf("DeviceProperties error"); exit(EXIT_FAILURE); } //-----------------------host---------------------------- float* H = (float*)malloc(sizeFilterFloat); float* X = (float*)malloc(sizeSampleFloat); float* Y = (float*)malloc(sizeResultFloat); float* T = (float*)malloc(sizeResultFloat); for (int i = 0; i < N ; i++) // { X[i] = (float)rand()/1000;//(float)1.0;// //if(X[i] == (float)16) X[i]=0; } for (int i = 0; i < M; i++) // { H[i] = (float)rand()/1000;//(float)i;// (i % 2);//(float)rand();//(float)1.0;// } for (int i = 0; i < P; i++) // { Y[i] = (float)0.0; T[i] = (float)0.0; } //conv calculate for (int i = 0; i < P; i++) { int k = i; for (int j = 1024; j > 0; j--) { T[i] += H[j - 1] * X[k]; k++; } } //-----------------------Dev---------------------------- CUDA_CHECK(cuCtxCreate(&hContext, 0, hDevice)); CUDA_CHECK(cuEventCreate(&hStart, CU_EVENT_BLOCKING_SYNC)); // CU_EVENT_DEFAULT CUDA_CHECK(cuEventCreate(&hStop, CU_EVENT_BLOCKING_SYNC)); CUDA_CHECK(cuMemAlloc(&devH, sizeFilterFloat)); CUDA_CHECK(cuMemAlloc(&devX, sizeSampleFloat)); CUDA_CHECK(cuMemAlloc(&devY, sizeResultFloat)); CUDA_CHECK(cuMemcpyHtoD(devH, H, sizeFilterFloat)); CUDA_CHECK(cuMemcpyHtoD(devX, X, sizeSampleFloat)); //---------------------Kernel---------------------------- printf("Computing result using CUDA Kernel...\n"); // Load the cubin CUmodule hModule; CUDA_CHECK(cuModuleLoad(&hModule, "conv.cubin")); // Load the kernel function CUfunction hKernel; CUDA_CHECK(cuModuleGetFunction(&hKernel, hModule, "conv_kernel_128")); void * params[] = {&devH, &devX, &devY}; float totalTime = 0; // Launch the kernel repeat times.. but break it up into pieces so as not to lock things up. CUDA_CHECK(cuEventCreate(&hStart, CU_EVENT_BLOCKING_SYNC)); // CU_EVENT_DEFAULT CUDA_CHECK(cuEventCreate(&hStop, CU_EVENT_BLOCKING_SYNC)); while (repeat > 0) { float ms; int r = repeat; CUDA_CHECK(cuEventRecord(hStart, NULL)); for (int i = 0; i < repeat; i++) CUDA_CHECK(cuLaunchKernel(hKernel, grid.x, 1, 1, threads.x, 1, 1, 0, 0, params, 0)); CUDA_CHECK(cuEventRecord(hStop, NULL)); CUDA_CHECK(cuEventSynchronize(hStop)); CUDA_CHECK(cuEventElapsedTime(&ms, hStart, hStop)); totalTime += ms; //gflops("conv_kernel_128", P, totalTime, repeat); repeat -= r; } //CUDA_CHECK(cuLaunchKernel(hKernel, grid.x, grid.y, 1, threads.x, 1, 1, 0, 0, params, 0)); //CUDA_CHECK(cuLaunchKernel(hKernel, grid.x, grid.y, 1, threads.x, 1, 1, 0, 0, params, 0)); CUDA_CHECK(cuModuleUnload(hModule)); // Copy result from device to host CUDA_CHECK(cuMemcpyDtoH(Y, devY, sizeResultFloat)); //CUDA_CHECK(cuMemcpyDtoH(H, devH, sizeFilterFloat)); //CUDA_CHECK(cuMemcpyDtoH(X, devX, sizeSampleFloat)); //for (int i = 0; i<20; i++) { //if (Y[i] != 0.0f) // printf("Y[%d] = %f \n", i, Y[i]); //} //for (int i = 2048*0; i<2048*780; i++) { // if (Y[i] != T[i])//1024.0f) // printf("Y[%d] = %f \n", i, Y[i]); //} //-----------------------free---------------------------- // Cleanup and shutdown of cuda CUDA_CHECK(cuMemFree(devH)); CUDA_CHECK(cuMemFree(devX)); CUDA_CHECK(cuMemFree(devY)); for (int i = 0; i<1024*1; i++) printf("Y[%d] = %f --- and --- T[%d] = %f error = %f\n", i, Y[i], i, T[i], T[i] - Y[i]); for (int i = 0; i<P; i++) { if ( (Y[i]-T[i] > 1) || (Y[i]-T[i] < -1) ) printf("Y[%d] = %f --- but --- T[%d] = %f error = %f\n", i, Y[i], i, T[i], T[i] - Y[i]); } //for (int i = 2048*0; i<2048*1; i++) { //if (Y[i] != 1024.0f) // printf("T[%d] = %f \n", i, T[i]); //} free(H); free(X); free(Y); free(T); CUDA_CHECK(cuEventDestroy(hStart)); CUDA_CHECK(cuEventDestroy(hStop)); CUDA_CHECK(cuCtxDestroy(hContext)); hContext = 0; cudaDeviceReset(); printf("done\n"); return EXIT_SUCCESS; }
20,353
#include <cuda.h> #include <stdio.h> #include <iostream> #include <string> #include <cstdio> #include <cstdlib> __global__ void calc(int *dA){ int index = blockIdx.x * blockDim.x + threadIdx.x; dA[index] = blockIdx.x + threadIdx.x; } int main(void) { using namespace std; int *dA; int size = sizeof(int); cudaMalloc(&dA, 16 * size); calc <<< 2 , 8 >>>(dA); cudaDeviceSynchronize(); int *hA = (int *)malloc(16 * size); cudaMemcpy(hA, dA, 16*sizeof(int), cudaMemcpyDeviceToHost); for (int i = 0; i < 16; i++) { if (i < 15) cout << hA[i] << " "; else { cout << hA[i] << endl; } } free(hA); cudaFree(&dA); return 0; }
20,354
#define _POSIX_C_SOURCE 200809L #include <stdio.h> #include <cuda.h> #include <string> #include <iostream> #include <fstream> #include "f_eval.cuh" using namespace std; __inline__ __host__ __device__ double f_eval(double* p_x, int m); double* readFile(string input, int *m, int *n); void writeFile(string output, double* A, int m, int n); int main(int argc, char* argv[]) { if(argc != 4){ printf("USAGE: %s <inputArray.inp> <outfile> <epsilon>\n", argv[0]); return 1; } string inputFN = argv[1]; string outputFN = argv[2]; double epsilon = atof(argv[3]); int m, n; // Read file double* A = readFile(inputFN, &m, &n); double *B = (double*)malloc(sizeof(double)*m*n); struct timespec start, stop; double time = 0; clock_gettime(CLOCK_MONOTONIC, &start); for(int i = 0; i < n; i++){ for(int j = 0; j < m; j++){ A[i*m+j] += epsilon; B[i*m+j] = f_eval(A+i*m,m); A[i*m+j] -= 2*epsilon; B[i*m+j] -= f_eval(A+i*m,m); A[i*m+j] += epsilon; B[i*m+j] /= 2*epsilon; } } clock_gettime(CLOCK_MONOTONIC, &stop); time += (stop.tv_sec - start.tv_sec) * 1000; time += (stop.tv_nsec - start.tv_nsec) / 1000.0 / 1000.0; writeFile(outputFN, B, m, n); cout << n << "," << m << "," << time << endl; free(A); free(B); A = NULL; B = NULL; } double* readFile(string input, int *m, int *n){ string line; ifstream in (input); if (in.is_open()) { //read n getline(in,line); *n = atoi(line.c_str()); //read m getline(in,line); *m = atoi(line.c_str()); // Allocate pinned memory double *A = (double*)malloc(sizeof(double)*(*m)*(*n)); for(int i = 0; i < *n; i++){ for(int j = 0; j < *m-1; j++){ getline(in,line,','); A[i*(*m)+j] = atof(line.c_str()); } getline(in,line); A[(i+1)*(*m)-1] = atof(line.c_str()); } in.close(); return A; } else{ *m = -1; *n = -1; cout << "Unable to open input file!"; return NULL; } } void writeFile(string output, double* A, int m, int n){ ofstream out (output); for(int i = 0; i < n; i++){ for(int j = 0; j < m-1; j++){ out << A[i*m+j] << ","; } out << A[(i+1)*m-1] << endl; } out.close(); }
20,355
#include <stdlib.h> #include <stdio.h> #include <cuda.h> // allocate memory on gpu extern "C++" void cu_safe_falloc(float **g_f, size_t n_elem) { void *gptr; cudaError_t crc = cudaMalloc(&gptr, n_elem*sizeof(float)); if(crc) { printf("cudaMalloc Error=%d:%s\n", crc, cudaGetErrorString(crc)); exit(1); } *g_f = (float*) gptr; } // free memory on gpu extern "C++" void cu_free(void *g_d) { cudaError_t crc = cudaFree(g_d); if (crc) { printf("cudaFree Error=%d:%s\n", crc, cudaGetErrorString(crc)); exit(1); } } // copy from cpu space f to gpu space g_f extern "C++" void memcpy_htod(float *g_f, float *f, size_t n_elem) { cudaError_t crc = cudaMemcpy((void*)g_f, f, sizeof(float)*n_elem, cudaMemcpyHostToDevice); if (crc) { printf("cudaMemcpyHostToDevice float Error=%d:%s\n",crc, cudaGetErrorString(crc)); exit(1); } } // copy from gpu space g_f to cpu space f extern "C++" void memcpy_dtoh(float *f, float *g_f, size_t n_elem) { cudaError_t crc = cudaMemcpy(f, (void*)g_f, sizeof(float)*n_elem, cudaMemcpyDeviceToHost); if (crc) { printf("cudaMemcpyDeviceToHost float Error=%d:%s\n",crc, cudaGetErrorString(crc)); exit(1); } return; }
20,356
#include <stdio.h> #include <ctime> #define CUDA_KERNEL_LOOP(i, n) \ for (int i = blockIdx.x * blockDim.x + threadIdx.x; \ i < (n); \ i += blockDim.x * gridDim.x) __global__ void distance(float *xSquare, float *ySquare, int *result, int testNum) { // int tid = threadIdx.x; // int bid = blockIdx.x; // int idx = tid + blockDim.x * bid; // printf("idx is: %d\n", idx); CUDA_KERNEL_LOOP(index, testNum) { // if (index < num) { float temp = (xSquare[index] - 1) * (xSquare[index] - 1) + (ySquare[index] - 1) * (ySquare[index] - 1); if (temp < 1) { result[index] = 1; } else { result[index] = 0; // printf("**********************************************************"); } } } } __global__ void sum_array(int *a, int *b, int testNum) { int tid = threadIdx.x; b[0] = 0; __shared__ float sData[512]; for (int count = 0; count < ceilf(testNum / 512); count++) { if (tid + count * 512 < testNum) { sData[tid] = a[tid + count * 512]; __syncthreads(); } for (int i = 512 / 2; i > 0; i /= 2) { if (tid < i) { sData[tid] = sData[tid] + sData[tid + i]; } __syncthreads(); } if (tid == 0) { b[0] += sData[0]; } } } int main(int argc, char* argv[]) { int testNum = 100000000; srand((int)time(0)); float *xSquare = new float[testNum]; float *ySquare = new float[testNum]; for (int i = 0; i < testNum; i++) { xSquare[i] = rand() % 10000 * 1.0 / 10000; ySquare[i] = rand() % 10000 * 1.0 / 10000; } float *xSquareGpu; cudaMalloc((void**)&xSquareGpu, testNum * sizeof(float)); cudaMemcpy(xSquareGpu, xSquare, testNum * sizeof(float), cudaMemcpyHostToDevice); float *ySquareGpu; cudaMalloc((void**)&ySquareGpu, testNum * sizeof(float)); cudaMemcpy(ySquareGpu, ySquare, testNum * sizeof(float), cudaMemcpyHostToDevice); int threadNum = 1024; int blockNum = 512; int *resultGpu; cudaMalloc((void**)&resultGpu, testNum * sizeof(int)); distance<<<blockNum, threadNum>>>(xSquareGpu, ySquareGpu, resultGpu, testNum); int *result = new int[testNum]; cudaMemcpy(result, resultGpu, testNum * sizeof(int), cudaMemcpyDeviceToHost); for (int i = 0; i < 10; i++) { printf("result[%d] is %d\n", i, result[i]); } int *bGpu; cudaMalloc((void**)&bGpu, 1 * sizeof(int)); sum_array<<<1, 512>>>(resultGpu, bGpu, testNum); int b[1]; cudaMemcpy(b, bGpu, 1 * sizeof(int), cudaMemcpyDeviceToHost); printf("the b[0] is: %d\n", b[0]); printf("the appropriate pi is: %2.6f\n", float(b[0])/testNum*4); return 0; }
20,357
#include "includes.h" #ifndef __CUDACC__ #define __CUDACC__ #endif // generate a random square matrix __global__ void matMulKernel4(float* P, float* M, float* N, int width) { __shared__ float Mds4[4][4]; __shared__ float Nds4[4][4]; int bx = blockIdx.x; int by = blockIdx.y; int tx = threadIdx.x; int ty = threadIdx.y; int row = by*4 + ty; int col = bx*4 + tx; float pVal = 0; for(int ph = 0; ph < width/4; ++ph) { Mds4[ty][tx] = M[row*width + ph*4 + tx]; Nds4[ty][tx] = N[(ph*4 + ty)*width + col]; __syncthreads(); for(int k = 0; k < 4; ++k) pVal += Mds4[ty][k]*Nds4[k][tx]; __syncthreads(); } P[row*width + col] = pVal; }
20,358
#include <thrust/tuple.h> #include <thrust/device_vector.h> #include <thrust/host_vector.h> #include <thrust/transform.h> #include <thrust/fill.h> #include <thrust/iterator/zip_iterator.h> #include <cstdio> #define N 32 struct rotate_tuple { __host__ __device__ thrust::tuple<float, float, float> operator()(thrust::tuple<float&, float&, float&> t) { float x = thrust::get<0>(t); float y = thrust::get<1>(t); float z = thrust::get<2>(t); float rx = 0.36 * x + 0.48 * y - 0.80 * z; float ry = -0.80f * x + 0.60 * y + 0.00f * z; float rz = 0.48f * x + 0.64f * y + 0.60f * z; return thrust::make_tuple(rx, ry, rz); } }; struct range_functor { float h; range_functor(float _h) : h(_h) {} __host__ __device__ float operator() (float x) { return x * h; } }; int main() { thrust::device_vector<float> x(N), y(N), z(N); thrust::fill(x.begin(), x.end(), 2.0); thrust::fill(y.begin(), y.end(), 3.0); thrust::fill(z.begin(), z.end(), 5.0); thrust::transform( thrust::make_zip_iterator( thrust::make_tuple(x.begin(), y.begin(), z.begin() )), thrust::make_zip_iterator( thrust::make_tuple(x.end(), y.end(), z.end() )), thrust::make_zip_iterator( thrust::make_tuple(x.begin(), y.begin(), z.begin() )), rotate_tuple() ); thrust::host_vector<float> hx(N), hy(N), hz(N); hx = x; hy = y; hz = z; for (int i = 0; i < N; i++) printf("%g\t%g\t%g\n", hx[i], hy[i], hz[i]); return 0; }
20,359
// CUDA programming // Exercise n. 02 #include <errno.h> #include <cuda.h> #include <stdio.h> #define BLOCKS 1 #define THREADS 1 // Prototype __global__ void add(int *a, int *b, int *c); int main(void) { int a, b, c; // host copies of a, b, c int *d_a, *d_b, *d_c; // device copies of a, b, c int size = sizeof(int); // Setup input values a = 5; b = 9; // Allocate space for device copies of a, b, c cudaMalloc((void **)&d_a, size); cudaMalloc((void **)&d_b, size); cudaMalloc((void **)&d_c, size); // Copy inputs to device cudaMemcpy(d_a, &a, size, cudaMemcpyHostToDevice); cudaMemcpy(d_b, &b, size, cudaMemcpyHostToDevice); // Call the kernel on GPU add<<< BLOCKS, THREADS >>>(d_a, d_b, d_c); // Copy result back to host cudaMemcpy(&c, d_c, size, cudaMemcpyDeviceToHost); // Cleanup cudaFree(d_a); cudaFree(d_b); cudaFree(d_c); return(EXIT_SUCCESS); } // Addition (on device) __global__ void add(int *a, int *b, int *c) { *c = *a + *b; }
20,360
#include <string.h> #include <stdlib.h> #include <math.h> #include <stdint.h> #include <stdio.h> #include <unistd.h> // ********************************************** // For floats vector on device // ********************************************** typedef struct { float x; float y; float z; } Vec; __device__ Vec vec_add(Vec v1, Vec v2) { Vec res; res.x = v1.x + v2.x; res.y = v1.y + v2.y; res.z = v1.z + v2.z; return res; } __device__ Vec vec_sub(Vec v1, Vec v2) { Vec res; res.x = v1.x - v2.x; res.y = v1.y - v2.y; res.z = v1.z - v2.z; return res; } __device__ Vec vec_scale(Vec v, float i) { Vec res; res.x = i * v.x; res.y = i * v.y; res.z = i * v.z; return res; } __device__ float random_float(uint64_t * seed){ const uint64_t m = 9223372036854775808ULL; const uint64_t a = 2806196910506780709ULL; const uint64_t c = 1ULL; *seed = (a * (*seed) + c)%m; float res = (float) (*seed)/(float)m; return res; } __device__ uint64_t forward(uint64_t seed, uint64_t n){ const uint64_t m = 9223372036854775808ULL; uint64_t a = 2806196910506780709ULL; uint64_t c = 1ULL; n = n % m; uint64_t a_new = 1; uint64_t c_new = 0; while(n>0){ if(n & 1){ a_new *= a; c_new = c_new *a + c; } c *= (a + 1); a *= a; n >>= 1; } return (a_new * seed + c_new) % m; } __device__ Vec vec_sample_unit(uint64_t i) { Vec res; uint64_t seed = forward(i, i*200); float pho = random_float(&seed) * 2 * 3.141592653; float cos_theta = random_float(&seed) * 2 - 1; float sin_theta = sqrt( 1 - cos_theta * cos_theta); res.x = sin_theta * cos(pho); res.y = sin_theta * sin(pho); res.z = cos_theta; return res; } __device__ float vec_dot_product(Vec v1, Vec v2) { float res; res = v1.x * v2.x + v1.y * v2.y + v1.z * v2.z; return res; } __device__ float vec_norm(Vec v) { float res; res = sqrt(v.x * v.x + v.y * v.y + v.z * v.z); return res; } // ********************************************** // ray_trace_kernel // ********************************************** inline void cuchk(cudaError_t err){ if (err != cudaSuccess) { printf("%s in %s at line %d\n", cudaGetErrorString(err), __FILE__, __LINE__); exit(EXIT_FAILURE); } } __global__ void ray_trace_kernel(float* d_window, int width, int ray_num) { //tried to use the shared mem, but it's too small to store the whole window 1000*1000*4bytes = 4 mb //issue the threads to do the work __shared__ int ray_chunck; __shared__ Vec C; __shared__ Vec L; __shared__ float w_y; __shared__ float w_max; __shared__ float R; int tx = blockIdx.x * gridDim.x + threadIdx.x; ray_chunck = ray_num/gridDim.x; C.x = 0.0; C.y = 12.0; C.z = 0.0; L.x = 4.0; L.y = 4.0; L.z = -1; w_y = 10; w_max = 10; R = 6.0; for (int i = 0; i < ray_chunck; i+=blockDim.x*gridDim.x){ Vec V, W; uint64_t seed = tx; while(1){ seed += ray_num; V = vec_sample_unit(seed); if (V.y == 0) continue; W = vec_scale(V, (w_y/V.y)); float temp = vec_dot_product(V, C); if (fabs(W.x) < w_max && fabs(W.z) < w_max && temp * temp + R * R - vec_dot_product(C,C) > 0) break; } float temp2 = vec_dot_product(V,C); float t = temp2 - sqrt(temp2 * temp2 + R * R - vec_dot_product(C,C)); Vec II = vec_scale(V, t); Vec N = vec_scale(vec_sub(II,C), 1.0/vec_norm(vec_sub(II,C))); Vec S = vec_scale(vec_sub(L,II), 1.0/vec_norm(vec_sub(L,II))); float b = vec_dot_product(S,N); b = 0 >= b ? 0 : b; int x = floor((W.x + w_max) /(2 * w_max) * (width - 1)); int z = floor((W.z + w_max) /(2 * w_max) * (width - 1)); atomicAdd(&d_window[x*width + z], b); } } // ********************************************** // get the args // ********************************************** void get_input(int argc, char *argv[], int* num_rays, int* len, int *grid_dim, int *block_dim){ *num_rays = 1000000; *len = 1000; *grid_dim = -1; *block_dim = 256; int opt; while((opt = getopt(argc, argv, "r:l:g:b:")) != -1) { switch (opt) { case 'r': *num_rays = atoi(optarg); break; case 'l': *len = atoi(optarg); break; case 'g': *grid_dim = atoi(optarg); break; case 'b': *block_dim = atoi(optarg); break; default:break; } } if (*grid_dim == -1) { *grid_dim = (*num_rays + *block_dim-1) / *block_dim; } } int main(int argc, char* argv[]) { int num_rays; int len; int grid_dim; int block_dim; get_input(argc, argv, &num_rays, &len, &grid_dim, &block_dim); size_t size = len * len * sizeof(float); float* d_window; cudaMalloc((void **) &d_window, size); cudaMemset((void *) d_window, 0.0, size); cudaEvent_t start ,end; cudaEventCreate(&start); cudaEventCreate(&end); cudaEventRecord(start, 0); ray_trace_kernel<<<grid_dim,block_dim>>>(d_window, len, num_rays); cudaEventRecord(end, 0); float time; cudaEventSynchronize(end); cudaEventElapsedTime(&time, start, end); time = time / 1000; printf("ray_num\tgrid_dim\tblock_dim\ttime\n"); printf("%d\t%d\t%d\t%f\n", num_rays, grid_dim, block_dim, time); float* window = (float*) malloc(size); cudaMemcpy(window, d_window, size, cudaMemcpyDeviceToHost); char filename[] = "ball.dat"; FILE *f = fopen(filename, "wb"); if (f != NULL) { fwrite(window, sizeof(float), len * len, f); fclose(f); } else { fprintf(stderr, "Error opening %s: ", filename); perror(""); free(window); cuchk(cudaFree(d_window)); exit(EXIT_FAILURE); } free(window); cuchk(cudaFree(d_window)); return 0; }
20,361
#include <iostream> #include <cstdio> #include <cstring> #include <thrust/device_vector.h> // --------------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------- Kernels ---------------------------------------------------------------- // Compute an histogram of how many 0's and 1's are set using the current mask __global__ void Gpu_Histogram (unsigned int *in, unsigned int *bins, const unsigned int mask, const int i) { int tid = threadIdx.x; unsigned int bin = (in[tid] & mask) >> i; atomicAdd(&bins[bin],1); } // Compute an exclusive scan on the input array and store the result on the output array __global__ void Gpu_ExScan (unsigned int *in, unsigned int *out, const size_t n) { extern __shared__ unsigned int cache2[]; int tid = threadIdx.y * blockDim.x + threadIdx.x; int offset = 1; // Load the input into shared memory cache2[2*tid] = in[2*tid]; cache2[2*tid+1] = in[2*tid+1]; __syncthreads(); // Build sum in place up the tree for (int d = n >> 1; d > 0; d >>= 1) { __syncthreads(); if (tid < d) { int ai = offset*(2*tid+1)-1; int bi = offset*(2*tid+2)-1; cache2[bi] += cache2[ai]; } offset *= 2; } // Clear the last element if (tid == 0) { cache2[n-1] = 0; } // Transverse down and build scan for (int d = 1; d < n; d *= 2) { offset >>= 1; __syncthreads(); if (tid < d) { int ai = offset*(2*tid+1)-1; int bi = offset*(2*tid+2)-1; // Avoiding read-write bugs int aux = cache2[ai]; cache2[ai] = cache2[bi]; cache2[bi] += aux; } } __syncthreads(); // Write results to output out[2*tid] = cache2[2*tid]; out[2*tid+1] = cache2[2*tid+1]; offset = out[1]; //__syncthreads(); //if (tid == 0) // printf("Binscan 0 = %u || Binscan 1 = %u\n",out[0],out[1]); } // Calculate the predicate of each element on the input __global__ void Gpu_Predicate (unsigned int *in, unsigned int *out, unsigned int *nout, const int mask, const int i) { int tid = threadIdx.x; // Predicate format = Check if the ith bit of the element is set unsigned int bit = (in[tid] & mask) >> i; out[tid] = bit; nout[tid] = !bit; } // Map the correct position of each element on input based on the scan array of the predicate __global__ void Gpu_Mapping (unsigned int *in, unsigned int *out, unsigned int *bscan, unsigned int *scan, unsigned int *nscan, const int mask, const int i) { int tid = threadIdx.x; unsigned int bit = (in[tid] & mask) >> i; // If bit is 1, than pred[tid] is active if (bit) { int offset = bscan[1]; out[scan[tid] + offset] = in[tid]; } // Bit 0 is active in npred[tid] else { out[nscan[tid]] = in[tid]; } } // --------------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------- CPU Functions ---------------------------------------------------------- void Print (unsigned int *v, unsigned int N) { for (int i = 0; i < N; i++) printf("%4u\n",v[i]); printf("\n"); } void GetInput (unsigned int *v, unsigned int N) { for (int i = 0; i < N; i++) scanf("%u",&v[i]); } void Swap (unsigned int* &a, unsigned int* &b) { unsigned int *temp = a; a = b; b = temp; } void RadixSort (unsigned int *in, unsigned int *out, const unsigned int N) { // Define kernel dimension dim3 gridSize(1,1); dim3 blockSize(N,1); const int numBits = 1; const int numBins = 2; // Shared memory sizes size_t sizeBins = sizeof(unsigned int)*numBins; size_t sizeN = sizeof(unsigned int)*N; // Allocate GPU memory unsigned int *binHistogram, *binScan, *pred, *npred, *scan, *nscan; cudaMalloc(&binHistogram,sizeof(unsigned int)*numBins); cudaMalloc(&binScan,sizeof(unsigned int)*numBins); cudaMalloc(&pred,sizeof(unsigned int)*N); cudaMalloc(&npred,sizeof(unsigned int)*N); cudaMalloc(&scan,sizeof(unsigned int)*N); cudaMalloc(&nscan,sizeof(unsigned int)*N); for (int i = 0; i < 8 * sizeof(unsigned int); i += numBits) { unsigned int mask = numBits << i; // Reset the bins cudaMemset(binHistogram,0,sizeof(unsigned int)*numBins); cudaMemset(binScan,0,sizeof(unsigned int)*numBins); // Call kernel to compute histogram Gpu_Histogram<<<gridSize,blockSize>>>(in,binHistogram,mask,i); // Call kernel to compute the exclusive scan on the histogram Gpu_ExScan<<<1,numBins,2*sizeBins>>>(binHistogram,binScan,numBins); // Call kernel that calculate the predicate Gpu_Predicate<<<gridSize,blockSize>>>(in,pred,npred,mask,i); // Call kernel to compute the exclusive scan on the predicates Gpu_ExScan<<<gridSize,blockSize,sizeN>>>(pred,scan,N); Gpu_ExScan<<<gridSize,blockSize,sizeN>>>(npred,nscan,N); // Call kernel to do the final mapping using the scan array Gpu_Mapping<<<gridSize,blockSize>>>(in,out,binScan,scan,nscan,mask,i); Swap(out,in); } cudaMemcpy(out,in,sizeof(unsigned int)*N,cudaMemcpyDeviceToDevice); // Free memory cudaFree(binHistogram); cudaFree(binScan); cudaFree(pred); cudaFree(npred); cudaFree(scan); cudaFree(nscan); } void Usage (char pName[]) { printf("============================================\n"); printf("Usage:> %s < 'input_filename'\n",pName); printf("Example:> %s < input\n",pName); printf("============================================\n"); } // --------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------ MAIN FUNCTION ------------------------------------------------------------ int main (int argc, char *argv[]) { if (argc-1 != 0) { Usage(argv[0]); exit(1); } // Read size of the input unsigned int N; scanf("%u",&N); // Declare and allocate memory for the host unsigned int *in, *out; unsigned int *d_in, *d_out; in = new unsigned int[N](); out = new unsigned int[N](); cudaMalloc(&d_in,sizeof(unsigned int)*N); cudaMalloc(&d_out,sizeof(unsigned int)*N); // Get or Generate the array to sort GetInput(in,N); Print(in,N); // Copy the array to the GPU cudaMemcpy(d_in,in,sizeof(unsigned int)*N,cudaMemcpyHostToDevice); // Initialize output array cudaMemset(d_out,0,sizeof(unsigned int)*N); // Sort the array using RadixSort RadixSort(d_in,d_out,N); // Print the result cudaMemcpy(out,d_out,sizeof(unsigned int)*N,cudaMemcpyDeviceToHost); Print(out,N); delete [] in; delete [] out; cudaFree(d_in); cudaFree(d_out); return 0; }
20,362
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <cuda.h> #include <cuda_runtime.h> #include <cuda.h> #include <device_launch_parameters.h> #define LIST_SIZE 100000 extern "C" __device__ unsigned long long zeroList[LIST_SIZE]; extern "C" __device__ unsigned long long oneList[LIST_SIZE]; extern "C" __device__ unsigned long long record_flag; void bambooLogRecordOff(){ long long local_record = 0; cudaMemcpyToSymbol(record_flag, &local_record, sizeof(long long), 0, cudaMemcpyHostToDevice); } void bambooLogKernelBegin(long long i) { i = 1; cudaMemcpyToSymbol(record_flag, &i, sizeof(long long), 0, cudaMemcpyHostToDevice); } void bambooLogKernelEnd() { #ifdef KERNELTRACE cudaDeviceSynchronize(); #endif unsigned long long zero_result[LIST_SIZE] = {0}; unsigned long long one_result[LIST_SIZE] = {0}; cudaMemcpyFromSymbol(zero_result, zeroList, LIST_SIZE * sizeof(long long), 0, cudaMemcpyDeviceToHost); cudaMemcpyFromSymbol(one_result, oneList, LIST_SIZE * sizeof(long long), 0, cudaMemcpyDeviceToHost); FILE *profileFile = fopen("profile_cmp_prob_result.txt", "w"); for(long long i=0; i < LIST_SIZE; i++){ if(zero_result[i] != 0 || one_result[i] != 0){ fprintf(profileFile, "%lld: %lld %lld\n", i, zero_result[i], one_result[i]); } } fclose(profileFile); }
20,363
#include <iostream> #include <string> #include <cassert> #include <ctime> using namespace std; struct cuda_exception { explicit cuda_exception(const char *err) : error_info(err) {} explicit cuda_exception(const string &err) : error_info(err) {} string what() const throw() { return error_info; } private: string error_info; }; void checkCudaError(const char *msg) { cudaError_t err = cudaGetLastError(); if (cudaSuccess != err) { string error_info(msg); error_info += " : "; error_info += cudaGetErrorString(err); throw cuda_exception(error_info); } } template<typename T> void random_matrix(T *M, size_t height, size_t width, int p = 2) { for(size_t i = 0; i < height; ++i) { for (size_t j = 0; j < width; ++j) { M[i * width + j] = rand() % p; } } } template<typename T> void print_matrix(const T *M, size_t height, size_t width) { if (height >= 32 || width >= 32) { cout << "a matrix of height " << height << ", of width " << width << endl; return; } for(size_t i = 0; i < height; ++i) { for (size_t j = 0; j < width; ++j) { cout << M[i * width + j] << " "; } cout << endl; } cout << endl; } #define BLOCK_SIZE 16 /** * CUDA kernel for matrix multiplication, blockwise multiplcation * * @C, the output matrix C = A * B * @A, the first input matrix * @B, the second input matrix * @wa, is the width of A * @wb, is the width of B * * returns void. * * The heights of A and B are not passed since wa, wb and * the block indices are sufficient to determine the leading * position of the matrix tile that a given thread is working on * * One thread block is computing a tile in C, thus, it * computes a dot-product of tile vectors. * Each element in C is computed by one thread of one * thread block. * Each thread computes its C-element as a sum of * "small" dot-products, where each of these dot-products * is a dot-product of two vectors in a tile. * */ template <typename T> __global__ void matrix_mul_ker(T* C, const T *A, const T *B, size_t wa, size_t wb) { // Block index; WARNING: should be at most 2^16 - 1 int bx = blockIdx.x; int by = blockIdx.y; // Thread index int tx = threadIdx.x; int ty = threadIdx.y; // Index of the first submatrix of A processed by the block // This is the y-coordinate of the NW corner of the working tile int aBegin = wa * BLOCK_SIZE * by; // Index of the last submatrix of A processed by the block // This is the y-coordinate of the SE corner of the working tile int aEnd = aBegin + wa - 1; // Step size used to iterate through the submatrices of A // int aStep = BLOCK_SIZE; // Index of the first submatrix of B processed by the block // This is the x-coordinate of the NW corner of the working tile int bBegin = BLOCK_SIZE * bx; // Step size used to iterate through the submatrices of B int bStep = BLOCK_SIZE * wb; // The element of the block submatrix that is computed by the thread // WARNING: This is a local variable for the working thread int Csub = 0; // Loop over all the submatrices of A and B required to // compute the block submatrix // This loop iterates through the tiles in A ndn B that // contribute to the working tile of C for(int a = aBegin, b = bBegin; a <= aEnd; a += aStep, b += bStep) { // shared memory for the submatrix of A __shared__ int As[BLOCK_SIZE][BLOCK_SIZE]; // shared memory for the submatrix of B __shared__ int Bs[BLOCK_SIZE][BLOCK_SIZE]; // Load the matrices from global memory to shared memory // each thread loads one element of each matrix As[ty][tx] = A[a + wa * ty + tx]; Bs[ty][tx] = B[b + wb * ty + tx]; // synchronize to make sure the matrices are loaded __syncthreads(); // Multiply the two matrices together // each thread computes one element of the block submatrix for(int k = 0; k < BLOCK_SIZE; ++k) { Csub += As[ty][k] * Bs[k][tx]; } // synchronize to make sure that the preceding computation is // done before loading two new submatrices of A dnd B in the next iteration __syncthreads(); } // Write the block submatrix to global memory; // each thread writes one element int c = wb * BLOCK_SIZE * by + BLOCK_SIZE * bx; C[c + wb * ty + tx] = Csub; } template <typename T> void matrix_mul_dev(T* C, const T* A, const T* B, int ha, int wa, int wb) { assert(wa % BLOCK_SIZE == 0); assert(wb % BLOCK_SIZE == 0); // load A and B to the device size_t mem_size = ha * wa * sizeof(T); T* Ad; cudaMalloc((void **)&Ad, mem_size); checkCudaError("allocate GPU memory for the first matrix"); cudaMemcpy(Ad, A, mem_size, cudaMemcpyHostToDevice); T* Bd; mem_size = wa * wb * sizeof(T); cudaMalloc((void **)&Bd, mem_size); checkCudaError("allocate GPU memory for the second matrix"); cudaMemcpy(Bd, B, mem_size, cudaMemcpyHostToDevice); // allocate C on the device T* Cd; mem_size = ha * wb * sizeof(int); cudaMalloc((void**)&Cd, mem_size); checkCudaError("allocate GPU memory for the output matrix"); // compute the execution configure // assume that the matrix dimensions are multiples of BLOCK_SIZE dim3 dimBlock(BLOCK_SIZE, BLOCK_SIZE); size_t dgx = wb / dimBlock.x; size_t dgy = ha / dimBlock.y; dim3 dimGrid(dgx, dgy); // launch the device computation matrix_mul_ker<<<dimGrid, dimBlock>>>(Cd, Ad, Bd, wa, wb); cudaThreadSynchronize(); checkCudaError("call the matrix multiplication kernel"); // read C from the device cudaMemcpy(C, Cd, mem_size, cudaMemcpyDeviceToHost); // Free device memory cudaFree(Ad); cudaFree(Bd); cudaFree(Cd); } /** * Returns the time spent in seconds */ template <typename T> double matrix_mul_gpu(T* C, const T* A, const T* B, int ha, int wa, int wb) { clock_t t1 = clock(); // do the multiplication matrix_mul_dev(C, A, B, ha, wa, wb); clock_t t2 = clock(); return (t2 - t1) / double(CLOCKS_PER_SEC); } /** * ha = 2^eha, * wa = 2^ewa, * wb = 2^ewb; * * If no parameter entered, then default values are used. * If one parameter rentered, it is eha = ewa = ewb = argv[1]. * If three parameters rentered, there are eha, ewa, and ewb, respectively. * */ int matrix_mul_test(int argc, char **argv) { int *A, *B, *C; size_t eha = 4; size_t ewa = 4; size_t ewb = 4; if (argc == 2) { eha = ewa = ewb = atoi(argv[1]); } else if (argc >= 3) { eha = atoi(argv[1]); ewa = atoi(argv[2]); ewb = atoi(argv[3]); } size_t ha = (1L << eha); size_t wa = (1L << ewa); size_t wb = (1L << ewb); try { A = new int[ha * wa]; B = new int[wa * wb]; C = new int[ha * wb]; random_matrix(A, ha, wa); random_matrix(B, wa, wb); // timing gpu based method cout << matrix_mul_gpu(C, A, B, ha, wa, wb) << "(seconds)" << endl; } catch (cuda_exception& err) { cout << err.what() << endl; delete [] A; delete [] B; delete [] C; return EXIT_FAILURE; } catch (...) { delete [] A; delete [] B; delete [] C; cout << "unknown exeception" << endl; return EXIT_FAILURE; } print_matrix(A, ha, wa); print_matrix(B, wa, wb); print_matrix(C, ha, wb); delete [] A; delete [] B; delete [] C; return 0; } int main(int argc, char** argv) { matrix_mul_test(argc, argv); return 0; }
20,364
#include <stdio.h> #include <cuda_runtime_api.h> #include <time.h> /**************************************************************************** * An experiment with cuda kernel invocation parameters. 2x3x4 threads on * one block should yield 24 kernel invocations. * * Compile with: * nvcc -o cupass cupass.cu * * Dr Kevan Buckley, University of Wolverhampton, January 2018 *****************************************************************************/ __device__ int is_a_match(char *attempt){ char plain_password1[] ="AA1111"; char plain_password2[] ="AA1112"; char plain_password3[] ="AA1113"; char plain_password4[] ="AA1114"; char *q = attempt; char *w = attempt; char *e = attempt; char *r = attempt; char *pp1 = plain_password1; char *pp2 = plain_password2; char *pp3 = plain_password3; char *pp4 = plain_password4; while(*q ==*pp1){ if(*q == '\0') { printf("password:%s\n", plain_password1); break; } q++; pp1++; } while(*w ==*pp2){ if(*w == '\0') { printf("password:%s\n", plain_password2); break; } w++; pp2++; } while(*e ==*pp3){ if(*e == '\0') { printf("password:%s\n", plain_password3); break; } e++; pp3++; } while(*r ==*pp4){ if(*r == '\0') { printf("password: %s\n", plain_password4); return 1; } r++; pp4++; } return 0; } __global__ void kernel(){ char i1, i2, i3, i4; char password[7]; password[6] ='\0'; int i = blockIdx.x +65; int j = threadIdx.x+65; char firstMatch =i; char secondMatch =j; password[0] =firstMatch; password[1] =secondMatch; for(i1='0'; i1<='9'; i1++){ for(i2='0'; i2<='9'; i2++){ for(i3='0'; i3<='9'; i3++){ for(i4='0'; i4<='9'; i4++){ password[2] =i1; password[3] =i2; password[4] =i3; password[5] =i4; if(is_a_match(password)){ } else{ //printf("tried: %s\n",password); } } } } } } int time_difference(struct timespec *start, struct timespec *finish,long long int *difference) { long long int ds = finish->tv_sec - start->tv_sec; long long int dn = finish->tv_nsec - start->tv_nsec; if(dn < 0 ) { ds--; dn += 1000000000; } *difference = ds * 1000000000 + dn; return !(*difference > 0); } int main() { struct timespec start, finish; long long int time_elapsed; clock_gettime(CLOCK_MONOTONIC, &start); kernel<<<26,26>>>(); cudaThreadSynchronize(); clock_gettime(CLOCK_MONOTONIC, &finish); time_difference(&start, &finish, &time_elapsed); printf("Time elapsed was %lldns or %0.9lfs\n", time_elapsed, (time_elapsed/1.0e9)); return 0; }
20,365
#include <thrust/host_vector.h> #include <thrust/device_vector.h> #include <thrust/iterator/counting_iterator.h> #include <iostream> #if 0 typedef thrust::tuple<float,float,float> Float3; struct DotProduct : public thrust::binary_function<Float3,Float3,float> { const float params[4]; __host__ __device__ float operator()(const Float3& a, const Float3& b) const { return thrust::get<0>(a) * thrust::get<0>(b) + // x components thrust::get<1>(a) * thrust::get<1>(b) + // y components thrust::get<2>(a) * thrust::get<2>(b); // z components } }; #endif void preparemake3D(const float params[4], thrust::host_vector<float> & tW, thrust::host_vector<float> & tH,int w, int h) { for(int i = 0; i < w; i++) { tW[i] = (i-params[1]+0.5)/params[0]; } for (int i = 0; i < h; i++) { tH[i] = -(i-params[3]+0.5)/params[2]; } } // x output = pw[c]*z // y output = +-ph[c]*z // z output = z // // xyz are coalesced and computed independently // 1) replicate pw and ph across x and y // 2) multiply by z /* auto poc = (uint8_t*)(po+3); const float rx = pw[c]*z; const float ry = w*z; po[0] = rx; po[1] = -ry; po[2] = z; poc[0] = pc[2]; poc[1] = pc[1]; poc[2] = pc[0]; good++; poi += 3*4+3; */ struct unprojectx { __host__ __device__ unprojectx(const thrust::device_vector<float> & p, int w) :p_(thrust::raw_pointer_cast(&p[0])), w_(w) {} __host__ __device__ float operator()(const float & d, const int & c) { return d*p_[c % w_]; } const float * p_; const int w_; }; struct unprojecty { __host__ __device__ unprojecty(const thrust::device_vector<float> & p, int w) :p_(thrust::raw_pointer_cast(&p[0])), w_(w) {} __host__ __device__ float operator()(const float & d, const int & c) { return d*p_[c / w_]; } const float* p_; const int w_; }; int main(void) { float params[4] = {1,2,3,4}; // fx cx fy cy int w = 512; int h = 424; thrust::host_vector<float> tW(w); thrust::host_vector<float> tH(h); preparemake3D(params,tW,tH,w,h); // Copy host_vector H to device_vector D thrust::device_vector<float> dtW = tW,dtH = tH; thrust::host_vector<float> tD(h*w); // depths thrust::device_vector<float> dtD = tD; thrust::device_vector<float> dtPx(h*w); // points (all points) thrust::device_vector<float> dtPy(h*w); // points (all points) // works on: 1..w by 1..h // input: tD depths // output expanded dtP // uses dtW and dtH as argument thrust::counting_iterator<int> co(0); cudaEvent_t start, stop; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); thrust::transform(dtD.begin(),dtD.end(), co, dtPx.begin(),unprojectx(tW,w)); cudaEventRecord(stop, 0); cudaEventSynchronize(stop); float elapsedTime; cudaEventElapsedTime(&elapsedTime , start, stop); printf("Avg. time is %f ms", elapsedTime/100); thrust::transform(dtD.begin(),dtD.end(),co,dtPy.begin(),unprojecty(tH,w)); // filter by z return 0; }
20,366
/* * Face Factor Distance * (MP3, Fall 2019, GPU Programming/Yifan Liu) */ #include <assert.h> #include <cuda.h> #include <stdio.h> #include <math.h> #include <iostream> #include <fstream> #include <ctime> #include <string> #include <sstream> /* Usage message displayed when invalid command line arguments are supplied */ #define USAGE \ "MP3 takes a (m x k) matrix M \n" \ "and compute the distance betwen rows and save teh result if two rows' distance is smaller than 0.3\n" \ "The values of m, k must be >= 1.\n" \ "\n" \ "Usage: mp3 m k\n" /* Tile size*/ #ifndef TILE_WIDTH # define TILE_WIDTH 16 #endif /* If a CUDA call fails, display an error message and exit */ #define CUDA_CHECK(e) { \ cudaError_t err = (e); \ if (err != cudaSuccess) \ { \ fprintf(stderr, "CUDA error: %s, line %d, %s: %s\n", \ __FILE__, __LINE__, #e, cudaGetErrorString(err)); \ exit(EXIT_FAILURE); \ } \ } /* assert() is only supported on devices of compute capability >= 2.0 */ #if defined(__CUDA_ARCH__) && (__CUDA_ARCH__ < 200) # undef assert # define assert(arg) #endif /*getDistance calculate the distance among rows*/ __global__ static void getDistance_gpu(float *d_M, float *d_P, int m, int k) { assert(blockDim.x == TILE_WIDTH && blockDim.y == TILE_WIDTH); int row = blockIdx.y * TILE_WIDTH + threadIdx.y; int col= blockIdx.x * TILE_WIDTH + threadIdx.x; if(row >= m || col >= m) return; if(row == col){ d_P[row*m+col] = 100; return; } float expected = 0.0; for (int i = 0; i < k; i++) { expected += pow(d_M[row*k+i] - d_M[col*k+i], 2); } expected = sqrt(expected); d_P[row*m+col] = expected; } /* Displays one row of the given matrix */ static void printRow(int row, float *matrix, int cols) { printf("["); if (cols >= 1) printf(" %3.3f", matrix[row*cols+0]); if (cols >= 2) printf(" %3.3f", matrix[row*cols+1]); if (cols >= 3) printf(" %3.3f", matrix[row*cols+2]); if (cols >= 6) printf(" ..."); if (cols >= 5) printf(" %3.3f", matrix[row*cols+(cols-2)]); if (cols >= 4) printf(" %3.3f", matrix[row*cols+(cols-1)]); printf(" ]\n"); } /* Displays the given matrix */ static void printMatrix(float *matrix, int rows, int cols) { if (rows >= 1) printRow(0, matrix, cols); if (rows >= 2) printRow(1, matrix, cols); if (rows >= 3) printRow(2, matrix, cols); if (rows >= 6) printf(" ...\n"); if (rows >= 5) printRow(rows-2, matrix, cols); if (rows >= 4) printRow(rows-1, matrix, cols); } /* Program entrypoint. */ int main() { /* read in m and k here */ std::cout << "Loading matrices...\n"; clock_t begin = clock(); int m, k; std::ifstream in1; in1.open("descriptor.txt"); if(in1.is_open()) printf("File opened successfully\n"); else printf("File opened unsuccessfully\n"); std::string line, temp; // read in m and k while ((std::getline(in1, line))){ if (line == "end header") break; std::istringstream ss(line); std::cout << line << std::endl; if(line.find("line_number")!=-1) ss >> temp >> m; else if(line.find("vector_dimension")!=-1) ss >> temp >> k; } printf("The matrix is %d x %d\n", m, k); if (m < 1 || k < 1) { fprintf(stderr, USAGE); fprintf(stderr, "Invalid value for m or k (%d, %d)\n", m, k); system("Pause"); return EXIT_FAILURE; } size_t bytesForM = m * k * sizeof(float); float *h_M = (float *)malloc(bytesForM); /* Fill M (on host) */ for (int i = 0; i < m*k; ++i) in1 >> h_M[i]; in1.close(); clock_t end = clock(); double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC; printf("Reading input file took %f seconds\n", elapsed_secs); printf("M =\n"); printMatrix(h_M, m, k); printf("using (%d x %d) tiles.\n", TILE_WIDTH, TILE_WIDTH); /********************************************/ /* M is (m x k), P is (m x m) */ /********************************************/ size_t bytesForP = m * m * sizeof(float); float *h_P = (float *)malloc(bytesForP); if (h_M == NULL || h_P == NULL) { fprintf(stderr, "Unable to allocate host memory\n"); system("Pause"); return EXIT_FAILURE; } /* Allocate device memory for matrices */ float *d_M, *d_P; CUDA_CHECK(cudaMalloc((void **)&d_M, bytesForM)); CUDA_CHECK(cudaMalloc((void **)&d_P, bytesForP)); /* Copy M to device global memory */ CUDA_CHECK(cudaMemcpy(d_M, h_M, bytesForM, cudaMemcpyHostToDevice)); /* Launch the CUDA kernel */ dim3 dimGrid((m+TILE_WIDTH-1)/TILE_WIDTH, (m+TILE_WIDTH-1)/TILE_WIDTH); dim3 dimBlock(TILE_WIDTH, TILE_WIDTH); printf("matMul called from host\n"); getDistance_gpu<<<dimGrid, dimBlock>>>(d_M, d_P, m, k); CUDA_CHECK(cudaDeviceSynchronize()); /* Copy result matrix from device global memory back to host memory */ CUDA_CHECK(cudaMemcpy(h_P, d_P, bytesForP, cudaMemcpyDeviceToHost)); printf(" product received from host\n"); printf("P =\n"); printMatrix(h_P, m, m); printf("Saving result\n"); std::ofstream out; out.open("matrix.txt"); for (int i = 0; i < m; i++){ for (int j = 0; j < m; j++){ if (h_P[i*m+j] < 0.3) out << j+1 << " "; } out << std::endl; } out.close(); /* Free device global memory */ CUDA_CHECK(cudaFree(d_M)); CUDA_CHECK(cudaFree(d_P)); /* Free host memory */ free(h_M); free(h_P); /* Reset the device (unnecessary if not profiling, but good practice) */ CUDA_CHECK(cudaDeviceReset()); printf("Done\n"); system("Pause"); return EXIT_SUCCESS; }
20,367
#include "includes.h" #define B 2 /* */ __global__ void cudaAcc_GetPowerSpectrum_kernel2( int NumDataPoints, float2* FreqData, float* PowerSpectrum) { const int i = blockIdx.x * blockDim.x*B + threadIdx.x; float ax[B]; float ay[B]; #pragma unroll for (int k=0;k<B;k++) { ax[k] = FreqData[i+k*blockDim.x].x; ay[k] = FreqData[i+k*blockDim.x].y; } // PowerSpectrum[i] = freqData.x * freqData.x + freqData.y * freqData.y; #pragma unroll for (int k=0;k<B;k++) { PowerSpectrum[i+k*blockDim.x] = __fadd_rn( __fmul_rn(ax[k],ax[k]),__fmul_rn(ay[k],ay[k])); } }
20,368
#include "assignmentHPC1.cuh" #include <iostream> #include <cstdlib> #include <chrono> #include <limits> using namespace std; using namespace std::chrono; double find_max_cpu(double *arr_host, unsigned int N) { double result = numeric_limits<double>::min(); for(unsigned int i = 0; i < N; i++) { if(arr_host[i] > result) { result = arr_host[i]; } } return result; } void find_max(double *arr_host, unsigned int N) { // ----------------------------------------- CPU Code ------------------------------------------------- auto startCPU = high_resolution_clock::now(); double result = find_max_cpu(arr_host, N); auto stopCPU = high_resolution_clock::now(); cout<<"\n\n--------------- CPU ---------------\n"<<endl; cout<<"Answer CPU : "<<result<<endl; cout<<"\nTime on CPU : "<<duration_cast<microseconds>(stopCPU - startCPU).count()/1000<<" milli seconds\n\n"<<endl; // ----------------------------------------- GPU Code ------------------------------------------------- }
20,369
#include <math.h> #include <stdio.h> #include <stdlib.h> /* * Wei Wu * CAAM 520 */ // TO compile: // nvcc -o hw04 hw04.c -lm // TO run with tolerance 1e-4 and 4x4 loop currents // ./hw04 4 1e-4 #define PI 3.14159265359 #define MAX(a,b) (((a)>(b))?(a):(b)) #define p_Nthreads 32 #define SERIAL false // kernel for one iteration of Jacobi __global__ void Jacobi(float* unew_c, float* u_c, float* f_c, int N){ float invD = 1./4.0f; // factor of h cancels out const int i = blockIdx.x*blockDim.x + threadIdx.x; const int j = blockIdx.y*blockDim.y + threadIdx.y; const int id = i + j*(N+2); // x-index first if (i >= 1 && j >= 1 && i <= N && j <= N){ const float Ru = -u_c[id-(N+2)]-u_c[id+(N+2)] -u_c[id-1]-u_c[id+1]; const float rhs = invD*(f_c[id]-Ru); unew_c[id] = rhs; } } // sequential addressing reduction kernel. Modified from class notes __global__ void reduce2(int N, float *x1, float *x2, float *xout){ __shared__ float s_x[p_Nthreads]; const int tid = threadIdx.x; const int i = blockIdx.x*blockDim.x + tid; // load smem s_x[tid] = 0; if (i < N){ s_x[tid] = (x1[i] - x2[i])*(x1[i] - x2[i]); } __syncthreads(); for (unsigned int s = blockDim.x/2; s > 0; s /= 2){ if (tid < s){ s_x[tid] += s_x[tid+s]; // fewer bank conflicts } __syncthreads(); } if (tid==0){ xout[blockIdx.x] = s_x[0]; } } // compute square of residual float residual_square(float* x1, float* x2, int N){ float res2 = 0.0f; float *xout_c; int Nthreads = p_Nthreads; int Nblocks = ((N+2)*(N+2)+Nthreads-1)/Nthreads; dim3 threadsPerBlock(Nthreads,1,1); dim3 blocks(Nblocks,1,1); float *xout = (float*)malloc(Nblocks*sizeof(float)); cudaMalloc(&xout_c, Nblocks*sizeof(float)); reduce2 <<< blocks, threadsPerBlock >>> ((N+2)*(N+2), x1, x2, xout_c); cudaMemcpy(xout, xout_c, Nblocks*sizeof(float), cudaMemcpyDeviceToHost); for (int i = 0; i < Nblocks; i++){ res2 += xout[i]; } cudaFree(xout_c); return res2; } // parallely solve for solution vector u int parallel_solve(const int N, const float tol, float * u, float * f){ float *unew = (float*)calloc((N+2)*(N+2),sizeof(float)); float res2 = 1.0f; unsigned int iter = 0; // allocate CUDA global memory and copy from host to device float *unew_c, *u_c, *f_c; cudaMalloc(&unew_c, (N+2)*(N+2)*sizeof(float)); cudaMalloc(&u_c, (N+2)*(N+2)*sizeof(float)); cudaMalloc(&f_c, (N+2)*(N+2)*sizeof(float)); cudaMemcpy(unew_c, unew, (N+2)*(N+2)*sizeof(float), cudaMemcpyHostToDevice); cudaMemcpy(u_c, u, (N+2)*(N+2)*sizeof(float), cudaMemcpyHostToDevice); cudaMemcpy(f_c, f, (N+2)*(N+2)*sizeof(float), cudaMemcpyHostToDevice); int Nthreads = p_Nthreads; int Nblocks = ((N+2)+Nthreads-1)/Nthreads; dim3 threadsPerBlock(Nthreads,Nthreads,1); dim3 blocks(Nblocks,Nblocks,1); while(res2>tol*tol){ // update interior nodes using Jacobi Jacobi <<<blocks, threadsPerBlock>>> (unew_c, u_c, f_c, N); cudaError_t err = cudaGetLastError(); if (err != cudaSuccess) printf("Error: %s\n", cudaGetErrorString(err)); // compute residual using reduction res2 = residual_square(unew_c,u_c,N); // update u on device float* pingPong = u_c; u_c = unew_c; unew_c = pingPong; ++iter; if(!(iter%500)){ printf("at iter %d: residual = %g\n", iter, sqrt(res2)); } } // copy from device back to host cudaError_t cudaStatus = cudaMemcpy(u, u_c, (N+2)*(N+2)*sizeof(float), cudaMemcpyDeviceToHost); cudaFree(unew_c); cudaFree(u_c); cudaFree(f_c); return iter; } // serialy solve for solution vector u int serial_solve(const int N, const float tol, float * u, float * f){ float *unew = (float*)calloc((N+2)*(N+2),sizeof(float)); //float w = 1.0f; // not used for Pure Jacobi float invD = 1./4.f; // factor of h cancels out float res2 = 1.0f; unsigned int iter = 0; while(res2>tol*tol){ res2 = 0.0f; // update interior nodes using (Pure) Jacobi for(int i=1; i<=N; ++i){ for(int j=1; j<=N; ++j){ const int id = i + j*(N+2); // x-index first const float Ru = -u[id-(N+2)]-u[id+(N+2)]-u[id-1]-u[id+1]; const float rhs = invD*(f[id]-Ru); const float oldu = u[id]; // const float newu = w*rhs + (1.0-w)*oldu; const float newu = rhs; // compute residual res2 += (newu-oldu)*(newu-oldu); unew[id] = newu; } } for (int i = 0; i < (N+2)*(N+2); ++i){ u[i] = unew[i]; } ++iter; if(!(iter%500)){ printf("at iter %d: residual = %g\n", iter, sqrt(res2)); } } return iter; } int main(int argc, char **argv){ if(argc!=3){ printf("Usage: ./main N tol\n"); exit(-1); } int N = atoi(argv[1]); float tol = atof(argv[2]); float *u = (float*) calloc((N+2)*(N+2), sizeof(float)); float *f = (float*) calloc((N+2)*(N+2), sizeof(float)); float h = 2.0/(N+1); for (int i = 0; i < N+2; ++i){ for (int j = 0; j < N+2; ++j){ const float x = -1.0 + i*h; const float y = -1.0 + j*h; f[i + j*(N+2)] = sin(PI*x)*sin(PI*y) * h*h; } } int iter; if(!SERIAL){ iter = parallel_solve(N, tol, u, f); }else{ iter = serial_solve(N, tol, u, f); } float err = 0.0f; for (int i = 0; i < (N+2)*(N+2); ++i){ err = MAX(err,fabs(u[i] - f[i]/(h*h*2.0*PI*PI))); } printf("Iters: %d\n", iter); printf("Max error: %lg\n", err); free(u); free(f); }
20,370
#include <cuda.h> #include <cuda_runtime.h> #include <iostream> #include <vector> #define N 10 __global__ void add(float *a, float *b, float *c) { c[blockIdx.x] = a[blockIdx.x] + b[blockIdx.x]; } void cuda_check(cudaError_t status) { if (status != cudaSuccess) { std::cout << "Error could not allocate memory result " << status << std::endl; exit(1); } } int main(void) { std::vector<float> vec_a; std::vector<float> vec_b; std::vector<float> vec_c; float *a, *b, *c; float *d_a, *d_b, *d_c; int size = N * sizeof(int); cudaMalloc((void**)&d_a, size); cudaMalloc((void**)&d_b, size); cudaMalloc((void**)&d_c, size); cuda_check(cudaHostAlloc((void **)&a, size, cudaHostAllocPortable)); cuda_check(cudaHostAlloc((void **)&b, size, cudaHostAllocPortable)); cuda_check(cudaHostAlloc((void **)&c, size, cudaHostAllocPortable)); // a = new int[N]; // b = new int[N]; // c = new int[N]; for(int i = 0; i < N; ++i) { vec_a.push_back(i); vec_b.push_back(i); //a[i] = i; //b[i] = i; } memcpy(a, &vec_a[0], size); memcpy(b, &vec_b[0], size); cudaMemcpy(d_a, a, size, cudaMemcpyHostToDevice); cudaMemcpy(d_b, b, size, cudaMemcpyHostToDevice); add<<<N, 1>>>(d_a, d_b, d_c); cudaMemcpy(c, d_c, size, cudaMemcpyDeviceToHost); for(int i = 0; i < N; ++i) { std::cout << c[i] << std::endl; } //free(a); free(b); free(c); cudaFreeHost(a); cudaFreeHost(b); cudaFreeHost(c); cudaFree(d_a); cudaFree(d_b); cudaFree(d_c); return 0; }
20,371
#include "includes.h" __global__ void convertKinectDisparityToRegularDisparity_kernel( float *d_regularDisparity, int d_regularDisparityPitch, const float *d_KinectDisparity, int d_KinectDisparityPitch, int width, int height) { const int x = blockIdx.x * blockDim.x + threadIdx.x; const int y = blockIdx.y * blockDim.y + threadIdx.y; if ((x < width) & (y < height)) { // are we in the image? float d_in = *((float *)((char *)d_KinectDisparity + y * d_KinectDisparityPitch) + x); float d_out = (d_in == 0.0f) ? nanf("") : -d_in; *((float *)((char *)d_regularDisparity + y *d_regularDisparityPitch) + x) = d_out; } }
20,372
#include <cuda_runtime.h> #include <stdio.h> #include <stdlib.h> #include <ctime> #include <iostream> #define DATA_SIZE 1048576 #define THREAD_SIZE 256 #define BLOCK_SIZE 32 int data[DATA_SIZE]; void Generate(int* number, int size) { for (int i = 0; i < size; ++i) number[i] = rand() % 10; } __global__ static void sumOf(int* data, int* result, clock_t* time) { const int tid = threadIdx.x; const int bid = blockIdx.x; int sum = 0; clock_t start; if (tid == 0) time[bid] = clock(); for (int i = bid * THREAD_SIZE + tid; i < DATA_SIZE; i += BLOCK_SIZE * THREAD_SIZE) { sum += data[i]; } result[bid * THREAD_SIZE + tid] = sum; if (tid == 0) time[bid + BLOCK_SIZE] = clock(); } int main(int argc, char** argv) { Generate(data, DATA_SIZE); int* gpudata, *result; clock_t* time; cudaMalloc((void**)&gpudata, sizeof(int)* DATA_SIZE); cudaMalloc((void**)&result, sizeof(int)* THREAD_SIZE * BLOCK_SIZE); cudaMalloc((void**)&time, sizeof(int) * 2 * BLOCK_SIZE); cudaMemcpy(gpudata, data, sizeof(int)* DATA_SIZE, cudaMemcpyHostToDevice); sumOf<<<BLOCK_SIZE, THREAD_SIZE, 0 >>>(gpudata, result, time); clock_t usetime[BLOCK_SIZE * 2]; int sum[THREAD_SIZE * BLOCK_SIZE]; cudaMemcpy(sum, result, sizeof(int)* THREAD_SIZE * BLOCK_SIZE, cudaMemcpyDeviceToHost); cudaMemcpy(usetime, time, sizeof(int) * 2 * BLOCK_SIZE, cudaMemcpyDeviceToHost); cudaFree(gpudata); cudaFree(result); cudaFree(time); int finalsum = 0; for (int i = 0; i < THREAD_SIZE * BLOCK_SIZE; ++i) finalsum += sum[i]; clock_t minp, maxp; minp = usetime[0], maxp = usetime[BLOCK_SIZE]; for (int i = 0; i < BLOCK_SIZE; ++i){ if (usetime[i] < minp) minp = usetime[i]; if (usetime[i + BLOCK_SIZE] > maxp) maxp = usetime[i + BLOCK_SIZE]; } printf("%d %d\n", finalsum, maxp - minp); system("pause"); return 0; }
20,373
#include "includes.h" /* WRITE CUDA KERNEL FOR TRANSPOSE HERE */ const int CHUNK_SIZE = 32; const int CHUNK_ROWS = 8; __global__ void matrix_t(int* data, int* out, int* rows, int* cols){ __shared__ int chunk[CHUNK_SIZE][CHUNK_SIZE]; int x = blockIdx.x * CHUNK_SIZE + threadIdx.x; int y = blockIdx.y * CHUNK_SIZE + threadIdx.y; for (int i=0; i<CHUNK_SIZE; i+= CHUNK_ROWS) { chunk[threadIdx.x][threadIdx.y+i] = data[(y + i) * *cols + x]; } __syncthreads(); x = blockIdx.y * CHUNK_SIZE + threadIdx.x; y = blockIdx.x * CHUNK_SIZE + threadIdx.y; for (int i=0; i<CHUNK_SIZE; i+= CHUNK_ROWS) { if (x < *rows && y+i < *cols) { out[(y + i) * *rows + x] = chunk[threadIdx.y + i][threadIdx.x]; // out[(y + i) * *rows + x] = 1; } } }
20,374
#include <cuda.h> #include <cuda_runtime.h> #include <iostream> #include <vector> extern "C" __global__ void switch_test(long *src_ptr, long *dst_ptr, int num_rows, int* output_rows) { int idx; long val; int pos_start = blockIdx.x * blockDim.x + threadIdx.x; if(pos_start >= num_rows) return; val = src_ptr[pos_start]; switch(val){ case 7016889694419943424L: case 3688448094816436224L: case 3761631588761206784L: case 7089228763434582016L: case 7161567832449220608L:{ idx = atomicAdd(output_rows,1); dst_ptr[idx] = val; break; } default: break; } return; } int main() { int64_t *src_ptr,*dst_ptr; int32_t num_rows = 10; auto cuda_err = cudaMallocManaged(&src_ptr,sizeof(int64_t)*num_rows); if(cuda_err) return -6; std::cout << "alloc src_ptr success" << std::endl; cuda_err = cudaMallocManaged(&dst_ptr,sizeof(int64_t)*num_rows); if(cuda_err) return -7; std::cout << "alloc dst_ptr success" << std::endl; int32_t* output_rows; cuda_err = cudaMallocManaged(&output_rows,sizeof(int32_t)); // for(int i=0;i<num_rows;++i) src_ptr[i] = i; src_ptr[0] = 3688729569793146880L; src_ptr[1] = 3617516400685350912L; src_ptr[2] = 3688729569793146880L; src_ptr[3] = 3761631588761206784L; src_ptr[4] = 3688448094816436224L; src_ptr[5] = 3689292519746568192L; src_ptr[6] = 3618642300592193536L; src_ptr[7] = 3618360825615482880L; src_ptr[8] = 3688729569793146880L; src_ptr[9] = 3617516400685350912L; *output_rows = 0; switch_test<<<2,16>>>(src_ptr,dst_ptr,num_rows,output_rows); cudaDeviceSynchronize(); cuda_err = cudaGetLastError(); if(cuda_err){ std::cout << "cudaDeviceSynchronize failed, error code = " << cuda_err << std::endl; } std::cout << "cudaDeviceSynchronize success" << std::endl; for(int i=0; i<*output_rows; ++i){ std::cout << i << ":" << dst_ptr[i] << std::endl; } return 0; }
20,375
#include <iostream> using namespace std; int main() { cudaEvent_t start, stop, done_offload; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventCreate(&done_offload); void *p, *q; long size = 1024l * 1024 * 200; cudaMalloc(&p, size); cudaMallocHost(&q, size); cout << "without split by event\n"; int N = 100; cudaEventRecord(start); for (int i = 0; i < N; i++) { cudaMemcpyAsync(q, p, size, cudaMemcpyDeviceToHost, NULL); } cudaEventRecord(stop); cudaEventSynchronize(stop); float milli; cudaEventElapsedTime(&milli, start, stop); cout << "Time(ms): " << milli << endl; cout << "with split by event\n"; cudaEventRecord(start); for (int i = 0; i < N; i++) { cudaMemcpyAsync(q, p, size, cudaMemcpyDeviceToHost, NULL); cudaEventRecord(done_offload, NULL); cudaEventSynchronize(done_offload); } cudaEventRecord(stop); cudaEventSynchronize(stop); cudaEventElapsedTime(&milli, start, stop); cout << "Time(ms): " << milli << endl; }
20,376
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdio.h> __device__ const char *STR = "HELLO WORLD!"; const char STR_LENGTH = 12; __global__ void hello() { printf("%c\n", STR[threadIdx.x]); } int main(void) { int num_threads = STR_LENGTH; int num_blocks = 1; hello <<< num_blocks, num_threads >>>(); cudaDeviceSynchronize(); return 0; }
20,377
#include <stdio.h> #include <stdlib.h> #include <curand.h> #include <curand_kernel.h> #define MAX 100 /* this GPU kernel function calculates a random number and stores it in the parameter */ __global__ void random(float* result1, float* result2) { /* CUDA's random number library uses curandState_t to keep track of the seed value we will store a random state for every thread */ curandState_t state; /* we have to initialize the state */ curand_init(0, /* the seed controls the sequence of random values that are produced */ 0, /* the sequence number is only important with multiple cores */ 0, /* the offset is how much extra we advance in the sequence for each call, can be 0 */ &state); /* curand works like rand - except that it takes a state as a parameter */ *result1 = curand_normal(&state); *result2 = curand_normal(&state); } int main( ) { /* allocate an int on the GPU */ float* gpu_x1, * gpu_x2; cudaMalloc((void**) &gpu_x1, sizeof(float)); cudaMalloc((void**) &gpu_x2, sizeof(float)); /* invoke the GPU to initialize all of the random states */ random<<<1, 1>>>(gpu_x1, gpu_x2); /* copy the random number back */ float x1, x2; cudaMemcpy(&x1, gpu_x1, sizeof(float), cudaMemcpyDeviceToHost); cudaMemcpy(&x2, gpu_x2, sizeof(float), cudaMemcpyDeviceToHost); printf("Random number = %f.\n", x1); printf("Random number = %f.\n", x2); /* free the memory we allocated */ cudaFree(gpu_x1); cudaFree(gpu_x2); return 0; }
20,378
#include <stdio.h> #include <time.h> #include <sys/time.h> // GPU: Impressão dos índices __global__ void fIndice() { printf ("%d\t%d\t%d\n", threadIdx.x, blockIdx.x, blockDim.x); } // CPU: Função principal int main (int argc, char ** argv) { int nblocos = 0; int nthreads = 0; // Tratamento dos paramêtros if (argc == 3) { nblocos = atoi(argv[1]); nthreads = atoi(argv[2]); } else { printf ("\n ############# \n"); printf ("./07_kernel <nblocos> <nthreads>\n"); printf ("./07_kernel 32 128 | sort -n | tail -32\n"); exit(1); } // Limite bloco 1024, limite de thread 1024 // Limite MAX (bloco * thread) = 4096 fIndice<<<nblocos,nthreads>>>(); cudaDeviceSynchronize(); printf ("threadIdx.x blockIdx.x blockDim.x\n"); return 0; }
20,379
#include "includes.h" __global__ void refine_dilateFPPlaneDepthMapXpYp_kernel(float* fpPlaneDepthMap, int fpPlaneDepthMap_p, float* maskMap, int maskMap_p, int width, int height, int xp, int yp, float fpPlaneDepth) { int x = blockIdx.x * blockDim.x + threadIdx.x; int y = blockIdx.y * blockDim.y + threadIdx.y; if((x + xp >= 0) && (y + yp >= 0) && (x + xp < width) && (y + yp < height) && (x < width) && (y < height)) { float depth = maskMap[y * maskMap_p + x]; if(depth > 0.0f) { fpPlaneDepthMap[(y + yp) * fpPlaneDepthMap_p + (x + xp)] = fpPlaneDepth; }; }; }
20,380
#include <cuda_runtime.h> #include <device_launch_parameters.h> __global__ void square(float* d_out, float* d_in) { int idx = threadIdx.x; float f = d_in[idx]; d_out[idx] = f * f; } void your_square(int array_size, float* d_out, float* d_in) { square<<<1, array_size >>> (d_out, d_in); }
20,381
#include "includes.h" __global__ void kernel_End( int *g_stochastic, int *g_count_blocks, int *g_counter) { int thid = blockIdx.x * blockDim.x + threadIdx.x ; if( thid < ( *g_counter ) ) { if( g_stochastic[thid] == 1 ) atomicAdd(g_count_blocks,1); //(*g_count_blocks) = (*g_count_blocks) + 1 ; } }
20,382
#include "includes.h" __global__ void conductance_move_spikes_towards_synapses_kernel( int* d_spikes_travelling_to_synapse, float current_time_in_seconds, int* circular_spikenum_buffer, int* spikeid_buffer, int bufferloc, int buffersize, int total_number_of_synapses, float* d_time_of_last_spike_to_reach_synapse, int* postsynaptic_neuron_indices, float * neuron_wise_conductance_trace, int * synaptic_decay_id, int total_number_of_neurons, float * d_synaptic_efficacies_or_weights, float * d_biological_conductance_scaling_constants_lambda, float timestep){ int indx = threadIdx.x + blockIdx.x * blockDim.x; while (indx < circular_spikenum_buffer[bufferloc]) { int idx = spikeid_buffer[bufferloc*total_number_of_synapses + indx]; // Update Synapses d_time_of_last_spike_to_reach_synapse[idx] = current_time_in_seconds; int postsynaptic_neuron_id = postsynaptic_neuron_indices[idx]; int trace_id = synaptic_decay_id[idx]; float synaptic_efficacy = d_biological_conductance_scaling_constants_lambda[idx] * d_synaptic_efficacies_or_weights[idx]; atomicAdd(&neuron_wise_conductance_trace[total_number_of_neurons*trace_id + postsynaptic_neuron_id], synaptic_efficacy); indx += blockDim.x * gridDim.x; } __syncthreads(); }
20,383
#include <stdio.h> #include <unistd.h> #include <sys/stat.h> #include <fcntl.h> #include <string.h> #include <stdlib.h> #include <stdint.h> #include <math.h> #include <cuda.h> #define PI (3.14159265358979323) #define BLOCK_DIM (32) #define vidx(rr, r, R) (((rr) + (r) < 0) ? 0 : (((rr) + (r) >= (R)) ? (R) - 1 : (rr) + (r))) //void blur_kernel(float *H, uint8_t *vals, uint8_t *blur, int N, int k, int nrows, int ncols, int ii, int jj) //{ // int xv, yv, i, j; // float val = 0; // for (i = -k; i <= k; ++i) { // xv = vidx(ii, i, nrows); // for (j = -k; j <= k; ++j) { // yv = vidx(jj, j, ncols); // val += H[(i+k)*N + (j+k)]*vals[xv*ncols + yv]; // } // } // // blur[ii*ncols + jj] = val; //} __global__ void blur_kernel_cuda(float *H, uint8_t *vals, uint8_t *blur, int N, int k, int nrows, int ncols) { int ii = blockIdx.x * blockDim.x + threadIdx.x; int jj = blockIdx.y * blockDim.y + threadIdx.y; if (ii >= nrows || jj >= ncols) return; int xv, yv; float val = 0; for (int i = -k; i <= k; ++i) { xv = vidx(ii, i, nrows); for (int j = -k; j <= k; ++j) { yv = vidx(jj, j, ncols); val += H[(i+k)*N + (j+k)]*vals[xv*ncols + yv]; } } blur[ii*ncols + jj] = val; } int main(int argc, char *argv[]) { float sigma, ss; int N, k, nrows, ncols, max_pixel; uint8_t *vals_d, *vals_h, *blur_d, *blur_h; if (argc != 4) { fprintf(stderr, "Usage: ./gaussian_blur_serial <input_pgm> output_pgm> <sigma>\n"); return 1; } sigma = atof(argv[3]); ss = sigma * sigma; N = ceil(6*sigma); if (N % 2 == 0) N++; k = N / 2; char header[128], n1[32], n2[32]; FILE *fp1 = fopen(argv[1], "rb"); fgets(header, 128, fp1); char *eol = strchr(header, '\n'); *eol = '\0'; if (strcmp(header, "P5")) { fprintf(stderr, "'%s' must be in P5 format\n", argv[1]); fclose(fp1); return 1; } fgets(header, 128, fp1); eol = strchr(header, '\n'); *eol = '\0'; char *hp = header; for (; *hp != ' '; ++hp); *hp = '\0'; strcpy(n1, header); strcpy(n2, hp + 1); ncols = atoi(n1); nrows = atoi(n2); fgets(header, 128, fp1); eol = strchr(header, '\n'); *eol = '\0'; max_pixel = atoi(header); vals_h = (uint8_t *) malloc(nrows * ncols); fread(vals_h, 1, nrows * ncols, fp1); fclose(fp1); float H[N*N]; float *H_d; for (int i = 0, x = -k; i < N; ++i, ++x) for (int j = 0, y = -k; j < N; ++j, ++y) H[i*N + j] = exp(-(x*x + y*y)/(2.*ss))/(2.*PI*ss); blur_h = (uint8_t *) malloc(nrows * ncols); cudaMalloc((void **)&vals_d, nrows * ncols); cudaMalloc((void **)&blur_d, nrows * ncols); cudaMalloc((void **)&H_d, N * N * sizeof(float)); cudaMemcpy(vals_d, vals_h, nrows * ncols, cudaMemcpyHostToDevice); cudaMemcpy(H_d, H, N * N * sizeof(float), cudaMemcpyHostToDevice); dim3 block(BLOCK_DIM, BLOCK_DIM); dim3 grid(ceil(nrows/(BLOCK_DIM + 0.0)), ceil(ncols/(BLOCK_DIM + 0.0))); blur_kernel_cuda<<<grid, block>>>(H_d, vals_d, blur_d, N, k, nrows, ncols); //for (int ii = 0; ii < nrows; ++ii) // for (int jj = 0; jj < ncols; ++jj) // blur_kernel(H, vals_h, blur_h, N, k, nrows, ncols, ii, jj); cudaMemcpy(blur_h, blur_d, nrows * ncols, cudaMemcpyDeviceToHost); cudaFree(blur_d); cudaFree(vals_d); cudaFree(H_d); FILE *fp2 = fopen(argv[2], "wb"); fprintf(fp2, "P5\n%d %d\n%d\n", ncols, nrows, max_pixel); fwrite(blur_h, 1, nrows * ncols, fp2); free(blur_h); free(vals_h); fclose(fp2); return 0; }
20,384
/****************************************************************** File : lcsExclusiveScanForInt.cu Author : Mingcheng Chen Last Update : January 29th, 2013 *******************************************************************/ #include <stdio.h> #define BLOCK_SIZE 512 #define NUM_BANKS 32 #define LOG_NUM_BANKS 5 #define CONFLICT_FREE_OFFSET(n) ((n) >> (LOG_NUM_BANKS)) #define POSI(n) ((n) + CONFLICT_FREE_OFFSET(n)) __global__ void ScanKernel(int *globalArray, int length, int step) { __shared__ int localArray[POSI(BLOCK_SIZE << 1) + 1]; int localID = threadIdx.x; int groupID = blockIdx.x; int groupSize = blockDim.x; int startOffset = (groupSize << 1) * groupID * step; int posi1 = startOffset + localID * step; int posi2 = posi1 + groupSize * step; localArray[POSI(localID)] = posi1 < length ? globalArray[posi1] : 0; localArray[POSI(localID + groupSize)] = posi2 < length ? globalArray[posi2] : 0; // Up-sweep for (int stride = 1, d = groupSize; stride <= groupSize; stride <<= 1, d >>= 1) { __syncthreads(); if (localID < d) { posi1 = stride * ((localID << 1) + 1) - 1; posi2 = posi1 + stride; localArray[POSI(posi2)] += localArray[POSI(posi1)]; } } // Down-sweep for (int stride = groupSize, d = 1; stride >= 1; stride >>= 1, d <<= 1) { __syncthreads(); if (localID < d) { posi1 = stride * ((localID << 1) + 1) - 1; posi2 = POSI(posi1 + stride); posi1 = POSI(posi1); int t = localArray[posi1]; localArray[posi1] = localArray[posi2]; localArray[posi2] = localArray[posi2] * !!localID + t; } } __syncthreads(); // Write to global memory posi1 = startOffset + localID * step; posi2 = posi1 + groupSize * step; if (posi1 < length) globalArray[posi1] = localArray[POSI(localID)]; if (posi2 < length) globalArray[posi2] = localArray[POSI(localID + groupSize)]; } __global__ void ReverseUpdateKernel(int *globalArray, int length, int step) { int localID = threadIdx.x; int groupID = blockIdx.x; int groupSize = blockDim.x; int startOffset = groupID * (groupSize << 1) * step; if (groupID) { int value = globalArray[startOffset]; int posi1 = startOffset + localID * step; int posi2 = posi1 + groupSize * step; if (posi1 < length && localID) globalArray[posi1] += value; if (posi2 < length) globalArray[posi2] += value; } } extern "C" int ExclusiveScanForInt(int *d_arr, int length) { cudaError_t err; // Get the work group size int localWorkSize = BLOCK_SIZE; // Up-sweep and down-sweep static int records[10]; int problemSize = length; int numOfRecords = 0; int d_step = 1; /// DEBUG /// //printf("length = %d\n", length); dim3 dimBlock(BLOCK_SIZE, 1, 1); dim3 dimGrid(1, 1, 1); for (; problemSize > 1; problemSize = (problemSize - 1) / (localWorkSize * 2) + 1) { if (numOfRecords) d_step *= localWorkSize * 2; records[numOfRecords++] = problemSize; dimGrid.x = (problemSize - 1) / (localWorkSize * 2) + 1; ScanKernel<<<dimGrid, dimBlock>>>(d_arr, length, d_step); err = cudaDeviceSynchronize(); if (err) { printf("Fail to finish scan kernel"); cudaGetErrorString(err); exit(0); } } int sum; err = cudaMemcpy(&sum, d_arr, sizeof(int), cudaMemcpyDeviceToHost); if (err) { cudaGetErrorString(err); exit(0); } err = cudaMemset(d_arr, 0, sizeof(int)); if (err) { cudaGetErrorString(err); exit(0); } // Reverse updates for (int i = numOfRecords - 1; i >= 0; i--, d_step /= localWorkSize * 2) { dimGrid.x = (records[i] - 1) / (localWorkSize * 2) + 1; ReverseUpdateKernel<<<dimGrid, dimBlock>>>(d_arr, length, d_step); err = cudaDeviceSynchronize(); if (err) { printf("Fail to finish reverse update kernel"); cudaGetErrorString(err); exit(0); } } return sum; }
20,385
#include "includes.h" __global__ void mergeGPU1d( unsigned char *image1, unsigned char *image2, unsigned char *res, int pixels ) { int i = threadIdx.x + blockIdx.x*blockDim.x; if( i < pixels ) { int idx = 3*i; int r1 = image1[ idx+2 ]; int g1 = image1[ idx+1 ]; int b1 = image1[ idx ]; int r2 = image2[ idx+2 ]; int g2 = image2[ idx+1 ]; int b2 = image2[ idx ]; int r = (int)( ( (float)r1 + (float)r2 )*0.5f ); int g = (int)( ( (float)g1 + (float)g2 )*0.5f ); int b = (int)( ( (float)b1 + (float)b2 )*0.5f ); res[ idx+2 ] = (unsigned char)r; res[ idx+1 ] = (unsigned char)g; res[ idx ] = (unsigned char)b; } }
20,386
#include "includes.h" /*-----This is a vector addition--*/ /*---- @ Cuda/c ------*/ /*---- __NS__Bologna__2020__*/ __global__ void vectorAdd(int* a, int* b, int* c, int n){ // calculate index thread int tid = blockIdx.x * blockDim.x + threadIdx.x; // Make sure we stay in-bounds if(tid < n) // Vector add c[tid] = a[tid] + b[tid]; }
20,387
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdio.h> #include <stdlib.h> #include <cstring> #include <time.h> __global__ void memtransf(int * arr) { int gid = blockIdx.x * blockDim.x + threadIdx.x; printf("tid : %d, gid : %d, value : %d\n", threadIdx.x, gid, arr[gid]); } int main() { int shape = 128; int size = shape * sizeof(int); int * h_arr; h_arr = (int *)malloc(size); for(int i=0; i<shape;i++) { h_arr[i]=(int)(rand() & 0xff); } int * d_arr; cudaMalloc((void**)&d_arr, size); cudaMemcpy(d_arr, h_arr, size, cudaMemcpyHostToDevice); dim3 block(64); dim3 grid(2); memtransf<<<grid, block>>>(d_arr); cudaDeviceSynchronize(); cudaFree(d_arr); free(h_arr); cudaDeviceReset(); return 0; }
20,388
template<typename T, typename U> __global__ void addCUDA(T *a, U *b, T *c){ *c = *a + *b; } template<typename T, typename U> __global__ void subCUDA(T *a, U *b, T *c){ *c = *a - *b; } template<typename T, typename U> __global__ void mulCUDA(T *a, U *b, T *c){ *c = *a * *b; } template<typename T, typename U> __global__ void divCUDA(T *a, U *b, T *c){ *c = *a / *b; } //array op array template<typename T, typename U> __global__ void addVecCUDA(T *a, U *b, T *c){ int index = blockIdx.x * blockDim.x + threadIdx.x; c[index] = a[index] + b[index]; } template<typename T, typename U> __global__ void subVecCUDA(T *a, U *b, T *c){ /* insert code to calculate the index properly using blockIdx.x, blockDim.x, threadIdx.x */ int index = blockIdx.x * blockDim.x + threadIdx.x; c[index] = a[index] - b[index]; } template<typename T, typename U> __global__ void mulVecCUDA(T *a, U *b, T *c){ /* insert code to calculate the index properly using blockIdx.x, blockDim.x, threadIdx.x */ int index = blockIdx.x * blockDim.x + threadIdx.x; c[index] = a[index] * b[index]; } template<typename T, typename U> __global__ void divVecCUDA(T *a, U *b, T *c){ /* insert code to calculate the index properly using blockIdx.x, blockDim.x, threadIdx.x */ int index = blockIdx.x * blockDim.x + threadIdx.x; c[index] = a[index] / b[index]; } template<typename T, typename U> __global__ void accVecCUDA(T *a, U *b, T *c, int count){ /* insert code to calculate the index properly using blockIdx.x, blockDim.x, threadIdx.x */ int index = blockIdx.x * blockDim.x + threadIdx.x; for (int i = 0; i < count; ++i){ c[index] = c[index] + a[index] + b[index]; } } //pi template<typename T> __global__ void pi(T *result, int n) { T sum = T(0); for (int i = 0; i < n; i+=2){ sum = sum + (T(1) / (T(2) * T(i) + T(1))); sum = sum - (T(1) / (T(2) * T(i+1) + T(1))); } *result = T(4)*sum; }
20,389
__global__ void otp(int *v, int *k) { v[threadIdx.x] = v[threadIdx.x] ^ (*k); }
20,390
#include <math.h> #include <stdlib.h> #include <stdio.h> #include "unistd.h" #include "time.h" #include "string.h" // Stores output value computed in inner loop for each thread __shared__ float localvalue[4008]; // Stores temporary shift values __constant__ float dm_shifts[1024]; // -------------------------- The Dedispersion Loop ----------------------------------- __global__ void dedisperse_loop(float *outuff, float *buff, int nsamp, int nchans, float tsamp, int chanfactor, float startdm, float dmstep, int inshift, int outshift) { int samp, s, c, indx, soffset; float shift_temp; /* dedispersing loop over all samples in this buffer */ s = threadIdx.x + blockIdx.x * blockDim.x; shift_temp = (startdm + blockIdx.y * dmstep) / tsamp; for (samp = 0; s + samp < nsamp; samp += blockDim.x * gridDim.x) { soffset = (s + samp); /* clear array element for storing dedispersed subband */ localvalue[threadIdx.x] = 0.0; /* loop over the channels */ for (c = 0; c < nchans; c ++) { indx = (soffset + (int)(dm_shifts[c * chanfactor] * shift_temp)) * nchans + c; localvalue[threadIdx.x] += buff[inshift + indx]; } outuff[outshift + blockIdx.y * nsamp + soffset] = localvalue[threadIdx.x]; } } // -------------------------- Main Program ----------------------------------- float fch1 = 126, foff = -6, tsamp = 5e-6, dmstep = 0.065, startdm = 0; int nchans = 128, nsamp = 1024, tdms = 128; int gridsize = 128, blocksize = 128; // Process command-line parameters void process_arguments(int argc, char *argv[]) { int i = 1; while((fopen(argv[i], "r")) != NULL) i++; while(i < argc) { if (!strcmp(argv[i], "-nchans")) nchans = atoi(argv[++i]); else if (!strcmp(argv[i], "-nsamp")) nsamp = atoi(argv[++i]); else if (!strcmp(argv[i], "-dmstep")) dmstep = atof(argv[++i]); else if (!strcmp(argv[i], "-startdm")) startdm = atof(argv[++i]); else if (!strcmp(argv[i], "-tdms")) tdms = atoi(argv[++i]); else if (!strcmp(argv[i], "-gridsize")) gridsize = atoi(argv[++i]); else if (!strcmp(argv[i], "-blocksize")) blocksize = atoi(argv[++i]); i++; } foff = foff / (float) nchans; tsamp = tsamp * nchans; } // Fill buffer with data (blocking call) void generate_data(float* buffer, int nsamp, int nchans) { for(int i = 0; i < nsamp * nchans; i++) buffer[i] = 01; } // DM delay calculation float dmdelay(float f1, float f2) { return(4148.741601 * ((1.0 / f1 / f1) - (1.0 / f2 / f2))); } int main(int argc, char *argv[]) { float *input, *output, *d_input, *d_output; int maxshift; process_arguments(argc, argv); printf("nsamp: %d, nchans: %d, tsamp: %f, startdm: %f, dmstep: %f, tdms: %d, fch1: %f, foff: %f\n", nsamp, nchans, tsamp, startdm, dmstep, tdms, fch1, foff); // Calculate temporary DM-shifts float *dmshifts = (float *) malloc(nchans * sizeof(float)); for (unsigned i = 0; i < nchans; i++) dmshifts[i] = dmdelay(fch1 + (foff * i), fch1); // Calculate maxshift maxshift = dmshifts[nchans - 1] * (startdm + dmstep * tdms) / tsamp; // Initialise input buffer input = (float *) malloc( (nsamp + maxshift) * nchans * sizeof(float)); output = (float *) malloc( nsamp * tdms * sizeof(float)); // Allocate arrays input = (float *) malloc( (nsamp + maxshift) * nchans * sizeof(float)); output = (float *) malloc( nsamp * tdms * sizeof(float)); // Initialise CUDA stuff ( cudaSetDevice(0)); cudaEvent_t event_start, event_stop; float timestamp, kernelTime; dim3 gridDim(gridsize, tdms); cudaEventCreate(&event_start); cudaEventCreate(&event_stop); // Allocate CUDA memory and copy dmshifts ( cudaMalloc((void **) &d_input, (nsamp + maxshift) * nchans * sizeof(float))); ( cudaMalloc((void **) &d_output, nsamp * tdms * sizeof(float))); ( cudaMemset(d_output, 0, nsamp * tdms * sizeof(float))); ( cudaMemcpyToSymbol(dm_shifts, dmshifts, nchans * sizeof(int)) ); time_t start = time(NULL); // Copy input to GPU cudaEventRecord(event_start, 0); ( cudaMemcpy(d_input, input, (nsamp + maxshift) * nchans * sizeof(float), cudaMemcpyHostToDevice) ); cudaEventRecord(event_stop, 0); cudaEventSynchronize(event_stop); cudaEventElapsedTime(&timestamp, event_start, event_stop); printf("Copied to GPU in: %lf\n", timestamp); // Dedisperse cudaEventRecord(event_start, 0); dedisperse_loop<<<gridDim, blocksize >>>(d_output, d_input, nsamp, nchans, tsamp, 1, startdm, dmstep, 0, 0); cudaEventRecord(event_stop, 0); cudaEventSynchronize(event_stop); cudaEventElapsedTime(&timestamp, event_start, event_stop); printf("Processed in: %lf\n", timestamp); kernelTime = timestamp; // Copy output from GPU cudaEventRecord(event_start, 0); ( cudaMemcpy(output, d_output, nsamp * tdms * sizeof(float), cudaMemcpyDeviceToHost) ); cudaEventRecord(event_stop, 0); cudaEventSynchronize(event_stop); cudaEventElapsedTime(&timestamp, event_start, event_stop); printf("Copied from GPU in: %lf\n", timestamp); printf("Total time: %d\n", (int) (time(NULL) - start)); printf("Performance: %lf Gflops\n", (nchans * tdms) * (nsamp * 1.0 / kernelTime / 1.0e6)); }
20,391
#include "includes.h" __global__ void matrixAdd_A_Kernel(float* A, float* B, float* C, size_t pitch, int width){ //compute indexes int row = blockIdx.x * blockDim.x + threadIdx.x; int col = blockIdx.y * blockDim.y + threadIdx.y; int rowWidthWithPad = pitch/sizeof(float); if(row < width && col < width) C[row * rowWidthWithPad + col] = A[row * rowWidthWithPad + col] + B[row * rowWidthWithPad + col]; }
20,392
#include <stdio.h> #include <stdlib.h> #include "cs_whm_encode.h" __global__ void d_do_a_pair_32_2_32( int *a, int size, int offset ) { int tid = blockIdx.x*blockDim.x + threadIdx.x; int f, ff ; if ( tid < ( size >> 1 )) { f = ( tid / offset ) * ( offset << 1 ) ; tid = f + tid % offset ; f = a[ tid ] ; ff = a[ tid + offset ] ; a[ tid ] = f + ff ; a[ tid + offset ] = f - ff ; } } __global__ void d_do_a_pair_8_2_32( unsigned char *from, int size, int offset, int *to ) { int tid = blockIdx.x*blockDim.x + threadIdx.x; int f, ff ; if ( tid < ( size >> 1 )) { f = ( tid / offset ) * ( offset << 1 ) ; tid = f + tid % offset ; f = from[ tid ] ; ff = from[ tid + offset ] ; to[ tid ] = f + ff ; to[ tid + offset ] = f - ff ; } } void cs_whm_measurement( char *d_from, int *d_to, int n ) { int first, loop, offset ; int nThreadsPerBlock = 512; int nBlocks = ( n + ( nThreadsPerBlock - 1 )) / nThreadsPerBlock ; first = 1 ; loop = n ; loop >>= 1 ; offset = 1 ; while ( loop > 0 ) { #ifdef CUDA_OBS fprintf( stderr, "cs_whm_measurement: f %p t %p cnt %d first %d " "loop %d offset %d nblk %d \n", d_from, d_to, n, first, loop, offset, nBlocks ) ; #endif if ( first ) { d_do_a_pair_8_2_32 <<< nBlocks, nThreadsPerBlock >>> (( unsigned char * )d_from, n, offset, d_to ) ; first = 0 ; } else d_do_a_pair_32_2_32 <<< nBlocks, nThreadsPerBlock >>> ( d_to, n, offset ) ; cudaThreadSynchronize() ; offset <<= 1 ; loop >>= 1 ; } }
20,393
/* * Please write your name and net ID below * * Last name: Boran * First name: Tudor * Net ID: N13059231 * * I have attached a readme, you can also compile with make (which I used to get this in nsight, because I love IDEs) */ /* * This file contains the code for doing the heat distribution problem. * You do not need to modify anything except starting gpu_heat_dist() at the bottom * of this file. * In gpu_heat_dist() you can organize your data structure and the call to your * kernel(s) that you need to write too. * * You compile with: * nvcc -o heatdist -arch=sm_60 heatdist.cu */ #include <cuda.h> #include <stdlib.h> #include <stdio.h> #include <time.h> /* To index element (i,j) of a 2D array stored as 1D */ #define index(i, j, N) ((i)*(N)) + (j) /* Block size = BLOCK_WIDTH*BLOCK_WIDTH */ #define BLOCK_WIDTH 8 /*****************************************************************/ // Function declarations: Feel free to add any functions you want. void seq_heat_dist(float *, unsigned int, unsigned int); void gpu_heat_dist(float *, unsigned int, unsigned int); void check_err(cudaError_t, const char *); __global__ void gpu_heat_dist_kernel(float *, float *, unsigned int); /*****************************************************************/ /**** Do NOT CHANGE ANYTHING in main() function ******/ int main(int argc, char * argv[]) { unsigned int N; /* Dimention of NxN matrix */ int type_of_device = 0; // CPU or GPU int iterations = 0; int i; /* The 2D array of points will be treated as 1D array of NxN elements */ float * playground; // to measure time taken by a specific part of the code double time_taken; clock_t start, end; if(argc != 4) { fprintf(stderr, "usage: heatdist num iterations who\n"); fprintf(stderr, "num = dimension of the square matrix (50 and up)\n"); fprintf(stderr, "iterations = number of iterations till stopping (1 and up)\n"); fprintf(stderr, "who = 0: sequential code on CPU, 1: GPU execution\n"); exit(1); } type_of_device = atoi(argv[3]); N = (unsigned int) atoi(argv[1]); iterations = (unsigned int) atoi(argv[2]); /* Dynamically allocate NxN array of floats */ playground = (float *)calloc(N*N, sizeof(float)); if( !playground ) { fprintf(stderr, " Cannot allocate the %u x %u array\n", N, N); exit(1); } /* Initialize it: calloc already initalized everything to 0 */ // Edge elements to 70F for(i = 0; i < N; i++) playground[index(0,i,N)] = 70; for(i = 0; i < N; i++) playground[index(i,0,N)] = 70; for(i = 0; i < N; i++) playground[index(i,N-1, N)] = 70; for(i = 0; i < N; i++) playground[index(N-1,i,N)] = 70; // from (0,10) to (0,30) inclusive are 100F for(i = 10; i <= 30; i++) playground[index(0,i,N)] = 100; // from (n-1,10) to (n-1,30) inclusive are 150F for(i = 10; i <= 30; i++) playground[index(N-1,i,N)] = 150; if( !type_of_device ) // The CPU sequential version { start = clock(); seq_heat_dist(playground, N, iterations); end = clock(); } else // The GPU version { start = clock(); gpu_heat_dist(playground, N, iterations); end = clock(); } time_taken = ((double)(end - start))/ CLOCKS_PER_SEC; printf("Time taken for %s is %lf\n", type_of_device == 0? "CPU" : "GPU", time_taken); free(playground); return 0; } /***************** The CPU sequential version (DO NOT CHANGE THAT) **************/ void seq_heat_dist(float * playground, unsigned int N, unsigned int iterations) { // Loop indices int i, j, k; int upper = N-1; // number of bytes to be copied between array temp and array playground unsigned int num_bytes = 0; float * temp; /* Dynamically allocate another array for temp values */ /* Dynamically allocate NxN array of floats */ temp = (float *)calloc(N*N, sizeof(float)); if( !temp ) { fprintf(stderr, " Cannot allocate temp %u x %u array\n", N, N); exit(1); } num_bytes = N*N*sizeof(float); /* Copy initial array in temp */ memcpy((void *)temp, (void *) playground, num_bytes); for( k = 0; k < iterations; k++) { /* Calculate new values and store them in temp */ for(i = 1; i < upper; i++) for(j = 1; j < upper; j++) temp[index(i,j,N)] = (playground[index(i-1,j,N)] + playground[index(i+1,j,N)] + playground[index(i,j-1,N)] + playground[index(i,j+1,N)])/4.0; /* Move new values into old values */ memcpy((void *)playground, (void *) temp, num_bytes); } } /***************** The GPU version: Write your code here *********************/ /* This function can call one or more kernels if you want ********************/ void gpu_heat_dist(float * playground, unsigned int N, unsigned int iterations) { // number of bytes to be copied between array temp and array playground size_t count = N*N; unsigned int num_bytes = count*sizeof(float); unsigned int k; float *d_temp = NULL, *d_playground = NULL; /* Dynamically allocate NxN array of floats */ cudaError_t err; err = cudaMalloc((void**)&d_playground, num_bytes); /* Dynamically allocate another array for temp values */ err = cudaMalloc((void**)&d_temp, num_bytes); check_err(err, "allocating memory on device."); err = cudaMemcpy(d_temp, playground, count*sizeof(float), cudaMemcpyHostToDevice); err = cudaMemcpy(d_playground, playground, count*sizeof(float), cudaMemcpyHostToDevice); check_err(err, "copying array to device memory."); dim3 block(BLOCK_WIDTH, BLOCK_WIDTH, 1); dim3 grid(N/BLOCK_WIDTH + 1, N/BLOCK_WIDTH + 1, 1); for (k = 0; k < iterations; k++) { gpu_heat_dist_kernel<<<grid, block>>>(d_playground, d_temp, N); cudaThreadSynchronize(); err = cudaMemcpy(d_playground, d_temp, count*sizeof(float),cudaMemcpyDeviceToDevice); } err = cudaMemcpy(playground, d_playground, count*sizeof(float), cudaMemcpyDeviceToHost); check_err(err, "copying array back to host."); cudaFree(d_playground); cudaFree(d_temp); } __global__ void gpu_heat_dist_kernel(float *d_playground, float *d_temp, unsigned int N) { unsigned int upper = N-1; unsigned int i, j; i = blockIdx.x*blockDim.x + threadIdx.x; j = blockIdx.y*blockDim.y + threadIdx.y; if (i > 0 && i < upper && j > 0 && j < upper) { d_temp[index(i,j,N)] = (d_playground[index(i-1,j,N)] + d_playground[index(i+1,j,N)] + d_playground[index(i,j-1,N)] + d_playground[index(i,j+1,N)])/4.0; } } void check_err(cudaError_t err, const char *msg) { if (err != cudaSuccess) { fprintf(stderr, "CUDA Error: %s\n", msg); exit(1); } }
20,394
#include<iostream> #include <cuda.h> __global__ void matmul_kernel(const float* A, const float* B, float* C, unsigned int n) { extern __shared__ float sm[]; float *sA = &sm[0]; float *sB = &sA[blockDim.x*blockDim.x]; int r = blockIdx.y*blockDim.x+ threadIdx.y; int c = blockIdx.x*blockDim.x + threadIdx.x; float opval = 0.0; int tx = threadIdx.x; int ty = threadIdx.y; int bx = blockIdx.x; int by = blockIdx.y; for (int q = 0; q < (blockDim.x + n - 1)/blockDim.x; q++) { if (q*blockDim.x + threadIdx.x < n && r < n) sA[blockDim.x*ty+ tx] = A[r*n + q*blockDim.x + threadIdx.x]; else sA[blockDim.x*ty+ tx] = 0.0; if (q*blockDim.x+ threadIdx.y < n && c< n) sB[blockDim.x*ty+ tx] = B[(q*blockDim.x + threadIdx.y)*n + c]; else sB[blockDim.x*ty+ tx] = 0.0; __syncthreads(); for (int j = 0; j < blockDim.x; ++j)//Multiplying Elements present in tile { opval += sA[blockDim.x*ty+ j] * sB[blockDim.x*j+ tx]; } __syncthreads(); } int cindex = (by * blockDim.x + threadIdx.y)*n+(bx*blockDim.x)+threadIdx.x; if (r < n && c < n) C[cindex]=opval; } __host__ void matmul(const float* A, const float* B, float* C, unsigned int n, unsigned int block_dim) { dim3 dimBlock(block_dim,block_dim); int gridsize= (n + block_dim -1)/ block_dim; dim3 dimGrid(gridsize,gridsize); matmul_kernel<<<dimGrid,dimBlock, 2*block_dim*block_dim* sizeof(float)>>>(A, B, C, n); cudaDeviceSynchronize(); }
20,395
#include <stdio.h> #include <cstdlib> #include <iostream> #include <vector> #define BS 32 #define NUM_BLOCKS 1500 #define NUM_THREADS_PER_BLOCK 1500 #define SIZE NUM_BLOCKS*NUM_THREADS_PER_BLOCK using namespace std; cudaEvent_t start, stop; // These are specific to measure the execution of only the kernel execution - might be useful void startKernelTime (void) { cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start); } void stopKernelTime (void) { cudaEventRecord(stop); cudaEventSynchronize(stop); float milliseconds = 0; cudaEventElapsedTime(&milliseconds, start, stop); cout << milliseconds << " ms have elapsed for the CUDA execution" << endl; } void checkCUDAError (const char *msg) { cudaError_t err = cudaGetLastError(); if( cudaSuccess != err) { cerr << "Cuda error: " << msg << ", " << cudaGetErrorString( err) << endl; exit(-1); } } // Fill the input parameters and kernel qualifier __global__ void dotKernel (float *dev_m1, float *dev_m2, float *dev_output) { __shared__ float shareA[BS][BS]; __shared__ float shareB[BS][BS]; int bx = blockIdx.x; int by = blockIdx.y; int tx = threadIdx.x; int ty = threadIdx.y; int row = by * BS + ty; int col = bx * BS + tx; float tmp_sum = 0.0f; for(int i = 0; i < NUM_BLOCKS/BS; ++i){ shareA[ty][tx] = dev_m1[row* NUM_BLOCKS + (i * BS + tx)]; shareB[ty][tx] = dev_m2[(i * BS + ty) * NUM_BLOCKS + col]; __syncthreads(); for(int k = 0; k < BS; ++k){ tmp_sum += shareA[ty][k] * shareB[k][tx]; __syncthreads(); } dev_output[row * NUM_BLOCKS + col] = tmp_sum; } } // Fill with the code required for the GPU dot (mem allocation, transfers, kernel launch of dotKernel) float* dotGPU (float *m1, float *m2) { float *dev_m1, *dev_m2, *dev_output; float *array_output = new float [SIZE]; // allocate the memory on the device cudaMalloc((void**) &dev_m1, sizeof(float) * SIZE); cudaMalloc((void**) &dev_m2, sizeof(float) * SIZE); cudaMalloc((void**) &dev_output, sizeof(float) * SIZE); startKernelTime(); // copy inputs to the device cudaMemcpy(dev_m1, m1, sizeof(float) * SIZE, cudaMemcpyHostToDevice); cudaMemcpy(dev_m2, m2, sizeof(float) * SIZE, cudaMemcpyHostToDevice); cudaMemcpy(dev_output, array_output, sizeof(float) * SIZE, cudaMemcpyHostToDevice); dim3 blocksPerGrid(BS, BS, 1); dim3 threadsPerBlock(NUM_THREADS_PER_BLOCK/BS, NUM_THREADS_PER_BLOCK/BS, 1); // launch the kernel dotKernel <<< blocksPerGrid, threadsPerBlock >>> (dev_m1, dev_m2, dev_output); // copy the output to the host cudaMemcpy(array_output, dev_output, sizeof(float) * SIZE, cudaMemcpyDeviceToHost); stopKernelTime(); for(size_t i = 0; i < 512; i++) { cout << array_output[i] << '\n'; } // free the device memory cudaFree(dev_m1); cudaFree(dev_m2); cudaFree(dev_output); return array_output; } int main (int argc, char** argv) { float array1 [SIZE]; float array2 [SIZE]; // initialize array with random values for (unsigned i = 0; i < SIZE; i++) { array1[i] = ((float) rand()) / ((float) RAND_MAX) * 10; array2[i] = 1; } for(size_t i = 0; i < 4; i++) { cout << array1[i * NUM_BLOCKS] << '\n'; } dotGPU(array1, array2); return 0; }
20,396
#include <stdio.h> #include <stdlib.h> #include <cstdlib> #include <math.h> #define MATRIX_WIDTH 2025 #define MATRIX_HEIGHT 2025 #define MATRIX_SIZE MATRIX_WIDTH*MATRIX_HEIGHT #define TILE_WIDTH 45 #define TILE_HEIGHT 45 #define INIT_THREADS_PER_BLOCK 256 #define INIT_ELEMENTS_PER_THREAD 90 #define INIT_ELEMENTS_PER_BLOCK INIT_ELEMENTS_PER_THREAD*INIT_THREADS_PER_BLOCK /* * Matrix transpose - device function * ---------------------------------------- * Description: * this function transpose matrix element block by block * and line by line * Parms: * - idata (int*) - input matrix * - odata (int*) - output matix (allocated alrea) */ __global__ void transpose_matrix(int* idata, int* odata, int block_per_row) { // allocate shared memory __shared__ int shared_input[TILE_HEIGHT][TILE_WIDTH]; __shared__ int shared_output[TILE_WIDTH][TILE_HEIGHT]; // estimate current position int line = threadIdx.x; int block = blockIdx.x; // local data from global memory (idata) to shared memory (shared_input) int block_row = (block/block_per_row); int block_column = block % block_per_row; // cpy int block_start_pos =(block_row * (TILE_HEIGHT*MATRIX_WIDTH) + (block_column*TILE_WIDTH + (line*MATRIX_WIDTH))); //(block_row*TILE_HEIGHT+(line*MATRIX_WIDTH)); //int block_shift = TILE_WIDTH*block; for(int i=0; i < TILE_WIDTH; i++) { shared_input[line][i] = idata[block_start_pos+i]; } // single transposition blok for(int i=0;i<TILE_WIDTH;i++) { shared_output[i][line] = shared_input[line][i]; } __syncthreads(); if(block == 0) { block_start_pos = (block_column * (TILE_WIDTH*MATRIX_HEIGHT) + (block_row*TILE_HEIGHT + (line*MATRIX_HEIGHT))); for(int i=0; i<TILE_HEIGHT; i++) { odata[block_start_pos+i] = shared_output[line][i]; } //v 2 memcpy //memcpy( odata, shared_output, TILE_HEIGHT * sizeof(int) ); // TODO: napisac poprawnie zapisywanie wynikow w macierzy wynikowej } } /* * Initialize matrix - device function * ---------------------------------------- * Description: * this function initialze matrix INIT_ELEMENTS_PER_THREAD elements by elements * Parms: * - idata (int*) - matrix * - size (int) - matrix size (number of elements) */ __global__ void init_matrix( int *idata, int size ) { int elements_count; int start_id = (threadIdx.x * INIT_ELEMENTS_PER_THREAD ); // set elements count if ( start_id+INIT_ELEMENTS_PER_THREAD > size ) { elements_count = size-start_id; }else{ elements_count = INIT_ELEMENTS_PER_THREAD; } // set elementsPerThread elements int value = start_id + ( blockIdx.x * INIT_ELEMENTS_PER_BLOCK ); for( int i=0; i < elements_count; i++ ) idata[value+i] = value+i; } /* * Print matrix window - host function * ---------------------------------------- * Description: * this function copy data form device * and print output to screen * host matrix size has to be the same as device matrix size * Pamrs: * - h_matrix (int*) - host matrix * - d_matrix (int*) - device matrix * - start_height, start_width, end_height, end_width (int) - displaying area */ void print_matrix_window(int* h_matrix, int* d_matrix, int start_height, int start_width, int end_height, int end_width ) { cudaMemcpy( h_matrix, d_matrix, sizeof(int)*MATRIX_SIZE, cudaMemcpyDeviceToHost); printf("--------------------\n"); for(int y=start_height; y < end_height; y++) { for(int x=start_width; x < end_width; x++) { printf("%d\t", h_matrix[x + ( y * MATRIX_WIDTH ) ]); } printf("\n"); } } /* * return GB per second for given data */ double GBperSec(float runtime, double bytes) { return 100*(bytes/1073741824)/runtime; } int main(void) { int number_of_device,device_number; cudaGetDeviceCount(&number_of_device); if(number_of_device >0){ for(device_number=0;device_number<number_of_device; device_number++){ cudaDeviceProp device_prop; cudaGetDeviceProperties(&device_prop, device_number); printf("number of device: %d prop: %s\n",device_number, device_prop.name); } } int *d_idata, *d_odata, *h_matrix, blocks_count, block_per_row; cudaEvent_t init_start, init_end; float init_time; // create init events cudaEventCreate(&init_start); cudaEventCreate(&init_end); cudaEvent_t transpose_start, transpose_end; float transpose_time; // create transpose events cudaEventCreate(&transpose_start); cudaEventCreate(&transpose_end); // size validation if ( MATRIX_WIDTH % TILE_WIDTH != 0 || MATRIX_HEIGHT % TILE_HEIGHT != 0) { printf("Invalid matrix size\n"); return 1; } cudaMalloc( (void**)&d_idata, sizeof(int) * MATRIX_SIZE ); cudaMalloc( (void**)&d_odata, sizeof(int) * MATRIX_SIZE ); h_matrix = new int[ MATRIX_SIZE ]; // matrix initialization // set data to global memory blocks_count = ceil(((MATRIX_SIZE+INIT_THREADS_PER_BLOCK-1)/INIT_THREADS_PER_BLOCK)/INIT_ELEMENTS_PER_THREAD); cudaEventRecord(init_start, 0); init_matrix<<< blocks_count, INIT_THREADS_PER_BLOCK >>>(d_idata, MATRIX_SIZE); cudaEventRecord(init_end, 0); cudaEventSynchronize(init_end); cudaEventElapsedTime(&init_time, init_start, init_end); printf("init matrix:\n\tblocks count: %d\n\tthreads per block: %d\n\telements per thread: %d\n\ttime: %f ms\n\tspeed: %lf GB/s\n", blocks_count, INIT_THREADS_PER_BLOCK, INIT_ELEMENTS_PER_THREAD, init_time, GBperSec(init_time, MATRIX_SIZE*sizeof(int))); print_matrix_window(h_matrix, d_idata, 0, 0, 10, 10); blocks_count = MATRIX_SIZE / (TILE_WIDTH*TILE_HEIGHT); block_per_row = MATRIX_WIDTH/TILE_WIDTH; cudaEventRecord(transpose_start, 0); transpose_matrix<<< blocks_count, TILE_HEIGHT >>>(d_idata, d_odata, block_per_row); cudaEventRecord(transpose_end, 0); cudaEventSynchronize(transpose_end); cudaEventElapsedTime(&transpose_time, transpose_start, transpose_end); printf("\ntranspose matrix:\n\tblocks count: %d\n\tthreads per block: %d\n\tblock per row: %d\n\ttime: %f ms\n\tspeed: %lf GB/s\n", blocks_count, TILE_HEIGHT, block_per_row, transpose_time, GBperSec(transpose_time, MATRIX_SIZE*sizeof(int))); print_matrix_window(h_matrix, d_odata, 0, 0, 10, 10); // clear memory allocation cudaFree( d_idata ); cudaFree( d_odata ); delete [] h_matrix; return 0; }
20,397
/* Troca os valores de posição em um vetor (inverte os valores no vetor). Exemplo da necessidade da sincronização de threads de um bloco. Exemplo para alocação dinâmica e estática de shared mem Quando a função __syncthreads() no kernel está comentada, o resultado fica errado. Os if's nos for's das saídas dos resultados mostram os casos errados. */ #include <stdio.h> #include <stdlib.h> #include <cuda.h> #define N 512 __global__ void staticReverse(int *vetD_glb) { __shared__ int vetD_shd[N]; int t = threadIdx.x; int tr = N-t-1; vetD_shd[t] = vetD_glb[t]; // __syncthreads(); vetD_glb[t] = vetD_shd[tr]; } __global__ void dynamicReverse(int *vetD_glb) { extern __shared__ int vetD_shd[]; int t = threadIdx.x; int tr = N-t-1; vetD_shd[t] = vetD_glb[t]; //__syncthreads(); vetD_glb[t] = vetD_shd[tr]; } int main(void) { int vetA_h[N], vetCtrl_h[N], vetD_h[N]; int *vetD_d; int i; for (i = 0; i < N; i++) { vetA_h[i] = i; // source vetCtrl_h[i] = N-i-1; // just to check our results vetD_h[i] = 0; // target } cudaMalloc(&vetD_d, N * sizeof(int)); // copy vet a into device global memory cudaMemcpy(vetD_d, vetA_h, N*sizeof(int), cudaMemcpyHostToDevice); // run version with static shared memory staticReverse<<<1,N>>>(vetD_d); // copy results from device to host memory cudaMemcpy(vetD_h, vetD_d, N*sizeof(int), cudaMemcpyDeviceToHost); printf("Static Results(%d): ", N); for (i = 0; i < N; i++) if (vetD_h[i] != vetCtrl_h[i]) printf("vetD_h[%d]=%d, vetCtrl_h[%d]=%d ", i, vetD_h[i], i, vetCtrl_h[i]); printf("\nN=%d \n", N); // ************************************************* // copy again vet a into device global memory cudaMemcpy(vetD_d, vetA_h, N*sizeof(int), cudaMemcpyHostToDevice); // run dynamic shared memory version dynamicReverse<<<1,N,N*sizeof(int)>>>(vetD_d); // copy results from device to host memory cudaMemcpy(vetD_h, vetD_d, N * sizeof(int), cudaMemcpyDeviceToHost); printf("Dynamic Results(%d): ", N); for (i = 0; i < N; i++) if (vetD_h[i] != vetCtrl_h[i]) printf("vetD_h[%d]=%d, vetCtrl_h[%d]=%d ", i, vetD_h[i], i, vetCtrl_h[i]); printf("\nN=%d \n", N); // device memory free!!!! cudaFree(vetD_d); exit(0); }
20,398
#include <stdio.h> #include <stdlib.h> #include <assert.h> #include <iostream> #include <bitset> __global__ void block_reduction (int *a, int len) { __shared__ int smem[256]; assert(blockDim.x <= 256); smem[threadIdx.x] = threadIdx.x; __syncthreads(); for (int i = blockDim.x/2; i > 0; i = i/2) { if(threadIdx.x < i) { int temp = smem[threadIdx.x] + smem[threadIdx.x + i]; smem[threadIdx.x] = temp; } __syncthreads(); } a[threadIdx.x] = smem[0]; } int main (int args, char **argv) { int len = 256; int *a = new int[len]; int *a_d; cudaMalloc ((void **) &a_d, sizeof (int) * len); block_reduction <<< 1, len >>> (a_d, len); cudaMemcpy (a, a_d, sizeof (int) * len, cudaMemcpyDeviceToHost); std::cout<<"Block id sum: "<< a[0]<<"\n"; int sum = 0; for (int i = 0; i < 256; i ++) sum += i; std::cout<<"Correct result: "<<sum<<"\n"; return 0; }
20,399
#include "includes.h" __global__ void setDiffVolumeKernel(float *d_fv, unsigned char *d_picture1, unsigned char *d_picture2, unsigned picWidth, unsigned picHeight) { __shared__ float p1_section[10 * 10 * 4]; __shared__ float p2_section[10 * 10 * 4]; unsigned i; // This thread's position in its block's subsection of the float volume unsigned sx, sy, sz; // Dimensions of the grid unsigned gx, gy, gz; // Position of this thread's block unsigned bx, by, bz; // This thread's position in the entire float volume unsigned vx, vy, vz; // The location of the colors that this thread will be comparing unsigned c1, c2; // Get the position of this thread in its subsection sz = threadIdx.x % 10; sy = threadIdx.x / 100; sx = (threadIdx.x % 100) / 10; // Get the dimensions of the grid gz = picWidth / 10; if(picWidth % 10) gz++; gy = picHeight / 10; if(picHeight % 10) gy++; gx = picWidth / 10; if(picWidth % 10) gx++; // Get the position of this thread's block bz = blockIdx.x % gz; by = blockIdx.x / (gx * gz); bx = (blockIdx.x % (gx * gz)) / gz; // Get the position of this thread in entire float volume vx = sx + 10 * bx; vy = sy + 10 * by; vz = sz + 10 * bz; // Copy subpicture to shared memory // See if this thread needs to copy from picture 1 // picture 1 covers width * height // If the float volume z of this thread is zero, // then it needs to copy from picture 1 if(sz == 0) { // Check if this thread will get a pixel not in the picture if(vx < picWidth && vy < picHeight) { for(i = 0; i < 4; i++) { p1_section[(sx + sy * 10) * 4 + i] = (float) d_picture1[(vx + vy * picWidth) * 4 + i]; } } } // See if this thread needs to copy from picture 2 // picture 2 covers depth * height // If the float volume x of this thread is zero, // then it needs to copy from picture 2 if(sx == 0) { // Check if this thread will get a pixel not in the picture if(vz < picWidth && vy < picHeight) { for(i = 0; i < 4; i++) { p2_section[(sz + sy * 10) * 4 + i] = (float) d_picture2[(vz + vy * picWidth) * 4 + i]; } } } __syncthreads(); // Now each of d_picture1 and d_picture2 are properly filled out // Write difference into float volume if(vx < picWidth && vy < picHeight && vz < picWidth) { c1 = (sx + sy * 10) * 4; c2 = (sz + sy * 10) * 4; d_fv[vz + vx * picWidth + vy * picWidth * picWidth] = sqrtf( powf(p1_section[c1 + 0] - p2_section[c2 + 0], 2.f) + powf(p1_section[c1 + 1] - p2_section[c2 + 1], 2.f) + powf(p1_section[c1 + 2] - p2_section[c2 + 2], 2.f) + powf(p1_section[c1 + 3] - p2_section[c2 + 3], 2.f) ); } }
20,400
#include <iostream> #include <cuda_runtime_api.h> #include <stdlib.h> using namespace std; #define LEN 100000000 __global__ void add_vec(int *v1, int *v2, int *res, size_t l) { // cudaError_t status; int i = blockIdx.x * blockDim.x + threadIdx.x; int step = gridDim.x * blockDim.x; for (; i < l; i+= step) { res[i] = v1[i] + v2[i]; } } int main() { int *v1_cpu, *v2_cpu, *res_cpu; v1_cpu = (int*)calloc(LEN, sizeof(int)); v2_cpu = (int*)calloc(LEN, sizeof(int)); for (int i = 0; i < LEN; i++) { v1_cpu[i] = i; v2_cpu[i] = i * 40 + 2; } cudaError_t status; int *v1_gpu, *v2_gpu, *res_gpu; status = cudaMalloc((void**)&v1_gpu, sizeof(int) * LEN); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaMalloc((void**)&v2_gpu, sizeof(int) * LEN); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaMalloc((void**)&res_gpu, sizeof(int) * LEN); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaMemcpy(v1_gpu, v1_cpu, sizeof(int) * LEN, cudaMemcpyHostToDevice); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaMemcpy(v2_gpu, v2_cpu, sizeof(int) * LEN, cudaMemcpyHostToDevice); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } free(v1_cpu); free(v2_cpu); add_vec<<<2, 32, 0>>>(v1_gpu, v2_gpu, res_gpu, LEN); res_cpu = (int*)calloc(sizeof(int), LEN); status = cudaMemcpy(res_cpu, res_gpu, sizeof(int) * LEN, cudaMemcpyDeviceToHost); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaFree(v1_gpu); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaFree(v2_gpu); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } status = cudaFree(res_gpu); if (status != cudaSuccess) { cout << cudaGetErrorString(status) << endl; } free(res_cpu); return 0; }