blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
57e2f240f2a24e3600df5d73ec45b8d24e252a75
24f26275ffcd9324998d7570ea9fda82578eeb9e
/chrome/browser/web_applications/test/test_system_web_app_manager.h
b007543f58773c4a4d02ef745c0df5af1821c829
[ "BSD-3-Clause" ]
permissive
Vizionnation/chromenohistory
70a51193c8538d7b995000a1b2a654e70603040f
146feeb85985a6835f4b8826ad67be9195455402
refs/heads/master
2022-12-15T07:02:54.461083
2019-10-25T15:07:06
2019-10-25T15:07:06
217,557,501
2
1
BSD-3-Clause
2022-11-19T06:53:07
2019-10-25T14:58:54
null
UTF-8
C++
false
false
1,225
h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_WEB_APPLICATIONS_TEST_TEST_SYSTEM_WEB_APP_MANAGER_H_ #define CHROME_BROWSER_WEB_APPLICATIONS_TEST_TEST_SYSTEM_WEB_APP_MANAGER_H_ #include <vector> #include "base/macros.h" #include "base/version.h" #include "chrome/browser/web_applications/system_web_app_manager.h" #include "url/gurl.h" class Profile; namespace web_app { class TestSystemWebAppManager : public SystemWebAppManager { public: explicit TestSystemWebAppManager(Profile* profile); ~TestSystemWebAppManager() override; void SetSystemApps(base::flat_map<SystemAppType, SystemAppInfo> system_apps); void SetUpdatePolicy(SystemWebAppManager::UpdatePolicy policy); void set_current_version(const base::Version& version) { current_version_ = version; } // SystemWebAppManager: const base::Version& CurrentVersion() const override; private: base::Version current_version_{"0.0.0.0"}; DISALLOW_COPY_AND_ASSIGN(TestSystemWebAppManager); }; } // namespace web_app #endif // CHROME_BROWSER_WEB_APPLICATIONS_TEST_TEST_SYSTEM_WEB_APP_MANAGER_H_
[ "rjkroege@chromium.org" ]
rjkroege@chromium.org
415a30a950a83ea2d8d1112b5df55865b89674b4
7a07388e62ca52dd0052b2ff0c9e858b27397aa9
/src/Chip8.cpp
496a064225ff603bbeed48ca5c86f5aeaaf1d6ea
[]
no_license
Coul33t/CHIP8-TOR
386ae05c2542840bad407967650f4bb4a6319cca
1967ab274c7f6485dc2183c9f9df791b0010e0e1
refs/heads/master
2020-05-03T17:24:04.376943
2019-09-19T14:38:38
2019-09-19T14:38:38
178,743,179
0
0
null
null
null
null
UTF-8
C++
false
false
19,125
cpp
#include "Chip8.h" Chip8::Chip8(Screen* screen) { this->memory = std::vector<uint8_t>(4096, 0x00); this->V = std::vector<uint8_t>(16, 0x00); this->pc = 0x0200; this->I = 0x0000; this->sp = 0x0000; this->stack = std::vector<uint16_t>(16, 0x0000); this->delay_timer = 0x00; this->sound_timer = 0x00; this->key = std::vector<uint8_t>(16, 0x00); std::fill(std::begin(gfx), std::end(gfx), 0); this->screen = screen; this->draw_flag = false; this->set_opcodes(); // Init random generator (fixed seed for reproducible bugs) srand(42); } Chip8::~Chip8() { //dtor } bool Chip8::load_cartridge(std::string path) { std::ifstream input(path, std::ios::binary | std::ios::ate); if (!input.is_open()) { std::cout << "ERROR: can't open binary file." << std::endl; return false; } std::ifstream::pos_type pos = input.tellg(); size_t file_size = static_cast<size_t>(pos); std::vector<char> file_contents(file_size); input.seekg(0, std::ios::beg); input.read(&file_contents[0], pos); input.close(); for (unsigned int i = 0; i < file_contents.size(); i++) this->memory[0x200 + i] = file_contents[i]; std::cout << "Cartridge loaded in memory." << std::endl; return true; } bool Chip8::verify_implementation(bool verbose) { for (size_t i = 0x200; i < this->memory.size(); i += 2) { this->opcode = (uint8_t)this->memory[i] << 8 | (uint8_t)this->memory[i + 1]; bool found = false; for (unsigned int i = 0; i < this->instr.size(); i++) { if ((this->instr[i].range.first <= this->opcode) && (this->instr[i].range.second >= this->opcode)) { if (verbose) std::cout << std::hex << " implemented (" << this->instr[i].name << ")" << std::endl; found = true; break; } } if(!found) { if (verbose) std::cout << " not implemented." << std::endl; return false; } } std::cout << "All opcodes successfully decoded." << std::endl; return true; } bool Chip8::run_instructions(bool step_by_step, bool verbose) { for (size_t i = 0x200; i < this->memory.size(); i += 2) { this->opcode = (uint8_t)this->memory[i] << 8 | (uint8_t)this->memory[i + 1]; if (verbose) std::cout << "Current opcode: " << std::hex << this->opcode; if (step_by_step) std::cin.get(); bool found = false; for (unsigned int i = 0; i < this->instr.size(); i++) { if ((this->instr[i].range.first <= this->opcode) && (this->instr[i].range.second >= this->opcode)) { if (verbose) std::cout << std::hex << " implemented (" << this->instr[i].name << ")" << std::endl; this->instr[i].func(); found = true; break; } } if(!found) { if (verbose) std::cout << " not implemented." << std::endl; return false; } } return true; } void Chip8::run_cartridge(void) { bool found = false; while(true) { found = false; this->opcode = (uint8_t)this->memory[this->pc] << 8 | (uint8_t)this->memory[this->pc + 1]; for (unsigned int i = 0; i < this->instr.size(); i++) { if ((this->instr[i].range.first <= this->opcode) && (this->instr[i].range.second >= this->opcode)) { //std::cout << this->instr[i].name << std::endl; this->instr[i].func(); found = true; break; } } if (!found) { std::cout << "ERROR: Could not fetch opcode (" << std::hex << this->opcode << ")." << std::endl; return; } if (this->draw_flag) { screen->render_frame(this->gfx); draw_flag = false; } check_keys(); if(this->delay_timer > 0) --delay_timer; if (this->sound_timer > 0) { if (this->sound_timer == 1) { std::cout << "Do the BEEP" << std::endl; --sound_timer; } } //Sleep(500); } } void Chip8::check_keys(void) { SDL_Event event; SDL_Keycode key_code; while (SDL_PollEvent(&event)) { if(event.type == SDL_KEYDOWN){ key_code = event.key.keysym.sym; if (key_code == SDLK_1) key[0x1] = 1; else if(key_code == SDLK_2) key[0x2] = 1; else if(key_code == SDLK_3) key[0x3] = 1; else if(key_code == SDLK_4) key[0xC] = 1; else if(key_code == SDLK_a) key[0x4] = 1; else if(key_code == SDLK_z) key[0x5] = 1; else if(key_code == SDLK_e) key[0x6] = 1; else if(key_code == SDLK_r) key[0xD] = 1; else if(key_code == SDLK_q) key[0x7] = 1; else if(key_code == SDLK_s) key[0x8] = 1; else if(key_code == SDLK_d) key[0x9] = 1; else if(key_code == SDLK_f) key[0xE] = 1; else if(key_code == SDLK_w) key[0xA] = 1; else if(key_code == SDLK_x) key[0x0] = 1; else if(key_code == SDLK_c) key[0xB] = 1; else if(key_code == SDLK_v) key[0xF] = 1; //std::cout << "Key pressed: " << SDL_GetKeyName(key_code) << std::endl; } if(event.type == SDL_KEYDOWN){ key_code = event.key.keysym.sym; if (key_code == SDLK_1) key[0x1] = 0; else if(key_code == SDLK_2) key[0x2] = 0; else if(key_code == SDLK_3) key[0x3] = 0; else if(key_code == SDLK_4) key[0xC] = 0; else if(key_code == SDLK_a) key[0x4] = 0; else if(key_code == SDLK_z) key[0x5] = 0; else if(key_code == SDLK_e) key[0x6] = 0; else if(key_code == SDLK_r) key[0xD] = 0; else if(key_code == SDLK_q) key[0x7] = 0; else if(key_code == SDLK_s) key[0x8] = 0; else if(key_code == SDLK_d) key[0x9] = 0; else if(key_code == SDLK_f) key[0xE] = 0; else if(key_code == SDLK_w) key[0xA] = 0; else if(key_code == SDLK_x) key[0x0] = 0; else if(key_code == SDLK_c) key[0xB] = 0; else if(key_code == SDLK_v) key[0xF] = 0; //std::cout << "Key pressed: " << SDL_GetKeyName(key_code) << std::endl; } } } bool Chip8::check_borrow(uint8_t reg1, uint8_t reg2) { return (reg1 < reg2); } bool Chip8::check_carry(uint8_t reg1, uint8_t reg2) { if (reg1 > 256 - reg2) return true; if (reg2 > 256 - reg1) return true; return false; } void Chip8::MULTI00CC(void) { uint16_t masking = this->opcode & 0x00FF; switch(masking) { case 0x0000: break; case 0x00E0: DISPLAYCLEAR(); break; case 0x00EE: RETURN(); break; default: std::cout << "WARNING: Specific function of 0x00CC not implemented. (" << std::hex << masking << ")" << std::endl; break; } } // OPCODE 0x00E0 // Clears screen display void Chip8::DISPLAYCLEAR(void) { std::fill(this->gfx.begin(), this->gfx.end(), 0x0000); this->draw_flag = true; this->pc += 2; } // OPCODE 0x00EE // Returns from a subroutine void Chip8::RETURN(void) { this->sp--; this->pc = this->stack[this->sp]; this->pc += 2; } // OPCODE 0x1NNN // Jumps to address NNN void Chip8::JUMP(void) { this->pc = (this->opcode & 0x0FFF); } // OPCODE 0x2NNN // Calls subroutine at NNN void Chip8::CALL(void) { this->stack[this->sp] = this->pc; this->sp++; this->pc = this->opcode & 0x0FFF; } // OPCODE 0x3XNN // Skips the next instruction if VX == NN void Chip8::SKIPVXNNEQ(void) { if(this->V[(opcode & 0x0F00) >> 8] == (opcode & 0x00FF)) this->pc += 4; else this->pc += 2; } // OPCODE 0x4XNN // Skips the next instruction if VX != NN void Chip8::SKIPVXNNDIFF(void) { if(this->V[(opcode & 0x0F00) >> 8] != (opcode & 0x00FF)) this->pc += 4; else this->pc += 2; } // OPCODE 0x5XY0 // Skips the next instruction if VX == VY void Chip8::SKIPVXYEQ(void) { if(this->V[(opcode & 0x0F00) >> 8] == this->V[(opcode & 0x00F0) >> 4]) this->pc += 4; else this->pc += 2; } // OPCODE 0x6XNN // Sets VX to NN void Chip8::SETVXNN(void) { this->V[(opcode & 0x0F00) >> 8] = (opcode & 0x00FF); this->pc += 2; } // OPCODE 0x7XNN // Adds NN to VX (no changes to carry flag) void Chip8::ADDNNVX(void) { this->V[(this->opcode & 0x0F00) >> 8] = (this->opcode & 0x00FF); this->pc += 2; } // OPCODE 0x8XCC void Chip8::MULTI8XYC(void) { uint16_t masking = this->opcode & 0xF00F; switch(masking) { case 0x8000: SETVXVY(); break; case 0x8001: SETVXVXORVY(); break; case 0x8002: SETVXVXANDVY(); break; case 0x8003: SETVXVXXORVY(); break; case 0x8004: ADDVYVXCARRY(); break; case 0x8005: SUBVYVXCARRY(); break; case 0x8006: STORELSBVXVF(); break; case 0x8007: SETVXVYMINUSVX(); break; case 0x800E: STOREMSBVXVF(); break; default: std::cout << "WARNING: Specific function of 0x8XYC not implemented." << std::endl; break; } } // OPCODE 0x8XY0 // Sets VX to the value of VY void Chip8::SETVXVY(void) { this->V[(this->opcode & 0x0F00) >> 8] = this->V[(this->opcode & 0x00F0) >> 4]; this->pc += 2; } // OPCODE 0x8XY1 // Sets VX to VX | VY void Chip8::SETVXVXORVY(void) { this->V[(this->opcode & 0x0F00) >> 8] = (this->V[(this->opcode & 0x0F00) >> 8] | this->V[(this->opcode & 0x00F0) >> 4]); this->pc += 2; } // OPCODE 0x8XY2 // Sets VX to VX & VY void Chip8::SETVXVXANDVY(void) { this->V[(this->opcode & 0x0F00) >> 8] = (this->V[(this->opcode & 0x0F00) >> 8] & this->V[(this->opcode & 0x00F0) >> 4]); this->pc += 2; } // OPCODE 0x8XY3 // Sets VX to VX ^ VY (XOR) void Chip8::SETVXVXXORVY(void) { this->V[(this->opcode & 0x0F00) >> 8] = (this->V[(this->opcode & 0x0F00) >> 8] ^ this->V[(this->opcode & 0x00F0) >> 4]); this->pc += 2; } // OPCODE 0x8XY4 // Adds VY to VX (carry flag set) void Chip8::ADDVYVXCARRY(void) { if (check_carry(this->V[(this->opcode & 0x0F00) >> 8], this->V[(this->opcode & 0x00F0) >> 4])) this->V[0xF] = 1; else this->V[0xF] = 0; this->V[(this->opcode & 0x0F00) >> 8] += (this->V[(this->opcode & 0x0F00) >> 8]); this->pc += 2; } // OPCODE 0x8XY5 // Subtracts VY to VX (carry flag set) void Chip8::SUBVYVXCARRY(void) { if (check_borrow(this->V[(this->opcode & 0x0F00) >> 8], this->V[(this->opcode & 0x00F0) >> 4])) this->V[0xF] = 0; else this->V[0xF] = 1; this->V[(this->opcode & 0x0F00) >> 8] -= (this->V[(this->opcode & 0x0F00) >> 8]); this->pc += 2; } // OPCODE 0x8XY6 // Stores the LSB of VX into VF and shift VX >> 1 void Chip8::STORELSBVXVF(void) { this->V[0xF] = (this->V[(this->opcode & 0x0F00) >> 8] & 0x000E); this->V[(this->opcode & 0x0F00) >> 8] >>= 1; this->pc += 2; } // OPCODE 0x8XY7 // Sets VX to VY - VX (carry flag set) void Chip8::SETVXVYMINUSVX(void) { if (check_borrow(this->V[(this->opcode & 0x0F00) >> 8], this->V[(this->opcode & 0x00F0) >> 8])) this->V[0xF] = 0; else this->V[0xF] = 1; this->V[(this->opcode & 0x0F00) >> 8] = this->V[(this->opcode & 0x00F0) >> 4] - this->V[(this->opcode & 0x0F00) >> 8]; this->pc += 2; } // OPCODE 0x8XYE // Stores the MSB of VX into VF and shift VX >> 1 void Chip8::STOREMSBVXVF(void) { this->V[0xF] = (this->V[(this->opcode & 0x0F00) >> 8] & 0x1000); this->V[(this->opcode & 0x0F00) >> 8] <<= 1; this->pc += 2; } // OPCODE 0xANNN // Sets I to NNN void Chip8::SETINN(void) { this->I = (this->opcode & 0x0FFF); this->pc += 2; } // OPCODE 0XCXNN // Sets VX to a rand number void Chip8::RAND(void) { this->V[(this->opcode & 0x0F00) >> 8] = (rand() % 0xFF + 1) & (this->opcode & 0x00FF); this->pc += 2; } // OPCODE 0XDXYN // Draws a sprite at VX, VY location, width = 8px, height = Npx void Chip8::DRAW(void) { uint8_t x = this->V[(this->opcode & 0x0F00) >> 8]; uint8_t y = this->V[(this->opcode & 0x00F0) >> 4]; uint8_t h = this->opcode & 0x000F; uint8_t pixel; this->V[0xF] = 0; for (unsigned int yline = 0; yline < h; yline++) { pixel = this->memory[this->I + yline]; for (unsigned int xline = 0; xline < 8; xline++) { if ((pixel & (0x80 >> xline)) != 0) { if (gfx[x + xline + ((y + yline) * 64)] == 1) this->V[0xF] = 1; gfx[x + xline + ((y + yline) * 64)] ^= 1; } } } this->draw_flag = true; this->pc += 2; } // OPCODE 0xEXCC void Chip8::MULTIEXCC(void) { uint16_t masking = this->opcode & 0xF0FF; switch(masking) { case 0xE09E: KEYPRESS(); break; case 0xE0A1: KEYNPRESS(); break; default: std::cout << "WARNING: Specific function of 0xEXCC not implemented." << std::endl; break; } } // OPCODE 0xEX9E // Skips the next instruction if key[VX] is pressed void Chip8::KEYPRESS(void) { if (this->key[this->V[(this->opcode & 0x0F00) >> 8]] != 0) this->pc += 4; else this->pc += 2; } // OPCODE 0xEXA1 // Skips the next instruction if key[VX] isn't pressed void Chip8::KEYNPRESS(void) { if (this->key[this->V[(this->opcode & 0x0F00) >> 8]] == 0) this->pc += 4; else this->pc += 2; } // OPCODE 0xFXCC void Chip8::MULTIFXCC(void) { uint16_t masking = this->opcode & 0xF0FF; switch(masking) { case 0xF007: SETVXDTIMER(); break; case 0xF00A: KEYPRESSWAIT(); break; case 0xF015: SETDTIMERVX(); break; case 0xF018: SETSTIMERVX(); break; case 0xF01E: ADDVXI(); break; case 0xF029: SETILOCSPRITE(); break; case 0xF033: STOREBCVXI(); break; case 0xF055: STOREV0VXI(); break; case 0xF065: FILLV0VXI(); break; default: std::cout << "WARNING: Specific function of 0xFXCC not implemented." << std::endl; break; } } // OPCODE 0xFX07 // Sets VX to delay timer void Chip8::SETVXDTIMER(void) { this->V[(this->opcode & 0x0F00) >> 8] = this->delay_timer; this->pc += 2; } // OPCODE 0xFX0A // Waits for a key press, then store in VX (blocking) void Chip8::KEYPRESSWAIT(void) { bool key_pressed = false; while(!key_pressed) { for (unsigned int i= 0; i < this->key.size(); i++) { if (this->key[i] != 0) { this->V[(this->opcode & 0x0F00) >> 8] = i; key_pressed = true; break; } } } this->pc += 2; } // OPCODE 0xFX15 // Sets delay timer to VX void Chip8::SETDTIMERVX(void) { this->delay_timer = this->V[(this->opcode & 0x0F00) >> 8]; this->pc += 2; } // OPCODE 0xFX18 // Sets sound timer to VX void Chip8::SETSTIMERVX(void) { this->sound_timer = this->V[(this->opcode & 0x0F00) >> 8]; this->pc += 2; } // OPCODE 0xFX1E // Adds VX to I void Chip8::ADDVXI(void) { if (check_carry(this->I, this->V[(this->opcode & 0x0F00) >> 8])) this->V[0xF] = 1; else this->V[0xF] = 0; this->I += this->V[(this->opcode & 0x0F00) >> 8]; this->pc += 2; } // OPCODE 0xFX29 // Sets I to the location of the sprite for the character in VX void Chip8::SETILOCSPRITE(void) { this->I = this->V[(this->opcode & 0x0F00) >> 8] * 0x5; this->pc += 2; } // OPCODE 0xFX33 // Stores the binary-coded decimal representation of VX, with the most significant of three digits // at the address in I, the middle digit at I plus 1, and the least significant digit at I plus 2. void Chip8::STOREBCVXI(void) { this->memory[this->I] = this->V[(this->opcode & 0x0F00) >> 8] / 100; this->memory[this->I + 1] = (this->V[(this->opcode & 0x0F00) >> 8] / 10) % 10; this->memory[this->I + 2] = this->V[(this->opcode & 0x0F00) >> 8] % 10; this->pc += 2; } // OPCODE 0xFX55 // Stores V0 to VX (included) in memory starting at I void Chip8::STOREV0VXI(void) { unsigned int limit = ((this->opcode & 0x0F00) >> 8); for (unsigned int i = 0; i < limit; i++) this->memory[this->I + i] = this->V[i]; this->I += limit; this->pc += 2; } // OPCODE 0xFX65 // Fills V0 to VX (included) with memory starting at I void Chip8::FILLV0VXI(void) { unsigned int limit = ((this->opcode & 0x0F00) >> 8); for (unsigned int i = 0; i < limit; i++) this->V[i] = this->memory[this->I + i]; this->I += limit; this->pc += 2; } void Chip8::set_opcodes(void) { this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x0000, 0x0FFF), std::string("00CC"), [this] {this->MULTI00CC();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x1000, 0x1FFF), std::string("JUMP TO NNN"), [this] {this->JUMP();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x2000, 0x2FFF), std::string("CALL NNN"), [this] {this->CALL();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x3000, 0x3FFF), std::string("SKIP IF X == NN"), [this] {this->SKIPVXNNEQ();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x4000, 0x4FFF), std::string("SKIP IF X != NN"), [this] {this->SKIPVXNNDIFF();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x5000, 0x5FFF), std::string("SKIP IF X == Y"), [this] {this->SKIPVXYEQ();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x6000, 0x6FFF), std::string("SET X TO NN"), [this] {this->SETVXNN();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x7000, 0x7FFF), std::string("ADD NN TO VX"), [this] {this->ADDNNVX();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0x8000, 0x8FFF), std::string("8XYC"), [this] {this->MULTI8XYC();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0xA000, 0xAFFF), std::string("SET I TO NNN"), [this] {this->SETINN();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0xC000, 0xCFFF), std::string("RAND"), [this] {this->RAND();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0xD000, 0xDFFF), std::string("DRAW AT XY"), [this] {this->DRAW();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0xE000, 0xEFFF), std::string("EXCC"), [this] {this->MULTIEXCC();})); this->instr.push_back(instruction(std::pair<uint16_t, uint16_t>(0xF000, 0xFFFF), std::string("FXCC"), [this] {this->MULTIFXCC();})); }
[ "Coulis1990@gmail.com" ]
Coulis1990@gmail.com
bd06a7e74a9d30edbc502160f5f7e3eaa3a4bea6
2e0a6fd5767ee4551d370f682910702be9095d73
/Base/Segmentation/itktubeRadiusExtractor2.hxx
91b6867139f9448ef6f761d3f463b22cb2209d5c
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
LucasGandel/TubeTK
ee0ce6a378aab732a3ee051ecd2ea36332d4943a
50682d4d8b30b0392575685e11e16a1086790bc8
refs/heads/master
2021-01-18T09:29:06.802793
2016-01-30T04:11:39
2016-01-30T04:11:39
40,605,754
1
1
null
2015-08-12T14:39:59
2015-08-12T14:39:59
null
UTF-8
C++
false
false
27,259
hxx
/*========================================================================= Library: TubeTK/VTree3D Authors: Stephen Aylward, Julien Jomier, and Elizabeth Bullitt Original implementation: Copyright University of North Carolina, Chapel Hill, NC, USA. Revised implementation: Copyright Kitware Inc., Carrboro, NC, USA. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ #ifndef __itktubeRadiusExtractor2_hxx #define __itktubeRadiusExtractor2_hxx #include "itktubeRadiusExtractor2.h" #include "tubeMatrixMath.h" #include "tubeTubeMath.h" #include "tubeUserFunction.h" #include "tubeGoldenMeanOptimizer1D.h" #include "tubeSplineApproximation1D.h" #include <itkMinimumMaximumImageFilter.h> #include <vnl/vnl_math.h> namespace itk { namespace tube { template< class TInputImage > class LocalMedialnessSplineValueFunction : public ::tube::UserFunction< int, double > { public: LocalMedialnessSplineValueFunction( RadiusExtractor2< TInputImage > * _radiusExtractor ) { m_Value = 0; m_RadiusExtractor = _radiusExtractor; } const double & Value( const int & x ) { m_Value = m_RadiusExtractor->GetKernelMedialness( x * m_RadiusExtractor->GetRadiusTolerance() ); return m_Value; } private: double m_Value; typename RadiusExtractor2< TInputImage >::Pointer m_RadiusExtractor; }; /** Constructor */ template< class TInputImage > RadiusExtractor2<TInputImage> ::RadiusExtractor2( void ) { m_Image = NULL; m_DataMin = 0; m_DataMax = -1; m_RadiusStart = 1.5; m_RadiusMin = 0.33; m_RadiusMax = 15.0; m_RadiusStep = 0.25; m_RadiusTolerance = 0.125; m_RadiusCorrectionFunction = RADIUS_CORRECTION_NONE; m_MinMedialness = 0.15; // 0.015; larger = harder m_MinMedialnessStart = 0.1; m_NumKernelPoints = 7; m_KernelTubePoints.resize( m_NumKernelPoints ); m_KernelPointStep = 14; m_KernelStep = 30; m_KernelExtent = 1.6; m_KernelValues.clear(); m_KernelDistances.clear(); m_KernelTangentDistances.clear(); m_KernelOptimalRadius = 0; m_KernelOptimalRadiusMedialness = 0; m_KernelOptimalRadiusBranchness = 0; m_IdleCallBack = NULL; m_StatusCallBack = NULL; } /** Destructor */ template< class TInputImage > RadiusExtractor2<TInputImage> ::~RadiusExtractor2( void ) { } /** Set the input image */ template< class TInputImage > void RadiusExtractor2<TInputImage> ::SetInputImage( typename ImageType::Pointer inputImage ) { m_Image = inputImage; if( m_Image ) { typedef MinimumMaximumImageFilter<ImageType> MinMaxFilterType; typename MinMaxFilterType::Pointer minMaxFilter = MinMaxFilterType::New(); minMaxFilter->SetInput( m_Image ); minMaxFilter->Update(); m_DataMin = minMaxFilter->GetMinimum(); m_DataMax = minMaxFilter->GetMaximum(); if( this->GetDebug() ) { std::cout << "RadiusExtractor2: SetInputImage: Minimum = " << m_DataMin << std::endl; std::cout << "RadiusExtractor2: SetInputImage: Maximum = " << m_DataMax << std::endl; } } } /** Compute the medialness at a kernel */ template< class TInputImage > void RadiusExtractor2<TInputImage> ::GetPointVectorMeasures( std::vector< TubePointType > & points, double pntR, double & mness, double & bness, bool doBNess ) { ::tube::ComputeVectorTangentsAndNormals( points ); if( this->GetDebug() ) { std::cout << "Compute values at point" << std::endl; } unsigned int tempNumPoints = this->GetNumKernelPoints(); int numPoints = points.size(); this->SetNumKernelPoints( numPoints ); this->SetKernelTubePoints( points ); this->GenerateKernel(); mness = this->GetKernelMedialness( pntR ); if( doBNess ) { bness = this->GetKernelBranchness( pntR ); } this->SetNumKernelPoints( tempNumPoints ); } /** Compute the Optimal scale */ template< class TInputImage > bool RadiusExtractor2<TInputImage> ::GetPointVectorOptimalRadius( std::vector< TubePointType > & points, double & r0, double rMin, double rMax, double rStep, double rTolerance ) { unsigned int tempNumPoints = this->GetNumKernelPoints(); unsigned int numPoints = points.size(); this->SetNumKernelPoints( numPoints ); this->SetKernelTubePoints( points ); double tempXStart = this->GetRadiusStart(); this->SetRadiusStart( r0 ); double tempXMin = this->GetRadiusMin(); this->SetRadiusMin( rMin ); double tempXMax = this->GetRadiusMax(); this->SetRadiusMax( rMax ); double tempXStep = this->GetRadiusStep(); this->SetRadiusStep( rStep ); double tempXTolerance = this->GetRadiusTolerance(); this->SetRadiusTolerance( rTolerance ); this->GenerateKernel(); this->UpdateKernelOptimalRadius(); this->SetRadiusStart( tempXStart ); this->SetRadiusMin( tempXMin ); this->SetRadiusMax( tempXMax ); this->SetRadiusStep( tempXStep ); this->SetRadiusTolerance( tempXTolerance ); if( tempNumPoints != numPoints ) { this->SetNumKernelPoints( tempNumPoints ); } r0 = this->GetKernelOptimalRadius(); return true; } template< class TInputImage > void RadiusExtractor2<TInputImage> ::SetNumKernelPoints( unsigned int _numPoints ) { m_NumKernelPoints = _numPoints; m_KernelTubePoints.resize( m_NumKernelPoints ); } template< class TInputImage > void RadiusExtractor2<TInputImage> ::GenerateKernel( void ) { ITKIndexType minX; ITKIndexType maxX; unsigned int dimension = m_Image->GetImageDimension(); ITKIndexType buffer; for( unsigned int i = 0; i < dimension; ++i ) { buffer[i] = static_cast< unsigned int >( this->GetKernelExtent() * this->GetRadiusMax() ); } typename std::vector< TubePointType >::iterator pntIter; pntIter = m_KernelTubePoints.begin(); for( unsigned int i = 0; i < dimension; ++i ) { minX[i] = static_cast< int >( m_KernelTubePoints[0].GetPosition()[i] - buffer[i] ); maxX[i] = static_cast< int >( m_KernelTubePoints[0].GetPosition()[i] + buffer[i] ); } ++pntIter; int tempI; while( pntIter != m_KernelTubePoints.end() ) { for( unsigned int i = 0; i < dimension; ++i ) { tempI = static_cast< int >( pntIter->GetPosition()[i] - buffer[i] ); if( tempI < minX[i] ) { minX[i] = tempI; } tempI = static_cast< int >( pntIter->GetPosition()[i] + buffer[i] ); if( tempI > maxX[i] ) { maxX[i] = tempI; } } ++pntIter; } unsigned int kernelSize = maxX[0] - minX[0] + 1; for( unsigned int i = 1; i < dimension; ++i ) { kernelSize *= ( maxX[i] - minX[i] + 1 ); } m_KernelValues.resize( kernelSize ); m_KernelDistances.resize( kernelSize ); m_KernelTangentDistances.resize( kernelSize ); unsigned int count = 0; ITKIndexType x = minX; bool done = false; while( !done ) { if( m_Image->GetLargestPossibleRegion().IsInside( x ) ) { m_KernelValues[ count ] = ( m_Image->GetPixel( x ) - m_DataMin ) / ( m_DataMax - m_DataMin ); if( m_KernelValues[ count ] < 0 ) { m_KernelValues[ count ] = 0; } else if( m_KernelValues[ count ] > 1 ) { m_KernelValues[ count ] = 1; } ITKPointType p; for( unsigned int i = 0; i < dimension; ++i ) { p[ i ] = x[ i ]; } unsigned int pntCount = 0; pntIter = m_KernelTubePoints.begin(); double pntTangentDist = 0; double minTangentDist = 0; double minNormalDist = 0; int minTangentDistCount = -1; while( pntIter != m_KernelTubePoints.end() ) { ITKVectorType pDiff = pntIter->GetPosition() - p; double d1 = 0; for( unsigned int i = 0; i < dimension; ++i ) { d1 += pDiff[i] * pntIter->GetTangent()[i]; } pntTangentDist = d1 * d1; if( pntTangentDist < minTangentDist || minTangentDistCount == -1 ) { minTangentDist = pntTangentDist; minTangentDistCount = pntCount; d1 = 0; for( unsigned int i = 0; i < dimension; ++i ) { d1 += pDiff[i] * pntIter->GetNormal1()[i]; } minNormalDist = d1 * d1; if( dimension == 3 ) { double d2 = 0; for( unsigned int i = 0; i < dimension; ++i ) { d2 += pDiff[i] * pntIter->GetNormal2()[i]; } minNormalDist += d2 * d2; } } ++pntIter; ++pntCount; } m_KernelDistances[ count ] = vcl_sqrt( minNormalDist ); m_KernelTangentDistances[ count ] = vcl_sqrt( minTangentDist ); } else { m_KernelValues[ count ] = 0; m_KernelDistances[ count ] = this->GetKernelExtent() * this->GetRadiusMax() + 1; m_KernelTangentDistances[ count ] = this->GetKernelExtent() * this->GetRadiusMax() + 1; } ++count; unsigned int d = 0; while( d < dimension && ++x[d] > maxX[d] ) { x[d] = minX[d]; ++d; } if( d >= dimension ) { done = true; } } } template< class TInputImage > void RadiusExtractor2<TInputImage> ::SetKernelTubePoints( const std::vector< TubePointType > & tubePoints ) { if( tubePoints.size() != m_NumKernelPoints ) { std::cerr << "Error: number of kernel points not equal to expected." << std::endl; std::cerr << " TubePointsSize = " << tubePoints.size() << std::endl; std::cerr << " NumKernelPoints = " << m_NumKernelPoints << std::endl; } for( unsigned int i=0; i<m_NumKernelPoints; ++i ) { m_KernelTubePoints[ i ] = tubePoints[ i ]; } ::tube::ComputeVectorTangentsAndNormals( m_KernelTubePoints ); } template< class TInputImage > double RadiusExtractor2<TInputImage> ::GetKernelMedialness( double r ) { if( r < m_RadiusMin ) { double factor = ( m_RadiusMin - r ) / m_RadiusTolerance; double m0 = this->GetKernelMedialness( m_RadiusMin ); double m1 = this->GetKernelMedialness( m_RadiusMin + m_RadiusTolerance ); return m0 - factor * vnl_math_abs(m0 - m1); } else if( r > m_RadiusMax ) { double factor = ( r - m_RadiusMax ) / m_RadiusTolerance; double m0 = this->GetKernelMedialness( m_RadiusMax ); double m1 = this->GetKernelMedialness( m_RadiusMax - m_RadiusTolerance ); return m0 - factor * vnl_math_abs(m0 - m1); } double pVal = 0; double nVal = 0; std::vector< double >::iterator iterDist; std::vector< double >::iterator iterTanDist; std::vector< double >::iterator iterValue; double areaR = r * r * vnl_math::pi; double distMax = ( r + 1.0 ); double areaMax = distMax * distMax * vnl_math::pi; double areaNeg = areaMax - areaR; double distMin2 = ( areaR - areaNeg ) / vnl_math::pi; double distMin = 0; if( distMin2 > 0 ) { distMin = vcl_sqrt( distMin2 ); } double areaMin = distMin * distMin * vnl_math::pi; double areaPos = areaR - areaMin; if ( this->GetDebug() ) { std::cout << "R = " << r << std::endl; std::cout << " Dist = " << distMin << " - " << distMax << std::endl; std::cout << " Area = " << areaPos << " - " << areaNeg << std::endl; } const int histoBins = 500; unsigned int histoPos[histoBins]; unsigned int histoNeg[histoBins]; unsigned int histoPosCount = 0; unsigned int histoNegCount = 0; for( int i=0; i<histoBins; ++i ) { histoPos[i] = 0; histoNeg[i] = 0; } int bin = 0; iterDist = m_KernelDistances.begin(); iterTanDist = m_KernelTangentDistances.begin(); iterValue = m_KernelValues.begin(); while( iterDist != m_KernelDistances.end() ) { if( ( ( *iterTanDist ) < r || ( *iterTanDist ) < 1 ) && ( *iterDist ) >= distMin && ( *iterDist ) <= distMax ) { bin = ( *iterValue ) * histoBins; if( bin < 0 ) { bin = 0; } else if( bin > histoBins - 1 ) { bin = histoBins - 1; } if( (*iterDist) <= r ) { ++histoPos[bin]; ++histoPosCount; } else { ++histoNeg[bin]; ++histoNegCount; } } ++iterValue; ++iterDist; ++iterTanDist; } int binCount = 0; pVal = 0; if( histoPosCount > 2 ) { bin = histoBins - 1; while( binCount < 0.5 * histoPosCount && bin > 0 ) { binCount += histoPos[bin]; --bin; } pVal = ( bin + 0.5 ) / histoBins; } nVal = 1; if( histoNegCount > 2 ) { binCount = 0; bin = 0; while( binCount < 0.5 * histoNegCount && bin < histoBins ) { binCount += histoNeg[bin]; ++bin; } nVal = ( bin - 0.5 ) / histoBins; } if ( this->GetDebug() ) { std::cout << " Count = " << histoPosCount << " - " << histoNegCount << std::endl; std::cout << " Val = " << pVal << " - " << nVal << " = " << pVal-nVal << std::endl; } double medialness = pVal - nVal; return medialness; } template< class TInputImage > double RadiusExtractor2<TInputImage> ::GetKernelBranchness( double r ) { if( r < m_RadiusMin ) { double factor = ( m_RadiusMin - r ) / m_RadiusTolerance; double m0 = this->GetKernelBranchness( m_RadiusMin ); double m1 = this->GetKernelBranchness( m_RadiusMin + m_RadiusTolerance ); return m0 - factor * vnl_math_abs(m0 - m1); } else if( r > m_RadiusMax ) { double factor = ( r - m_RadiusMax ) / m_RadiusTolerance; double m0 = this->GetKernelBranchness( m_RadiusMax ); double m1 = this->GetKernelBranchness( m_RadiusMax - m_RadiusTolerance ); return m0 - factor * vnl_math_abs(m0 - m1); } double pVal = 0; double nVal = 0; std::vector< double >::iterator iterDist; std::vector< double >::iterator iterTanDist; std::vector< double >::iterator iterValue; double distMax = r * this->GetKernelExtent(); double distMin = 0; const int histoBins = 500; unsigned int histoPos[histoBins]; unsigned int histoNeg[histoBins]; unsigned int histoPosCount = 0; unsigned int histoNegCount = 0; for( unsigned int i=0; i<histoBins; ++i ) { histoPos[i] = 0; histoNeg[i] = 0; } int bin = 0; iterDist = m_KernelDistances.begin(); iterTanDist = m_KernelTangentDistances.begin(); iterValue = m_KernelValues.begin(); while( iterDist != m_KernelDistances.end() ) { if( ( *iterTanDist ) < r && ( *iterDist ) >= distMin && ( *iterDist ) <= distMax ) { bin = ( *iterValue ) * histoBins; if( bin < 0 ) { bin = 0; } else if( bin > histoBins - 1 ) { bin = histoBins - 1; } if( (*iterDist) <= r ) { ++histoPos[bin]; ++histoPosCount; } else { ++histoNeg[bin]; ++histoNegCount; } } ++iterValue; ++iterDist; ++iterTanDist; } int binCount = 0; pVal = 0; if( histoPosCount > 1 ) { bin = 0; while( binCount < 0.5 * histoPosCount && bin < histoBins ) { binCount += histoPos[bin]; ++bin; } pVal = ( bin + 0.5 ) / histoBins; } nVal = 1; if( histoNegCount > 1 ) { binCount = 0; bin = histoBins - 1; while( binCount < 0.75 * histoNegCount && bin > 1 ) { binCount += histoNeg[bin]; --bin; } nVal = ( bin - 0.5 ) / histoBins; } double branchness = 1.0 - vnl_math_abs( pVal - nVal ); return branchness; } template< class TInputImage > bool RadiusExtractor2<TInputImage> ::UpdateKernelOptimalRadius( void ) { ::tube::UserFunction< int, double > * myFunc = new LocalMedialnessSplineValueFunction< TInputImage >( this ); ::tube::GoldenMeanOptimizer1D * opt = new ::tube::GoldenMeanOptimizer1D(); opt->SetXStep( m_RadiusStep / m_RadiusTolerance ); opt->SetTolerance( 1 ); opt->SetMaxIterations( 20 ); opt->SetSearchForMin( false ); int xMin = 0; int xMax = 1; double x = 0.5; switch( m_RadiusCorrectionFunction ) { default: case RADIUS_CORRECTION_NONE: { xMin = (int)vnl_math_ceil( m_RadiusMin / m_RadiusTolerance ); xMax = (int)vnl_math_floor( m_RadiusMax / m_RadiusTolerance ); x = m_RadiusStart / m_RadiusTolerance; break; } case RADIUS_CORRECTION_FOR_BINARY_IMAGE: { xMin = (int)vnl_math_ceil( m_RadiusMin / m_RadiusTolerance ); xMax = (int)vnl_math_floor( m_RadiusMax / m_RadiusTolerance ); x = m_RadiusStart / m_RadiusTolerance; break; } case RADIUS_CORRECTION_FOR_CTA: { xMin = (int)vnl_math_ceil( m_RadiusMin / m_RadiusTolerance ); xMax = (int)vnl_math_floor( m_RadiusMax / m_RadiusTolerance ); x = m_RadiusStart / m_RadiusTolerance; break; } case RADIUS_CORRECTION_FOR_MRA: { xMin = (int)vnl_math_ceil( m_RadiusMin / m_RadiusTolerance ); xMax = (int)vnl_math_floor( m_RadiusMax / m_RadiusTolerance ); x = m_RadiusStart / m_RadiusTolerance; break; } }; opt->SetXMin( xMin ); opt->SetXMax( xMax ); ::tube::SplineApproximation1D * spline = new ::tube::SplineApproximation1D( myFunc, opt ); //spline->SetClip( true ); spline->SetXMin( xMin ); spline->SetXMax( xMax ); double xVal = myFunc->Value( x ); bool result = spline->Extreme( &x, &xVal ); switch( m_RadiusCorrectionFunction ) { default: case RADIUS_CORRECTION_NONE: { m_KernelOptimalRadius = x * m_RadiusTolerance; break; } case RADIUS_CORRECTION_FOR_BINARY_IMAGE: { m_KernelOptimalRadius = ( x * m_RadiusTolerance * x * m_RadiusTolerance ) / 24 + 0.5; break; } case RADIUS_CORRECTION_FOR_CTA: { m_KernelOptimalRadius = x * m_RadiusTolerance; break; } case RADIUS_CORRECTION_FOR_MRA: { m_KernelOptimalRadius = x * m_RadiusTolerance; break; } }; m_KernelOptimalRadiusMedialness = xVal; delete spline; delete opt; delete myFunc; return result; } template< class TInputImage > bool RadiusExtractor2<TInputImage> ::ExtractRadii( TubeType * tube ) { if( tube->GetPoints().size() == 0 ) { return false; } tube->RemoveDuplicatePoints(); ::tube::ComputeVectorTangentsAndNormals< TubePointType >( tube->GetPoints() ); typename std::vector< TubePointType >::iterator pntIter; pntIter = tube->GetPoints().begin(); while( pntIter != tube->GetPoints().end() ) { pntIter->SetRadius( 0 ); ++pntIter; } int pntCount = 0; pntIter = tube->GetPoints().begin(); while( pntIter != tube->GetPoints().end() && pntIter->GetID() != 0 ) { ++pntIter; ++pntCount; } if( pntIter == tube->GetPoints().end() ) { if ( this->GetDebug() ) { std::cout << "Warning: PointID 0 not found. Using mid-point of tube." << std::endl; } pntIter = tube->GetPoints().begin(); unsigned int psize = tube->GetPoints().size(); for( unsigned int i=0; i<psize/2; i++ ) { ++pntIter; } } else if( this->GetDebug() ) { std::cout << "Found point " << ( *pntIter ).GetID() << std::endl; } double rStart0 = this->GetRadiusStart(); double rStart = rStart0; for( int p = static_cast< int >( pntCount ); p < static_cast< int >( tube->GetPoints().size() ); p += this->GetKernelStep() ) { this->SetRadiusStart( rStart ); this->GenerateKernelTubePoints( p, tube ); this->GenerateKernel(); this->UpdateKernelOptimalRadius(); this->RecordOptimaAtTubePoints( p, tube ); rStart = this->GetKernelOptimalRadius(); } rStart = rStart0; for( int p = static_cast< int >( pntCount ) - this->GetKernelPointStep(); p >= 0; p -= this->GetKernelStep() ) { this->SetRadiusStart( rStart ); this->GenerateKernelTubePoints( p, tube ); this->GenerateKernel(); this->UpdateKernelOptimalRadius(); this->RecordOptimaAtTubePoints( p, tube ); rStart = this->GetKernelOptimalRadius(); } if( this->GetDebug() ) { std::cout << "Radius results:" << std::endl; pntIter = tube->GetPoints().begin(); while( pntIter != tube->GetPoints().end() ) { std::cout << " " << pntIter->GetID() << " : " << pntIter->GetRadius() << std::endl; ++pntIter; } } return true; } template< class TInputImage > void RadiusExtractor2<TInputImage> ::GenerateKernelTubePoints( unsigned int tubePointNum, TubeType * tube ) { unsigned int tubeSize = tube->GetPoints().size(); if( tubeSize < m_NumKernelPoints * m_KernelPointStep ) { std::cerr << "RadiusExtractor: Tube length is too short" << std::endl; return; } int startP = tubePointNum - ( m_NumKernelPoints / 2 ) * m_KernelPointStep; int endP = startP + ( m_NumKernelPoints - 1 ) * m_KernelPointStep; unsigned int count = 0; for( int p = startP; p <= endP; p += m_KernelPointStep ) { if( p < 0 ) { typename TubeType::PointType p1 = tube->GetPoints()[ 0 ].GetPosition(); typename TubeType::PointType p2 = tube->GetPoints()[ m_NumKernelPoints / 2 * m_KernelPointStep ].GetPosition(); for( unsigned int i = 0; i < ImageDimension; ++i ) { p2[i] = p1[i] - ( ( p2[i] - p1[i] ) * ( -p / m_KernelPointStep ) ); } m_KernelTubePoints[ count ].SetPosition( p2 ); } else if( p > static_cast< int >( tubeSize ) - 1 ) { typename TubeType::PointType p1 = tube->GetPoints()[ tubeSize - 1 ].GetPosition(); typename TubeType::PointType p2 = tube->GetPoints()[ tubeSize - 1 - m_NumKernelPoints / 2 * m_KernelPointStep ].GetPosition(); for( unsigned int i = 0; i < ImageDimension; ++i ) { p2[i] = p1[i] - ( ( p2[i] - p1[i] ) * ( ( p - (tubeSize-1) ) / m_KernelPointStep ) ); } m_KernelTubePoints[ count ].SetPosition( p2 ); } else { m_KernelTubePoints[ count ] = tube->GetPoints()[ p ]; } ++count; } ::tube::ComputeVectorTangentsAndNormals( m_KernelTubePoints ); } template< class TInputImage > void RadiusExtractor2<TInputImage> ::RecordOptimaAtTubePoints( unsigned int tubePointNum, TubeType * tube ) { int tubeSize = tube->GetPoints().size(); double r1 = this->GetKernelOptimalRadius(); double m1 = this->GetKernelOptimalRadiusMedialness(); double b1 = this->GetKernelOptimalRadiusBranchness(); int startP = tubePointNum - ( m_NumKernelPoints / 2 ) * m_KernelPointStep; if( startP < 0 ) { startP = 0; } double r0 = tube->GetPoints()[ startP ].GetRadius(); double m0 = tube->GetPoints()[ startP ].GetMedialness(); double b0 = tube->GetPoints()[ startP ].GetBranchness(); if( r0 == 0 ) { r0 = r1; m0 = m1; b0 = b1; } int endP = startP + ( m_NumKernelPoints - 1 ) * m_KernelPointStep; if( endP > tubeSize-1 ) { endP = tubeSize-1; } double r2 = tube->GetPoints()[ endP ].GetRadius(); double m2 = tube->GetPoints()[ endP ].GetMedialness(); double b2 = tube->GetPoints()[ endP ].GetBranchness(); if( r2 == 0 ) { r2 = r1; m2 = m1; b2 = b1; } for( int p = startP; p <= endP; ++p ) { if( p < static_cast< int >( tubePointNum ) ) { double d = 1; if( static_cast< int >( tubePointNum ) != startP ) { d = static_cast< double >( tubePointNum - p ) / ( tubePointNum - startP ); } tube->GetPoints()[ p ].SetRadius( d * r0 + (1 - d) * r1 ); tube->GetPoints()[ p ].SetMedialness( d * m0 + (1 - d) * m1 ); tube->GetPoints()[ p ].SetBranchness( d * b0 + (1 - d) * b1 ); } else { double d = 1; if( static_cast< int >( tubePointNum ) != endP ) { d = static_cast< double >( p - tubePointNum ) / ( endP - tubePointNum ); } tube->GetPoints()[ p ].SetRadius( d * r2 + (1 - d) * r1 ); tube->GetPoints()[ p ].SetMedialness( d * m2 + (1 - d) * m1 ); tube->GetPoints()[ p ].SetBranchness( d * b2 + (1 - d) * b1 ); } } } template< class TInputImage > void RadiusExtractor2<TInputImage> ::PrintSelf( std::ostream & os, Indent indent ) const { Superclass::PrintSelf( os, indent ); if( m_Image.IsNotNull() ) { os << indent << "Image = " << m_Image << std::endl; } else { os << indent << "Image = NULL" << std::endl; } os << indent << "DataMin = " << m_DataMin << std::endl; os << indent << "DataMax = " << m_DataMax << std::endl; os << indent << "RadiusStart = " << m_RadiusStart << std::endl; os << indent << "RadiusMin = " << m_RadiusMin << std::endl; os << indent << "RadiusMax = " << m_RadiusMax << std::endl; os << indent << "RadiusStep = " << m_RadiusStep << std::endl; os << indent << "RadiusTolerance = " << m_RadiusTolerance << std::endl; os << indent << "MinMedialness = " << m_MinMedialness << std::endl; os << indent << "MinMedialnessStart = " << m_MinMedialnessStart << std::endl; os << indent << "NumKernelPoints = " << m_NumKernelPoints << std::endl; os << indent << "KernelTubePoints = " << m_KernelTubePoints.size() << std::endl; os << indent << "KernelPointStep = " << m_KernelPointStep << std::endl; os << indent << "KernelStep = " << m_KernelStep << std::endl; os << indent << "KernelExtent = " << m_KernelExtent << std::endl; os << indent << "KernelValues = " << m_KernelValues.size() << std::endl; os << indent << "KernelDistances = " << m_KernelDistances.size() << std::endl; os << indent << "KernelTangentDistances = " << m_KernelTangentDistances.size() << std::endl; os << indent << "KernelOptimalRadius = " << m_KernelOptimalRadius << std::endl; os << indent << "KernelOptimalRadiusMedialness = " << m_KernelOptimalRadiusMedialness << std::endl; os << indent << "KernelOptimalRadiusBranchness = " << m_KernelOptimalRadiusBranchness << std::endl; os << indent << "IdleCallBack = " << m_IdleCallBack << std::endl; os << indent << "StatusCallBack = " << m_StatusCallBack << std::endl; } /** * Idle callback */ template< class TInputImage > void RadiusExtractor2<TInputImage> ::SetIdleCallBack( bool ( *idleCallBack )() ) { m_IdleCallBack = idleCallBack; } /** * Status Call back */ template< class TInputImage > void RadiusExtractor2<TInputImage> ::SetStatusCallBack( void ( *statusCallBack )( const char *, const char *, int ) ) { m_StatusCallBack = statusCallBack; } } // End namespace tube } // End namespace itk #endif // End !defined(__itktubeRadiusExtractor2_hxx)
[ "stephen.aylward@kitware.com" ]
stephen.aylward@kitware.com
eb006147ef5b3968185b8322054ffb7cf003cbd9
76117046fe2024bee5566195377181fce249de91
/Redux/DrawManager.cpp
3ac5dad42a42771bc44e9debee96485347859189
[]
no_license
Lumaio/Redux
3649b8733cbb8d759271a01feec4533ba1a9eae9
9f2db362bc866a2b51a246f5ddedea7722521b34
refs/heads/master
2020-05-31T23:43:57.582901
2017-06-12T03:52:56
2017-06-12T03:52:56
94,053,536
0
1
null
null
null
null
UTF-8
C++
false
false
7,436
cpp
#include "DrawManager.h" #include <cstdint> #include "ImGUI/imgui.h" #include "ImGUI/DX9/imgui_impl_dx9.h" bool get_system_font_path(const std::string& name, std::string& path) { // // This code is not as safe as it should be. // Assumptions we make: // -> GetWindowsDirectoryA does not fail. // -> The registry key exists. // -> The subkeys are ordered alphabetically // -> The subkeys name and data are no longer than 260 (MAX_PATH) chars. // char buffer[MAX_PATH]; HKEY registryKey; GetWindowsDirectoryA(buffer, MAX_PATH); std::string fontsFolder = buffer + std::string("\\Fonts\\"); if(RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts", 0, KEY_READ, &registryKey)) { return false; } uint32_t valueIndex = 0; char valueName[MAX_PATH]; uint8_t valueData[MAX_PATH]; std::wstring wsFontFile; do { uint32_t valueNameSize = MAX_PATH; uint32_t valueDataSize = MAX_PATH; uint32_t valueType; auto error = RegEnumValueA( registryKey, valueIndex, valueName, reinterpret_cast<DWORD*>(&valueNameSize), 0, reinterpret_cast<DWORD*>(&valueType), valueData, reinterpret_cast<DWORD*>(&valueDataSize)); valueIndex++; if(error == ERROR_NO_MORE_ITEMS) { RegCloseKey(registryKey); return false; } if(error || valueType != REG_SZ) { continue; } if(_strnicmp(name.data(), valueName, name.size()) == 0) { path = fontsFolder + std::string((char*)valueData, valueDataSize); RegCloseKey(registryKey); return true; } } while(true); return false; } DrawManager::DrawManager(IDirect3DDevice9* device) { _device = device; _texture = nullptr; _drawList = nullptr; } DrawManager::~DrawManager() { } void DrawManager::CreateObjects() { _drawList = new ImDrawList(); auto font_path = std::string{}; uint8_t* pixel_data; int width, height, bytes_per_pixel; if(!get_system_font_path(FontName, font_path)) return; auto font = _fonts.AddFontFromFileTTF(font_path.data(), FontSize, 0, _fonts.GetGlyphRangesDefault()); _fonts.GetTexDataAsRGBA32(&pixel_data, &width, &height, &bytes_per_pixel); auto hr = _device->CreateTexture( width, height, 1, D3DUSAGE_DYNAMIC, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT, &_texture, NULL); if(FAILED(hr)) return; D3DLOCKED_RECT tex_locked_rect; if(_texture->LockRect(0, &tex_locked_rect, NULL, 0) != D3D_OK) return; for(int y = 0; y < height; y++) memcpy((uint8_t*)tex_locked_rect.pBits + tex_locked_rect.Pitch * y, pixel_data + (width * bytes_per_pixel) * y, (width * bytes_per_pixel)); _texture->UnlockRect(0); _fonts.TexID = _texture; } void DrawManager::InvalidateObjects() { if(_texture) _texture->Release(); _texture = nullptr; _fonts.Clear(); if(_drawList) delete _drawList; _drawList = nullptr; } void DrawManager::BeginRendering() { _drawData.Valid = false; _drawList->Clear(); _drawList->PushClipRectFullScreen(); } void DrawManager::EndRendering() { ImGui_ImplDX9_RenderDrawLists(GetDrawData()); } void DrawManager::AddText(ImVec2 point, ImU32 color, text_flags flags, const char* format, ...) { static const auto MAX_BUFFER_SIZE = 1024; static char buffer[MAX_BUFFER_SIZE] = ""; auto font = _fonts.Fonts[0]; _drawList->PushTextureID(_fonts.TexID); va_list va; va_start(va, format); vsnprintf_s(buffer, MAX_BUFFER_SIZE, format, va); va_end(va); if(flags & centered_x || flags & centered_y) { auto text_size = font->CalcTextSizeA(font->FontSize, FLT_MAX, 0.0f, buffer); if(flags & centered_x) point.x -= text_size.x / 2; if(flags & centered_y) point.y -= text_size.y / 2; } if(flags & outline) { _drawList->AddText(font, font->FontSize, ImVec2{point.x - 1, point.y - 1}, 0xFF000000, buffer); _drawList->AddText(font, font->FontSize, ImVec2{point.x + 1, point.y }, 0xFF000000, buffer); _drawList->AddText(font, font->FontSize, ImVec2{point.x , point.y + 1}, 0xFF000000, buffer); _drawList->AddText(font, font->FontSize, ImVec2{point.x - 1, point.y }, 0xFF000000, buffer); } if(flags & drop_shadow && !(flags & outline)) { _drawList->AddText(font, font->FontSize, ImVec2{point.x + 1, point.y + 1}, 0xFF000000, buffer); } _drawList->AddText(font, font->FontSize, point, color, buffer); _drawList->PopTextureID(); } void DrawManager::AddRect(const ImVec2& a, float w, float h, ImU32 col, float rounding /*= 0.0f*/, int rounding_corners_flags /*= ~0*/, float thickness /*= 1.0f*/) { _drawList->AddRect(a, {a.x + w, a.y + h}, col, rounding, rounding_corners_flags, thickness); } void DrawManager::AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness /*= 1.0f*/) { _drawList->AddLine(a, b, col, thickness); } void DrawManager::AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding /*= 0.0f*/, int rounding_corners_flags /*= ~0*/, float thickness /*= 1.0f*/) { _drawList->AddRect(a, b, col, rounding, rounding_corners_flags, thickness); } void DrawManager::AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding /*= 0.0f*/, int rounding_corners_flags /*= ~0*/) { _drawList->AddRectFilled(a, b, col, rounding, rounding_corners_flags); } void DrawManager::AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left) { _drawList->AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); } void DrawManager::AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness /*= 1.0f*/) { _drawList->AddQuad(a, b, c, d, col, thickness); } void DrawManager::AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col) { _drawList->AddQuadFilled(a, b, c, d, col); } void DrawManager::AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness /*= 1.0f*/) { _drawList->AddTriangle(a, b, c, col, thickness); } void DrawManager::AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col) { _drawList->AddTriangleFilled(a, b, c, col); } void DrawManager::AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments /*= 12*/, float thickness /*= 1.0f*/) { _drawList->AddCircle(centre, radius, col, num_segments, thickness); } void DrawManager::AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments /*= 12*/) { _drawList->AddCircleFilled(centre, radius, col, num_segments); } void DrawManager::AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness, bool anti_aliased) { _drawList->AddPolyline(points, num_points, col, closed, thickness, anti_aliased); } void DrawManager::AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col, bool anti_aliased) { _drawList->AddConvexPolyFilled(points, num_points, col, anti_aliased); } void DrawManager::AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments /*= 0*/) { _drawList->AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); } ImDrawData* DrawManager::GetDrawData() { if(!_drawList->VtxBuffer.empty()) { _drawData.Valid = true; _drawData.CmdLists = &_drawList; _drawData.CmdListsCount = 1; _drawData.TotalVtxCount = _drawList->VtxBuffer.Size; _drawData.TotalIdxCount = _drawList->IdxBuffer.Size; } return &_drawData; }
[ "patrick@kecklers.com" ]
patrick@kecklers.com
a384550999e605307255b31de94baf210d9ad2bd
8d535405179262ec25bc086477448fddcc1154f5
/arduino_control/ReadFromProcessing.h
1ddd4cc31523b53f4acb25b15df44f229da55419
[ "Apache-2.0" ]
permissive
tehunk/glovezz
d967be95302f6d427a2801a32d3a942c88a7d3c7
709528382ade7ac85ec11d575ed39c5072740f84
refs/heads/master
2021-04-06T18:10:41.062053
2018-04-27T15:19:23
2018-04-27T15:19:23
125,240,739
1
1
Apache-2.0
2018-04-27T15:15:49
2018-03-14T16:17:56
Processing
UTF-8
C++
false
false
455
h
/* * ReadFromProcessing.h - Read 5 values for vibrations from Processing through Serial * Created by Tae Hun Kim */ #ifndef ReadFromProcessing_h #define ReadFromProcessing_h #include "Arduino.h" class ReadFromProcessing { private: const byte boundary = 127; byte vals[6]; bool syncBoundary(); bool ready; public: ReadFromProcessing(); void readFromSerial(); int getMotorVal(int*); bool isReady(); }; #endif
[ "tehunk@gmail.com" ]
tehunk@gmail.com
84b22660822fb37abffbe1f6ba0955399618374c
372d2c1cac620d2cf335da6cfcab1d6e4d0803b6
/xrLC/xrSaveLights.cpp
452b0e589b88a1e0d670a49155dec6c3cfe500bd
[]
no_license
ugozapad/xray_ol
39000950815ef5c56801b0fa8f92d047a6e430da
13536bd1b520d9ec140e4f924216ad07a000b59f
refs/heads/master
2023-03-15T22:46:17.676641
2021-03-08T21:49:30
2021-03-08T21:49:30
340,637,264
1
0
null
null
null
null
UTF-8
C++
false
false
328
cpp
#include "stdafx.h" #include "build.h" void CBuild::SaveLights(CFS_Base &fs) { fs.open_chunk(fsL_LIGHTS); for (DWORD i=0; i<lights_dynamic.size(); i++) fs.write(lights_dynamic.begin()+i, sizeof(xrLIGHT)); fs.close_chunk(); fs.write_chunk(fsL_LIGHT_KEYS, lights_keys.begin(), lights_keys.size()*sizeof(Flight) ); }
[ "hp1link2@gmail.com" ]
hp1link2@gmail.com
c348a5ad3137192840217e953d575ec5e3e0264c
e8da399ccf7f93e7cc3831e2388a215cce014dac
/w1-w2_tut/TaskTwoW1W2Runner.h
37692b3a909f1e231618fa43a8a7f59b1a605013
[ "MIT" ]
permissive
Buithienphuoc/SEDLearnCpp
80ffbda435f8d2378dfb87da4986025a5c032189
32fc9587a36b0f5bcf221e359ebf05ff5857ab74
refs/heads/main
2023-03-25T10:06:03.259055
2021-03-18T16:07:12
2021-03-18T16:07:12
347,730,095
2
0
MIT
2021-03-18T16:07:12
2021-03-14T19:12:44
C++
UTF-8
C++
false
false
1,251
h
// // Created by Phuoc on 14/03/2021. // #ifndef LEARNCPP_TASKTWOW1W2RUNNER_H #define LEARNCPP_TASKTWOW1W2RUNNER_H #include <bitset> using namespace std; class TaskTwoW1W2Runner { public: static void run(){ cout <<"First input -"; string firstInput = getOne8LengthBinaryInput(); cout <<"Second input -"; string secondInput = getOne8LengthBinaryInput(); cout << "First input decimal result:" << convertBinaryToDecimal(firstInput) << endl; cout << "Second input decimal result:" << convertBinaryToDecimal(secondInput) << endl; } static string getOne8LengthBinaryInput(){ string binaryString; cout << "Type a binary number:"; cin >> binaryString; while (binaryString.length() > 8) { cout << "The length cannot be longer than 8, please type again:"; cin >> binaryString; } // stoi()'s meaning: http://www.cplusplus.com/reference/string/stoi/ // this line means: convert a string with base 2 to a decimal number ( integer ) return binaryString; } static int convertBinaryToDecimal(const string& binaryString){ return stoi(binaryString, nullptr, 2); } }; #endif //LEARNCPP_TASKTWOW1W2RUNNER_H
[ "tphuoc1998@gmail.com" ]
tphuoc1998@gmail.com
12f95f19c2d6ebf4aedc4eb2b64eb7c7a4c463ec
ec8cc059111a9ab5e7f023424a2d801a3646152d
/dispatcher.h
7dcdc20d0ae3549156828c3e7024503fc3e00bcf
[]
no_license
liuli0212/libevhtpcpp
bca18cdd8e229d5451206c9909aa9e30456ea80f
cc26ce5c40fbc8a85123b821a88c358774d75a01
refs/heads/master
2021-01-20T06:23:10.687041
2013-08-02T07:44:03
2013-08-02T07:44:03
11,815,960
2
0
null
null
null
null
UTF-8
C++
false
false
1,102
h
#ifndef DISPATCHER_H_ #define DISPATCHER_H_ #include <map> #include <string> #include "common/base/closure.h" #include "libevhtp/evhtp.h" class HttpRequest; class Dispatcher { typedef Closure<void, HttpRequest*> Callback; public: // Register a handler that will be invoked when 'cmd' is received. bool Register(const std::string& cmd, Callback* callback); // Start the server on *port*. void Start(int port); private: static void RequestHandlerEntry(evhtp_request_t* req, void* arg); void HandleRequest(evhtp_request_t* req); // Hook libevhtp to setup request before and after it is accepted. static evhtp_res OnRequestAccepted(evhtp_connection_t * conn, void * arg); static evhtp_res OnRequestPreAccepted( evhtp_connection_t * conn, void * arg); static evhtp_res OnHeadersParsed(evhtp_request_t* req, void * arg); bool RunCallback(const std::string& cmd, evhtp_request_t* req); std::map<std::string, Callback*> callbacks_; }; #endif // DISPATCHER_H_
[ "liuli@xiaomi.com" ]
liuli@xiaomi.com
58116ede706939808e692f3ff64d3851440974e0
bf6b923300ba9f100a7e0f1eedb54b157afe3e58
/Tests/parserCombinatorsTests.cpp
fc1d07ba12336f7b7d54bd99040900fb5aab110e
[]
no_license
tzulang/Compiler
706f4d18e0bad7304e44f6ddde11b09202337a22
05f4331f4d7116f223451060b5226b5828477b13
refs/heads/master
2020-04-18T09:47:32.239067
2019-02-08T20:39:53
2019-02-08T20:39:53
167,447,209
0
0
null
null
null
null
UTF-8
C++
false
false
5,544
cpp
#include "testutils.h" #include "Lexer/parsercombinatror.h" #include "Lexer/match.h" #include "MyLanguage/definitions.h" #include <string_view> #include <locale> using namespace compiler; using str = strType; TEST(testStringParser, testpChar) { auto pa= pChar<str>('a'); str s1 = S("abcd"); str s2 = S("bcd"); assertFound<str>(pa,s1.begin(), S("a"), s2); assertNotFound<str>(pa ,s2.begin()); } TEST(testStringParser, testConcat) { auto pa= pChar<str>('a'); auto pb= pChar<str>('b'); auto pc= pChar<str>('c'); auto pConcatAbc = pConcat(ParserList<str>{pa,pb,pc}); std::vector<str> failed_cases= {S("bcdef"), S("acdef"), S("abdef")}; str s = S("abcdef"); str r = S("def"); assertFound<str>(pConcatAbc, s.begin(), S("abc") , r); for ( auto& f: failed_cases) { assertNotFound<str>(pConcatAbc, f.begin()); } auto pConcatA = pConcat(ParserList<str>{pa}); assertFound<str>(pConcatA, s.begin(), s.substr(0,1) , s.substr(1)); assertNotFound<str>(pConcatA ,failed_cases[0].begin()); auto pConcatEmpty = pConcat(ParserList<str>{}); assertFound<str>(pConcatEmpty, s.begin(), S("") , s); auto pDoubleA =pConcat<str>({pa,pa}); auto pConcatSquare = pConcat<str>({pDoubleA,pDoubleA}); str s4 = S("aaaaabcd"); str s3 = S("aaabcd"); assertFound<str>(pDoubleA, s4.begin(), S("aa") , S("aaabcd")); assertFound<str>(pConcatSquare, s4.begin(), S("aaaa") , S("abcd")); assertNotFound<str>(pConcatSquare ,s3.begin()); } TEST(testStringParser, testOr) { auto pa= pChar<str>('a'); auto pb= pChar<str>('b'); auto pc= pChar<str>('c'); auto pOrAbc = pOneOf(ParserList<str>{pa,pb,pc}); std::vector<str> cases= {S("abcd"), S("bbcd"), S("cbcd")}; str f = S("fbcd"); str r = S("bcd"); for ( auto& s: cases) { str b=str(s.substr(0,1)); assertFound<str>(pOrAbc, s.begin(),b , r); } assertNotFound<str>(pOrAbc ,f.begin()); auto pOrA = pOneOf(ParserList<str>{pa}); assertFound<str>(pOrA, cases[0].begin(), cases[0].substr(0,1) , r); assertNotFound<str>(pOrA ,f.begin()); auto pOrEmpty = pOneOf(ParserList<str>{}); assertFound<str>(pOrEmpty, cases[0].begin(), S("") , cases[0]); auto pAB = pConcat<str>({pa,pb}); auto pLongOR = pOneOf<str>({pAB, pAB}); str abab = S("ababababc"); assertFound<str>(pLongOR, abab.begin(), S("ab") , S("abababc")); } TEST(testStringParser, testMaybe) { auto pa= pChar<str>('a'); auto pMaybeA = pMaybe(pa); std::vector<str> cases= {S("bcdef"),S("acdef"), S("abdef")}; for ( auto& s: cases) { if (s[0] == 'a') assertFound<str>(pMaybeA, s.begin(), S("a") , s.substr(1)); else assertFound<str>(pMaybeA, s.begin(), S("") , s); } } TEST(testStringParser, testAny) { std::vector<str> cases= {S("bcdef"), S("acdef"), S("rbdef")}; for ( auto& s: cases) { assertFound<str>(pAny<str>, s.begin(), s.substr(0,1) , s.substr(1)); } } TEST(testStringParser, testMany) { auto pa= pChar<str>('a'); auto pManyA = pMany(pa); std::vector<str> cases= {S("cdef"), S("acdef"), S("aacdef"), S("aaacdef"), S("aaaacdef")}; str a=S(""); for ( auto& s: cases) { assertFound<str>(pManyA , s.begin(), a , s.substr(a.size())); a+=S("a"); } } TEST(testStringParser, testRepeat) { auto pa= pChar<str>('a'); std::vector<str> cases= {S("cdef"), S("acdef"), S("aacdef"), S("aaacdef"), S("aaaacdef")}; str a = S(""); for (size_t i =0 ; i < cases.size(); i ++) { for (size_t j =0 ; j < cases.size(); j ++) { auto pRepeatA = pRepeat<str>(pa,i); if (i <= j) assertFound<str>(pRepeatA , cases[j].begin(), a , cases[j].substr(i)); else assertNotFound<str>(pRepeatA, cases[j].begin()); } a+=S("a"); } } TEST(testStringParser, testAtLeat) { auto pa= pChar<str>('a'); std::vector<str> cases= {S("cdef"), S("acdef"), S("aacdef"), S("aaacdef"), S("aaaacdef")}; for (size_t i =0 ; i < cases.size(); i ++) { for (size_t j =0 ; j < cases.size(); j ++) { auto pAtLeastA = pAtLeast<str>(pa,i); if (i <= j){ auto as=cases[j].substr(0,j); auto rest = cases[j].substr(j); assertFound<str>(pAtLeastA , cases[j].begin(), as , rest); } else assertNotFound<str>(pAtLeastA, cases[j].begin()); } } } TEST(testStringParser, testRange) { auto rangeAD = pRange<str>('a','d'); std::vector<str> cases= {S("adef"), S("bdef"), S("cdef"), S("ddef")}; str f = S("edef"); for (str & s: cases) assertFound<str>(rangeAD, s.begin(), s.substr(0,1), S("def")); assertNotFound<str>(rangeAD, f.begin()); } TEST(testStringParser, testWord) { auto word = pWord(strType(S("abcd"))); str s = S("abcd"); str r = S("efg"); str f = S("abcefg"); assertFound<str>(word, (s+r).begin(), s, r); } TEST(testStringParser, testMatchMax) { str s = S("abcdefg"); ParserList<str> parsers; for (auto & c: s) { parsers.push_back(pChar<str>(c)); } for (size_t i : Range<size_t>(0,parsers.size())) { ParserList<str> pack(parsers.begin(), parsers.begin() + i); auto pMax = pMatchMax(pack); assertFound(pMax, s.begin(), s.substr(0,i), s.substr(i)); } } TEST_MAIN
[ "yonatan.tzulang@gmail.com" ]
yonatan.tzulang@gmail.com
dec3b8e524c3ba08a5768edba420c57628fdd11f
d1eaee6ac06b825ae70966375ea09c0cf7878a75
/library/include/perfect_hash/sub_table.h
57e4f206bb3f27cb624bb0f8c8551b0cc865cd27
[]
no_license
SokolovAndrey1/Hashing
6cc6dd52658e031c650f8cacd3702425195850bb
4d3c453ef51c0702d1db79941ab44a108abfca37
refs/heads/master
2023-04-23T18:20:07.827377
2021-05-09T20:26:23
2021-05-09T20:26:23
267,845,407
0
0
null
null
null
null
UTF-8
C++
false
false
3,344
h
#pragma once #include <initializer_list> #include <functional> #include <utility> #include <iostream> #include <time.h> #include <algorithm> #include <vector> #include <list> #include <stdio.h> #include <assert.h> #include <cmath> #include "utils/utils.h" namespace perfect_hash { template<typename Key, typename Value> class HashNode { public: Key key; Value value; HashNode() {} HashNode(const Key& _key, const Value& _value) : key(_key), value(_value) {} }; // class for mini-hash table in cells of main hash-table template<typename Key, typename Value> class SubTable { using HashNodeType = HashNode<Key, Value>; size_t size; Key maxValue; UniversalHash<int> universalHash; std::vector<HashNodeType> _cells; public: SubTable() { if constexpr (std::is_same_v<Key, std::string>) { maxValue = std::string("ÿÿÿÿÿÿ"); } else { maxValue = std::numeric_limits<Key>::max(); } } void Construct(std::list<HashNode<Key, Value>>& input) // for strings { if (input.empty()) { size = 0; return; } size = input.size() * input.size(); bool isCollisions = false; int rehashCount = 0; while (isCollisions == false) { //std::cout << "rehashCount = " << rehashCount << std::endl; // std::cout << "\nCollision!!!!!!!!!!!!\n"; _cells.assign(size, HashNodeType{maxValue, Value{}}); universalHash.init(size); typename std::list<HashNodeType>::iterator elem = input.begin(); while (elem != input.end() && isCollisions == false) { const Key key = (*elem).key; const Value value = (*elem).value; // std::cout << "key = " << key << std::endl; size_t hash = this->hash(key); // std::cout << "hash = " << hash << std::endl; // if collision then construct hash table from the begining! // if (_cells[hash].key != maxValue) // { // isCollisions = true; // break; // } _cells[hash].key = key; _cells[hash].value = value; ++elem; } if (isCollisions) isCollisions = false; else isCollisions = true; rehashCount++; } } bool Contains(Key key) { if (size == 0) { return false; } size_t hash = this->hash(key); if (_cells[hash].key == key) { return true; } else { return false; } } template <typename KeyT, typename std::enable_if<!std::is_same<KeyT, std::string>::value>::type* = nullptr> size_t hash(KeyT key) // for numbers { return universalHash.hash(key); } template <typename KeyT, typename std::enable_if<std::is_same<KeyT, std::string>::value>::type* = nullptr> size_t hash(KeyT string) // for strings { const auto keyNumber = hashString(string); return universalHash.hash(keyNumber); } }; }
[ "Sokolov11.nn@gmail.com" ]
Sokolov11.nn@gmail.com
b815e3c85dd023a429ce03d8a304001910e7e7f1
f9d561eb7bfa67bad93a2b9046c28b49ee88561c
/src/wallet/wallet.cpp
4f10593eebe0e40f84bd1e11a65ee6c2ca81782b
[ "MIT" ]
permissive
jonathanyan/ybtc
dd460b90ea1fbbc8b78920f056be6bdd85e5385f
b6f0be39766409250b4489c876e194936347f8ce
refs/heads/master
2020-03-25T00:54:20.150796
2018-08-01T18:58:26
2018-08-01T18:58:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
160,398
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Ybtc Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "wallet/wallet.h" #include "base58.h" #include "checkpoints.h" #include "chain.h" #include "wallet/coincontrol.h" #include "consensus/consensus.h" #include "consensus/validation.h" #include "fs.h" #include "init.h" #include "key.h" #include "keystore.h" #include "validation.h" #include "net.h" #include "policy/fees.h" #include "policy/policy.h" #include "policy/rbf.h" #include "primitives/block.h" #include "primitives/transaction.h" #include "script/script.h" #include "script/sign.h" #include "scheduler.h" #include "timedata.h" #include "txmempool.h" #include "util.h" #include "ui_interface.h" #include "utilmoneystr.h" #include <assert.h> #include <boost/algorithm/string/replace.hpp> #include <boost/thread.hpp> std::vector<CWalletRef> vpwallets; /** Transaction fee set by the user */ CFeeRate payTxFee(DEFAULT_TRANSACTION_FEE); unsigned int nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET; bool bSpendZeroConfChange = DEFAULT_SPEND_ZEROCONF_CHANGE; bool fWalletRbf = DEFAULT_WALLET_RBF; const char * DEFAULT_WALLET_DAT = "wallet.dat"; const uint32_t BIP32_HARDENED_KEY_LIMIT = 0x80000000; /** * Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) * Override with -mintxfee */ CFeeRate CWallet::minTxFee = CFeeRate(DEFAULT_TRANSACTION_MINFEE); /** * If fee estimation does not have enough data to provide estimates, use this fee instead. * Has no effect if not using fee estimation * Override with -fallbackfee */ CFeeRate CWallet::fallbackFee = CFeeRate(DEFAULT_FALLBACK_FEE); CFeeRate CWallet::m_discard_rate = CFeeRate(DEFAULT_DISCARD_FEE); const uint256 CMerkleTx::ABANDON_HASH(uint256S("0000000000000000000000000000000000000000000000000000000000000001")); /** @defgroup mapWallet * * @{ */ struct CompareValueOnly { bool operator()(const CInputCoin& t1, const CInputCoin& t2) const { return t1.txout.nValue < t2.txout.nValue; } }; std::string COutput::ToString() const { return strprintf("COutput(%s, %d, %d) [%s]", tx->GetHash().ToString(), i, nDepth, FormatMoney(tx->tx->vout[i].nValue)); } class CAffectedKeysVisitor : public boost::static_visitor<void> { private: const CKeyStore &keystore; std::vector<CKeyID> &vKeys; public: CAffectedKeysVisitor(const CKeyStore &keystoreIn, std::vector<CKeyID> &vKeysIn) : keystore(keystoreIn), vKeys(vKeysIn) {} void Process(const CScript &script) { txnouttype type; std::vector<CTxDestination> vDest; int nRequired; if (ExtractDestinations(script, type, vDest, nRequired)) { for (const CTxDestination &dest : vDest) boost::apply_visitor(*this, dest); } } void operator()(const CKeyID &keyId) { if (keystore.HaveKey(keyId)) vKeys.push_back(keyId); } void operator()(const CScriptID &scriptId) { CScript script; if (keystore.GetCScript(scriptId, script)) Process(script); } void operator()(const CNoDestination &none) {} }; const CWalletTx* CWallet::GetWalletTx(const uint256& hash) const { LOCK(cs_wallet); std::map<uint256, CWalletTx>::const_iterator it = mapWallet.find(hash); if (it == mapWallet.end()) return nullptr; return &(it->second); } CPubKey CWallet::GenerateNewKey(CWalletDB &walletdb, bool internal) { AssertLockHeld(cs_wallet); // mapKeyMetadata bool fCompressed = CanSupportFeature(FEATURE_COMPRPUBKEY); // default to compressed public keys if we want 0.6.0 wallets CKey secret; // Create new metadata int64_t nCreationTime = GetTime(); CKeyMetadata metadata(nCreationTime); // use HD key derivation if HD was enabled during wallet creation if (IsHDEnabled()) { DeriveNewChildKey(walletdb, metadata, secret, (CanSupportFeature(FEATURE_HD_SPLIT) ? internal : false)); } else { secret.MakeNewKey(fCompressed); } // Compressed public keys were introduced in version 0.6.0 if (fCompressed) { SetMinVersion(FEATURE_COMPRPUBKEY); } CPubKey pubkey = secret.GetPubKey(); assert(secret.VerifyPubKey(pubkey)); mapKeyMetadata[pubkey.GetID()] = metadata; UpdateTimeFirstKey(nCreationTime); if (!AddKeyPubKeyWithDB(walletdb, secret, pubkey)) { throw std::runtime_error(std::string(__func__) + ": AddKey failed"); } return pubkey; } void CWallet::DeriveNewChildKey(CWalletDB &walletdb, CKeyMetadata& metadata, CKey& secret, bool internal) { // for now we use a fixed keypath scheme of m/0'/0'/k CKey key; //master key seed (256bit) CExtKey masterKey; //hd master key CExtKey accountKey; //key at m/0' CExtKey chainChildKey; //key at m/0'/0' (external) or m/0'/1' (internal) CExtKey childKey; //key at m/0'/0'/<n>' // try to get the master key if (!GetKey(hdChain.masterKeyID, key)) throw std::runtime_error(std::string(__func__) + ": Master key not found"); masterKey.SetMaster(key.begin(), key.size()); // derive m/0' // use hardened derivation (child keys >= 0x80000000 are hardened after bip32) masterKey.Derive(accountKey, BIP32_HARDENED_KEY_LIMIT); // derive m/0'/0' (external chain) OR m/0'/1' (internal chain) assert(internal ? CanSupportFeature(FEATURE_HD_SPLIT) : true); accountKey.Derive(chainChildKey, BIP32_HARDENED_KEY_LIMIT+(internal ? 1 : 0)); // derive child key at next index, skip keys already known to the wallet do { // always derive hardened keys // childIndex | BIP32_HARDENED_KEY_LIMIT = derive childIndex in hardened child-index-range // example: 1 | BIP32_HARDENED_KEY_LIMIT == 0x80000001 == 2147483649 if (internal) { chainChildKey.Derive(childKey, hdChain.nInternalChainCounter | BIP32_HARDENED_KEY_LIMIT); metadata.hdKeypath = "m/0'/1'/" + std::to_string(hdChain.nInternalChainCounter) + "'"; hdChain.nInternalChainCounter++; } else { chainChildKey.Derive(childKey, hdChain.nExternalChainCounter | BIP32_HARDENED_KEY_LIMIT); metadata.hdKeypath = "m/0'/0'/" + std::to_string(hdChain.nExternalChainCounter) + "'"; hdChain.nExternalChainCounter++; } } while (HaveKey(childKey.key.GetPubKey().GetID())); secret = childKey.key; metadata.hdMasterKeyID = hdChain.masterKeyID; // update the chain model in the database if (!walletdb.WriteHDChain(hdChain)) throw std::runtime_error(std::string(__func__) + ": Writing HD chain model failed"); } bool CWallet::AddKeyPubKeyWithDB(CWalletDB &walletdb, const CKey& secret, const CPubKey &pubkey) { AssertLockHeld(cs_wallet); // mapKeyMetadata // CCryptoKeyStore has no concept of wallet databases, but calls AddCryptedKey // which is overridden below. To avoid flushes, the database handle is // tunneled through to it. bool needsDB = !pwalletdbEncryption; if (needsDB) { pwalletdbEncryption = &walletdb; } if (!CCryptoKeyStore::AddKeyPubKey(secret, pubkey)) { if (needsDB) pwalletdbEncryption = nullptr; return false; } if (needsDB) pwalletdbEncryption = nullptr; // check if we need to remove from watch-only CScript script; script = GetScriptForDestination(pubkey.GetID()); if (HaveWatchOnly(script)) { RemoveWatchOnly(script); } script = GetScriptForRawPubKey(pubkey); if (HaveWatchOnly(script)) { RemoveWatchOnly(script); } if (!IsCrypted()) { return walletdb.WriteKey(pubkey, secret.GetPrivKey(), mapKeyMetadata[pubkey.GetID()]); } return true; } bool CWallet::AddKeyPubKey(const CKey& secret, const CPubKey &pubkey) { CWalletDB walletdb(*dbw); return CWallet::AddKeyPubKeyWithDB(walletdb, secret, pubkey); } bool CWallet::AddCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret) { if (!CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret)) return false; { LOCK(cs_wallet); if (pwalletdbEncryption) return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret, mapKeyMetadata[vchPubKey.GetID()]); else return CWalletDB(*dbw).WriteCryptedKey(vchPubKey, vchCryptedSecret, mapKeyMetadata[vchPubKey.GetID()]); } } bool CWallet::LoadKeyMetadata(const CTxDestination& keyID, const CKeyMetadata &meta) { AssertLockHeld(cs_wallet); // mapKeyMetadata UpdateTimeFirstKey(meta.nCreateTime); mapKeyMetadata[keyID] = meta; return true; } bool CWallet::LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret) { return CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret); } /** * Update wallet first key creation time. This should be called whenever keys * are added to the wallet, with the oldest key creation time. */ void CWallet::UpdateTimeFirstKey(int64_t nCreateTime) { AssertLockHeld(cs_wallet); if (nCreateTime <= 1) { // Cannot determine birthday information, so set the wallet birthday to // the beginning of time. nTimeFirstKey = 1; } else if (!nTimeFirstKey || nCreateTime < nTimeFirstKey) { nTimeFirstKey = nCreateTime; } } bool CWallet::AddCScript(const CScript& redeemScript) { if (!CCryptoKeyStore::AddCScript(redeemScript)) return false; return CWalletDB(*dbw).WriteCScript(Hash160(redeemScript), redeemScript); } bool CWallet::LoadCScript(const CScript& redeemScript) { /* A sanity check was added in pull #3843 to avoid adding redeemScripts * that never can be redeemed. However, old wallets may still contain * these. Do not add them to the wallet and warn. */ if (redeemScript.size() > MAX_SCRIPT_ELEMENT_SIZE) { std::string strAddr = CYbtcAddress(CScriptID(redeemScript)).ToString(); LogPrintf("%s: Warning: This wallet contains a redeemScript of size %i which exceeds maximum size %i thus can never be redeemed. Do not use address %s.\n", __func__, redeemScript.size(), MAX_SCRIPT_ELEMENT_SIZE, strAddr); return true; } return CCryptoKeyStore::AddCScript(redeemScript); } bool CWallet::AddWatchOnly(const CScript& dest) { if (!CCryptoKeyStore::AddWatchOnly(dest)) return false; const CKeyMetadata& meta = mapKeyMetadata[CScriptID(dest)]; UpdateTimeFirstKey(meta.nCreateTime); NotifyWatchonlyChanged(true); return CWalletDB(*dbw).WriteWatchOnly(dest, meta); } bool CWallet::AddWatchOnly(const CScript& dest, int64_t nCreateTime) { mapKeyMetadata[CScriptID(dest)].nCreateTime = nCreateTime; return AddWatchOnly(dest); } bool CWallet::RemoveWatchOnly(const CScript &dest) { AssertLockHeld(cs_wallet); if (!CCryptoKeyStore::RemoveWatchOnly(dest)) return false; if (!HaveWatchOnly()) NotifyWatchonlyChanged(false); if (!CWalletDB(*dbw).EraseWatchOnly(dest)) return false; return true; } bool CWallet::LoadWatchOnly(const CScript &dest) { return CCryptoKeyStore::AddWatchOnly(dest); } bool CWallet::Unlock(const SecureString& strWalletPassphrase) { CCrypter crypter; CKeyingMaterial _vMasterKey; { LOCK(cs_wallet); for (const MasterKeyMap::value_type& pMasterKey : mapMasterKeys) { if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod)) return false; if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, _vMasterKey)) continue; // try another master key if (CCryptoKeyStore::Unlock(_vMasterKey)) return true; } } return false; } bool CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase) { bool fWasLocked = IsLocked(); { LOCK(cs_wallet); Lock(); CCrypter crypter; CKeyingMaterial _vMasterKey; for (MasterKeyMap::value_type& pMasterKey : mapMasterKeys) { if(!crypter.SetKeyFromPassphrase(strOldWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod)) return false; if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, _vMasterKey)) return false; if (CCryptoKeyStore::Unlock(_vMasterKey)) { int64_t nStartTime = GetTimeMillis(); crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod); pMasterKey.second.nDeriveIterations = pMasterKey.second.nDeriveIterations * (100 / ((double)(GetTimeMillis() - nStartTime))); nStartTime = GetTimeMillis(); crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod); pMasterKey.second.nDeriveIterations = (pMasterKey.second.nDeriveIterations + pMasterKey.second.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2; if (pMasterKey.second.nDeriveIterations < 25000) pMasterKey.second.nDeriveIterations = 25000; LogPrintf("Wallet passphrase changed to an nDeriveIterations of %i\n", pMasterKey.second.nDeriveIterations); if (!crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod)) return false; if (!crypter.Encrypt(_vMasterKey, pMasterKey.second.vchCryptedKey)) return false; CWalletDB(*dbw).WriteMasterKey(pMasterKey.first, pMasterKey.second); if (fWasLocked) Lock(); return true; } } } return false; } void CWallet::SetBestChain(const CBlockLocator& loc) { CWalletDB walletdb(*dbw); walletdb.WriteBestBlock(loc); } bool CWallet::SetMinVersion(enum WalletFeature nVersion, CWalletDB* pwalletdbIn, bool fExplicit) { LOCK(cs_wallet); // nWalletVersion if (nWalletVersion >= nVersion) return true; // when doing an explicit upgrade, if we pass the max version permitted, upgrade all the way if (fExplicit && nVersion > nWalletMaxVersion) nVersion = FEATURE_LATEST; nWalletVersion = nVersion; if (nVersion > nWalletMaxVersion) nWalletMaxVersion = nVersion; { CWalletDB* pwalletdb = pwalletdbIn ? pwalletdbIn : new CWalletDB(*dbw); if (nWalletVersion > 40000) pwalletdb->WriteMinVersion(nWalletVersion); if (!pwalletdbIn) delete pwalletdb; } return true; } bool CWallet::SetMaxVersion(int nVersion) { LOCK(cs_wallet); // nWalletVersion, nWalletMaxVersion // cannot downgrade below current version if (nWalletVersion > nVersion) return false; nWalletMaxVersion = nVersion; return true; } std::set<uint256> CWallet::GetConflicts(const uint256& txid) const { std::set<uint256> result; AssertLockHeld(cs_wallet); std::map<uint256, CWalletTx>::const_iterator it = mapWallet.find(txid); if (it == mapWallet.end()) return result; const CWalletTx& wtx = it->second; std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range; for (const CTxIn& txin : wtx.tx->vin) { if (mapTxSpends.count(txin.prevout) <= 1) continue; // No conflict if zero or one spends range = mapTxSpends.equal_range(txin.prevout); for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it) result.insert(_it->second); } return result; } bool CWallet::HasWalletSpend(const uint256& txid) const { AssertLockHeld(cs_wallet); auto iter = mapTxSpends.lower_bound(COutPoint(txid, 0)); return (iter != mapTxSpends.end() && iter->first.hash == txid); } void CWallet::Flush(bool shutdown) { dbw->Flush(shutdown); } bool CWallet::Verify() { if (gArgs.GetBoolArg("-disablewallet", DEFAULT_DISABLE_WALLET)) return true; uiInterface.InitMessage(_("Verifying wallet(s)...")); // Keep track of each wallet absolute path to detect duplicates. std::set<fs::path> wallet_paths; for (const std::string& walletFile : gArgs.GetArgs("-wallet")) { if (boost::filesystem::path(walletFile).filename() != walletFile) { return InitError(strprintf(_("Error loading wallet %s. -wallet parameter must only specify a filename (not a path)."), walletFile)); } if (SanitizeString(walletFile, SAFE_CHARS_FILENAME) != walletFile) { return InitError(strprintf(_("Error loading wallet %s. Invalid characters in -wallet filename."), walletFile)); } fs::path wallet_path = fs::absolute(walletFile, GetDataDir()); if (fs::exists(wallet_path) && (!fs::is_regular_file(wallet_path) || fs::is_symlink(wallet_path))) { return InitError(strprintf(_("Error loading wallet %s. -wallet filename must be a regular file."), walletFile)); } if (!wallet_paths.insert(wallet_path).second) { return InitError(strprintf(_("Error loading wallet %s. Duplicate -wallet filename specified."), walletFile)); } std::string strError; if (!CWalletDB::VerifyEnvironment(walletFile, GetDataDir().string(), strError)) { return InitError(strError); } if (gArgs.GetBoolArg("-salvagewallet", false)) { // Recover readable keypairs: CWallet dummyWallet; std::string backup_filename; if (!CWalletDB::Recover(walletFile, (void *)&dummyWallet, CWalletDB::RecoverKeysOnlyFilter, backup_filename)) { return false; } } std::string strWarning; bool dbV = CWalletDB::VerifyDatabaseFile(walletFile, GetDataDir().string(), strWarning, strError); if (!strWarning.empty()) { InitWarning(strWarning); } if (!dbV) { InitError(strError); return false; } } return true; } void CWallet::SyncMetaData(std::pair<TxSpends::iterator, TxSpends::iterator> range) { // We want all the wallet transactions in range to have the same metadata as // the oldest (smallest nOrderPos). // So: find smallest nOrderPos: int nMinOrderPos = std::numeric_limits<int>::max(); const CWalletTx* copyFrom = nullptr; for (TxSpends::iterator it = range.first; it != range.second; ++it) { const uint256& hash = it->second; int n = mapWallet[hash].nOrderPos; if (n < nMinOrderPos) { nMinOrderPos = n; copyFrom = &mapWallet[hash]; } } // Now copy data from copyFrom to rest: for (TxSpends::iterator it = range.first; it != range.second; ++it) { const uint256& hash = it->second; CWalletTx* copyTo = &mapWallet[hash]; if (copyFrom == copyTo) continue; if (!copyFrom->IsEquivalentTo(*copyTo)) continue; copyTo->mapValue = copyFrom->mapValue; copyTo->vOrderForm = copyFrom->vOrderForm; // fTimeReceivedIsTxTime not copied on purpose // nTimeReceived not copied on purpose copyTo->nTimeSmart = copyFrom->nTimeSmart; copyTo->fFromMe = copyFrom->fFromMe; copyTo->strFromAccount = copyFrom->strFromAccount; // nOrderPos not copied on purpose // cached members not copied on purpose } } /** * Outpoint is spent if any non-conflicted transaction * spends it: */ bool CWallet::IsSpent(const uint256& hash, unsigned int n) const { const COutPoint outpoint(hash, n); std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range; range = mapTxSpends.equal_range(outpoint); for (TxSpends::const_iterator it = range.first; it != range.second; ++it) { const uint256& wtxid = it->second; std::map<uint256, CWalletTx>::const_iterator mit = mapWallet.find(wtxid); if (mit != mapWallet.end()) { int depth = mit->second.GetDepthInMainChain(); if (depth > 0 || (depth == 0 && !mit->second.isAbandoned())) return true; // Spent } } return false; } void CWallet::AddToSpends(const COutPoint& outpoint, const uint256& wtxid) { mapTxSpends.insert(std::make_pair(outpoint, wtxid)); std::pair<TxSpends::iterator, TxSpends::iterator> range; range = mapTxSpends.equal_range(outpoint); SyncMetaData(range); } void CWallet::AddToSpends(const uint256& wtxid) { assert(mapWallet.count(wtxid)); CWalletTx& thisTx = mapWallet[wtxid]; if (thisTx.IsCoinBase()) // Coinbases don't spend anything! return; for (const CTxIn& txin : thisTx.tx->vin) AddToSpends(txin.prevout, wtxid); } bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase) { if (IsCrypted()) return false; CKeyingMaterial _vMasterKey; _vMasterKey.resize(WALLET_CRYPTO_KEY_SIZE); GetStrongRandBytes(&_vMasterKey[0], WALLET_CRYPTO_KEY_SIZE); CMasterKey kMasterKey; kMasterKey.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE); GetStrongRandBytes(&kMasterKey.vchSalt[0], WALLET_CRYPTO_SALT_SIZE); CCrypter crypter; int64_t nStartTime = GetTimeMillis(); crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod); kMasterKey.nDeriveIterations = 2500000 / ((double)(GetTimeMillis() - nStartTime)); nStartTime = GetTimeMillis(); crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod); kMasterKey.nDeriveIterations = (kMasterKey.nDeriveIterations + kMasterKey.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2; if (kMasterKey.nDeriveIterations < 25000) kMasterKey.nDeriveIterations = 25000; LogPrintf("Encrypting Wallet with an nDeriveIterations of %i\n", kMasterKey.nDeriveIterations); if (!crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod)) return false; if (!crypter.Encrypt(_vMasterKey, kMasterKey.vchCryptedKey)) return false; { LOCK(cs_wallet); mapMasterKeys[++nMasterKeyMaxID] = kMasterKey; assert(!pwalletdbEncryption); pwalletdbEncryption = new CWalletDB(*dbw); if (!pwalletdbEncryption->TxnBegin()) { delete pwalletdbEncryption; pwalletdbEncryption = nullptr; return false; } pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey); if (!EncryptKeys(_vMasterKey)) { pwalletdbEncryption->TxnAbort(); delete pwalletdbEncryption; // We now probably have half of our keys encrypted in memory, and half not... // die and let the user reload the unencrypted wallet. assert(false); } // Encryption was introduced in version 0.4.0 SetMinVersion(FEATURE_WALLETCRYPT, pwalletdbEncryption, true); if (!pwalletdbEncryption->TxnCommit()) { delete pwalletdbEncryption; // We now have keys encrypted in memory, but not on disk... // die to avoid confusion and let the user reload the unencrypted wallet. assert(false); } delete pwalletdbEncryption; pwalletdbEncryption = nullptr; Lock(); Unlock(strWalletPassphrase); // if we are using HD, replace the HD master key (seed) with a new one if (IsHDEnabled()) { if (!SetHDMasterKey(GenerateNewHDMasterKey())) { return false; } } NewKeyPool(); Lock(); // Need to completely rewrite the wallet file; if we don't, bdb might keep // bits of the unencrypted private key in slack space in the database file. dbw->Rewrite(); } NotifyStatusChanged(this); return true; } DBErrors CWallet::ReorderTransactions() { LOCK(cs_wallet); CWalletDB walletdb(*dbw); // Old wallets didn't have any defined order for transactions // Probably a bad idea to change the output of this // First: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap. typedef std::pair<CWalletTx*, CAccountingEntry*> TxPair; typedef std::multimap<int64_t, TxPair > TxItems; TxItems txByTime; for (std::map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { CWalletTx* wtx = &((*it).second); txByTime.insert(std::make_pair(wtx->nTimeReceived, TxPair(wtx, (CAccountingEntry*)0))); } std::list<CAccountingEntry> acentries; walletdb.ListAccountCreditDebit("", acentries); for (CAccountingEntry& entry : acentries) { txByTime.insert(std::make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry))); } nOrderPosNext = 0; std::vector<int64_t> nOrderPosOffsets; for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it) { CWalletTx *const pwtx = (*it).second.first; CAccountingEntry *const pacentry = (*it).second.second; int64_t& nOrderPos = (pwtx != 0) ? pwtx->nOrderPos : pacentry->nOrderPos; if (nOrderPos == -1) { nOrderPos = nOrderPosNext++; nOrderPosOffsets.push_back(nOrderPos); if (pwtx) { if (!walletdb.WriteTx(*pwtx)) return DB_LOAD_FAIL; } else if (!walletdb.WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } else { int64_t nOrderPosOff = 0; for (const int64_t& nOffsetStart : nOrderPosOffsets) { if (nOrderPos >= nOffsetStart) ++nOrderPosOff; } nOrderPos += nOrderPosOff; nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1); if (!nOrderPosOff) continue; // Since we're changing the order, write it back if (pwtx) { if (!walletdb.WriteTx(*pwtx)) return DB_LOAD_FAIL; } else if (!walletdb.WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } } walletdb.WriteOrderPosNext(nOrderPosNext); return DB_LOAD_OK; } int64_t CWallet::IncOrderPosNext(CWalletDB *pwalletdb) { AssertLockHeld(cs_wallet); // nOrderPosNext int64_t nRet = nOrderPosNext++; if (pwalletdb) { pwalletdb->WriteOrderPosNext(nOrderPosNext); } else { CWalletDB(*dbw).WriteOrderPosNext(nOrderPosNext); } return nRet; } bool CWallet::AccountMove(std::string strFrom, std::string strTo, CAmount nAmount, std::string strComment) { CWalletDB walletdb(*dbw); if (!walletdb.TxnBegin()) return false; int64_t nNow = GetAdjustedTime(); // Debit CAccountingEntry debit; debit.nOrderPos = IncOrderPosNext(&walletdb); debit.strAccount = strFrom; debit.nCreditDebit = -nAmount; debit.nTime = nNow; debit.strOtherAccount = strTo; debit.strComment = strComment; AddAccountingEntry(debit, &walletdb); // Credit CAccountingEntry credit; credit.nOrderPos = IncOrderPosNext(&walletdb); credit.strAccount = strTo; credit.nCreditDebit = nAmount; credit.nTime = nNow; credit.strOtherAccount = strFrom; credit.strComment = strComment; AddAccountingEntry(credit, &walletdb); if (!walletdb.TxnCommit()) return false; return true; } bool CWallet::GetAccountPubkey(CPubKey &pubKey, std::string strAccount, bool bForceNew) { CWalletDB walletdb(*dbw); CAccount account; walletdb.ReadAccount(strAccount, account); if (!bForceNew) { if (!account.vchPubKey.IsValid()) bForceNew = true; else { // Check if the current key has been used CScript scriptPubKey = GetScriptForDestination(account.vchPubKey.GetID()); for (std::map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end() && account.vchPubKey.IsValid(); ++it) for (const CTxOut& txout : (*it).second.tx->vout) if (txout.scriptPubKey == scriptPubKey) { bForceNew = true; break; } } } // Generate a new key if (bForceNew) { if (!GetKeyFromPool(account.vchPubKey, false)) return false; SetAddressBook(account.vchPubKey.GetID(), strAccount, "receive"); walletdb.WriteAccount(strAccount, account); } pubKey = account.vchPubKey; return true; } void CWallet::MarkDirty() { { LOCK(cs_wallet); for (std::pair<const uint256, CWalletTx>& item : mapWallet) item.second.MarkDirty(); } } bool CWallet::MarkReplaced(const uint256& originalHash, const uint256& newHash) { LOCK(cs_wallet); auto mi = mapWallet.find(originalHash); // There is a bug if MarkReplaced is not called on an existing wallet transaction. assert(mi != mapWallet.end()); CWalletTx& wtx = (*mi).second; // Ensure for now that we're not overwriting data assert(wtx.mapValue.count("replaced_by_txid") == 0); wtx.mapValue["replaced_by_txid"] = newHash.ToString(); CWalletDB walletdb(*dbw, "r+"); bool success = true; if (!walletdb.WriteTx(wtx)) { LogPrintf("%s: Updating walletdb tx %s failed", __func__, wtx.GetHash().ToString()); success = false; } NotifyTransactionChanged(this, originalHash, CT_UPDATED); return success; } bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFlushOnClose) { LOCK(cs_wallet); CWalletDB walletdb(*dbw, "r+", fFlushOnClose); uint256 hash = wtxIn.GetHash(); // Inserts only if not already there, returns tx inserted or tx found std::pair<std::map<uint256, CWalletTx>::iterator, bool> ret = mapWallet.insert(std::make_pair(hash, wtxIn)); CWalletTx& wtx = (*ret.first).second; wtx.BindWallet(this); bool fInsertedNew = ret.second; if (fInsertedNew) { wtx.nTimeReceived = GetAdjustedTime(); wtx.nOrderPos = IncOrderPosNext(&walletdb); wtxOrdered.insert(std::make_pair(wtx.nOrderPos, TxPair(&wtx, (CAccountingEntry*)0))); wtx.nTimeSmart = ComputeTimeSmart(wtx); AddToSpends(hash); } bool fUpdated = false; if (!fInsertedNew) { // Merge if (!wtxIn.hashUnset() && wtxIn.hashBlock != wtx.hashBlock) { wtx.hashBlock = wtxIn.hashBlock; fUpdated = true; } // If no longer abandoned, update if (wtxIn.hashBlock.IsNull() && wtx.isAbandoned()) { wtx.hashBlock = wtxIn.hashBlock; fUpdated = true; } if (wtxIn.nIndex != -1 && (wtxIn.nIndex != wtx.nIndex)) { wtx.nIndex = wtxIn.nIndex; fUpdated = true; } if (wtxIn.fFromMe && wtxIn.fFromMe != wtx.fFromMe) { wtx.fFromMe = wtxIn.fFromMe; fUpdated = true; } // If we have a witness-stripped version of this transaction, and we // see a new version with a witness, then we must be upgrading a pre-segwit // wallet. Store the new version of the transaction with the witness, // as the stripped-version must be invalid. // TODO: Store all versions of the transaction, instead of just one. if (wtxIn.tx->HasWitness() && !wtx.tx->HasWitness()) { wtx.SetTx(wtxIn.tx); fUpdated = true; } } //// debug print LogPrintf("AddToWallet %s %s%s\n", wtxIn.GetHash().ToString(), (fInsertedNew ? "new" : ""), (fUpdated ? "update" : "")); // Write to disk if (fInsertedNew || fUpdated) if (!walletdb.WriteTx(wtx)) return false; // Break debit/credit balance caches: wtx.MarkDirty(); // Notify UI of new or updated transaction NotifyTransactionChanged(this, hash, fInsertedNew ? CT_NEW : CT_UPDATED); // notify an external script when a wallet transaction comes in or is updated std::string strCmd = gArgs.GetArg("-walletnotify", ""); if ( !strCmd.empty()) { boost::replace_all(strCmd, "%s", wtxIn.GetHash().GetHex()); boost::thread t(runCommand, strCmd); // thread runs free } return true; } bool CWallet::LoadToWallet(const CWalletTx& wtxIn) { uint256 hash = wtxIn.GetHash(); mapWallet[hash] = wtxIn; CWalletTx& wtx = mapWallet[hash]; wtx.BindWallet(this); wtxOrdered.insert(std::make_pair(wtx.nOrderPos, TxPair(&wtx, (CAccountingEntry*)0))); AddToSpends(hash); for (const CTxIn& txin : wtx.tx->vin) { if (mapWallet.count(txin.prevout.hash)) { CWalletTx& prevtx = mapWallet[txin.prevout.hash]; if (prevtx.nIndex == -1 && !prevtx.hashUnset()) { MarkConflicted(prevtx.hashBlock, wtx.GetHash()); } } } return true; } /** * Add a transaction to the wallet, or update it. pIndex and posInBlock should * be set when the transaction was known to be included in a block. When * pIndex == nullptr, then wallet state is not updated in AddToWallet, but * notifications happen and cached balances are marked dirty. * * If fUpdate is true, existing transactions will be updated. * TODO: One exception to this is that the abandoned state is cleared under the * assumption that any further notification of a transaction that was considered * abandoned is an indication that it is not safe to be considered abandoned. * Abandoned state should probably be more carefully tracked via different * posInBlock signals or by checking mempool presence when necessary. */ bool CWallet::AddToWalletIfInvolvingMe(const CTransactionRef& ptx, const CBlockIndex* pIndex, int posInBlock, bool fUpdate) { const CTransaction& tx = *ptx; { AssertLockHeld(cs_wallet); if (pIndex != nullptr) { for (const CTxIn& txin : tx.vin) { std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(txin.prevout); while (range.first != range.second) { if (range.first->second != tx.GetHash()) { LogPrintf("Transaction %s (in block %s) conflicts with wallet transaction %s (both spend %s:%i)\n", tx.GetHash().ToString(), pIndex->GetBlockHash().ToString(), range.first->second.ToString(), range.first->first.hash.ToString(), range.first->first.n); MarkConflicted(pIndex->GetBlockHash(), range.first->second); } range.first++; } } } bool fExisted = mapWallet.count(tx.GetHash()) != 0; if (fExisted && !fUpdate) return false; if (fExisted || IsMine(tx) || IsFromMe(tx)) { /* Check if any keys in the wallet keypool that were supposed to be unused * have appeared in a new transaction. If so, remove those keys from the keypool. * This can happen when restoring an old wallet backup that does not contain * the mostly recently created transactions from newer versions of the wallet. */ // loop though all outputs for (const CTxOut& txout: tx.vout) { // extract addresses and check if they match with an unused keypool key std::vector<CKeyID> vAffected; CAffectedKeysVisitor(*this, vAffected).Process(txout.scriptPubKey); for (const CKeyID &keyid : vAffected) { std::map<CKeyID, int64_t>::const_iterator mi = m_pool_key_to_index.find(keyid); if (mi != m_pool_key_to_index.end()) { LogPrintf("%s: Detected a used keypool key, mark all keypool key up to this key as used\n", __func__); MarkReserveKeysAsUsed(mi->second); if (!TopUpKeyPool()) { LogPrintf("%s: Topping up keypool failed (locked wallet)\n", __func__); } } } } CWalletTx wtx(this, ptx); // Get merkle branch if transaction was found in a block if (pIndex != nullptr) wtx.SetMerkleBranch(pIndex, posInBlock); return AddToWallet(wtx, false); } } return false; } bool CWallet::TransactionCanBeAbandoned(const uint256& hashTx) const { LOCK2(cs_main, cs_wallet); const CWalletTx* wtx = GetWalletTx(hashTx); return wtx && !wtx->isAbandoned() && wtx->GetDepthInMainChain() <= 0 && !wtx->InMempool(); } bool CWallet::AbandonTransaction(const uint256& hashTx) { LOCK2(cs_main, cs_wallet); CWalletDB walletdb(*dbw, "r+"); std::set<uint256> todo; std::set<uint256> done; // Can't mark abandoned if confirmed or in mempool assert(mapWallet.count(hashTx)); CWalletTx& origtx = mapWallet[hashTx]; if (origtx.GetDepthInMainChain() > 0 || origtx.InMempool()) { return false; } todo.insert(hashTx); while (!todo.empty()) { uint256 now = *todo.begin(); todo.erase(now); done.insert(now); assert(mapWallet.count(now)); CWalletTx& wtx = mapWallet[now]; int currentconfirm = wtx.GetDepthInMainChain(); // If the orig tx was not in block, none of its spends can be assert(currentconfirm <= 0); // if (currentconfirm < 0) {Tx and spends are already conflicted, no need to abandon} if (currentconfirm == 0 && !wtx.isAbandoned()) { // If the orig tx was not in block/mempool, none of its spends can be in mempool assert(!wtx.InMempool()); wtx.nIndex = -1; wtx.setAbandoned(); wtx.MarkDirty(); walletdb.WriteTx(wtx); NotifyTransactionChanged(this, wtx.GetHash(), CT_UPDATED); // Iterate over all its outputs, and mark transactions in the wallet that spend them abandoned too TxSpends::const_iterator iter = mapTxSpends.lower_bound(COutPoint(hashTx, 0)); while (iter != mapTxSpends.end() && iter->first.hash == now) { if (!done.count(iter->second)) { todo.insert(iter->second); } iter++; } // If a transaction changes 'conflicted' state, that changes the balance // available of the outputs it spends. So force those to be recomputed for (const CTxIn& txin : wtx.tx->vin) { if (mapWallet.count(txin.prevout.hash)) mapWallet[txin.prevout.hash].MarkDirty(); } } } return true; } void CWallet::MarkConflicted(const uint256& hashBlock, const uint256& hashTx) { LOCK2(cs_main, cs_wallet); int conflictconfirms = 0; if (mapBlockIndex.count(hashBlock)) { CBlockIndex* pindex = mapBlockIndex[hashBlock]; if (chainActive.Contains(pindex)) { conflictconfirms = -(chainActive.Height() - pindex->nHeight + 1); } } // If number of conflict confirms cannot be determined, this means // that the block is still unknown or not yet part of the main chain, // for example when loading the wallet during a reindex. Do nothing in that // case. if (conflictconfirms >= 0) return; // Do not flush the wallet here for performance reasons CWalletDB walletdb(*dbw, "r+", false); std::set<uint256> todo; std::set<uint256> done; todo.insert(hashTx); while (!todo.empty()) { uint256 now = *todo.begin(); todo.erase(now); done.insert(now); assert(mapWallet.count(now)); CWalletTx& wtx = mapWallet[now]; int currentconfirm = wtx.GetDepthInMainChain(); if (conflictconfirms < currentconfirm) { // Block is 'more conflicted' than current confirm; update. // Mark transaction as conflicted with this block. wtx.nIndex = -1; wtx.hashBlock = hashBlock; wtx.MarkDirty(); walletdb.WriteTx(wtx); // Iterate over all its outputs, and mark transactions in the wallet that spend them conflicted too TxSpends::const_iterator iter = mapTxSpends.lower_bound(COutPoint(now, 0)); while (iter != mapTxSpends.end() && iter->first.hash == now) { if (!done.count(iter->second)) { todo.insert(iter->second); } iter++; } // If a transaction changes 'conflicted' state, that changes the balance // available of the outputs it spends. So force those to be recomputed for (const CTxIn& txin : wtx.tx->vin) { if (mapWallet.count(txin.prevout.hash)) mapWallet[txin.prevout.hash].MarkDirty(); } } } } void CWallet::SyncTransaction(const CTransactionRef& ptx, const CBlockIndex *pindex, int posInBlock) { const CTransaction& tx = *ptx; if (!AddToWalletIfInvolvingMe(ptx, pindex, posInBlock, true)) return; // Not one of ours // If a transaction changes 'conflicted' state, that changes the balance // available of the outputs it spends. So force those to be // recomputed, also: for (const CTxIn& txin : tx.vin) { if (mapWallet.count(txin.prevout.hash)) mapWallet[txin.prevout.hash].MarkDirty(); } } void CWallet::TransactionAddedToMempool(const CTransactionRef& ptx) { LOCK2(cs_main, cs_wallet); SyncTransaction(ptx); } void CWallet::BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex *pindex, const std::vector<CTransactionRef>& vtxConflicted) { LOCK2(cs_main, cs_wallet); // TODO: Temporarily ensure that mempool removals are notified before // connected transactions. This shouldn't matter, but the abandoned // state of transactions in our wallet is currently cleared when we // receive another notification and there is a race condition where // notification of a connected conflict might cause an outside process // to abandon a transaction and then have it inadvertently cleared by // the notification that the conflicted transaction was evicted. for (const CTransactionRef& ptx : vtxConflicted) { SyncTransaction(ptx); } for (size_t i = 0; i < pblock->vtx.size(); i++) { SyncTransaction(pblock->vtx[i], pindex, i); } } void CWallet::BlockDisconnected(const std::shared_ptr<const CBlock>& pblock) { LOCK2(cs_main, cs_wallet); for (const CTransactionRef& ptx : pblock->vtx) { SyncTransaction(ptx); } } isminetype CWallet::IsMine(const CTxIn &txin) const { { LOCK(cs_wallet); std::map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash); if (mi != mapWallet.end()) { const CWalletTx& prev = (*mi).second; if (txin.prevout.n < prev.tx->vout.size()) return IsMine(prev.tx->vout[txin.prevout.n]); } } return ISMINE_NO; } // Note that this function doesn't distinguish between a 0-valued input, // and a not-"is mine" (according to the filter) input. CAmount CWallet::GetDebit(const CTxIn &txin, const isminefilter& filter) const { { LOCK(cs_wallet); std::map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash); if (mi != mapWallet.end()) { const CWalletTx& prev = (*mi).second; if (txin.prevout.n < prev.tx->vout.size()) if (IsMine(prev.tx->vout[txin.prevout.n]) & filter) return prev.tx->vout[txin.prevout.n].nValue; } } return 0; } isminetype CWallet::IsMine(const CTxOut& txout) const { return ::IsMine(*this, txout.scriptPubKey); } CAmount CWallet::GetCredit(const CTxOut& txout, const isminefilter& filter) const { if (!MoneyRange(txout.nValue)) throw std::runtime_error(std::string(__func__) + ": value out of range"); return ((IsMine(txout) & filter) ? txout.nValue : 0); } bool CWallet::IsChange(const CTxOut& txout) const { // TODO: fix handling of 'change' outputs. The assumption is that any // payment to a script that is ours, but is not in the address book // is change. That assumption is likely to break when we implement multisignature // wallets that return change back into a multi-signature-protected address; // a better way of identifying which outputs are 'the send' and which are // 'the change' will need to be implemented (maybe extend CWalletTx to remember // which output, if any, was change). if (::IsMine(*this, txout.scriptPubKey)) { CTxDestination address; if (!ExtractDestination(txout.scriptPubKey, address)) return true; LOCK(cs_wallet); if (!mapAddressBook.count(address)) return true; } return false; } CAmount CWallet::GetChange(const CTxOut& txout) const { if (!MoneyRange(txout.nValue)) throw std::runtime_error(std::string(__func__) + ": value out of range"); return (IsChange(txout) ? txout.nValue : 0); } bool CWallet::IsMine(const CTransaction& tx) const { for (const CTxOut& txout : tx.vout) if (IsMine(txout)) return true; return false; } bool CWallet::IsFromMe(const CTransaction& tx) const { return (GetDebit(tx, ISMINE_ALL) > 0); } CAmount CWallet::GetDebit(const CTransaction& tx, const isminefilter& filter) const { CAmount nDebit = 0; for (const CTxIn& txin : tx.vin) { nDebit += GetDebit(txin, filter); if (!MoneyRange(nDebit)) throw std::runtime_error(std::string(__func__) + ": value out of range"); } return nDebit; } bool CWallet::IsAllFromMe(const CTransaction& tx, const isminefilter& filter) const { LOCK(cs_wallet); for (const CTxIn& txin : tx.vin) { auto mi = mapWallet.find(txin.prevout.hash); if (mi == mapWallet.end()) return false; // any unknown inputs can't be from us const CWalletTx& prev = (*mi).second; if (txin.prevout.n >= prev.tx->vout.size()) return false; // invalid input! if (!(IsMine(prev.tx->vout[txin.prevout.n]) & filter)) return false; } return true; } CAmount CWallet::GetCredit(const CTransaction& tx, const isminefilter& filter) const { CAmount nCredit = 0; for (const CTxOut& txout : tx.vout) { nCredit += GetCredit(txout, filter); if (!MoneyRange(nCredit)) throw std::runtime_error(std::string(__func__) + ": value out of range"); } return nCredit; } CAmount CWallet::GetChange(const CTransaction& tx) const { CAmount nChange = 0; for (const CTxOut& txout : tx.vout) { nChange += GetChange(txout); if (!MoneyRange(nChange)) throw std::runtime_error(std::string(__func__) + ": value out of range"); } return nChange; } CPubKey CWallet::GenerateNewHDMasterKey() { CKey key; key.MakeNewKey(true); int64_t nCreationTime = GetTime(); CKeyMetadata metadata(nCreationTime); // calculate the pubkey CPubKey pubkey = key.GetPubKey(); assert(key.VerifyPubKey(pubkey)); // set the hd keypath to "m" -> Master, refers the masterkeyid to itself metadata.hdKeypath = "m"; metadata.hdMasterKeyID = pubkey.GetID(); { LOCK(cs_wallet); // mem store the metadata mapKeyMetadata[pubkey.GetID()] = metadata; // write the key&metadata to the database if (!AddKeyPubKey(key, pubkey)) throw std::runtime_error(std::string(__func__) + ": AddKeyPubKey failed"); } return pubkey; } bool CWallet::SetHDMasterKey(const CPubKey& pubkey) { LOCK(cs_wallet); // store the keyid (hash160) together with // the child index counter in the database // as a hdchain object CHDChain newHdChain; newHdChain.nVersion = CanSupportFeature(FEATURE_HD_SPLIT) ? CHDChain::VERSION_HD_CHAIN_SPLIT : CHDChain::VERSION_HD_BASE; newHdChain.masterKeyID = pubkey.GetID(); SetHDChain(newHdChain, false); return true; } bool CWallet::SetHDChain(const CHDChain& chain, bool memonly) { LOCK(cs_wallet); if (!memonly && !CWalletDB(*dbw).WriteHDChain(chain)) throw std::runtime_error(std::string(__func__) + ": writing chain failed"); hdChain = chain; return true; } bool CWallet::IsHDEnabled() const { return !hdChain.masterKeyID.IsNull(); } int64_t CWalletTx::GetTxTime() const { int64_t n = nTimeSmart; return n ? n : nTimeReceived; } int CWalletTx::GetRequestCount() const { // Returns -1 if it wasn't being tracked int nRequests = -1; { LOCK(pwallet->cs_wallet); if (IsCoinBase()) { // Generated block if (!hashUnset()) { std::map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock); if (mi != pwallet->mapRequestCount.end()) nRequests = (*mi).second; } } else { // Did anyone request this transaction? std::map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash()); if (mi != pwallet->mapRequestCount.end()) { nRequests = (*mi).second; // How about the block it's in? if (nRequests == 0 && !hashUnset()) { std::map<uint256, int>::const_iterator _mi = pwallet->mapRequestCount.find(hashBlock); if (_mi != pwallet->mapRequestCount.end()) nRequests = (*_mi).second; else nRequests = 1; // If it's in someone else's block it must have got out } } } } return nRequests; } void CWalletTx::GetAmounts(std::list<COutputEntry>& listReceived, std::list<COutputEntry>& listSent, CAmount& nFee, std::string& strSentAccount, const isminefilter& filter) const { nFee = 0; listReceived.clear(); listSent.clear(); strSentAccount = strFromAccount; // Compute fee: CAmount nDebit = GetDebit(filter); if (nDebit > 0) // debit>0 means we signed/sent this transaction { CAmount nValueOut = tx->GetValueOut(); nFee = nDebit - nValueOut; } // Sent/received. for (unsigned int i = 0; i < tx->vout.size(); ++i) { const CTxOut& txout = tx->vout[i]; isminetype fIsMine = pwallet->IsMine(txout); // Only need to handle txouts if AT LEAST one of these is true: // 1) they debit from us (sent) // 2) the output is to us (received) if (nDebit > 0) { // Don't report 'change' txouts if (pwallet->IsChange(txout)) continue; } else if (!(fIsMine & filter)) continue; // In either case, we need to get the destination address CTxDestination address; //TODO-J not check scriptpubkey for contract if ( !txout.scriptPubKey.HasOpCreate() && !txout.scriptPubKey.HasOpCall() && !ExtractDestination(txout.scriptPubKey, address) && !txout.scriptPubKey.IsUnspendable()) { LogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n", this->GetHash().ToString()); address = CNoDestination(); } COutputEntry output = {address, txout.nValue, (int)i}; // If we are debited by the transaction, add the output as a "sent" entry if (nDebit > 0) listSent.push_back(output); // If we are receiving the output, add it as a "received" entry if (fIsMine & filter) listReceived.push_back(output); } } /** * Scan active chain for relevant transactions after importing keys. This should * be called whenever new keys are added to the wallet, with the oldest key * creation time. * * @return Earliest timestamp that could be successfully scanned from. Timestamp * returned will be higher than startTime if relevant blocks could not be read. */ int64_t CWallet::RescanFromTime(int64_t startTime, bool update) { AssertLockHeld(cs_main); AssertLockHeld(cs_wallet); // Find starting block. May be null if nCreateTime is greater than the // highest blockchain timestamp, in which case there is nothing that needs // to be scanned. CBlockIndex* const startBlock = chainActive.FindEarliestAtLeast(startTime - TIMESTAMP_WINDOW); LogPrintf("%s: Rescanning last %i blocks\n", __func__, startBlock ? chainActive.Height() - startBlock->nHeight + 1 : 0); if (startBlock) { const CBlockIndex* const failedBlock = ScanForWalletTransactions(startBlock, update); if (failedBlock) { return failedBlock->GetBlockTimeMax() + TIMESTAMP_WINDOW + 1; } } return startTime; } /** * Scan the block chain (starting in pindexStart) for transactions * from or to us. If fUpdate is true, found transactions that already * exist in the wallet will be updated. * * Returns null if scan was successful. Otherwise, if a complete rescan was not * possible (due to pruning or corruption), returns pointer to the most recent * block that could not be scanned. */ CBlockIndex* CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate) { int64_t nNow = GetTime(); const CChainParams& chainParams = Params(); CBlockIndex* pindex = pindexStart; CBlockIndex* ret = nullptr; { LOCK2(cs_main, cs_wallet); fAbortRescan = false; fScanningWallet = true; ShowProgress(_("Rescanning..."), 0); // show rescan progress in GUI as dialog or on splashscreen, if -rescan on startup double dProgressStart = GuessVerificationProgress(chainParams.TxData(), pindex); double dProgressTip = GuessVerificationProgress(chainParams.TxData(), chainActive.Tip()); while (pindex && !fAbortRescan) { if (pindex->nHeight % 100 == 0 && dProgressTip - dProgressStart > 0.0) ShowProgress(_("Rescanning..."), std::max(1, std::min(99, (int)((GuessVerificationProgress(chainParams.TxData(), pindex) - dProgressStart) / (dProgressTip - dProgressStart) * 100)))); if (GetTime() >= nNow + 60) { nNow = GetTime(); LogPrintf("Still rescanning. At block %d. Progress=%f\n", pindex->nHeight, GuessVerificationProgress(chainParams.TxData(), pindex)); } CBlock block; if (ReadBlockFromDisk(block, pindex, Params().GetConsensus())) { for (size_t posInBlock = 0; posInBlock < block.vtx.size(); ++posInBlock) { AddToWalletIfInvolvingMe(block.vtx[posInBlock], pindex, posInBlock, fUpdate); } } else { ret = pindex; } pindex = chainActive.Next(pindex); } if (pindex && fAbortRescan) { LogPrintf("Rescan aborted at block %d. Progress=%f\n", pindex->nHeight, GuessVerificationProgress(chainParams.TxData(), pindex)); } ShowProgress(_("Rescanning..."), 100); // hide progress dialog in GUI fScanningWallet = false; } return ret; } void CWallet::ReacceptWalletTransactions() { // If transactions aren't being broadcasted, don't let them into local mempool either if (!fBroadcastTransactions) return; LOCK2(cs_main, cs_wallet); std::map<int64_t, CWalletTx*> mapSorted; // Sort pending wallet transactions based on their initial wallet insertion order for (std::pair<const uint256, CWalletTx>& item : mapWallet) { const uint256& wtxid = item.first; CWalletTx& wtx = item.second; assert(wtx.GetHash() == wtxid); int nDepth = wtx.GetDepthInMainChain(); if (!wtx.IsCoinBase() && (nDepth == 0 && !wtx.isAbandoned())) { mapSorted.insert(std::make_pair(wtx.nOrderPos, &wtx)); } } // Try to add wallet transactions to memory pool for (std::pair<const int64_t, CWalletTx*>& item : mapSorted) { CWalletTx& wtx = *(item.second); LOCK(mempool.cs); CValidationState state; wtx.AcceptToMemoryPool(maxTxFee, state); } } bool CWalletTx::RelayWalletTransaction(CConnman* connman) { assert(pwallet->GetBroadcastTransactions()); if (!IsCoinBase() && !isAbandoned() && GetDepthInMainChain() == 0) { CValidationState state; /* GetDepthInMainChain already catches known conflicts. */ if (InMempool() || AcceptToMemoryPool(maxTxFee, state)) { LogPrintf("Relaying wtx %s\n", GetHash().ToString()); if (connman) { CInv inv(MSG_TX, GetHash()); connman->ForEachNode([&inv](CNode* pnode) { pnode->PushInventory(inv); }); return true; } } } return false; } std::set<uint256> CWalletTx::GetConflicts() const { std::set<uint256> result; if (pwallet != nullptr) { uint256 myHash = GetHash(); result = pwallet->GetConflicts(myHash); result.erase(myHash); } return result; } CAmount CWalletTx::GetDebit(const isminefilter& filter) const { if (tx->vin.empty()) return 0; CAmount debit = 0; if(filter & ISMINE_SPENDABLE) { if (fDebitCached) debit += nDebitCached; else { nDebitCached = pwallet->GetDebit(*this, ISMINE_SPENDABLE); fDebitCached = true; debit += nDebitCached; } } if(filter & ISMINE_WATCH_ONLY) { if(fWatchDebitCached) debit += nWatchDebitCached; else { nWatchDebitCached = pwallet->GetDebit(*this, ISMINE_WATCH_ONLY); fWatchDebitCached = true; debit += nWatchDebitCached; } } return debit; } CAmount CWalletTx::GetCredit(const isminefilter& filter) const { // Must wait until coinbase is safely deep enough in the chain before valuing it if (IsCoinBase() && GetBlocksToMaturity() > 0) return 0; CAmount credit = 0; if (filter & ISMINE_SPENDABLE) { // GetBalance can assume transactions in mapWallet won't change if (fCreditCached) credit += nCreditCached; else { nCreditCached = pwallet->GetCredit(*this, ISMINE_SPENDABLE); fCreditCached = true; credit += nCreditCached; } } if (filter & ISMINE_WATCH_ONLY) { if (fWatchCreditCached) credit += nWatchCreditCached; else { nWatchCreditCached = pwallet->GetCredit(*this, ISMINE_WATCH_ONLY); fWatchCreditCached = true; credit += nWatchCreditCached; } } return credit; } CAmount CWalletTx::GetImmatureCredit(bool fUseCache) const { if (IsCoinBase() && GetBlocksToMaturity() > 0 && IsInMainChain()) { if (fUseCache && fImmatureCreditCached) return nImmatureCreditCached; nImmatureCreditCached = pwallet->GetCredit(*this, ISMINE_SPENDABLE); fImmatureCreditCached = true; return nImmatureCreditCached; } return 0; } CAmount CWalletTx::GetAvailableCredit(bool fUseCache) const { if (pwallet == 0) return 0; // Must wait until coinbase is safely deep enough in the chain before valuing it if (IsCoinBase() && GetBlocksToMaturity() > 0) return 0; if (fUseCache && fAvailableCreditCached) return nAvailableCreditCached; CAmount nCredit = 0; uint256 hashTx = GetHash(); for (unsigned int i = 0; i < tx->vout.size(); i++) { if (!pwallet->IsSpent(hashTx, i)) { const CTxOut &txout = tx->vout[i]; nCredit += pwallet->GetCredit(txout, ISMINE_SPENDABLE); if (!MoneyRange(nCredit)) throw std::runtime_error(std::string(__func__) + " : value out of range"); } } nAvailableCreditCached = nCredit; fAvailableCreditCached = true; return nCredit; } CAmount CWalletTx::GetImmatureWatchOnlyCredit(const bool& fUseCache) const { if (IsCoinBase() && GetBlocksToMaturity() > 0 && IsInMainChain()) { if (fUseCache && fImmatureWatchCreditCached) return nImmatureWatchCreditCached; nImmatureWatchCreditCached = pwallet->GetCredit(*this, ISMINE_WATCH_ONLY); fImmatureWatchCreditCached = true; return nImmatureWatchCreditCached; } return 0; } CAmount CWalletTx::GetAvailableWatchOnlyCredit(const bool& fUseCache) const { if (pwallet == 0) return 0; // Must wait until coinbase is safely deep enough in the chain before valuing it if (IsCoinBase() && GetBlocksToMaturity() > 0) return 0; if (fUseCache && fAvailableWatchCreditCached) return nAvailableWatchCreditCached; CAmount nCredit = 0; for (unsigned int i = 0; i < tx->vout.size(); i++) { if (!pwallet->IsSpent(GetHash(), i)) { const CTxOut &txout = tx->vout[i]; nCredit += pwallet->GetCredit(txout, ISMINE_WATCH_ONLY); if (!MoneyRange(nCredit)) throw std::runtime_error(std::string(__func__) + ": value out of range"); } } nAvailableWatchCreditCached = nCredit; fAvailableWatchCreditCached = true; return nCredit; } CAmount CWalletTx::GetChange() const { if (fChangeCached) return nChangeCached; nChangeCached = pwallet->GetChange(*this); fChangeCached = true; return nChangeCached; } bool CWalletTx::InMempool() const { LOCK(mempool.cs); return mempool.exists(GetHash()); } bool CWalletTx::IsTrusted() const { // Quick answer in most cases if (!CheckFinalTx(*this)) return false; int nDepth = GetDepthInMainChain(); if (nDepth >= 1) return true; if (nDepth < 0) return false; if (!bSpendZeroConfChange || !IsFromMe(ISMINE_ALL)) // using wtx's cached debit return false; // Don't trust unconfirmed transactions from us unless they are in the mempool. if (!InMempool()) return false; // Trusted if all inputs are from us and are in the mempool: for (const CTxIn& txin : tx->vin) { // Transactions not sent by us: not trusted const CWalletTx* parent = pwallet->GetWalletTx(txin.prevout.hash); if (parent == nullptr) return false; const CTxOut& parentOut = parent->tx->vout[txin.prevout.n]; if (pwallet->IsMine(parentOut) != ISMINE_SPENDABLE) return false; } return true; } bool CWalletTx::IsEquivalentTo(const CWalletTx& _tx) const { CMutableTransaction tx1 = *this->tx; CMutableTransaction tx2 = *_tx.tx; for (auto& txin : tx1.vin) txin.scriptSig = CScript(); for (auto& txin : tx2.vin) txin.scriptSig = CScript(); return CTransaction(tx1) == CTransaction(tx2); } std::vector<uint256> CWallet::ResendWalletTransactionsBefore(int64_t nTime, CConnman* connman) { std::vector<uint256> result; LOCK(cs_wallet); // Sort them in chronological order std::multimap<unsigned int, CWalletTx*> mapSorted; for (std::pair<const uint256, CWalletTx>& item : mapWallet) { CWalletTx& wtx = item.second; // Don't rebroadcast if newer than nTime: if (wtx.nTimeReceived > nTime) continue; mapSorted.insert(std::make_pair(wtx.nTimeReceived, &wtx)); } for (std::pair<const unsigned int, CWalletTx*>& item : mapSorted) { CWalletTx& wtx = *item.second; if (wtx.RelayWalletTransaction(connman)) result.push_back(wtx.GetHash()); } return result; } void CWallet::ResendWalletTransactions(int64_t nBestBlockTime, CConnman* connman) { // Do this infrequently and randomly to avoid giving away // that these are our transactions. if (GetTime() < nNextResend || !fBroadcastTransactions) return; bool fFirst = (nNextResend == 0); nNextResend = GetTime() + GetRand(30 * 60); if (fFirst) return; // Only do it if there's been a new block since last time if (nBestBlockTime < nLastResend) return; nLastResend = GetTime(); // Rebroadcast unconfirmed txes older than 5 minutes before the last // block was found: std::vector<uint256> relayed = ResendWalletTransactionsBefore(nBestBlockTime-5*60, connman); if (!relayed.empty()) LogPrintf("%s: rebroadcast %u unconfirmed transactions\n", __func__, relayed.size()); } /** @} */ // end of mapWallet /** @defgroup Actions * * @{ */ CAmount CWallet::GetBalance() const { CAmount nTotal = 0; { LOCK2(cs_main, cs_wallet); for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; if (pcoin->IsTrusted()) nTotal += pcoin->GetAvailableCredit(); } } return nTotal; } CAmount CWallet::GetUnconfirmedBalance() const { CAmount nTotal = 0; { LOCK2(cs_main, cs_wallet); for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; if (!pcoin->IsTrusted() && pcoin->GetDepthInMainChain() == 0 && pcoin->InMempool()) nTotal += pcoin->GetAvailableCredit(); } } return nTotal; } CAmount CWallet::GetImmatureBalance() const { CAmount nTotal = 0; { LOCK2(cs_main, cs_wallet); for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; nTotal += pcoin->GetImmatureCredit(); } } return nTotal; } CAmount CWallet::GetWatchOnlyBalance() const { CAmount nTotal = 0; { LOCK2(cs_main, cs_wallet); for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; if (pcoin->IsTrusted()) nTotal += pcoin->GetAvailableWatchOnlyCredit(); } } return nTotal; } CAmount CWallet::GetUnconfirmedWatchOnlyBalance() const { CAmount nTotal = 0; { LOCK2(cs_main, cs_wallet); for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; if (!pcoin->IsTrusted() && pcoin->GetDepthInMainChain() == 0 && pcoin->InMempool()) nTotal += pcoin->GetAvailableWatchOnlyCredit(); } } return nTotal; } CAmount CWallet::GetImmatureWatchOnlyBalance() const { CAmount nTotal = 0; { LOCK2(cs_main, cs_wallet); for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; nTotal += pcoin->GetImmatureWatchOnlyCredit(); } } return nTotal; } // Calculate total balance in a different way from GetBalance. The biggest // difference is that GetBalance sums up all unspent TxOuts paying to the // wallet, while this sums up both spent and unspent TxOuts paying to the // wallet, and then subtracts the values of TxIns spending from the wallet. This // also has fewer restrictions on which unconfirmed transactions are considered // trusted. CAmount CWallet::GetLegacyBalance(const isminefilter& filter, int minDepth, const std::string* account) const { LOCK2(cs_main, cs_wallet); CAmount balance = 0; for (const auto& entry : mapWallet) { const CWalletTx& wtx = entry.second; const int depth = wtx.GetDepthInMainChain(); if (depth < 0 || !CheckFinalTx(*wtx.tx) || wtx.GetBlocksToMaturity() > 0) { continue; } // Loop through tx outputs and add incoming payments. For outgoing txs, // treat change outputs specially, as part of the amount debited. CAmount debit = wtx.GetDebit(filter); const bool outgoing = debit > 0; for (const CTxOut& out : wtx.tx->vout) { if (outgoing && IsChange(out)) { debit -= out.nValue; } else if (IsMine(out) & filter && depth >= minDepth && (!account || *account == GetAccountName(out.scriptPubKey))) { balance += out.nValue; } } // For outgoing txs, subtract amount debited. if (outgoing && (!account || *account == wtx.strFromAccount)) { balance -= debit; } } if (account) { balance += CWalletDB(*dbw).GetAccountCreditDebit(*account); } return balance; } CAmount CWallet::GetAvailableBalance(const CCoinControl* coinControl) const { LOCK2(cs_main, cs_wallet); CAmount balance = 0; std::vector<COutput> vCoins; AvailableCoins(vCoins, true, coinControl); for (const COutput& out : vCoins) { if (out.fSpendable) { balance += out.tx->tx->vout[out.i].nValue; } } return balance; } void CWallet::AvailableCoins(std::vector<COutput> &vCoins, bool fOnlySafe, const CCoinControl *coinControl, const CAmount &nMinimumAmount, const CAmount &nMaximumAmount, const CAmount &nMinimumSumAmount, const uint64_t &nMaximumCount, const int &nMinDepth, const int &nMaxDepth) const { vCoins.clear(); { LOCK2(cs_main, cs_wallet); CAmount nTotal = 0; for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const uint256& wtxid = it->first; const CWalletTx* pcoin = &(*it).second; if (!CheckFinalTx(*pcoin)) continue; if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0) continue; int nDepth = pcoin->GetDepthInMainChain(); if (nDepth < 0) continue; // We should not consider coins which aren't at least in our mempool // It's possible for these to be conflicted via ancestors which we may never be able to detect if (nDepth == 0 && !pcoin->InMempool()) continue; bool safeTx = pcoin->IsTrusted(); // We should not consider coins from transactions that are replacing // other transactions. // // Example: There is a transaction A which is replaced by bumpfee // transaction B. In this case, we want to prevent creation of // a transaction B' which spends an output of B. // // Reason: If transaction A were initially confirmed, transactions B // and B' would no longer be valid, so the user would have to create // a new transaction C to replace B'. However, in the case of a // one-block reorg, transactions B' and C might BOTH be accepted, // when the user only wanted one of them. Specifically, there could // be a 1-block reorg away from the chain where transactions A and C // were accepted to another chain where B, B', and C were all // accepted. if (nDepth == 0 && pcoin->mapValue.count("replaces_txid")) { safeTx = false; } // Similarly, we should not consider coins from transactions that // have been replaced. In the example above, we would want to prevent // creation of a transaction A' spending an output of A, because if // transaction B were initially confirmed, conflicting with A and // A', we wouldn't want to the user to create a transaction D // intending to replace A', but potentially resulting in a scenario // where A, A', and D could all be accepted (instead of just B and // D, or just A and A' like the user would want). if (nDepth == 0 && pcoin->mapValue.count("replaced_by_txid")) { safeTx = false; } if (fOnlySafe && !safeTx) { continue; } if (nDepth < nMinDepth || nDepth > nMaxDepth) continue; for (unsigned int i = 0; i < pcoin->tx->vout.size(); i++) { if (pcoin->tx->vout[i].nValue < nMinimumAmount || pcoin->tx->vout[i].nValue > nMaximumAmount) continue; if (coinControl && coinControl->HasSelected() && !coinControl->fAllowOtherInputs && !coinControl->IsSelected(COutPoint((*it).first, i))) continue; if (IsLockedCoin((*it).first, i)) continue; if (IsSpent(wtxid, i)) continue; isminetype mine = IsMine(pcoin->tx->vout[i]); if (mine == ISMINE_NO) { continue; } bool fSpendableIn = ((mine & ISMINE_SPENDABLE) != ISMINE_NO) || (coinControl && coinControl->fAllowWatchOnly && (mine & ISMINE_WATCH_SOLVABLE) != ISMINE_NO); bool fSolvableIn = (mine & (ISMINE_SPENDABLE | ISMINE_WATCH_SOLVABLE)) != ISMINE_NO; vCoins.push_back(COutput(pcoin, i, nDepth, fSpendableIn, fSolvableIn, safeTx)); // Checks the sum amount of all UTXO's. if (nMinimumSumAmount != MAX_MONEY) { nTotal += pcoin->tx->vout[i].nValue; if (nTotal >= nMinimumSumAmount) { return; } } // Checks the maximum number of UTXO's. if (nMaximumCount > 0 && vCoins.size() >= nMaximumCount) { return; } } } } } std::map<CTxDestination, std::vector<COutput>> CWallet::ListCoins() const { // TODO: Add AssertLockHeld(cs_wallet) here. // // Because the return value from this function contains pointers to // CWalletTx objects, callers to this function really should acquire the // cs_wallet lock before calling it. However, the current caller doesn't // acquire this lock yet. There was an attempt to add the missing lock in // https://github.com/ybtc/ybtc/pull/10340, but that change has been // postponed until after https://github.com/ybtc/ybtc/pull/10244 to // avoid adding some extra complexity to the Qt code. std::map<CTxDestination, std::vector<COutput>> result; std::vector<COutput> availableCoins; AvailableCoins(availableCoins); LOCK2(cs_main, cs_wallet); for (auto& coin : availableCoins) { CTxDestination address; if (coin.fSpendable && ExtractDestination(FindNonChangeParentOutput(*coin.tx->tx, coin.i).scriptPubKey, address)) { result[address].emplace_back(std::move(coin)); } } std::vector<COutPoint> lockedCoins; ListLockedCoins(lockedCoins); for (const auto& output : lockedCoins) { auto it = mapWallet.find(output.hash); if (it != mapWallet.end()) { int depth = it->second.GetDepthInMainChain(); if (depth >= 0 && output.n < it->second.tx->vout.size() && IsMine(it->second.tx->vout[output.n]) == ISMINE_SPENDABLE) { CTxDestination address; if (ExtractDestination(FindNonChangeParentOutput(*it->second.tx, output.n).scriptPubKey, address)) { result[address].emplace_back( &it->second, output.n, depth, true /* spendable */, true /* solvable */, false /* safe */); } } } } return result; } const CTxOut& CWallet::FindNonChangeParentOutput(const CTransaction& tx, int output) const { const CTransaction* ptx = &tx; int n = output; while (IsChange(ptx->vout[n]) && ptx->vin.size() > 0) { const COutPoint& prevout = ptx->vin[0].prevout; auto it = mapWallet.find(prevout.hash); if (it == mapWallet.end() || it->second.tx->vout.size() <= prevout.n || !IsMine(it->second.tx->vout[prevout.n])) { break; } ptx = it->second.tx.get(); n = prevout.n; } return ptx->vout[n]; } static void ApproximateBestSubset(const std::vector<CInputCoin>& vValue, const CAmount& nTotalLower, const CAmount& nTargetValue, std::vector<char>& vfBest, CAmount& nBest, int iterations = 1000) { std::vector<char> vfIncluded; vfBest.assign(vValue.size(), true); nBest = nTotalLower; FastRandomContext insecure_rand; for (int nRep = 0; nRep < iterations && nBest != nTargetValue; nRep++) { vfIncluded.assign(vValue.size(), false); CAmount nTotal = 0; bool fReachedTarget = false; for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++) { for (unsigned int i = 0; i < vValue.size(); i++) { //The solver here uses a randomized algorithm, //the randomness serves no real security purpose but is just //needed to prevent degenerate behavior and it is important //that the rng is fast. We do not use a constant random sequence, //because there may be some privacy improvement by making //the selection random. if (nPass == 0 ? insecure_rand.randbool() : !vfIncluded[i]) { nTotal += vValue[i].txout.nValue; vfIncluded[i] = true; if (nTotal >= nTargetValue) { fReachedTarget = true; if (nTotal < nBest) { nBest = nTotal; vfBest = vfIncluded; } nTotal -= vValue[i].txout.nValue; vfIncluded[i] = false; } } } } } } bool CWallet::SelectCoinsMinConf(const CAmount& nTargetValue, const int nConfMine, const int nConfTheirs, const uint64_t nMaxAncestors, std::vector<COutput> vCoins, std::set<CInputCoin>& setCoinsRet, CAmount& nValueRet) const { setCoinsRet.clear(); nValueRet = 0; // List of values less than target boost::optional<CInputCoin> coinLowestLarger; std::vector<CInputCoin> vValue; CAmount nTotalLower = 0; random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt); for (const COutput &output : vCoins) { if (!output.fSpendable) continue; const CWalletTx *pcoin = output.tx; if (output.nDepth < (pcoin->IsFromMe(ISMINE_ALL) ? nConfMine : nConfTheirs)) continue; if (!mempool.TransactionWithinChainLimit(pcoin->GetHash(), nMaxAncestors)) continue; int i = output.i; CInputCoin coin = CInputCoin(pcoin, i); if (coin.txout.nValue == nTargetValue) { setCoinsRet.insert(coin); nValueRet += coin.txout.nValue; return true; } else if (coin.txout.nValue < nTargetValue + MIN_CHANGE) { vValue.push_back(coin); nTotalLower += coin.txout.nValue; } else if (!coinLowestLarger || coin.txout.nValue < coinLowestLarger->txout.nValue) { coinLowestLarger = coin; } } if (nTotalLower == nTargetValue) { for (const auto& input : vValue) { setCoinsRet.insert(input); nValueRet += input.txout.nValue; } return true; } if (nTotalLower < nTargetValue) { if (!coinLowestLarger) return false; setCoinsRet.insert(coinLowestLarger.get()); nValueRet += coinLowestLarger->txout.nValue; return true; } // Solve subset sum by stochastic approximation std::sort(vValue.begin(), vValue.end(), CompareValueOnly()); std::reverse(vValue.begin(), vValue.end()); std::vector<char> vfBest; CAmount nBest; ApproximateBestSubset(vValue, nTotalLower, nTargetValue, vfBest, nBest); if (nBest != nTargetValue && nTotalLower >= nTargetValue + MIN_CHANGE) ApproximateBestSubset(vValue, nTotalLower, nTargetValue + MIN_CHANGE, vfBest, nBest); // If we have a bigger coin and (either the stochastic approximation didn't find a good solution, // or the next bigger coin is closer), return the bigger coin if (coinLowestLarger && ((nBest != nTargetValue && nBest < nTargetValue + MIN_CHANGE) || coinLowestLarger->txout.nValue <= nBest)) { setCoinsRet.insert(coinLowestLarger.get()); nValueRet += coinLowestLarger->txout.nValue; } else { for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) { setCoinsRet.insert(vValue[i]); nValueRet += vValue[i].txout.nValue; } if (LogAcceptCategory(BCLog::SELECTCOINS)) { LogPrint(BCLog::SELECTCOINS, "SelectCoins() best subset: "); for (unsigned int i = 0; i < vValue.size(); i++) { if (vfBest[i]) { LogPrint(BCLog::SELECTCOINS, "%s ", FormatMoney(vValue[i].txout.nValue)); } } LogPrint(BCLog::SELECTCOINS, "total %s\n", FormatMoney(nBest)); } } return true; } bool CWallet::SelectCoins(const std::vector<COutput>& vAvailableCoins, const CAmount& nTargetValue, std::set<CInputCoin>& setCoinsRet, CAmount& nValueRet, const CCoinControl* coinControl) const { std::vector<COutput> vCoins(vAvailableCoins); // coin control -> return all selected outputs (we want all selected to go into the transaction for sure) if (coinControl && coinControl->HasSelected() && !coinControl->fAllowOtherInputs) { for (const COutput& out : vCoins) { if (!out.fSpendable) continue; nValueRet += out.tx->tx->vout[out.i].nValue; setCoinsRet.insert(CInputCoin(out.tx, out.i)); } return (nValueRet >= nTargetValue); } // calculate value from preset inputs and store them std::set<CInputCoin> setPresetCoins; CAmount nValueFromPresetInputs = 0; std::vector<COutPoint> vPresetInputs; if (coinControl) coinControl->ListSelected(vPresetInputs); for (const COutPoint& outpoint : vPresetInputs) { std::map<uint256, CWalletTx>::const_iterator it = mapWallet.find(outpoint.hash); if (it != mapWallet.end()) { const CWalletTx* pcoin = &it->second; // Clearly invalid input, fail if (pcoin->tx->vout.size() <= outpoint.n) return false; nValueFromPresetInputs += pcoin->tx->vout[outpoint.n].nValue; setPresetCoins.insert(CInputCoin(pcoin, outpoint.n)); } else return false; // TODO: Allow non-wallet inputs } // remove preset inputs from vCoins for (std::vector<COutput>::iterator it = vCoins.begin(); it != vCoins.end() && coinControl && coinControl->HasSelected();) { if (setPresetCoins.count(CInputCoin(it->tx, it->i))) it = vCoins.erase(it); else ++it; } size_t nMaxChainLength = std::min(gArgs.GetArg("-limitancestorcount", DEFAULT_ANCESTOR_LIMIT), gArgs.GetArg("-limitdescendantcount", DEFAULT_DESCENDANT_LIMIT)); bool fRejectLongChains = gArgs.GetBoolArg("-walletrejectlongchains", DEFAULT_WALLET_REJECT_LONG_CHAINS); bool res = nTargetValue <= nValueFromPresetInputs || SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 1, 6, 0, vCoins, setCoinsRet, nValueRet) || SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 1, 1, 0, vCoins, setCoinsRet, nValueRet) || (bSpendZeroConfChange && SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 0, 1, 2, vCoins, setCoinsRet, nValueRet)) || (bSpendZeroConfChange && SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 0, 1, std::min((size_t)4, nMaxChainLength/3), vCoins, setCoinsRet, nValueRet)) || (bSpendZeroConfChange && SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 0, 1, nMaxChainLength/2, vCoins, setCoinsRet, nValueRet)) || (bSpendZeroConfChange && SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 0, 1, nMaxChainLength, vCoins, setCoinsRet, nValueRet)) || (bSpendZeroConfChange && !fRejectLongChains && SelectCoinsMinConf(nTargetValue - nValueFromPresetInputs, 0, 1, std::numeric_limits<uint64_t>::max(), vCoins, setCoinsRet, nValueRet)); // because SelectCoinsMinConf clears the setCoinsRet, we now add the possible inputs to the coinset setCoinsRet.insert(setPresetCoins.begin(), setPresetCoins.end()); // add preset inputs to the total value selected nValueRet += nValueFromPresetInputs; return res; } bool CWallet::SignTransaction(CMutableTransaction &tx) { AssertLockHeld(cs_wallet); // mapWallet // sign the new tx CTransaction txNewConst(tx); int nIn = 0; for (const auto& input : tx.vin) { std::map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(input.prevout.hash); if(mi == mapWallet.end() || input.prevout.n >= mi->second.tx->vout.size()) { return false; } const CScript& scriptPubKey = mi->second.tx->vout[input.prevout.n].scriptPubKey; const CAmount& amount = mi->second.tx->vout[input.prevout.n].nValue; SignatureData sigdata; if (!ProduceSignature(TransactionSignatureCreator(this, &txNewConst, nIn, amount, SIGHASH_ALL), scriptPubKey, sigdata)) { return false; } UpdateTransaction(tx, nIn, sigdata); nIn++; } return true; } bool CWallet::FundTransaction(CMutableTransaction& tx, CAmount& nFeeRet, int& nChangePosInOut, std::string& strFailReason, bool lockUnspents, const std::set<int>& setSubtractFeeFromOutputs, CCoinControl coinControl) { std::vector<CRecipient> vecSend; // Turn the txout set into a CRecipient vector for (size_t idx = 0; idx < tx.vout.size(); idx++) { const CTxOut& txOut = tx.vout[idx]; CRecipient recipient = {txOut.scriptPubKey, txOut.nValue, setSubtractFeeFromOutputs.count(idx) == 1}; vecSend.push_back(recipient); } coinControl.fAllowOtherInputs = true; for (const CTxIn& txin : tx.vin) coinControl.Select(txin.prevout); CReserveKey reservekey(this); CWalletTx wtx; if (!CreateTransaction(vecSend, wtx, reservekey, nFeeRet, nChangePosInOut, strFailReason, coinControl, false)) { return false; } if (nChangePosInOut != -1) { tx.vout.insert(tx.vout.begin() + nChangePosInOut, wtx.tx->vout[nChangePosInOut]); // we dont have the normal Create/Commit cycle, and dont want to risk reusing change, // so just remove the key from the keypool here. reservekey.KeepKey(); } // Copy output sizes from new transaction; they may have had the fee subtracted from them for (unsigned int idx = 0; idx < tx.vout.size(); idx++) tx.vout[idx].nValue = wtx.tx->vout[idx].nValue; // Add new txins (keeping original txin scriptSig/order) for (const CTxIn& txin : wtx.tx->vin) { if (!coinControl.IsSelected(txin.prevout)) { tx.vin.push_back(txin); if (lockUnspents) { LOCK2(cs_main, cs_wallet); LockCoin(txin.prevout); } } } return true; } static CFeeRate GetDiscardRate(const CBlockPolicyEstimator& estimator) { unsigned int highest_target = estimator.HighestTargetTracked(FeeEstimateHorizon::LONG_HALFLIFE); CFeeRate discard_rate = estimator.estimateSmartFee(highest_target, nullptr /* FeeCalculation */, false /* conservative */); // Don't let discard_rate be greater than longest possible fee estimate if we get a valid fee estimate discard_rate = (discard_rate == CFeeRate(0)) ? CWallet::m_discard_rate : std::min(discard_rate, CWallet::m_discard_rate); // Discard rate must be at least dustRelayFee discard_rate = std::max(discard_rate, ::dustRelayFee); return discard_rate; } bool CWallet::CreateTransaction(const std::vector<CRecipient>& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, CAmount& nFeeRet, int& nChangePosInOut, std::string& strFailReason, const CCoinControl& coin_control, bool sign, CAmount nGasFee, bool hasSender) { CAmount nValue = 0; int nChangePosRequest = nChangePosInOut; unsigned int nSubtractFeeFromAmount = 0; for (const auto& recipient : vecSend) { if (nValue < 0 || recipient.nAmount < 0) { strFailReason = _("Transaction amounts must not be negative"); return false; } nValue += recipient.nAmount; if (recipient.fSubtractFeeFromAmount) nSubtractFeeFromAmount++; } if (vecSend.empty()) { strFailReason = _("Transaction must have at least one recipient"); return false; } wtxNew.fTimeReceivedIsTxTime = true; wtxNew.BindWallet(this); CMutableTransaction txNew; // Discourage fee sniping. // // For a large miner the value of the transactions in the best block and // the mempool can exceed the cost of deliberately attempting to mine two // blocks to orphan the current best block. By setting nLockTime such that // only the next block can include the transaction, we discourage this // practice as the height restricted and limited blocksize gives miners // considering fee sniping fewer options for pulling off this attack. // // A simple way to think about this is from the wallet's point of view we // always want the blockchain to move forward. By setting nLockTime this // way we're basically making the statement that we only want this // transaction to appear in the next block; we don't want to potentially // encourage reorgs by allowing transactions to appear at lower heights // than the next block in forks of the best chain. // // Of course, the subsidy is high enough, and transaction volume low // enough, that fee sniping isn't a problem yet, but by implementing a fix // now we ensure code won't be written that makes assumptions about // nLockTime that preclude a fix later. txNew.nLockTime = chainActive.Height(); // Secondly occasionally randomly pick a nLockTime even further back, so // that transactions that are delayed after signing for whatever reason, // e.g. high-latency mix networks and some CoinJoin implementations, have // better privacy. if (GetRandInt(10) == 0) txNew.nLockTime = std::max(0, (int)txNew.nLockTime - GetRandInt(100)); assert(txNew.nLockTime <= (unsigned int)chainActive.Height()); assert(txNew.nLockTime < LOCKTIME_THRESHOLD); FeeCalculation feeCalc; CAmount nFeeNeeded; unsigned int nBytes; { std::set<CInputCoin> setCoins; LOCK2(cs_main, cs_wallet); { std::vector<COutput> vAvailableCoins; AvailableCoins(vAvailableCoins, true, &coin_control); // Create change script that will be used if we need change // TODO: pass in scriptChange instead of reservekey so // change transaction isn't always pay-to-ybtc-address CScript scriptChange; // coin control: send change to custom address if (!boost::get<CNoDestination>(&coin_control.destChange)) { scriptChange = GetScriptForDestination(coin_control.destChange); } else { // no coin control: send change to newly generated address // Note: We use a new key here to keep it from being obvious which side is the change. // The drawback is that by not reusing a previous key, the change may be lost if a // backup is restored, if the backup doesn't have the new private key for the change. // If we reused the old key, it would be possible to add code to look for and // rediscover unknown transactions that were written with keys of ours to recover // post-backup change. // Reserve a new key pair from key pool CPubKey vchPubKey; bool ret; ret = reservekey.GetReservedKey(vchPubKey, true); if (!ret) { strFailReason = _("Keypool ran out, please call keypoolrefill first"); return false; } scriptChange = GetScriptForDestination(vchPubKey.GetID()); } CTxOut change_prototype_txout(0, scriptChange); size_t change_prototype_size = GetSerializeSize(change_prototype_txout, SER_DISK, 0); CFeeRate discard_rate = GetDiscardRate(::feeEstimator); nFeeRet = 0; bool pick_new_inputs = true; CAmount nValueIn = 0; // Start with no fee and loop until there is enough fee while (true) { nChangePosInOut = nChangePosRequest; txNew.vin.clear(); txNew.vout.clear(); wtxNew.fFromMe = true; bool fFirst = true; CAmount nValueToSelect = nValue; if (nSubtractFeeFromAmount == 0) nValueToSelect += nFeeRet; // vouts to the payees for (const auto& recipient : vecSend) { CTxOut txout(recipient.nAmount, recipient.scriptPubKey); if (recipient.fSubtractFeeFromAmount) { txout.nValue -= nFeeRet / nSubtractFeeFromAmount; // Subtract fee equally from each selected recipient if (fFirst) // first receiver pays the remainder not divisible by output count { fFirst = false; txout.nValue -= nFeeRet % nSubtractFeeFromAmount; } } if (IsDust(txout, ::dustRelayFee) && !hasSender) { if (recipient.fSubtractFeeFromAmount && nFeeRet > 0) { if (txout.nValue < 0) strFailReason = _("The transaction amount is too small to pay the fee"); else strFailReason = _("The transaction amount is too small to send after the fee has been deducted"); } else strFailReason = _("Transaction amount too small"); return false; } txNew.vout.push_back(txout); } // Choose coins to use if (pick_new_inputs) { nValueIn = 0; setCoins.clear(); if (!SelectCoins(vAvailableCoins, nValueToSelect, setCoins, nValueIn, &coin_control)) { strFailReason = _("Insufficient funds"); return false; } } const CAmount nChange = nValueIn - nValueToSelect; if (nChange > 0) { // Fill a vout to ourself CTxOut newTxOut(nChange, scriptChange); // Never create dust outputs; if we would, just // add the dust to the fee. if (IsDust(newTxOut, discard_rate)) { nChangePosInOut = -1; nFeeRet += nChange; } else { if (nChangePosInOut == -1) { // Insert change txn at random position: nChangePosInOut = GetRandInt(txNew.vout.size()+1); } else if ((unsigned int)nChangePosInOut > txNew.vout.size()) { strFailReason = _("Change index out of range"); return false; } std::vector<CTxOut>::iterator position = txNew.vout.begin()+nChangePosInOut; txNew.vout.insert(position, newTxOut); } } else { nChangePosInOut = -1; } // Fill vin // // Note how the sequence number is set to non-maxint so that // the nLockTime set above actually works. // // BIP125 defines opt-in RBF as any nSequence < maxint-1, so // we use the highest possible value in that range (maxint-2) // to avoid conflicting with other possible uses of nSequence, // and in the spirit of "smallest possible change from prior // behavior." const uint32_t nSequence = coin_control.signalRbf ? MAX_BIP125_RBF_SEQUENCE : (CTxIn::SEQUENCE_FINAL - 1); for (const auto& coin : setCoins) txNew.vin.push_back(CTxIn(coin.outpoint,CScript(), nSequence)); // Fill in dummy signatures for fee calculation. if (!DummySignTx(txNew, setCoins)) { strFailReason = _("Signing transaction failed"); return false; } nBytes = GetVirtualTransactionSize(txNew); // Remove scriptSigs to eliminate the fee calculation dummy signatures for (auto& vin : txNew.vin) { vin.scriptSig = CScript(); vin.scriptWitness.SetNull(); } nFeeNeeded = GetMinimumFee(nBytes, coin_control, ::mempool, ::feeEstimator, &feeCalc) + nGasFee; // If we made it here and we aren't even able to meet the relay fee on the next pass, give up // because we must be at the maximum allowed fee. if (nFeeNeeded < ::minRelayTxFee.GetFee(nBytes)) { strFailReason = _("Transaction too large for fee policy"); return false; } if (nFeeRet >= nFeeNeeded) { // Reduce fee to only the needed amount if possible. This // prevents potential overpayment in fees if the coins // selected to meet nFeeNeeded result in a transaction that // requires less fee than the prior iteration. // If we have no change and a big enough excess fee, then // try to construct transaction again only without picking // new inputs. We now know we only need the smaller fee // (because of reduced tx size) and so we should add a // change output. Only try this once. if (nChangePosInOut == -1 && nSubtractFeeFromAmount == 0 && pick_new_inputs) { unsigned int tx_size_with_change = nBytes + change_prototype_size + 2; // Add 2 as a buffer in case increasing # of outputs changes compact size CAmount fee_needed_with_change = GetMinimumFee(tx_size_with_change, coin_control, ::mempool, ::feeEstimator, nullptr); CAmount minimum_value_for_change = GetDustThreshold(change_prototype_txout, discard_rate); if (nFeeRet >= fee_needed_with_change + minimum_value_for_change) { pick_new_inputs = false; nFeeRet = fee_needed_with_change; continue; } } // If we have change output already, just increase it if (nFeeRet > nFeeNeeded && nChangePosInOut != -1 && nSubtractFeeFromAmount == 0) { CAmount extraFeePaid = nFeeRet - nFeeNeeded; std::vector<CTxOut>::iterator change_position = txNew.vout.begin()+nChangePosInOut; change_position->nValue += extraFeePaid; nFeeRet -= extraFeePaid; } break; // Done, enough fee included. } else if (!pick_new_inputs) { // This shouldn't happen, we should have had enough excess // fee to pay for the new output and still meet nFeeNeeded // Or we should have just subtracted fee from recipients and // nFeeNeeded should not have changed strFailReason = _("Transaction fee and change calculation failed"); return false; } // Try to reduce change to include necessary fee if (nChangePosInOut != -1 && nSubtractFeeFromAmount == 0) { CAmount additionalFeeNeeded = nFeeNeeded - nFeeRet; std::vector<CTxOut>::iterator change_position = txNew.vout.begin()+nChangePosInOut; // Only reduce change if remaining amount is still a large enough output. if (change_position->nValue >= MIN_FINAL_CHANGE + additionalFeeNeeded) { change_position->nValue -= additionalFeeNeeded; nFeeRet += additionalFeeNeeded; break; // Done, able to increase fee from change } } // If subtracting fee from recipients, we now know what fee we // need to subtract, we have no reason to reselect inputs if (nSubtractFeeFromAmount > 0) { pick_new_inputs = false; } // Include more fee and try again. nFeeRet = nFeeNeeded; continue; } } if (nChangePosInOut == -1) reservekey.ReturnKey(); // Return any reserved key if we don't have change if (sign) { CTransaction txNewConst(txNew); int nIn = 0; for (const auto& coin : setCoins) { const CScript& scriptPubKey = coin.txout.scriptPubKey; SignatureData sigdata; if (!ProduceSignature(TransactionSignatureCreator(this, &txNewConst, nIn, coin.txout.nValue, SIGHASH_ALL), scriptPubKey, sigdata)) { strFailReason = _("Signing transaction failed"); return false; } else { UpdateTransaction(txNew, nIn, sigdata); } nIn++; } } // Embed the constructed transaction data in wtxNew. wtxNew.SetTx(MakeTransactionRef(std::move(txNew))); // Limit size if (GetTransactionWeight(wtxNew) >= MAX_STANDARD_TX_WEIGHT) { strFailReason = _("Transaction too large"); return false; } } if (gArgs.GetBoolArg("-walletrejectlongchains", DEFAULT_WALLET_REJECT_LONG_CHAINS)) { // Lastly, ensure this tx will pass the mempool's chain limits LockPoints lp; CTxMemPoolEntry entry(wtxNew.tx, 0, 0, 0, false, 0, lp); CTxMemPool::setEntries setAncestors; size_t nLimitAncestors = gArgs.GetArg("-limitancestorcount", DEFAULT_ANCESTOR_LIMIT); size_t nLimitAncestorSize = gArgs.GetArg("-limitancestorsize", DEFAULT_ANCESTOR_SIZE_LIMIT)*1000; size_t nLimitDescendants = gArgs.GetArg("-limitdescendantcount", DEFAULT_DESCENDANT_LIMIT); size_t nLimitDescendantSize = gArgs.GetArg("-limitdescendantsize", DEFAULT_DESCENDANT_SIZE_LIMIT)*1000; std::string errString; if (!mempool.CalculateMemPoolAncestors(entry, setAncestors, nLimitAncestors, nLimitAncestorSize, nLimitDescendants, nLimitDescendantSize, errString)) { strFailReason = _("Transaction has too long of a mempool chain"); return false; } } LogPrintf("Fee Calculation: Fee:%d Bytes:%u Needed:%d Tgt:%d (requested %d) Reason:\"%s\" Decay %.5f: Estimation: (%g - %g) %.2f%% %.1f/(%.1f %d mem %.1f out) Fail: (%g - %g) %.2f%% %.1f/(%.1f %d mem %.1f out)\n", nFeeRet, nBytes, nFeeNeeded, feeCalc.returnedTarget, feeCalc.desiredTarget, StringForFeeReason(feeCalc.reason), feeCalc.est.decay, feeCalc.est.pass.start, feeCalc.est.pass.end, 100 * feeCalc.est.pass.withinTarget / (feeCalc.est.pass.totalConfirmed + feeCalc.est.pass.inMempool + feeCalc.est.pass.leftMempool), feeCalc.est.pass.withinTarget, feeCalc.est.pass.totalConfirmed, feeCalc.est.pass.inMempool, feeCalc.est.pass.leftMempool, feeCalc.est.fail.start, feeCalc.est.fail.end, 100 * feeCalc.est.fail.withinTarget / (feeCalc.est.fail.totalConfirmed + feeCalc.est.fail.inMempool + feeCalc.est.fail.leftMempool), feeCalc.est.fail.withinTarget, feeCalc.est.fail.totalConfirmed, feeCalc.est.fail.inMempool, feeCalc.est.fail.leftMempool); return true; } /** * Call after CreateTransaction unless you want to abort */ bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey, CConnman* connman, CValidationState& state) { { LOCK2(cs_main, cs_wallet); LogPrintf("CommitTransaction:\n%s", wtxNew.tx->ToString()); { // Take key pair from key pool so it won't be used again reservekey.KeepKey(); // Add tx to wallet, because if it has change it's also ours, // otherwise just for transaction history. AddToWallet(wtxNew); // Notify that old coins are spent for (const CTxIn& txin : wtxNew.tx->vin) { CWalletTx &coin = mapWallet[txin.prevout.hash]; coin.BindWallet(this); NotifyTransactionChanged(this, coin.GetHash(), CT_UPDATED); } } // Track how many getdata requests our transaction gets mapRequestCount[wtxNew.GetHash()] = 0; if (fBroadcastTransactions) { // Broadcast if (!wtxNew.AcceptToMemoryPool(maxTxFee, state)) { LogPrintf("CommitTransaction(): Transaction cannot be broadcast immediately, %s\n", state.GetRejectReason()); // TODO: if we expect the failure to be long term or permanent, instead delete wtx from the wallet and return failure. } else { wtxNew.RelayWalletTransaction(connman); } } } return true; } void CWallet::ListAccountCreditDebit(const std::string& strAccount, std::list<CAccountingEntry>& entries) { CWalletDB walletdb(*dbw); return walletdb.ListAccountCreditDebit(strAccount, entries); } bool CWallet::AddAccountingEntry(const CAccountingEntry& acentry) { CWalletDB walletdb(*dbw); return AddAccountingEntry(acentry, &walletdb); } bool CWallet::AddAccountingEntry(const CAccountingEntry& acentry, CWalletDB *pwalletdb) { if (!pwalletdb->WriteAccountingEntry(++nAccountingEntryNumber, acentry)) { return false; } laccentries.push_back(acentry); CAccountingEntry & entry = laccentries.back(); wtxOrdered.insert(std::make_pair(entry.nOrderPos, TxPair((CWalletTx*)0, &entry))); return true; } CAmount CWallet::GetRequiredFee(unsigned int nTxBytes) { return std::max(minTxFee.GetFee(nTxBytes), ::minRelayTxFee.GetFee(nTxBytes)); } CAmount CWallet::GetMinimumFee(unsigned int nTxBytes, const CCoinControl& coin_control, const CTxMemPool& pool, const CBlockPolicyEstimator& estimator, FeeCalculation *feeCalc) { /* User control of how to calculate fee uses the following parameter precedence: 1. coin_control.m_feerate 2. coin_control.m_confirm_target 3. payTxFee (user-set global variable) 4. nTxConfirmTarget (user-set global variable) The first parameter that is set is used. */ CAmount fee_needed; if (coin_control.m_feerate) { // 1. fee_needed = coin_control.m_feerate->GetFee(nTxBytes); if (feeCalc) feeCalc->reason = FeeReason::PAYTXFEE; // Allow to override automatic min/max check over coin control instance if (coin_control.fOverrideFeeRate) return fee_needed; } else if (!coin_control.m_confirm_target && ::payTxFee != CFeeRate(0)) { // 3. TODO: remove magic value of 0 for global payTxFee fee_needed = ::payTxFee.GetFee(nTxBytes); if (feeCalc) feeCalc->reason = FeeReason::PAYTXFEE; } else { // 2. or 4. // We will use smart fee estimation unsigned int target = coin_control.m_confirm_target ? *coin_control.m_confirm_target : ::nTxConfirmTarget; // By default estimates are economical iff we are signaling opt-in-RBF bool conservative_estimate = !coin_control.signalRbf; // Allow to override the default fee estimate mode over the CoinControl instance if (coin_control.m_fee_mode == FeeEstimateMode::CONSERVATIVE) conservative_estimate = true; else if (coin_control.m_fee_mode == FeeEstimateMode::ECONOMICAL) conservative_estimate = false; fee_needed = estimator.estimateSmartFee(target, feeCalc, conservative_estimate).GetFee(nTxBytes); if (fee_needed == 0) { // if we don't have enough data for estimateSmartFee, then use fallbackFee fee_needed = fallbackFee.GetFee(nTxBytes); if (feeCalc) feeCalc->reason = FeeReason::FALLBACK; } // Obey mempool min fee when using smart fee estimation CAmount min_mempool_fee = pool.GetMinFee(gArgs.GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFee(nTxBytes); if (fee_needed < min_mempool_fee) { fee_needed = min_mempool_fee; if (feeCalc) feeCalc->reason = FeeReason::MEMPOOL_MIN; } } // prevent user from paying a fee below minRelayTxFee or minTxFee CAmount required_fee = GetRequiredFee(nTxBytes); if (required_fee > fee_needed) { fee_needed = required_fee; if (feeCalc) feeCalc->reason = FeeReason::REQUIRED; } // But always obey the maximum if (fee_needed > maxTxFee) { fee_needed = maxTxFee; if (feeCalc) feeCalc->reason = FeeReason::MAXTXFEE; } return fee_needed; } DBErrors CWallet::LoadWallet(bool& fFirstRunRet) { LOCK2(cs_main, cs_wallet); fFirstRunRet = false; DBErrors nLoadWalletRet = CWalletDB(*dbw,"cr+").LoadWallet(this); if (nLoadWalletRet == DB_NEED_REWRITE) { if (dbw->Rewrite("\x04pool")) { setInternalKeyPool.clear(); setExternalKeyPool.clear(); m_pool_key_to_index.clear(); // Note: can't top-up keypool here, because wallet is locked. // User will be prompted to unlock wallet the next operation // that requires a new key. } } if (nLoadWalletRet != DB_LOAD_OK) return nLoadWalletRet; fFirstRunRet = !vchDefaultKey.IsValid(); uiInterface.LoadWallet(this); return DB_LOAD_OK; } DBErrors CWallet::ZapSelectTx(std::vector<uint256>& vHashIn, std::vector<uint256>& vHashOut) { AssertLockHeld(cs_wallet); // mapWallet vchDefaultKey = CPubKey(); DBErrors nZapSelectTxRet = CWalletDB(*dbw,"cr+").ZapSelectTx(vHashIn, vHashOut); for (uint256 hash : vHashOut) mapWallet.erase(hash); if (nZapSelectTxRet == DB_NEED_REWRITE) { if (dbw->Rewrite("\x04pool")) { setInternalKeyPool.clear(); setExternalKeyPool.clear(); m_pool_key_to_index.clear(); // Note: can't top-up keypool here, because wallet is locked. // User will be prompted to unlock wallet the next operation // that requires a new key. } } if (nZapSelectTxRet != DB_LOAD_OK) return nZapSelectTxRet; MarkDirty(); return DB_LOAD_OK; } DBErrors CWallet::ZapWalletTx(std::vector<CWalletTx>& vWtx) { vchDefaultKey = CPubKey(); DBErrors nZapWalletTxRet = CWalletDB(*dbw,"cr+").ZapWalletTx(vWtx); if (nZapWalletTxRet == DB_NEED_REWRITE) { if (dbw->Rewrite("\x04pool")) { LOCK(cs_wallet); setInternalKeyPool.clear(); setExternalKeyPool.clear(); m_pool_key_to_index.clear(); // Note: can't top-up keypool here, because wallet is locked. // User will be prompted to unlock wallet the next operation // that requires a new key. } } if (nZapWalletTxRet != DB_LOAD_OK) return nZapWalletTxRet; return DB_LOAD_OK; } bool CWallet::SetAddressBook(const CTxDestination& address, const std::string& strName, const std::string& strPurpose) { bool fUpdated = false; { LOCK(cs_wallet); // mapAddressBook std::map<CTxDestination, CAddressBookData>::iterator mi = mapAddressBook.find(address); fUpdated = mi != mapAddressBook.end(); mapAddressBook[address].name = strName; if (!strPurpose.empty()) /* update purpose only if requested */ mapAddressBook[address].purpose = strPurpose; } NotifyAddressBookChanged(this, address, strName, ::IsMine(*this, address) != ISMINE_NO, strPurpose, (fUpdated ? CT_UPDATED : CT_NEW) ); if (!strPurpose.empty() && !CWalletDB(*dbw).WritePurpose(CYbtcAddress(address).ToString(), strPurpose)) return false; return CWalletDB(*dbw).WriteName(CYbtcAddress(address).ToString(), strName); } bool CWallet::DelAddressBook(const CTxDestination& address) { { LOCK(cs_wallet); // mapAddressBook // Delete destdata tuples associated with address std::string strAddress = CYbtcAddress(address).ToString(); for (const std::pair<std::string, std::string> &item : mapAddressBook[address].destdata) { CWalletDB(*dbw).EraseDestData(strAddress, item.first); } mapAddressBook.erase(address); } NotifyAddressBookChanged(this, address, "", ::IsMine(*this, address) != ISMINE_NO, "", CT_DELETED); CWalletDB(*dbw).ErasePurpose(CYbtcAddress(address).ToString()); return CWalletDB(*dbw).EraseName(CYbtcAddress(address).ToString()); } const std::string& CWallet::GetAccountName(const CScript& scriptPubKey) const { CTxDestination address; if (ExtractDestination(scriptPubKey, address) && !scriptPubKey.IsUnspendable()) { auto mi = mapAddressBook.find(address); if (mi != mapAddressBook.end()) { return mi->second.name; } } // A scriptPubKey that doesn't have an entry in the address book is // associated with the default account (""). const static std::string DEFAULT_ACCOUNT_NAME; return DEFAULT_ACCOUNT_NAME; } bool CWallet::SetDefaultKey(const CPubKey &vchPubKey) { if (!CWalletDB(*dbw).WriteDefaultKey(vchPubKey)) return false; vchDefaultKey = vchPubKey; return true; } /** * Mark old keypool keys as used, * and generate all new keys */ bool CWallet::NewKeyPool() { { LOCK(cs_wallet); CWalletDB walletdb(*dbw); for (int64_t nIndex : setInternalKeyPool) { walletdb.ErasePool(nIndex); } setInternalKeyPool.clear(); for (int64_t nIndex : setExternalKeyPool) { walletdb.ErasePool(nIndex); } setExternalKeyPool.clear(); m_pool_key_to_index.clear(); if (!TopUpKeyPool()) { return false; } LogPrintf("CWallet::NewKeyPool rewrote keypool\n"); } return true; } size_t CWallet::KeypoolCountExternalKeys() { AssertLockHeld(cs_wallet); // setExternalKeyPool return setExternalKeyPool.size(); } void CWallet::LoadKeyPool(int64_t nIndex, const CKeyPool &keypool) { AssertLockHeld(cs_wallet); if (keypool.fInternal) { setInternalKeyPool.insert(nIndex); } else { setExternalKeyPool.insert(nIndex); } m_max_keypool_index = std::max(m_max_keypool_index, nIndex); m_pool_key_to_index[keypool.vchPubKey.GetID()] = nIndex; // If no metadata exists yet, create a default with the pool key's // creation time. Note that this may be overwritten by actually // stored metadata for that key later, which is fine. CKeyID keyid = keypool.vchPubKey.GetID(); if (mapKeyMetadata.count(keyid) == 0) mapKeyMetadata[keyid] = CKeyMetadata(keypool.nTime); } bool CWallet::TopUpKeyPool(unsigned int kpSize) { { LOCK(cs_wallet); if (IsLocked()) return false; // Top up key pool unsigned int nTargetSize; if (kpSize > 0) nTargetSize = kpSize; else nTargetSize = std::max(gArgs.GetArg("-keypool", DEFAULT_KEYPOOL_SIZE), (int64_t) 0); // count amount of available keys (internal, external) // make sure the keypool of external and internal keys fits the user selected target (-keypool) int64_t missingExternal = std::max(std::max((int64_t) nTargetSize, (int64_t) 1) - (int64_t)setExternalKeyPool.size(), (int64_t) 0); int64_t missingInternal = std::max(std::max((int64_t) nTargetSize, (int64_t) 1) - (int64_t)setInternalKeyPool.size(), (int64_t) 0); if (!IsHDEnabled() || !CanSupportFeature(FEATURE_HD_SPLIT)) { // don't create extra internal keys missingInternal = 0; } bool internal = false; CWalletDB walletdb(*dbw); for (int64_t i = missingInternal + missingExternal; i--;) { if (i < missingInternal) { internal = true; } assert(m_max_keypool_index < std::numeric_limits<int64_t>::max()); // How in the hell did you use so many keys? int64_t index = ++m_max_keypool_index; CPubKey pubkey(GenerateNewKey(walletdb, internal)); if (!walletdb.WritePool(index, CKeyPool(pubkey, internal))) { throw std::runtime_error(std::string(__func__) + ": writing generated key failed"); } if (internal) { setInternalKeyPool.insert(index); } else { setExternalKeyPool.insert(index); } m_pool_key_to_index[pubkey.GetID()] = index; } if (missingInternal + missingExternal > 0) { LogPrintf("keypool added %d keys (%d internal), size=%u (%u internal)\n", missingInternal + missingExternal, missingInternal, setInternalKeyPool.size() + setExternalKeyPool.size(), setInternalKeyPool.size()); } } return true; } void CWallet::ReserveKeyFromKeyPool(int64_t& nIndex, CKeyPool& keypool, bool fRequestedInternal) { nIndex = -1; keypool.vchPubKey = CPubKey(); { LOCK(cs_wallet); if (!IsLocked()) TopUpKeyPool(); bool fReturningInternal = IsHDEnabled() && CanSupportFeature(FEATURE_HD_SPLIT) && fRequestedInternal; std::set<int64_t>& setKeyPool = fReturningInternal ? setInternalKeyPool : setExternalKeyPool; // Get the oldest key if(setKeyPool.empty()) return; CWalletDB walletdb(*dbw); auto it = setKeyPool.begin(); nIndex = *it; setKeyPool.erase(it); if (!walletdb.ReadPool(nIndex, keypool)) { throw std::runtime_error(std::string(__func__) + ": read failed"); } if (!HaveKey(keypool.vchPubKey.GetID())) { throw std::runtime_error(std::string(__func__) + ": unknown key in key pool"); } if (keypool.fInternal != fReturningInternal) { throw std::runtime_error(std::string(__func__) + ": keypool entry misclassified"); } assert(keypool.vchPubKey.IsValid()); m_pool_key_to_index.erase(keypool.vchPubKey.GetID()); LogPrintf("keypool reserve %d\n", nIndex); } } void CWallet::KeepKey(int64_t nIndex) { // Remove from key pool CWalletDB walletdb(*dbw); walletdb.ErasePool(nIndex); LogPrintf("keypool keep %d\n", nIndex); } void CWallet::ReturnKey(int64_t nIndex, bool fInternal, const CPubKey& pubkey) { // Return to key pool { LOCK(cs_wallet); if (fInternal) { setInternalKeyPool.insert(nIndex); } else { setExternalKeyPool.insert(nIndex); } m_pool_key_to_index[pubkey.GetID()] = nIndex; } LogPrintf("keypool return %d\n", nIndex); } bool CWallet::GetKeyFromPool(CPubKey& result, bool internal) { CKeyPool keypool; { LOCK(cs_wallet); int64_t nIndex = 0; ReserveKeyFromKeyPool(nIndex, keypool, internal); if (nIndex == -1) { if (IsLocked()) return false; CWalletDB walletdb(*dbw); result = GenerateNewKey(walletdb, internal); return true; } KeepKey(nIndex); result = keypool.vchPubKey; } return true; } static int64_t GetOldestKeyTimeInPool(const std::set<int64_t>& setKeyPool, CWalletDB& walletdb) { if (setKeyPool.empty()) { return GetTime(); } CKeyPool keypool; int64_t nIndex = *(setKeyPool.begin()); if (!walletdb.ReadPool(nIndex, keypool)) { throw std::runtime_error(std::string(__func__) + ": read oldest key in keypool failed"); } assert(keypool.vchPubKey.IsValid()); return keypool.nTime; } int64_t CWallet::GetOldestKeyPoolTime() { LOCK(cs_wallet); CWalletDB walletdb(*dbw); // load oldest key from keypool, get time and return int64_t oldestKey = GetOldestKeyTimeInPool(setExternalKeyPool, walletdb); if (IsHDEnabled() && CanSupportFeature(FEATURE_HD_SPLIT)) { oldestKey = std::max(GetOldestKeyTimeInPool(setInternalKeyPool, walletdb), oldestKey); } return oldestKey; } std::map<CTxDestination, CAmount> CWallet::GetAddressBalances() { std::map<CTxDestination, CAmount> balances; { LOCK(cs_wallet); for (const auto& walletEntry : mapWallet) { const CWalletTx *pcoin = &walletEntry.second; if (!pcoin->IsTrusted()) continue; if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0) continue; int nDepth = pcoin->GetDepthInMainChain(); if (nDepth < (pcoin->IsFromMe(ISMINE_ALL) ? 0 : 1)) continue; for (unsigned int i = 0; i < pcoin->tx->vout.size(); i++) { CTxDestination addr; if (!IsMine(pcoin->tx->vout[i])) continue; if(!ExtractDestination(pcoin->tx->vout[i].scriptPubKey, addr)) continue; CAmount n = IsSpent(walletEntry.first, i) ? 0 : pcoin->tx->vout[i].nValue; if (!balances.count(addr)) balances[addr] = 0; balances[addr] += n; } } } return balances; } std::set< std::set<CTxDestination> > CWallet::GetAddressGroupings() { AssertLockHeld(cs_wallet); // mapWallet std::set< std::set<CTxDestination> > groupings; std::set<CTxDestination> grouping; for (const auto& walletEntry : mapWallet) { const CWalletTx *pcoin = &walletEntry.second; if (pcoin->tx->vin.size() > 0) { bool any_mine = false; // group all input addresses with each other for (CTxIn txin : pcoin->tx->vin) { CTxDestination address; if(!IsMine(txin)) /* If this input isn't mine, ignore it */ continue; if(!ExtractDestination(mapWallet[txin.prevout.hash].tx->vout[txin.prevout.n].scriptPubKey, address)) continue; grouping.insert(address); any_mine = true; } // group change with input addresses if (any_mine) { for (CTxOut txout : pcoin->tx->vout) if (IsChange(txout)) { CTxDestination txoutAddr; if(!ExtractDestination(txout.scriptPubKey, txoutAddr)) continue; grouping.insert(txoutAddr); } } if (grouping.size() > 0) { groupings.insert(grouping); grouping.clear(); } } // group lone addrs by themselves for (const auto& txout : pcoin->tx->vout) if (IsMine(txout)) { CTxDestination address; if(!ExtractDestination(txout.scriptPubKey, address)) continue; grouping.insert(address); groupings.insert(grouping); grouping.clear(); } } std::set< std::set<CTxDestination>* > uniqueGroupings; // a set of pointers to groups of addresses std::map< CTxDestination, std::set<CTxDestination>* > setmap; // map addresses to the unique group containing it for (std::set<CTxDestination> _grouping : groupings) { // make a set of all the groups hit by this new group std::set< std::set<CTxDestination>* > hits; std::map< CTxDestination, std::set<CTxDestination>* >::iterator it; for (CTxDestination address : _grouping) if ((it = setmap.find(address)) != setmap.end()) hits.insert((*it).second); // merge all hit groups into a new single group and delete old groups std::set<CTxDestination>* merged = new std::set<CTxDestination>(_grouping); for (std::set<CTxDestination>* hit : hits) { merged->insert(hit->begin(), hit->end()); uniqueGroupings.erase(hit); delete hit; } uniqueGroupings.insert(merged); // update setmap for (CTxDestination element : *merged) setmap[element] = merged; } std::set< std::set<CTxDestination> > ret; for (std::set<CTxDestination>* uniqueGrouping : uniqueGroupings) { ret.insert(*uniqueGrouping); delete uniqueGrouping; } return ret; } std::set<CTxDestination> CWallet::GetAccountAddresses(const std::string& strAccount) const { LOCK(cs_wallet); std::set<CTxDestination> result; for (const std::pair<CTxDestination, CAddressBookData>& item : mapAddressBook) { const CTxDestination& address = item.first; const std::string& strName = item.second.name; if (strName == strAccount) result.insert(address); } return result; } bool CReserveKey::GetReservedKey(CPubKey& pubkey, bool internal) { if (nIndex == -1) { CKeyPool keypool; pwallet->ReserveKeyFromKeyPool(nIndex, keypool, internal); if (nIndex != -1) vchPubKey = keypool.vchPubKey; else { return false; } fInternal = keypool.fInternal; } assert(vchPubKey.IsValid()); pubkey = vchPubKey; return true; } void CReserveKey::KeepKey() { if (nIndex != -1) pwallet->KeepKey(nIndex); nIndex = -1; vchPubKey = CPubKey(); } void CReserveKey::ReturnKey() { if (nIndex != -1) { pwallet->ReturnKey(nIndex, fInternal, vchPubKey); } nIndex = -1; vchPubKey = CPubKey(); } void CWallet::MarkReserveKeysAsUsed(int64_t keypool_id) { AssertLockHeld(cs_wallet); bool internal = setInternalKeyPool.count(keypool_id); if (!internal) assert(setExternalKeyPool.count(keypool_id)); std::set<int64_t> *setKeyPool = internal ? &setInternalKeyPool : &setExternalKeyPool; auto it = setKeyPool->begin(); CWalletDB walletdb(*dbw); while (it != std::end(*setKeyPool)) { const int64_t& index = *(it); if (index > keypool_id) break; // set*KeyPool is ordered CKeyPool keypool; if (walletdb.ReadPool(index, keypool)) { //TODO: This should be unnecessary m_pool_key_to_index.erase(keypool.vchPubKey.GetID()); } walletdb.ErasePool(index); LogPrintf("keypool index %d removed\n", index); it = setKeyPool->erase(it); } } void CWallet::GetScriptForMining(std::shared_ptr<CReserveScript> &script) { std::shared_ptr<CReserveKey> rKey = std::make_shared<CReserveKey>(this); CPubKey pubkey; if (!rKey->GetReservedKey(pubkey)) return; script = rKey; script->reserveScript = CScript() << ToByteVector(pubkey) << OP_CHECKSIG; } void CWallet::LockCoin(const COutPoint& output) { AssertLockHeld(cs_wallet); // setLockedCoins setLockedCoins.insert(output); } void CWallet::UnlockCoin(const COutPoint& output) { AssertLockHeld(cs_wallet); // setLockedCoins setLockedCoins.erase(output); } void CWallet::UnlockAllCoins() { AssertLockHeld(cs_wallet); // setLockedCoins setLockedCoins.clear(); } bool CWallet::IsLockedCoin(uint256 hash, unsigned int n) const { AssertLockHeld(cs_wallet); // setLockedCoins COutPoint outpt(hash, n); return (setLockedCoins.count(outpt) > 0); } void CWallet::ListLockedCoins(std::vector<COutPoint>& vOutpts) const { AssertLockHeld(cs_wallet); // setLockedCoins for (std::set<COutPoint>::iterator it = setLockedCoins.begin(); it != setLockedCoins.end(); it++) { COutPoint outpt = (*it); vOutpts.push_back(outpt); } } /** @} */ // end of Actions void CWallet::GetKeyBirthTimes(std::map<CTxDestination, int64_t> &mapKeyBirth) const { AssertLockHeld(cs_wallet); // mapKeyMetadata mapKeyBirth.clear(); // get birth times for keys with metadata for (const auto& entry : mapKeyMetadata) { if (entry.second.nCreateTime) { mapKeyBirth[entry.first] = entry.second.nCreateTime; } } // map in which we'll infer heights of other keys CBlockIndex *pindexMax = chainActive[std::max(0, chainActive.Height() - 144)]; // the tip can be reorganized; use a 144-block safety margin std::map<CKeyID, CBlockIndex*> mapKeyFirstBlock; std::set<CKeyID> setKeys; GetKeys(setKeys); for (const CKeyID &keyid : setKeys) { if (mapKeyBirth.count(keyid) == 0) mapKeyFirstBlock[keyid] = pindexMax; } setKeys.clear(); // if there are no such keys, we're done if (mapKeyFirstBlock.empty()) return; // find first block that affects those keys, if there are any left std::vector<CKeyID> vAffected; for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); it++) { // iterate over all wallet transactions... const CWalletTx &wtx = (*it).second; BlockMap::const_iterator blit = mapBlockIndex.find(wtx.hashBlock); if (blit != mapBlockIndex.end() && chainActive.Contains(blit->second)) { // ... which are already in a block int nHeight = blit->second->nHeight; for (const CTxOut &txout : wtx.tx->vout) { // iterate over all their outputs CAffectedKeysVisitor(*this, vAffected).Process(txout.scriptPubKey); for (const CKeyID &keyid : vAffected) { // ... and all their affected keys std::map<CKeyID, CBlockIndex*>::iterator rit = mapKeyFirstBlock.find(keyid); if (rit != mapKeyFirstBlock.end() && nHeight < rit->second->nHeight) rit->second = blit->second; } vAffected.clear(); } } } // Extract block timestamps for those keys for (std::map<CKeyID, CBlockIndex*>::const_iterator it = mapKeyFirstBlock.begin(); it != mapKeyFirstBlock.end(); it++) mapKeyBirth[it->first] = it->second->GetBlockTime() - TIMESTAMP_WINDOW; // block times can be 2h off } /** * Compute smart timestamp for a transaction being added to the wallet. * * Logic: * - If sending a transaction, assign its timestamp to the current time. * - If receiving a transaction outside a block, assign its timestamp to the * current time. * - If receiving a block with a future timestamp, assign all its (not already * known) transactions' timestamps to the current time. * - If receiving a block with a past timestamp, before the most recent known * transaction (that we care about), assign all its (not already known) * transactions' timestamps to the same timestamp as that most-recent-known * transaction. * - If receiving a block with a past timestamp, but after the most recent known * transaction, assign all its (not already known) transactions' timestamps to * the block time. * * For more information see CWalletTx::nTimeSmart, * https://ybtctalk.org/?topic=54527, or * https://github.com/ybtc/ybtc/pull/1393. */ unsigned int CWallet::ComputeTimeSmart(const CWalletTx& wtx) const { unsigned int nTimeSmart = wtx.nTimeReceived; if (!wtx.hashUnset()) { if (mapBlockIndex.count(wtx.hashBlock)) { int64_t latestNow = wtx.nTimeReceived; int64_t latestEntry = 0; // Tolerate times up to the last timestamp in the wallet not more than 5 minutes into the future int64_t latestTolerated = latestNow + 300; const TxItems& txOrdered = wtxOrdered; for (auto it = txOrdered.rbegin(); it != txOrdered.rend(); ++it) { CWalletTx* const pwtx = it->second.first; if (pwtx == &wtx) { continue; } CAccountingEntry* const pacentry = it->second.second; int64_t nSmartTime; if (pwtx) { nSmartTime = pwtx->nTimeSmart; if (!nSmartTime) { nSmartTime = pwtx->nTimeReceived; } } else { nSmartTime = pacentry->nTime; } if (nSmartTime <= latestTolerated) { latestEntry = nSmartTime; if (nSmartTime > latestNow) { latestNow = nSmartTime; } break; } } int64_t blocktime = mapBlockIndex[wtx.hashBlock]->GetBlockTime(); nTimeSmart = std::max(latestEntry, std::min(blocktime, latestNow)); } else { LogPrintf("%s: found %s in block %s not in index\n", __func__, wtx.GetHash().ToString(), wtx.hashBlock.ToString()); } } return nTimeSmart; } bool CWallet::AddDestData(const CTxDestination &dest, const std::string &key, const std::string &value) { if (boost::get<CNoDestination>(&dest)) return false; mapAddressBook[dest].destdata.insert(std::make_pair(key, value)); return CWalletDB(*dbw).WriteDestData(CYbtcAddress(dest).ToString(), key, value); } bool CWallet::EraseDestData(const CTxDestination &dest, const std::string &key) { if (!mapAddressBook[dest].destdata.erase(key)) return false; return CWalletDB(*dbw).EraseDestData(CYbtcAddress(dest).ToString(), key); } bool CWallet::LoadDestData(const CTxDestination &dest, const std::string &key, const std::string &value) { mapAddressBook[dest].destdata.insert(std::make_pair(key, value)); return true; } bool CWallet::GetDestData(const CTxDestination &dest, const std::string &key, std::string *value) const { std::map<CTxDestination, CAddressBookData>::const_iterator i = mapAddressBook.find(dest); if(i != mapAddressBook.end()) { CAddressBookData::StringMap::const_iterator j = i->second.destdata.find(key); if(j != i->second.destdata.end()) { if(value) *value = j->second; return true; } } return false; } std::vector<std::string> CWallet::GetDestValues(const std::string& prefix) const { LOCK(cs_wallet); std::vector<std::string> values; for (const auto& address : mapAddressBook) { for (const auto& data : address.second.destdata) { if (!data.first.compare(0, prefix.size(), prefix)) { values.emplace_back(data.second); } } } return values; } std::string CWallet::GetWalletHelpString(bool showDebug) { std::string strUsage = HelpMessageGroup(_("Wallet options:")); strUsage += HelpMessageOpt("-disablewallet", _("Do not load the wallet and disable wallet RPC calls")); strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), DEFAULT_KEYPOOL_SIZE)); strUsage += HelpMessageOpt("-fallbackfee=<amt>", strprintf(_("A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s)"), CURRENCY_UNIT, FormatMoney(DEFAULT_FALLBACK_FEE))); strUsage += HelpMessageOpt("-discardfee=<amt>", strprintf(_("The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). " "Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target"), CURRENCY_UNIT, FormatMoney(DEFAULT_DISCARD_FEE))); strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s)"), CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MINFEE))); strUsage += HelpMessageOpt("-paytxfee=<amt>", strprintf(_("Fee (in %s/kB) to add to transactions you send (default: %s)"), CURRENCY_UNIT, FormatMoney(payTxFee.GetFeePerK()))); strUsage += HelpMessageOpt("-rescan", _("Rescan the block chain for missing wallet transactions on startup")); strUsage += HelpMessageOpt("-salvagewallet", _("Attempt to recover private keys from a corrupt wallet on startup")); strUsage += HelpMessageOpt("-spendzeroconfchange", strprintf(_("Spend unconfirmed change when sending transactions (default: %u)"), DEFAULT_SPEND_ZEROCONF_CHANGE)); strUsage += HelpMessageOpt("-txconfirmtarget=<n>", strprintf(_("If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u)"), DEFAULT_TX_CONFIRM_TARGET)); strUsage += HelpMessageOpt("-usehd", _("Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start") + " " + strprintf(_("(default: %u)"), DEFAULT_USE_HD_WALLET)); strUsage += HelpMessageOpt("-walletrbf", strprintf(_("Send transactions with full-RBF opt-in enabled (default: %u)"), DEFAULT_WALLET_RBF)); strUsage += HelpMessageOpt("-upgradewallet", _("Upgrade wallet to latest format on startup")); strUsage += HelpMessageOpt("-wallet=<file>", _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), DEFAULT_WALLET_DAT)); strUsage += HelpMessageOpt("-walletbroadcast", _("Make the wallet broadcast transactions") + " " + strprintf(_("(default: %u)"), DEFAULT_WALLETBROADCAST)); strUsage += HelpMessageOpt("-walletnotify=<cmd>", _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)")); strUsage += HelpMessageOpt("-zapwallettxes=<mode>", _("Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup") + " " + _("(1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data)")); if (showDebug) { strUsage += HelpMessageGroup(_("Wallet debugging/testing options:")); strUsage += HelpMessageOpt("-dblogsize=<n>", strprintf("Flush wallet database activity from memory to disk log every <n> megabytes (default: %u)", DEFAULT_WALLET_DBLOGSIZE)); strUsage += HelpMessageOpt("-flushwallet", strprintf("Run a thread to flush wallet periodically (default: %u)", DEFAULT_FLUSHWALLET)); strUsage += HelpMessageOpt("-privdb", strprintf("Sets the DB_PRIVATE flag in the wallet db environment (default: %u)", DEFAULT_WALLET_PRIVDB)); strUsage += HelpMessageOpt("-walletrejectlongchains", strprintf(_("Wallet will not create transactions that violate mempool chain limits (default: %u)"), DEFAULT_WALLET_REJECT_LONG_CHAINS)); } return strUsage; } CWallet* CWallet::CreateWalletFromFile(const std::string walletFile) { // needed to restore wallet transaction meta data after -zapwallettxes std::vector<CWalletTx> vWtx; if (gArgs.GetBoolArg("-zapwallettxes", false)) { uiInterface.InitMessage(_("Zapping all transactions from wallet...")); std::unique_ptr<CWalletDBWrapper> dbw(new CWalletDBWrapper(&bitdb, walletFile)); CWallet *tempWallet = new CWallet(std::move(dbw)); DBErrors nZapWalletRet = tempWallet->ZapWalletTx(vWtx); if (nZapWalletRet != DB_LOAD_OK) { InitError(strprintf(_("Error loading %s: Wallet corrupted"), walletFile)); return nullptr; } delete tempWallet; tempWallet = nullptr; } uiInterface.InitMessage(_("Loading wallet...")); int64_t nStart = GetTimeMillis(); bool fFirstRun = true; std::unique_ptr<CWalletDBWrapper> dbw(new CWalletDBWrapper(&bitdb, walletFile)); CWallet *walletInstance = new CWallet(std::move(dbw)); DBErrors nLoadWalletRet = walletInstance->LoadWallet(fFirstRun); if (nLoadWalletRet != DB_LOAD_OK) { if (nLoadWalletRet == DB_CORRUPT) { InitError(strprintf(_("Error loading %s: Wallet corrupted"), walletFile)); return nullptr; } else if (nLoadWalletRet == DB_NONCRITICAL_ERROR) { InitWarning(strprintf(_("Error reading %s! All keys read correctly, but transaction data" " or address book entries might be missing or incorrect."), walletFile)); } else if (nLoadWalletRet == DB_TOO_NEW) { InitError(strprintf(_("Error loading %s: Wallet requires newer version of %s"), walletFile, _(PACKAGE_NAME))); return nullptr; } else if (nLoadWalletRet == DB_NEED_REWRITE) { InitError(strprintf(_("Wallet needed to be rewritten: restart %s to complete"), _(PACKAGE_NAME))); return nullptr; } else { InitError(strprintf(_("Error loading %s"), walletFile)); return nullptr; } } if (gArgs.GetBoolArg("-upgradewallet", fFirstRun)) { int nMaxVersion = gArgs.GetArg("-upgradewallet", 0); if (nMaxVersion == 0) // the -upgradewallet without argument case { LogPrintf("Performing wallet upgrade to %i\n", FEATURE_LATEST); nMaxVersion = CLIENT_VERSION; walletInstance->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately } else LogPrintf("Allowing wallet upgrade up to %i\n", nMaxVersion); if (nMaxVersion < walletInstance->GetVersion()) { InitError(_("Cannot downgrade wallet")); return nullptr; } walletInstance->SetMaxVersion(nMaxVersion); } if (fFirstRun) { // Create new keyUser and set as default key if (gArgs.GetBoolArg("-usehd", DEFAULT_USE_HD_WALLET) && !walletInstance->IsHDEnabled()) { // ensure this wallet.dat can only be opened by clients supporting HD with chain split walletInstance->SetMinVersion(FEATURE_HD_SPLIT); // generate a new master key CPubKey masterPubKey = walletInstance->GenerateNewHDMasterKey(); if (!walletInstance->SetHDMasterKey(masterPubKey)) throw std::runtime_error(std::string(__func__) + ": Storing master key failed"); } CPubKey newDefaultKey; if (walletInstance->GetKeyFromPool(newDefaultKey, false)) { walletInstance->SetDefaultKey(newDefaultKey); if (!walletInstance->SetAddressBook(walletInstance->vchDefaultKey.GetID(), "", "receive")) { InitError(_("Cannot write default address") += "\n"); return nullptr; } } walletInstance->SetBestChain(chainActive.GetLocator()); } else if (gArgs.IsArgSet("-usehd")) { bool useHD = gArgs.GetBoolArg("-usehd", DEFAULT_USE_HD_WALLET); if (walletInstance->IsHDEnabled() && !useHD) { InitError(strprintf(_("Error loading %s: You can't disable HD on an already existing HD wallet"), walletFile)); return nullptr; } if (!walletInstance->IsHDEnabled() && useHD) { InitError(strprintf(_("Error loading %s: You can't enable HD on an already existing non-HD wallet"), walletFile)); return nullptr; } } LogPrintf(" wallet %15dms\n", GetTimeMillis() - nStart); RegisterValidationInterface(walletInstance); // Try to top up keypool. No-op if the wallet is locked. walletInstance->TopUpKeyPool(); CBlockIndex *pindexRescan = chainActive.Genesis(); if (!gArgs.GetBoolArg("-rescan", false)) { CWalletDB walletdb(*walletInstance->dbw); CBlockLocator locator; if (walletdb.ReadBestBlock(locator)) pindexRescan = FindForkInGlobalIndex(chainActive, locator); } if (chainActive.Tip() && chainActive.Tip() != pindexRescan) { //We can't rescan beyond non-pruned blocks, stop and throw an error //this might happen if a user uses an old wallet within a pruned node // or if he ran -disablewallet for a longer time, then decided to re-enable if (fPruneMode) { CBlockIndex *block = chainActive.Tip(); while (block && block->pprev && (block->pprev->nStatus & BLOCK_HAVE_DATA) && block->pprev->nTx > 0 && pindexRescan != block) block = block->pprev; if (pindexRescan != block) { InitError(_("Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node)")); return nullptr; } } uiInterface.InitMessage(_("Rescanning...")); LogPrintf("Rescanning last %i blocks (from block %i)...\n", chainActive.Height() - pindexRescan->nHeight, pindexRescan->nHeight); // No need to read and scan block if block was created before // our wallet birthday (as adjusted for block time variability) while (pindexRescan && walletInstance->nTimeFirstKey && (pindexRescan->GetBlockTime() < (walletInstance->nTimeFirstKey - TIMESTAMP_WINDOW))) { pindexRescan = chainActive.Next(pindexRescan); } nStart = GetTimeMillis(); walletInstance->ScanForWalletTransactions(pindexRescan, true); LogPrintf(" rescan %15dms\n", GetTimeMillis() - nStart); walletInstance->SetBestChain(chainActive.GetLocator()); walletInstance->dbw->IncrementUpdateCounter(); // Restore wallet transaction metadata after -zapwallettxes=1 if (gArgs.GetBoolArg("-zapwallettxes", false) && gArgs.GetArg("-zapwallettxes", "1") != "2") { CWalletDB walletdb(*walletInstance->dbw); for (const CWalletTx& wtxOld : vWtx) { uint256 hash = wtxOld.GetHash(); std::map<uint256, CWalletTx>::iterator mi = walletInstance->mapWallet.find(hash); if (mi != walletInstance->mapWallet.end()) { const CWalletTx* copyFrom = &wtxOld; CWalletTx* copyTo = &mi->second; copyTo->mapValue = copyFrom->mapValue; copyTo->vOrderForm = copyFrom->vOrderForm; copyTo->nTimeReceived = copyFrom->nTimeReceived; copyTo->nTimeSmart = copyFrom->nTimeSmart; copyTo->fFromMe = copyFrom->fFromMe; copyTo->strFromAccount = copyFrom->strFromAccount; copyTo->nOrderPos = copyFrom->nOrderPos; walletdb.WriteTx(*copyTo); } } } } walletInstance->SetBroadcastTransactions(gArgs.GetBoolArg("-walletbroadcast", DEFAULT_WALLETBROADCAST)); { LOCK(walletInstance->cs_wallet); LogPrintf("setKeyPool.size() = %u\n", walletInstance->GetKeyPoolSize()); LogPrintf("mapWallet.size() = %u\n", walletInstance->mapWallet.size()); LogPrintf("mapAddressBook.size() = %u\n", walletInstance->mapAddressBook.size()); } return walletInstance; } bool CWallet::InitLoadWallet() { if (gArgs.GetBoolArg("-disablewallet", DEFAULT_DISABLE_WALLET)) { LogPrintf("Wallet disabled!\n"); return true; } for (const std::string& walletFile : gArgs.GetArgs("-wallet")) { CWallet * const pwallet = CreateWalletFromFile(walletFile); if (!pwallet) { return false; } vpwallets.push_back(pwallet); } return true; } std::atomic<bool> CWallet::fFlushScheduled(false); void CWallet::postInitProcess(CScheduler& scheduler) { // Add wallet transactions that aren't already in a block to mempool // Do this here as mempool requires genesis block to be loaded ReacceptWalletTransactions(); // Run a thread to flush wallet periodically if (!CWallet::fFlushScheduled.exchange(true)) { scheduler.scheduleEvery(MaybeCompactWalletDB, 500); } } bool CWallet::ParameterInteraction() { gArgs.SoftSetArg("-wallet", DEFAULT_WALLET_DAT); const bool is_multiwallet = gArgs.GetArgs("-wallet").size() > 1; if (gArgs.GetBoolArg("-disablewallet", DEFAULT_DISABLE_WALLET)) return true; if (gArgs.GetBoolArg("-blocksonly", DEFAULT_BLOCKSONLY) && gArgs.SoftSetBoolArg("-walletbroadcast", false)) { LogPrintf("%s: parameter interaction: -blocksonly=1 -> setting -walletbroadcast=0\n", __func__); } if (gArgs.GetBoolArg("-salvagewallet", false)) { if (is_multiwallet) { return InitError(strprintf("%s is only allowed with a single wallet file", "-salvagewallet")); } // Rewrite just private keys: rescan to find transactions if (gArgs.SoftSetBoolArg("-rescan", true)) { LogPrintf("%s: parameter interaction: -salvagewallet=1 -> setting -rescan=1\n", __func__); } } int zapwallettxes = gArgs.GetArg("-zapwallettxes", 0); // -zapwallettxes implies dropping the mempool on startup if (zapwallettxes != 0 && gArgs.SoftSetBoolArg("-persistmempool", false)) { LogPrintf("%s: parameter interaction: -zapwallettxes=%s -> setting -persistmempool=0\n", __func__, zapwallettxes); } // -zapwallettxes implies a rescan if (zapwallettxes != 0) { if (is_multiwallet) { return InitError(strprintf("%s is only allowed with a single wallet file", "-zapwallettxes")); } if (gArgs.SoftSetBoolArg("-rescan", true)) { LogPrintf("%s: parameter interaction: -zapwallettxes=%s -> setting -rescan=1\n", __func__, zapwallettxes); } } if (is_multiwallet) { if (gArgs.GetBoolArg("-upgradewallet", false)) { return InitError(strprintf("%s is only allowed with a single wallet file", "-upgradewallet")); } } if (gArgs.GetBoolArg("-sysperms", false)) return InitError("-sysperms is not allowed in combination with enabled wallet functionality"); if (gArgs.GetArg("-prune", 0) && gArgs.GetBoolArg("-rescan", false)) return InitError(_("Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again.")); if (::minRelayTxFee.GetFeePerK() > HIGH_TX_FEE_PER_KB) InitWarning(AmountHighWarn("-minrelaytxfee") + " " + _("The wallet will avoid paying less than the minimum relay fee.")); if (gArgs.IsArgSet("-mintxfee")) { CAmount n = 0; if (!ParseMoney(gArgs.GetArg("-mintxfee", ""), n) || 0 == n) return InitError(AmountErrMsg("mintxfee", gArgs.GetArg("-mintxfee", ""))); if (n > HIGH_TX_FEE_PER_KB) InitWarning(AmountHighWarn("-mintxfee") + " " + _("This is the minimum transaction fee you pay on every transaction.")); CWallet::minTxFee = CFeeRate(n); } if (gArgs.IsArgSet("-fallbackfee")) { CAmount nFeePerK = 0; if (!ParseMoney(gArgs.GetArg("-fallbackfee", ""), nFeePerK)) return InitError(strprintf(_("Invalid amount for -fallbackfee=<amount>: '%s'"), gArgs.GetArg("-fallbackfee", ""))); if (nFeePerK > HIGH_TX_FEE_PER_KB) InitWarning(AmountHighWarn("-fallbackfee") + " " + _("This is the transaction fee you may pay when fee estimates are not available.")); CWallet::fallbackFee = CFeeRate(nFeePerK); } if (gArgs.IsArgSet("-discardfee")) { CAmount nFeePerK = 0; if (!ParseMoney(gArgs.GetArg("-discardfee", ""), nFeePerK)) return InitError(strprintf(_("Invalid amount for -discardfee=<amount>: '%s'"), gArgs.GetArg("-discardfee", ""))); if (nFeePerK > HIGH_TX_FEE_PER_KB) InitWarning(AmountHighWarn("-discardfee") + " " + _("This is the transaction fee you may discard if change is smaller than dust at this level")); CWallet::m_discard_rate = CFeeRate(nFeePerK); } if (gArgs.IsArgSet("-paytxfee")) { CAmount nFeePerK = 0; if (!ParseMoney(gArgs.GetArg("-paytxfee", ""), nFeePerK)) return InitError(AmountErrMsg("paytxfee", gArgs.GetArg("-paytxfee", ""))); if (nFeePerK > HIGH_TX_FEE_PER_KB) InitWarning(AmountHighWarn("-paytxfee") + " " + _("This is the transaction fee you will pay if you send a transaction.")); payTxFee = CFeeRate(nFeePerK, 1000); if (payTxFee < ::minRelayTxFee) { return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s)"), gArgs.GetArg("-paytxfee", ""), ::minRelayTxFee.ToString())); } } if (gArgs.IsArgSet("-maxtxfee")) { CAmount nMaxFee = 0; if (!ParseMoney(gArgs.GetArg("-maxtxfee", ""), nMaxFee)) return InitError(AmountErrMsg("maxtxfee", gArgs.GetArg("-maxtxfee", ""))); if (nMaxFee > HIGH_MAX_TX_FEE) InitWarning(_("-maxtxfee is set very high! Fees this large could be paid on a single transaction.")); maxTxFee = nMaxFee; if (CFeeRate(maxTxFee, 1000) < ::minRelayTxFee) { return InitError(strprintf(_("Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)"), gArgs.GetArg("-maxtxfee", ""), ::minRelayTxFee.ToString())); } } nTxConfirmTarget = gArgs.GetArg("-txconfirmtarget", DEFAULT_TX_CONFIRM_TARGET); bSpendZeroConfChange = gArgs.GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE); fWalletRbf = gArgs.GetBoolArg("-walletrbf", DEFAULT_WALLET_RBF); return true; } bool CWallet::BackupWallet(const std::string& strDest) { return dbw->Backup(strDest); } CKeyPool::CKeyPool() { nTime = GetTime(); fInternal = false; } CKeyPool::CKeyPool(const CPubKey& vchPubKeyIn, bool internalIn) { nTime = GetTime(); vchPubKey = vchPubKeyIn; fInternal = internalIn; } CWalletKey::CWalletKey(int64_t nExpires) { nTimeCreated = (nExpires ? GetTime() : 0); nTimeExpires = nExpires; } void CMerkleTx::SetMerkleBranch(const CBlockIndex* pindex, int posInBlock) { // Update the tx's hashBlock hashBlock = pindex->GetBlockHash(); // set the position of the transaction in the block nIndex = posInBlock; } int CMerkleTx::GetDepthInMainChain(const CBlockIndex* &pindexRet) const { if (hashUnset()) return 0; AssertLockHeld(cs_main); // Find the block it claims to be in BlockMap::iterator mi = mapBlockIndex.find(hashBlock); if (mi == mapBlockIndex.end()) return 0; CBlockIndex* pindex = (*mi).second; if (!pindex || !chainActive.Contains(pindex)) return 0; pindexRet = pindex; return ((nIndex == -1) ? (-1) : 1) * (chainActive.Height() - pindex->nHeight + 1); } int CMerkleTx::GetBlocksToMaturity() const { if (!IsCoinBase()) return 0; return std::max(0, (COINBASE_MATURITY+1) - GetDepthInMainChain()); } bool CMerkleTx::AcceptToMemoryPool(const CAmount& nAbsurdFee, CValidationState& state) { return ::AcceptToMemoryPool(mempool, state, tx, true, nullptr, nullptr, false, nAbsurdFee); }
[ "jontera@gmail.com" ]
jontera@gmail.com
68276a4a93f232b723d651722f39f52c7b2e2079
46f7cb7150697037d4b5f434dde423a1eeb8e422
/ncnn-20210525-full-source/tests/test_gemm.cpp
455e5f142a14a8b052972f8101e3bfde76cb4f2a
[ "BSD-3-Clause", "Zlib", "BSD-2-Clause", "MIT" ]
permissive
MirrorYuChen/ncnn_example
d856f732e031b0e069fed7e30759e1c6c7947aaf
82a84d79c96e908f46b7e7cac6c8365c83b0f896
refs/heads/master
2023-08-18T06:31:06.113775
2022-05-14T17:38:01
2022-05-14T17:38:01
183,336,202
362
108
MIT
2022-06-22T04:17:14
2019-04-25T01:53:37
C++
UTF-8
C++
false
false
6,095
cpp
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at // // https://opensource.org/licenses/BSD-3-Clause // // Unless required by applicable law or agreed to in writing, software distributed // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License. #include "layer/gemm.h" #include "testutil.h" static int test_gemm(int M, int N, int K, float alpha, int transA, int transB) { ncnn::ParamDict pd; pd.set(0, alpha); pd.set(1, 1.f); // beta pd.set(2, transA); pd.set(3, transB); std::vector<ncnn::Mat> weights(0); std::vector<ncnn::Mat> a(2); a[0] = transA ? ncnn::Mat(M, K) : ncnn::Mat(K, M); a[1] = transB ? ncnn::Mat(K, N) : ncnn::Mat(N, K); Randomize(a[0]); Randomize(a[1]); int ret = test_layer<ncnn::Gemm>("Gemm", pd, weights, a); if (ret != 0) { fprintf(stderr, "test_gemm failed M=%d N=%d K=%d alpha=%f transA=%d transB=%d\n", M, N, K, alpha, transA, transB); } return ret; } static int test_gemm_bias(int M, int N, int K, const ncnn::Mat& C, float alpha, float beta, int transA, int transB) { ncnn::ParamDict pd; pd.set(0, alpha); pd.set(1, beta); pd.set(2, transA); pd.set(3, transB); std::vector<ncnn::Mat> weights(0); std::vector<ncnn::Mat> a(3); a[0] = transA ? ncnn::Mat(M, K) : ncnn::Mat(K, M); a[1] = transB ? ncnn::Mat(K, N) : ncnn::Mat(N, K); a[2] = C; Randomize(a[0]); Randomize(a[1]); int ret = test_layer<ncnn::Gemm>("Gemm", pd, weights, a); if (ret != 0) { fprintf(stderr, "test_gemm_bias failed M=%d N=%d K=%d C.dims=%d C=(%d %d %d) alpha=%f transA=%d transB=%d\n", M, N, K, C.dims, C.w, C.h, C.c, alpha, transA, transB); } return ret; } static int test_gemm_0() { return 0 || test_gemm(13, 14, 15, 0.1f, 0, 0) || test_gemm(13, 14, 15, 0.3f, 1, 0) || test_gemm(13, 14, 15, -0.4f, 0, 1) || test_gemm(13, 14, 15, 1.7f, 1, 1) || test_gemm(16, 24, 15, 0.1f, 0, 0) || test_gemm(16, 24, 15, 0.3f, 1, 0) || test_gemm(16, 24, 15, -0.4f, 0, 1) || test_gemm(16, 24, 15, 1.7f, 1, 1); } static int test_gemm_1() { return 0 || test_gemm_bias(13, 14, 15, RandomMat(1), 0.1f, 0.2f, 0, 0) || test_gemm_bias(13, 14, 15, RandomMat(1), 0.4f, -1.2f, 1, 0) || test_gemm_bias(13, 14, 15, RandomMat(1), -0.3f, 3.f, 0, 1) || test_gemm_bias(13, 14, 15, RandomMat(1), 1.7f, 1.f, 1, 1) || test_gemm_bias(16, 24, 15, RandomMat(1), 0.1f, 0.2f, 0, 0) || test_gemm_bias(16, 24, 15, RandomMat(1), 0.4f, -1.2f, 1, 0) || test_gemm_bias(16, 24, 15, RandomMat(1), -0.3f, 3.f, 0, 1) || test_gemm_bias(16, 24, 15, RandomMat(1), 1.7f, 1.f, 1, 1); } static int test_gemm_2() { return 0 || test_gemm_bias(13, 14, 15, RandomMat(13), 0.1f, 1.f, 0, 0) || test_gemm_bias(13, 14, 15, RandomMat(13), 0.4f, 2.f, 1, 0) || test_gemm_bias(13, 14, 15, RandomMat(13), -0.3f, 0.11f, 0, 1) || test_gemm_bias(13, 14, 15, RandomMat(13), 1.7f, -20.f, 1, 1) || test_gemm_bias(16, 24, 15, RandomMat(13), 0.1f, 1.f, 0, 0) || test_gemm_bias(16, 24, 15, RandomMat(13), 0.4f, 2.f, 1, 0) || test_gemm_bias(16, 24, 15, RandomMat(13), -0.3f, 0.11f, 0, 1) || test_gemm_bias(16, 24, 15, RandomMat(13), 1.7f, -20.f, 1, 1); } static int test_gemm_3() { return 0 || test_gemm_bias(13, 14, 15, RandomMat(13, 1), 0.1f, 4.f, 0, 0) || test_gemm_bias(13, 14, 15, RandomMat(13, 1), 0.4f, 1.f, 1, 0) || test_gemm_bias(13, 14, 15, RandomMat(13, 1), -0.3f, -0.01f, 0, 1) || test_gemm_bias(13, 14, 15, RandomMat(13, 1), 1.7f, 0.3f, 1, 1) || test_gemm_bias(16, 24, 15, RandomMat(13, 1), 0.1f, 4.f, 0, 0) || test_gemm_bias(16, 24, 15, RandomMat(13, 1), 0.4f, 1.f, 1, 0) || test_gemm_bias(16, 24, 15, RandomMat(13, 1), -0.3f, -0.01f, 0, 1) || test_gemm_bias(16, 24, 15, RandomMat(13, 1), 1.7f, 0.3f, 1, 1); } static int test_gemm_4() { return 0 || test_gemm_bias(13, 14, 15, RandomMat(13, 14), 0.1f, 6.f, 0, 0) || test_gemm_bias(13, 14, 15, RandomMat(13, 14), 0.4f, 1.22f, 1, 0) || test_gemm_bias(13, 14, 15, RandomMat(13, 14), -0.3f, 1.01f, 0, 1) || test_gemm_bias(13, 14, 15, RandomMat(13, 14), 1.7f, 0.3f, 1, 1) || test_gemm_bias(16, 24, 15, RandomMat(13, 14), 0.1f, 6.f, 0, 0) || test_gemm_bias(16, 24, 15, RandomMat(13, 14), 0.4f, 1.22f, 1, 0) || test_gemm_bias(16, 24, 15, RandomMat(13, 14), -0.3f, 1.01f, 0, 1) || test_gemm_bias(16, 24, 15, RandomMat(13, 14), 1.7f, 0.3f, 1, 1); } static int test_gemm_5() { return 0 || test_gemm_bias(13, 14, 15, RandomMat(1, 14), 0.1f, 0.4f, 0, 0) || test_gemm_bias(13, 14, 15, RandomMat(1, 14), 0.4f, -1.f, 1, 0) || test_gemm_bias(13, 14, 15, RandomMat(1, 14), -0.3f, -0.21f, 0, 1) || test_gemm_bias(13, 14, 15, RandomMat(1, 14), 1.7f, 1.3f, 1, 1) || test_gemm_bias(16, 24, 15, RandomMat(1, 14), 0.1f, 0.4f, 0, 0) || test_gemm_bias(16, 24, 15, RandomMat(1, 14), 0.4f, -1.f, 1, 0) || test_gemm_bias(16, 24, 15, RandomMat(1, 14), -0.3f, -0.21f, 0, 1) || test_gemm_bias(16, 24, 15, RandomMat(1, 14), 1.7f, 1.3f, 1, 1); } int main() { SRAND(7767517); return 0 || test_gemm_0() || test_gemm_1() || test_gemm_2() || test_gemm_3() || test_gemm_4() || test_gemm_5(); }
[ "2458006366@qq.com" ]
2458006366@qq.com
b993c88ed227da73574456c0079f2cdd86c45683
804c6bc7e00c65111cad5da729f40a03c0d54ff9
/src/script.h
0b4ece2c181df6a6a5cee5b932b4e96d42cc20fe
[ "MIT" ]
permissive
jaez/finna-be-octo-robot
3b619e0258be7c5eaaa5e7f1b7036bbc3dc26461
36ca87925c0f59b630ec0855296360df98fd8680
refs/heads/master
2016-08-06T04:24:57.000447
2014-07-10T15:56:32
2014-07-10T15:56:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,897
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Dgdollartest2 developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef H_DGDOLLARTEST2_SCRIPT #define H_DGDOLLARTEST2_SCRIPT #include <string> #include <vector> #include <boost/foreach.hpp> #include <boost/variant.hpp> #include "keystore.h" #include "bignum.h" class CCoins; class CTransaction; static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes /** Signature hash types/flags */ enum { SIGHASH_ALL = 1, SIGHASH_NONE = 2, SIGHASH_SINGLE = 3, SIGHASH_ANYONECANPAY = 0x80, }; /** Script verification flags */ enum { SCRIPT_VERIFY_NONE = 0, SCRIPT_VERIFY_P2SH = (1U << 0), SCRIPT_VERIFY_STRICTENC = (1U << 1), SCRIPT_VERIFY_NOCACHE = (1U << 2), }; enum txnouttype { TX_NONSTANDARD, // 'standard' transaction types: TX_PUBKEY, TX_PUBKEYHASH, TX_SCRIPTHASH, TX_MULTISIG, }; class CNoDestination { public: friend bool operator==(const CNoDestination &a, const CNoDestination &b) { return true; } friend bool operator<(const CNoDestination &a, const CNoDestination &b) { return true; } }; /** A txout script template with a specific destination. It is either: * * CNoDestination: no destination set * * CKeyID: TX_PUBKEYHASH destination * * CScriptID: TX_SCRIPTHASH destination * A CTxDestination is the internal data type encoded in a CDgdollartest2Address */ typedef boost::variant<CNoDestination, CKeyID, CScriptID> CTxDestination; const char* GetTxnOutputType(txnouttype t); /** Script opcodes */ enum opcodetype { // push value OP_0 = 0x00, OP_FALSE = OP_0, OP_PUSHDATA1 = 0x4c, OP_PUSHDATA2 = 0x4d, OP_PUSHDATA4 = 0x4e, OP_1NEGATE = 0x4f, OP_RESERVED = 0x50, OP_1 = 0x51, OP_TRUE=OP_1, OP_2 = 0x52, OP_3 = 0x53, OP_4 = 0x54, OP_5 = 0x55, OP_6 = 0x56, OP_7 = 0x57, OP_8 = 0x58, OP_9 = 0x59, OP_10 = 0x5a, OP_11 = 0x5b, OP_12 = 0x5c, OP_13 = 0x5d, OP_14 = 0x5e, OP_15 = 0x5f, OP_16 = 0x60, // control OP_NOP = 0x61, OP_VER = 0x62, OP_IF = 0x63, OP_NOTIF = 0x64, OP_VERIF = 0x65, OP_VERNOTIF = 0x66, OP_ELSE = 0x67, OP_ENDIF = 0x68, OP_VERIFY = 0x69, OP_RETURN = 0x6a, // stack ops OP_TOALTSTACK = 0x6b, OP_FROMALTSTACK = 0x6c, OP_2DROP = 0x6d, OP_2DUP = 0x6e, OP_3DUP = 0x6f, OP_2OVER = 0x70, OP_2ROT = 0x71, OP_2SWAP = 0x72, OP_IFDUP = 0x73, OP_DEPTH = 0x74, OP_DROP = 0x75, OP_DUP = 0x76, OP_NIP = 0x77, OP_OVER = 0x78, OP_PICK = 0x79, OP_ROLL = 0x7a, OP_ROT = 0x7b, OP_SWAP = 0x7c, OP_TUCK = 0x7d, // splice ops OP_CAT = 0x7e, OP_SUBSTR = 0x7f, OP_LEFT = 0x80, OP_RIGHT = 0x81, OP_SIZE = 0x82, // bit logic OP_INVERT = 0x83, OP_AND = 0x84, OP_OR = 0x85, OP_XOR = 0x86, OP_EQUAL = 0x87, OP_EQUALVERIFY = 0x88, OP_RESERVED1 = 0x89, OP_RESERVED2 = 0x8a, // numeric OP_1ADD = 0x8b, OP_1SUB = 0x8c, OP_2MUL = 0x8d, OP_2DIV = 0x8e, OP_NEGATE = 0x8f, OP_ABS = 0x90, OP_NOT = 0x91, OP_0NOTEQUAL = 0x92, OP_ADD = 0x93, OP_SUB = 0x94, OP_MUL = 0x95, OP_DIV = 0x96, OP_MOD = 0x97, OP_LSHIFT = 0x98, OP_RSHIFT = 0x99, OP_BOOLAND = 0x9a, OP_BOOLOR = 0x9b, OP_NUMEQUAL = 0x9c, OP_NUMEQUALVERIFY = 0x9d, OP_NUMNOTEQUAL = 0x9e, OP_LESSTHAN = 0x9f, OP_GREATERTHAN = 0xa0, OP_LESSTHANOREQUAL = 0xa1, OP_GREATERTHANOREQUAL = 0xa2, OP_MIN = 0xa3, OP_MAX = 0xa4, OP_WITHIN = 0xa5, // crypto OP_RIPEMD160 = 0xa6, OP_SHA1 = 0xa7, OP_SHA256 = 0xa8, OP_HASH160 = 0xa9, OP_HASH256 = 0xaa, OP_CODESEPARATOR = 0xab, OP_CHECKSIG = 0xac, OP_CHECKSIGVERIFY = 0xad, OP_CHECKMULTISIG = 0xae, OP_CHECKMULTISIGVERIFY = 0xaf, // expansion OP_NOP1 = 0xb0, OP_NOP2 = 0xb1, OP_NOP3 = 0xb2, OP_NOP4 = 0xb3, OP_NOP5 = 0xb4, OP_NOP6 = 0xb5, OP_NOP7 = 0xb6, OP_NOP8 = 0xb7, OP_NOP9 = 0xb8, OP_NOP10 = 0xb9, // template matching params OP_SMALLINTEGER = 0xfa, OP_PUBKEYS = 0xfb, OP_PUBKEYHASH = 0xfd, OP_PUBKEY = 0xfe, OP_INVALIDOPCODE = 0xff, }; const char* GetOpName(opcodetype opcode); inline std::string ValueString(const std::vector<unsigned char>& vch) { if (vch.size() <= 4) return strprintf("%d", CBigNum(vch).getint()); else return HexStr(vch); } inline std::string StackString(const std::vector<std::vector<unsigned char> >& vStack) { std::string str; BOOST_FOREACH(const std::vector<unsigned char>& vch, vStack) { if (!str.empty()) str += " "; str += ValueString(vch); } return str; } /** Serialized script, used inside transaction inputs and outputs */ class CScript : public std::vector<unsigned char> { protected: CScript& push_int64(int64 n) { if (n == -1 || (n >= 1 && n <= 16)) { push_back(n + (OP_1 - 1)); } else { CBigNum bn(n); *this << bn.getvch(); } return *this; } CScript& push_uint64(uint64 n) { if (n >= 1 && n <= 16) { push_back(n + (OP_1 - 1)); } else { CBigNum bn(n); *this << bn.getvch(); } return *this; } public: CScript() { } CScript(const CScript& b) : std::vector<unsigned char>(b.begin(), b.end()) { } CScript(const_iterator pbegin, const_iterator pend) : std::vector<unsigned char>(pbegin, pend) { } #ifndef _MSC_VER CScript(const unsigned char* pbegin, const unsigned char* pend) : std::vector<unsigned char>(pbegin, pend) { } #endif CScript& operator+=(const CScript& b) { insert(end(), b.begin(), b.end()); return *this; } friend CScript operator+(const CScript& a, const CScript& b) { CScript ret = a; ret += b; return ret; } //explicit CScript(char b) is not portable. Use 'signed char' or 'unsigned char'. explicit CScript(signed char b) { operator<<(b); } explicit CScript(short b) { operator<<(b); } explicit CScript(int b) { operator<<(b); } explicit CScript(long b) { operator<<(b); } explicit CScript(int64 b) { operator<<(b); } explicit CScript(unsigned char b) { operator<<(b); } explicit CScript(unsigned int b) { operator<<(b); } explicit CScript(unsigned short b) { operator<<(b); } explicit CScript(unsigned long b) { operator<<(b); } explicit CScript(uint64 b) { operator<<(b); } explicit CScript(opcodetype b) { operator<<(b); } explicit CScript(const uint256& b) { operator<<(b); } explicit CScript(const CBigNum& b) { operator<<(b); } explicit CScript(const std::vector<unsigned char>& b) { operator<<(b); } //CScript& operator<<(char b) is not portable. Use 'signed char' or 'unsigned char'. CScript& operator<<(signed char b) { return push_int64(b); } CScript& operator<<(short b) { return push_int64(b); } CScript& operator<<(int b) { return push_int64(b); } CScript& operator<<(long b) { return push_int64(b); } CScript& operator<<(int64 b) { return push_int64(b); } CScript& operator<<(unsigned char b) { return push_uint64(b); } CScript& operator<<(unsigned int b) { return push_uint64(b); } CScript& operator<<(unsigned short b) { return push_uint64(b); } CScript& operator<<(unsigned long b) { return push_uint64(b); } CScript& operator<<(uint64 b) { return push_uint64(b); } CScript& operator<<(opcodetype opcode) { if (opcode < 0 || opcode > 0xff) throw std::runtime_error("CScript::operator<<() : invalid opcode"); insert(end(), (unsigned char)opcode); return *this; } CScript& operator<<(const uint160& b) { insert(end(), sizeof(b)); insert(end(), (unsigned char*)&b, (unsigned char*)&b + sizeof(b)); return *this; } CScript& operator<<(const uint256& b) { insert(end(), sizeof(b)); insert(end(), (unsigned char*)&b, (unsigned char*)&b + sizeof(b)); return *this; } CScript& operator<<(const CPubKey& key) { assert(key.size() < OP_PUSHDATA1); insert(end(), (unsigned char)key.size()); insert(end(), key.begin(), key.end()); return *this; } CScript& operator<<(const CBigNum& b) { *this << b.getvch(); return *this; } CScript& operator<<(const std::vector<unsigned char>& b) { if (b.size() < OP_PUSHDATA1) { insert(end(), (unsigned char)b.size()); } else if (b.size() <= 0xff) { insert(end(), OP_PUSHDATA1); insert(end(), (unsigned char)b.size()); } else if (b.size() <= 0xffff) { insert(end(), OP_PUSHDATA2); unsigned short nSize = b.size(); insert(end(), (unsigned char*)&nSize, (unsigned char*)&nSize + sizeof(nSize)); } else { insert(end(), OP_PUSHDATA4); unsigned int nSize = b.size(); insert(end(), (unsigned char*)&nSize, (unsigned char*)&nSize + sizeof(nSize)); } insert(end(), b.begin(), b.end()); return *this; } CScript& operator<<(const CScript& b) { // I'm not sure if this should push the script or concatenate scripts. // If there's ever a use for pushing a script onto a script, delete this member fn assert(!"Warning: Pushing a CScript onto a CScript with << is probably not intended, use + to concatenate!"); return *this; } bool GetOp(iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>& vchRet) { // Wrapper so it can be called with either iterator or const_iterator const_iterator pc2 = pc; bool fRet = GetOp2(pc2, opcodeRet, &vchRet); pc = begin() + (pc2 - begin()); return fRet; } bool GetOp(iterator& pc, opcodetype& opcodeRet) { const_iterator pc2 = pc; bool fRet = GetOp2(pc2, opcodeRet, NULL); pc = begin() + (pc2 - begin()); return fRet; } bool GetOp(const_iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>& vchRet) const { return GetOp2(pc, opcodeRet, &vchRet); } bool GetOp(const_iterator& pc, opcodetype& opcodeRet) const { return GetOp2(pc, opcodeRet, NULL); } bool GetOp2(const_iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>* pvchRet) const { opcodeRet = OP_INVALIDOPCODE; if (pvchRet) pvchRet->clear(); if (pc >= end()) return false; // Read instruction if (end() - pc < 1) return false; unsigned int opcode = *pc++; // Immediate operand if (opcode <= OP_PUSHDATA4) { unsigned int nSize = 0; if (opcode < OP_PUSHDATA1) { nSize = opcode; } else if (opcode == OP_PUSHDATA1) { if (end() - pc < 1) return false; nSize = *pc++; } else if (opcode == OP_PUSHDATA2) { if (end() - pc < 2) return false; nSize = 0; memcpy(&nSize, &pc[0], 2); pc += 2; } else if (opcode == OP_PUSHDATA4) { if (end() - pc < 4) return false; memcpy(&nSize, &pc[0], 4); pc += 4; } if (end() - pc < 0 || (unsigned int)(end() - pc) < nSize) return false; if (pvchRet) pvchRet->assign(pc, pc + nSize); pc += nSize; } opcodeRet = (opcodetype)opcode; return true; } // Encode/decode small integers: static int DecodeOP_N(opcodetype opcode) { if (opcode == OP_0) return 0; assert(opcode >= OP_1 && opcode <= OP_16); return (int)opcode - (int)(OP_1 - 1); } static opcodetype EncodeOP_N(int n) { assert(n >= 0 && n <= 16); if (n == 0) return OP_0; return (opcodetype)(OP_1+n-1); } int FindAndDelete(const CScript& b) { int nFound = 0; if (b.empty()) return nFound; iterator pc = begin(); opcodetype opcode; do { while (end() - pc >= (long)b.size() && memcmp(&pc[0], &b[0], b.size()) == 0) { erase(pc, pc + b.size()); ++nFound; } } while (GetOp(pc, opcode)); return nFound; } int Find(opcodetype op) const { int nFound = 0; opcodetype opcode; for (const_iterator pc = begin(); pc != end() && GetOp(pc, opcode);) if (opcode == op) ++nFound; return nFound; } // Pre-version-0.6, Dgdollartest2 always counted CHECKMULTISIGs // as 20 sigops. With pay-to-script-hash, that changed: // CHECKMULTISIGs serialized in scriptSigs are // counted more accurately, assuming they are of the form // ... OP_N CHECKMULTISIG ... unsigned int GetSigOpCount(bool fAccurate) const; // Accurately count sigOps, including sigOps in // pay-to-script-hash transactions: unsigned int GetSigOpCount(const CScript& scriptSig) const; bool IsPayToScriptHash() const; // Called by CTransaction::IsStandard bool IsPushOnly() const { const_iterator pc = begin(); while (pc < end()) { opcodetype opcode; if (!GetOp(pc, opcode)) return false; if (opcode > OP_16) return false; } return true; } void SetDestination(const CTxDestination& address); void SetMultisig(int nRequired, const std::vector<CPubKey>& keys); void PrintHex() const { printf("CScript(%s)\n", HexStr(begin(), end(), true).c_str()); } std::string ToString() const { std::string str; opcodetype opcode; std::vector<unsigned char> vch; const_iterator pc = begin(); while (pc < end()) { if (!str.empty()) str += " "; if (!GetOp(pc, opcode, vch)) { str += "[error]"; return str; } if (0 <= opcode && opcode <= OP_PUSHDATA4) str += ValueString(vch); else str += GetOpName(opcode); } return str; } void print() const { printf("%s\n", ToString().c_str()); } CScriptID GetID() const { return CScriptID(Hash160(*this)); } }; /** Compact serializer for scripts. * * It detects common cases and encodes them much more efficiently. * 3 special cases are defined: * * Pay to pubkey hash (encoded as 21 bytes) * * Pay to script hash (encoded as 21 bytes) * * Pay to pubkey starting with 0x02, 0x03 or 0x04 (encoded as 33 bytes) * * Other scripts up to 121 bytes require 1 byte + script length. Above * that, scripts up to 16505 bytes require 2 bytes + script length. */ class CScriptCompressor { private: // make this static for now (there are only 6 special scripts defined) // this can potentially be extended together with a new nVersion for // transactions, in which case this value becomes dependent on nVersion // and nHeight of the enclosing transaction. static const unsigned int nSpecialScripts = 6; CScript &script; protected: // These check for scripts for which a special case with a shorter encoding is defined. // They are implemented separately from the CScript test, as these test for exact byte // sequence correspondences, and are more strict. For example, IsToPubKey also verifies // whether the public key is valid (as invalid ones cannot be represented in compressed // form). bool IsToKeyID(CKeyID &hash) const; bool IsToScriptID(CScriptID &hash) const; bool IsToPubKey(CPubKey &pubkey) const; bool Compress(std::vector<unsigned char> &out) const; unsigned int GetSpecialSize(unsigned int nSize) const; bool Decompress(unsigned int nSize, const std::vector<unsigned char> &out); public: CScriptCompressor(CScript &scriptIn) : script(scriptIn) { } unsigned int GetSerializeSize(int nType, int nVersion) const { std::vector<unsigned char> compr; if (Compress(compr)) return compr.size(); unsigned int nSize = script.size() + nSpecialScripts; return script.size() + VARINT(nSize).GetSerializeSize(nType, nVersion); } template<typename Stream> void Serialize(Stream &s, int nType, int nVersion) const { std::vector<unsigned char> compr; if (Compress(compr)) { s << CFlatData(&compr[0], &compr[compr.size()]); return; } unsigned int nSize = script.size() + nSpecialScripts; s << VARINT(nSize); s << CFlatData(&script[0], &script[script.size()]); } template<typename Stream> void Unserialize(Stream &s, int nType, int nVersion) { unsigned int nSize = 0; s >> VARINT(nSize); if (nSize < nSpecialScripts) { std::vector<unsigned char> vch(GetSpecialSize(nSize), 0x00); s >> REF(CFlatData(&vch[0], &vch[vch.size()])); Decompress(nSize, vch); return; } nSize -= nSpecialScripts; script.resize(nSize); s >> REF(CFlatData(&script[0], &script[script.size()])); } }; bool IsCanonicalPubKey(const std::vector<unsigned char> &vchPubKey); bool IsCanonicalSignature(const std::vector<unsigned char> &vchSig); bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript& script, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType); bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<std::vector<unsigned char> >& vSolutionsRet); int ScriptSigArgsExpected(txnouttype t, const std::vector<std::vector<unsigned char> >& vSolutions); bool IsStandard(const CScript& scriptPubKey); bool IsMine(const CKeyStore& keystore, const CScript& scriptPubKey); bool IsMine(const CKeyStore& keystore, const CTxDestination &dest); bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet); bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<CTxDestination>& addressRet, int& nRequiredRet); bool SignSignature(const CKeyStore& keystore, const CScript& fromPubKey, CTransaction& txTo, unsigned int nIn, int nHashType=SIGHASH_ALL); bool SignSignature(const CKeyStore& keystore, const CTransaction& txFrom, CTransaction& txTo, unsigned int nIn, int nHashType=SIGHASH_ALL); bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType); // Given two sets of signatures for scriptPubKey, possibly with OP_0 placeholders, // combine them intelligently and return the result. CScript CombineSignatures(CScript scriptPubKey, const CTransaction& txTo, unsigned int nIn, const CScript& scriptSig1, const CScript& scriptSig2); #endif
[ "root@ahmet.ahmet-rzr.h1.internal.cloudapp.net" ]
root@ahmet.ahmet-rzr.h1.internal.cloudapp.net
9bf399ce9323e6c69499caf5cadb9c6647acaf4a
3490954f207f1fc26a6ae4195476ce170a59e845
/src/InterBase/InterBaseConnectionManager.cpp
f28993183ed001953814b0b4f9c7b16b8d726abb
[]
no_license
rssh/UAKGQuery
cf69566fbd091f9117f76bb7cd51a050cbe59576
63de600999ef3c0b9b51f860c5d0522ad39575dc
refs/heads/master
2016-09-06T03:19:44.588353
2013-11-17T15:43:05
2013-11-17T15:43:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,128
cpp
#ifndef __InterBase_InterBaseConnectionManager_h #include <InterBase/InterBaseConnectionManager.h> #endif #ifndef __InterBase_InterBaseQueryManager_h #include <InterBase/InterBaseQueryManager.h> #endif #ifdef USE_OB_XA #include <OB/OTSXA.h> #endif extern CORBA::ORB_ptr myORB; #ifdef USE_OB_XA extern xa_switch_t xaosw; #endif #include <strstream> #include <iostream> #include <assert.h> using namespace std; using namespace GradSoft; InterBaseConnectionManager::InterBaseConnectionManager() :initialized_(false), xa_(false), xaOpenString_(CORBA::string_dup("")) { } void InterBaseConnectionManager::init(ProgOptions& progOptions, Logger& logger, PortableServer::POA_ptr poa) { assert(initialized_ == false); DBConnectionManagerBase::init(progOptions, logger,poa); #ifdef USE_OB_XA char* xaString = NULL; ostrstream ostr; if (options.is_set("INTERBASE_XA")) { ostr << "INTERBASE_XA+" << options.argument("INTERBASE_XA"); xaString = ostr.str(); xa_ = true; xaOpenString_ = CORBA::string_dup(xaString); ostr.rdbuf()->freeze(0); }else{ xa_ = false; } if (xa_) { OB::XA::AddResourceManager(myORB,"","InterBase",&xaosw,xaOpenString_,"",true); } #endif initialized_ = true; } void InterBaseConnectionManager::close() { } UAKGQueryManagerBase* InterBaseConnectionManager::createUAKGQueryManager_( DBConnectionManagers_impl* dbConnectionManagers_p, const char* login, const char* passwd, const char* db_name, const char* db_type, const char* other) { UAKGQueryManagerBase* retval = new InterBaseQueryManager(); try { retval->init(dbConnectionManagers_p,login,passwd,db_name, other); }catch(...){ // TODO : catch exceptions and handle it. cerr << "... exception in InterBaseConnectionManager::createUAKGQueryManager_" << endl; } return retval; } void registerInterBaseConnectionManager(DBConnectionManagers_impl* managers) { InterBaseConnectionManager* newCM = new InterBaseConnectionManager(); managers->registerDBDriver("InterBase",newCM); }
[ "ruslan@shevchenko.kiev.ua" ]
ruslan@shevchenko.kiev.ua
a809a29000836efeb069c516c3fe32439348c805
ce99b399bead6c9a285f07d386d04a4a1c5f6bb7
/Cookbook/Chapter03/Chapter03/SceneEditor/SceneEditor/SceneEditorDoc.h
7e42cb5a56756b4aa46bc173b3d2db20c2776ecd
[]
no_license
codediy/OgreDemo
13e97c984499330bbd733f5c7c64212324e428b4
6fb0ad2edde881feda040f5eb8bdf134f6ca9495
refs/heads/master
2020-12-05T21:44:51.348401
2020-01-07T06:13:00
2020-01-07T06:13:00
232,255,494
0
0
null
null
null
null
UTF-8
C++
false
false
916
h
// SceneEditorDoc.h : interface of the CSceneEditorDoc class // #pragma once class CSceneEditorDoc : public CDocument { protected: // create from serialization only CSceneEditorDoc(); DECLARE_DYNCREATE(CSceneEditorDoc) // Attributes public: // Operations public: // Overrides public: virtual BOOL OnNewDocument(); virtual void Serialize(CArchive& ar); #ifdef SHARED_HANDLERS virtual void InitializeSearchContent(); virtual void OnDrawThumbnail(CDC& dc, LPRECT lprcBounds); #endif // SHARED_HANDLERS // Implementation public: virtual ~CSceneEditorDoc(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // Generated message map functions protected: DECLARE_MESSAGE_MAP() #ifdef SHARED_HANDLERS // Helper function that sets search content for a Search Handler void SetSearchContent(const CString& value); #endif // SHARED_HANDLERS };
[ "zmwwork@163.com" ]
zmwwork@163.com
7a5c6dfe9f6af9e746d429dfd141c218e0c8e50b
24862dcb99a7da2050768212be89e91b9acb67b5
/UE_4.21/Engine/Intermediate/Build/Win32/UE4/Inc/Engine/ParticleModuleLifetime_Seeded.generated.h
23ff6d947c6cfda8ee684d4cbb7cc9457a8033c2
[]
no_license
dadtaylo/makingchanges
3f8f1b4b4c7b2605d2736789445fcda693c92eea
3ea08eab63976feab82561a9355c4fc2d0f76362
refs/heads/master
2020-04-22T05:28:01.381983
2019-02-25T02:56:07
2019-02-25T02:56:07
170,160,587
0
0
null
null
null
null
UTF-8
C++
false
false
5,392
h
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/ObjectMacros.h" #include "UObject/ScriptMacros.h" PRAGMA_DISABLE_DEPRECATION_WARNINGS #ifdef ENGINE_ParticleModuleLifetime_Seeded_generated_h #error "ParticleModuleLifetime_Seeded.generated.h already included, missing '#pragma once' in ParticleModuleLifetime_Seeded.h" #endif #define ENGINE_ParticleModuleLifetime_Seeded_generated_h #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_RPC_WRAPPERS #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_RPC_WRAPPERS_NO_PURE_DECLS #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_INCLASS_NO_PURE_DECLS \ private: \ static void StaticRegisterNativesUParticleModuleLifetime_Seeded(); \ friend struct Z_Construct_UClass_UParticleModuleLifetime_Seeded_Statics; \ public: \ DECLARE_CLASS(UParticleModuleLifetime_Seeded, UParticleModuleLifetime, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/Engine"), NO_API) \ DECLARE_SERIALIZER(UParticleModuleLifetime_Seeded) #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_INCLASS \ private: \ static void StaticRegisterNativesUParticleModuleLifetime_Seeded(); \ friend struct Z_Construct_UClass_UParticleModuleLifetime_Seeded_Statics; \ public: \ DECLARE_CLASS(UParticleModuleLifetime_Seeded, UParticleModuleLifetime, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/Engine"), NO_API) \ DECLARE_SERIALIZER(UParticleModuleLifetime_Seeded) #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_STANDARD_CONSTRUCTORS \ /** Standard constructor, called after all reflected properties have been initialized */ \ NO_API UParticleModuleLifetime_Seeded(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UParticleModuleLifetime_Seeded) \ DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UParticleModuleLifetime_Seeded); \ DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UParticleModuleLifetime_Seeded); \ private: \ /** Private move- and copy-constructors, should never be used */ \ NO_API UParticleModuleLifetime_Seeded(UParticleModuleLifetime_Seeded&&); \ NO_API UParticleModuleLifetime_Seeded(const UParticleModuleLifetime_Seeded&); \ public: #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_ENHANCED_CONSTRUCTORS \ /** Standard constructor, called after all reflected properties have been initialized */ \ NO_API UParticleModuleLifetime_Seeded(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \ private: \ /** Private move- and copy-constructors, should never be used */ \ NO_API UParticleModuleLifetime_Seeded(UParticleModuleLifetime_Seeded&&); \ NO_API UParticleModuleLifetime_Seeded(const UParticleModuleLifetime_Seeded&); \ public: \ DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UParticleModuleLifetime_Seeded); \ DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UParticleModuleLifetime_Seeded); \ DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UParticleModuleLifetime_Seeded) #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_PRIVATE_PROPERTY_OFFSET #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_13_PROLOG #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_GENERATED_BODY_LEGACY \ PRAGMA_DISABLE_DEPRECATION_WARNINGS \ public: \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_PRIVATE_PROPERTY_OFFSET \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_RPC_WRAPPERS \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_INCLASS \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_STANDARD_CONSTRUCTORS \ public: \ PRAGMA_ENABLE_DEPRECATION_WARNINGS #define Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_GENERATED_BODY \ PRAGMA_DISABLE_DEPRECATION_WARNINGS \ public: \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_PRIVATE_PROPERTY_OFFSET \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_INCLASS_NO_PURE_DECLS \ Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h_16_ENHANCED_CONSTRUCTORS \ static_assert(false, "Unknown access specifier for GENERATED_BODY() macro in class ParticleModuleLifetime_Seeded."); \ PRAGMA_ENABLE_DEPRECATION_WARNINGS #undef CURRENT_FILE_ID #define CURRENT_FILE_ID Engine_Source_Runtime_Engine_Classes_Particles_Lifetime_ParticleModuleLifetime_Seeded_h PRAGMA_ENABLE_DEPRECATION_WARNINGS
[ "dadtaylo@iu.edu" ]
dadtaylo@iu.edu
631e57281ddb39b827a1b40f6a3d926c414d9451
cf777505c5e6713c7e0dd23146c24aa557a93e6e
/src/Backup/SnapshotList.cpp
8d3a3b3696efae61668fd954230e9f5ce1d939e6
[]
no_license
profi248/backwither
b5c8a10de28bb15845fd48e76c53175cb3f0116b
2a74448de05d545cdf0ff55a4e1d3f00cf98fadc
refs/heads/master
2023-02-26T21:10:53.273631
2021-01-21T18:58:51
2021-01-31T23:30:33
266,898,543
0
0
null
null
null
null
UTF-8
C++
false
false
104
cpp
#include "SnapshotList.h" void SnapshotList::AddSnapshot (Snapshot s) { m_Snapshots.push_back(s); }
[ "kostal.david8@gmail.com" ]
kostal.david8@gmail.com
7386555be38bde8584d336fd7bca8756bcb3da0f
ba6ebf4553bd1f0ab4b2180e57b845e6325fa6e3
/heatmap-based/genlibtest/genlibtest/genlibtest/stdafx.cpp
c2847895f9c57158d330a5966243f069c01e35ed
[]
no_license
kinect59/CNNHandPoseEstimationTotal
2dca5388b23e5cdc25c8b74b574ee75ab73c4c10
55faa0831d5af437c3b762c49ae00bbdcd2525d8
refs/heads/master
2020-06-28T04:28:44.887789
2016-03-12T04:16:54
2016-03-12T04:16:54
null
0
0
null
null
null
null
GB18030
C++
false
false
263
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // genlibtest.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中 // 引用任何所需的附加头文件,而不是在此文件中引用
[ "wanqingfu@sina.com" ]
wanqingfu@sina.com
8f90e5c66e42c38c08b49c5c8a7c9f023c3d1c16
c68ce6e115b0aac00ad9fa8500b4d5b134ffc342
/emiv-S06-G02/Graphics2D/Image.hh
8529e0166ff9589799567fde289079215fbc2df8
[]
no_license
hannesg/multinf-ws1011
4fe914f301a44658ef368047bedcacda9918972b
1f7f02821029ddd8689db52ab204eb78cba5eed9
refs/heads/master
2016-09-08T05:03:42.249101
2011-02-07T07:17:17
2011-02-07T07:17:17
1,021,837
0
0
null
null
null
null
UTF-8
C++
false
false
1,060
hh
/* Gruppe: 02 Serie 02 Matthias Boehm, 895778 Hannes Georg, 850360 */ #ifndef __IMAGE_HH #define __IMAGE_HH #include <fstream> #include "ImageBase.hh" #include "Color.hh" using namespace std; namespace Graphics2D { class Image : public ImageBase { public: Image(); Image(const Image &other); Image &operator =(const Image &other); Image(int w, int h) { Init(w, h); } virtual ~Image(); virtual void FillZero(); virtual void FillColor(const Color &c); virtual unsigned char GetPixel(const int &x, const int &y, const int &ch) const; virtual void SetPixel(const int &x, const int &y, const int &ch, const unsigned char &value); /* Laedt Bilddatei. Rueckgabewert 0, wenn Erfolg, -1, sonst */ virtual int LoadPPM(const std::string &filename); /* Speichert in Bilddatei. Rueckgabewert 0, wenn Erfolg, -1, sonst */ virtual int SavePPM(const std::string &filename) const; private: /* Liest den Header einer PPM-Datei */ bool readHeader(ifstream &in, bool &Binary, int &width, int &height, unsigned int &max) const; }; } #endif
[ "fliegenblues@gmx.net" ]
fliegenblues@gmx.net
9e5cfb24e6b46c1eaa5e8c34e0b60656d14907eb
31589435071cbff4c5e95b357d8f3fa258f43269
/PPTVForWin8/ppbox_1.2.0/src/live/p2pcommon2/base/ppl/mswin/mfc/net.h
5c575c365c2c4590a55c5c66889f8e29f98277f5
[]
no_license
huangyt/MyProjects
8d94656f41f6fac9ae30f089230f7c4bfb5448ac
cd17f4b0092d19bc752d949737c6ed3a3ef00a86
refs/heads/master
2021-01-17T20:19:35.691882
2013-05-03T07:19:31
2013-05-03T07:19:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,955
h
#ifndef _LIVE_P2PCOMMON2_BASE_PPL_MSWIN_MFC_NET_H_ #define _LIVE_P2PCOMMON2_BASE_PPL_MSWIN_MFC_NET_H_ #include <ppl/util/listener.h> #include <ppl/net/socketfwd.h> #include <ppl/stl/string.h> #include <boost/noncopyable.hpp> class SocketImpl; class SocketBase : private boost::noncopyable { public: SocketBase(); virtual ~SocketBase(); bool IsValid() const; void Close() { DoClose(); } SOCKET GetHandle() const; InetSocketAddress GetLocalAddress() const; int GetLastError(); protected: virtual void OnAccept(long errcode) { } virtual void OnConnect(long errcode) { } virtual void OnClose(long errcode) { } virtual void OnReceive(long errcode) { } virtual void OnSend(long errcode) { } virtual void DoClose(); long LastError() const { return m_lastError; } protected: friend class SocketImpl; SocketImpl* m_impl; long m_lastError; }; class UDPSocket : public SocketBase, public Listenable<UDPSocketListener, TrivialUDPSocketListener> { public: UDPSocket(); virtual ~UDPSocket(); bool Open(u_short port); bool Send(const void* data, size_t size, u_long ip, u_short port); bool Send(const void* data, size_t size, const InetSocketAddress& addr); bool Receive() { return true; } bool Receive(size_t size) { return true; } protected: virtual void OnReceive(long errcode); virtual void OnSend(long errcode); private: enum { MAX_PACKET_SIZE = 64 * 1024 }; unsigned char m_buffer[MAX_PACKET_SIZE + 1]; }; class RawSocket : public UDPSocket { public: bool Create(); bool SetTTL(int ttl); private: using UDPSocket::Open; }; class TCPServerSocket : public SocketBase, public Listenable<TCPServerSocketListener, TrivialTCPServerSocketListener> { public: TCPServerSocket(); virtual ~TCPServerSocket(); bool Open(u_short port); protected: virtual void OnAccept(long errcode); }; typedef TCPServerSocket PeerServerSocket; class TCPClientSocket : public SocketBase, public Listenable<TCPClientSocketListener, TrivialTCPClientSocketListener> { public: TCPClientSocket(); explicit TCPClientSocket(SOCKET sock); virtual ~TCPClientSocket(); virtual bool Connect(const InetSocketAddress& addr); bool Connect(const char* ip, u_short port); bool Connect(u_long ip, u_short port); bool Send(const void* data, size_t size) { return DoSend(data, size); } bool Send(const char* data) { return Send(data, strlen(data)); } bool Send(const string& data) { return Send(data.data(), data.size()); } InetSocketAddress GetRemoteAddress() const; InetSocketAddress GetLocalAddress() const; bool Receive() { return true; } void SetConnectTimeout(int timeout) { } static int GetPendingConnectionCount(); protected: int Receive(unsigned char* buffer, size_t size) { return DoReceive(buffer, size); } void ReceiveAvailableData(); protected: virtual int DoReceive(unsigned char* buffer, size_t size); virtual bool DoSend(const void* data, size_t size); virtual void OnConnect(long errcode); virtual void OnClose(long errcode); virtual void OnSend(long errcode); virtual void OnReceive(long errcode); protected: static int m_pendingConnectionCount; }; class PeerClientSocket : public TCPClientSocket { public: PeerClientSocket(); explicit PeerClientSocket(SOCKET sock); protected: virtual int DoReceive(unsigned char* buffer, size_t size); virtual bool DoSend(const void* data, size_t size); void Init(); virtual void OnConnect(long errcode); virtual void OnClose(long errcode); virtual void OnReceive(long errcode); bool IsHeadReceived() const; void ReceiveHead(); void ReceiveBody(); virtual void DoClose(); private: enum { MAX_HEAD_SIZE = sizeof(unsigned long), MAX_PACKET_SIZE = 64 * 1024 }; unsigned long m_bodyLength; unsigned char m_headLength; size_t m_len; unsigned char m_buffer[MAX_PACKET_SIZE + 1]; }; typedef TCPServerSocket HTTPServerSocket; typedef TCPClientSocket HTTPClientSocket; typedef TCPClientSocket HTTPClientProxySocket; #endif
[ "penneryu@outlook.com" ]
penneryu@outlook.com
ee45b20d1cf22265ba06acf7624a1adae50aced4
40ea9af0652d4822fd9bcefbff30dc1eef74373b
/src/Affectors/AffectorSpace.cpp
c871ab4d059447b2f7398fa9963f054bccd1dd1a
[ "BSD-3-Clause" ]
permissive
borisblizzard/aprilparticle
55e20317f02b16921894747481ebf6229677a806
db5728776b4f1a55ba7975f0bb3ddd4959c3ad0d
refs/heads/master
2023-08-18T09:31:03.785735
2023-08-16T12:25:16
2023-08-16T12:25:16
219,540,246
0
0
NOASSERTION
2019-11-04T15:59:40
2019-11-04T15:59:39
null
UTF-8
C++
false
false
1,307
cpp
/// @file /// @version 4.0 /// /// @section LICENSE /// /// This program is free software; you can redistribute it and/or modify it under /// the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause #define _META_CLASS Space #include <april/aprilUtil.h> #include <april/MetaData.h> #include <hltypes/harray.h> #include <hltypes/hstring.h> #include "AffectorSpace.h" #include "aprilparticleUtil.h" namespace aprilparticle { namespace Affectors { hmap<hstr, april::MetaData*> Space::_metaData; Space::Space(chstr name) : Affector(name) { this->type = "Space"; this->position.set(0.0f, 0.0f, 0.0f); this->radius = 10.0f; } Space::Space(cgvec3f position, float radius, chstr name) : Affector(name) { this->type = "Space"; this->position = position; this->radius = radius; } Space::Space(const Space& other) : Affector(other) { this->position = other.position; this->radius = other.radius; } hmap<hstr, april::MetaData*>& Space::_getMetaData() const { if (_metaData.size() == 0) { _metaData = Affector::_getMetaData(); REGISTER_META_DATA_GETSET_SPECIAL(Gvec3f, "position", getPosition, setPosition); REGISTER_META_DATA_GETSET(float, "radius", getRadius, setRadius); } return _metaData; } } }
[ "boris.blizzard@gmail.com" ]
boris.blizzard@gmail.com
792dc76039c0febf6d5fb38ddd0b7c935dacb2f5
3bbc63175bbff8163b5f6b6af94a4499db10a581
/RemoteMgr/RemoteMgr_Clt/RemoteMgr_CltDlg.cpp
30d7814f8104188b3e7becc12adf9763a50c617f
[]
no_license
chancelee/MyProject
76f8eb642544a969efbb10fa4e468daeba5b88ef
62f5825b244f36ed50f6c88868e13670e37281d5
refs/heads/master
2021-09-16T01:31:00.158096
2018-06-14T10:08:42
2018-06-14T10:08:42
null
0
0
null
null
null
null
GB18030
C++
false
false
16,918
cpp
// RemoteMgr_CltDlg.cpp : implementation file // #include "stdafx.h" #include "RemoteMgr_Clt.h" #include "RemoteMgr_CltDlg.h" #include "../common/OutputDbgMsg.h" #include "../common/MyPacket.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CAboutDlg dialog used for App About class CAboutDlg : public CDialog { public: CAboutDlg(); // Dialog Data //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }; //}}AFX_DATA // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAboutDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: //{{AFX_MSG(CAboutDlg) //}}AFX_MSG DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) { //{{AFX_DATA_INIT(CAboutDlg) //}}AFX_DATA_INIT } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAboutDlg) //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) //{{AFX_MSG_MAP(CAboutDlg) // No message handlers //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CRemoteMgr_CltDlg dialog CRemoteMgr_CltDlg *CRemoteMgr_CltDlg::m_pCltDlg = NULL; CRemoteMgr_CltDlg::CRemoteMgr_CltDlg(CWnd* pParent /*=NULL*/) : CDialog(CRemoteMgr_CltDlg::IDD, pParent) { //{{AFX_DATA_INIT(CRemoteMgr_CltDlg) m_dwPort = 0; //}}AFX_DATA_INIT // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); m_sockClient = INVALID_SOCKET; m_hReadPipe = NULL; m_hWritePipe = NULL; m_hCmdReadPipe = NULL; m_hCmdWritePipe = NULL; m_hCmd = NULL; m_pszBuf = NULL; } void CRemoteMgr_CltDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CRemoteMgr_CltDlg) DDX_Control(pDX, IDC_IPADDRESS, m_IP); DDX_Text(pDX, EDT_PORT, m_dwPort); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CRemoteMgr_CltDlg, CDialog) //{{AFX_MSG_MAP(CRemoteMgr_CltDlg) ON_WM_SYSCOMMAND() ON_WM_PAINT() ON_WM_QUERYDRAGICON() ON_BN_CLICKED(BTN_CONNECT, OnConnect) ON_BN_CLICKED(BTN_TEST, OnTest) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CRemoteMgr_CltDlg message handlers BOOL CRemoteMgr_CltDlg::OnInitDialog() { CDialog::OnInitDialog(); // Add "About..." menu item to system menu. // IDM_ABOUTBOX must be in the system command range. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { CString strAboutMenu; strAboutMenu.LoadString(IDS_ABOUTBOX); if (!strAboutMenu.IsEmpty()) { pSysMenu->AppendMenu(MF_SEPARATOR); pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); } } // Set the icon for this dialog. The framework does this automatically // when the application's main window is not a dialog SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon // TODO: Add extra initialization here InitSocekt(); m_IP.SetAddress(htonl(inet_addr("127.0.0.1"))); m_dwPort = 27149; m_pCltDlg = this; UpdateData(FALSE); return TRUE; // return TRUE unless you set the focus to a control } void CRemoteMgr_CltDlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout; dlgAbout.DoModal(); } else { CDialog::OnSysCommand(nID, lParam); } } // If you add a minimize button to your dialog, you will need the code below // to draw the icon. For MFC applications using the document/view model, // this is automatically done for you by the framework. void CRemoteMgr_CltDlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // device context for painting SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0); // Center icon in client rectangle int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); int x = (rect.Width() - cxIcon + 1) / 2; int y = (rect.Height() - cyIcon + 1) / 2; // Draw the icon dc.DrawIcon(x, y, m_hIcon); } else { CDialog::OnPaint(); } } // The system calls this to obtain the cursor to display while the user drags // the minimized window. HCURSOR CRemoteMgr_CltDlg::OnQueryDragIcon() { return (HCURSOR) m_hIcon; } void CRemoteMgr_CltDlg::OnConnect() { // TODO: Add your control notification handler code here //创建套接字 UpdateData(TRUE); UpdateData(FALSE); BOOL bRet = FALSE; //网络相关 //1. 创建套接字(socket) m_sockClient = socket(AF_INET, SOCK_STREAM, //流式,TCP 0); if (m_sockClient == INVALID_SOCKET) { TRACE("ssc socket() failed[%d]", WSAGetLastError()); return; } //2. 向服务器发出连接请求(connect) sockaddr_in addr; addr.sin_family = AF_INET; DWORD dwIP = 0; m_IP.GetAddress(dwIP); addr.sin_addr.S_un.S_addr = htonl(dwIP); //客户端需要指定连接IP addr.sin_port = htons((USHORT)m_dwPort); //连接端口 bRet = connect(m_sockClient, (sockaddr*)&addr, sizeof(sockaddr)); if (bRet == SOCKET_ERROR) { TRACE("ssc connect() failed[%d]", WSAGetLastError()); return; } //先启动线程接收数据 CWinThread *pCWinThread = AfxBeginThread(RecvThread, (LPVOID)this); //创建管道相关 MakePipe(); char szTitle[MAXBYTE] = {0}; GetWindowText(szTitle, MAXBYTE); strcat(szTitle, " - 已连接"); SetWindowText(szTitle); //连接成功后禁用连接按钮 GetDlgItem(BTN_CONNECT)->EnableWindow(FALSE); } BOOL CRemoteMgr_CltDlg::InitSocekt() { WORD wVersionRequested; WSADATA wsaData; int err; wVersionRequested = MAKEWORD( 2, 2 ); err = WSAStartup( wVersionRequested, &wsaData ); if ( err != 0 ) { TRACE("ssc WSAStartup failed[%d]", WSAGetLastError()); return FALSE; } if ( LOBYTE( wsaData.wVersion ) != 2 || HIBYTE( wsaData.wVersion ) != 2 ) { TRACE("ssc wsaData error[%d]", WSAGetLastError()); WSACleanup( ); return FALSE; } return TRUE; } BOOL CRemoteMgr_CltDlg::DestroyWindow() { // TODO: Add your specialized code here and/or call the base class TRACE("ssc CRemoteMgr_CltDlg::DestroyWindow() begin!"); //向服务端发送下线通知 CMyPacket pkt; CMySocket mySock(m_sockClient); BYTE btType = CLT_OFFLINE; pkt.Append((char*)&btType, sizeof(btType)); mySock.SendPacket(pkt); MYTRACE("ssc send CLT_OFFLINE"); DWORD dwWrtSize = 0; BOOL bRet = FALSE; bRet = WriteFile(m_hWritePipe, "exit\r\n", strlen("exit\r\n"), &dwWrtSize, NULL); if (bRet == FALSE) { MYTRACE("ssc WriteFile failed[%d]"); TerminateProcess(m_hCmd, 0); } CloseHandle(m_hReadPipe); CloseHandle(m_hWritePipe); CloseHandle(m_hCmdReadPipe); CloseHandle(m_hCmdWritePipe); CloseHandle(m_hCmd); closesocket(m_sockClient); WSACleanup(); TRACE("ssc CRemoteMgr_CltDlg::DestroyWindow() end!"); return CDialog::DestroyWindow(); } UINT CRemoteMgr_CltDlg::RecvThread(LPVOID lParam) { CRemoteMgr_CltDlg *pCltDlg = (CRemoteMgr_CltDlg*)lParam; SOCKET sClient = pCltDlg->m_sockClient; int nBufSize = 0; int nTotalSize = 0; int nCurrentSize = 0; int nRecvedSize = 0; while(TRUE) { CMySocket skt(sClient); CMyPacket recvPkt; int nRet = skt.RecvPacket(recvPkt); //表示接收数据出错 if (nRet == -1) { //错误处理 break; } //到此处说明已经成功的接收到了一个完整的数据包,可以开始处理数据包 char* pszBuf = recvPkt.GetBuf(); int nBufSize = recvPkt.GetLength(); //到此处说明已经成功的接收到了一个完整的数据包,可以开始处理数据包 switch(pszBuf[0]) { case SVR_STARTUP_CMD: { //收到服务端启动CMD窗口的命令,才能开始发送cmd结果 AfxBeginThread((AFX_THREADPROC)GetCMDOut, lParam); } break; case SVR_SCREEN: { m_pCltDlg->OnScreenReply(); } break; case SVR_CMD: { m_pCltDlg->OnRecvCmd(sClient, pszBuf + 1, nBufSize - 1); } break; case SVR_LBTNDOWN: { m_pCltDlg->OnRecvLBtnDown(sClient, pszBuf + 1, nBufSize - 1); } break; case SVR_LBTNUP: { m_pCltDlg->OnRecvLBtnUp(sClient, pszBuf + 1, nBufSize - 1); } break; case SVR_MOUSEMOVE: { //m_pCltDlg->OnRecvMouseMove(sClient, pszBuf + 1, nBufSize - 1); } break; case SVR_DOUBLE_CLICK: { m_pCltDlg->OnRecvDoubleClick(sClient, pszBuf + 1, nBufSize - 1); } break; default: break; } } return TRUE; } void CRemoteMgr_CltDlg::OnRecvCmd(SOCKET s, char* pszBuf, int nBufLength) { //处理svr发来的cmd //向管道中写数据 BOOL bRet = FALSE; DWORD dwRealWrtSize = 0; bRet = WriteFile(m_hWritePipe, pszBuf, nBufLength, &dwRealWrtSize, NULL); if (bRet == 0 || dwRealWrtSize != (DWORD)nBufLength) { TRACE("ssc WriteFile failed! bRet[%d] nBufLength[%d] dwRealWrtSize[%d]", bRet, nBufLength, dwRealWrtSize); MYTRACE("ssc WriteFile failed!"); return; } } void CRemoteMgr_CltDlg::OnRecvDoubleClick(SOCKET s, char* pszBuf, int nBufLength) { //模拟鼠标双击 CPoint point; memcpy(&point, pszBuf, nBufLength); ::SetCursorPos(point.x, point.y); ::mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, 0, 0, 0, 0 ); ::mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, 0, 0, 0, 0 ); } void CRemoteMgr_CltDlg::OnRecvLBtnDown(SOCKET s, char* pszBuf, int nBufLength) { CPoint point; memcpy(&point, pszBuf, nBufLength); ::SetCursorPos(point.x, point.y); ::mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0 ); } void CRemoteMgr_CltDlg::OnRecvLBtnUp(SOCKET s, char* pszBuf, int nBufLength) { CPoint point; memcpy(&point, pszBuf, nBufLength); ::SetCursorPos(point.x, point.y); ::mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0 ); } void CRemoteMgr_CltDlg::OnRecvMouseMove(SOCKET s, char* pszBuf, int nBufLength) { CPoint point; memcpy(&point, pszBuf, nBufLength); ::SetCursorPos(point.x, point.y); ::mouse_event(MOUSEEVENTF_MOVE, 0, 0, 0, 0 ); } void CRemoteMgr_CltDlg::OnScreenReply() { // TODO: Add your control notification handler code here BOOL bRet = FALSE; //开始获取当前屏幕的数据 CDC memDC; CDC* pDesktopDC = GetDesktopWindow()->GetDC(); memDC.CreateCompatibleDC(pDesktopDC); //获取桌面的宽度和高度 int nWidth = GetSystemMetrics(SM_CXSCREEN); int nHeigth = GetSystemMetrics(SM_CYSCREEN); CBitmap bitmap; bitmap.CreateCompatibleBitmap(pDesktopDC, nWidth, nHeigth); memDC.SelectObject(bitmap); bRet = memDC.BitBlt(0, 0, nWidth, nHeigth, pDesktopDC, 0, 0, SRCCOPY); int nCount = nWidth * nHeigth * sizeof(DWORD); char* pszBuf = new char[nCount]; if (pszBuf == NULL) { MYTRACE("ssc new failed!"); return; } //获取位图中的数据 bitmap.GetBitmapBits(nCount, pszBuf); BYTE btType = CLT_SCREEN; int nBufSize = sizeof(BYTE) + nCount; int nRet = 0; CMyPacket pkt; CMySocket sendSkt(m_pCltDlg->m_sockClient); if (pkt.Append((char*)&btType, 1) == NULL) { MYTRACE("ssc pkt.Append failed!"); return ; } if (pkt.Append((char*)&nWidth, sizeof(DWORD)) == NULL) { MYTRACE("ssc pkt.Append failed!"); return ; } if (pkt.Append((char*)&nHeigth, sizeof(DWORD)) == NULL) { MYTRACE("ssc pkt.Append failed!"); return ; } if (pkt.Append((char*)pszBuf, nCount) == NULL) { MYTRACE("ssc pkt.Append failed!"); return ; } nRet = sendSkt.SendPacket(pkt); if (nRet == -1) { MYTRACE("ssc sendSkt.SendPacket failed!"); return ; } if (pszBuf != NULL) { delete[] pszBuf; pszBuf = NULL; } Sleep(500); //防止客户端CPU占用率太高 } void CRemoteMgr_CltDlg::MakePipe() { BOOL bRet = FALSE; //管道相关 SECURITY_ATTRIBUTES sa; memset(&sa, 0, sizeof(SECURITY_ATTRIBUTES)); sa.bInheritHandle = TRUE; //m_hReadPipe -- m_hCmdWritePipe //m_hWritePipe -- m_hCmdReadPipe bRet = CreatePipe(&m_hReadPipe, &m_hCmdWritePipe, &sa, 0); if (bRet == FALSE) { TRACE("ssc CreatePipe(m_hReadPipe, m_hCmdWritePipe)failed[%d]", GetLastError()); return; } bRet = CreatePipe(&m_hCmdReadPipe, &m_hWritePipe, &sa, 0); if (bRet == FALSE) { TRACE("ssc CreatePipe(&m_hCmdReadPipe, &m_hWritePipe)failed[%d]", GetLastError()); return; } PROCESS_INFORMATION pi; memset(&pi, 0, sizeof(PROCESS_INFORMATION)); STARTUPINFO si; memset(&si, 0, sizeof(STARTUPINFO)); si.dwFlags = STARTF_USESTDHANDLES; si.hStdInput = m_hCmdReadPipe; si.hStdOutput = m_hCmdWritePipe; si.hStdError = m_hCmdWritePipe; char szCmdPath[MAXBYTE] = {0}; UINT nSize = GetSystemDirectory(szCmdPath, MAXBYTE); if (nSize == 0) { MYTRACE("ssc GetSystemDirectory failed"); return; } strcat(szCmdPath, "\\cmd.exe"); bRet = CreateProcess(NULL, szCmdPath, &sa, NULL, TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &pi); if (bRet == FALSE) { TRACE("ssc CreateProcess failed[%d]", GetLastError()); return; } m_hCmd = pi.hProcess; } DWORD CRemoteMgr_CltDlg::GetCMDOut(LPVOID lpParameter) { BOOL bRet = FALSE; DWORD dwBufSize = 0; HANDLE hReadPipe = ((CRemoteMgr_CltDlg*)lpParameter)->m_hReadPipe; SOCKET sClient = ((CRemoteMgr_CltDlg*)lpParameter)->m_sockClient; while (TRUE) { bRet = PeekNamedPipe(hReadPipe, NULL, 0, NULL, &dwBufSize, NULL); if (bRet == FALSE) { TRACE("ssc PeekNamedPipe failed[%d]", GetLastError()); return FALSE; // when close hReadPipe, this thread can be exit } if (dwBufSize == 0) { //管道没有数据时,暂停0.5s防止CPU满载 Sleep(500); continue; } char *pszBuf = new char[dwBufSize + 1]; memset(pszBuf, 0, dwBufSize + 1); if (pszBuf == NULL) { TRACE("ssc new char failed"); ExitProcess(0); } DWORD dwRealSize = 0; bRet = ReadFile(hReadPipe, pszBuf, dwBufSize, &dwRealSize, NULL); if (bRet == FALSE) { MYTRACE("ssc ReadFile failed"); continue; } if (dwRealSize < dwBufSize) { TRACE("ssc ReadFile error dwRealSize is [%d], dwBufSize is [%d]", dwRealSize, dwBufSize); continue; } //cmd输出管道中有数据时则发送给服务端 CMyPacket sendPkt; CMySocket mySock(sClient); BYTE btType = CLT_CMD; int nBufSize = sizeof(BYTE); int nRet = 0; if (sendPkt.Append((char*)&btType, sizeof(btType)) == NULL ) { MYTRACE("ssc sendPkt.Append failed!"); return FALSE; } if (sendPkt.Append(pszBuf, strlen(pszBuf) + 1) == NULL ) { MYTRACE("ssc sendPkt.Append failed!"); return FALSE; } mySock.SendPacket(sendPkt); if (pszBuf != NULL) { delete[] pszBuf; pszBuf = NULL; } } return TRUE; } void CRemoteMgr_CltDlg::OnTest() { // TODO: Add your control notification handler code here //mouse_event (MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, 46, 42, 0, 0 ); //mouse_event (MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, 46, 42, 0, 0 ); }
[ "styxschip@sina.com" ]
styxschip@sina.com
d5c790323279641549bcd2b76154114ae7f54cad
268e0035da3170ddfe579d2337510925249b3ed4
/fun/net/reactor/http/http_response.h
96358c70b474d761c8e0a77250b99e1086dc343c
[]
no_license
maxidea1024/fun
89e2b4ae1c23c60201e7b9a2ef85bb33a8a25202
bc10f8a5fef70b4c02cf443c27c29c6a71cb31b5
refs/heads/master
2021-08-07T05:16:10.630398
2020-05-06T10:46:08
2020-05-06T10:46:08
169,390,099
2
0
null
2019-03-28T13:58:16
2019-02-06T10:39:41
C++
UTF-8
C++
false
false
1,192
h
#pragma once namespace fun { namespace net { class Buffer; class HttpResponse { public: enum HttpStatusCode { kUnknown, k200Ok = 200, k301MovedPermanently = 301, k400BadRequest = 400, k404NotFound = 404, }; explicit HttpResponse(bool close) : status_code_(kUnknown), close_connection_(close) {} void SetStatusCode(HttpStatusCode code) { status_code_ = code; } void SetStatusMessage(const String& message) { status_message_ = message; } void SetCloseConnection(bool on) { close_connection_ = on; } bool CloseConnection() const { return close_connection_; } void SetContentType(const String& contentType) { AddHeader("Content-Type", contentType); } // FIXME: replace String with StringPiece void AddHeader(const String& key, const String& value) { headers_[key] = value; } void SetBody(const String& body) { body_ = body; } void AppendToBuffer(Buffer* output) const; private: std::map<String, String> headers_; HttpStatusCode status_code_; // FIXME: add http version String status_message_; bool close_connection_; String body_; }; } // namespace net } // namespace fun
[ "maxidea1024@gmail.com" ]
maxidea1024@gmail.com
1b2067eeb9bdd52b09a76829961dc5ab4e6ad1cc
43334384ff8cc65b29301659bbd5a63f4bfae378
/base/field/FairField.h
a6b22776eeda9fee7f046079a89e3fbb772029d6
[]
no_license
yeleisun/SpiRITROOT
b11027e50cfe7e0c9017c24f8cec3db80e73b3a8
c8717f19547a948400b687c070110c4d67a9ea2d
refs/heads/master
2021-01-19T20:34:29.012437
2014-08-22T02:12:25
2014-08-22T02:12:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,400
h
// ------------------------------------------------------------------------- // ----- FairField header file ----- // ----- Created 06/01/04 by M. Al-Turany ----- // ----- Redesign 13/02/06 by V. Friese ----- // ----- Redesign 04/08/06 by M. Al-Turany ----- // ------------------------------------------------------------------------- /** FairField.h ** @author M.Al-Turany <m.al/turany@gsi.de> ** @author V.Friese <v.friese@gsi.de> ** @since 06.01.2004 ** @version1.0 ** ** Abstract base class for magnetic fields in FAIR ** Concrete field should implement the pure virtual methods ** GetBx, GetBy and GetBz and/or GetBxyz ** ** Note: Field values should be returned in kG (thanks to GEANT3) **/ #ifndef FAIRFIELD_H #define FAIRFIELD_H 1 #include "RVersion.h" // for ROOT_VERSION_CODE #include "Riosfwd.h" // for ostream #include "Rtypes.h" // for Double_t, Bool_t, etc #if ROOT_VERSION_CODE < 333824 #ifndef ROOT_TVirtualMagField #define ROOT_TVirtualMagField // copied from ROOT for backward compatibility with ROOT versions before 5.24 #include "TNamed.h" class TVirtualMagField : public TNamed { public: TVirtualMagField() : TNamed() {} TVirtualMagField(const char* name) : TNamed(name,"") {} virtual ~TVirtualMagField() {} virtual void Field(const Double_t* x, Double_t* B) = 0; ClassDef(TVirtualMagField, 1) // Abstract base field class }; ClassImp(TVirtualMagField) #endif #else #include "TVirtualMagField.h" #endif #include <stdio.h> // for printf #include <iostream> // for operator<<, basic_ostream, etc #include "FairLogger.h" class FairField : public TVirtualMagField { public: /** Default constructor **/ FairField(); /** Constructor with name and title **/ FairField(const char* name, const char* title = "FAIR Magnetic Field"); FairField& operator=(const FairField&) {return *this;} /** Destructor **/ virtual ~FairField(); /** Intialisation. E.g. read in the field map. If needed, to be ** implemented in the concrete class. **/ virtual void Init() { }; /** Test whether field type is Constant **/ Bool_t IsConst(); /** Test whether field typ is Map **/ Bool_t IsMap(); /** Field type ( 0=constant, 1=map, 2=map sym2, 3 = map sym3 ) **/ Int_t GetType() const { return fType; } /** Get x component of magnetic field [kG] ** @param x,y,z Position [cm] **/ virtual Double_t GetBx(Double_t x, Double_t y, Double_t z) {LOG(WARNING)<<"FairField::GetBx Should be implemented in User class"<<FairLogger::endl; return 0;} /** Get y component of magnetic field [kG] ** @param x,y,z Position [cm] **/ virtual Double_t GetBy(Double_t x, Double_t y, Double_t z) {LOG(WARNING)<<"FairField::GetBy Should be implemented in User class"<<FairLogger::endl; return 0;} /** Get z component of magnetic field [kG] ** @param x,y,z Position [cm] **/ virtual Double_t GetBz(Double_t x, Double_t y, Double_t z) {LOG(WARNING)<<"FairField::GetBz Should be implemented in User class"<<FairLogger::endl; return 0;} /** Get magnetic field. For use of GEANT3 ** @param point Coordinates [cm] ** @param bField (return) Field components [kG] **/ virtual void GetFieldValue(const Double_t point[3], Double_t* bField); void Field(const Double_t point[3], Double_t* B) {GetFieldValue(point,B);} /** Screen output. To be implemented in the concrete class. **/ virtual void Print(Option_t* option = "") const {;} virtual void GetBxyz(const Double_t point[3], Double_t* bField) {LOG(WARNING)<<"FairField::GetBxyz Should be implemented in User class"<<FairLogger::endl;} /**Fill Paramater*/ virtual void FillParContainer() {LOG(WARNING)<<"FairField::FillParContainer Should be implemented in User class"<<FairLogger::endl;} protected: /** Field type. 1 = constant field, 2 = field map. **/ Int_t fType; private: FairField(const FairField&); // FairField& operator=(const FairField&); //TODO: Check why the htrack needs this ClassDef(FairField,4); }; #endif
[ "geniejhang@majimak.com" ]
geniejhang@majimak.com
bd6962ad820dd13b16912b07c99ee5a9ce8d0a70
58e37a43d291d1884234f86b855b5f7da55725ef
/Stack/Basics/stack_using_vector.cpp
87b0918789646d046daffb7ea835a2cf7d932082
[]
no_license
shashank9aug/DSA_CB
74337f8fb5dde5b94b380512dcec39a13e643690
1301329e4f9fd5105b4cb3c9d0f5c5772ed890ce
refs/heads/master
2023-08-18T05:35:42.946559
2021-10-15T10:04:52
2021-10-15T10:04:52
370,120,570
2
0
null
null
null
null
UTF-8
C++
false
false
655
cpp
#include <iostream> #include <vector> using namespace std; //Implementation of Stack Data Structure using Vector class Stack{ private: vector<int> v; public: void push(int data){ v.push_back(data); } bool empty(){ return v.size()==0; } void pop(){ if(!empty()){ v.pop_back(); } } int top(){ return v[v.size()-1]; } }; int main() { Stack s; for(int i=1;i<=5;i++){ s.push(i*i); } //Try to print the content of the stack by popping each element while(!s.empty()){ cout<<s.top()<<endl; s.pop(); } return 0; }
[ "shekhar1245shashank@gmail.com" ]
shekhar1245shashank@gmail.com
bfafe3e115a07d4ac9a0039d87b84cf2d65e5df2
656e60aa1ac1e32a49d58e5e614c4ade97cc2c92
/pixelloop.cc
1b3b696a2c0417f88a06a710aff46bc2dc82116c
[]
no_license
rahmanamanullah/hawki
a776fc43e40b7a299bd739d3b81f17f81f85f574
6121b1031170bdb294c9c4222944ea000e72a0d3
refs/heads/master
2021-01-23T00:44:51.375906
2017-05-30T14:31:54
2017-05-30T14:31:54
92,840,809
0
1
null
null
null
null
UTF-8
C++
false
false
1,455
cc
for (int j=0; j<npix; j++) { // Loop over pixels vector<float> skyvec; for (unsigned int i = 0; i < imagpx.size(); i++) { // Loop over image stack float pval = imagpx[i][j]; // Data value int mval = maskpx[i][j]; // Mask value // Insert into a sorted list unless the pixel is masked // if (mval == 0) { // Not masked bool inserted = false; vector<float>::iterator ii = skyvec.begin(); while (!inserted && skyvec.size() > 0 && ii != skyvec.end()) { if (pval < *ii) { skyvec.insert(ii,pval); inserted = true; } ii++; } if (!inserted) skyvec.push_back(pval); // Insert at the end } } int nim = skyvec.size() - 2*nrej; // Number of images used for this pixel if (nim < 0) nim = 0; nimuse[j] = nim; // Are there enough values in the list to continue? // if (nim > 1) { int n1=nrej, n2=skyvec.size()-nrej; // Calculate mean // float val = 0.0; for (int n=n1; n<n2; n++) { float foo = skyvec[n]; val += foo; } val /= n2-n1; skyval[j] = val; // Calculate RMS // float rms = 0.0; for (int n=n1; n<n2; n++) { float foo = skyvec[n]; foo -= val; rms += foo * foo; } rms /= n2-n1; skyrms[j] = rms; } else { skyval[j] = 0.0; skyrms[j] = 0.0; } } // End of loop over pixels
[ "rahman@snova03.fysik.su.se" ]
rahman@snova03.fysik.su.se
c30e8679191b1eac3398319962ba79e20ba8bdfb
3e7ae0d825853090372e5505f103d8f3f39dce6d
/AutMarine v4.2.0/AutLib/HydroDynamics/CFD-0/CFD/Field/FvField2d_Function.hxx
8eb440b28f10ac19977606e25b6a7da9221a02e8
[]
no_license
amir5200fx/AutMarine-v4.2.0
bba1fe1aa1a14605c22a389c1bd3b48d943dc228
6beedbac1a3102cd1f212381a9800deec79cb31a
refs/heads/master
2020-11-27T05:04:27.397790
2019-12-20T17:59:03
2019-12-20T17:59:03
227,961,590
0
0
null
null
null
null
UTF-8
C++
false
false
503
hxx
#pragma once #ifndef _FvField_Function_Header #define _FvField_Function_Header #include <FvField2d.hxx> namespace AutLib { namespace FvLib { template<typename T> class FvField2d_Function : public FvField2d<T> { private: T(*theValueFunction_)(const Geom_Pnt2d& theCoord); public: FvField2d_Function(T(*theValueFunction)(const Geom_Pnt2d&)); virtual T Value(const Geom_Pnt2d& theCoord) const; }; } } #include <FvField2d_FunctionI.hxx> #endif // !_FvField_Function_Header
[ "aasoleimani86@gmail.com" ]
aasoleimani86@gmail.com
664286675dfb940e9faa187e70569be55a601d88
16790af9c66ecca10eb32c8ee9396bfb43bcf5a1
/src/shared/sfml/system/ParallaxSystem.cpp
754705f797c898c7ba87486fc6753a6c5aad8ee7
[]
no_license
TomCOUSIN/R-Type
03ec48af00ca9876df7d910af1c37760b440dffc
17028d3121bbfbcf1078f020483759c7764f8560
refs/heads/master
2021-05-17T12:09:49.763507
2019-12-03T08:06:12
2019-12-03T08:06:12
250,768,399
0
0
null
null
null
null
UTF-8
C++
false
false
1,752
cpp
/* ** EPITECH PROJECT, 2022 ** CPP_rtype_2019 ** File description: ** Created by tomcousin, */ #include "ParallaxSystem.hpp" #include "Position.hpp" #include "Speed.hpp" rtype::sfml::system::ParallaxSystem::ParallaxSystem(rtype::engine::GameEngine &engine) : _engine(engine) {} void rtype::sfml::system::ParallaxSystem::update(float const &delta) { if (!_engine.hasComponentStorage<engine::component::Position>() && !_engine.hasComponentStorage<engine::component::Speed>()) return; auto position_store = _engine.getComponentStorage<engine::component::Position>(); auto speed_store = _engine.getComponentStorage<engine::component::Speed>(); std::shared_ptr<engine::component::Position> position = nullptr; std::shared_ptr<engine::component::Speed> speed = nullptr; for (auto &entity : _entities) { if (position_store.entityHasComponent(entity) && speed_store.entityHasComponent(entity)) { position = position_store.getComponent<engine::component::Position>(entity); speed = speed_store.getComponent<engine::component::Speed>(entity); if (position->x >= -1920) { position->x -= speed->x; } else { position->x = -1 * speed->x; } } } } void rtype::sfml::system::ParallaxSystem::addEntity(const rtype::engine::entity::Entity &entity) { _entities.emplace_back(entity); } void rtype::sfml::system::ParallaxSystem::removeEntity(const rtype::engine::entity::Entity &entity) { for (unsigned long index = 0; index < _entities.size(); ++index) { if (_entities[index] == entity) { _entities.erase(_entities.begin() + index); break; } ++index; } }
[ "tom.cousin@epitech.eu" ]
tom.cousin@epitech.eu
f09920e851fdc04e91d886072c96eb5ecd5890b7
6e9e3777f5f19ef7ae31ab0db66319e8aeb50c58
/binary-search/oj380.cpp
dd56e0377f6b04dd20800df7eb61bd9184de6b5d
[]
no_license
cuxle/interviewAndAlgorithm-project
e0c7cd2504d8e29271a6a996c6ff94765e690660
2d3977603186593da2ede257bf9ebf84ff848a31
refs/heads/main
2023-02-21T01:03:05.073448
2021-01-22T06:53:51
2021-01-22T06:53:51
324,364,712
0
0
null
null
null
null
UTF-8
C++
false
false
1,050
cpp
#include <iostream> #include <string> #include <algorithm> using namespace std; struct node { int id; string num; }; int n; node creature[105]; bool cmp(const node &n1, const node &n2) { if (n1.num.size() == n2.num.size()) { return n1.num > n2.num; } return n1.num.size() > n2.num.size(); } //bool cmp(const node &n1, const node &n2) //{ // // if (n1.num.length() > n2.num.length()) return true; // if (n1.num.length() < n2.num.length()) return false; // if (n1.num.length() == n2.num.length()) { // for (int i = 0; i < n2.num.length(); i++) { // if (n1.num.at(i) > n2.num.at(i)) { // return true; // } else if (n1.num.at(i) < n2.num.at(i)) { // return false; // } // } // } // return false; //} int main() { cin >> n; for (int i = 0; i < n; i++) { cin >> creature[i].num; creature[i].id = i + 1; } sort(creature, creature + n, cmp); // for (int i = 0; i < n; i++) { // cout << "i:" << creature[i].id << " " << creature[i].num << endl; // } cout << creature[0].id << endl; cout << creature[0].num << endl; }
[ "cuixiaolele@gmail.com" ]
cuixiaolele@gmail.com
d68745ec470f217138bb243cf249b87d17744915
3a2af230da7d699df36e06ac2358f1f240d47880
/2020_November/12.cpp
22a5d0a887e64e81d7c19b6fd45e57598e508ab2
[ "MIT" ]
permissive
zzz0906/LeetCode
96e6baca4355cf842826d650e111a65b4f8d93b8
6c2ad7ecb91343033362bcb9e6e90766918bef5e
refs/heads/master
2023-06-23T11:18:21.610633
2023-06-23T00:22:52
2023-06-23T00:22:52
93,714,713
22
0
null
2021-08-17T14:17:30
2017-06-08T06:26:02
C++
UTF-8
C++
false
false
1,966
cpp
#include <vector> #include <string> #include <map> using namespace std; class Solution { public: vector<int> tmpnums; vector<int> original; vector<int> tmp; vector<vector<int> > answer; vector<vector<int> > realanswer; void dfs(int layer){ // reach the end of index return if (layer == tmpnums.size()) { answer.push_back(tmp); return; } for (int i = 1; i < tmpnums.size()+1; i++){ bool flag = false; //determine whether it in the index order for (int j = 0; j < layer;j++) if (tmp[j] == i){ flag = true; break; } //if it's not in the index order if (flag == false){ tmp.push_back(i); dfs(layer+1); tmp.pop_back(); } } } vector<vector<int> > permuteUnique(vector<int>& nums) { tmpnums = nums; original = nums; dfs(0); for (int i = 0; i < answer.size();i++){ vector<int> tmp; for (int j = 0; j < answer[i].size();j++){ tmp.push_back(original[answer[i][j]-1]); //str_tmp += '0' + original[answer[i][j]-1]; } bool findse = false; for (int j = 0; j < realanswer.size(); j++){ bool tmpfind = true;//if all elements is the same then there is duplicates answer for (int k = 0; k < realanswer[j].size();k++) if (realanswer[j][k] != tmp[k]){ tmpfind = false; break; } if (tmpfind){ findse = true; break; } } if (findse == false) realanswer.push_back(tmp); } return realanswer; } };
[ "zzz879978@outlook.com" ]
zzz879978@outlook.com
76e5f350d4cff237d853ad278c9c3b98361d72f5
d59cac47428e339303c810ea9f4d6ecb3d72c62e
/P4072/gen.cpp
11041901a9765763cb838b1e58dba2b0583f65d3
[]
no_license
cppascalinux/luogu
6ceeb8c2299c5064c7e78d4810d74694d01a9af9
8fede52b11885b2401c4b67eb9b00ac2152a0133
refs/heads/master
2022-01-28T22:01:09.368738
2022-01-11T06:21:31
2022-01-11T06:21:31
178,681,888
0
0
null
null
null
null
UTF-8
C++
false
false
284
cpp
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<random> using namespace std; int n=3000,m=1000; int main() { freopen("march.in","w",stdout); random_device rnd; printf("%d %d\n",n,m); for(int i=1;i<=n;i++) printf("%d ",rnd()%10+1); return 0; }
[ "cppascalinux@gmail.com" ]
cppascalinux@gmail.com
e16528497f3d37f1c277261f3cdcbe880d5bac1a
493399382327eb210a4abe2f2f5322ce53b4e60e
/src/test/base64_tests.cpp
19984c75c4dc01b971a8bdbc64c52ad189b4fe03
[ "MIT" ]
permissive
MotoAcidic/Vipo
4ca18d9485c228b617b7cb4ebf13b150918a1711
1932b60a6c40d514d1ea02e36e70ace2e72cb7b5
refs/heads/master
2023-01-14T08:04:20.002866
2020-11-21T17:09:53
2020-11-21T17:09:53
299,599,163
0
0
MIT
2020-09-29T11:43:10
2020-09-29T11:43:09
null
UTF-8
C++
false
false
885
cpp
// Copyright (c) 2011-2013 The Bitcoin Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "utilstrencodings.h" #include "test/test_vipo.h" #include <boost/test/unit_test.hpp> BOOST_FIXTURE_TEST_SUITE(base64_tests, BasicTestingSetup) BOOST_AUTO_TEST_CASE(base64_testvectors) { static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"}; static const std::string vstrOut[] = {"","Zg==","Zm8=","Zm9v","Zm9vYg==","Zm9vYmE=","Zm9vYmFy"}; for (unsigned int i=0; i<sizeof(vstrIn)/sizeof(vstrIn[0]); i++) { std::string strEnc = EncodeBase64(vstrIn[i]); BOOST_CHECK(strEnc == vstrOut[i]); std::string strDec = DecodeBase64(strEnc); BOOST_CHECK(strDec == vstrIn[i]); } } BOOST_AUTO_TEST_SUITE_END()
[ "71797687+Vipo-Crypto@users.noreply.github.com" ]
71797687+Vipo-Crypto@users.noreply.github.com
c78b4d3c7c47e23b51beaaeb484a2eb094f60e88
e3ac6d1aafff3fdfb95159c54925aded869711ed
/Temp/StagingArea/Data/il2cppOutput/t1775260635.h
2cc4062f4e9fff58de15bfc25f93b619995f9c21
[]
no_license
charlantkj/refugeeGame-
21a80d17cf5c82eed2112f04ac67d8f3b6761c1d
d5ea832a33e652ed7cdbabcf740e599497a99e4d
refs/heads/master
2021-01-01T05:26:18.635755
2016-04-24T22:33:48
2016-04-24T22:33:48
56,997,457
1
0
null
null
null
null
UTF-8
C++
false
false
526
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> struct t3366553055; struct t537683269; struct t1363551830; struct Il2CppObject; #include "t2585444626.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif struct t1775260635 : public t2585444626 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "charlotteantschukovkjaer@Charlottes-MacBook-Air.local" ]
charlotteantschukovkjaer@Charlottes-MacBook-Air.local
17deedb799cd64780565972889b845af344a5a4f
f4e1e6b90bd2a6407825a332fe0cfa2745eae2b2
/arducar.ino
1e1dadbe098a5a61d9ebf52061ba7cb3bf2c7063
[]
no_license
Bejjoeqq/arduinocar
eca0911e5a7e1863b38c2af834afb5147e289ab5
62f21d1658141edbdfb0123e471e391255bc4d83
refs/heads/master
2022-12-03T06:32:45.797270
2020-08-24T18:20:57
2020-08-24T18:20:57
290,005,574
0
0
null
null
null
null
UTF-8
C++
false
false
2,861
ino
#define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> // You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = "uUTyuB64u0kLvPi0Xy_Hxuok3S_F2eTe"; // Your WiFi credentials. // Set password to "" for open networks. char ssid[] = "Kopatel"; char pass[] = "dttb5381"; int PWMA=D2; //Right side int PWMB=D5; //Left side int DA=D3; //Right reverse int DB=D4; //Left reverse int MAX_PWM_VOLTAGE = 100; void setup() { Serial.begin(9600); Blynk.begin(auth, ssid, pass); pinMode(PWMA, OUTPUT); pinMode(PWMB, OUTPUT); pinMode(DA, OUTPUT); pinMode(DB, OUTPUT); } void loop(){ Blynk.run(); } // Handling Joystick data BLYNK_WRITE(V0) { int x = param.asInt(); if(x==1){ digitalWrite(PWMA, MAX_PWM_VOLTAGE); digitalWrite(DA, LOW); digitalWrite(PWMB, MAX_PWM_VOLTAGE); digitalWrite(DB, LOW); } else if(x==0){ digitalWrite(PWMA, LOW); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, LOW); } } BLYNK_WRITE(V1) { int x = param.asInt(); if(x==1){ digitalWrite(PWMA, LOW); digitalWrite(DA, MAX_PWM_VOLTAGE); digitalWrite(PWMB, LOW); digitalWrite(DB, MAX_PWM_VOLTAGE); } else if(x==0){ digitalWrite(PWMA, LOW); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, LOW); } } BLYNK_WRITE(V2) { int x = param.asInt(); if(x==1){ digitalWrite(PWMA, MAX_PWM_VOLTAGE); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, LOW); } else if(x==0){ digitalWrite(PWMA, LOW); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, LOW); } } BLYNK_WRITE(V3) { int x = param.asInt(); if(x==1){ digitalWrite(PWMA, LOW); digitalWrite(DA, LOW); digitalWrite(PWMB, MAX_PWM_VOLTAGE); digitalWrite(DB, LOW); } else if(x==0){ digitalWrite(PWMA, LOW); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, LOW); } } BLYNK_WRITE(V4) { int x = param.asInt(); if(x==1){ digitalWrite(PWMA, MAX_PWM_VOLTAGE); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, MAX_PWM_VOLTAGE); } else if(x==0){ digitalWrite(PWMA, LOW); digitalWrite(DA, LOW); digitalWrite(PWMB, LOW); digitalWrite(DB, LOW); } } BLYNK_WRITE(V5) { MAX_PWM_VOLTAGE = param.asInt(); }
[ "32904416+Bejjoeqq@users.noreply.github.com" ]
32904416+Bejjoeqq@users.noreply.github.com
e2e632a7a343fa621fe061eed4cfc8921463b791
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/oldd/Basic-Dynamic-Mesh-Tutorial-OpenFoam/TUT16/2.04/uniform/time
275332721b76b5a3762a0775af759185b4395b88
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
835
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "2.04/uniform"; object time; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // value 2.04000000000000004; name "2.04"; index 951; deltaT 0.00222222; deltaT0 0.00222222; // ************************************************************************* //
[ "thomasdigiusto@me.com" ]
thomasdigiusto@me.com
2621fe760ed10989fe8d5f4f0907381dfd3336ce
95791ff410128726d8d940cd0014535ccb9c16af
/第10章/多项式类/include/Polynomial.h
abaf2ecfa0f84b1a47652c7cdee4a02617d89541
[]
no_license
LiuXJingx/liu_xinjing
d7c6162d636b7040d41907da47975666bdbf8a9a
e752bb3ce882ef1217b5b9f9e897b194011b5c66
refs/heads/master
2020-04-02T10:42:24.754626
2019-04-21T11:10:44
2019-04-21T11:10:44
154,350,958
0
0
null
null
null
null
UTF-8
C++
false
false
550
h
#ifndef POLYNOMIAL_H #define POLYNOMIAL_H #include <iostream> using namespace std; class Polynomial { public: Polynomial(); Polynomial operator+(const Polynomial&)const; Polynomial operator-(const Polynomial&)const; Polynomial operator*(const Polynomial&); Polynomial& operator+=(const Polynomial&); Polynomial& operator-=(const Polynomial&); Polynomial& operator*=(const Polynomial&); void InPolynomial(); void OutPolynomial(); void polynomial(Polynomial&); private: int exponents[10]; int coefficients[10]; }; #endif // POLYNOMIAL_H
[ "2464923693@qq.com" ]
2464923693@qq.com
d93d6a7740ca217b9b878e0067a01e87786575e1
79b6642983c9056d9a93af7c034d9117846a9abe
/include/AME/ThreadManager.hpp
394a2a041a29d02c4878934f145649aa70efd773
[]
no_license
sebgtfr/AME
3774ddbafe046dec021a6c4cd58d1c4d6cac1388
82b084e447932faad67ff6927b6d876defe6e87a
refs/heads/master
2020-07-14T16:04:21.514625
2020-04-29T14:40:46
2020-05-02T16:30:15
205,349,068
0
0
null
null
null
null
UTF-8
C++
false
false
2,228
hpp
/** * \file ThreadManager.hpp * \author Sébastien Le Maire * \date 28/04/2020 */ #ifndef _AME_THREADMANAGER_HPP_ # define _AME_THREADMANAGER_HPP_ # include <list> # include <unordered_set> # include <thread> # include <mutex> # include <shared_mutex> # include "AME/Tools/import.hpp" namespace AME { class Core; class AME_IMPORT ThreadManager { public: /* Aliases */ using Id = ::std::thread::id; /* Ctor & Dtor */ ThreadManager(void); ~ThreadManager(void); /* Methods */ void add(ThreadManager::Id const &id); void add(Core *core, unsigned int const nbThread = 1); void remove(ThreadManager::Id const &id); void remove(Core *core, unsigned int const nbThread = 1); void removeAll(void); bool exist(ThreadManager::Id const &id) const; void clearGarbage(void); /* Accessors */ size_t getNbWorkingThread(void) const; size_t getNbThreadPool(void) const; private: /* Attributes */ ::std::unordered_set<Id> _threads; // Container of all working thread of the pool. (inner or outer) ::std::list<::std::thread> _innerQueue; // Inner Container of thread's instances. ::std::thread _garbage; // Thread need to be clear if joinning failed. mutable ::std::shared_mutex _locker; // locker for concurrency using by threads. mutable ::std::shared_mutex _lockerQueue; // locker for concurrency using by innerQueue. mutable ::std::mutex _lockerGarbage; // locker for concurrency using by garbage. /* Methods */ void remove(void); void joinThread(::std::thread &&thread); void joinThreads(::std::list<::std::thread> &&threads); }; /********** Inline definitions **********/ /* Public */ /* Ctor & Dtor */ inline ThreadManager::ThreadManager(void) { } } #endif /* !_AME_THREADMANAGER_HPP_ */
[ "sebastien.le-maire@epitech.eu" ]
sebastien.le-maire@epitech.eu
55c4ca17dd3f4e7ee15eb4272947b237da479e84
c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e
/Source/Source/Tools/GameDesignerEditor/AtlKG3DEngineProxy/IndeSource/SO3World/KDoodad.h
49cbe4d7fedac2e69f70d72ca52e5c76b6c4430a
[ "MIT" ]
permissive
uvbs/FullSource
f8673b02e10c8c749b9b88bf18018a69158e8cb9
07601c5f18d243fb478735b7bdcb8955598b9a90
refs/heads/master
2020-03-24T03:11:13.148940
2018-07-25T18:30:25
2018-07-25T18:30:25
142,408,505
2
2
null
2018-07-26T07:58:12
2018-07-26T07:58:12
null
GB18030
C++
false
false
5,387
h
/************************************************************************/ /* 场景装饰物 */ /* Copyright : Kingsoft 2005 */ /* Author : Zhu Jianqiu */ /* History : */ /* 2004.12.31 Create */ /* Comment : */ /* 轻量级的场景物体对象 */ /************************************************************************/ #ifndef _KDOODAD_H_ #define _KDOODAD_H_ #include "Luna.h" #include "KSceneObject.h" #include "IDoodadFile.h" #define MAX_ROLL_FRAME 90 * GAME_FPS enum DOODAD_STATE { dsInvalid = 0, // 受控状态 dsIdle, // 正常状态 dsBeHit, // 被操作或被击 dsAfterHit, // 打开后或被击死亡 dsTotal }; class KCharacter; class KLootList; class KDoodadTemplate; class KDoodad : public KSceneObject { public: BOOL Init(); void UnInit(); BOOL Activate(void); BOOL Load(const KDOODAD_DATA& crDoodadData); void ChangeState(DOODAD_STATE eState); BOOL CheckOpen(KPlayer* pOpener); BOOL HaveQuest(KPlayer* pPlayer); int GetOpenFrame(KPlayer* pOpener); DWORD GetRecipeID(); BOOL CheckDistance(KPlayer* pOpener); private: void DoIdle(); void DoBeHit(); void DoAfterHit(); #ifdef _CLIENT public: void OpenLootList(KCharacter* pCharacter); void UpdateMiniMapMark(); #endif #ifdef _SERVER public: void LootOver(); BOOL SetDelayRemove(); void SetDisappearFrames(int nDisappearFrames, BOOL bDisappearToReviveList = true); int GetDisappearFrames(); void Revive(); BOOL PerOpen(KPlayer* pPlayer); BOOL SetScript(const char* pcszFileName); // 修改挂的脚本的路径 KLootList* GenerateLootList(KPlayer* pCharacter); // 生成掉落表 KLootList* GenerateEmptyLootList(); // 生成空的掉落表 void Close(); private: void Remove(BOOL bGotoReviveList = true); #endif public: DWORD m_dwTemplateID; // 模板编号 char m_szName[_NAME_LEN]; // 名称 DOODAD_KIND m_eKind; // 类型 int m_nOpenFrames; // 打开帧数 int m_nDisappearFrames; // 消失帧数 BOOL m_bDisappearToReviveList; // 消失后不删除,而是进重生队列 DOODAD_STATE m_eState; // 状态 DWORD m_dwNpcTemplateID; DWORD m_dwRepresentID; // Doodad的表现ID BOOL m_bLooted; // 尸体是否被拾取完的标记 int m_nObstacleGroup; // 控制动态障碍的分组 DWORD m_dwReviveID; // 重生群组的编号 int m_nCurrentReliveIndex; // 当前复活点的编号 KDoodadTemplate* m_pTemplate; // 指向模板的指针 DWORD m_dwScriptID; // 绑定脚本ID KLootList* m_pLootList; // 拾取列表 #ifdef _SERVER int m_nLastLootCount; // 剩余的拾取次数 DWORD m_dwOpenPlayerID; // 当前操作doodad的玩家 DWORD m_dwOwnerID; // 脚本创建这个Doodad的PlayerID #endif #ifdef _CLIENT int m_nUpdateMiniMapMarkFrame; // 更新小地图标记的计时器 #endif public: DECLARE_LUA_CLASS(KDoodad); DECLARE_LUA_DWORD(TemplateID); DECLARE_LUA_STRING(Name, _NAME_LEN); DECLARE_LUA_ENUM(Kind); DECLARE_LUA_INTEGER(OpenFrames); DECLARE_LUA_INTEGER(DisappearFrames); DECLARE_LUA_DWORD(RepresentID); DECLARE_LUA_DWORD(NpcTemplateID); DECLARE_LUA_DWORD(ScriptID); #ifdef _SERVER DECLARE_LUA_DWORD(OwnerID); #endif public: int LuaCanDialog(Lua_State* L); int LuaIsSelectable(Lua_State* L); int LuaCanSearch(Lua_State* L); int LuaHaveQuest(Lua_State* L); int LuaGetRecipeID(Lua_State* L); #ifdef _CLIENT int LuaGetLootItem(Lua_State* L); int LuaGetLootMoney(Lua_State* L); int LuaCanLoot(Lua_State* L); int LuaDistributeItem(Lua_State* L); int LuaGetLooterList(Lua_State* L); int LuaCanSit(Lua_State* L); int LuaGetRollFrame(Lua_State* L); #endif #ifdef _SERVER int LuaSetScript(Lua_State* L); int LuaGenerateEmptyLootList(Lua_State* L); int LuaAddLootItem(Lua_State* L); int LuaSetDisappearFrames(Lua_State* L); int LuaIsDoorClose(Lua_State* L); int LuaOpenDoor(Lua_State* L); int LuaCloseDoor(Lua_State* L); int LuaSetCustomInteger4(Lua_State* L); int LuaGetCustomInteger4(Lua_State* L); int LuaSetCustomInteger2(Lua_State* L); int LuaGetCustomInteger2(Lua_State* L); int LuaSetCustomInteger1(Lua_State* L); int LuaGetCustomInteger1(Lua_State* L); int LuaSetCustomUnsigned4(Lua_State* L); int LuaGetCustomUnsigned4(Lua_State* L); int LuaSetCustomUnsigned2(Lua_State* L); int LuaGetCustomUnsigned2(Lua_State* L); int LuaSetCustomUnsigned1(Lua_State* L); int LuaGetCustomUnsigned1(Lua_State* L); int LuaSetCustomBoolean(Lua_State* L); int LuaGetCustomBoolean(Lua_State* L); // 偏移量, 第几个Bit(从左到右, 从0开始计数), 数值为true/false int LuaSetCustomBitValue(Lua_State* L); int LuaGetCustomBitValue(Lua_State* L); int LuaSetCustomString(Lua_State* L); int LuaGetCustomString(Lua_State* L); #endif //_SERVER }; #endif
[ "dark.hades.1102@GAMIL.COM" ]
dark.hades.1102@GAMIL.COM
ac1d784eb3fac4b05ecd38f16635dee0c28aa9ee
c997f142a464cc98c52f058ede52c610c0a33e22
/DataStructure/HString/HString.cpp
780f3952e5f9d5c6d0b7b423893d751a22887433
[]
no_license
dusong7/DSS_learn
2d33175d3cbf8ce266960b577ccb93b8b837484d
35f07162363343fb384dd7afec9a9af19bc1d1f8
refs/heads/master
2021-01-11T01:09:58.840204
2017-07-12T13:12:12
2017-07-12T13:12:12
71,048,697
1
0
null
null
null
null
GB18030
C++
false
false
2,205
cpp
/* 串 堆分配 //堆分配数据定义 typedef struct{ char *ch;//非空为NULL,否则为分配的空间 int length;//串长度 }HString; //串 堆分配声明 void InitString(HString &H);//初始化 Status StrAssigne(HString &T,char *chars);//生成一个数据的值为chars int StrLength(HString S);//计算长度 int StrCompare(HString S,HString T);//字符串按字典顺序比较 Status ClearString(HString &S);//清空串 Status Concat(HString &T,HString S1,HString S2);//连接串 Status SubString(HString &Sub,HString S,int pos,int len);//求子串 */ #include "head.h" void InitString(HString &H){ H.ch=NULL; H.length=0; } Status StrAssigne(HString &T,char *chars){ //生成一个数据的值为chars if(T.ch)free(T.ch);//释放原有数据 int i;char *c; for(i=0,c=chars;*c;++i,++c);//求chars的长度 printf("%d\n",i); if(!i){ T.ch=NULL; T.length=0; }else{ if(!(T.ch=(char *)malloc((i+1)*sizeof(char))))exit(OVERFLOW); int j; for(j=0;j<i;j++)T.ch[j]=chars[j]; T.length=i; T.ch[i]='\0'; } return OK; } int StrLength(HString S){ return S.length; } int StrCompare(HString S,HString T){ //比较S与 T的大小,如果S>T 返回 >0 相等为 0 printf("%d,%d\n",S.length,T.length); for(int i=0;i<S.length && i<T.length;++i) if(S.ch[i]!=T.ch[i])return S.ch[i]-T.ch[i]; return S.length-T.length; } Status ClearString(HString &S){ if(S.ch){free(S.ch);S.ch=NULL;} S.length=0; return OK; } Status Concat(HString &T,HString S1,HString S2){ if(T.ch)free(T.ch); if(!(T.ch=(char *)malloc((S1.length+S2.length+1)*sizeof(char))))exit(OVERFLOW); int i,j; for(i=0;i<S1.length;i++)T.ch[i]=S1.ch[i]; for(j=0;j<S2.length;j++)T.ch[i+j]=S2.ch[j]; T.ch[i+j]='\0'; T.length=i+j; return OK; } Status SubString(HString &Sub,HString S,int pos,int len){ if(pos<1 || pos>S.length || len<0 || len>S.length-pos+1)return ERROR; if(Sub.ch)free(Sub.ch); if(!len){ Sub.ch=NULL; Sub.length=0; }else{ if(!(Sub.ch=(char *)malloc((len+1)*sizeof(char))))exit(OVERFLOW); for(int i=0;i<len;i++)Sub.ch[i]=S.ch[pos-1+i]; Sub.length=len; Sub.ch[len]='\0'; } return OK; }
[ "dusong7@hotmail.com" ]
dusong7@hotmail.com
d63ea7fa884f36d73563928dd9086111e1b855e7
bf76ef3f082ff89bdb971c08dd7c08437d1ac583
/sdk/tests/test_feature/source/test_getset.cpp
1cd230a0b2eeb734711581e1bbd89c14e7c76491
[]
no_license
codecat/angelscript-mirror
5856379863bf4dfa6e31b5101a4485179a2f4ffa
957eac4142448150342afdea46690ef0d45ef434
refs/heads/master
2023-08-11T20:50:24.542448
2023-07-30T14:27:45
2023-07-30T14:27:45
157,086,380
117
43
null
null
null
null
UTF-8
C++
false
false
86,916
cpp
#include "utils.h" #include "../../../add_on/scriptmath/scriptmathcomplex.h" #include "scriptmath3d.h" using namespace std; namespace TestGetSet { bool Test2(); class CLevel { public: float attr; }; CLevel g_level; CLevel &get_Level() { return g_level; } class CNode { public: static CNode *CNodeFactory() {return new CNode();} CNode() {refCount = 1; child = 0;} ~CNode() {if( child ) child->Release();} void AddRef() {refCount++;} void Release() {if( --refCount == 0 ) delete this;} CNode *GetChild() {return child;} void SetChild(CNode *n) {if( child ) child->Release(); child = n; n->AddRef();} Vector3 GetVector() const {return vector;} void SetVector(const Vector3 &v) {vector = v;} Vector3 vector; CNode *child; private: int refCount; }; void Log(const string& s) { assert( s == "hello" ); // PRINTF("Log: %s\n", s.c_str()); } class TestClass { float m_offsetVars[5]; public: TestClass() { m_offsetVars[0] = 0.666f; m_offsetVars[1] = 1.666f; m_offsetVars[2] = 2.666f; m_offsetVars[3] = 3.666f; m_offsetVars[4] = 4.666f; } float get_OffsetVars(unsigned int index) { return m_offsetVars[index]; } }; void formattedPrintAS( std::string& /*format*/, void* a, int typeId_a ) { bool fail = false; if( typeId_a != asTYPEID_FLOAT ) fail = true; if( *(float*)a > 0.667f || *(float*)a < 0.665f ) fail = true; if( fail ) { asIScriptContext *ctx = asGetActiveContext(); ctx->SetException("Wrong args"); } } void CharAssign(char & me, const char & other) { assert(other == 'A'); me = other; } std::string CharToStr(char & me) { std::string result = std::string(1, me); assert(result == "A"); return result; } void StringReplace(asIScriptGeneric *gen) { string s = "foo"; gen->SetReturnObject(&s); } bool Test() { RET_ON_MAX_PORT bool fail = false; int r; CBufferedOutStream bout; COutStream out; asIScriptModule *mod; asIScriptEngine *engine; // Test compound assignment with getset and unsafe references // Problem reported by Sam Tupy { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCES, true); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); assert(mod != NULL); mod->AddScriptSection("test", "class obj { \n" " int v = 0; \n" " int get_v() property { return v; } \n" " void set_v(int n) property { v = n; } \n" " int get_number(int n) { return n; } \n" "} \n" "void main() { \n" " obj@ o = obj(); \n" // Declare without handle to compile. " o.v = 10; \n" " o.v += o.get_number(20); \n" // Not just +=, other assigns too. " assert( o.v == 30 ); \n" "} \n"); r = mod->Build(); if (r < 0) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if (r != asEXECUTION_FINISHED) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test virtual properties and shared classes. It must work when loading from bytecode too // Problem reported by Sam Tupy { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCES, true); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); assert(mod != NULL); mod->AddScriptSection("test", "shared class my_obj { \n" " int get_var() property { return 1; } \n" "} \n"); r = mod->Build(); if (r < 0) TEST_FAILED; // Save module to bytecode, then reload CBytecodeStream stream1("test"); r = mod->SaveByteCode(&stream1); if (r < 0) TEST_FAILED; asDWORD crc32 = ComputeCRC32(&stream1.buffer[0], asUINT(stream1.buffer.size())); if (crc32 != 0x988D6944) { PRINTF("The saved byte code has different checksum than the expected. Got 0x%X\n", crc32); TEST_FAILED; } engine->ShutDownAndRelease(); // Recreate the engine and reload bytecode engine = asCreateScriptEngine(); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCES, true); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->LoadByteCode(&stream1); if (r < 0) TEST_FAILED; // Build a second module referring to the shared class with virtual properties asIScriptModule* mod2 = engine->GetModule("test2", asGM_ALWAYS_CREATE); assert(mod != NULL); mod2->SetAccessMask(3); mod2->AddScriptSection("test", "external shared class my_obj; \n" "void main() { \n" " my_obj o; \n" " assert(o.var == 1); \n" "} \n"); r = mod2->Build(); if (r < 0) TEST_FAILED; r = ExecuteString(engine, "main()", mod2); if (r != asEXECUTION_FINISHED) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test validations of virtual properties upon declaration in scripts { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); assert(mod != NULL); mod->AddScriptSection("test", "void get_f() property {} \n" // invalid, no return value "void set_f() property {} \n" // invalid, no argument "int get_q(int, int) property { return 0; } \n" // invalid, more than one argument "int get_a() property { return 0; } \n" "void set_a(float) property {} \n" // invalid, arg type doesn't match return type of get_a "void set_b(float) property {} \n" "int get_b() property { return 0; } \n" // invalid, return type doesn't match arg type of set_b "void foo() {} \n" "int get_foo() property { return 0; } \n" // invalid, name conflict with foo() "class bar {} \n" "int get_bar() property { return 0; } \n" // invalid, name conflict with class bar "int get_foo2() property { return 0; } \n" "void foo2() {} \n" // invalid, name conflict with get_foo2 property "class A { \n" " void get_f() property {} \n" // invalid, no return value " void set_f() property {} \n" // invalid, no argument " int get_q(int, int) property { return 0; } \n" // invalid, more than one argument " int get_a() property { return 0; } \n" " void set_a(float) property {} \n" // invalid, arg type doesn't match return type of get_a " void set_b(float) property {} \n" " int get_b() property { return 0; } \n" // invalid, return type doesn't match arg type of set_b " void foo() {} \n" " int get_foo() property { return 0; } \n" // invalid, name conflict with foo() " funcdef void bar(); \n" " int get_bar() property { return 0; } \n" // invalid, name conflict with class bar " int get_foo2() property { return 0; } \n" " void foo2() {} \n" // invalid, name conflict with get_foo2 property "} \n" ); r = mod->Build(); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "test (1, 1) : Error : Invalid signature for virtual property\n" "test (2, 1) : Error : Invalid signature for virtual property\n" "test (3, 1) : Error : Invalid signature for virtual property\n" "test (5, 1) : Error : The property 'a' has mismatching types for the get and set accessors\n" "test (7, 1) : Error : The property 'b' has mismatching types for the get and set accessors\n" "test (9, 1) : Error : Name conflict. 'foo' is already used.\n" "test (11, 1) : Error : Name conflict. 'bar' is already used.\n" "test (13, 1) : Error : Name conflict. 'foo2' is a virtual property.\n" "test (15, 3) : Error : Invalid signature for virtual property\n" "test (16, 3) : Error : Invalid signature for virtual property\n" "test (17, 3) : Error : Invalid signature for virtual property\n" "test (19, 3) : Error : The property 'a' has mismatching types for the get and set accessors\n" "test (21, 3) : Error : The property 'b' has mismatching types for the get and set accessors\n" "test (23, 3) : Error : Name conflict. 'foo' is already used.\n" "test (25, 3) : Error : Name conflict. 'bar' is already used.\n" "test (27, 3) : Error : Name conflict. 'foo2' is an object property.\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test validation of global virtual properties upon registration { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); // invalid signature for property r = engine->RegisterGlobalFunction("void get_f() property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; r = engine->RegisterGlobalFunction("void set_f() property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; r = engine->RegisterGlobalFunction("int get_q(int, int) property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; // mismatch type between get/set engine->RegisterGlobalFunction("int get_a() property", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterGlobalFunction("void set_a(float) property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; engine->RegisterGlobalFunction("void set_b(float) property", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterGlobalFunction("int get_b() property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; // name conflict with global function engine->RegisterGlobalFunction("void foo()", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterGlobalFunction("int get_foo() property", asFUNCTION(0), asCALL_GENERIC); if( r != asNAME_TAKEN ) TEST_FAILED; // test name conflict with type engine->RegisterObjectType("bar", 0, asOBJ_REF); r = engine->RegisterGlobalFunction("int get_bar() property", asFUNCTION(0), asCALL_GENERIC); if( r != asNAME_TAKEN ) TEST_FAILED; // name conflict with virtual property engine->RegisterGlobalFunction("int get_foo2() property", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterGlobalFunction("void foo2()", asFUNCTION(0), asCALL_GENERIC); if( r != asNAME_TAKEN ) TEST_FAILED; if( bout.buffer != " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'void get_f() property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'void set_f() property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'int get_q(int, int) property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'void set_a(float) property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'int get_b() property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'int get_foo() property' (Code: asNAME_TAKEN, -9)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'int get_bar() property' (Code: asNAME_TAKEN, -9)\n" " (0, 0) : Error : Failed in call to function 'RegisterGlobalFunction' with 'void foo2()' (Code: asNAME_TAKEN, -9)\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test validation of class member virtual properties upon registration { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->RegisterObjectType("testprop", 0, asOBJ_REF); // invalid signature for property r = engine->RegisterObjectMethod("testprop", "void get_f() property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; r = engine->RegisterObjectMethod("testprop", "void set_f() property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; r = engine->RegisterObjectMethod("testprop", "int get_q(int, int) property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; // mismatch type between get/set engine->RegisterObjectMethod("testprop", "int get_a() property", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterObjectMethod("testprop", "void set_a(float) property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; engine->RegisterObjectMethod("testprop", "void set_b(float) property", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterObjectMethod("testprop", "int get_b() property", asFUNCTION(0), asCALL_GENERIC); if( r != asINVALID_DECLARATION ) TEST_FAILED; // name conflict with object method engine->RegisterObjectMethod("testprop", "void foo()", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterObjectMethod("testprop", "int get_foo() property", asFUNCTION(0), asCALL_GENERIC); if( r != asNAME_TAKEN ) TEST_FAILED; // test name conflict with type engine->RegisterFuncdef("void testprop::bar()"); r = engine->RegisterObjectMethod("testprop", "int get_bar() property", asFUNCTION(0), asCALL_GENERIC); if( r != asNAME_TAKEN ) TEST_FAILED; // name conflict with virtual property engine->RegisterObjectMethod("testprop", "int get_foo2() property", asFUNCTION(0), asCALL_GENERIC); r = engine->RegisterObjectMethod("testprop", "void foo2()", asFUNCTION(0), asCALL_GENERIC); if( r != asNAME_TAKEN ) TEST_FAILED; if( bout.buffer != " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'void get_f() property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'void set_f() property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'int get_q(int, int) property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'void set_a(float) property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'int get_b() property' (Code: asINVALID_DECLARATION, -10)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'int get_foo() property' (Code: asNAME_TAKEN, -9)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'int get_bar() property' (Code: asNAME_TAKEN, -9)\n" " (0, 0) : Error : Failed in call to function 'RegisterObjectMethod' with 'testprop' and 'void foo2()' (Code: asNAME_TAKEN, -9)\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test to make sure only methods with 'property' are identified as virtual property accessors when asEP_PROPERTY_ACCESSOR_MODE is 3 { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_PROPERTY_ACCESSOR_MODE, 3); RegisterStdString(engine); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("test", "int g_current_value_cnt = 0; \n" "int current_value() \n" "{ \n" " g_current_value_cnt++; \n" " return 0; \n" "} \n" "void set_current_value(int x) \n" "{ \n" " string str=''+x; \n" " set_current_value(str); \n" "} \n" "void set_current_value(string x) \n" "{ \n" "// alert('hello!', x); \n" "} \n" "void main() \n" "{ \n" " set_current_value(35); \n" " set_current_value('I will kill you!'); \n" " current_value(); \n" // symbol current_value doesn't match set_current_value as property since they are not flagged as such "} \n"); r = mod->Build(); if (r < 0) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = engine->ShutDownAndRelease(); } // Test to make sure compilation is interrupted when a property has no get accessor // Reported by Patrick Jeeves { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterStdString(engine); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("test", "class T \n" "{ \n" " string a = ''; \n" // member is hidden by set_a " void set_a(const string &in v) property { } \n" "} \n" "void func(const string &in v) {} \n" "void main() \n" "{ \n" " T t; \n" " func(t.a); \n" " if( t.a.length > 0 ) \n" " func('blah'); \n" "} \n"); r = mod->Build(); if (r >= 0) TEST_FAILED; if (bout.buffer != "test (7, 1) : Info : Compiling void main()\n" "test (10, 8) : Error : The property has no get accessor\n" "test (11, 9) : Error : The property has no get accessor\n") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = engine->ShutDownAndRelease(); } // Test crash with symbol lookup when there are multiple set_ accessors for the same property // Reported by Aaron Baker { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_PROPERTY_ACCESSOR_MODE, 2); RegisterStdString(engine); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("test", "int g_current_value_cnt = 0; \n" "int current_value() \n" "{ \n" " g_current_value_cnt++; \n" " return 0; \n" "} \n" "void set_current_value(int x) \n" "{ \n" " string str=''+x; \n" " set_current_value(str); \n" "} \n" "void set_current_value(string x) \n" "{ \n" "// alert('hello!', x); \n" "} \n" "void main() \n" "{ \n" " set_current_value(35); \n" " set_current_value('I will kill you!'); \n" " current_value(); \n" "} \n"); r = mod->Build(); // TODO: Symbol lookup should identify current_value as a property accessor, even though there are multiple ones. asCCompiler::FindPropertyAccessor needs to have separate error codes for different situations, so SymbolLookup can properly interpret the result. if (r >= 0) TEST_FAILED; if (bout.buffer != "test (16, 1) : Info : Compiling void main()\n" "test (20, 3) : Error : Found multiple set accessors for property 'current_value'\n" "test (20, 3) : Info : void set_current_value(int x)\n" "test (20, 3) : Info : void set_current_value(string x)\n") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = engine->ShutDownAndRelease(); } // When script virtual properties are turned off, the global functions that would // otherwise match property accessors shouldn't cause any conflict // Reported by Aaron Baker { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_PROPERTY_ACCESSOR_MODE, 1); // turn off script defined virtual property accessors RegisterStdString(engine); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("test", "int g_current_value_cnt = 0; \n" "int current_value() \n" "{ \n" " g_current_value_cnt++; \n" " return 0; \n" "} \n" "void set_current_value(int x) \n" "{ \n" " string str=''+x; \n" " set_current_value(str); \n" "} \n" "void set_current_value(string x) \n" "{ \n" "// alert('hello!', x); \n" "} \n" "void main() \n" "{ \n" " set_current_value(35); \n" " set_current_value('I will kill you!'); \n" " current_value(); \n" "} \n"); r = mod->Build(); // TODO: Symbol lookup should identify current_value as a property accessor, even though there are multiple ones. asCCompiler::FindPropertyAccessor needs to have separate error codes for different situations, so SymbolLookup can properly interpret the result. if (r < 0) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = engine->ShutDownAndRelease(); } // Test bool property accessor returned as reference in condition // https://www.gamedev.net/forums/topic/700454-failed-assertion-when-compiling-if-statement-checking-get_x-wo-existing-set_x/ { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); r = engine->RegisterObjectType("Foo", 0, asOBJ_REF | asOBJ_NOCOUNT); assert( r >= 0 ); r = engine->RegisterObjectMethod("Foo", "bool &get_HasSucceeded() property", asFUNCTION(0), asCALL_GENERIC); assert( r >= 0 ); r = engine->RegisterGlobalProperty("Foo g_serverDisplayNameTask", (void*)1); assert( r >= 0 ); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("test", "void test() \n" "{ \n" " if( g_serverDisplayNameTask.HasSucceeded ) {} \n" " while( g_serverDisplayNameTask.HasSucceeded ) {} \n" " for( ; g_serverDisplayNameTask.HasSucceeded; ) {} \n" " do {} while( g_serverDisplayNameTask.HasSucceeded ); \n" "} \n"); r = mod->Build(); if (r < 0) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = engine->ShutDownAndRelease(); } // Test complex expression with get property accessor and temporary variables // Reported by Phong Ba { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); RegisterStdString(engine); engine->RegisterObjectMethod("string", "string Replace(const string, const string) const", asFUNCTION(StringReplace), asCALL_GENERIC); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("test", "class TMatch { string Value { get const { return v; } } string v; }" "string QuotedReplacer(TMatch &in match) \n" "{ \n" " string source = 'c'; \n" " return match.Value + source.Replace('a', 'z'); \n" "} \n" "string QuotedReplacer2(TMatch &in match) \n" "{ \n" " string source = 'c'; \n" " return match.get_Value() + source.Replace('a', 'z'); \n" "} \n"); assert(r >= 0); r = mod->Build(); if (r < 0) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "TMatch t; t.v = 'bar'; string s = QuotedReplacer(t); assert(s == 'barfoo');", mod); if (r != asEXECUTION_FINISHED) TEST_FAILED; r = ExecuteString(engine, "TMatch t; t.v = 'bar'; string s = QuotedReplacer2(t); assert(s == 'barfoo');", mod); if (r != asEXECUTION_FINISHED) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = engine->ShutDownAndRelease(); } // Test global property with conversion to string // Reported by Phong Ba { engine = asCreateScriptEngine(); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterStdString(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); r = engine->RegisterObjectType("char", sizeof(char), asOBJ_VALUE | asOBJ_POD); assert(r >= 0); r = engine->RegisterObjectMethod("char", "char &opAssign(const char &in)", asFUNCTION(&CharAssign), asCALL_CDECL_OBJFIRST); assert(r >= 0); r = engine->RegisterObjectMethod("char", "char &opAssign(const uint16 &in)", asFUNCTION(&CharAssign), asCALL_CDECL_OBJFIRST); assert(r >= 0); r = engine->RegisterObjectMethod("char", "string opImplConv() const", asFUNCTION(&CharToStr), asCALL_CDECL_OBJFIRST); assert(r >= 0); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); assert(mod != NULL); r = mod->AddScriptSection("prop", "char get_Prop() property {char c = 0x41; return c;}"); assert(r >= 0); r = mod->AddScriptSection("main", "void main(){string s = string(Prop); assert(s == 'A');}"); assert(r >= 0); r = mod->Build(); if (r < 0) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "main()", mod); if (r != asEXECUTION_FINISHED) TEST_FAILED; r = engine->ShutDownAndRelease(); } // Test with namespace // http://www.gamedev.net/topic/670216-patch-for-namespace-support-in-getsetters/ { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterScriptMath3D(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "namespace nsTest {\n" " class Foo {\n" " Foo() { }\n" " }\n" "}\n" "class Test {\n" " nsTest::Foo@ mFoo = null;\n" " nsTest::Foo@ foo {\n" " get {\n" " if( this.mFoo is null )\n" " @this.mFoo = nsTest::Foo();\n" " return @this.mFoo;\n" " }\n" " }\n" "}\n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test compound assignment with get/set on object returned as handle from other get/set // http://www.gamedev.net/topic/666081-virtual-property-compound-assignment-on-temporary-object-handle-v2300/ { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); bout.buffer = ""; engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = "class Obj { \n" " uint16 prop { \n" " get { return _prop; } \n" " set { _prop = value; } \n" " } \n" " uint16 _prop = 0; \n" "} \n" "Obj @get_Objs(uint idx) property { \n" " return _obj; \n" "} \n" "Obj @_obj = Obj(); \n"; mod = engine->GetModule("Test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "_obj.prop += 1; \n" // direct access "get_Objs(0).prop += 1; \n" // returned from function "Objs[0].prop += 1; \n" // returned from indexed get accessor "assert( _obj._prop == 3 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; if (bout.buffer != "") { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test get/set with handle // http://www.gamedev.net/topic/665609-with-handle-properies-doesnt-work/ { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); bout.buffer = ""; const char *script = "class SceneObject {} \n" "SceneObject @object { \n" " get { \n" " return object_; \n" " } \n" "} \n" "SceneObject @object_; \n" "void func() { \n" " if (@object != null) {}; \n" "} \n"; mod = engine->GetModule("Test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test compound assignment with virtual properties { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); RegisterStdString(engine); RegisterScriptArray(engine, false); const char *script = "int iprop { get { return g_ivar; } set { g_ivar = value; } } \n" "int g_ivar = 0; \n" "string sprop { get { return g_svar; } set { g_svar = value; } } \n" "string g_svar = 'foo'; \n"; mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; // This shall be expanded to "set_iprop(get_iprop() + 2)" r = ExecuteString(engine, "iprop += 2; assert( g_ivar == 2 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // This shall be expanded to "set_iprop(get_iprop() / 2)" r = ExecuteString(engine, "iprop /= 2; assert( g_ivar == 1 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // Using value objects r = ExecuteString(engine, "sprop += 'bar'; assert( g_svar == 'foobar' );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // Test member virtual properties script = "class Test { \n" " int iprop { get { return m_ivar; } set { m_ivar = value; } } \n" " int m_ivar = 0; \n" " string sprop { get { return m_svar; } set { m_svar = value; } } \n" " string m_svar = 'foo'; \n" "} \n"; mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; // This shall be expanded to "t.set_iprop(t.get_iprop() + 2)" // TODO: optimize: The bytecode production is very sub-optimal r = ExecuteString(engine, "Test t; t.iprop += 2; assert( t.m_ivar == 2 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // This shall be expanded to "t.set_iprop(t.get_iprop() / 2)" r = ExecuteString(engine, "Test t; t.iprop = 2; t.iprop /= 2; assert( t.m_ivar == 1 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // Using value objects r = ExecuteString(engine, "Test t; t.sprop += 'bar'; assert( t.m_svar == 'foobar' );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // When the object is retrieved as reference r = ExecuteString(engine, "array<Test> t(1); t[0].iprop += 2; assert( t[0].m_ivar == 2 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // When the object is retrieved as reference r = ExecuteString(engine, "array<Test> t(1); t[0].sprop += 'bar'; assert( t[0].m_svar == 'foobar' );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // TODO: Test with ++ too // This shall be expanded to "set_prop(get_prop() + 1)" /* r = ExecuteString(engine, "prop++; assert( g_var == 2 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; */ // Compound assignments will not be allowed for properties that are members of value // types since it is not possible to guarantee the life time of the object // TODO: It could be allowed if the object is a local variable (but wouldn't it be confusing to allow it sometimes but other times not?) engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->RegisterObjectType("type", 4, asOBJ_VALUE | asOBJ_POD); engine->RegisterObjectMethod("type", "int get_prop() const property", asFUNCTION(0), asCALL_GENERIC); engine->RegisterObjectMethod("type", "void set_prop(int) property", asFUNCTION(0), asCALL_GENERIC); bout.buffer = ""; r = ExecuteString(engine, "type t; t.prop += 1;"); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "ExecuteString (1, 16) : Error : Compound assignments with property accessors on value types are not supported\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Compound assignments for indexed property accessors are not allowed bout.buffer = ""; mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "class T { \n" " int get_idx(int i) property { return 0; } \n" " void set_idx(int i, int value) property {} \n" "} \n" "void main() { \n" " T t; t.idx[0] += 1; \n" "} \n"); r = mod->Build(); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "test (5, 1) : Info : Compiling void main()\n" "test (6, 17) : Error : Compound assignments with indexed property accessors are not supported\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->ShutDownAndRelease(); } // Test memory leak with shared classes and virtual properties // http://www.gamedev.net/topic/644919-memory-leak-in-virtual-properties/ { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); const char *script1 = "shared class Test { \n" " int mProp { \n" " get { \n" " return 0; \n" " } \n" " } \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("test", script1); r = mod->Build(); if( r < 0 ) TEST_FAILED; asIScriptModule *mod2 = engine->GetModule("2", asGM_ALWAYS_CREATE); mod2->AddScriptSection("test2", script1); r = mod2->Build(); if( r < 0 ) TEST_FAILED; engine->Release(); } // http://www.gamedev.net/topic/639046-assert-in-as-compilercpp-temp-variables/ { bout.buffer = ""; engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream,Callback), &bout, asCALL_THISCALL); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); RegisterStdString(engine); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "class RayQueryResult { \n" " Drawable @get_drawable() const property { return Drawable(); } \n" "} \n" "class Drawable { \n" " const string &get_typename() const property { return tn; } \n" " string tn = 'AnimatedModel'; \n" "} \n" "void func() \n" "{ \n" " RayQueryResult res; \n" " assert( res.drawable.typename == 'AnimatedModel' ); \n" "} \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func();", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test problem reported by FDsagizi // http://www.gamedev.net/topic/632813-compiller-bug/ // virtual property accessor without specifying getter nor setter { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); bout.buffer = ""; mod = engine->GetModule("Test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "int some_val{ }"); r = mod->Build(); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "test (1, 5) : Error : Virtual property must have at least one get or set accessor\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test problem reported by Eero Tanskanen // getter returning reference { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); r = engine->RegisterObjectType ("Container", 4, asOBJ_VALUE | asOBJ_APP_CLASS_CDA) ; assert (r > 0) ; r = engine->RegisterObjectType ("Container_Real", 0, asOBJ_REF | asOBJ_NOHANDLE) ; assert (r > 0) ; r = engine->RegisterObjectBehaviour ("Container", asBEHAVE_CONSTRUCT, "void f()", asFUNCTION(0), asCALL_CDECL_OBJFIRST); assert( r >= 0 ); r = engine->RegisterObjectBehaviour ("Container", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(0), asCALL_CDECL_OBJLAST); assert( r >= 0 ); r = engine->RegisterObjectMethod ("Container", "Container_Real& get_Payload() property", asFUNCTION(0), asCALL_THISCALL) ; assert (r > 0) ; r = engine->RegisterGlobalFunction ("Container Get_Container()", asFUNCTION(0), asCALL_CDECL) ; assert (r > 0) ; mod = engine->GetModule("Test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "void Trip_Assert () { Get_Container().Payload; }" // This was causing an assert failure "void Dont_Trip_Assert () { Get_Container().get_Payload(); }"); // This should give the exact same bytecode as the above r = mod->Build(); if( r < 0 ) TEST_FAILED; engine->Release(); } // Test problem reported by virious // virtual property access with index and var args must work together { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream,Callback), &out, asCALL_THISCALL); RegisterStdString(engine); RegisterScriptArray(engine, true); engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCES, true); r = engine->RegisterGlobalFunction("void Log(const string&, ?&)", asFUNCTIONPR(formattedPrintAS, (std::string&, void*, int), void), asCALL_CDECL); r = engine->RegisterObjectType("TestClass", 0, asOBJ_REF | asOBJ_NOCOUNT); r = engine->RegisterObjectMethod("TestClass", "float get_OffsetVars(uint) property", asMETHOD(TestClass, get_OffsetVars), asCALL_THISCALL); mod = engine->GetModule("Test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "void main( TestClass@ a ) \n" "{ \n" " Log( 'ladder - %0.3f', a.OffsetVars[ 0 ] ); \n" " Log( 'ladder - %0.3f', a.get_OffsetVars( 0 ) ); \n" "}\n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; asIScriptFunction *func = mod->GetFunctionByDecl("void main( TestClass@ )"); if( func->IsProperty() ) TEST_FAILED; asIScriptContext *ctx = engine->CreateContext(); ctx->Prepare(func); TestClass testClass; ctx->SetArgObject( 0, &testClass ); r = ctx->Execute(); if( r != asEXECUTION_FINISHED ) TEST_FAILED; ctx->Release(); engine->Release(); } engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream,Callback), &bout, asCALL_THISCALL); RegisterScriptArray(engine, true); RegisterScriptString(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule(0, asGM_ALWAYS_CREATE); // The getter can return a handle while the setter takes a reference { const char *script = "class Test \n" "{ \n" " string @get_s() property { return 'test'; } \n" " void set_s(const string &in) property {} \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " string s = t.s; \n" " t.s = s; \n" "} \n"; mod->AddScriptSection("script", script); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } r = ExecuteString(engine, "Test t; @t.s = 'test';", mod); if( r >= 0 ) { TEST_FAILED; PRINTF("Shouldn't be allowed\n"); } if( bout.buffer != "ExecuteString (1, 14) : Error : It is not allowed to perform a handle assignment on a non-handle property\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } } // main1 and main2 should produce the same bytecode const char *script1 = "class Test \n" "{ \n" " int get_prop() property { return _prop; } \n" " void set_prop(int v) property { _prop = v; } \n" " int _prop; \n" "} \n" "void main1() \n" "{ \n" " Test t; \n" " t.set_prop(42); \n" " assert( t.get_prop() == 42 ); \n" "} \n" "void main2() \n" "{ \n" " Test t; \n" " t.prop = 42; \n" " assert( t.prop == 42 ); \n" "} \n"; mod->AddScriptSection("script", script1); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "main1()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } r = ExecuteString(engine, "main2()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test compound assignment with accessors (not allowed) const char *script2 = "class Test \n" "{ \n" " void set_prop(int v) property { _prop = v; } \n" " int _prop; \n" "} \n" "void main1() \n" "{ \n" " Test t; \n" " t.prop += 42; \n" "} \n"; mod->AddScriptSection("script", script2); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) { TEST_FAILED; } if( bout.buffer != "script (6, 1) : Info : Compiling void main1()\n" "script (9, 10) : Error : Compound assignments with property accessors require both get and set accessors\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test get accessor with boolean operators const char *script3 = "class Test \n" "{ \n" " bool get_boolProp() property { return true; } \n" "} \n" "void main1() \n" "{ \n" " Test t; \n" " if( t.boolProp ) {} \n" " if( t.boolProp && true ) {} \n" " if( false || t.boolProp ) {} \n" " if( t.boolProp ^^ t.boolProp ) {} \n" " if( !t.boolProp ) {} \n" " t.boolProp ? t.boolProp : t.boolProp; \n" "} \n"; mod->AddScriptSection("script", script3); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test get accessor with math operators const char *script4 = "class Test \n" "{ \n" " float get_prop() property { return 1.0f; } \n" "} \n" "void main1() \n" "{ \n" " Test t; \n" " float f = t.prop * 1; \n" " f = (t.prop) + 1; \n" " 10 / t.prop; \n" " -t.prop; \n" "} \n"; mod->AddScriptSection("script", script4); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test get accessor with bitwise operators const char *script5 = "class Test \n" "{ \n" " uint get_prop() property { return 1; } \n" "} \n" "void main1() \n" "{ \n" " Test t; \n" " t.prop << t.prop; \n" " t.prop & t.prop; \n" " ~t.prop; \n" "} \n"; mod->AddScriptSection("script", script5); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test multiple get accessors for same property. Should give error // Test multiple set accessors for same property. Should give error const char *script6 = "class Test \n" "{ \n" " uint get_p() property {return 0;} \n" " float get_p() property {return 0;} \n" " void set_s(float) property {} \n" " void set_s(uint) property {} \n" "} \n" "void main() \n" "{ \n" " Test t; \n" " t.p; \n" " t.s = 0; \n" "} \n"; mod->AddScriptSection("script", script6); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "script (4, 3) : Error : A function with the same name and parameters already exists\n" /* "script (8, 1) : Info : Compiling void main()\n" "script (11, 4) : Error : Found multiple get accessors for property 'p'\n" "script (11, 4) : Info : uint Test::get_p()\n" "script (11, 4) : Info : float Test::get_p()\n" "script (12, 4) : Error : Found multiple set accessors for property 's'\n" "script (12, 4) : Info : void Test::set_s(float)\n" "script (12, 4) : Info : void Test::set_s(uint)\n" */) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test mismatching type between get accessor and set accessor. Should give error const char *script7 = "class Test \n" "{ \n" " uint get_p() property {return 0;} \n" " void set_p(float) property {} \n" "} \n" "void main() \n" "{ \n" " Test t; \n" " t.p; \n" "} \n"; mod->AddScriptSection("script", script7); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "script (4, 3) : Error : The property 'p' has mismatching types for the get and set accessors\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test only set accessor for read expression // Test only get accessor for write expression const char *script8 = "class Test \n" "{ \n" " uint get_g() property {return 0;} \n" " void set_s(float) property {} \n" "} \n" "void main() \n" "{ \n" " Test t; \n" " t.g = 0; \n" " t.s + 1; \n" "} \n"; mod->AddScriptSection("script", script8); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "script (6, 1) : Info : Compiling void main()\n" "script (9, 7) : Error : The property has no set accessor\n" "script (10, 7) : Error : The property has no get accessor\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test pre and post ++. Should fail, since the expression is not a variable const char *script9 = "class Test \n" "{ \n" " uint get_p() property {return 0;} \n" " void set_p(uint) property {} \n" "} \n" "void main() \n" "{ \n" " Test t; \n" " t.p++; \n" " --t.p; \n" "} \n"; mod->AddScriptSection("script", script9); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) { TEST_FAILED; PRINTF("Didn't fail to compile the script\n"); } if( bout.buffer != "script (6, 1) : Info : Compiling void main()\n" "script (9, 6) : Error : Invalid reference. Property accessors cannot be used in combined read/write operations\n" "script (10, 3) : Error : Invalid reference. Property accessors cannot be used in combined read/write operations\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test using property accessors from within class methods without 'this' // Test accessor where the object is a handle const char *script10 = "class Test \n" "{ \n" " uint get_p() property {return 0;} \n" " void set_p(uint) property {} \n" " void test() \n" " { \n" " p = 0; \n" " int a = p; \n" " } \n" "} \n" "void func() \n" "{ \n" " Test @a = Test(); \n" " a.p = 1; \n" " int b = a.p; \n" "} \n"; mod->AddScriptSection("script", script10); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test accessors with function arguments (by value, in ref, out ref) const char *script11 = "class Test \n" "{ \n" " uint get_p() property {return 0;} \n" " void set_p(uint) property {} \n" "} \n" "void func() \n" "{ \n" " Test a(); \n" " byVal(a.p); \n" " inArg(a.p); \n" " outArg(a.p); \n" "} \n" "void byVal(int v) {} \n" "void inArg(int &in v) {} \n" "void outArg(int &out v) {} \n"; mod->AddScriptSection("script", script11); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // When the property is an object type, then the set accessor should be // used instead of the overloaded assignment operator to set the value. // Properties of object properties, must allow having different // types for get and set. IsEqualExceptConstAndRef should be used. engine->RegisterGlobalFunction("void Log(const string&inout)", asFUNCTION(Log), asCALL_CDECL); const char *script12 = "class Test \n" "{ \n" " string get_s() property {return _s;} \n" " void set_s(const string &in n) property {_s = n;} \n" " string _s; \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " t.s = 'hello'; \n" " assert(t.s == 'hello'); \n" " Log(t.s); \n" // &inout parameter wasn't working " Log(t.get_s()); \n" "} \n"; mod->AddScriptSection("script", script12); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test @t.prop = @obj; Property is a handle, and the property is assigned a new handle. Should work const char *script13 = "class Test \n" "{ \n" " string@ get_s() property {return _s;} \n" " void set_s(string @n) property {@_s = @n;} \n" " string@ _s; \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " string s = 'hello'; \n" " @t.s = @s; \n" // handle assignment " assert(t.s is s); \n" " t.s = 'other'; \n" // value assignment " assert(s == 'other'); \n" "} \n"; mod->AddScriptSection("script", script13); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test accessing members of an object property const char *script14 = "class Test \n" "{ \n" " string get_s() property {return _s;} \n" " void set_s(string n) property {_s = n;} \n" " string _s; \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " t.s = 'hello'; \n" // value assignment " assert(t.s == 'hello'); \n" " assert(t.s.length() == 5); \n" // this should work as length is const "} \n"; mod->AddScriptSection("script", script14); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test accessing a non-const method on an object through a get accessor // Should at least warn since the object is just a temporary one /* // This warning isn't done anymore as there are times when it is valid to call a non-const method on temporary objects, for example if a stream like object is implemented bout.buffer = ""; r = ExecuteString(engine, "Test t; t.s.resize(4);", mod); if( r < 0 ) TEST_FAILED; if( (sizeof(void*) == 4 && bout.buffer != "ExecuteString (1, 13) : Warning : A non-const method is called on temporary object. Changes to the object may be lost.\n" "ExecuteString (1, 13) : Info : void string::resize(uint)\n") || (sizeof(void*) == 8 && bout.buffer != "ExecuteString (1, 13) : Warning : A non-const method is called on temporary object. Changes to the object may be lost.\n" "ExecuteString (1, 13) : Info : void string::resize(uint64)\n") ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } */ // Test opNeg for object through get accessor const char *script15 = "class Val { int opNeg() const { return -1; } } \n" "class Test \n" "{ \n" " Val get_s() const property {return Val();} \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " assert( -t.s == -1 ); \n" "} \n"; mod->AddScriptSection("script", script15); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test index operator for object through get accessor const char *script16 = "class Test \n" "{ \n" " int[] get_s() const property { int[] a(1); a[0] = 42; return a; } \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " assert( t.s[0] == 42 ); \n" "} \n"; mod->AddScriptSection("script", script16); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test accessing normal properties for object through get accessor const char *script17 = "class Val { int val; } \n" "class Test \n" "{ \n" " Val get_s() const property { Val v; v.val = 42; return v;} \n" "} \n" "void func() \n" "{ \n" " Test t; \n" " assert( t.s.val == 42 ); \n" "} \n"; mod->AddScriptSection("script", script17); bout.buffer = ""; r = mod->Build(); if( r < 0 ) { TEST_FAILED; PRINTF("Failed to compile the script\n"); } if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) { TEST_FAILED; } // Test const/non-const get and set accessors const char *script18 = "class Test \n" "{ \n" " int get_p() property { return 42; } \n" " int get_c() const property { return 42; } \n" " void set_s(int) property {} \n" "} \n" "void func() \n" "{ \n" " const Test @t = @Test(); \n" " assert( t.p == 42 ); \n" // Fail " assert( t.c == 42 ); \n" // Success " t.s = 42; \n" // Fail "} \n"; mod->AddScriptSection("script", script18); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "script (7, 1) : Info : Compiling void func()\n" "script (10, 15) : Error : Non-const method call on read-only object reference\n" "script (10, 15) : Info : int Test::get_p()\n" "script (12, 7) : Error : Non-const method call on read-only object reference\n" "script (12, 7) : Info : void Test::set_s(int)\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } // Test accessor with property of the same name const char *script19 = "int direction; \n" "void set_direction(int val) property { direction = val; } \n" "void test_set() \n" "{ \n" " direction = 9; \n" // calls the set_direction property accessor "} \n" "void test_get() \n" "{ \n" " assert( direction == 9 ); \n" // fails, since there is no get accessor "} \n"; mod->AddScriptSection("script", script19); bout.buffer = ""; r = mod->Build(); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "script (7, 1) : Info : Compiling void test_get()\n" "script (9, 21) : Error : The property has no get accessor\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } const char *script20 = "class Test { \n" " int direction; \n" " void set_direction(int val) property { direction = val; } \n" "} \n"; mod->AddScriptSection("script", script20); bout.buffer = ""; r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "Test t; t.set_direction(3);", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // Test accessing property of the same name on a member object const char *script21 = "class Test { \n" " int a; \n" " Test @member; \n" " int get_a() const property { return a; } \n" " void set_a(int val) property {a = val; if( member !is null ) member.a = val;} \n" "} \n"; mod->AddScriptSection("script", script21); bout.buffer = ""; r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "Test t, s, u; @t.member = s; @s.member = u; t.set_a(3); assert( u.a == 3 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->GarbageCollect(); // Test const/non-const overloads for get and set accessors const char *script22 = "class Test \n" "{ \n" " int get_c() property { return 41; } \n" " int get_c() const property { return 42; } \n" " void set_c(int v) property { assert( v == 41 ); } \n" " void set_c(int v) const property { assert( v == 42 ); } \n" "} \n" "void func() \n" "{ \n" " Test @s = @Test(); \n" " const Test @t = @s; \n" " assert( s.c == 41 ); \n" " assert( t.c == 42 ); \n" " s.c = 41; \n" " t.c = 42; \n" "} \n"; mod->AddScriptSection("script", script22); bout.buffer = ""; r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "func()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // TODO: Test non-const get accessor for object type with const overloaded dual operator // TODO: Test get accessor that returns a reference (only from application func to start with) // TODO: Test property accessor with inout references. Shouldn't be allowed as the value is not a valid reference // TODO: Test set accessor with parameter declared as out ref (shouldn't be found) // TODO: What should be done with expressions like t.prop; Should the get accessor be called even though // the value is never used? // TODO: Accessing a class member from within the property accessor with the same name as the property // shouldn't call the accessor again. Instead it should access the real member. FindPropertyAccessor() // shouldn't find any if the function being compiler is the property accessor itself engine->Release(); // Test private property accessors // Test the asIScriptFunction::IsProperty { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); const char *script = "class TestClass \n" "{ \n" " private int MyProp \n" " { \n" " get { return 1; } \n" " } \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; int typeId = mod->GetTypeIdByDecl("TestClass"); asITypeInfo *type = engine->GetTypeInfoById(typeId); if( type->GetMethodCount() != 1 ) TEST_FAILED; asIScriptFunction *func = type->GetMethodByDecl("int get_MyProp()"); if( func == 0 || !func->IsPrivate() || !func->IsProperty() ) TEST_FAILED; engine->Release(); } // Test property accessor on temporary object handle { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterStdString(engine); const char *script = "class Obj { void set_opacity(float v) property {} }\n" "Obj @GetObject() { return @Obj(); } \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "GetObject().opacity = 1.0f;", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test bug reported by Scarabus2 // The bug was an incorrect reusage of temporary variable by the // property get accessor when compiling a binary operator { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = "class Object { \n" " Object() {rot = 0;} \n" " void set_rotation(float r) property {rot = r;} \n" " float get_rotation() const property {return rot;} \n" " float rot; } \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "Object obj; \n" "float elapsed = 1.0f; \n" "float temp = obj.rotation + elapsed * 1.0f; \n" "obj.rotation = obj.rotation + elapsed * 1.0f; \n" "assert( obj.rot == 1 ); \n", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test global property accessor { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = "int _s = 0; \n" "int get_s() property { return _s; } \n" "void set_s(int v) property { _s = v; } \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "s = 10; assert( s == 10 );", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); // The global property accessors are available to initialize global // variables, but can possibly throw an exception if used inappropriately. // This test also verifies that circular references between global // properties and functions is properly resolved by the GC. engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterStdString(engine); bout.buffer = ""; script = "string _s = s; \n" "string get_s() property { return _s; } \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r != asINIT_GLOBAL_VARS_FAILED ) TEST_FAILED; if( bout.buffer != "script (1, 8) : Error : Failed to initialize global variable '_s'\n" "script (2, 0) : Info : Exception 'Null pointer access' in 'string get_s()'\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test property accessor for object in array { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterScriptArray(engine, true); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = "class MyObj { bool get_Active() property { return true; } } \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "MyObj[] a(1); if( a[0].Active == true ) { } if( a[0].get_Active() == true ) { }", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test property accessor from within class method { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); const char *script = "class Vector3 \n" "{ \n" " float x; \n" " float y; \n" " float z; \n" "}; \n" "class Hoge \n" "{ \n" " const Vector3 get_pos() property { return mPos; } \n" " const Vector3 foo() { return pos; } \n" " const Vector3 zoo() { return get_pos(); } \n" " Vector3 mPos; \n" "}; \n" "void main() \n" "{ \n" " Hoge h; \n" " Vector3 vec; \n" " vec = h.zoo(); \n" // ok " vec = h.foo(); \n" // runtime exception "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test property accessor in type conversion { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterScriptArray(engine, true); const char *script = "class sound \n" "{ \n" " int get_pitch() property { return 1; } \n" " void set_pitch(int p) property {} \n" "} \n" "void main() \n" "{ \n" " sound[] sounds(1) ; \n" " sounds[0].pitch = int(sounds[0].pitch)/2; \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test property accessor in type conversion (2) { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); const char *script = "class sound \n" "{ \n" " const int &get_id() const property { return i; } \n" " int i; \n" "} \n" "void main() \n" "{ \n" " sound s; \n" " if( s.id == 1 ) \n" " return; \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test property accessors for opIndex { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterScriptArray(engine, false); RegisterScriptString(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = "class CTest \n" "{ \n" " CTest() { arr.resize(5); } \n" " int get_opIndex(int i) const property { return arr[i]; } \n" " void set_opIndex(int i, int v) property { arr[i] = v; } \n" " array<int> arr; \n" "} \n" "class CTest2 \n" "{ \n" " CTest2() { arr.resize(1); } \n" " CTest @get_opIndex(int i) const property { return arr[i]; } \n" " void set_opIndex(int i, CTest @v) property { @arr[i] = v; } \n" " array<CTest@> arr; \n" "} \n" "void main() \n" "{ \n" " CTest s; \n" " s[0] = 42; \n" " assert( s[0] == 42 ); \n" " s[1] = 24; \n" " assert( s[1] == 24 ); \n" " CTest2 t; \n" " @t[0] = s; \n" " assert( t[0] is s ); \n" "} \n"; bout.buffer = ""; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // Test error script = "class CTest \n" "{ \n" " CTest() { } \n" " int get_opIndex(int i) const property { return arr[i]; } \n" " void set_opIndex(int i, int v) property { arr[i] = v; } \n" " array<int> arr; \n" "} \n" "class CTest2 \n" "{ \n" " CTest2() { } \n" " CTest get_opIndex(int i) const property { return arr[i]; } \n" " void set_opIndex(int i, CTest v) property { @arr[i] = v; } \n" " array<CTest@> arr; \n" "} \n" "void main() \n" "{ \n" " CTest s; \n" " s[0] += 42; \n" // compound assignment is not allowed " CTest2 t; \n" " @t[0] = s; \n" // handle assign is not allowed for non-handle property "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r > 0 ) TEST_FAILED; if( bout.buffer != "script (15, 1) : Info : Compiling void main()\n" "script (18, 8) : Error : Compound assignments with indexed property accessors are not supported\n" "script (20, 9) : Error : It is not allowed to perform a handle assignment on a non-handle property\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test global property accessors with index argument { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterScriptArray(engine, false); RegisterScriptString(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = " int get_arr(int i) property { arr.resize(5); return arr[i]; } \n" " void set_arr(int i, int v) property { arr.resize(5); arr[i] = v; } \n" " array<int> arr; \n" "void main() \n" "{ \n" " arr[0] = 42; \n" " assert( arr[0] == 42 ); \n" " arr[1] = 24; \n" " assert( arr[1] == 24 ); \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test member property accessors with index argument { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterScriptArray(engine, false); RegisterScriptString(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); const char *script = "class CTest \n" "{ \n" " CTest() { _arr.resize(5); } \n" " int get_arr(int i) property { return _arr[i]; } \n" " void set_arr(int i, int v) property { _arr[i] = v; } \n" " private array<int> _arr; \n" " void test() \n" " { \n" " arr[0] = 42; \n" " assert( arr[0] == 42 ); \n" " arr[1] = 24; \n" " assert( arr[1] == 24 ); \n" " } \n" "} \n" "void main() \n" "{ \n" " CTest s; \n" " s.arr[0] = 42; \n" " assert( s.arr[0] == 42 ); \n" " s.arr[1] = 24; \n" " assert( s.arr[1] == 24 ); \n" " s.test(); \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test member property accessors with ++ where the set accessor takes a reference { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); bout.buffer = ""; const char *script = "class CTest \n" "{ \n" " double _vol; \n" " double get_vol() const property { return _vol; } \n" " void set_vol(double &in v) property { _vol = v; } \n" "} \n" "CTest t; \n" "void main() \n" "{ \n" " for( t.vol = 0; t.vol < 10; t.vol++ ); \n" "} \n"; mod = engine->GetModule(0, asGM_ALWAYS_CREATE); mod->AddScriptSection("script", script); r = mod->Build(); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "script (8, 1) : Info : Compiling void main()\n" "script (10, 36) : Error : Invalid reference. Property accessors cannot be used in combined read/write operations\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test get property returning reference { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->RegisterObjectType("LevelType", sizeof(CLevel), asOBJ_VALUE | asOBJ_POD); engine->RegisterObjectProperty("LevelType", "float attr", asOFFSET(CLevel, attr)); engine->RegisterGlobalFunction("LevelType &get_Level() property", asFUNCTION(get_Level), asCALL_CDECL); r = ExecuteString(engine, "Level.attr = 0.5f;"); if( r != asEXECUTION_FINISHED ) TEST_FAILED; if( g_level.attr != 0.5f ) TEST_FAILED; engine->Release(); } // Make sure it is possible to update properties of objects returned by reference through getter { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterScriptMath3D(engine); engine->RegisterObjectType("node", 0, asOBJ_REF); engine->RegisterObjectBehaviour("node", asBEHAVE_FACTORY, "node @f()", asFUNCTION(CNode::CNodeFactory), asCALL_CDECL); engine->RegisterObjectBehaviour("node", asBEHAVE_ADDREF, "void f()", asMETHOD(CNode, AddRef), asCALL_THISCALL); engine->RegisterObjectBehaviour("node", asBEHAVE_RELEASE, "void f()", asMETHOD(CNode, Release), asCALL_THISCALL); engine->RegisterObjectMethod("node", "node @+ get_child() property", asMETHOD(CNode, GetChild), asCALL_THISCALL); engine->RegisterObjectMethod("node", "void set_child(node @+) property", asMETHOD(CNode, SetChild), asCALL_THISCALL); engine->RegisterObjectProperty("node", "vector3 vector", asOFFSET(CNode, vector)); engine->RegisterObjectProperty("node", "float x", asOFFSET(CNode, vector)); r = ExecuteString(engine, "node @a = node(); \n" "@a.child = node(); \n" "a.child.x = 0; \n" "a.child.vector = vector3(0,0,0); \n"); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Make sure it is not possible to update properties of objects returned by value through getter { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterScriptMath3D(engine); engine->RegisterObjectType("node", 0, asOBJ_REF); engine->RegisterObjectBehaviour("node", asBEHAVE_FACTORY, "node @f()", asFUNCTION(CNode::CNodeFactory), asCALL_CDECL); engine->RegisterObjectBehaviour("node", asBEHAVE_ADDREF, "void f()", asMETHOD(CNode, AddRef), asCALL_THISCALL); engine->RegisterObjectBehaviour("node", asBEHAVE_RELEASE, "void f()", asMETHOD(CNode, Release), asCALL_THISCALL); engine->RegisterObjectMethod("node", "vector3 get_vector() const property", asMETHOD(CNode, GetVector), asCALL_THISCALL); engine->RegisterObjectMethod("node", "void set_vector(const vector3 &in) property", asMETHOD(CNode, SetVector), asCALL_THISCALL); r = ExecuteString(engine, "node @a = node(); \n" "a.vector.x = 1; \n" // Not OK "a.vector = vector3(1,0,0); \n"); // OK if( r >= 0 ) TEST_FAILED; if( bout.buffer != "ExecuteString (2, 1) : Error : Expression is not an l-value\n" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test the alternative syntax for declaring property getters and setters { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterScriptMathComplex(engine); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "class T \n" "{ \n" // TODO: getset: Builder should provide automatic implementations // " int prop1 { get; set; } \n" // " int prop2 { get const final; set final; } \n" " int prop3 { \n" " get const final { return _prop3; } \n" " set { _prop3 = value; } \n" " } \n" " int propInt { get { return propInt; } } int propInt; \n" " double propDouble { get { return propDouble; } } double propDouble; \n" " complex propComplex { get { return propComplex; } } complex propComplex; \n" " T@ propT { get { return propT; } } T @propT; \n" " private int _prop3; \n" "} \n" "uint globalProp { get { return 1; } set { } } \n" "void func() \n" "{ \n" " T t; \n" " int a = t.prop3; \n" "} \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test problem reported by Andrew Ackermann { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "class Test {} \n" "Test get_test(int a) property { \n" " return Test(); \n" "} \n" "void f() { \n" " test[0]; \n" "} \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); } // Test problem reported by Andrew Ackermann { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterScriptMath3D(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "vector3 global; \n" "vector3 get_global_accessor() property { return vector3(1,1,1); } \n" "void f() { \n" " global = global_accessor; \n" " assert( global.x == 1 && global.y == 1 && global.z == 1 ); \n" "} \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "f()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test problem reported by Andrew Ackermann { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); bout.buffer = ""; engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); RegisterScriptMath3D(engine); engine->RegisterGlobalFunction("void assert(bool)", asFUNCTION(Assert), asCALL_GENERIC); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "class Index { \n" " uint opIndex(uint i) { \n" " return i; \n" " } \n" "}; \n" "class IndexProperty { \n" " Index@ get_instance(uint i) property { \n" " return Index(); \n" " } \n" "}; \n" "void f() { \n" " IndexProperty test; \n" " \n" " //Works \n" " uint a = test.get_instance(0)[0]; \n" " //Errors (Can't cast Index@ to int) \n" " uint x = test.instance[0][0]; \n" "} \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } r = ExecuteString(engine, "f()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; engine->Release(); } // Test memory leak in interface // http://www.gamedev.net/topic/629718-memory-leak/ { engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); mod = engine->GetModule("test", asGM_ALWAYS_CREATE); mod->AddScriptSection("test", "interface Intf { \n" " int prop { get; set; } \n" "}; \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; engine->Release(); } fail = Test2() || fail; // Success return fail; } class CMyObj { public: CMyObj() { refCount = 1; } void set_Text(const string &s) { assert( s == "Hello world!" ); } void AddRef() { refCount++; } void Release() { if( --refCount == 0 ) delete this; } int refCount; }; CMyObj *MyObj_factory() { return new CMyObj; } bool Test2() { bool fail = false; COutStream out; CBufferedOutStream bout; int r; asIScriptEngine *engine = asCreateScriptEngine(ANGELSCRIPT_VERSION); engine->SetMessageCallback(asMETHOD(COutStream, Callback), &out, asCALL_THISCALL); RegisterStdString(engine); engine->RegisterObjectType("CMyObj", 0, asOBJ_REF); engine->RegisterObjectBehaviour("CMyObj", asBEHAVE_FACTORY, "CMyObj @f()", asFUNCTION(MyObj_factory), asCALL_CDECL); engine->RegisterObjectBehaviour("CMyObj", asBEHAVE_ADDREF, "void f()", asMETHOD(CMyObj, AddRef), asCALL_THISCALL); engine->RegisterObjectBehaviour("CMyObj", asBEHAVE_RELEASE, "void f()", asMETHOD(CMyObj, Release), asCALL_THISCALL); engine->RegisterObjectMethod("CMyObj", "void set_Text(const string &in) property", asMETHOD(CMyObj, set_Text), asCALL_THISCALL); const char *string = "void main() { \n" " CMyObj @obj = @CMyObj(); \n" " obj.Text = 'Hello world!'; \n" "} \n"; asIScriptModule *mod = engine->GetModule("mod", asGM_ALWAYS_CREATE); mod->AddScriptSection("string", string); r = mod->Build(); if( r < 0 ) TEST_FAILED; r = ExecuteString(engine, "main()", mod); if( r != asEXECUTION_FINISHED ) TEST_FAILED; // Test disabling property accessors engine->SetMessageCallback(asMETHOD(CBufferedOutStream, Callback), &bout, asCALL_THISCALL); engine->SetEngineProperty(asEP_PROPERTY_ACCESSOR_MODE, 0); r = ExecuteString(engine, "CMyObj o; o.Text = 'hello';"); if( r >= 0 ) TEST_FAILED; if( bout.buffer != "ExecuteString (1, 12) : Error : 'Text' is not a member of 'CMyObj'\n" ) { TEST_FAILED; PRINTF("%s", bout.buffer.c_str()); } // Test disabling property accessors in script bout.buffer = ""; engine->SetEngineProperty(asEP_PROPERTY_ACCESSOR_MODE, 1); mod->AddScriptSection("test", "class CTest { \n" " void get_prop() {} \n" " void set_prop(int v) { prop = v; } \n" " int prop; \n" "} \n" "void func() \n" "{ \n" " CTest t; t.prop = 1; \n" "} \n"); r = mod->Build(); if( r < 0 ) TEST_FAILED; if( bout.buffer != "" ) { PRINTF("%s", bout.buffer.c_str()); TEST_FAILED; } engine->Release(); return fail; } } // namespace
[ "angelcode@404ce1b2-830e-0410-a2e2-b09542c77caf" ]
angelcode@404ce1b2-830e-0410-a2e2-b09542c77caf
73d167d74991afa94b9d3b1258d941844edb1d9c
1f619c685f97ba8fe027928fc621935c7813deb7
/spot_math.cpp
66089b6c9c99a87bd720752dd6545306faadbe88
[]
no_license
CISMM/video
4747fffdc770b9572675aef36edf921f73b703f7
26c54117495e920ca9ed8b3cd95df3c7cffd7cf1
refs/heads/master
2022-10-02T01:01:44.817824
2022-09-12T14:00:27
2022-09-12T14:00:27
57,322,249
3
2
null
null
null
null
UTF-8
C++
false
false
2,046
cpp
#include <stdio.h> #include "spot_math.h" /** Returns the value of the Bessel function of the first * kind with order n. The default value for n is 1 because * that is what is needed by diffraction-limited spots and * that's what I'm writing this code for. * This is based on Bessel's first integral as described * at http://mathworld.wolfram.com/BesselsFirstIntegral.hmtl. * This implementation is not optimized for either speed or * accuracy at this time. Brief inspection of a number of * values for this function compared to the Microsoft Excel * function's return value indicate that the accuracy is * good to 8 digits past the decimal point (usually 9) with * 137-bin integration if the first and last point * are symmetric at 0 and PI. **/ double BesselFirstKind( const double x, //< Location to be evaluated const double n) //< Order of the function { const double invPi = 1.0 / M_PI; const double count = 137.0; const double countDivide = 1.0 / count; const double increment = M_PI / count; const double end = M_PI + increment*0.9; //< stop when go past the end, avoids requiring exact floating-point equals from sum double loop; //< Goes from 0 to PI double sum = 0.0; //< Keep track of the sum // Integrate the function cos(nT - xsin(T)) dT over the // range 0 to PI, then divide by PI. There is a subtlety // here because the number of points being added is // actually count + 1 and we're dividing by count. This is // because we're using the trapezoidal approximation for each // of the count bins, where the average value of the two endpoints // is used to determine the value integrated in that bin; in this // method, the first and last point in the list only receive 1/2 // weight each going into the sum (the others receive 1), which // means that there is an overall reduction in the weights of 1 // (1/2 for each of them). for (loop = 0.0; loop <= end; loop += increment) { sum += cos(n*loop - x * sin(loop)); } return invPi * sum * countDivide; }
[ "russ@reliasolve.com" ]
russ@reliasolve.com
1e7a7f0e22b917ddf5ba5c15551770e6eb79213c
d0fb46aecc3b69983e7f6244331a81dff42d9595
/cdn/include/alibabacloud/cdn/model/DescribeL2VipsByDomainRequest.h
f20ef07b6d12063a506b521800ab9de81573d6af
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-cpp-sdk
3d8d051d44ad00753a429817dd03957614c0c66a
e862bd03c844bcb7ccaa90571bceaa2802c7f135
refs/heads/master
2023-08-29T11:54:00.525102
2023-08-29T03:32:48
2023-08-29T03:32:48
115,379,460
104
82
NOASSERTION
2023-09-14T06:13:33
2017-12-26T02:53:27
C++
UTF-8
C++
false
false
1,616
h
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ALIBABACLOUD_CDN_MODEL_DESCRIBEL2VIPSBYDOMAINREQUEST_H_ #define ALIBABACLOUD_CDN_MODEL_DESCRIBEL2VIPSBYDOMAINREQUEST_H_ #include <alibabacloud/cdn/CdnExport.h> #include <alibabacloud/core/RpcServiceRequest.h> #include <string> #include <vector> #include <map> namespace AlibabaCloud { namespace Cdn { namespace Model { class ALIBABACLOUD_CDN_EXPORT DescribeL2VipsByDomainRequest : public RpcServiceRequest { public: DescribeL2VipsByDomainRequest(); ~DescribeL2VipsByDomainRequest(); std::string getDomainName() const; void setDomainName(const std::string &domainName); long getOwnerId() const; void setOwnerId(long ownerId); std::string getSecurityToken() const; void setSecurityToken(const std::string &securityToken); private: std::string domainName_; long ownerId_; std::string securityToken_; }; } // namespace Model } // namespace Cdn } // namespace AlibabaCloud #endif // !ALIBABACLOUD_CDN_MODEL_DESCRIBEL2VIPSBYDOMAINREQUEST_H_
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
d4a888c0166f9fe2c549a0429117bd0c5a698a62
641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2
/cc/trees/element_id.cc
45913303c1019dfa9c36113d6a11fffae12c1bfb
[ "BSD-3-Clause" ]
permissive
massnetwork/mass-browser
7de0dfc541cbac00ffa7308541394bac1e945b76
67526da9358734698c067b7775be491423884339
refs/heads/master
2022-12-07T09:01:31.027715
2017-01-19T14:29:18
2017-01-19T14:29:18
73,799,690
4
4
BSD-3-Clause
2022-11-26T11:53:23
2016-11-15T09:49:29
null
UTF-8
C++
false
false
1,568
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/trees/element_id.h" #include <limits> #include <ostream> #include "base/trace_event/trace_event_argument.h" #include "base/values.h" namespace cc { bool ElementId::operator==(const ElementId& o) const { return primaryId == o.primaryId && secondaryId == o.secondaryId; } bool ElementId::operator!=(const ElementId& o) const { return !(*this == o); } bool ElementId::operator<(const ElementId& o) const { return std::tie(primaryId, secondaryId) < std::tie(o.primaryId, o.secondaryId); } ElementId::operator bool() const { return !!primaryId; } ElementId LayerIdToElementIdForTesting(int layer_id) { return ElementId(std::numeric_limits<int>::max() - layer_id, 0); } void ElementId::AddToTracedValue(base::trace_event::TracedValue* res) const { res->SetInteger("primaryId", primaryId); res->SetInteger("secondaryId", secondaryId); } std::unique_ptr<base::Value> ElementId::AsValue() const { std::unique_ptr<base::DictionaryValue> res(new base::DictionaryValue()); res->SetInteger("primaryId", primaryId); res->SetInteger("secondaryId", secondaryId); return std::move(res); } size_t ElementIdHash::operator()(ElementId key) const { return base::HashInts(key.primaryId, key.secondaryId); } std::ostream& operator<<(std::ostream& out, const ElementId& id) { return out << "(" << id.primaryId << ", " << id.secondaryId << ")"; } } // namespace cc
[ "xElvis89x@gmail.com" ]
xElvis89x@gmail.com
c7a20a78736fbef1ebb44dc49f634751e1ce4635
fd4103e6f5116c776249b00171d8639313f05bc1
/Src/PartModelingEngine/PmeArgumentOutOfRangeException.h
e051d238faf1e90b77739099154229d7cbdf0098
[]
no_license
Wanghuaichen/TransCAD
481f3b4e54cc066dde8679617a5b32ac2041911b
35ca89af456065925984492eb23a0543e3125bb8
refs/heads/master
2020-03-25T03:54:51.488397
2018-06-25T17:38:39
2018-06-25T17:38:39
143,367,529
2
1
null
2018-08-03T02:30:03
2018-08-03T02:30:03
null
UTF-8
C++
false
false
282
h
#pragma once #include "pmeargumentexception.h" class PME_API PmeArgumentOutOfRangeException : public PmeArgumentException { public: PmeArgumentOutOfRangeException(void); PmeArgumentOutOfRangeException(const CString & message); virtual ~PmeArgumentOutOfRangeException(void); };
[ "kyk5415@gmail.com" ]
kyk5415@gmail.com
31647c8c9e95c0dff38fde24b7db71e5617ba94e
0523affcb7758bc502ccadcf5533356f69f7efa7
/rsm.h
43e09ce31129ba7d3e035c3cb14f3ad8c5cdaad7
[]
no_license
gx92512/yfs-mit
0f6fd40e091dd9d4b82de0d0f214ff94625c5b1c
fd242b42d5a02a35c9424021cfb421f8f2540e99
refs/heads/master
2020-12-24T20:42:47.593280
2016-10-23T09:48:15
2016-10-23T09:48:15
56,675,118
2
0
null
null
null
null
UTF-8
C++
false
false
6,892
h
// replicated state machine interface. #ifndef rsm_h #define rsm_h #include <string> #include <vector> #include "rsm_protocol.h" #include "rsm_state_transfer.h" #include "rpc.h" #include <arpa/inet.h> #include "config.h" #include <set> class rsm : public config_view_change { private: void reg1(int proc, handler *); protected: std::map<int, handler *> procs; config *cfg; class rsm_state_transfer *stf; rpcs *rsmrpc; // On slave: expected viewstamp of next invoke request // On primary: viewstamp for the next request from rsm_client viewstamp myvs; viewstamp last_myvs; // Viewstamp of the last executed request std::string primary; bool insync; bool inviewchange; unsigned vid_commit; // Latest view id that is known to rsm layer unsigned vid_insync; // The view id that this node is synchronizing for std::set<std::string> backups; // A list of unsynchronized backups // For testing purposes rpcs *testsvr; bool partitioned; bool dopartition; bool break1; bool break2; rsm_client_protocol::status client_members(int i, std::vector<std::string> &r); rsm_protocol::status invoke(int proc, viewstamp vs, std::string mreq, int &dummy); rsm_protocol::status transferreq(std::string src, viewstamp last, unsigned vid, rsm_protocol::transferres &r); rsm_protocol::status transferdonereq(std::string m, unsigned vid, int &); rsm_protocol::status joinreq(std::string src, viewstamp last, rsm_protocol::joinres &r); rsm_test_protocol::status test_net_repairreq(int heal, int &r); rsm_test_protocol::status breakpointreq(int b, int &r); pthread_mutex_t rsm_mutex; pthread_mutex_t invoke_mutex; pthread_cond_t recovery_cond; pthread_cond_t sync_cond; void execute(int procno, std::string req, std::string &r); rsm_client_protocol::status client_invoke(int procno, std::string req, std::string &r); bool statetransfer(std::string m); bool statetransferdone(std::string m); bool join(std::string m); void set_primary(unsigned vid); std::string find_highest(viewstamp &vs, std::string &m, unsigned &vid); bool sync_with_backups(); bool sync_with_primary(); void net_repair_wo(bool heal); void breakpoint1(); void breakpoint2(); void partition1(); void commit_change_wo(unsigned vid); public: rsm (std::string _first, std::string _me); ~rsm() {}; bool amiprimary(); void set_state_transfer(rsm_state_transfer *_stf) { stf = _stf; }; void recovery(); void commit_change(unsigned vid); template<class S, class A1, class R> void reg(int proc, S*, int (S::*meth)(const A1 a1, R &)); template<class S, class A1, class A2, class R> void reg(int proc, S*, int (S::*meth)(const A1 a1, const A2 a2, R &)); template<class S, class A1, class A2, class A3, class R> void reg(int proc, S*, int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, R &)); template<class S, class A1, class A2, class A3, class A4, class R> void reg(int proc, S*, int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, R &)); template<class S, class A1, class A2, class A3, class A4, class A5, class R> void reg(int proc, S*, int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, const A5 a5, R &)); }; template<class S, class A1, class R> void rsm::reg(int proc, S*sob, int (S::*meth)(const A1 a1, R & r)) { class h1 : public handler { private: S * sob; int (S::*meth)(const A1 a1, R & r); public: h1(S *xsob, int (S::*xmeth)(const A1 a1, R & r)) : sob(xsob), meth(xmeth) { } int fn(unmarshall &args, marshall &ret) { A1 a1; R r; args >> a1; VERIFY(args.okdone()); int b = (sob->*meth)(a1,r); ret << r; return b; } }; reg1(proc, new h1(sob, meth)); } template<class S, class A1, class A2, class R> void rsm::reg(int proc, S*sob, int (S::*meth)(const A1 a1, const A2 a2, R & r)) { class h1 : public handler { private: S * sob; int (S::*meth)(const A1 a1, const A2 a2, R & r); public: h1(S *xsob, int (S::*xmeth)(const A1 a1, const A2 a2, R & r)) : sob(xsob), meth(xmeth) { } int fn(unmarshall &args, marshall &ret) { A1 a1; A2 a2; R r; args >> a1; args >> a2; VERIFY(args.okdone()); int b = (sob->*meth)(a1,a2,r); ret << r; return b; } }; reg1(proc, new h1(sob, meth)); } template<class S, class A1, class A2, class A3, class R> void rsm::reg(int proc, S*sob, int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, R & r)) { class h1 : public handler { private: S * sob; int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, R & r); public: h1(S *xsob, int (S::*xmeth)(const A1 a1, const A2 a2, const A3 a3, R & r)) : sob(xsob), meth(xmeth) { } int fn(unmarshall &args, marshall &ret) { A1 a1; A2 a2; A3 a3; R r; args >> a1; args >> a2; args >> a3; VERIFY(args.okdone()); int b = (sob->*meth)(a1,a2,a3,r); ret << r; return b; } }; reg1(proc, new h1(sob, meth)); } template<class S, class A1, class A2, class A3, class A4, class R> void rsm::reg(int proc, S*sob, int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, R & r)) { class h1 : public handler { private: S * sob; int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, R & r); public: h1(S *xsob, int (S::*xmeth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, R & r)) : sob(xsob), meth(xmeth) { } int fn(unmarshall &args, marshall &ret) { A1 a1; A2 a2; A3 a3; A4 a4; R r; args >> a1; args >> a2; args >> a3; args >> a4; VERIFY(args.okdone()); int b = (sob->*meth)(a1,a2,a3,a4,r); ret << r; return b; } }; reg1(proc, new h1(sob, meth)); } template<class S, class A1, class A2, class A3, class A4, class A5, class R> void rsm::reg(int proc, S*sob, int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, const A5 a5, R & r)) { class h1 : public handler { private: S * sob; int (S::*meth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, const A5 a5, R & r); public: h1(S *xsob, int (S::*xmeth)(const A1 a1, const A2 a2, const A3 a3, const A4 a4, const A5 a5, R & r)) : sob(xsob), meth(xmeth) { } int fn(unmarshall &args, marshall &ret) { A1 a1; A2 a2; A3 a3; A4 a4; A5 a5; R r; args >> a1; args >> a2; args >> a3; args >> a4; VERIFY(args.okdone()); int b = (sob->*meth)(a1,a2,a3,a4,a5,r); ret << r; return b; } }; reg1(proc, new h1(sob, meth)); } #endif /* rsm_h */
[ "gaxi2008@foxmail.com" ]
gaxi2008@foxmail.com
b5d7c3c50a2e8ab3968366463687b3d5d957a95a
1bf78e211d2ebdfaa251d4ad5ffb2e0890e80707
/build/pc/DataSourceDict.cc
7b0412ff79c5b3d3a698475c741dae913b7772a5
[]
no_license
lsilvamiguel/hydra2-fwdet
7c81442334e3bf3b8bee6323586c27d747c5dcf6
738853d282344b88af49dda2069d91185c5bb0f9
refs/heads/master
2021-01-19T07:29:05.578288
2017-04-07T12:16:39
2017-04-07T12:16:39
87,542,261
0
0
null
null
null
null
UTF-8
C++
false
false
636,097
cc
// // File generated by /cvmfs/hades.gsi.de/install/root-5.34.34/bin/rootcint at Mon Mar 27 16:44:45 2017 // Do NOT change. Changes will be lost next time file is generated // #define R__DICTIONARY_FILENAME dOdOdIbuilddIpcdIDataSourceDict #include "RConfig.h" //rootcint 4834 #if !defined(R__ACCESS_IN_SYMBOL) //Break the privacy of classes -- Disabled for the moment #define private public #define protected public #endif // Since CINT ignores the std namespace, we need to do so in this file. namespace std {} using namespace std; #include "DataSourceDict.h" #include "TCollectionProxyInfo.h" #include "TClass.h" #include "TBuffer.h" #include "TMemberInspector.h" #include "TInterpreter.h" #include "TVirtualMutex.h" #include "TError.h" #ifndef G__ROOT #define G__ROOT #endif #include "RtypesImp.h" #include "TIsAProxy.h" #include "TFileMergeInfo.h" // Direct notice to TROOT of the dictionary's loading. namespace { static struct DictInit { DictInit() { ROOT::RegisterModule(); } } __TheDictionaryInitializer; } // START OF SHADOWS namespace ROOTShadow { namespace Shadow { } // of namespace Shadow } // of namespace ROOTShadow // END OF SHADOWS namespace ROOTDict { void HDataSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HDataSource(void *p); static void deleteArray_HDataSource(void *p); static void destruct_HDataSource(void *p); static void streamer_HDataSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HDataSource*) { ::HDataSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HDataSource >(0); static ::ROOT::TGenericClassInfo instance("HDataSource", ::HDataSource::Class_Version(), "./datasource/hdatasource.h", 10, typeid(::HDataSource), ::ROOT::DefineBehavior(ptr, ptr), &::HDataSource::Dictionary, isa_proxy, 0, sizeof(::HDataSource) ); instance.SetDelete(&delete_HDataSource); instance.SetDeleteArray(&deleteArray_HDataSource); instance.SetDestructor(&destruct_HDataSource); instance.SetStreamerFunc(&streamer_HDataSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HDataSource*) { return GenerateInitInstanceLocal((::HDataSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HDataSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HGeantReader_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HGeantReader(void *p = 0); static void *newArray_HGeantReader(Long_t size, void *p); static void delete_HGeantReader(void *p); static void deleteArray_HGeantReader(void *p); static void destruct_HGeantReader(void *p); static void streamer_HGeantReader(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HGeantReader*) { ::HGeantReader *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HGeantReader >(0); static ::ROOT::TGenericClassInfo instance("HGeantReader", ::HGeantReader::Class_Version(), "./datasource/hgeantreader.h", 8, typeid(::HGeantReader), ::ROOT::DefineBehavior(ptr, ptr), &::HGeantReader::Dictionary, isa_proxy, 0, sizeof(::HGeantReader) ); instance.SetNew(&new_HGeantReader); instance.SetNewArray(&newArray_HGeantReader); instance.SetDelete(&delete_HGeantReader); instance.SetDeleteArray(&deleteArray_HGeantReader); instance.SetDestructor(&destruct_HGeantReader); instance.SetStreamerFunc(&streamer_HGeantReader); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HGeantReader*) { return GenerateInitInstanceLocal((::HGeantReader*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HGeantReader*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HGeantSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HGeantSource(void *p); static void deleteArray_HGeantSource(void *p); static void destruct_HGeantSource(void *p); static void streamer_HGeantSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HGeantSource*) { ::HGeantSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HGeantSource >(0); static ::ROOT::TGenericClassInfo instance("HGeantSource", ::HGeantSource::Class_Version(), "./datasource/hgeantsource.h", 10, typeid(::HGeantSource), ::ROOT::DefineBehavior(ptr, ptr), &::HGeantSource::Dictionary, isa_proxy, 0, sizeof(::HGeantSource) ); instance.SetDelete(&delete_HGeantSource); instance.SetDeleteArray(&deleteArray_HGeantSource); instance.SetDestructor(&destruct_HGeantSource); instance.SetStreamerFunc(&streamer_HGeantSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HGeantSource*) { return GenerateInitInstanceLocal((::HGeantSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HGeantSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HRootSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HRootSource(void *p = 0); static void *newArray_HRootSource(Long_t size, void *p); static void delete_HRootSource(void *p); static void deleteArray_HRootSource(void *p); static void destruct_HRootSource(void *p); static void streamer_HRootSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HRootSource*) { ::HRootSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HRootSource >(0); static ::ROOT::TGenericClassInfo instance("HRootSource", ::HRootSource::Class_Version(), "./datasource/hrootsource.h", 14, typeid(::HRootSource), ::ROOT::DefineBehavior(ptr, ptr), &::HRootSource::Dictionary, isa_proxy, 0, sizeof(::HRootSource) ); instance.SetNew(&new_HRootSource); instance.SetNewArray(&newArray_HRootSource); instance.SetDelete(&delete_HRootSource); instance.SetDeleteArray(&deleteArray_HRootSource); instance.SetDestructor(&destruct_HRootSource); instance.SetStreamerFunc(&streamer_HRootSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HRootSource*) { return GenerateInitInstanceLocal((::HRootSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HRootSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HGeantMergeSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HGeantMergeSource(void *p = 0); static void *newArray_HGeantMergeSource(Long_t size, void *p); static void delete_HGeantMergeSource(void *p); static void deleteArray_HGeantMergeSource(void *p); static void destruct_HGeantMergeSource(void *p); static void streamer_HGeantMergeSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HGeantMergeSource*) { ::HGeantMergeSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HGeantMergeSource >(0); static ::ROOT::TGenericClassInfo instance("HGeantMergeSource", ::HGeantMergeSource::Class_Version(), "./datasource/hgeantmergesource.h", 19, typeid(::HGeantMergeSource), ::ROOT::DefineBehavior(ptr, ptr), &::HGeantMergeSource::Dictionary, isa_proxy, 0, sizeof(::HGeantMergeSource) ); instance.SetNew(&new_HGeantMergeSource); instance.SetNewArray(&newArray_HGeantMergeSource); instance.SetDelete(&delete_HGeantMergeSource); instance.SetDeleteArray(&deleteArray_HGeantMergeSource); instance.SetDestructor(&destruct_HGeantMergeSource); instance.SetStreamerFunc(&streamer_HGeantMergeSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HGeantMergeSource*) { return GenerateInitInstanceLocal((::HGeantMergeSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HGeantMergeSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrbNetUnpacker_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrbNetUnpacker(void *p = 0); static void *newArray_HTrbNetUnpacker(Long_t size, void *p); static void delete_HTrbNetUnpacker(void *p); static void deleteArray_HTrbNetUnpacker(void *p); static void destruct_HTrbNetUnpacker(void *p); static void streamer_HTrbNetUnpacker(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbNetUnpacker*) { ::HTrbNetUnpacker *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbNetUnpacker >(0); static ::ROOT::TGenericClassInfo instance("HTrbNetUnpacker", ::HTrbNetUnpacker::Class_Version(), "./datasource/htrbnetunpacker.h", 17, typeid(::HTrbNetUnpacker), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbNetUnpacker::Dictionary, isa_proxy, 0, sizeof(::HTrbNetUnpacker) ); instance.SetNew(&new_HTrbNetUnpacker); instance.SetNewArray(&newArray_HTrbNetUnpacker); instance.SetDelete(&delete_HTrbNetUnpacker); instance.SetDeleteArray(&deleteArray_HTrbNetUnpacker); instance.SetDestructor(&destruct_HTrbNetUnpacker); instance.SetStreamerFunc(&streamer_HTrbNetUnpacker); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbNetUnpacker*) { return GenerateInitInstanceLocal((::HTrbNetUnpacker*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbNetUnpacker*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldUnpack_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HldUnpack(void *p); static void deleteArray_HldUnpack(void *p); static void destruct_HldUnpack(void *p); static void streamer_HldUnpack(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldUnpack*) { ::HldUnpack *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldUnpack >(0); static ::ROOT::TGenericClassInfo instance("HldUnpack", ::HldUnpack::Class_Version(), "./datasource/hldunpack.h", 18, typeid(::HldUnpack), ::ROOT::DefineBehavior(ptr, ptr), &::HldUnpack::Dictionary, isa_proxy, 0, sizeof(::HldUnpack) ); instance.SetDelete(&delete_HldUnpack); instance.SetDeleteArray(&deleteArray_HldUnpack); instance.SetDestructor(&destruct_HldUnpack); instance.SetStreamerFunc(&streamer_HldUnpack); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldUnpack*) { return GenerateInitInstanceLocal((::HldUnpack*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldUnpack*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HldSource(void *p); static void deleteArray_HldSource(void *p); static void destruct_HldSource(void *p); static void streamer_HldSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldSource*) { ::HldSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldSource >(0); static ::ROOT::TGenericClassInfo instance("HldSource", ::HldSource::Class_Version(), "./datasource/hldsource.h", 12, typeid(::HldSource), ::ROOT::DefineBehavior(ptr, ptr), &::HldSource::Dictionary, isa_proxy, 0, sizeof(::HldSource) ); instance.SetDelete(&delete_HldSource); instance.SetDeleteArray(&deleteArray_HldSource); instance.SetDestructor(&destruct_HldSource); instance.SetStreamerFunc(&streamer_HldSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldSource*) { return GenerateInitInstanceLocal((::HldSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldFileOutput_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HldFileOutput(void *p); static void deleteArray_HldFileOutput(void *p); static void destruct_HldFileOutput(void *p); static void streamer_HldFileOutput(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldFileOutput*) { ::HldFileOutput *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldFileOutput >(0); static ::ROOT::TGenericClassInfo instance("HldFileOutput", ::HldFileOutput::Class_Version(), "./datasource/hldfileoutput.h", 12, typeid(::HldFileOutput), ::ROOT::DefineBehavior(ptr, ptr), &::HldFileOutput::Dictionary, isa_proxy, 0, sizeof(::HldFileOutput) ); instance.SetDelete(&delete_HldFileOutput); instance.SetDeleteArray(&deleteArray_HldFileOutput); instance.SetDestructor(&destruct_HldFileOutput); instance.SetStreamerFunc(&streamer_HldFileOutput); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldFileOutput*) { return GenerateInitInstanceLocal((::HldFileOutput*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldFileOutput*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldFileDesc_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HldFileDesc(void *p); static void deleteArray_HldFileDesc(void *p); static void destruct_HldFileDesc(void *p); static void streamer_HldFileDesc(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldFileDesc*) { ::HldFileDesc *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldFileDesc >(0); static ::ROOT::TGenericClassInfo instance("HldFileDesc", ::HldFileDesc::Class_Version(), "./datasource/hldfilesourcebase.h", 8, typeid(::HldFileDesc), ::ROOT::DefineBehavior(ptr, ptr), &::HldFileDesc::Dictionary, isa_proxy, 0, sizeof(::HldFileDesc) ); instance.SetDelete(&delete_HldFileDesc); instance.SetDeleteArray(&deleteArray_HldFileDesc); instance.SetDestructor(&destruct_HldFileDesc); instance.SetStreamerFunc(&streamer_HldFileDesc); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldFileDesc*) { return GenerateInitInstanceLocal((::HldFileDesc*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldFileDesc*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldFileSourceBase_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HldFileSourceBase(void *p); static void deleteArray_HldFileSourceBase(void *p); static void destruct_HldFileSourceBase(void *p); static void streamer_HldFileSourceBase(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldFileSourceBase*) { ::HldFileSourceBase *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldFileSourceBase >(0); static ::ROOT::TGenericClassInfo instance("HldFileSourceBase", ::HldFileSourceBase::Class_Version(), "./datasource/hldfilesourcebase.h", 25, typeid(::HldFileSourceBase), ::ROOT::DefineBehavior(ptr, ptr), &::HldFileSourceBase::Dictionary, isa_proxy, 0, sizeof(::HldFileSourceBase) ); instance.SetDelete(&delete_HldFileSourceBase); instance.SetDeleteArray(&deleteArray_HldFileSourceBase); instance.SetDestructor(&destruct_HldFileSourceBase); instance.SetStreamerFunc(&streamer_HldFileSourceBase); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldFileSourceBase*) { return GenerateInitInstanceLocal((::HldFileSourceBase*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldFileSourceBase*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldFileSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HldFileSource(void *p = 0); static void *newArray_HldFileSource(Long_t size, void *p); static void delete_HldFileSource(void *p); static void deleteArray_HldFileSource(void *p); static void destruct_HldFileSource(void *p); static void streamer_HldFileSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldFileSource*) { ::HldFileSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldFileSource >(0); static ::ROOT::TGenericClassInfo instance("HldFileSource", ::HldFileSource::Class_Version(), "./datasource/hldfilesource.h", 8, typeid(::HldFileSource), ::ROOT::DefineBehavior(ptr, ptr), &::HldFileSource::Dictionary, isa_proxy, 0, sizeof(::HldFileSource) ); instance.SetNew(&new_HldFileSource); instance.SetNewArray(&newArray_HldFileSource); instance.SetDelete(&delete_HldFileSource); instance.SetDeleteArray(&deleteArray_HldFileSource); instance.SetDestructor(&destruct_HldFileSource); instance.SetStreamerFunc(&streamer_HldFileSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldFileSource*) { return GenerateInitInstanceLocal((::HldFileSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldFileSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HKineGeantReader_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HKineGeantReader(void *p = 0); static void *newArray_HKineGeantReader(Long_t size, void *p); static void delete_HKineGeantReader(void *p); static void deleteArray_HKineGeantReader(void *p); static void destruct_HKineGeantReader(void *p); static void streamer_HKineGeantReader(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HKineGeantReader*) { ::HKineGeantReader *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HKineGeantReader >(0); static ::ROOT::TGenericClassInfo instance("HKineGeantReader", ::HKineGeantReader::Class_Version(), "./datasource/hkinegeantreader.h", 10, typeid(::HKineGeantReader), ::ROOT::DefineBehavior(ptr, ptr), &::HKineGeantReader::Dictionary, isa_proxy, 0, sizeof(::HKineGeantReader) ); instance.SetNew(&new_HKineGeantReader); instance.SetNewArray(&newArray_HKineGeantReader); instance.SetDelete(&delete_HKineGeantReader); instance.SetDeleteArray(&deleteArray_HKineGeantReader); instance.SetDestructor(&destruct_HKineGeantReader); instance.SetStreamerFunc(&streamer_HKineGeantReader); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HKineGeantReader*) { return GenerateInitInstanceLocal((::HKineGeantReader*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HKineGeantReader*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HSimulGeantReader_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HSimulGeantReader(void *p = 0); static void *newArray_HSimulGeantReader(Long_t size, void *p); static void delete_HSimulGeantReader(void *p); static void deleteArray_HSimulGeantReader(void *p); static void destruct_HSimulGeantReader(void *p); static void streamer_HSimulGeantReader(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HSimulGeantReader*) { ::HSimulGeantReader *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HSimulGeantReader >(0); static ::ROOT::TGenericClassInfo instance("HSimulGeantReader", ::HSimulGeantReader::Class_Version(), "./datasource/hsimulgeantreader.h", 9, typeid(::HSimulGeantReader), ::ROOT::DefineBehavior(ptr, ptr), &::HSimulGeantReader::Dictionary, isa_proxy, 0, sizeof(::HSimulGeantReader) ); instance.SetNew(&new_HSimulGeantReader); instance.SetNewArray(&newArray_HSimulGeantReader); instance.SetDelete(&delete_HSimulGeantReader); instance.SetDeleteArray(&deleteArray_HSimulGeantReader); instance.SetDestructor(&destruct_HSimulGeantReader); instance.SetStreamerFunc(&streamer_HSimulGeantReader); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HSimulGeantReader*) { return GenerateInitInstanceLocal((::HSimulGeantReader*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HSimulGeantReader*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HDirectSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void delete_HDirectSource(void *p); static void deleteArray_HDirectSource(void *p); static void destruct_HDirectSource(void *p); static void streamer_HDirectSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HDirectSource*) { ::HDirectSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HDirectSource >(0); static ::ROOT::TGenericClassInfo instance("HDirectSource", ::HDirectSource::Class_Version(), "./datasource/hdirectsource.h", 9, typeid(::HDirectSource), ::ROOT::DefineBehavior(ptr, ptr), &::HDirectSource::Dictionary, isa_proxy, 0, sizeof(::HDirectSource) ); instance.SetDelete(&delete_HDirectSource); instance.SetDeleteArray(&deleteArray_HDirectSource); instance.SetDestructor(&destruct_HDirectSource); instance.SetStreamerFunc(&streamer_HDirectSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HDirectSource*) { return GenerateInitInstanceLocal((::HDirectSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HDirectSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldRemoteSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HldRemoteSource(void *p = 0); static void *newArray_HldRemoteSource(Long_t size, void *p); static void delete_HldRemoteSource(void *p); static void deleteArray_HldRemoteSource(void *p); static void destruct_HldRemoteSource(void *p); static void streamer_HldRemoteSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldRemoteSource*) { ::HldRemoteSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldRemoteSource >(0); static ::ROOT::TGenericClassInfo instance("HldRemoteSource", ::HldRemoteSource::Class_Version(), "./datasource/hldremotesource.h", 8, typeid(::HldRemoteSource), ::ROOT::DefineBehavior(ptr, ptr), &::HldRemoteSource::Dictionary, isa_proxy, 0, sizeof(::HldRemoteSource) ); instance.SetNew(&new_HldRemoteSource); instance.SetNewArray(&newArray_HldRemoteSource); instance.SetDelete(&delete_HldRemoteSource); instance.SetDeleteArray(&deleteArray_HldRemoteSource); instance.SetDestructor(&destruct_HldRemoteSource); instance.SetStreamerFunc(&streamer_HldRemoteSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldRemoteSource*) { return GenerateInitInstanceLocal((::HldRemoteSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldRemoteSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HldGrepFileSource_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HldGrepFileSource(void *p = 0); static void *newArray_HldGrepFileSource(Long_t size, void *p); static void delete_HldGrepFileSource(void *p); static void deleteArray_HldGrepFileSource(void *p); static void destruct_HldGrepFileSource(void *p); static void streamer_HldGrepFileSource(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HldGrepFileSource*) { ::HldGrepFileSource *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HldGrepFileSource >(0); static ::ROOT::TGenericClassInfo instance("HldGrepFileSource", ::HldGrepFileSource::Class_Version(), "./datasource/hldgrepfilesource.h", 14, typeid(::HldGrepFileSource), ::ROOT::DefineBehavior(ptr, ptr), &::HldGrepFileSource::Dictionary, isa_proxy, 0, sizeof(::HldGrepFileSource) ); instance.SetNew(&new_HldGrepFileSource); instance.SetNewArray(&newArray_HldGrepFileSource); instance.SetDelete(&delete_HldGrepFileSource); instance.SetDeleteArray(&deleteArray_HldGrepFileSource); instance.SetDestructor(&destruct_HldGrepFileSource); instance.SetStreamerFunc(&streamer_HldGrepFileSource); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HldGrepFileSource*) { return GenerateInitInstanceLocal((::HldGrepFileSource*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HldGrepFileSource*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrbLookup_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrbLookup(void *p = 0); static void *newArray_HTrbLookup(Long_t size, void *p); static void delete_HTrbLookup(void *p); static void deleteArray_HTrbLookup(void *p); static void destruct_HTrbLookup(void *p); static void streamer_HTrbLookup(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbLookup*) { ::HTrbLookup *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbLookup >(0); static ::ROOT::TGenericClassInfo instance("HTrbLookup", ::HTrbLookup::Class_Version(), "./datasource/htrblookup.h", 90, typeid(::HTrbLookup), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbLookup::Dictionary, isa_proxy, 0, sizeof(::HTrbLookup) ); instance.SetNew(&new_HTrbLookup); instance.SetNewArray(&newArray_HTrbLookup); instance.SetDelete(&delete_HTrbLookup); instance.SetDeleteArray(&deleteArray_HTrbLookup); instance.SetDestructor(&destruct_HTrbLookup); instance.SetStreamerFunc(&streamer_HTrbLookup); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbLookup*) { return GenerateInitInstanceLocal((::HTrbLookup*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbLookup*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrbBaseUnpacker_ShowMembers(void *obj, TMemberInspector &R__insp); static void streamer_HTrbBaseUnpacker(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbBaseUnpacker*) { ::HTrbBaseUnpacker *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbBaseUnpacker >(0); static ::ROOT::TGenericClassInfo instance("HTrbBaseUnpacker", ::HTrbBaseUnpacker::Class_Version(), "./datasource/htrbbaseunpacker.h", 20, typeid(::HTrbBaseUnpacker), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbBaseUnpacker::Dictionary, isa_proxy, 0, sizeof(::HTrbBaseUnpacker) ); instance.SetStreamerFunc(&streamer_HTrbBaseUnpacker); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbBaseUnpacker*) { return GenerateInitInstanceLocal((::HTrbBaseUnpacker*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbBaseUnpacker*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb2Correction_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrb2Correction(void *p = 0); static void *newArray_HTrb2Correction(Long_t size, void *p); static void delete_HTrb2Correction(void *p); static void deleteArray_HTrb2Correction(void *p); static void destruct_HTrb2Correction(void *p); static void streamer_HTrb2Correction(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb2Correction*) { ::HTrb2Correction *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrb2Correction >(0); static ::ROOT::TGenericClassInfo instance("HTrb2Correction", ::HTrb2Correction::Class_Version(), "./datasource/htrb2correction.h", 10, typeid(::HTrb2Correction), ::ROOT::DefineBehavior(ptr, ptr), &::HTrb2Correction::Dictionary, isa_proxy, 0, sizeof(::HTrb2Correction) ); instance.SetNew(&new_HTrb2Correction); instance.SetNewArray(&newArray_HTrb2Correction); instance.SetDelete(&delete_HTrb2Correction); instance.SetDeleteArray(&deleteArray_HTrb2Correction); instance.SetDestructor(&destruct_HTrb2Correction); instance.SetStreamerFunc(&streamer_HTrb2Correction); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb2Correction*) { return GenerateInitInstanceLocal((::HTrb2Correction*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb2Correction*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrbnetAddressMapping_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrbnetAddressMapping(void *p = 0); static void *newArray_HTrbnetAddressMapping(Long_t size, void *p); static void delete_HTrbnetAddressMapping(void *p); static void deleteArray_HTrbnetAddressMapping(void *p); static void destruct_HTrbnetAddressMapping(void *p); static void streamer_HTrbnetAddressMapping(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbnetAddressMapping*) { ::HTrbnetAddressMapping *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbnetAddressMapping >(0); static ::ROOT::TGenericClassInfo instance("HTrbnetAddressMapping", ::HTrbnetAddressMapping::Class_Version(), "./datasource/htrbnetaddressmapping.h", 14, typeid(::HTrbnetAddressMapping), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbnetAddressMapping::Dictionary, isa_proxy, 0, sizeof(::HTrbnetAddressMapping) ); instance.SetNew(&new_HTrbnetAddressMapping); instance.SetNewArray(&newArray_HTrbnetAddressMapping); instance.SetDelete(&delete_HTrbnetAddressMapping); instance.SetDeleteArray(&deleteArray_HTrbnetAddressMapping); instance.SetDestructor(&destruct_HTrbnetAddressMapping); instance.SetStreamerFunc(&streamer_HTrbnetAddressMapping); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbnetAddressMapping*) { return GenerateInitInstanceLocal((::HTrbnetAddressMapping*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbnetAddressMapping*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb2Unpacker_ShowMembers(void *obj, TMemberInspector &R__insp); static void streamer_HTrb2Unpacker(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb2Unpacker*) { ::HTrb2Unpacker *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrb2Unpacker >(0); static ::ROOT::TGenericClassInfo instance("HTrb2Unpacker", ::HTrb2Unpacker::Class_Version(), "./datasource/htrb2unpacker.h", 22, typeid(::HTrb2Unpacker), ::ROOT::DefineBehavior(ptr, ptr), &::HTrb2Unpacker::Dictionary, isa_proxy, 0, sizeof(::HTrb2Unpacker) ); instance.SetStreamerFunc(&streamer_HTrb2Unpacker); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb2Unpacker*) { return GenerateInitInstanceLocal((::HTrb2Unpacker*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb2Unpacker*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb3Unpacker_ShowMembers(void *obj, TMemberInspector &R__insp); static void streamer_HTrb3Unpacker(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb3Unpacker*) { ::HTrb3Unpacker *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrb3Unpacker >(0); static ::ROOT::TGenericClassInfo instance("HTrb3Unpacker", ::HTrb3Unpacker::Class_Version(), "./datasource/htrb3unpacker.h", 22, typeid(::HTrb3Unpacker), ::ROOT::DefineBehavior(ptr, ptr), &::HTrb3Unpacker::Dictionary, isa_proxy, 0, sizeof(::HTrb3Unpacker) ); instance.SetStreamerFunc(&streamer_HTrb3Unpacker); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb3Unpacker*) { return GenerateInitInstanceLocal((::HTrb3Unpacker*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb3Unpacker*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb3CalparTdc_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrb3CalparTdc(void *p = 0); static void *newArray_HTrb3CalparTdc(Long_t size, void *p); static void delete_HTrb3CalparTdc(void *p); static void deleteArray_HTrb3CalparTdc(void *p); static void destruct_HTrb3CalparTdc(void *p); static void streamer_HTrb3CalparTdc(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb3CalparTdc*) { ::HTrb3CalparTdc *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrb3CalparTdc >(0); static ::ROOT::TGenericClassInfo instance("HTrb3CalparTdc", ::HTrb3CalparTdc::Class_Version(), "./datasource/htrb3calpar.h", 16, typeid(::HTrb3CalparTdc), ::ROOT::DefineBehavior(ptr, ptr), &::HTrb3CalparTdc::Dictionary, isa_proxy, 0, sizeof(::HTrb3CalparTdc) ); instance.SetNew(&new_HTrb3CalparTdc); instance.SetNewArray(&newArray_HTrb3CalparTdc); instance.SetDelete(&delete_HTrb3CalparTdc); instance.SetDeleteArray(&deleteArray_HTrb3CalparTdc); instance.SetDestructor(&destruct_HTrb3CalparTdc); instance.SetStreamerFunc(&streamer_HTrb3CalparTdc); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb3CalparTdc*) { return GenerateInitInstanceLocal((::HTrb3CalparTdc*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb3CalparTdc*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb3TdcUnpacker_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrb3TdcUnpacker(void *p = 0); static void *newArray_HTrb3TdcUnpacker(Long_t size, void *p); static void delete_HTrb3TdcUnpacker(void *p); static void deleteArray_HTrb3TdcUnpacker(void *p); static void destruct_HTrb3TdcUnpacker(void *p); static void streamer_HTrb3TdcUnpacker(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb3TdcUnpacker*) { ::HTrb3TdcUnpacker *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrb3TdcUnpacker >(0); static ::ROOT::TGenericClassInfo instance("HTrb3TdcUnpacker", ::HTrb3TdcUnpacker::Class_Version(), "./datasource/htrb3tdcunpacker.h", 19, typeid(::HTrb3TdcUnpacker), ::ROOT::DefineBehavior(ptr, ptr), &::HTrb3TdcUnpacker::Dictionary, isa_proxy, 0, sizeof(::HTrb3TdcUnpacker) ); instance.SetNew(&new_HTrb3TdcUnpacker); instance.SetNewArray(&newArray_HTrb3TdcUnpacker); instance.SetDelete(&delete_HTrb3TdcUnpacker); instance.SetDeleteArray(&deleteArray_HTrb3TdcUnpacker); instance.SetDestructor(&destruct_HTrb3TdcUnpacker); instance.SetStreamerFunc(&streamer_HTrb3TdcUnpacker); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb3TdcUnpacker*) { return GenerateInitInstanceLocal((::HTrb3TdcUnpacker*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb3TdcUnpacker*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb3Calpar_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrb3Calpar(void *p = 0); static void *newArray_HTrb3Calpar(Long_t size, void *p); static void delete_HTrb3Calpar(void *p); static void deleteArray_HTrb3Calpar(void *p); static void destruct_HTrb3Calpar(void *p); static void streamer_HTrb3Calpar(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb3Calpar*) { ::HTrb3Calpar *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrb3Calpar >(0); static ::ROOT::TGenericClassInfo instance("HTrb3Calpar", ::HTrb3Calpar::Class_Version(), "./datasource/htrb3calpar.h", 69, typeid(::HTrb3Calpar), ::ROOT::DefineBehavior(ptr, ptr), &::HTrb3Calpar::Dictionary, isa_proxy, 0, sizeof(::HTrb3Calpar) ); instance.SetNew(&new_HTrb3Calpar); instance.SetNewArray(&newArray_HTrb3Calpar); instance.SetDelete(&delete_HTrb3Calpar); instance.SetDeleteArray(&deleteArray_HTrb3Calpar); instance.SetDestructor(&destruct_HTrb3Calpar); instance.SetStreamerFunc(&streamer_HTrb3Calpar); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb3Calpar*) { return GenerateInitInstanceLocal((::HTrb3Calpar*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb3Calpar*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrb3TdcMessage_ShowMembers(void *obj, TMemberInspector &R__insp); static void HTrb3TdcMessage_Dictionary(); static void *new_HTrb3TdcMessage(void *p = 0); static void *newArray_HTrb3TdcMessage(Long_t size, void *p); static void delete_HTrb3TdcMessage(void *p); static void deleteArray_HTrb3TdcMessage(void *p); static void destruct_HTrb3TdcMessage(void *p); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb3TdcMessage*) { ::HTrb3TdcMessage *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(::HTrb3TdcMessage),0); static ::ROOT::TGenericClassInfo instance("HTrb3TdcMessage", "./datasource/htrb3tdcmessage.h", 26, typeid(::HTrb3TdcMessage), ::ROOT::DefineBehavior(ptr, ptr), 0, &HTrb3TdcMessage_Dictionary, isa_proxy, 0, sizeof(::HTrb3TdcMessage) ); instance.SetNew(&new_HTrb3TdcMessage); instance.SetNewArray(&newArray_HTrb3TdcMessage); instance.SetDelete(&delete_HTrb3TdcMessage); instance.SetDeleteArray(&deleteArray_HTrb3TdcMessage); instance.SetDestructor(&destruct_HTrb3TdcMessage); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb3TdcMessage*) { return GenerateInitInstanceLocal((::HTrb3TdcMessage*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb3TdcMessage*)0x0); R__UseDummy(_R__UNIQUE_(Init)); // Dictionary for non-ClassDef classes static void HTrb3TdcMessage_Dictionary() { ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3TdcMessage*)0x0)->GetClass(); } } // end of namespace ROOTDict namespace ROOTDict { void HTrb3TdcIterator_ShowMembers(void *obj, TMemberInspector &R__insp); static void HTrb3TdcIterator_Dictionary(); static void *new_HTrb3TdcIterator(void *p = 0); static void *newArray_HTrb3TdcIterator(Long_t size, void *p); static void delete_HTrb3TdcIterator(void *p); static void deleteArray_HTrb3TdcIterator(void *p); static void destruct_HTrb3TdcIterator(void *p); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrb3TdcIterator*) { ::HTrb3TdcIterator *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(::HTrb3TdcIterator),0); static ::ROOT::TGenericClassInfo instance("HTrb3TdcIterator", "./datasource/htrb3tdciterator.h", 6, typeid(::HTrb3TdcIterator), ::ROOT::DefineBehavior(ptr, ptr), 0, &HTrb3TdcIterator_Dictionary, isa_proxy, 0, sizeof(::HTrb3TdcIterator) ); instance.SetNew(&new_HTrb3TdcIterator); instance.SetNewArray(&newArray_HTrb3TdcIterator); instance.SetDelete(&delete_HTrb3TdcIterator); instance.SetDeleteArray(&deleteArray_HTrb3TdcIterator); instance.SetDestructor(&destruct_HTrb3TdcIterator); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrb3TdcIterator*) { return GenerateInitInstanceLocal((::HTrb3TdcIterator*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrb3TdcIterator*)0x0); R__UseDummy(_R__UNIQUE_(Init)); // Dictionary for non-ClassDef classes static void HTrb3TdcIterator_Dictionary() { ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3TdcIterator*)0x0)->GetClass(); } } // end of namespace ROOTDict namespace ROOTDict { void HTrbLookupChan_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrbLookupChan(void *p = 0); static void *newArray_HTrbLookupChan(Long_t size, void *p); static void delete_HTrbLookupChan(void *p); static void deleteArray_HTrbLookupChan(void *p); static void destruct_HTrbLookupChan(void *p); static void streamer_HTrbLookupChan(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbLookupChan*) { ::HTrbLookupChan *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbLookupChan >(0); static ::ROOT::TGenericClassInfo instance("HTrbLookupChan", ::HTrbLookupChan::Class_Version(), "./datasource/htrblookup.h", 11, typeid(::HTrbLookupChan), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbLookupChan::Dictionary, isa_proxy, 1, sizeof(::HTrbLookupChan) ); instance.SetNew(&new_HTrbLookupChan); instance.SetNewArray(&newArray_HTrbLookupChan); instance.SetDelete(&delete_HTrbLookupChan); instance.SetDeleteArray(&deleteArray_HTrbLookupChan); instance.SetDestructor(&destruct_HTrbLookupChan); instance.SetStreamerFunc(&streamer_HTrbLookupChan); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbLookupChan*) { return GenerateInitInstanceLocal((::HTrbLookupChan*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbLookupChan*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace ROOTDict { void HTrbLookupBoard_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrbLookupBoard(void *p = 0); static void *newArray_HTrbLookupBoard(Long_t size, void *p); static void delete_HTrbLookupBoard(void *p); static void deleteArray_HTrbLookupBoard(void *p); static void destruct_HTrbLookupBoard(void *p); static void streamer_HTrbLookupBoard(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbLookupBoard*) { ::HTrbLookupBoard *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbLookupBoard >(0); static ::ROOT::TGenericClassInfo instance("HTrbLookupBoard", ::HTrbLookupBoard::Class_Version(), "./datasource/htrblookup.h", 70, typeid(::HTrbLookupBoard), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbLookupBoard::Dictionary, isa_proxy, 0, sizeof(::HTrbLookupBoard) ); instance.SetNew(&new_HTrbLookupBoard); instance.SetNewArray(&newArray_HTrbLookupBoard); instance.SetDelete(&delete_HTrbLookupBoard); instance.SetDeleteArray(&deleteArray_HTrbLookupBoard); instance.SetDestructor(&destruct_HTrbLookupBoard); instance.SetStreamerFunc(&streamer_HTrbLookupBoard); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbLookupBoard*) { return GenerateInitInstanceLocal((::HTrbLookupBoard*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbLookupBoard*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict namespace Trbnet { namespace ROOTDict { inline ::ROOT::TGenericClassInfo *GenerateInitInstance(); static void Trbnet_Dictionary(); // Function generating the singleton type initializer inline ::ROOT::TGenericClassInfo *GenerateInitInstance() { static ::ROOT::TGenericClassInfo instance("Trbnet", 0 /*version*/, "./datasource/htrbnetdef.h", 4, ::ROOT::DefineBehavior((void*)0,(void*)0), &Trbnet_Dictionary, 0); return &instance; } // Insure that the inline function is _not_ optimized away by the compiler ::ROOT::TGenericClassInfo *(*_R__UNIQUE_(InitFunctionKeeper))() = &GenerateInitInstance; // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstance(); R__UseDummy(_R__UNIQUE_(Init)); // Dictionary for non-ClassDef classes static void Trbnet_Dictionary() { GenerateInitInstance()->GetClass(); } } } namespace ROOTDict { void HTrbNetDebugInfo_ShowMembers(void *obj, TMemberInspector &R__insp); static void *new_HTrbNetDebugInfo(void *p = 0); static void *newArray_HTrbNetDebugInfo(Long_t size, void *p); static void delete_HTrbNetDebugInfo(void *p); static void deleteArray_HTrbNetDebugInfo(void *p); static void destruct_HTrbNetDebugInfo(void *p); static void streamer_HTrbNetDebugInfo(TBuffer &buf, void *obj); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::HTrbNetDebugInfo*) { ::HTrbNetDebugInfo *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::HTrbNetDebugInfo >(0); static ::ROOT::TGenericClassInfo instance("HTrbNetDebugInfo", ::HTrbNetDebugInfo::Class_Version(), "./datasource/htrbnetdebuginfo.h", 14, typeid(::HTrbNetDebugInfo), ::ROOT::DefineBehavior(ptr, ptr), &::HTrbNetDebugInfo::Dictionary, isa_proxy, 0, sizeof(::HTrbNetDebugInfo) ); instance.SetNew(&new_HTrbNetDebugInfo); instance.SetNewArray(&newArray_HTrbNetDebugInfo); instance.SetDelete(&delete_HTrbNetDebugInfo); instance.SetDeleteArray(&deleteArray_HTrbNetDebugInfo); instance.SetDestructor(&destruct_HTrbNetDebugInfo); instance.SetStreamerFunc(&streamer_HTrbNetDebugInfo); return &instance; } ROOT::TGenericClassInfo *GenerateInitInstance(const ::HTrbNetDebugInfo*) { return GenerateInitInstanceLocal((::HTrbNetDebugInfo*)0); } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::HTrbNetDebugInfo*)0x0); R__UseDummy(_R__UNIQUE_(Init)); } // end of namespace ROOTDict //______________________________________________________________________________ atomic_TClass_ptr HDataSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HDataSource::Class_Name() { return "HDataSource"; } //______________________________________________________________________________ const char *HDataSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HDataSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HDataSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HDataSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HDataSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HDataSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HDataSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HDataSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HGeantReader::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HGeantReader::Class_Name() { return "HGeantReader"; } //______________________________________________________________________________ const char *HGeantReader::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantReader*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HGeantReader::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantReader*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HGeantReader::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantReader*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HGeantReader::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantReader*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HGeantSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HGeantSource::Class_Name() { return "HGeantSource"; } //______________________________________________________________________________ const char *HGeantSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HGeantSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HGeantSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HGeantSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HRootSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HRootSource::Class_Name() { return "HRootSource"; } //______________________________________________________________________________ const char *HRootSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HRootSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HRootSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HRootSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HRootSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HRootSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HRootSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HRootSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HGeantMergeSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HGeantMergeSource::Class_Name() { return "HGeantMergeSource"; } //______________________________________________________________________________ const char *HGeantMergeSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantMergeSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HGeantMergeSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantMergeSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HGeantMergeSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantMergeSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HGeantMergeSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HGeantMergeSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbNetUnpacker::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbNetUnpacker::Class_Name() { return "HTrbNetUnpacker"; } //______________________________________________________________________________ const char *HTrbNetUnpacker::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetUnpacker*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbNetUnpacker::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetUnpacker*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbNetUnpacker::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetUnpacker*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbNetUnpacker::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetUnpacker*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldUnpack::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldUnpack::Class_Name() { return "HldUnpack"; } //______________________________________________________________________________ const char *HldUnpack::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldUnpack*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldUnpack::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldUnpack*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldUnpack::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldUnpack*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldUnpack::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldUnpack*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldSource::Class_Name() { return "HldSource"; } //______________________________________________________________________________ const char *HldSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldFileOutput::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldFileOutput::Class_Name() { return "HldFileOutput"; } //______________________________________________________________________________ const char *HldFileOutput::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileOutput*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldFileOutput::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileOutput*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldFileOutput::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileOutput*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldFileOutput::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileOutput*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldFileDesc::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldFileDesc::Class_Name() { return "HldFileDesc"; } //______________________________________________________________________________ const char *HldFileDesc::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileDesc*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldFileDesc::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileDesc*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldFileDesc::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileDesc*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldFileDesc::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileDesc*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldFileSourceBase::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldFileSourceBase::Class_Name() { return "HldFileSourceBase"; } //______________________________________________________________________________ const char *HldFileSourceBase::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSourceBase*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldFileSourceBase::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSourceBase*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldFileSourceBase::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSourceBase*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldFileSourceBase::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSourceBase*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldFileSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldFileSource::Class_Name() { return "HldFileSource"; } //______________________________________________________________________________ const char *HldFileSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldFileSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldFileSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldFileSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldFileSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HKineGeantReader::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HKineGeantReader::Class_Name() { return "HKineGeantReader"; } //______________________________________________________________________________ const char *HKineGeantReader::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HKineGeantReader*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HKineGeantReader::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HKineGeantReader*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HKineGeantReader::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HKineGeantReader*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HKineGeantReader::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HKineGeantReader*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HSimulGeantReader::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HSimulGeantReader::Class_Name() { return "HSimulGeantReader"; } //______________________________________________________________________________ const char *HSimulGeantReader::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HSimulGeantReader*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HSimulGeantReader::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HSimulGeantReader*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HSimulGeantReader::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HSimulGeantReader*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HSimulGeantReader::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HSimulGeantReader*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HDirectSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HDirectSource::Class_Name() { return "HDirectSource"; } //______________________________________________________________________________ const char *HDirectSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HDirectSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HDirectSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HDirectSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HDirectSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HDirectSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HDirectSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HDirectSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldRemoteSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldRemoteSource::Class_Name() { return "HldRemoteSource"; } //______________________________________________________________________________ const char *HldRemoteSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldRemoteSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldRemoteSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldRemoteSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldRemoteSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldRemoteSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldRemoteSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldRemoteSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HldGrepFileSource::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HldGrepFileSource::Class_Name() { return "HldGrepFileSource"; } //______________________________________________________________________________ const char *HldGrepFileSource::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldGrepFileSource*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HldGrepFileSource::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HldGrepFileSource*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HldGrepFileSource::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldGrepFileSource*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HldGrepFileSource::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HldGrepFileSource*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbLookup::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbLookup::Class_Name() { return "HTrbLookup"; } //______________________________________________________________________________ const char *HTrbLookup::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookup*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbLookup::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookup*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbLookup::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookup*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbLookup::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookup*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbBaseUnpacker::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbBaseUnpacker::Class_Name() { return "HTrbBaseUnpacker"; } //______________________________________________________________________________ const char *HTrbBaseUnpacker::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbBaseUnpacker*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbBaseUnpacker::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbBaseUnpacker*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbBaseUnpacker::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbBaseUnpacker*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbBaseUnpacker::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbBaseUnpacker*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrb2Correction::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrb2Correction::Class_Name() { return "HTrb2Correction"; } //______________________________________________________________________________ const char *HTrb2Correction::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Correction*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrb2Correction::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Correction*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrb2Correction::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Correction*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrb2Correction::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Correction*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbnetAddressMapping::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbnetAddressMapping::Class_Name() { return "HTrbnetAddressMapping"; } //______________________________________________________________________________ const char *HTrbnetAddressMapping::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbnetAddressMapping*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbnetAddressMapping::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbnetAddressMapping*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbnetAddressMapping::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbnetAddressMapping*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbnetAddressMapping::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbnetAddressMapping*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrb2Unpacker::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrb2Unpacker::Class_Name() { return "HTrb2Unpacker"; } //______________________________________________________________________________ const char *HTrb2Unpacker::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Unpacker*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrb2Unpacker::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Unpacker*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrb2Unpacker::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Unpacker*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrb2Unpacker::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb2Unpacker*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrb3Unpacker::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrb3Unpacker::Class_Name() { return "HTrb3Unpacker"; } //______________________________________________________________________________ const char *HTrb3Unpacker::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Unpacker*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrb3Unpacker::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Unpacker*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrb3Unpacker::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Unpacker*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrb3Unpacker::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Unpacker*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrb3CalparTdc::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrb3CalparTdc::Class_Name() { return "HTrb3CalparTdc"; } //______________________________________________________________________________ const char *HTrb3CalparTdc::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3CalparTdc*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrb3CalparTdc::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3CalparTdc*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrb3CalparTdc::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3CalparTdc*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrb3CalparTdc::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3CalparTdc*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrb3TdcUnpacker::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrb3TdcUnpacker::Class_Name() { return "HTrb3TdcUnpacker"; } //______________________________________________________________________________ const char *HTrb3TdcUnpacker::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3TdcUnpacker*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrb3TdcUnpacker::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3TdcUnpacker*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrb3TdcUnpacker::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3TdcUnpacker*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrb3TdcUnpacker::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3TdcUnpacker*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrb3Calpar::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrb3Calpar::Class_Name() { return "HTrb3Calpar"; } //______________________________________________________________________________ const char *HTrb3Calpar::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Calpar*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrb3Calpar::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Calpar*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrb3Calpar::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Calpar*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrb3Calpar::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrb3Calpar*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbLookupChan::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbLookupChan::Class_Name() { return "HTrbLookupChan"; } //______________________________________________________________________________ const char *HTrbLookupChan::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupChan*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbLookupChan::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupChan*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbLookupChan::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupChan*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbLookupChan::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupChan*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbLookupBoard::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbLookupBoard::Class_Name() { return "HTrbLookupBoard"; } //______________________________________________________________________________ const char *HTrbLookupBoard::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupBoard*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbLookupBoard::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupBoard*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbLookupBoard::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupBoard*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbLookupBoard::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbLookupBoard*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ atomic_TClass_ptr HTrbNetDebugInfo::fgIsA(0); // static to hold class pointer //______________________________________________________________________________ const char *HTrbNetDebugInfo::Class_Name() { return "HTrbNetDebugInfo"; } //______________________________________________________________________________ const char *HTrbNetDebugInfo::ImplFileName() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetDebugInfo*)0x0)->GetImplFileName(); } //______________________________________________________________________________ int HTrbNetDebugInfo::ImplFileLine() { return ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetDebugInfo*)0x0)->GetImplFileLine(); } //______________________________________________________________________________ void HTrbNetDebugInfo::Dictionary() { fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetDebugInfo*)0x0)->GetClass(); } //______________________________________________________________________________ TClass *HTrbNetDebugInfo::Class() { if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::HTrbNetDebugInfo*)0x0)->GetClass();} } return fgIsA; } //______________________________________________________________________________ void HldSource::Streamer(TBuffer &R__b) { // Stream an object of class HldSource. HDataSource::Streamer(R__b); } //______________________________________________________________________________ void HldSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldSource. TClass *R__cl = ::HldSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*hubUnpacker", &hubUnpacker); R__insp.Inspect(R__cl, R__insp.GetParent(), "isDumped", &isDumped); R__insp.Inspect(R__cl, R__insp.GetParent(), "isScanned", &isScanned); R__insp.Inspect(R__cl, R__insp.GetParent(), "oldDecodingStyle", &oldDecodingStyle); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fUnpackerList", &fUnpackerList); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fReadEvent", &fReadEvent); HDataSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HldSource(void *p) { delete ((::HldSource*)p); } static void deleteArray_HldSource(void *p) { delete [] ((::HldSource*)p); } static void destruct_HldSource(void *p) { typedef ::HldSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldSource(TBuffer &buf, void *obj) { ((::HldSource*)obj)->::HldSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HldSource //______________________________________________________________________________ void HDataSource::Streamer(TBuffer &R__b) { // Stream an object of class HDataSource. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TObject::Streamer(R__b); R__b.CheckByteCount(R__s, R__c, HDataSource::IsA()); } else { R__c = R__b.WriteVersion(HDataSource::IsA(), kTRUE); TObject::Streamer(R__b); R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HDataSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HDataSource. TClass *R__cl = ::HDataSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*fEventAddr", &fEventAddr); R__insp.Inspect(R__cl, R__insp.GetParent(), "fForcedID", &fForcedID); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HDataSource(void *p) { delete ((::HDataSource*)p); } static void deleteArray_HDataSource(void *p) { delete [] ((::HDataSource*)p); } static void destruct_HDataSource(void *p) { typedef ::HDataSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HDataSource(TBuffer &buf, void *obj) { ((::HDataSource*)obj)->::HDataSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HDataSource //______________________________________________________________________________ void HRootSource::Streamer(TBuffer &R__b) { // Stream an object of class HRootSource. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HDataSource::Streamer(R__b); R__b >> fInput; fDirectory.Streamer(R__b); R__b >> fEntries; R__b >> fPersistency; R__b >> fMerge; R__b >> fCursor; R__b >> fSplitLevel; R__b >> fCurrentRunId; R__b >> fCurrentRefId; R__b >> fGlobalRefId; R__b >> fEventList; R__b.CheckByteCount(R__s, R__c, HRootSource::IsA()); } else { R__c = R__b.WriteVersion(HRootSource::IsA(), kTRUE); HDataSource::Streamer(R__b); R__b << fInput; fDirectory.Streamer(R__b); R__b << fEntries; R__b << fPersistency; R__b << fMerge; R__b << fCursor; R__b << fSplitLevel; R__b << fCurrentRunId; R__b << fCurrentRefId; R__b << fGlobalRefId; R__b << fEventList; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HRootSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HRootSource. TClass *R__cl = ::HRootSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*fInput", &fInput); R__insp.Inspect(R__cl, R__insp.GetParent(), "fDirectory", &fDirectory); R__insp.InspectMember(fDirectory, "fDirectory."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fEntries", &fEntries); R__insp.Inspect(R__cl, R__insp.GetParent(), "fPersistency", &fPersistency); R__insp.Inspect(R__cl, R__insp.GetParent(), "fMerge", &fMerge); R__insp.Inspect(R__cl, R__insp.GetParent(), "fCursor", &fCursor); R__insp.Inspect(R__cl, R__insp.GetParent(), "fSplitLevel", &fSplitLevel); R__insp.Inspect(R__cl, R__insp.GetParent(), "fCurrentRunId", &fCurrentRunId); R__insp.Inspect(R__cl, R__insp.GetParent(), "fCurrentRefId", &fCurrentRefId); R__insp.Inspect(R__cl, R__insp.GetParent(), "fGlobalRefId", &fGlobalRefId); R__insp.Inspect(R__cl, R__insp.GetParent(), "fRefIds", (void*)&fRefIds); R__insp.InspectMember("map<Int_t,Int_t>", (void*)&fRefIds, "fRefIds.", true); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fEventInFile", &fEventInFile); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fEventList", &fEventList); R__insp.Inspect(R__cl, R__insp.GetParent(), "fLastRunId", &fLastRunId); R__insp.Inspect(R__cl, R__insp.GetParent(), "overwriteVersion", &overwriteVersion); R__insp.Inspect(R__cl, R__insp.GetParent(), "replaceVersion", &replaceVersion); HDataSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HRootSource(void *p) { return p ? new(p) ::HRootSource : new ::HRootSource; } static void *newArray_HRootSource(Long_t nElements, void *p) { return p ? new(p) ::HRootSource[nElements] : new ::HRootSource[nElements]; } // Wrapper around operator delete static void delete_HRootSource(void *p) { delete ((::HRootSource*)p); } static void deleteArray_HRootSource(void *p) { delete [] ((::HRootSource*)p); } static void destruct_HRootSource(void *p) { typedef ::HRootSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HRootSource(TBuffer &buf, void *obj) { ((::HRootSource*)obj)->::HRootSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HRootSource //______________________________________________________________________________ void HGeantMergeSource::Streamer(TBuffer &R__b) { // Stream an object of class HGeantMergeSource. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HRootSource::Streamer(R__b); { vector<HParallelEvent*> &R__stl = fAdditionalInputs; R__stl.clear(); TClass *R__tcl1 = TBuffer::GetClass(typeid(HParallelEvent)); if (R__tcl1==0) { Error("fAdditionalInputs streamer","Missing the TClass object for HParallelEvent!"); return; } int R__i, R__n; R__b >> R__n; R__stl.reserve(R__n); for (R__i = 0; R__i < R__n; R__i++) { HParallelEvent* R__t; R__t = (HParallelEvent*)R__b.ReadObjectAny(R__tcl1); R__stl.push_back(R__t); } } R__b.CheckByteCount(R__s, R__c, HGeantMergeSource::IsA()); } else { R__c = R__b.WriteVersion(HGeantMergeSource::IsA(), kTRUE); HRootSource::Streamer(R__b); { vector<HParallelEvent*> &R__stl = fAdditionalInputs; int R__n=(true) ? int(R__stl.size()) : 0; R__b << R__n; if(R__n) { vector<HParallelEvent*>::iterator R__k; for (R__k = R__stl.begin(); R__k != R__stl.end(); ++R__k) { R__b << (*R__k); } } } R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HGeantMergeSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HGeantMergeSource. TClass *R__cl = ::HGeantMergeSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fAdditionalInputs", (void*)&fAdditionalInputs); R__insp.InspectMember("vector<HParallelEvent*>", (void*)&fAdditionalInputs, "fAdditionalInputs.", false); HRootSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HGeantMergeSource(void *p) { return p ? new(p) ::HGeantMergeSource : new ::HGeantMergeSource; } static void *newArray_HGeantMergeSource(Long_t nElements, void *p) { return p ? new(p) ::HGeantMergeSource[nElements] : new ::HGeantMergeSource[nElements]; } // Wrapper around operator delete static void delete_HGeantMergeSource(void *p) { delete ((::HGeantMergeSource*)p); } static void deleteArray_HGeantMergeSource(void *p) { delete [] ((::HGeantMergeSource*)p); } static void destruct_HGeantMergeSource(void *p) { typedef ::HGeantMergeSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HGeantMergeSource(TBuffer &buf, void *obj) { ((::HGeantMergeSource*)obj)->::HGeantMergeSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HGeantMergeSource //______________________________________________________________________________ void HldFileSourceBase::Streamer(TBuffer &R__b) { // Stream an object of class HldFileSourceBase. HldSource::Streamer(R__b); } //______________________________________________________________________________ void HldFileSourceBase::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldFileSourceBase. TClass *R__cl = ::HldFileSourceBase::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fFileList", &fFileList); R__insp.InspectMember(fFileList, "fFileList."); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fCurrentFile", &fCurrentFile); R__insp.Inspect(R__cl, R__insp.GetParent(), "fCurrentDir", &fCurrentDir); R__insp.InspectMember(fCurrentDir, "fCurrentDir."); R__insp.Inspect(R__cl, R__insp.GetParent(), "*iter", &iter); R__insp.Inspect(R__cl, R__insp.GetParent(), "fEventNr", &fEventNr); R__insp.Inspect(R__cl, R__insp.GetParent(), "fEventLimit", &fEventLimit); HldSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HldFileSourceBase(void *p) { delete ((::HldFileSourceBase*)p); } static void deleteArray_HldFileSourceBase(void *p) { delete [] ((::HldFileSourceBase*)p); } static void destruct_HldFileSourceBase(void *p) { typedef ::HldFileSourceBase current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldFileSourceBase(TBuffer &buf, void *obj) { ((::HldFileSourceBase*)obj)->::HldFileSourceBase::Streamer(buf); } } // end of namespace ROOTDict for class ::HldFileSourceBase //______________________________________________________________________________ void HldFileDesc::Streamer(TBuffer &R__b) { // Stream an object of class HldFileDesc. TObject::Streamer(R__b); } //______________________________________________________________________________ void HldFileDesc::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldFileDesc. TClass *R__cl = ::HldFileDesc::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fName", &fName); R__insp.InspectMember(fName, "fName."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fRunId", &fRunId); R__insp.Inspect(R__cl, R__insp.GetParent(), "fRefId", &fRefId); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HldFileDesc(void *p) { delete ((::HldFileDesc*)p); } static void deleteArray_HldFileDesc(void *p) { delete [] ((::HldFileDesc*)p); } static void destruct_HldFileDesc(void *p) { typedef ::HldFileDesc current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldFileDesc(TBuffer &buf, void *obj) { ((::HldFileDesc*)obj)->::HldFileDesc::Streamer(buf); } } // end of namespace ROOTDict for class ::HldFileDesc //______________________________________________________________________________ void HldFileSource::Streamer(TBuffer &R__b) { // Stream an object of class HldFileSource. HldFileSourceBase::Streamer(R__b); } //______________________________________________________________________________ void HldFileSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldFileSource. TClass *R__cl = ::HldFileSource::IsA(); if (R__cl || R__insp.IsA()) { } HldFileSourceBase::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HldFileSource(void *p) { return p ? new(p) ::HldFileSource : new ::HldFileSource; } static void *newArray_HldFileSource(Long_t nElements, void *p) { return p ? new(p) ::HldFileSource[nElements] : new ::HldFileSource[nElements]; } // Wrapper around operator delete static void delete_HldFileSource(void *p) { delete ((::HldFileSource*)p); } static void deleteArray_HldFileSource(void *p) { delete [] ((::HldFileSource*)p); } static void destruct_HldFileSource(void *p) { typedef ::HldFileSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldFileSource(TBuffer &buf, void *obj) { ((::HldFileSource*)obj)->::HldFileSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HldFileSource //______________________________________________________________________________ void HldGrepFileSource::Streamer(TBuffer &R__b) { // Stream an object of class HldGrepFileSource. HldFileSourceBase::Streamer(R__b); } //______________________________________________________________________________ void HldGrepFileSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldGrepFileSource. TClass *R__cl = ::HldGrepFileSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "first", &first); R__insp.Inspect(R__cl, R__insp.GetParent(), "mode", &mode); R__insp.Inspect(R__cl, R__insp.GetParent(), "interval", &interval); R__insp.Inspect(R__cl, R__insp.GetParent(), "timer", &timer); R__insp.InspectMember(timer, "timer."); R__insp.Inspect(R__cl, R__insp.GetParent(), "referenceId", &referenceId); R__insp.Inspect(R__cl, R__insp.GetParent(), "dostop", &dostop); R__insp.Inspect(R__cl, R__insp.GetParent(), "distanceToLast", &distanceToLast); HldFileSourceBase::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HldGrepFileSource(void *p) { return p ? new(p) ::HldGrepFileSource : new ::HldGrepFileSource; } static void *newArray_HldGrepFileSource(Long_t nElements, void *p) { return p ? new(p) ::HldGrepFileSource[nElements] : new ::HldGrepFileSource[nElements]; } // Wrapper around operator delete static void delete_HldGrepFileSource(void *p) { delete ((::HldGrepFileSource*)p); } static void deleteArray_HldGrepFileSource(void *p) { delete [] ((::HldGrepFileSource*)p); } static void destruct_HldGrepFileSource(void *p) { typedef ::HldGrepFileSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldGrepFileSource(TBuffer &buf, void *obj) { ((::HldGrepFileSource*)obj)->::HldGrepFileSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HldGrepFileSource //______________________________________________________________________________ void HldRemoteSource::Streamer(TBuffer &R__b) { // Stream an object of class HldRemoteSource. HldSource::Streamer(R__b); } //______________________________________________________________________________ void HldRemoteSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldRemoteSource. TClass *R__cl = ::HldRemoteSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "refId", &refId); R__insp.Inspect(R__cl, R__insp.GetParent(), "currNodeName", &currNodeName); R__insp.InspectMember(currNodeName, "currNodeName."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fileName", &fileName); R__insp.InspectMember(fileName, "fileName."); R__insp.Inspect(R__cl, R__insp.GetParent(), "runId", &runId); R__insp.Inspect(R__cl, R__insp.GetParent(), "*iter", &iter); HldSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HldRemoteSource(void *p) { return p ? new(p) ::HldRemoteSource : new ::HldRemoteSource; } static void *newArray_HldRemoteSource(Long_t nElements, void *p) { return p ? new(p) ::HldRemoteSource[nElements] : new ::HldRemoteSource[nElements]; } // Wrapper around operator delete static void delete_HldRemoteSource(void *p) { delete ((::HldRemoteSource*)p); } static void deleteArray_HldRemoteSource(void *p) { delete [] ((::HldRemoteSource*)p); } static void destruct_HldRemoteSource(void *p) { typedef ::HldRemoteSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldRemoteSource(TBuffer &buf, void *obj) { ((::HldRemoteSource*)obj)->::HldRemoteSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HldRemoteSource //______________________________________________________________________________ void HldFileOutput::Streamer(TBuffer &R__b) { // Stream an object of class HldFileOutput. TObject::Streamer(R__b); } //______________________________________________________________________________ void HldFileOutput::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldFileOutput. TClass *R__cl = ::HldFileOutput::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*evt", &evt); R__insp.Inspect(R__cl, R__insp.GetParent(), "numTotal", &numTotal); R__insp.Inspect(R__cl, R__insp.GetParent(), "numFiltered", &numFiltered); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fout", &fout); R__insp.Inspect(R__cl, R__insp.GetParent(), "fDir", &fDir); R__insp.InspectMember(fDir, "fDir."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fileSuffix", &fileSuffix); R__insp.InspectMember(fileSuffix, "fileSuffix."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fOption", &fOption); R__insp.InspectMember(fOption, "fOption."); R__insp.Inspect(R__cl, R__insp.GetParent(), "padding[64]", padding); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HldFileOutput(void *p) { delete ((::HldFileOutput*)p); } static void deleteArray_HldFileOutput(void *p) { delete [] ((::HldFileOutput*)p); } static void destruct_HldFileOutput(void *p) { typedef ::HldFileOutput current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldFileOutput(TBuffer &buf, void *obj) { ((::HldFileOutput*)obj)->::HldFileOutput::Streamer(buf); } } // end of namespace ROOTDict for class ::HldFileOutput //______________________________________________________________________________ void HGeantSource::Streamer(TBuffer &R__b) { // Stream an object of class HGeantSource. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HDataSource::Streamer(R__b); fReaderList.Streamer(R__b); fFileTable.Streamer(R__b); R__b.CheckByteCount(R__s, R__c, HGeantSource::IsA()); } else { R__c = R__b.WriteVersion(HGeantSource::IsA(), kTRUE); HDataSource::Streamer(R__b); fReaderList.Streamer(R__b); fFileTable.Streamer(R__b); R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HGeantSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HGeantSource. TClass *R__cl = ::HGeantSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fReaderList", &fReaderList); R__insp.InspectMember(fReaderList, "fReaderList."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fFileTable", &fFileTable); R__insp.InspectMember(fFileTable, "fFileTable."); HDataSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HGeantSource(void *p) { delete ((::HGeantSource*)p); } static void deleteArray_HGeantSource(void *p) { delete [] ((::HGeantSource*)p); } static void destruct_HGeantSource(void *p) { typedef ::HGeantSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HGeantSource(TBuffer &buf, void *obj) { ((::HGeantSource*)obj)->::HGeantSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HGeantSource //______________________________________________________________________________ void HDirectSource::Streamer(TBuffer &R__b) { // Stream an object of class HDirectSource. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HDataSource::Streamer(R__b); fReaderList.Streamer(R__b); R__b >> fCurrentRunId; R__b.CheckByteCount(R__s, R__c, HDirectSource::IsA()); } else { R__c = R__b.WriteVersion(HDirectSource::IsA(), kTRUE); HDataSource::Streamer(R__b); fReaderList.Streamer(R__b); R__b << fCurrentRunId; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HDirectSource::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HDirectSource. TClass *R__cl = ::HDirectSource::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fReaderList", &fReaderList); R__insp.InspectMember(fReaderList, "fReaderList."); R__insp.Inspect(R__cl, R__insp.GetParent(), "fCurrentRunId", &fCurrentRunId); HDataSource::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HDirectSource(void *p) { delete ((::HDirectSource*)p); } static void deleteArray_HDirectSource(void *p) { delete [] ((::HDirectSource*)p); } static void destruct_HDirectSource(void *p) { typedef ::HDirectSource current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HDirectSource(TBuffer &buf, void *obj) { ((::HDirectSource*)obj)->::HDirectSource::Streamer(buf); } } // end of namespace ROOTDict for class ::HDirectSource //______________________________________________________________________________ void HldUnpack::Streamer(TBuffer &R__b) { // Stream an object of class HldUnpack. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TObject::Streamer(R__b); R__b.CheckByteCount(R__s, R__c, HldUnpack::IsA()); } else { R__c = R__b.WriteVersion(HldUnpack::IsA(), kTRUE); TObject::Streamer(R__b); R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HldUnpack::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HldUnpack. TClass *R__cl = ::HldUnpack::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*pSubEvt", &pSubEvt); R__insp.Inspect(R__cl, R__insp.GetParent(), "*pRawCat", &pRawCat); R__insp.Inspect(R__cl, R__insp.GetParent(), "*trbNetUnpacker", &trbNetUnpacker); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around operator delete static void delete_HldUnpack(void *p) { delete ((::HldUnpack*)p); } static void deleteArray_HldUnpack(void *p) { delete [] ((::HldUnpack*)p); } static void destruct_HldUnpack(void *p) { typedef ::HldUnpack current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HldUnpack(TBuffer &buf, void *obj) { ((::HldUnpack*)obj)->::HldUnpack::Streamer(buf); } } // end of namespace ROOTDict for class ::HldUnpack //______________________________________________________________________________ void HTrbLookupChan::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbLookupChan. TClass *R__cl = ::HTrbLookupChan::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "detector", &detector); R__insp.Inspect(R__cl, R__insp.GetParent(), "sector", &sector); R__insp.Inspect(R__cl, R__insp.GetParent(), "module", &module); R__insp.Inspect(R__cl, R__insp.GetParent(), "cell", &cell); R__insp.Inspect(R__cl, R__insp.GetParent(), "side", &side); R__insp.Inspect(R__cl, R__insp.GetParent(), "feAddress", &feAddress); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrbLookupChan(void *p) { return p ? new(p) ::HTrbLookupChan : new ::HTrbLookupChan; } static void *newArray_HTrbLookupChan(Long_t nElements, void *p) { return p ? new(p) ::HTrbLookupChan[nElements] : new ::HTrbLookupChan[nElements]; } // Wrapper around operator delete static void delete_HTrbLookupChan(void *p) { delete ((::HTrbLookupChan*)p); } static void deleteArray_HTrbLookupChan(void *p) { delete [] ((::HTrbLookupChan*)p); } static void destruct_HTrbLookupChan(void *p) { typedef ::HTrbLookupChan current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrbLookupChan(TBuffer &buf, void *obj) { ((::HTrbLookupChan*)obj)->::HTrbLookupChan::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbLookupChan //______________________________________________________________________________ void HTrbLookupBoard::Streamer(TBuffer &R__b) { // Stream an object of class HTrbLookupBoard. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TObject::Streamer(R__b); R__b >> array; R__b.CheckByteCount(R__s, R__c, HTrbLookupBoard::IsA()); } else { R__c = R__b.WriteVersion(HTrbLookupBoard::IsA(), kTRUE); TObject::Streamer(R__b); R__b << array; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrbLookupBoard::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbLookupBoard. TClass *R__cl = ::HTrbLookupBoard::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*array", &array); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrbLookupBoard(void *p) { return p ? new(p) ::HTrbLookupBoard : new ::HTrbLookupBoard; } static void *newArray_HTrbLookupBoard(Long_t nElements, void *p) { return p ? new(p) ::HTrbLookupBoard[nElements] : new ::HTrbLookupBoard[nElements]; } // Wrapper around operator delete static void delete_HTrbLookupBoard(void *p) { delete ((::HTrbLookupBoard*)p); } static void deleteArray_HTrbLookupBoard(void *p) { delete [] ((::HTrbLookupBoard*)p); } static void destruct_HTrbLookupBoard(void *p) { typedef ::HTrbLookupBoard current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrbLookupBoard(TBuffer &buf, void *obj) { ((::HTrbLookupBoard*)obj)->::HTrbLookupBoard::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbLookupBoard //______________________________________________________________________________ void HTrbLookup::Streamer(TBuffer &R__b) { // Stream an object of class HTrbLookup. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HParSet::Streamer(R__b); R__b >> array; R__b >> arrayOffset; R__b.CheckByteCount(R__s, R__c, HTrbLookup::IsA()); } else { R__c = R__b.WriteVersion(HTrbLookup::IsA(), kTRUE); HParSet::Streamer(R__b); R__b << array; R__b << arrayOffset; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrbLookup::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbLookup. TClass *R__cl = ::HTrbLookup::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*array", &array); R__insp.Inspect(R__cl, R__insp.GetParent(), "arrayOffset", &arrayOffset); HParSet::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrbLookup(void *p) { return p ? new(p) ::HTrbLookup : new ::HTrbLookup; } static void *newArray_HTrbLookup(Long_t nElements, void *p) { return p ? new(p) ::HTrbLookup[nElements] : new ::HTrbLookup[nElements]; } // Wrapper around operator delete static void delete_HTrbLookup(void *p) { delete ((::HTrbLookup*)p); } static void deleteArray_HTrbLookup(void *p) { delete [] ((::HTrbLookup*)p); } static void destruct_HTrbLookup(void *p) { typedef ::HTrbLookup current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrbLookup(TBuffer &buf, void *obj) { ((::HTrbLookup*)obj)->::HTrbLookup::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbLookup //______________________________________________________________________________ void HTrbnetAddressMapping::Streamer(TBuffer &R__b) { // Stream an object of class HTrbnetAddressMapping. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HParSet::Streamer(R__b); R__b >> array; R__b >> arrayOffset; R__b.CheckByteCount(R__s, R__c, HTrbnetAddressMapping::IsA()); } else { R__c = R__b.WriteVersion(HTrbnetAddressMapping::IsA(), kTRUE); HParSet::Streamer(R__b); R__b << array; R__b << arrayOffset; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrbnetAddressMapping::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbnetAddressMapping. TClass *R__cl = ::HTrbnetAddressMapping::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*array", &array); R__insp.Inspect(R__cl, R__insp.GetParent(), "arrayOffset", &arrayOffset); HParSet::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrbnetAddressMapping(void *p) { return p ? new(p) ::HTrbnetAddressMapping : new ::HTrbnetAddressMapping; } static void *newArray_HTrbnetAddressMapping(Long_t nElements, void *p) { return p ? new(p) ::HTrbnetAddressMapping[nElements] : new ::HTrbnetAddressMapping[nElements]; } // Wrapper around operator delete static void delete_HTrbnetAddressMapping(void *p) { delete ((::HTrbnetAddressMapping*)p); } static void deleteArray_HTrbnetAddressMapping(void *p) { delete [] ((::HTrbnetAddressMapping*)p); } static void destruct_HTrbnetAddressMapping(void *p) { typedef ::HTrbnetAddressMapping current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrbnetAddressMapping(TBuffer &buf, void *obj) { ((::HTrbnetAddressMapping*)obj)->::HTrbnetAddressMapping::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbnetAddressMapping //______________________________________________________________________________ void HTrb2Correction::Streamer(TBuffer &R__b) { // Stream an object of class HTrb2Correction. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TNamed::Streamer(R__b); R__b >> const_cast< Int_t &>( nValuesPerChannel ); boardType.Streamer(R__b); R__b >> subeventId; R__b >> nChannels; R__b >> highResolutionFlag; corrData.Streamer(R__b); R__b.CheckByteCount(R__s, R__c, HTrb2Correction::IsA()); } else { R__c = R__b.WriteVersion(HTrb2Correction::IsA(), kTRUE); TNamed::Streamer(R__b); R__b << const_cast< Int_t &>( nValuesPerChannel ); boardType.Streamer(R__b); R__b << subeventId; R__b << nChannels; R__b << highResolutionFlag; corrData.Streamer(R__b); R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrb2Correction::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrb2Correction. TClass *R__cl = ::HTrb2Correction::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "nValuesPerChannel", &nValuesPerChannel); R__insp.Inspect(R__cl, R__insp.GetParent(), "boardType", &boardType); R__insp.InspectMember(boardType, "boardType."); R__insp.Inspect(R__cl, R__insp.GetParent(), "subeventId", &subeventId); R__insp.Inspect(R__cl, R__insp.GetParent(), "nChannels", &nChannels); R__insp.Inspect(R__cl, R__insp.GetParent(), "highResolutionFlag", &highResolutionFlag); R__insp.Inspect(R__cl, R__insp.GetParent(), "corrData", &corrData); R__insp.InspectMember(corrData, "corrData."); TNamed::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrb2Correction(void *p) { return p ? new(p) ::HTrb2Correction : new ::HTrb2Correction; } static void *newArray_HTrb2Correction(Long_t nElements, void *p) { return p ? new(p) ::HTrb2Correction[nElements] : new ::HTrb2Correction[nElements]; } // Wrapper around operator delete static void delete_HTrb2Correction(void *p) { delete ((::HTrb2Correction*)p); } static void deleteArray_HTrb2Correction(void *p) { delete [] ((::HTrb2Correction*)p); } static void destruct_HTrb2Correction(void *p) { typedef ::HTrb2Correction current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrb2Correction(TBuffer &buf, void *obj) { ((::HTrb2Correction*)obj)->::HTrb2Correction::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrb2Correction //______________________________________________________________________________ void HTrb3CalparTdc::Streamer(TBuffer &R__b) { // Stream an object of class HTrb3CalparTdc. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TObject::Streamer(R__b); R__b >> subEvtId; R__b >> nChannels; R__b >> nBinsPerChannel; R__b >> nEdgesMask; binsPar.Streamer(R__b); R__b.CheckByteCount(R__s, R__c, HTrb3CalparTdc::IsA()); } else { R__c = R__b.WriteVersion(HTrb3CalparTdc::IsA(), kTRUE); TObject::Streamer(R__b); R__b << subEvtId; R__b << nChannels; R__b << nBinsPerChannel; R__b << nEdgesMask; binsPar.Streamer(R__b); R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrb3CalparTdc::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrb3CalparTdc. TClass *R__cl = ::HTrb3CalparTdc::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "subEvtId", &subEvtId); R__insp.Inspect(R__cl, R__insp.GetParent(), "nChannels", &nChannels); R__insp.Inspect(R__cl, R__insp.GetParent(), "nBinsPerChannel", &nBinsPerChannel); R__insp.Inspect(R__cl, R__insp.GetParent(), "nEdgesMask", &nEdgesMask); R__insp.Inspect(R__cl, R__insp.GetParent(), "binsPar", &binsPar); R__insp.InspectMember(binsPar, "binsPar."); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrb3CalparTdc(void *p) { return p ? new(p) ::HTrb3CalparTdc : new ::HTrb3CalparTdc; } static void *newArray_HTrb3CalparTdc(Long_t nElements, void *p) { return p ? new(p) ::HTrb3CalparTdc[nElements] : new ::HTrb3CalparTdc[nElements]; } // Wrapper around operator delete static void delete_HTrb3CalparTdc(void *p) { delete ((::HTrb3CalparTdc*)p); } static void deleteArray_HTrb3CalparTdc(void *p) { delete [] ((::HTrb3CalparTdc*)p); } static void destruct_HTrb3CalparTdc(void *p) { typedef ::HTrb3CalparTdc current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrb3CalparTdc(TBuffer &buf, void *obj) { ((::HTrb3CalparTdc*)obj)->::HTrb3CalparTdc::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrb3CalparTdc //______________________________________________________________________________ void HTrb3Calpar::Streamer(TBuffer &R__b) { // Stream an object of class HTrb3Calpar. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HParSet::Streamer(R__b); R__b >> array; R__b >> arrayOffset; R__b.CheckByteCount(R__s, R__c, HTrb3Calpar::IsA()); } else { R__c = R__b.WriteVersion(HTrb3Calpar::IsA(), kTRUE); HParSet::Streamer(R__b); R__b << array; R__b << arrayOffset; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrb3Calpar::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrb3Calpar. TClass *R__cl = ::HTrb3Calpar::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*array", &array); R__insp.Inspect(R__cl, R__insp.GetParent(), "arrayOffset", &arrayOffset); HParSet::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrb3Calpar(void *p) { return p ? new(p) ::HTrb3Calpar : new ::HTrb3Calpar; } static void *newArray_HTrb3Calpar(Long_t nElements, void *p) { return p ? new(p) ::HTrb3Calpar[nElements] : new ::HTrb3Calpar[nElements]; } // Wrapper around operator delete static void delete_HTrb3Calpar(void *p) { delete ((::HTrb3Calpar*)p); } static void deleteArray_HTrb3Calpar(void *p) { delete [] ((::HTrb3Calpar*)p); } static void destruct_HTrb3Calpar(void *p) { typedef ::HTrb3Calpar current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrb3Calpar(TBuffer &buf, void *obj) { ((::HTrb3Calpar*)obj)->::HTrb3Calpar::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrb3Calpar //______________________________________________________________________________ void HTrbBaseUnpacker::Streamer(TBuffer &R__b) { // Stream an object of class HTrbBaseUnpacker. HldUnpack::Streamer(R__b); } //______________________________________________________________________________ void HTrbBaseUnpacker::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbBaseUnpacker. TClass *R__cl = ::HTrbBaseUnpacker::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*lookup", &lookup); R__insp.Inspect(R__cl, R__insp.GetParent(), "subEvtId", &subEvtId); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbDataVer", &trbDataVer); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbLeadingTime[128][10]", trbLeadingTime); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbTrailingTime[128][10]", trbTrailingTime); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbADC[128][10]", trbADC); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbLeadingMult[128]", trbLeadingMult); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbTrailingMult[128]", trbTrailingMult); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbTrailingTotalMult[128]", trbTrailingTotalMult); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbDataExtension[128]", trbDataExtension); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbExtensionSize", &trbExtensionSize); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbDataPairFlag", &trbDataPairFlag); R__insp.Inspect(R__cl, R__insp.GetParent(), "debugFlag", &debugFlag); R__insp.Inspect(R__cl, R__insp.GetParent(), "quietMode", &quietMode); R__insp.Inspect(R__cl, R__insp.GetParent(), "reportCritical", &reportCritical); HldUnpack::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around a custom streamer member function. static void streamer_HTrbBaseUnpacker(TBuffer &buf, void *obj) { ((::HTrbBaseUnpacker*)obj)->::HTrbBaseUnpacker::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbBaseUnpacker //______________________________________________________________________________ void HTrb2Unpacker::Streamer(TBuffer &R__b) { // Stream an object of class HTrb2Unpacker. HldUnpack::Streamer(R__b); } //______________________________________________________________________________ void HTrb2Unpacker::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrb2Unpacker. TClass *R__cl = ::HTrb2Unpacker::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*trbinlcorr", &trbinlcorr); R__insp.Inspect(R__cl, R__insp.GetParent(), "*trbaddressmap", &trbaddressmap); R__insp.Inspect(R__cl, R__insp.GetParent(), "subEvtId", &subEvtId); R__insp.Inspect(R__cl, R__insp.GetParent(), "uStartPosition", &uStartPosition); R__insp.Inspect(R__cl, R__insp.GetParent(), "uTrbNetAdress", &uTrbNetAdress); R__insp.Inspect(R__cl, R__insp.GetParent(), "uSubBlockSize", &uSubBlockSize); R__insp.Inspect(R__cl, R__insp.GetParent(), "nCountWords", &nCountWords); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbDataVer", &trbDataVer); R__insp.Inspect(R__cl, R__insp.GetParent(), "debugFlag", &debugFlag); R__insp.Inspect(R__cl, R__insp.GetParent(), "quietMode", &quietMode); R__insp.Inspect(R__cl, R__insp.GetParent(), "reportCritical", &reportCritical); R__insp.Inspect(R__cl, R__insp.GetParent(), "correctINL", &correctINL); R__insp.Inspect(R__cl, R__insp.GetParent(), "correctINLboard", &correctINLboard); R__insp.Inspect(R__cl, R__insp.GetParent(), "highResModeOn", &highResModeOn); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbDataPairFlag", &trbDataPairFlag); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbLeadingTime[128][10]", trbLeadingTime); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbTrailingTime[128][10]", trbTrailingTime); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbADC[128][10]", trbADC); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbExtensionSize", &trbExtensionSize); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbLeadingMult[128]", trbLeadingMult); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbTrailingMult[128]", trbTrailingMult); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbTrailingTotalMult[128]", trbTrailingTotalMult); R__insp.Inspect(R__cl, R__insp.GetParent(), "trbDataExtension[128]", trbDataExtension); R__insp.Inspect(R__cl, R__insp.GetParent(), "tryRecover_1", &tryRecover_1); R__insp.Inspect(R__cl, R__insp.GetParent(), "tryRecover_2", &tryRecover_2); HldUnpack::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around a custom streamer member function. static void streamer_HTrb2Unpacker(TBuffer &buf, void *obj) { ((::HTrb2Unpacker*)obj)->::HTrb2Unpacker::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrb2Unpacker //______________________________________________________________________________ void HTrb3Unpacker::Streamer(TBuffer &R__b) { // Stream an object of class HTrb3Unpacker. HldUnpack::Streamer(R__b); } //______________________________________________________________________________ void HTrb3Unpacker::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrb3Unpacker. TClass *R__cl = ::HTrb3Unpacker::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "subEvtId", &subEvtId); R__insp.Inspect(R__cl, R__insp.GetParent(), "uHUBId", &uHUBId); R__insp.Inspect(R__cl, R__insp.GetParent(), "uCTSId", &uCTSId); R__insp.Inspect(R__cl, R__insp.GetParent(), "debugFlag", &debugFlag); R__insp.Inspect(R__cl, R__insp.GetParent(), "quietMode", &quietMode); R__insp.Inspect(R__cl, R__insp.GetParent(), "reportCritical", &reportCritical); R__insp.Inspect(R__cl, R__insp.GetParent(), "*calpar", &calpar); R__insp.Inspect(R__cl, R__insp.GetParent(), "fTDCs", (void*)&fTDCs); R__insp.InspectMember("vector<HTrb3TdcUnpacker*>", (void*)&fTDCs, "fTDCs.", true); HldUnpack::ShowMembers(R__insp); } namespace ROOTDict { // Wrapper around a custom streamer member function. static void streamer_HTrb3Unpacker(TBuffer &buf, void *obj) { ((::HTrb3Unpacker*)obj)->::HTrb3Unpacker::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrb3Unpacker namespace ROOTDict { // Wrappers around operator new static void *new_HTrb3TdcMessage(void *p) { return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::HTrb3TdcMessage : new ::HTrb3TdcMessage; } static void *newArray_HTrb3TdcMessage(Long_t nElements, void *p) { return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::HTrb3TdcMessage[nElements] : new ::HTrb3TdcMessage[nElements]; } // Wrapper around operator delete static void delete_HTrb3TdcMessage(void *p) { delete ((::HTrb3TdcMessage*)p); } static void deleteArray_HTrb3TdcMessage(void *p) { delete [] ((::HTrb3TdcMessage*)p); } static void destruct_HTrb3TdcMessage(void *p) { typedef ::HTrb3TdcMessage current_t; ((current_t*)p)->~current_t(); } } // end of namespace ROOTDict for class ::HTrb3TdcMessage namespace ROOTDict { // Wrappers around operator new static void *new_HTrb3TdcIterator(void *p) { return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::HTrb3TdcIterator : new ::HTrb3TdcIterator; } static void *newArray_HTrb3TdcIterator(Long_t nElements, void *p) { return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::HTrb3TdcIterator[nElements] : new ::HTrb3TdcIterator[nElements]; } // Wrapper around operator delete static void delete_HTrb3TdcIterator(void *p) { delete ((::HTrb3TdcIterator*)p); } static void deleteArray_HTrb3TdcIterator(void *p) { delete [] ((::HTrb3TdcIterator*)p); } static void destruct_HTrb3TdcIterator(void *p) { typedef ::HTrb3TdcIterator current_t; ((current_t*)p)->~current_t(); } } // end of namespace ROOTDict for class ::HTrb3TdcIterator //______________________________________________________________________________ void HTrb3TdcUnpacker::Streamer(TBuffer &R__b) { // Stream an object of class HTrb3TdcUnpacker. TObject::Streamer(R__b); } //______________________________________________________________________________ void HTrb3TdcUnpacker::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrb3TdcUnpacker. TClass *R__cl = ::HTrb3TdcUnpacker::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*fUnpacker", &fUnpacker); R__insp.Inspect(R__cl, R__insp.GetParent(), "fTdcId", &fTdcId); R__insp.Inspect(R__cl, R__insp.GetParent(), "*tdcpar", &tdcpar); R__insp.Inspect(R__cl, R__insp.GetParent(), "fCh", (void*)&fCh); R__insp.InspectMember("vector<ChannelRec>", (void*)&fCh, "fCh.", true); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrb3TdcUnpacker(void *p) { return p ? new(p) ::HTrb3TdcUnpacker : new ::HTrb3TdcUnpacker; } static void *newArray_HTrb3TdcUnpacker(Long_t nElements, void *p) { return p ? new(p) ::HTrb3TdcUnpacker[nElements] : new ::HTrb3TdcUnpacker[nElements]; } // Wrapper around operator delete static void delete_HTrb3TdcUnpacker(void *p) { delete ((::HTrb3TdcUnpacker*)p); } static void deleteArray_HTrb3TdcUnpacker(void *p) { delete [] ((::HTrb3TdcUnpacker*)p); } static void destruct_HTrb3TdcUnpacker(void *p) { typedef ::HTrb3TdcUnpacker current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrb3TdcUnpacker(TBuffer &buf, void *obj) { ((::HTrb3TdcUnpacker*)obj)->::HTrb3TdcUnpacker::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrb3TdcUnpacker //______________________________________________________________________________ void HGeantReader::Streamer(TBuffer &R__b) { // Stream an object of class HGeantReader. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TObject::Streamer(R__b); R__b >> fInputFile; R__b.CheckByteCount(R__s, R__c, HGeantReader::IsA()); } else { R__c = R__b.WriteVersion(HGeantReader::IsA(), kTRUE); TObject::Streamer(R__b); R__b << fInputFile; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HGeantReader::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HGeantReader. TClass *R__cl = ::HGeantReader::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "*fInputFile", &fInputFile); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HGeantReader(void *p) { return p ? new(p) ::HGeantReader : new ::HGeantReader; } static void *newArray_HGeantReader(Long_t nElements, void *p) { return p ? new(p) ::HGeantReader[nElements] : new ::HGeantReader[nElements]; } // Wrapper around operator delete static void delete_HGeantReader(void *p) { delete ((::HGeantReader*)p); } static void deleteArray_HGeantReader(void *p) { delete [] ((::HGeantReader*)p); } static void destruct_HGeantReader(void *p) { typedef ::HGeantReader current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HGeantReader(TBuffer &buf, void *obj) { ((::HGeantReader*)obj)->::HGeantReader::Streamer(buf); } } // end of namespace ROOTDict for class ::HGeantReader //______________________________________________________________________________ void HKineGeantReader::Streamer(TBuffer &R__b) { // Stream an object of class HKineGeantReader. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HGeantReader::Streamer(R__b); R__b >> fEventId; R__b >> t; R__b.CheckByteCount(R__s, R__c, HKineGeantReader::IsA()); } else { R__c = R__b.WriteVersion(HKineGeantReader::IsA(), kTRUE); HGeantReader::Streamer(R__b); R__b << fEventId; R__b << t; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HKineGeantReader::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HKineGeantReader. TClass *R__cl = ::HKineGeantReader::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fEventId", &fEventId); R__insp.Inspect(R__cl, R__insp.GetParent(), "*t", &t); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fGeantKineCat", &fGeantKineCat); HGeantReader::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HKineGeantReader(void *p) { return p ? new(p) ::HKineGeantReader : new ::HKineGeantReader; } static void *newArray_HKineGeantReader(Long_t nElements, void *p) { return p ? new(p) ::HKineGeantReader[nElements] : new ::HKineGeantReader[nElements]; } // Wrapper around operator delete static void delete_HKineGeantReader(void *p) { delete ((::HKineGeantReader*)p); } static void deleteArray_HKineGeantReader(void *p) { delete [] ((::HKineGeantReader*)p); } static void destruct_HKineGeantReader(void *p) { typedef ::HKineGeantReader current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HKineGeantReader(TBuffer &buf, void *obj) { ((::HKineGeantReader*)obj)->::HKineGeantReader::Streamer(buf); } } // end of namespace ROOTDict for class ::HKineGeantReader //______________________________________________________________________________ void HSimulGeantReader::Streamer(TBuffer &R__b) { // Stream an object of class HSimulGeantReader. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } HGeantReader::Streamer(R__b); R__b >> fEventId; R__b >> t; R__b.CheckByteCount(R__s, R__c, HSimulGeantReader::IsA()); } else { R__c = R__b.WriteVersion(HSimulGeantReader::IsA(), kTRUE); HGeantReader::Streamer(R__b); R__b << fEventId; R__b << t; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HSimulGeantReader::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HSimulGeantReader. TClass *R__cl = ::HSimulGeantReader::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "fEventId", &fEventId); R__insp.Inspect(R__cl, R__insp.GetParent(), "*t", &t); R__insp.Inspect(R__cl, R__insp.GetParent(), "*fSimEv", &fSimEv); HGeantReader::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HSimulGeantReader(void *p) { return p ? new(p) ::HSimulGeantReader : new ::HSimulGeantReader; } static void *newArray_HSimulGeantReader(Long_t nElements, void *p) { return p ? new(p) ::HSimulGeantReader[nElements] : new ::HSimulGeantReader[nElements]; } // Wrapper around operator delete static void delete_HSimulGeantReader(void *p) { delete ((::HSimulGeantReader*)p); } static void deleteArray_HSimulGeantReader(void *p) { delete [] ((::HSimulGeantReader*)p); } static void destruct_HSimulGeantReader(void *p) { typedef ::HSimulGeantReader current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HSimulGeantReader(TBuffer &buf, void *obj) { ((::HSimulGeantReader*)obj)->::HSimulGeantReader::Streamer(buf); } } // end of namespace ROOTDict for class ::HSimulGeantReader //______________________________________________________________________________ void HTrbNetUnpacker::Streamer(TBuffer &R__b) { // Stream an object of class HTrbNetUnpacker. TObject::Streamer(R__b); } //______________________________________________________________________________ void HTrbNetUnpacker::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbNetUnpacker. TClass *R__cl = ::HTrbNetUnpacker::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "initialized", &initialized); R__insp.Inspect(R__cl, R__insp.GetParent(), "*rtdb", &rtdb); R__insp.Inspect(R__cl, R__insp.GetParent(), "*debugInfo", &debugInfo); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrbNetUnpacker(void *p) { return p ? new(p) ::HTrbNetUnpacker : new ::HTrbNetUnpacker; } static void *newArray_HTrbNetUnpacker(Long_t nElements, void *p) { return p ? new(p) ::HTrbNetUnpacker[nElements] : new ::HTrbNetUnpacker[nElements]; } // Wrapper around operator delete static void delete_HTrbNetUnpacker(void *p) { delete ((::HTrbNetUnpacker*)p); } static void deleteArray_HTrbNetUnpacker(void *p) { delete [] ((::HTrbNetUnpacker*)p); } static void destruct_HTrbNetUnpacker(void *p) { typedef ::HTrbNetUnpacker current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrbNetUnpacker(TBuffer &buf, void *obj) { ((::HTrbNetUnpacker*)obj)->::HTrbNetUnpacker::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbNetUnpacker //______________________________________________________________________________ void HTrbNetDebugInfo::Streamer(TBuffer &R__b) { // Stream an object of class HTrbNetDebugInfo. UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } TObject::Streamer(R__b); R__b >> address; R__b >> statusWord; R__b.CheckByteCount(R__s, R__c, HTrbNetDebugInfo::IsA()); } else { R__c = R__b.WriteVersion(HTrbNetDebugInfo::IsA(), kTRUE); TObject::Streamer(R__b); R__b << address; R__b << statusWord; R__b.SetByteCount(R__c, kTRUE); } } //______________________________________________________________________________ void HTrbNetDebugInfo::ShowMembers(TMemberInspector &R__insp) { // Inspect the data members of an object of class HTrbNetDebugInfo. TClass *R__cl = ::HTrbNetDebugInfo::IsA(); if (R__cl || R__insp.IsA()) { } R__insp.Inspect(R__cl, R__insp.GetParent(), "address", &address); R__insp.Inspect(R__cl, R__insp.GetParent(), "statusWord", &statusWord); TObject::ShowMembers(R__insp); } namespace ROOTDict { // Wrappers around operator new static void *new_HTrbNetDebugInfo(void *p) { return p ? new(p) ::HTrbNetDebugInfo : new ::HTrbNetDebugInfo; } static void *newArray_HTrbNetDebugInfo(Long_t nElements, void *p) { return p ? new(p) ::HTrbNetDebugInfo[nElements] : new ::HTrbNetDebugInfo[nElements]; } // Wrapper around operator delete static void delete_HTrbNetDebugInfo(void *p) { delete ((::HTrbNetDebugInfo*)p); } static void deleteArray_HTrbNetDebugInfo(void *p) { delete [] ((::HTrbNetDebugInfo*)p); } static void destruct_HTrbNetDebugInfo(void *p) { typedef ::HTrbNetDebugInfo current_t; ((current_t*)p)->~current_t(); } // Wrapper around a custom streamer member function. static void streamer_HTrbNetDebugInfo(TBuffer &buf, void *obj) { ((::HTrbNetDebugInfo*)obj)->::HTrbNetDebugInfo::Streamer(buf); } } // end of namespace ROOTDict for class ::HTrbNetDebugInfo namespace ROOTDict { void vectorlEHParallelEventmUgR_ShowMembers(void *obj, TMemberInspector &R__insp); static void vectorlEHParallelEventmUgR_Dictionary(); static void *new_vectorlEHParallelEventmUgR(void *p = 0); static void *newArray_vectorlEHParallelEventmUgR(Long_t size, void *p); static void delete_vectorlEHParallelEventmUgR(void *p); static void deleteArray_vectorlEHParallelEventmUgR(void *p); static void destruct_vectorlEHParallelEventmUgR(void *p); // Function generating the singleton type initializer static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const vector<HParallelEvent*>*) { vector<HParallelEvent*> *ptr = 0; static ::TVirtualIsAProxy* isa_proxy = new ::TIsAProxy(typeid(vector<HParallelEvent*>),0); static ::ROOT::TGenericClassInfo instance("vector<HParallelEvent*>", -2, "/cvmfs/hades.gsi.de/install/root-5.34.34/cint/cint/lib/prec_stl/vector", 49, typeid(vector<HParallelEvent*>), ::ROOT::DefineBehavior(ptr, ptr), 0, &vectorlEHParallelEventmUgR_Dictionary, isa_proxy, 0, sizeof(vector<HParallelEvent*>) ); instance.SetNew(&new_vectorlEHParallelEventmUgR); instance.SetNewArray(&newArray_vectorlEHParallelEventmUgR); instance.SetDelete(&delete_vectorlEHParallelEventmUgR); instance.SetDeleteArray(&deleteArray_vectorlEHParallelEventmUgR); instance.SetDestructor(&destruct_vectorlEHParallelEventmUgR); instance.AdoptCollectionProxyInfo( ::ROOT::TCollectionProxyInfo::Generate( ::ROOT::TCollectionProxyInfo::Pushback< vector<HParallelEvent*> >())); return &instance; } // Static variable to force the class initialization static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const vector<HParallelEvent*>*)0x0); R__UseDummy(_R__UNIQUE_(Init)); // Dictionary for non-ClassDef classes static void vectorlEHParallelEventmUgR_Dictionary() { ::ROOTDict::GenerateInitInstanceLocal((const vector<HParallelEvent*>*)0x0)->GetClass(); } } // end of namespace ROOTDict namespace ROOTDict { // Wrappers around operator new static void *new_vectorlEHParallelEventmUgR(void *p) { return p ? ::new((::ROOT::TOperatorNewHelper*)p) vector<HParallelEvent*> : new vector<HParallelEvent*>; } static void *newArray_vectorlEHParallelEventmUgR(Long_t nElements, void *p) { return p ? ::new((::ROOT::TOperatorNewHelper*)p) vector<HParallelEvent*>[nElements] : new vector<HParallelEvent*>[nElements]; } // Wrapper around operator delete static void delete_vectorlEHParallelEventmUgR(void *p) { delete ((vector<HParallelEvent*>*)p); } static void deleteArray_vectorlEHParallelEventmUgR(void *p) { delete [] ((vector<HParallelEvent*>*)p); } static void destruct_vectorlEHParallelEventmUgR(void *p) { typedef vector<HParallelEvent*> current_t; ((current_t*)p)->~current_t(); } } // end of namespace ROOTDict for class vector<HParallelEvent*> /******************************************************** * ../build/pc/DataSourceDict.cc * CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED * FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX(). * CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE. ********************************************************/ #ifdef G__MEMTEST #undef malloc #undef free #endif #if defined(__GNUC__) && __GNUC__ >= 4 && ((__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >= 1) || (__GNUC_MINOR__ >= 3)) #pragma GCC diagnostic ignored "-Wstrict-aliasing" #endif extern "C" void G__cpp_reset_tagtableDataSourceDict(); extern "C" void G__set_cpp_environmentDataSourceDict() { G__cpp_reset_tagtableDataSourceDict(); } #include <new> extern "C" int G__cpp_dllrevDataSourceDict() { return(30051515); } /********************************************************* * Member function Interface Method *********************************************************/ /* HDataSource */ static int G__DataSourceDict_170_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HDataSource*) G__getstructoffset())->setEventAddress((HEvent**) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HDataSource*) G__getstructoffset())->forceID((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HDataSource*) G__getstructoffset())->skipEvents((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: G__letint(result7, 105, (long) ((HDataSource*) G__getstructoffset())->getNextEvent((Bool_t) G__int(libp->para[0]))); break; case 0: G__letint(result7, 105, (long) ((HDataSource*) G__getstructoffset())->getNextEvent()); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HDataSource*) G__getstructoffset())->setCursorToPreviousEvent(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HDataSource*) G__getstructoffset())->init()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HDataSource*) G__getstructoffset())->reinit()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HDataSource*) G__getstructoffset())->finalize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HDataSource*) G__getstructoffset())->rewind()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HDataSource*) G__getstructoffset())->getCurrentRunId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HDataSource*) G__getstructoffset())->getCurrentRefId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) ((HDataSource*) G__getstructoffset())->getCurrentFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HDataSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HDataSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HDataSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HDataSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HDataSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HDataSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HDataSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HDataSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_170_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HDataSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HDataSource G__THDataSource; static int G__DataSourceDict_170_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HDataSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HDataSource*) (soff+(sizeof(HDataSource)*i)))->~G__THDataSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HDataSource*) soff; } else { G__setgvp((long) G__PVOID); ((HDataSource*) (soff))->~G__THDataSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_170_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HDataSource* dest = (HDataSource*) G__getstructoffset(); *dest = *(HDataSource*) libp->para[0].ref; const HDataSource& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HGeantReader */ static int G__DataSourceDict_230_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantReader* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HGeantReader[n]; } else { p = new((void*) gvp) HGeantReader[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HGeantReader; } else { p = new((void*) gvp) HGeantReader; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HGeantReader*) G__getstructoffset())->execute()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HGeantReader*) G__getstructoffset())->init()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HGeantReader*) G__getstructoffset())->finalize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HGeantReader*) G__getstructoffset())->setInput((TFile*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HGeantReader::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantReader::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HGeantReader::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantReader::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HGeantReader*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantReader::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HGeantReader::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantReader::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_230_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HGeantReader::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_230_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantReader* p; void* tmp = (void*) G__int(libp->para[0]); p = new HGeantReader(*(HGeantReader*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HGeantReader G__THGeantReader; static int G__DataSourceDict_230_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HGeantReader*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HGeantReader*) (soff+(sizeof(HGeantReader)*i)))->~G__THGeantReader(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HGeantReader*) soff; } else { G__setgvp((long) G__PVOID); ((HGeantReader*) (soff))->~G__THGeantReader(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_230_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantReader* dest = (HGeantReader*) G__getstructoffset(); *dest = *(HGeantReader*) libp->para[0].ref; const HGeantReader& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HGeantSource */ static int G__DataSourceDict_231_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HGeantSource*) G__getstructoffset())->addGeantReader((HGeantReader*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HGeantSource*) G__getstructoffset())->getNextEvent()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HGeantSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HGeantSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HGeantSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HGeantSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_231_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HGeantSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HGeantSource G__THGeantSource; static int G__DataSourceDict_231_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HGeantSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HGeantSource*) (soff+(sizeof(HGeantSource)*i)))->~G__THGeantSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HGeantSource*) soff; } else { G__setgvp((long) G__PVOID); ((HGeantSource*) (soff))->~G__THGeantSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } /* HRootSource */ static int G__DataSourceDict_540_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HRootSource* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HRootSource((Bool_t) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1])); } else { p = new((void*) gvp) HRootSource((Bool_t) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1])); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HRootSource((Bool_t) G__int(libp->para[0])); } else { p = new((void*) gvp) HRootSource((Bool_t) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HRootSource[n]; } else { p = new((void*) gvp) HRootSource[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HRootSource; } else { p = new((void*) gvp) HRootSource; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->setEventList((TEventList*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HRootSource*) G__getstructoffset())->getGlobalRefId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->setCurrentRunId((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->setRefId((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->setGlobalRefId((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HRootSource*) G__getstructoffset())->getEvent((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->setDirectory((const Text_t*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HRootSource*) G__getstructoffset())->addFile((const Text_t*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HRootSource*) G__getstructoffset())->setInput((const Text_t*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HRootSource*) G__getstructoffset())->disableCategory((Cat_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->deactivateBranch((const Text_t*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HRootSource*) G__getstructoffset())->disablePartialEvent((Cat_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HRootSource*) G__getstructoffset())->getTree()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HRootSource*) G__getstructoffset())->getChain()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HRootSource*) G__getstructoffset())->getSplitLevel()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->Clear(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->Print(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: ((HRootSource*) G__getstructoffset())->replaceHeaderVersion((Int_t) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1])); G__setnull(result7); break; case 1: ((HRootSource*) G__getstructoffset())->replaceHeaderVersion((Int_t) G__int(libp->para[0])); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HRootSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_34(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HRootSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_35(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HRootSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_36(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HRootSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_40(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HRootSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_41(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HRootSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_42(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HRootSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_43(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HRootSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_540_0_44(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HRootSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_540_0_45(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HRootSource* p; void* tmp = (void*) G__int(libp->para[0]); p = new HRootSource(*(HRootSource*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HRootSource G__THRootSource; static int G__DataSourceDict_540_0_46(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HRootSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HRootSource*) (soff+(sizeof(HRootSource)*i)))->~G__THRootSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HRootSource*) soff; } else { G__setgvp((long) G__PVOID); ((HRootSource*) (soff))->~G__THRootSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_540_0_47(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HRootSource* dest = (HRootSource*) G__getstructoffset(); *dest = *(HRootSource*) libp->para[0].ref; const HRootSource& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HGeantMergeSource */ static int G__DataSourceDict_561_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantMergeSource* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HGeantMergeSource((Bool_t) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1])); } else { p = new((void*) gvp) HGeantMergeSource((Bool_t) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1])); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HGeantMergeSource((Bool_t) G__int(libp->para[0])); } else { p = new((void*) gvp) HGeantMergeSource((Bool_t) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HGeantMergeSource[n]; } else { p = new((void*) gvp) HGeantMergeSource[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HGeantMergeSource; } else { p = new((void*) gvp) HGeantMergeSource; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: G__letint(result7, 103, (long) ((HGeantMergeSource*) G__getstructoffset())->addFile((const Text_t*) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1]))); break; case 1: G__letint(result7, 103, (long) ((HGeantMergeSource*) G__getstructoffset())->addFile((const Text_t*) G__int(libp->para[0]))); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HGeantMergeSource*) G__getstructoffset())->addMultFiles(*((TString*) G__int(libp->para[0])))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: G__letint(result7, 103, (long) ((HGeantMergeSource*) G__getstructoffset())->addAdditionalInput(*((TString*) G__int(libp->para[0])), (Bool_t) G__int(libp->para[1]))); break; case 1: G__letint(result7, 103, (long) ((HGeantMergeSource*) G__getstructoffset())->addAdditionalInput(*((TString*) G__int(libp->para[0])))); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HGeantMergeSource*) G__getstructoffset())->createGeantEvent((HRecEvent*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HGeantMergeSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantMergeSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HGeantMergeSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantMergeSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HGeantMergeSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantMergeSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HGeantMergeSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HGeantMergeSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_561_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HGeantMergeSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_561_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantMergeSource* p; void* tmp = (void*) G__int(libp->para[0]); p = new HGeantMergeSource(*(HGeantMergeSource*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HGeantMergeSource G__THGeantMergeSource; static int G__DataSourceDict_561_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HGeantMergeSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HGeantMergeSource*) (soff+(sizeof(HGeantMergeSource)*i)))->~G__THGeantMergeSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HGeantMergeSource*) soff; } else { G__setgvp((long) G__PVOID); ((HGeantMergeSource*) (soff))->~G__THGeantMergeSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_561_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HGeantMergeSource* dest = (HGeantMergeSource*) G__getstructoffset(); *dest = *(HGeantMergeSource*) libp->para[0].ref; const HGeantMergeSource& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrbNetUnpacker */ static int G__DataSourceDict_570_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetUnpacker* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbNetUnpacker[n]; } else { p = new((void*) gvp) HTrbNetUnpacker[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbNetUnpacker; } else { p = new((void*) gvp) HTrbNetUnpacker; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetUnpacker* p = NULL; char* gvp = (char*) G__getgvp(); //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbNetUnpacker(*(HTrbNetUnpacker*) libp->para[0].ref); } else { p = new((void*) gvp) HTrbNetUnpacker(*(HTrbNetUnpacker*) libp->para[0].ref); } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbNetUnpacker*) G__getstructoffset())->execute()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbNetUnpacker*) G__getstructoffset())->init()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbNetUnpacker*) G__getstructoffset())->reinit()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbNetUnpacker*) G__getstructoffset())->finalize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: G__letint(result7, 105, (long) ((HTrbNetUnpacker*) G__getstructoffset())->unpackData((UInt_t*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); break; case 1: G__letint(result7, 105, (long) ((HTrbNetUnpacker*) G__getstructoffset())->unpackData((UInt_t*) G__int(libp->para[0]))); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbNetUnpacker::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbNetUnpacker::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbNetUnpacker::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetUnpacker::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbNetUnpacker*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbNetUnpacker::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbNetUnpacker::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbNetUnpacker::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_570_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbNetUnpacker::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrbNetUnpacker G__THTrbNetUnpacker; static int G__DataSourceDict_570_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrbNetUnpacker*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrbNetUnpacker*) (soff+(sizeof(HTrbNetUnpacker)*i)))->~G__THTrbNetUnpacker(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrbNetUnpacker*) soff; } else { G__setgvp((long) G__PVOID); ((HTrbNetUnpacker*) (soff))->~G__THTrbNetUnpacker(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_570_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetUnpacker* dest = (HTrbNetUnpacker*) G__getstructoffset(); *dest = *(HTrbNetUnpacker*) libp->para[0].ref; const HTrbNetUnpacker& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HldUnpack */ static int G__DataSourceDict_571_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((const HldUnpack*) G__getstructoffset())->getSubEvtId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HldUnpack*) G__getstructoffset())->getpSubEvt()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldUnpack*) G__getstructoffset())->execute()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldUnpack*) G__getstructoffset())->init()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldUnpack*) G__getstructoffset())->reinit()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldUnpack*) G__getstructoffset())->finalize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldUnpack*) G__getstructoffset())->setCategory((HCategory*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: G__letint(result7, 105, (long) ((HldUnpack*) G__getstructoffset())->decodeTrbNet((UInt_t*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); break; case 1: G__letint(result7, 105, (long) ((HldUnpack*) G__getstructoffset())->decodeTrbNet((UInt_t*) G__int(libp->para[0]))); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldUnpack::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldUnpack::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldUnpack::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldUnpack::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldUnpack*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldUnpack::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldUnpack::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldUnpack::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_571_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldUnpack::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldUnpack G__THldUnpack; static int G__DataSourceDict_571_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldUnpack*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldUnpack*) (soff+(sizeof(HldUnpack)*i)))->~G__THldUnpack(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldUnpack*) soff; } else { G__setgvp((long) G__PVOID); ((HldUnpack*) (soff))->~G__THldUnpack(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_571_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldUnpack* dest = (HldUnpack*) G__getstructoffset(); *dest = *(HldUnpack*) libp->para[0].ref; const HldUnpack& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HldSource */ static int G__DataSourceDict_580_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldSource*) G__getstructoffset())->initUnpacker()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldSource*) G__getstructoffset())->finalizeUnpacker()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldSource*) G__getstructoffset())->addUnpacker((HldUnpack*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldSource*) G__getstructoffset())->showIt((HldEvt*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldSource*) G__getstructoffset())->dumpEvt()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldSource*) G__getstructoffset())->scanIt((HldEvt*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldSource*) G__getstructoffset())->scanEvt()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldSource*) G__getstructoffset())->getDecodingStyle()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: ((HldSource*) G__getstructoffset())->setOldDecodingStyle((Bool_t) G__int(libp->para[0])); G__setnull(result7); break; case 0: ((HldSource*) G__getstructoffset())->setOldDecodingStyle(); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: ((HldSource*) G__getstructoffset())->setScanned((Bool_t) G__int(libp->para[0])); G__setnull(result7); break; case 0: ((HldSource*) G__getstructoffset())->setScanned(); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HldSource*) G__getstructoffset())->getTrbNetUnpacker()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldSource*) G__getstructoffset())->setDump(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_580_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldSource G__THldSource; static int G__DataSourceDict_580_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldSource*) (soff+(sizeof(HldSource)*i)))->~G__THldSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldSource*) soff; } else { G__setgvp((long) G__PVOID); ((HldSource*) (soff))->~G__THldSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_580_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldSource* dest = (HldSource*) G__getstructoffset(); *dest = *(HldSource*) libp->para[0].ref; const HldSource& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HldFileOutput */ static int G__DataSourceDict_581_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileOutput* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 4: //m: 4 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileOutput( (HldSource*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1]) , (const Text_t*) G__int(libp->para[2]), (Option_t*) G__int(libp->para[3])); } else { p = new((void*) gvp) HldFileOutput( (HldSource*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1]) , (const Text_t*) G__int(libp->para[2]), (Option_t*) G__int(libp->para[3])); } break; case 3: //m: 3 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileOutput( (HldSource*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1]) , (const Text_t*) G__int(libp->para[2])); } else { p = new((void*) gvp) HldFileOutput( (HldSource*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1]) , (const Text_t*) G__int(libp->para[2])); } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileOutput*) G__getstructoffset())->setHldSource((HldSource*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileOutput*) G__getstructoffset())->setDirectory((const Text_t*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileOutput*) G__getstructoffset())->setFileSuffix((const Text_t*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: ((HldFileOutput*) G__getstructoffset())->setFileOption((Option_t*) G__int(libp->para[0])); G__setnull(result7); break; case 0: ((HldFileOutput*) G__getstructoffset())->setFileOption(); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldFileOutput*) G__getstructoffset())->open((const Text_t*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileOutput*) G__getstructoffset())->close(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileOutput*) G__getstructoffset())->writeEvent(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((HldFileOutput*) G__getstructoffset())->getNumTotalEvt()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((HldFileOutput*) G__getstructoffset())->getNumFilteredEvt()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldFileOutput::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileOutput::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldFileOutput::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileOutput::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileOutput*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileOutput::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileOutput::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileOutput::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_581_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileOutput::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_581_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileOutput* p; void* tmp = (void*) G__int(libp->para[0]); p = new HldFileOutput(*(HldFileOutput*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldFileOutput G__THldFileOutput; static int G__DataSourceDict_581_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldFileOutput*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldFileOutput*) (soff+(sizeof(HldFileOutput)*i)))->~G__THldFileOutput(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldFileOutput*) soff; } else { G__setgvp((long) G__PVOID); ((HldFileOutput*) (soff))->~G__THldFileOutput(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_581_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileOutput* dest = (HldFileOutput*) G__getstructoffset(); *dest = *(HldFileOutput*) libp->para[0].ref; const HldFileOutput& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HldFileDesc */ static int G__DataSourceDict_582_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileDesc* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 3: //m: 3 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileDesc( (const Text_t*) G__int(libp->para[0]), (const Int_t) G__int(libp->para[1]) , (const Int_t) G__int(libp->para[2])); } else { p = new((void*) gvp) HldFileDesc( (const Text_t*) G__int(libp->para[0]), (const Int_t) G__int(libp->para[1]) , (const Int_t) G__int(libp->para[2])); } break; case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileDesc((const Text_t*) G__int(libp->para[0]), (const Int_t) G__int(libp->para[1])); } else { p = new((void*) gvp) HldFileDesc((const Text_t*) G__int(libp->para[0]), (const Int_t) G__int(libp->para[1])); } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldFileDesc*) G__getstructoffset())->getRunId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldFileDesc*) G__getstructoffset())->getRefId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileDesc*) G__getstructoffset())->setRefId((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldFileDesc::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileDesc::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldFileDesc::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileDesc::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileDesc*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileDesc::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileDesc::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileDesc::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_582_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileDesc::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_582_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileDesc* p; void* tmp = (void*) G__int(libp->para[0]); p = new HldFileDesc(*(HldFileDesc*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldFileDesc G__THldFileDesc; static int G__DataSourceDict_582_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldFileDesc*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldFileDesc*) (soff+(sizeof(HldFileDesc)*i)))->~G__THldFileDesc(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldFileDesc*) soff; } else { G__setgvp((long) G__PVOID); ((HldFileDesc*) (soff))->~G__THldFileDesc(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_582_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileDesc* dest = (HldFileDesc*) G__getstructoffset(); *dest = *(HldFileDesc*) libp->para[0].ref; const HldFileDesc& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HldFileSourceBase */ static int G__DataSourceDict_583_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileSourceBase*) G__getstructoffset())->setMaxEventPerFile((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HldFileSourceBase*) G__getstructoffset())->getNextFile()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HldFileSourceBase*) G__getstructoffset())->getListOfFiles()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HldFileSourceBase*) G__getstructoffset())->getRunId((const Text_t*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileSourceBase*) G__getstructoffset())->addFile((const Text_t*) G__int(libp->para[0]), (const Text_t*) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: ((HldFileSourceBase*) G__getstructoffset())->addFile((const Text_t*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1])); G__setnull(result7); break; case 1: ((HldFileSourceBase*) G__getstructoffset())->addFile((const Text_t*) G__int(libp->para[0])); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileSourceBase*) G__getstructoffset())->setDirectory((const Text_t*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldFileSourceBase::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileSourceBase::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldFileSourceBase::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileSourceBase::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileSourceBase*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileSourceBase::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileSourceBase::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileSourceBase::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_583_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileSourceBase::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldFileSourceBase G__THldFileSourceBase; static int G__DataSourceDict_583_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldFileSourceBase*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldFileSourceBase*) (soff+(sizeof(HldFileSourceBase)*i)))->~G__THldFileSourceBase(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldFileSourceBase*) soff; } else { G__setgvp((long) G__PVOID); ((HldFileSourceBase*) (soff))->~G__THldFileSourceBase(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } /* HldFileSource */ static int G__DataSourceDict_584_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileSource* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileSource[n]; } else { p = new((void*) gvp) HldFileSource[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileSource; } else { p = new((void*) gvp) HldFileSource; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileSource* p = NULL; char* gvp = (char*) G__getgvp(); //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldFileSource(*(HldFileSource*) libp->para[0].ref); } else { p = new((void*) gvp) HldFileSource(*(HldFileSource*) libp->para[0].ref); } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileSource*) G__getstructoffset())->setMaxEventPerFile((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldFileSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldFileSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldFileSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldFileSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldFileSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_584_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldFileSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldFileSource G__THldFileSource; static int G__DataSourceDict_584_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldFileSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldFileSource*) (soff+(sizeof(HldFileSource)*i)))->~G__THldFileSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldFileSource*) soff; } else { G__setgvp((long) G__PVOID); ((HldFileSource*) (soff))->~G__THldFileSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } /* HKineGeantReader */ static int G__DataSourceDict_588_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HKineGeantReader* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HKineGeantReader[n]; } else { p = new((void*) gvp) HKineGeantReader[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HKineGeantReader; } else { p = new((void*) gvp) HKineGeantReader; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HKineGeantReader*) G__getstructoffset())->getGeantKineCat()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HKineGeantReader*) G__getstructoffset())->getGeantKine(*((HLocation*) G__int(libp->para[0])))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HKineGeantReader::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HKineGeantReader::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HKineGeantReader::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HKineGeantReader::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HKineGeantReader*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HKineGeantReader::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HKineGeantReader::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HKineGeantReader::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_588_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HKineGeantReader::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_588_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HKineGeantReader* p; void* tmp = (void*) G__int(libp->para[0]); p = new HKineGeantReader(*(HKineGeantReader*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HKineGeantReader G__THKineGeantReader; static int G__DataSourceDict_588_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HKineGeantReader*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HKineGeantReader*) (soff+(sizeof(HKineGeantReader)*i)))->~G__THKineGeantReader(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HKineGeantReader*) soff; } else { G__setgvp((long) G__PVOID); ((HKineGeantReader*) (soff))->~G__THKineGeantReader(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_588_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HKineGeantReader* dest = (HKineGeantReader*) G__getstructoffset(); *dest = *(HKineGeantReader*) libp->para[0].ref; const HKineGeantReader& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HSimulGeantReader */ static int G__DataSourceDict_589_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HSimulGeantReader* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HSimulGeantReader[n]; } else { p = new((void*) gvp) HSimulGeantReader[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HSimulGeantReader; } else { p = new((void*) gvp) HSimulGeantReader; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HSimulGeantReader::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HSimulGeantReader::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HSimulGeantReader::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HSimulGeantReader::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HSimulGeantReader*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HSimulGeantReader::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HSimulGeantReader::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HSimulGeantReader::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_589_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HSimulGeantReader::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_589_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HSimulGeantReader* p; void* tmp = (void*) G__int(libp->para[0]); p = new HSimulGeantReader(*(HSimulGeantReader*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HSimulGeantReader G__THSimulGeantReader; static int G__DataSourceDict_589_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HSimulGeantReader*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HSimulGeantReader*) (soff+(sizeof(HSimulGeantReader)*i)))->~G__THSimulGeantReader(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HSimulGeantReader*) soff; } else { G__setgvp((long) G__PVOID); ((HSimulGeantReader*) (soff))->~G__THSimulGeantReader(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_589_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HSimulGeantReader* dest = (HSimulGeantReader*) G__getstructoffset(); *dest = *(HSimulGeantReader*) libp->para[0].ref; const HSimulGeantReader& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HDirectSource */ static int G__DataSourceDict_590_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HDirectSource*) G__getstructoffset())->addGeantReader((HGeantReader*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HDirectSource*) G__getstructoffset())->getNextEvent()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HDirectSource*) G__getstructoffset())->setCurrentRunId((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HDirectSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HDirectSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HDirectSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HDirectSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HDirectSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HDirectSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HDirectSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HDirectSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_590_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HDirectSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HDirectSource G__THDirectSource; static int G__DataSourceDict_590_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HDirectSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HDirectSource*) (soff+(sizeof(HDirectSource)*i)))->~G__THDirectSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HDirectSource*) soff; } else { G__setgvp((long) G__PVOID); ((HDirectSource*) (soff))->~G__THDirectSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } /* HldRemoteSource */ static int G__DataSourceDict_591_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldRemoteSource* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldRemoteSource[n]; } else { p = new((void*) gvp) HldRemoteSource[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldRemoteSource; } else { p = new((void*) gvp) HldRemoteSource; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldRemoteSource* p = NULL; char* gvp = (char*) G__getgvp(); //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldRemoteSource((const Text_t*) G__int(libp->para[0])); } else { p = new((void*) gvp) HldRemoteSource((const Text_t*) G__int(libp->para[0])); } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldRemoteSource*) G__getstructoffset())->setRefId((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) ((HldRemoteSource*) G__getstructoffset())->getNodeName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldRemoteSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldRemoteSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldRemoteSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldRemoteSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldRemoteSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldRemoteSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldRemoteSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldRemoteSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_591_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldRemoteSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_591_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldRemoteSource* p; void* tmp = (void*) G__int(libp->para[0]); p = new HldRemoteSource(*(HldRemoteSource*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldRemoteSource G__THldRemoteSource; static int G__DataSourceDict_591_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldRemoteSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldRemoteSource*) (soff+(sizeof(HldRemoteSource)*i)))->~G__THldRemoteSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldRemoteSource*) soff; } else { G__setgvp((long) G__PVOID); ((HldRemoteSource*) (soff))->~G__THldRemoteSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_591_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldRemoteSource* dest = (HldRemoteSource*) G__getstructoffset(); *dest = *(HldRemoteSource*) libp->para[0].ref; const HldRemoteSource& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HldGrepFileSource */ static int G__DataSourceDict_594_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldGrepFileSource* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 6: //m: 6 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4]), (Int_t) G__int(libp->para[5])); } else { p = new((void*) gvp) HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4]), (Int_t) G__int(libp->para[5])); } break; case 5: //m: 5 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } else { p = new((void*) gvp) HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } break; case 4: //m: 4 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } else { p = new((void*) gvp) HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } break; case 3: //m: 3 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2])); } else { p = new((void*) gvp) HldGrepFileSource( *((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1])) , (Int_t) G__int(libp->para[2])); } break; case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource(*((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1]))); } else { p = new((void*) gvp) HldGrepFileSource(*((TString*) G__int(libp->para[0])), *((TString*) G__int(libp->para[1]))); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource(*((TString*) G__int(libp->para[0]))); } else { p = new((void*) gvp) HldGrepFileSource(*((TString*) G__int(libp->para[0]))); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource[n]; } else { p = new((void*) gvp) HldGrepFileSource[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HldGrepFileSource; } else { p = new((void*) gvp) HldGrepFileSource; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldGrepFileSource*) G__getstructoffset())->setMaxEventPerFile((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: ((HldGrepFileSource*) G__getstructoffset())->setRefId((Int_t) G__int(libp->para[0])); G__setnull(result7); break; case 0: ((HldGrepFileSource*) G__getstructoffset())->setRefId(); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldGrepFileSource*) G__getstructoffset())->stop(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HldGrepFileSource::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldGrepFileSource::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HldGrepFileSource::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HldGrepFileSource::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HldGrepFileSource*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldGrepFileSource::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldGrepFileSource::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HldGrepFileSource::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_594_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HldGrepFileSource::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HldGrepFileSource G__THldGrepFileSource; static int G__DataSourceDict_594_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HldGrepFileSource*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HldGrepFileSource*) (soff+(sizeof(HldGrepFileSource)*i)))->~G__THldGrepFileSource(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HldGrepFileSource*) soff; } else { G__setgvp((long) G__PVOID); ((HldGrepFileSource*) (soff))->~G__THldGrepFileSource(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } /* HTrbLookup */ static int G__DataSourceDict_595_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookup* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 5: //m: 5 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } else { p = new((void*) gvp) HTrbLookup( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } break; case 4: //m: 4 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } else { p = new((void*) gvp) HTrbLookup( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } break; case 3: //m: 3 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2])); } else { p = new((void*) gvp) HTrbLookup( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2])); } break; case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup((const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1])); } else { p = new((void*) gvp) HTrbLookup((const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1])); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup((const Char_t*) G__int(libp->para[0])); } else { p = new((void*) gvp) HTrbLookup((const Char_t*) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup[n]; } else { p = new((void*) gvp) HTrbLookup[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookup; } else { p = new((void*) gvp) HTrbLookup; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbLookup*) G__getstructoffset())->getBoard((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbLookup*) G__getstructoffset())->operator[]((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookup*) G__getstructoffset())->getSize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookup*) G__getstructoffset())->getArrayOffset()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookup*) G__getstructoffset())->printParam(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbLookup*) G__getstructoffset())->fill( (Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Char_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4]), (Int_t) G__int(libp->para[5]) , (Char_t) G__int(libp->para[6]), (Int_t) G__int(libp->para[7]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbLookup*) G__getstructoffset())->readline((const Char_t*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookup*) G__getstructoffset())->putAsciiHeader(*(TString*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookup*) G__getstructoffset())->write(*(fstream*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbLookup::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookup::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbLookup::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookup::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookup*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookup::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbLookup::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookup::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_595_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbLookup::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_595_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookup* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrbLookup(*(HTrbLookup*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrbLookup G__THTrbLookup; static int G__DataSourceDict_595_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrbLookup*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrbLookup*) (soff+(sizeof(HTrbLookup)*i)))->~G__THTrbLookup(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrbLookup*) soff; } else { G__setgvp((long) G__PVOID); ((HTrbLookup*) (soff))->~G__THTrbLookup(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_595_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookup* dest = (HTrbLookup*) G__getstructoffset(); *dest = *(HTrbLookup*) libp->para[0].ref; const HTrbLookup& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrbBaseUnpacker */ static int G__DataSourceDict_596_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((const HTrbBaseUnpacker*) G__getstructoffset())->getTrbDataVer()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->decode()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->correctOverflow()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->correctRefTimeCh31()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->correctRefTimeCh127()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbBaseUnpacker*) G__getstructoffset())->clearAll(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbBaseUnpacker*) G__getstructoffset())->setQuietMode(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbBaseUnpacker*) G__getstructoffset())->setReportCritical(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbBaseUnpacker*) G__getstructoffset())->setDebugFlag((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->getDebugFlag()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbBaseUnpacker*) G__getstructoffset())->PrintTdcError((UInt_t) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->fill_trail((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->fill_lead((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbBaseUnpacker*) G__getstructoffset())->fill_pair((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbBaseUnpacker::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbBaseUnpacker::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbBaseUnpacker::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbBaseUnpacker::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbBaseUnpacker*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbBaseUnpacker::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbBaseUnpacker::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbBaseUnpacker::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_596_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbBaseUnpacker::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_596_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbBaseUnpacker* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrbBaseUnpacker(*(HTrbBaseUnpacker*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker)); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_596_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbBaseUnpacker* dest = (HTrbBaseUnpacker*) G__getstructoffset(); *dest = *(HTrbBaseUnpacker*) libp->para[0].ref; const HTrbBaseUnpacker& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb2Correction */ static int G__DataSourceDict_597_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb2Correction* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb2Correction((const Char_t*) G__int(libp->para[0])); } else { p = new((void*) gvp) HTrb2Correction((const Char_t*) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb2Correction[n]; } else { p = new((void*) gvp) HTrb2Correction[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb2Correction; } else { p = new((void*) gvp) HTrb2Correction; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Correction*) G__getstructoffset())->getNChannels()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Correction*) G__getstructoffset())->getHighResolutionFlag()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb2Correction*) G__getstructoffset())->isHighResolution()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) ((HTrb2Correction*) G__getstructoffset())->getBoardType()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Correction*) G__getstructoffset())->getSubeventId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Correction*) G__getstructoffset())->getNValuesPerChannel()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Correction*) G__getstructoffset())->getSize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 102, (double) ((HTrb2Correction*) G__getstructoffset())->getCorrection((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->setBoardType((const Char_t*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->setHighResolutionFlag((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->setSubeventId((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 70, (long) ((HTrb2Correction*) G__getstructoffset())->makeArray()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->deleteArray(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->setCorrection((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Float_t) G__double(libp->para[2])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb2Correction*) G__getstructoffset())->fillArray((Float_t*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->clearArray(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->print(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->write(*(fstream*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 102, (double) ((HTrb2Correction*) G__getstructoffset())->compare(*(HTrb2Correction*) libp->para[0].ref)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 70, (long) ((HTrb2Correction*) G__getstructoffset())->getCorrections()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrb2Correction::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb2Correction::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrb2Correction::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb2Correction::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Correction*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb2Correction::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb2Correction::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb2Correction::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_597_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb2Correction::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_597_0_34(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb2Correction* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb2Correction(*(HTrb2Correction*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrb2Correction G__THTrb2Correction; static int G__DataSourceDict_597_0_35(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrb2Correction*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrb2Correction*) (soff+(sizeof(HTrb2Correction)*i)))->~G__THTrb2Correction(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrb2Correction*) soff; } else { G__setgvp((long) G__PVOID); ((HTrb2Correction*) (soff))->~G__THTrb2Correction(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } /* HTrbnetAddressMapping */ static int G__DataSourceDict_598_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbnetAddressMapping* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 5: //m: 5 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } else { p = new((void*) gvp) HTrbnetAddressMapping( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } break; case 4: //m: 4 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } else { p = new((void*) gvp) HTrbnetAddressMapping( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } break; case 3: //m: 3 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2])); } else { p = new((void*) gvp) HTrbnetAddressMapping( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2])); } break; case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping((const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1])); } else { p = new((void*) gvp) HTrbnetAddressMapping((const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1])); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping((const Char_t*) G__int(libp->para[0])); } else { p = new((void*) gvp) HTrbnetAddressMapping((const Char_t*) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping[n]; } else { p = new((void*) gvp) HTrbnetAddressMapping[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbnetAddressMapping; } else { p = new((void*) gvp) HTrbnetAddressMapping; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->getBoard((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->getBoard((const Char_t*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->operator[]((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->getSize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->getArrayOffset()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbnetAddressMapping*) G__getstructoffset())->printParam(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->addBoard((Int_t) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrbnetAddressMapping*) G__getstructoffset())->readline((const Char_t*) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbnetAddressMapping*) G__getstructoffset())->putAsciiHeader(*(TString*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbnetAddressMapping*) G__getstructoffset())->write(*(fstream*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbnetAddressMapping::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbnetAddressMapping::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbnetAddressMapping::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbnetAddressMapping::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbnetAddressMapping*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbnetAddressMapping::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbnetAddressMapping::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbnetAddressMapping::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_598_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbnetAddressMapping::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_598_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbnetAddressMapping* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrbnetAddressMapping(*(HTrbnetAddressMapping*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrbnetAddressMapping G__THTrbnetAddressMapping; static int G__DataSourceDict_598_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrbnetAddressMapping*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrbnetAddressMapping*) (soff+(sizeof(HTrbnetAddressMapping)*i)))->~G__THTrbnetAddressMapping(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrbnetAddressMapping*) soff; } else { G__setgvp((long) G__PVOID); ((HTrbnetAddressMapping*) (soff))->~G__THTrbnetAddressMapping(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_598_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbnetAddressMapping* dest = (HTrbnetAddressMapping*) G__getstructoffset(); *dest = *(HTrbnetAddressMapping*) libp->para[0].ref; const HTrbnetAddressMapping& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb2Unpacker */ static int G__DataSourceDict_599_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((const HTrb2Unpacker*) G__getstructoffset())->getTrbDataVer()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->decode()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->correctOverflow()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->correctRefTimeCh((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->correctRefTimeCh31()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->correctRefTimeCh127()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->correctRefTimeStartDet23()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 102, (double) ((HTrb2Unpacker*) G__getstructoffset())->doINLCorrection((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->clearAll(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->setQuietMode(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->setReportCritical(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->setcorrectINL(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->setDebugFlag((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb2Unpacker*) G__getstructoffset())->getDebugFlag()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->printTdcError((UInt_t) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb2Unpacker*) G__getstructoffset())->fill_trail((Int_t) G__int(libp->para[0]), (Float_t) G__double(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb2Unpacker*) G__getstructoffset())->fill_lead((Int_t) G__int(libp->para[0]), (Float_t) G__double(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb2Unpacker*) G__getstructoffset())->fill_pair((Int_t) G__int(libp->para[0]), (Float_t) G__double(libp->para[1]) , (Float_t) G__double(libp->para[2]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 2: ((HTrb2Unpacker*) G__getstructoffset())->tryRecover((Bool_t) G__int(libp->para[0]), (Bool_t) G__int(libp->para[1])); G__setnull(result7); break; case 1: ((HTrb2Unpacker*) G__getstructoffset())->tryRecover((Bool_t) G__int(libp->para[0])); G__setnull(result7); break; case 0: ((HTrb2Unpacker*) G__getstructoffset())->tryRecover(); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrb2Unpacker::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb2Unpacker::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrb2Unpacker::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb2Unpacker::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb2Unpacker*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb2Unpacker::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb2Unpacker::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_34(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb2Unpacker::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_599_0_35(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb2Unpacker::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_599_0_36(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb2Unpacker* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb2Unpacker(*(HTrb2Unpacker*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker)); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_599_0_37(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb2Unpacker* dest = (HTrb2Unpacker*) G__getstructoffset(); *dest = *(HTrb2Unpacker*) libp->para[0].ref; const HTrb2Unpacker& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb3Unpacker */ static int G__DataSourceDict_600_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->setHUBId((UInt_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->setCTSId((UInt_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->setDebugFlag((Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3Unpacker*) G__getstructoffset())->getDebugFlag()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->setQuietMode(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->setReportCritical(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3Unpacker*) G__getstructoffset())->isQuietMode()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3Unpacker*) G__getstructoffset())->isReportCritical()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->createTDC((UInt_t) G__int(libp->para[0]), (HTrb3CalparTdc*) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->addTDC((HTrb3TdcUnpacker*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3Unpacker*) G__getstructoffset())->numTDC()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((const HTrb3Unpacker*) G__getstructoffset())->getTDC((UInt_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrb3Unpacker::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3Unpacker::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrb3Unpacker::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Unpacker::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Unpacker*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3Unpacker::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3Unpacker::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3Unpacker::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_600_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3Unpacker::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_600_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Unpacker* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb3Unpacker(*(HTrb3Unpacker*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker)); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_600_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Unpacker* dest = (HTrb3Unpacker*) G__getstructoffset(); *dest = *(HTrb3Unpacker*) libp->para[0].ref; const HTrb3Unpacker& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb3CalparTdc */ static int G__DataSourceDict_601_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3CalparTdc* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3CalparTdc[n]; } else { p = new((void*) gvp) HTrb3CalparTdc[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3CalparTdc; } else { p = new((void*) gvp) HTrb3CalparTdc; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getSubEvtId()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getEdgesMask()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getNChannels()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getNBinsPerChannel()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 70, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getBinsPar()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getArraySize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 70, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getRisingArr((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 70, (long) ((HTrb3CalparTdc*) G__getstructoffset())->getFallingArr((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 102, (double) ((const HTrb3CalparTdc*) G__getstructoffset())->getRisingPar((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 102, (double) ((const HTrb3CalparTdc*) G__getstructoffset())->getFallingPar((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3CalparTdc*) G__getstructoffset())->clear(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3CalparTdc*) G__getstructoffset())->makeArray((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb3CalparTdc*) G__getstructoffset())->fillArray((Float_t*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 4: G__letint(result7, 103, (long) ((HTrb3CalparTdc*) G__getstructoffset())->loadFromBinaryFile((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]))); break; case 3: G__letint(result7, 103, (long) ((HTrb3CalparTdc*) G__getstructoffset())->loadFromBinaryFile((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]))); break; case 2: G__letint(result7, 103, (long) ((HTrb3CalparTdc*) G__getstructoffset())->loadFromBinaryFile((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3CalparTdc*) G__getstructoffset())->setSimpleFineCalibration((UInt_t) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3CalparTdc*) G__getstructoffset())->print(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3CalparTdc*) G__getstructoffset())->write(*(fstream*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrb3CalparTdc::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3CalparTdc::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrb3CalparTdc::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3CalparTdc::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3CalparTdc*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3CalparTdc::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3CalparTdc::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3CalparTdc::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_601_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3CalparTdc::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_601_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3CalparTdc* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb3CalparTdc(*(HTrb3CalparTdc*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrb3CalparTdc G__THTrb3CalparTdc; static int G__DataSourceDict_601_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrb3CalparTdc*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrb3CalparTdc*) (soff+(sizeof(HTrb3CalparTdc)*i)))->~G__THTrb3CalparTdc(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrb3CalparTdc*) soff; } else { G__setgvp((long) G__PVOID); ((HTrb3CalparTdc*) (soff))->~G__THTrb3CalparTdc(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_601_0_33(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3CalparTdc* dest = (HTrb3CalparTdc*) G__getstructoffset(); *dest = *(HTrb3CalparTdc*) libp->para[0].ref; const HTrb3CalparTdc& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb3TdcUnpacker */ static int G__DataSourceDict_602_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcUnpacker* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcUnpacker((UInt_t) G__int(libp->para[0]), (HTrb3CalparTdc*) G__int(libp->para[1])); } else { p = new((void*) gvp) HTrb3TdcUnpacker((UInt_t) G__int(libp->para[0]), (HTrb3CalparTdc*) G__int(libp->para[1])); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcUnpacker((UInt_t) G__int(libp->para[0])); } else { p = new((void*) gvp) HTrb3TdcUnpacker((UInt_t) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcUnpacker[n]; } else { p = new((void*) gvp) HTrb3TdcUnpacker[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcUnpacker; } else { p = new((void*) gvp) HTrb3TdcUnpacker; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcUnpacker*) G__getstructoffset())->getTrbAddr()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcUnpacker*) G__getstructoffset())->setParent((HTrb3Unpacker*) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcUnpacker*) G__getstructoffset())->numChannels()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { { const HTrb3TdcUnpacker::ChannelRec& obj = ((HTrb3TdcUnpacker*) G__getstructoffset())->getCh((unsigned int) G__int(libp->para[0])); result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcUnpacker*) G__getstructoffset())->clearHits(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcUnpacker*) G__getstructoffset())->scanTdcData((UInt_t*) G__int(libp->para[0]), (UInt_t) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: G__letint(result7, 103, (long) ((HTrb3TdcUnpacker*) G__getstructoffset())->correctRefTimeCh((UInt_t) G__int(libp->para[0]))); break; case 0: G__letint(result7, 103, (long) ((HTrb3TdcUnpacker*) G__getstructoffset())->correctRefTimeCh()); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrb3TdcUnpacker::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3TdcUnpacker::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrb3TdcUnpacker::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcUnpacker::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcUnpacker*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3TdcUnpacker::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3TdcUnpacker::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3TdcUnpacker::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_602_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3TdcUnpacker::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_602_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcUnpacker* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb3TdcUnpacker(*(HTrb3TdcUnpacker*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrb3TdcUnpacker G__THTrb3TdcUnpacker; static int G__DataSourceDict_602_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrb3TdcUnpacker*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrb3TdcUnpacker*) (soff+(sizeof(HTrb3TdcUnpacker)*i)))->~G__THTrb3TdcUnpacker(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrb3TdcUnpacker*) soff; } else { G__setgvp((long) G__PVOID); ((HTrb3TdcUnpacker*) (soff))->~G__THTrb3TdcUnpacker(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_602_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcUnpacker* dest = (HTrb3TdcUnpacker*) G__getstructoffset(); *dest = *(HTrb3TdcUnpacker*) libp->para[0].ref; const HTrb3TdcUnpacker& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb3Calpar */ static int G__DataSourceDict_608_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Calpar* p = NULL; char* gvp = (char*) G__getgvp(); switch (libp->paran) { case 5: //m: 5 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } else { p = new((void*) gvp) HTrb3Calpar( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Int_t) G__int(libp->para[4])); } break; case 4: //m: 4 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } else { p = new((void*) gvp) HTrb3Calpar( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2]), (Int_t) G__int(libp->para[3])); } break; case 3: //m: 3 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2])); } else { p = new((void*) gvp) HTrb3Calpar( (const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1]) , (const Char_t*) G__int(libp->para[2])); } break; case 2: //m: 2 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar((const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1])); } else { p = new((void*) gvp) HTrb3Calpar((const Char_t*) G__int(libp->para[0]), (const Char_t*) G__int(libp->para[1])); } break; case 1: //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar((const Char_t*) G__int(libp->para[0])); } else { p = new((void*) gvp) HTrb3Calpar((const Char_t*) G__int(libp->para[0])); } break; case 0: int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar[n]; } else { p = new((void*) gvp) HTrb3Calpar[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3Calpar; } else { p = new((void*) gvp) HTrb3Calpar; } } break; } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrb3Calpar*) G__getstructoffset())->getTdc((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrb3Calpar*) G__getstructoffset())->operator[]((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3Calpar*) G__getstructoffset())->getSize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrb3Calpar*) G__getstructoffset())->getArrayOffset()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrb3Calpar*) G__getstructoffset())->addTdc((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Calpar*) G__getstructoffset())->printParam(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Calpar*) G__getstructoffset())->putAsciiHeader(*(TString*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Calpar*) G__getstructoffset())->write(*(fstream*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 4: G__letint(result7, 103, (long) ((HTrb3Calpar*) G__getstructoffset())->loadFromBinaryFiles((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]))); break; case 3: G__letint(result7, 103, (long) ((HTrb3Calpar*) G__getstructoffset())->loadFromBinaryFiles((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]))); break; case 2: G__letint(result7, 103, (long) ((HTrb3Calpar*) G__getstructoffset())->loadFromBinaryFiles((const char*) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]))); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrb3Calpar::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3Calpar::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrb3Calpar::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Calpar::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3Calpar*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3Calpar::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3Calpar::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrb3Calpar::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_608_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrb3Calpar::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_608_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Calpar* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb3Calpar(*(HTrb3Calpar*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrb3Calpar G__THTrb3Calpar; static int G__DataSourceDict_608_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrb3Calpar*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrb3Calpar*) (soff+(sizeof(HTrb3Calpar)*i)))->~G__THTrb3Calpar(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrb3Calpar*) soff; } else { G__setgvp((long) G__PVOID); ((HTrb3Calpar*) (soff))->~G__THTrb3Calpar(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_608_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3Calpar* dest = (HTrb3Calpar*) G__getstructoffset(); *dest = *(HTrb3Calpar*) libp->para[0].ref; const HTrb3Calpar& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb3TdcMessage */ static int G__DataSourceDict_615_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcMessage* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcMessage[n]; } else { p = new((void*) gvp) HTrb3TdcMessage[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcMessage; } else { p = new((void*) gvp) HTrb3TdcMessage; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcMessage* p = NULL; char* gvp = (char*) G__getgvp(); //m: 1 if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcMessage((uint32_t) G__int(libp->para[0])); } else { p = new((void*) gvp) HTrb3TdcMessage((uint32_t) G__int(libp->para[0])); } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcMessage*) G__getstructoffset())->assign((uint32_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getKind()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isHitMsg()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isEpochMsg()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isDebugMsg()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isHeaderMsg()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isReservedMsg()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getEpochValue()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getEpochRes()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHitChannel()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHitTmCoarse()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHitTmFine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHitTmStamp()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHitEdge()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isHitRisingEdge()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->isHitFallingEdge()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHitReserved()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHeaderErr()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcMessage*) G__getstructoffset())->getHeaderRes()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 1: ((HTrb3TdcMessage*) G__getstructoffset())->print((double) G__double(libp->para[0])); G__setnull(result7); break; case 0: ((HTrb3TdcMessage*) G__getstructoffset())->print(); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 100, (double) HTrb3TdcMessage::coarseUnit()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 100, (double) HTrb3TdcMessage::simpleFineCalibr((unsigned int) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_615_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcMessage::setFineLimits((unsigned int) G__int(libp->para[0]), (unsigned int) G__int(libp->para[1])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_615_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcMessage* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb3TdcMessage(*(HTrb3TdcMessage*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrb3TdcMessage G__THTrb3TdcMessage; static int G__DataSourceDict_615_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 0 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrb3TdcMessage*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrb3TdcMessage*) (soff+(sizeof(HTrb3TdcMessage)*i)))->~G__THTrb3TdcMessage(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrb3TdcMessage*) soff; } else { G__setgvp((long) G__PVOID); ((HTrb3TdcMessage*) (soff))->~G__THTrb3TdcMessage(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_615_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcMessage* dest = (HTrb3TdcMessage*) G__getstructoffset(); *dest = *(HTrb3TdcMessage*) libp->para[0].ref; const HTrb3TdcMessage& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrb3TdcIterator */ static int G__DataSourceDict_616_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcIterator* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcIterator[n]; } else { p = new((void*) gvp) HTrb3TdcIterator[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrb3TdcIterator; } else { p = new((void*) gvp) HTrb3TdcIterator; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { switch (libp->paran) { case 3: ((HTrb3TdcIterator*) G__getstructoffset())->assign((uint32_t*) G__int(libp->para[0]), (unsigned int) G__int(libp->para[1]) , (bool) G__int(libp->para[2])); G__setnull(result7); break; case 2: ((HTrb3TdcIterator*) G__getstructoffset())->assign((uint32_t*) G__int(libp->para[0]), (unsigned int) G__int(libp->para[1])); G__setnull(result7); break; } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcIterator*) G__getstructoffset())->setRefEpoch((uint32_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((HTrb3TdcIterator*) G__getstructoffset())->next()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letULonglong(result7, 109, (G__uint64) ((const HTrb3TdcIterator*) G__getstructoffset())->getMsgStamp()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 100, (double) ((const HTrb3TdcIterator*) G__getstructoffset())->getMsgTimeCoarse()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letdouble(result7, 100, (double) ((const HTrb3TdcIterator*) G__getstructoffset())->getMsgTimeFine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { { const HTrb3TdcMessage& obj = ((HTrb3TdcIterator*) G__getstructoffset())->msg(); result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 103, (long) ((const HTrb3TdcIterator*) G__getstructoffset())->isCurEpoch()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcIterator*) G__getstructoffset())->clearCurEpoch(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((const HTrb3TdcIterator*) G__getstructoffset())->getCurEpoch()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_616_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrb3TdcIterator*) G__getstructoffset())->printmsg(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_616_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcIterator* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrb3TdcIterator(*(HTrb3TdcIterator*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrb3TdcIterator G__THTrb3TdcIterator; static int G__DataSourceDict_616_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 0 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrb3TdcIterator*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrb3TdcIterator*) (soff+(sizeof(HTrb3TdcIterator)*i)))->~G__THTrb3TdcIterator(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrb3TdcIterator*) soff; } else { G__setgvp((long) G__PVOID); ((HTrb3TdcIterator*) (soff))->~G__THTrb3TdcIterator(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_616_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrb3TdcIterator* dest = (HTrb3TdcIterator*) G__getstructoffset(); *dest = *(HTrb3TdcIterator*) libp->para[0].ref; const HTrb3TdcIterator& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrbLookupChan */ static int G__DataSourceDict_620_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupChan* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookupChan[n]; } else { p = new((void*) gvp) HTrbLookupChan[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookupChan; } else { p = new((void*) gvp) HTrbLookupChan; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 99, (long) ((HTrbLookupChan*) G__getstructoffset())->getDetector()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookupChan*) G__getstructoffset())->getSector()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookupChan*) G__getstructoffset())->getModule()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookupChan*) G__getstructoffset())->getCell()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 99, (long) ((HTrbLookupChan*) G__getstructoffset())->getSide()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookupChan*) G__getstructoffset())->getFeAddress()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->getAddress(*(Char_t*) G__Charref(&libp->para[0]), *(Int_t*) G__Intref(&libp->para[1]) , *(Int_t*) G__Intref(&libp->para[2]), *(Int_t*) G__Intref(&libp->para[3]) , *(Char_t*) G__Charref(&libp->para[4]), *(Int_t*) G__Intref(&libp->para[5])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->fill((Char_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]) , (Int_t) G__int(libp->para[2]), (Int_t) G__int(libp->para[3]) , (Char_t) G__int(libp->para[4]), (Int_t) G__int(libp->para[5])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->fill(*(HTrbLookupChan*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->setDetector((Char_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->setSector((const Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->setModule((const Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->setCell((const Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->setSide((Char_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->setFeAddress((const Int_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->clear(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbLookupChan::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookupChan::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbLookupChan::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupChan::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupChan*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookupChan::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbLookupChan::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookupChan::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_620_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbLookupChan::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_620_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupChan* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrbLookupChan(*(HTrbLookupChan*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrbLookupChan G__THTrbLookupChan; static int G__DataSourceDict_620_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrbLookupChan*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrbLookupChan*) (soff+(sizeof(HTrbLookupChan)*i)))->~G__THTrbLookupChan(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrbLookupChan*) soff; } else { G__setgvp((long) G__PVOID); ((HTrbLookupChan*) (soff))->~G__THTrbLookupChan(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_620_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupChan* dest = (HTrbLookupChan*) G__getstructoffset(); *dest = *(HTrbLookupChan*) libp->para[0].ref; const HTrbLookupChan& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* HTrbLookupBoard */ static int G__DataSourceDict_621_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupBoard* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookupBoard[n]; } else { p = new((void*) gvp) HTrbLookupBoard[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbLookupBoard; } else { p = new((void*) gvp) HTrbLookupBoard; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) ((HTrbLookupBoard*) G__getstructoffset())->getChannel((Int_t) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { { const HTrbLookupChan& obj = ((HTrbLookupBoard*) G__getstructoffset())->operator[]((Int_t) G__int(libp->para[0])); result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); } return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) ((HTrbLookupBoard*) G__getstructoffset())->getSize()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupBoard*) G__getstructoffset())->clear(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbLookupBoard::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookupBoard::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbLookupBoard::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupBoard::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbLookupBoard*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookupBoard::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbLookupBoard::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbLookupBoard::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_621_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbLookupBoard::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_621_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupBoard* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrbLookupBoard(*(HTrbLookupBoard*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrbLookupBoard G__THTrbLookupBoard; static int G__DataSourceDict_621_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrbLookupBoard*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrbLookupBoard*) (soff+(sizeof(HTrbLookupBoard)*i)))->~G__THTrbLookupBoard(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrbLookupBoard*) soff; } else { G__setgvp((long) G__PVOID); ((HTrbLookupBoard*) (soff))->~G__THTrbLookupBoard(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_621_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbLookupBoard* dest = (HTrbLookupBoard*) G__getstructoffset(); *dest = *(HTrbLookupBoard*) libp->para[0].ref; const HTrbLookupBoard& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* Trbnet */ /* HTrbNetDebugInfo */ static int G__DataSourceDict_626_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetDebugInfo* p = NULL; char* gvp = (char*) G__getgvp(); int n = G__getaryconstruct(); if (n) { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbNetDebugInfo[n]; } else { p = new((void*) gvp) HTrbNetDebugInfo[n]; } } else { if ((gvp == (char*)G__PVOID) || (gvp == 0)) { p = new HTrbNetDebugInfo; } else { p = new((void*) gvp) HTrbNetDebugInfo; } } result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo)); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((HTrbNetDebugInfo*) G__getstructoffset())->getAddress()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((HTrbNetDebugInfo*) G__getstructoffset())->getStatusWord()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 104, (long) ((HTrbNetDebugInfo*) G__getstructoffset())->getStatusBit((char) G__int(libp->para[0]))); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbNetDebugInfo*) G__getstructoffset())->setAddress((UInt_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbNetDebugInfo*) G__getstructoffset())->setStatus((UInt_t) G__int(libp->para[0])); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 85, (long) HTrbNetDebugInfo::Class()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbNetDebugInfo::Class_Name()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 115, (long) HTrbNetDebugInfo::Class_Version()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetDebugInfo::Dictionary(); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { ((HTrbNetDebugInfo*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref); G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbNetDebugInfo::DeclFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbNetDebugInfo::ImplFileLine()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 67, (long) HTrbNetDebugInfo::ImplFileName()); return(1 || funcname || hash || result7 || libp) ; } static int G__DataSourceDict_626_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { G__letint(result7, 105, (long) HTrbNetDebugInfo::DeclFileLine()); return(1 || funcname || hash || result7 || libp) ; } // automatic copy constructor static int G__DataSourceDict_626_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetDebugInfo* p; void* tmp = (void*) G__int(libp->para[0]); p = new HTrbNetDebugInfo(*(HTrbNetDebugInfo*) tmp); result7->obj.i = (long) p; result7->ref = (long) p; G__set_tagnum(result7,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo)); return(1 || funcname || hash || result7 || libp) ; } // automatic destructor typedef HTrbNetDebugInfo G__THTrbNetDebugInfo; static int G__DataSourceDict_626_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { char* gvp = (char*) G__getgvp(); long soff = G__getstructoffset(); int n = G__getaryconstruct(); // //has_a_delete: 1 //has_own_delete1arg: 0 //has_own_delete2arg: 0 // if (!soff) { return(1); } if (n) { if (gvp == (char*)G__PVOID) { delete[] (HTrbNetDebugInfo*) soff; } else { G__setgvp((long) G__PVOID); for (int i = n - 1; i >= 0; --i) { ((HTrbNetDebugInfo*) (soff+(sizeof(HTrbNetDebugInfo)*i)))->~G__THTrbNetDebugInfo(); } G__setgvp((long)gvp); } } else { if (gvp == (char*)G__PVOID) { delete (HTrbNetDebugInfo*) soff; } else { G__setgvp((long) G__PVOID); ((HTrbNetDebugInfo*) (soff))->~G__THTrbNetDebugInfo(); G__setgvp((long)gvp); } } G__setnull(result7); return(1 || funcname || hash || result7 || libp) ; } // automatic assignment operator static int G__DataSourceDict_626_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash) { HTrbNetDebugInfo* dest = (HTrbNetDebugInfo*) G__getstructoffset(); *dest = *(HTrbNetDebugInfo*) libp->para[0].ref; const HTrbNetDebugInfo& obj = *dest; result7->ref = (long) (&obj); result7->obj.i = (long) (&obj); return(1 || funcname || hash || result7 || libp) ; } /* Setting up global function */ /********************************************************* * Member function Stub *********************************************************/ /* HDataSource */ /* HGeantReader */ /* HGeantSource */ /* HRootSource */ /* HGeantMergeSource */ /* HTrbNetUnpacker */ /* HldUnpack */ /* HldSource */ /* HldFileOutput */ /* HldFileDesc */ /* HldFileSourceBase */ /* HldFileSource */ /* HKineGeantReader */ /* HSimulGeantReader */ /* HDirectSource */ /* HldRemoteSource */ /* HldGrepFileSource */ /* HTrbLookup */ /* HTrbBaseUnpacker */ /* HTrb2Correction */ /* HTrbnetAddressMapping */ /* HTrb2Unpacker */ /* HTrb3Unpacker */ /* HTrb3CalparTdc */ /* HTrb3TdcUnpacker */ /* HTrb3Calpar */ /* HTrb3TdcMessage */ /* HTrb3TdcIterator */ /* HTrbLookupChan */ /* HTrbLookupBoard */ /* Trbnet */ /* HTrbNetDebugInfo */ /********************************************************* * Global function Stub *********************************************************/ /********************************************************* * Get size of pointer to member function *********************************************************/ class G__Sizep2memfuncDataSourceDict { public: G__Sizep2memfuncDataSourceDict(): p(&G__Sizep2memfuncDataSourceDict::sizep2memfunc) {} size_t sizep2memfunc() { return(sizeof(p)); } private: size_t (G__Sizep2memfuncDataSourceDict::*p)(); }; size_t G__get_sizep2memfuncDataSourceDict() { G__Sizep2memfuncDataSourceDict a; G__setsizep2memfunc((int)a.sizep2memfunc()); return((size_t)a.sizep2memfunc()); } /********************************************************* * virtual base class offset calculation interface *********************************************************/ /* Setting up class inheritance */ /********************************************************* * Inheritance information setup/ *********************************************************/ extern "C" void G__cpp_setup_inheritanceDataSourceDict() { /* Setting up class inheritance */ if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource))) { HDataSource *G__Lderived; G__Lderived=(HDataSource*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader))) { HGeantReader *G__Lderived; G__Lderived=(HGeantReader*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantSource))) { HGeantSource *G__Lderived; G__Lderived=(HGeantSource*)0x1000; { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource))) { HRootSource *G__Lderived; G__Lderived=(HRootSource*)0x1000; { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource))) { HGeantMergeSource *G__Lderived; G__Lderived=(HGeantMergeSource*)0x1000; { HRootSource *G__Lpbase=(HRootSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource),G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker))) { HTrbNetUnpacker *G__Lderived; G__Lderived=(HTrbNetUnpacker*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack))) { HldUnpack *G__Lderived; G__Lderived=(HldUnpack*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldSource))) { HldSource *G__Lderived; G__Lderived=(HldSource*)0x1000; { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput))) { HldFileOutput *G__Lderived; G__Lderived=(HldFileOutput*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc))) { HldFileDesc *G__Lderived; G__Lderived=(HldFileDesc*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase))) { HldFileSourceBase *G__Lderived; G__Lderived=(HldFileSourceBase*)0x1000; { HldSource *G__Lpbase=(HldSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase),G__get_linked_tagnum(&G__DataSourceDictLN_HldSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource))) { HldFileSource *G__Lderived; G__Lderived=(HldFileSource*)0x1000; { HldFileSourceBase *G__Lpbase=(HldFileSourceBase*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase),(long)G__Lpbase-(long)G__Lderived,1,1); } { HldSource *G__Lpbase=(HldSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_HldSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader))) { HKineGeantReader *G__Lderived; G__Lderived=(HKineGeantReader*)0x1000; { HGeantReader *G__Lpbase=(HGeantReader*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader),G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader))) { HSimulGeantReader *G__Lderived; G__Lderived=(HSimulGeantReader*)0x1000; { HGeantReader *G__Lpbase=(HGeantReader*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader),G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HDirectSource))) { HDirectSource *G__Lderived; G__Lderived=(HDirectSource*)0x1000; { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDirectSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDirectSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource))) { HldRemoteSource *G__Lderived; G__Lderived=(HldRemoteSource*)0x1000; { HldSource *G__Lpbase=(HldSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource),G__get_linked_tagnum(&G__DataSourceDictLN_HldSource),(long)G__Lpbase-(long)G__Lderived,1,1); } { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource))) { HldGrepFileSource *G__Lderived; G__Lderived=(HldGrepFileSource*)0x1000; { HldFileSourceBase *G__Lpbase=(HldFileSourceBase*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase),(long)G__Lpbase-(long)G__Lderived,1,1); } { HldSource *G__Lpbase=(HldSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_HldSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { HDataSource *G__Lpbase=(HDataSource*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup))) { HTrbLookup *G__Lderived; G__Lderived=(HTrbLookup*)0x1000; { HParSet *G__Lpbase=(HParSet*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup),G__get_linked_tagnum(&G__DataSourceDictLN_HParSet),(long)G__Lpbase-(long)G__Lderived,1,1); } { TNamed *G__Lpbase=(TNamed*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup),G__get_linked_tagnum(&G__DataSourceDictLN_TNamed),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker))) { HTrbBaseUnpacker *G__Lderived; G__Lderived=(HTrbBaseUnpacker*)0x1000; { HldUnpack *G__Lpbase=(HldUnpack*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker),G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction))) { HTrb2Correction *G__Lderived; G__Lderived=(HTrb2Correction*)0x1000; { TNamed *G__Lpbase=(TNamed*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction),G__get_linked_tagnum(&G__DataSourceDictLN_TNamed),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping))) { HTrbnetAddressMapping *G__Lderived; G__Lderived=(HTrbnetAddressMapping*)0x1000; { HParSet *G__Lpbase=(HParSet*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping),G__get_linked_tagnum(&G__DataSourceDictLN_HParSet),(long)G__Lpbase-(long)G__Lderived,1,1); } { TNamed *G__Lpbase=(TNamed*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping),G__get_linked_tagnum(&G__DataSourceDictLN_TNamed),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker))) { HTrb2Unpacker *G__Lderived; G__Lderived=(HTrb2Unpacker*)0x1000; { HldUnpack *G__Lpbase=(HldUnpack*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker),G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker))) { HTrb3Unpacker *G__Lderived; G__Lderived=(HTrb3Unpacker*)0x1000; { HldUnpack *G__Lpbase=(HldUnpack*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker),G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc))) { HTrb3CalparTdc *G__Lderived; G__Lderived=(HTrb3CalparTdc*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker))) { HTrb3TdcUnpacker *G__Lderived; G__Lderived=(HTrb3TdcUnpacker*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar))) { HTrb3Calpar *G__Lderived; G__Lderived=(HTrb3Calpar*)0x1000; { HParSet *G__Lpbase=(HParSet*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar),G__get_linked_tagnum(&G__DataSourceDictLN_HParSet),(long)G__Lpbase-(long)G__Lderived,1,1); } { TNamed *G__Lpbase=(TNamed*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar),G__get_linked_tagnum(&G__DataSourceDictLN_TNamed),(long)G__Lpbase-(long)G__Lderived,1,0); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HParSet))) { HParSet *G__Lderived; G__Lderived=(HParSet*)0x1000; { TNamed *G__Lpbase=(TNamed*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HParSet),G__get_linked_tagnum(&G__DataSourceDictLN_TNamed),(long)G__Lpbase-(long)G__Lderived,1,1); } { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HParSet),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan))) { HTrbLookupChan *G__Lderived; G__Lderived=(HTrbLookupChan*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard))) { HTrbLookupBoard *G__Lderived; G__Lderived=(HTrbLookupBoard*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo))) { HTrbNetDebugInfo *G__Lderived; G__Lderived=(HTrbNetDebugInfo*)0x1000; { TObject *G__Lpbase=(TObject*)G__Lderived; G__inheritance_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo),G__get_linked_tagnum(&G__DataSourceDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1); } } } /********************************************************* * typedef information setup/ *********************************************************/ extern "C" void G__cpp_setup_typetableDataSourceDict() { /* Setting up typedef entry */ G__search_typename2("Char_t",99,-1,0,-1); G__setnewtype(-1,"Signed Character 1 byte (char)",0); G__search_typename2("Int_t",105,-1,0,-1); G__setnewtype(-1,"Signed integer 4 bytes (int)",0); G__search_typename2("UInt_t",104,-1,0,-1); G__setnewtype(-1,"Unsigned integer 4 bytes (unsigned int)",0); G__search_typename2("Float_t",102,-1,0,-1); G__setnewtype(-1,"Float 4 bytes (float)",0); G__search_typename2("Text_t",99,-1,0,-1); G__setnewtype(-1,"General string (char)",0); G__search_typename2("Bool_t",103,-1,0,-1); G__setnewtype(-1,"Boolean (0=false, 1=true) (bool)",0); G__search_typename2("Version_t",115,-1,0,-1); G__setnewtype(-1,"Class version identifier (short)",0); G__search_typename2("Option_t",99,-1,256,-1); G__setnewtype(-1,"Option string (const char)",0); G__search_typename2("vector<ROOT::TSchemaHelper>",117,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("vector<TVirtualArray*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("iterator<std::bidirectional_iterator_tag,TObject*,std::ptrdiff_t,const TObject**,const TObject*&>",117,G__get_linked_tagnum(&G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,std::ptrdiff_t,const TObject**,const TObject*&>",117,G__get_linked_tagnum(&G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("iterator<bidirectional_iterator_tag,TObject*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,long>",117,G__get_linked_tagnum(&G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,long,const TObject**>",117,G__get_linked_tagnum(&G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("Cat_t",115,-1,0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("map<std::string,TObjArray*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("map<string,TObjArray*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("map<string,TObjArray*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("map<string,TObjArray*,less<string> >",117,G__get_linked_tagnum(&G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("map<Int_t,Int_t>",117,G__get_linked_tagnum(&G__DataSourceDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("vector<HParallelEvent*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("uint64_t",109,-1,0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("vector<ChannelRec>",117,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("vector<HTrb3TdcUnpacker::ChannelRec>",117,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("vector<HTrb3TdcUnpacker*>",117,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR),0,-1); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR)); G__setnewtype(-1,NULL,0); G__search_typename2("uint32_t",104,-1,0,-1); G__setnewtype(-1,NULL,0); } /********************************************************* * Data Member information setup/ *********************************************************/ /* Setting up class,struct,union tag member variable */ /* HDataSource */ static void G__setup_memvarHDataSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource)); { HDataSource *p; p=(HDataSource*)0x1000; if (p) { } G__memvar_setup((void*)0,85,2,0,G__get_linked_tagnum(&G__DataSourceDictLN_HEvent),-1,-1,2,"fEventAddr=",0,"! Address of the event to fill"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fForcedID=",0,"! (default =-1, not used, any other value between 1-15 will replace the ID in the eventheader!)"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HGeantReader */ static void G__setup_memvarHGeantReader(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader)); { HGeantReader *p; p=(HGeantReader*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TFile),-1,-1,2,"fInputFile=",0,"Pointer to the input file."); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HGeantSource */ static void G__setup_memvarHGeantSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantSource)); { HGeantSource *p; p=(HGeantSource*)0x1000; if (p) { } G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TList),-1,-1,4,"fReaderList=",0,"List of active geant readers."); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_THashTable),-1,-1,4,"fFileTable=",0,"Hash table with input files"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HRootSource */ static void G__setup_memvarHRootSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource)); { HRootSource *p; p=(HRootSource*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TChain),-1,-1,2,"fInput=",0,"TTree to be read."); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"fDirectory=",0,(char*)NULL); G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Stat_t"),-1,2,"fEntries=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"fPersistency=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"fMerge=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fCursor=",0,"Number of next event."); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fSplitLevel=",0,"Split level of input tree"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fCurrentRunId=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fCurrentRefId=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fGlobalRefId=",0,(char*)NULL); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR),G__defined_typename("map<Int_t,Int_t>"),-1,2,"fRefIds=",0,"!"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HEvent),-1,-1,2,"fEventInFile=",0,"! Pointer to the event structure in file"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TEventList),-1,-1,2,"fEventList=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fLastRunId=",0,"! last run number (needed to detect switch to new run)"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"overwriteVersion=",0,"! flag for modifying version"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"replaceVersion=",0,"! value for replacing version is overwriteVersion=kTRUE"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HGeantMergeSource */ static void G__setup_memvarHGeantMergeSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource)); { HGeantMergeSource *p; p=(HGeantMergeSource*)0x1000; if (p) { } G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR),G__defined_typename("vector<HParallelEvent*>"),-1,2,"fAdditionalInputs=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrbNetUnpacker */ static void G__setup_memvarHTrbNetUnpacker(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker)); { HTrbNetUnpacker *p; p=(HTrbNetUnpacker*)0x1000; if (p) { } G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"initialized=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HRuntimeDb),-1,-1,2,"rtdb=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HLinearCategory),-1,-1,2,"debugInfo=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldUnpack */ static void G__setup_memvarHldUnpack(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack)); { HldUnpack *p; p=(HldUnpack*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HldSubEvt),-1,-1,2,"pSubEvt=",0,"! pointer to subevent where data are read from"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HCategory),-1,-1,2,"pRawCat=",0,"! pointer to category where data will be stored;"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker),-1,-1,2,"trbNetUnpacker=",0,"! Poinetr to unpacker for TRB Net data structures"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldSource */ static void G__setup_memvarHldSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldSource)); { HldSource *p; p=(HldSource*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker),-1,-1,2,"hubUnpacker=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"isDumped=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"isScanned=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"oldDecodingStyle=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TList),-1,-1,2,"fUnpackerList=",0,"! List of the unpackers used to extract data"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HldEvt),-1,-1,2,"fReadEvent=",0,"! Buffer where the data is first read."); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldFileOutput */ static void G__setup_memvarHldFileOutput(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput)); { HldFileOutput *p; p=(HldFileOutput*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HldEvt),-1,-1,2,"evt=",0,"Pointer to the HLD event"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"numTotal=",0,"Total number of events written"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"numFiltered=",0,"Number of filtered events written"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_basic_ofstreamlEcharcOchar_traitslEchargRsPgR),G__defined_typename("ofstream"),-1,2,"fout=",0,"File output"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"fDir=",0,"File directory"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"fileSuffix=",0,"File suffix (default f_)"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"fOption=",0,"File option"); G__memvar_setup((void*)0,98,0,0,-1,G__defined_typename("UChar_t"),-1,2,"padding[64]=",0,"Byte array for padding"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldFileDesc */ static void G__setup_memvarHldFileDesc(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc)); { HldFileDesc *p; p=(HldFileDesc*)0x1000; if (p) { } G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,4,"fName=",0,"File name"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fRunId=",0,"RunId"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fRefId=",0,"Reference run Id for initialization"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldFileSourceBase */ static void G__setup_memvarHldFileSourceBase(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase)); { HldFileSourceBase *p; p=(HldFileSourceBase*)0x1000; if (p) { } G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TList),-1,-1,2,"fFileList=",0,"List with all files to be analyzed"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc),-1,-1,2,"fCurrentFile=",0,"Pointer to current file."); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"fCurrentDir=",0,"Current directory for addFile"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TIterator),-1,-1,2,"iter=",0,"Iterator over list of files"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fEventNr=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"fEventLimit=",0,"Event counter and maximun event nr per file"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldFileSource */ static void G__setup_memvarHldFileSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource)); { HldFileSource *p; p=(HldFileSource*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HKineGeantReader */ static void G__setup_memvarHKineGeantReader(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader)); { HKineGeantReader *p; p=(HKineGeantReader*)0x1000; if (p) { } G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fEventId=",0,"Current event number"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TTree),-1,-1,4,"t=",0,"Pointer to the root tree"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HLinearCategory),-1,-1,4,"fGeantKineCat=",0,"! KINE HGeant input data"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HSimulGeantReader */ static void G__setup_memvarHSimulGeantReader(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader)); { HSimulGeantReader *p; p=(HSimulGeantReader*)0x1000; if (p) { } G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fEventId=",0,"Current event number"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TTree),-1,-1,4,"t=",0,"Pointer to the root tree"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HRecEvent),-1,-1,4,"fSimEv=",0,"! HGeant input data"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HDirectSource */ static void G__setup_memvarHDirectSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDirectSource)); { HDirectSource *p; p=(HDirectSource*)0x1000; if (p) { } G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TList),-1,-1,4,"fReaderList=",0,"List of active Geant readers."); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fCurrentRunId=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldRemoteSource */ static void G__setup_memvarHldRemoteSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource)); { HldRemoteSource *p; p=(HldRemoteSource*)0x1000; if (p) { } G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"refId=",0,"Reference run id for initialization"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"currNodeName=",0,(char*)NULL); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"fileName=",0,"dummy filename composed from time"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"runId=",0,"store runId to compare in next event"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TIterator),-1,-1,2,"iter=",0,(char*)NULL); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HldGrepFileSource */ static void G__setup_memvarHldGrepFileSource(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource)); { HldGrepFileSource *p; p=(HldGrepFileSource*)0x1000; if (p) { } G__memvar_setup((void*)0,108,0,0,-1,G__defined_typename("time_t"),-2,2,"lastfile=",0,"! last modification time of last used file"); G__memvar_setup((void*)0,108,0,0,-1,G__defined_typename("time_t"),-2,2,"timelimit=",0,"! time stamp for the search of new files (files should be newer)"); G__memvar_setup((void*)0,108,0,0,-1,G__defined_typename("time_t"),-2,2,"tcurrent=",0,"! current time"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-2,2,"timeoffset=",0,"! offset in seconds required to t_current"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-2,2,"fullname=",0,"! full filename: path/file"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-2,2,"fullnamesort=",0,"! full filename for sorting: path/modtime_file"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-2,2,"path=",0,"! path to directory used for grep of new hld files"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"first=",0,"! flag : 0 if no file has be selected"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"mode=",0,"! flag : 1 take newest file , 1: start from given file/time than take the next in list"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"interval=",0,"! time interval in seconds for grep on dir"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TStopwatch),-1,-1,2,"timer=",0,"! timer for grep interval"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"referenceId=",0,"! referrence ID for files"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"dostop=",0,"! flag to stop the source from file reading (ckecked each event)"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"distanceToLast=",0,"! distance to last file : last - distanceToLast"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrbLookup */ static void G__setup_memvarHTrbLookup(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup)); { HTrbLookup *p; p=(HTrbLookup*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TObjArray),-1,-1,2,"array=",0,"array of pointers of type HTrbLookupBoard"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"arrayOffset=",0,"offset to calculate the index"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrbBaseUnpacker */ static void G__setup_memvarHTrbBaseUnpacker(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker)); { HTrbBaseUnpacker *p; p=(HTrbBaseUnpacker*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup),-1,-1,2,"lookup=",0,(char*)NULL); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"subEvtId=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbDataVer=",0,"data structure version:"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbLeadingTime[128][10]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbTrailingTime[128][10]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbADC[128][10]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbLeadingMult[128]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbTrailingMult[128]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbTrailingTotalMult[128]=",0,"FIXME: Pablos private version; total multiplicity for trailings "); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbDataExtension[128]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbExtensionSize=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"trbDataPairFlag=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"debugFlag=",0,"! allows to print subevent information"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"quietMode=",0,"! do not print errors!"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"reportCritical=",0,"! report critical errors!"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb2Correction */ static void G__setup_memvarHTrb2Correction(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction)); { HTrb2Correction *p; p=(HTrb2Correction*)0x1000; if (p) { } G__memvar_setup((void*)0,105,0,1,-1,G__defined_typename("Int_t"),-1,2,"nValuesPerChannel=",0,"number of values per channel"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TString),-1,-1,2,"boardType=",0,"type of board"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"subeventId=",0,"related subevent id"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"nChannels=",0,"number of channels with corrections"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"highResolutionFlag=",0,"0 = low resolution, 1 = high resolution "); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TArrayF),-1,-1,2,"corrData=",0,"correction data for the tdc channels"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrbnetAddressMapping */ static void G__setup_memvarHTrbnetAddressMapping(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping)); { HTrbnetAddressMapping *p; p=(HTrbnetAddressMapping*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TObjArray),-1,-1,2,"array=",0,"array of pointers of type HTrb2Correction"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"arrayOffset=",0,"offset to calculate the index"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb2Unpacker */ static void G__setup_memvarHTrb2Unpacker(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker)); { HTrb2Unpacker *p; p=(HTrb2Unpacker*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction),-1,-1,2,"trbinlcorr=",0,"TDC correctirons for the TRB boards"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping),-1,-1,2,"trbaddressmap=",0,"mapping table trbnet-address to TRB board"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"subEvtId=",0,"subevent id"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"uStartPosition=",0,"position at which to start decoding."); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"uTrbNetAdress=",0,"TrbNetAdress"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"uSubBlockSize=",0,"BlockSize of SubSubEvent (one TRB)"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"nCountWords=",0,"at which data to start decoding"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbDataVer=",0,"data structure version:"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"debugFlag=",0,"! allows to print subevent information to the STDOUT"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"quietMode=",0,"! do not print errors!"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"reportCritical=",0,"! report critical errors!"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"correctINL=",0,"! if > 0 performs the INL correction"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"correctINLboard=",0,"! if > 0 performs the INL correction for this TRB"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"highResModeOn=",0,"! is set the data are collected in High Res. Mode - 25ps binning"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"trbDataPairFlag=",0,"! data in pair mode (leading and width in one word)"); G__memvar_setup((void*)0,102,0,0,-1,G__defined_typename("Float_t"),-1,2,"trbLeadingTime[128][10]=",0,(char*)NULL); G__memvar_setup((void*)0,102,0,0,-1,G__defined_typename("Float_t"),-1,2,"trbTrailingTime[128][10]=",0,(char*)NULL); G__memvar_setup((void*)0,102,0,0,-1,G__defined_typename("Float_t"),-1,2,"trbADC[128][10]=",0,(char*)NULL); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"trbExtensionSize=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbLeadingMult[128]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbTrailingMult[128]=",0,(char*)NULL); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbTrailingTotalMult[128]=",0,"FIXME: Pablos private version; total multiplicity for trailings "); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"trbDataExtension[128]=",0,(char*)NULL); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"tryRecover_1=",0,"! try to recover broken data format (blocksize out of subevent)"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"tryRecover_2=",0,"! try to recover broken data format (trbnet subsub size not equal subsubsize)"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb3Unpacker */ static void G__setup_memvarHTrb3Unpacker(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker)); { HTrb3Unpacker *p; p=(HTrb3Unpacker*)0x1000; if (p) { } G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"subEvtId=",0,"! subevent id - main identifier"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"uHUBId=",0,"! number like 0x9000 which works as envelope for external TDCs"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"uCTSId=",0,"! number like 0x8000 which indicates CTS block in data"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"debugFlag=",0,"! allows to print subevent information to the STDOUT"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"quietMode=",0,"! do not print errors!"); G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,2,"reportCritical=",0,"! report critical errors!"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar),-1,-1,2,"calpar=",0,"! TDC calibration parameters "); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR),G__defined_typename("vector<HTrb3TdcUnpacker*>"),-1,2,"fTDCs=",0,"! vector of TDC unpackers"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb3CalparTdc */ static void G__setup_memvarHTrb3CalparTdc(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc)); { HTrb3CalparTdc *p; p=(HTrb3CalparTdc*)0x1000; if (p) { } G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"subEvtId=",0,"subevent id the TDC belongs to"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"nChannels=",0,"number of channels"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"nBinsPerChannel=",0,"number of bins per channel"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"nEdgesMask=",0,"1 - only rising edges, 2 - only falling edges, 3 - both edges"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TArrayF),-1,-1,2,"binsPar=",0,"all bins"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb3TdcUnpacker */ static void G__setup_memvarHTrb3TdcUnpacker(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker)); { HTrb3TdcUnpacker *p; p=(HTrb3TdcUnpacker*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker),-1,-1,2,"fUnpacker=",0,"! pointer on unpacker"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"fTdcId=",0,"! TRB address, placed in sub-sub event header"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc),-1,-1,2,"tdcpar=",0,"! pointer to TDC calibration parameters"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR),G__defined_typename("vector<ChannelRec>"),-1,2,"fCh=",0,"!"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb3Calpar */ static void G__setup_memvarHTrb3Calpar(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar)); { HTrb3Calpar *p; p=(HTrb3Calpar*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TObjArray),-1,-1,2,"array=",0,"array of pointers of type HTrb3CalparTdc"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"arrayOffset=",0,"offset to calculate the index"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb3TdcMessage */ static void G__setup_memvarHTrb3TdcMessage(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage)); { HTrb3TdcMessage *p; p=(HTrb3TdcMessage*)0x1000; if (p) { } G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("uint32_t"),-1,2,"fData=",0,(char*)NULL); G__memvar_setup((void*)0,104,0,0,-1,-1,-2,2,"gFineMinValue=",0,(char*)NULL); G__memvar_setup((void*)0,104,0,0,-1,-1,-2,2,"gFineMaxValue=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrb3TdcIterator */ static void G__setup_memvarHTrb3TdcIterator(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator)); { HTrb3TdcIterator *p; p=(HTrb3TdcIterator*)0x1000; if (p) { } G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIteratorcLcLdA),-1,-2,2,"DummyEpoch=-1LL",0,(char*)NULL); G__memvar_setup((void*)0,72,0,0,-1,G__defined_typename("uint32_t"),-1,2,"fBuf=",0,"! pointer on raw data"); G__memvar_setup((void*)0,104,0,0,-1,-1,-1,2,"fBuflen=",0,"! length of raw data"); G__memvar_setup((void*)0,103,0,0,-1,-1,-1,2,"fSwapped=",0,"! true if raw data are swapped"); G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage),-1,-1,2,"fMsg=",0,"! current message"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("uint32_t"),-1,2,"fCurEpoch=",0,"! current epoch"); } G__tag_memvar_reset(); } /* HTrbLookupChan */ static void G__setup_memvarHTrbLookupChan(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan)); { HTrbLookupChan *p; p=(HTrbLookupChan*)0x1000; if (p) { } G__memvar_setup((void*)0,99,0,0,-1,G__defined_typename("Char_t"),-1,2,"detector=",0,"identifier for detector"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"sector=",0,"sector number"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"module=",0,"module number"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"cell=",0,"cell number"); G__memvar_setup((void*)0,99,0,0,-1,G__defined_typename("Char_t"),-1,2,"side=",0,"side of cell"); G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,2,"feAddress=",0,"front end address"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrbLookupBoard */ static void G__setup_memvarHTrbLookupBoard(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard)); { HTrbLookupBoard *p; p=(HTrbLookupBoard*)0x1000; if (p) { } G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TObjArray),-1,-1,2,"array=",0,"pointer array containing HTrbLookupChan objects"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } /* Trbnet */ static void G__setup_memvarTrbnet(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_Trbnet)); { G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kTrb2MinTrbnetAddress=%lldLL",(long long)Trbnet::kTrb2MinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kTrb2MaxTrbnetAddress=%lldLL",(long long)Trbnet::kTrb2MaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kStartMinTrbnetAddress=%lldLL",(long long)Trbnet::kStartMinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kStartMaxTrbnetAddress=%lldLL",(long long)Trbnet::kStartMaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kWallMinTrbnetAddress=%lldLL",(long long)Trbnet::kWallMinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kWallMaxTrbnetAddress=%lldLL",(long long)Trbnet::kWallMaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kRpcMinTrbnetAddress=%lldLL",(long long)Trbnet::kRpcMinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kRpcMaxTrbnetAddress=%lldLL",(long long)Trbnet::kRpcMaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kTofMinTrbnetAddress=%lldLL",(long long)Trbnet::kTofMinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kTofMaxTrbnetAddress=%lldLL",(long long)Trbnet::kTofMaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kPionTrackerTrb3MinTrbnetAddress=%lldLL",(long long)Trbnet::kPionTrackerTrb3MinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kPionTrackerTrb3MaxTrbnetAddress=%lldLL",(long long)Trbnet::kPionTrackerTrb3MaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kStartTrb3MinTrbnetAddress=%lldLL",(long long)Trbnet::kStartTrb3MinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kStartTrb3MaxTrbnetAddress=%lldLL",(long long)Trbnet::kStartTrb3MaxTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kEmcTrb3MinTrbnetAddress=%lldLL",(long long)Trbnet::kEmcTrb3MinTrbnetAddress).data(),0,(char*)NULL); G__memvar_setup((void*)G__PVOID,105,0,1,G__get_linked_tagnum(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),-1,-2,1,G__FastAllocString(2048).Format("kEmcTrb3MaxTrbnetAddress=%lldLL",(long long)Trbnet::kEmcTrb3MaxTrbnetAddress).data(),0,(char*)NULL); } G__tag_memvar_reset(); } /* HTrbNetDebugInfo */ static void G__setup_memvarHTrbNetDebugInfo(void) { G__tag_memvar_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo)); { HTrbNetDebugInfo *p; p=(HTrbNetDebugInfo*)0x1000; if (p) { } G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"address=",0,"< Address of TrbNet entity"); G__memvar_setup((void*)0,104,0,0,-1,G__defined_typename("UInt_t"),-1,2,"statusWord=",0,"< Status of TrbNet entity"); G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__DataSourceDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL); } G__tag_memvar_reset(); } extern "C" void G__cpp_setup_memvarDataSourceDict() { } /*********************************************************** ************************************************************ ************************************************************ ************************************************************ ************************************************************ ************************************************************ ************************************************************ ***********************************************************/ /********************************************************* * Member function information setup for each class *********************************************************/ static void G__setup_memfuncHDataSource(void) { /* HDataSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource)); G__memfunc_setup("setEventAddress",1556,G__DataSourceDict_170_0_2, 121, -1, -1, 0, 1, 1, 1, 0, "U 'HEvent' - 2 - ev", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("forceID",668,G__DataSourceDict_170_0_3, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("skipEvents",1068,G__DataSourceDict_170_0_4, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - nEv", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getNextEvent",1249,G__DataSourceDict_170_0_5, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("setCursorToPreviousEvent",2540,G__DataSourceDict_170_0_6, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,G__DataSourceDict_170_0_7, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("reinit",651,G__DataSourceDict_170_0_8, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("finalize",850,G__DataSourceDict_170_0_9, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("rewind",649,G__DataSourceDict_170_0_10, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("getCurrentRunId",1541,G__DataSourceDict_170_0_11, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("getCurrentRefId",1517,G__DataSourceDict_170_0_12, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", "Run Id used for initialization", (void*) NULL, 3); G__memfunc_setup("getCurrentFileName",1828,G__DataSourceDict_170_0_13, 67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("Class",502,G__DataSourceDict_170_0_14, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HDataSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_170_0_15, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HDataSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_170_0_16, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HDataSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_170_0_17, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HDataSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_170_0_21, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_170_0_22, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HDataSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_170_0_23, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HDataSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_170_0_24, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HDataSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_170_0_25, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HDataSource::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HDataSource", 1201, G__DataSourceDict_170_0_26, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 0); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_170_0_27, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HDataSource), -1, 1, 1, 1, 1, 0, "u 'HDataSource' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHGeantReader(void) { /* HGeantReader */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader)); G__memfunc_setup("HGeantReader",1162,G__DataSourceDict_230_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("execute",755,G__DataSourceDict_230_0_2, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,G__DataSourceDict_230_0_3, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("finalize",850,G__DataSourceDict_230_0_4, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setInput",860,G__DataSourceDict_230_0_5, 121, -1, -1, 0, 1, 1, 1, 0, "U 'TFile' - 0 - file", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Class",502,G__DataSourceDict_230_0_6, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HGeantReader::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_230_0_7, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantReader::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_230_0_8, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HGeantReader::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_230_0_9, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HGeantReader::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_230_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_230_0_14, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantReader::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_230_0_15, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HGeantReader::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_230_0_16, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantReader::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_230_0_17, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HGeantReader::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HGeantReader", 1162, G__DataSourceDict_230_0_18, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader), -1, 0, 1, 1, 1, 0, "u 'HGeantReader' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HGeantReader", 1288, G__DataSourceDict_230_0_19, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_230_0_20, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HGeantReader), -1, 1, 1, 1, 1, 0, "u 'HGeantReader' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHGeantSource(void) { /* HGeantSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantSource)); G__memfunc_setup("addGeantReader",1387,G__DataSourceDict_231_0_3, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "U 'HGeantReader' - 0 - r C - 'Text_t' 10 - inputFile", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,G__DataSourceDict_231_0_4, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("reinit",651,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("finalize",850,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRunId",1541,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRefId",1517,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentFileName",1828,(G__InterfaceMethod) NULL,67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Class",502,G__DataSourceDict_231_0_11, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HGeantSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_231_0_12, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_231_0_13, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HGeantSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_231_0_14, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HGeantSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_231_0_18, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_231_0_19, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_231_0_20, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HGeantSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_231_0_21, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_231_0_22, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HGeantSource::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HGeantSource", 1318, G__DataSourceDict_231_0_23, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); G__tag_memfunc_reset(); } static void G__setup_memfuncHRootSource(void) { /* HRootSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource)); G__memfunc_setup("fileExists",1056,(G__InterfaceMethod) NULL, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 2, 0, "u 'TString' - 11 - name", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getFile",704,(G__InterfaceMethod) NULL, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TFile), -1, 0, 1, 1, 2, 0, "u 'TString' - 0 - name", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getFileName",1089,(G__InterfaceMethod) NULL, 117, G__get_linked_tagnum(&G__DataSourceDictLN_TString), -1, 0, 1, 1, 2, 0, "C - 'Text_t' 10 - file", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("HRootSource",1117,G__DataSourceDict_540_0_4, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource), -1, 0, 2, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' fPersistent g - 'Bool_t' 0 'kFALSE' fMerge", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setEventList",1258,G__DataSourceDict_540_0_5, 121, -1, -1, 0, 1, 1, 1, 0, "U 'TEventList' - 0 - el", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setCursorToPreviousEvent",2540,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("skipEvents",1068,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - nEv", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("rewind",649,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("reinit",651,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("finalize",850,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRunId",1541,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRefId",1517,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getGlobalRefId",1371,G__DataSourceDict_540_0_15, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setCurrentRunId",1553,G__DataSourceDict_540_0_16, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setRefId",790,G__DataSourceDict_540_0_17, 121, -1, -1, 0, 2, 1, 1, 0, "i - 'Int_t' 0 - runId i - 'Int_t' 0 - refId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setGlobalRefId",1383,G__DataSourceDict_540_0_18, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - refId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCurrentFileName",1828,(G__InterfaceMethod) NULL,67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getEvent",834,G__DataSourceDict_540_0_20, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "i - 'Int_t' 0 - eventN", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setDirectory",1281,G__DataSourceDict_540_0_21, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Text_t' 10 - dirName", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addFile",681,G__DataSourceDict_540_0_22, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "C - 'Text_t' 10 - file", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setInput",860,G__DataSourceDict_540_0_23, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "C - 'Text_t' 10 - fileName C - 'Text_t' 10 - treeName", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("disableCategory",1554,G__DataSourceDict_540_0_24, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "s - 'Cat_t' 0 - aCat", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("deactivateBranch",1640,G__DataSourceDict_540_0_25, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Text_t' 10 - branchName", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("disablePartialEvent",1955,G__DataSourceDict_540_0_26, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "s - 'Cat_t' 0 - aCat", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getTree",720,G__DataSourceDict_540_0_27, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TTree), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getChain",803,G__DataSourceDict_540_0_28, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TChain), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSplitLevel",1348,G__DataSourceDict_540_0_29, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Clear",487,G__DataSourceDict_540_0_30, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Print",525,G__DataSourceDict_540_0_31, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("replaceHeaderVersion",2059,G__DataSourceDict_540_0_32, 121, -1, -1, 0, 2, 1, 1, 0, "i - 'Int_t' 0 - vers g - 'Bool_t' 0 'kTRUE' replace", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_540_0_33, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HRootSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_540_0_34, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HRootSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_540_0_35, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HRootSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_540_0_36, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HRootSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_540_0_40, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_540_0_41, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HRootSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_540_0_42, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HRootSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_540_0_43, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HRootSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_540_0_44, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HRootSource::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HRootSource", 1117, G__DataSourceDict_540_0_45, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource), -1, 0, 1, 1, 1, 0, "u 'HRootSource' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HRootSource", 1243, G__DataSourceDict_540_0_46, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_540_0_47, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HRootSource), -1, 1, 1, 1, 1, 0, "u 'HRootSource' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHGeantMergeSource(void) { /* HGeantMergeSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource)); G__memfunc_setup("HGeantMergeSource",1688,G__DataSourceDict_561_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource), -1, 0, 2, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' fPersistent g - 'Bool_t' 0 'kFALSE' fMerge", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", "hdatasource", (void*) NULL, 1); G__memfunc_setup("getEvent",834,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "i - 'Int_t' 0 - eventN", "hrootsource", (void*) NULL, 1); G__memfunc_setup("Clear",487,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", "hrootsource", (void*) NULL, 1); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", "hdatasource", (void*) NULL, 1); G__memfunc_setup("reinit",651,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", "hdatasource", (void*) NULL, 1); G__memfunc_setup("finalize",850,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", "hdatasource", (void*) NULL, 1); G__memfunc_setup("addFile",681,G__DataSourceDict_561_0_8, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "C - 'Text_t' 10 - file g - 'Bool_t' 0 'kTRUE' print", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addMultFiles",1214,G__DataSourceDict_561_0_9, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "u 'TString' - 0 - commaSeparatedList", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addAdditionalInput",1842,G__DataSourceDict_561_0_10, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "u 'TString' - 0 - filename g - 'Bool_t' 0 'kTRUE' print", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("createGeantEvent",1637,G__DataSourceDict_561_0_11, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "U 'HRecEvent' - 0 - fCurrentEvent", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_561_0_12, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HGeantMergeSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_561_0_13, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantMergeSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_561_0_14, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HGeantMergeSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_561_0_15, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HGeantMergeSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_561_0_19, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_561_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantMergeSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_561_0_21, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HGeantMergeSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_561_0_22, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HGeantMergeSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_561_0_23, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HGeantMergeSource::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HGeantMergeSource", 1688, G__DataSourceDict_561_0_24, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource), -1, 0, 1, 1, 1, 0, "u 'HGeantMergeSource' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HGeantMergeSource", 1814, G__DataSourceDict_561_0_25, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_561_0_26, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HGeantMergeSource), -1, 1, 1, 1, 1, 0, "u 'HGeantMergeSource' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbNetUnpacker(void) { /* HTrbNetUnpacker */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker)); G__memfunc_setup("HTrbNetUnpacker",1488,G__DataSourceDict_570_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HTrbNetUnpacker",1488,G__DataSourceDict_570_0_2, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker), -1, 0, 1, 1, 1, 0, "u 'HTrbNetUnpacker' - 1 - unp", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("execute",755,G__DataSourceDict_570_0_3, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,G__DataSourceDict_570_0_4, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("reinit",651,G__DataSourceDict_570_0_5, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("finalize",850,G__DataSourceDict_570_0_6, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("unpackData",1020,G__DataSourceDict_570_0_7, 105, -1, G__defined_typename("Int_t"), 0, 2, 1, 1, 0, "H - 'UInt_t' 0 - data i - 'Int_t' 0 '0' subEventId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_570_0_8, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbNetUnpacker::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_570_0_9, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbNetUnpacker::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_570_0_10, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbNetUnpacker::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_570_0_11, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbNetUnpacker::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_570_0_15, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_570_0_16, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbNetUnpacker::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_570_0_17, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbNetUnpacker::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_570_0_18, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbNetUnpacker::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_570_0_19, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbNetUnpacker::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HTrbNetUnpacker", 1614, G__DataSourceDict_570_0_20, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_570_0_21, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker), -1, 1, 1, 1, 1, 0, "u 'HTrbNetUnpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHldUnpack(void) { /* HldUnpack */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack)); G__memfunc_setup("getSubEvtId",1094,G__DataSourceDict_571_0_2, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("getpSubEvt",1033,G__DataSourceDict_571_0_3, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HldSubEvt), -1, 2, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("execute",755,G__DataSourceDict_571_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,G__DataSourceDict_571_0_5, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("reinit",651,G__DataSourceDict_571_0_6, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("finalize",850,G__DataSourceDict_571_0_7, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setCategory",1162,G__DataSourceDict_571_0_8, 121, -1, -1, 0, 1, 1, 1, 0, "U 'HCategory' - 0 - aCat", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("decodeTrbNet",1203,G__DataSourceDict_571_0_9, 105, -1, G__defined_typename("Int_t"), 0, 2, 1, 1, 0, "H - 'UInt_t' 0 - data i - 'Int_t' 0 '0' subEventId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_571_0_10, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldUnpack::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_571_0_11, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldUnpack::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_571_0_12, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldUnpack::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_571_0_13, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldUnpack::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_571_0_17, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_571_0_18, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldUnpack::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_571_0_19, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldUnpack::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_571_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldUnpack::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_571_0_21, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldUnpack::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HldUnpack", 1016, G__DataSourceDict_571_0_22, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_571_0_23, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HldUnpack), -1, 1, 1, 1, 1, 0, "u 'HldUnpack' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHldSource(void) { /* HldSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldSource)); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("initUnpacker",1261,G__DataSourceDict_580_0_3, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("reinit",651,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("finalizeUnpacker",1675,G__DataSourceDict_580_0_5, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("rewind",649,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("addUnpacker",1122,G__DataSourceDict_580_0_7, 121, -1, -1, 0, 1, 1, 1, 0, "U 'HldUnpack' - 0 - unpacker", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("finalize",850,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("showIt",638,G__DataSourceDict_580_0_9, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "U 'HldEvt' - 0 - evt", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("dumpEvt",741,G__DataSourceDict_580_0_10, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("scanIt",610,G__DataSourceDict_580_0_11, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "U 'HldEvt' - 0 - evt", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("scanEvt",724,G__DataSourceDict_580_0_12, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getDecodingStyle",1646,G__DataSourceDict_580_0_13, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setOldDecodingStyle",1945,G__DataSourceDict_580_0_14, 121, -1, -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' decodingStyle", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setScanned",1032,G__DataSourceDict_580_0_15, 121, -1, -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' scanned", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getTrbNetUnpacker",1736,G__DataSourceDict_580_0_16, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetUnpacker), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("decodeHeader",1197,(G__InterfaceMethod) NULL, 121, -1, -1, 0, 1, 1, 2, 0, "U 'HEventHeader' - 0 - dest", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setDump",738,G__DataSourceDict_580_0_18, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_580_0_19, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_580_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_580_0_21, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_580_0_22, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_580_0_26, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_580_0_27, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_580_0_28, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_580_0_29, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_580_0_30, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldSource::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HldSource", 1031, G__DataSourceDict_580_0_31, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_580_0_32, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HldSource), -1, 1, 1, 1, 1, 0, "u 'HldSource' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHldFileOutput(void) { /* HldFileOutput */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput)); G__memfunc_setup("HldFileOutput",1321,(G__InterfaceMethod) NULL, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput), -1, 0, 0, 1, 2, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HldFileOutput",1321,G__DataSourceDict_581_0_2, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput), -1, 0, 4, 1, 1, 0, "U 'HldSource' - 0 - - C - 'Text_t' 10 - - " "C - 'Text_t' 10 - - C - 'Option_t' 10 '\"NEW\"' pOption", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setHldSource",1237,G__DataSourceDict_581_0_3, 121, -1, -1, 0, 1, 1, 1, 0, "U 'HldSource' - 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setDirectory",1281,G__DataSourceDict_581_0_4, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Text_t' 10 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setFileSuffix",1345,G__DataSourceDict_581_0_5, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Text_t' 10 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setFileOption",1349,G__DataSourceDict_581_0_6, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Option_t' 10 '\"NEW\"' pOption", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("open",434,G__DataSourceDict_581_0_7, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "C - 'Text_t' 10 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("close",534,G__DataSourceDict_581_0_8, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("writeEvent",1069,G__DataSourceDict_581_0_9, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNumTotalEvt",1443,G__DataSourceDict_581_0_10, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNumFilteredEvt",1742,G__DataSourceDict_581_0_11, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_581_0_12, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldFileOutput::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_581_0_13, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileOutput::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_581_0_14, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldFileOutput::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_581_0_15, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldFileOutput::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_581_0_19, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_581_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileOutput::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_581_0_21, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileOutput::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_581_0_22, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileOutput::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_581_0_23, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileOutput::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HldFileOutput", 1321, G__DataSourceDict_581_0_24, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput), -1, 0, 1, 1, 1, 0, "u 'HldFileOutput' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HldFileOutput", 1447, G__DataSourceDict_581_0_25, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_581_0_26, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HldFileOutput), -1, 1, 1, 1, 1, 0, "u 'HldFileOutput' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHldFileDesc(void) { /* HldFileDesc */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc)); G__memfunc_setup("HldFileDesc",1047,(G__InterfaceMethod) NULL, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc), -1, 0, 0, 1, 4, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HldFileDesc",1047,G__DataSourceDict_582_0_2, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc), -1, 0, 3, 1, 1, 0, "C - 'Text_t' 10 - name i - 'Int_t' 10 - runId " "i - 'Int_t' 10 '-1' refId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("GetName",673,(G__InterfaceMethod) NULL,67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 9, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getRunId",802,G__DataSourceDict_582_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getRefId",778,G__DataSourceDict_582_0_5, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setRefId",790,G__DataSourceDict_582_0_6, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - r", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_582_0_7, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldFileDesc::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_582_0_8, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileDesc::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_582_0_9, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldFileDesc::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_582_0_10, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldFileDesc::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_582_0_14, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_582_0_15, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileDesc::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_582_0_16, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileDesc::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_582_0_17, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileDesc::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_582_0_18, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileDesc::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HldFileDesc", 1047, G__DataSourceDict_582_0_19, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc), -1, 0, 1, 1, 1, 0, "u 'HldFileDesc' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HldFileDesc", 1173, G__DataSourceDict_582_0_20, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_582_0_21, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HldFileDesc), -1, 1, 1, 1, 1, 0, "u 'HldFileDesc' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHldFileSourceBase(void) { /* HldFileSourceBase */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSourceBase)); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("rewind",649,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("setMaxEventPerFile",1819,G__DataSourceDict_583_0_5, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getNextFile",1119,G__DataSourceDict_583_0_7, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("getCurrentRunId",1541,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRefId",1517,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getListOfFiles",1412,G__DataSourceDict_583_0_10, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TList), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getRunId",802,G__DataSourceDict_583_0_11, 105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "C - 'Text_t' 10 - fileName", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("getCurrentFileName",1828,(G__InterfaceMethod) NULL,67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("addFile",681,G__DataSourceDict_583_0_13, 121, -1, -1, 0, 2, 1, 1, 0, "C - 'Text_t' 10 - fileName C - 'Text_t' 10 - refFile", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addFile",681,G__DataSourceDict_583_0_14, 121, -1, -1, 0, 2, 1, 1, 0, "C - 'Text_t' 10 - fileName i - 'Int_t' 0 '-1' refId", (char*)NULL, (void*) NULL, 3); G__memfunc_setup("setDirectory",1281,G__DataSourceDict_583_0_15, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Text_t' 10 - direc", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_583_0_16, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldFileSourceBase::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_583_0_17, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileSourceBase::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_583_0_18, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldFileSourceBase::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_583_0_19, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldFileSourceBase::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_583_0_23, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_583_0_24, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileSourceBase::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_583_0_25, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileSourceBase::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_583_0_26, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileSourceBase::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_583_0_27, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileSourceBase::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HldFileSourceBase", 1794, G__DataSourceDict_583_0_28, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); G__tag_memfunc_reset(); } static void G__setup_memfuncHldFileSource(void) { /* HldFileSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource)); G__memfunc_setup("HldFileSource",1289,G__DataSourceDict_584_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HldFileSource",1289,G__DataSourceDict_584_0_2, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldFileSource), -1, 0, 1, 1, 1, 0, "u 'HldFileSource' - 1 - so", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("rewind",649,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setMaxEventPerFile",1819,G__DataSourceDict_584_0_4, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getNextFile",1119,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getRunId",802,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "C - 'Text_t' 10 - fileName", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("addFile",681,(G__InterfaceMethod) NULL,121, -1, -1, 0, 2, 1, 1, 0, "C - 'Text_t' 10 - fileName i - 'Int_t' 0 '-1' refId", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Class",502,G__DataSourceDict_584_0_9, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldFileSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_584_0_10, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_584_0_11, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldFileSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_584_0_12, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldFileSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_584_0_16, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_584_0_17, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_584_0_18, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_584_0_19, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldFileSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_584_0_20, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldFileSource::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HldFileSource", 1415, G__DataSourceDict_584_0_21, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); G__tag_memfunc_reset(); } static void G__setup_memfuncHKineGeantReader(void) { /* HKineGeantReader */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader)); G__memfunc_setup("HKineGeantReader",1553,G__DataSourceDict_588_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("execute",755,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getGeantKineCat",1486,G__DataSourceDict_588_0_4, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HLinearCategory), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getGeantKine",1206,G__DataSourceDict_588_0_5, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HGeantKine), -1, 0, 1, 1, 1, 0, "u 'HLocation' - 0 - locate", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_588_0_6, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HKineGeantReader::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_588_0_7, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HKineGeantReader::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_588_0_8, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HKineGeantReader::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_588_0_9, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HKineGeantReader::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_588_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_588_0_14, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HKineGeantReader::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_588_0_15, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HKineGeantReader::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_588_0_16, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HKineGeantReader::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_588_0_17, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HKineGeantReader::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HKineGeantReader", 1553, G__DataSourceDict_588_0_18, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader), -1, 0, 1, 1, 1, 0, "u 'HKineGeantReader' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HKineGeantReader", 1679, G__DataSourceDict_588_0_19, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_588_0_20, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HKineGeantReader), -1, 1, 1, 1, 1, 0, "u 'HKineGeantReader' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHSimulGeantReader(void) { /* HSimulGeantReader */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader)); G__memfunc_setup("HSimulGeantReader",1684,G__DataSourceDict_589_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("execute",755,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Class",502,G__DataSourceDict_589_0_4, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HSimulGeantReader::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_589_0_5, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HSimulGeantReader::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_589_0_6, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HSimulGeantReader::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_589_0_7, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HSimulGeantReader::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_589_0_11, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_589_0_12, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HSimulGeantReader::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_589_0_13, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HSimulGeantReader::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_589_0_14, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HSimulGeantReader::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_589_0_15, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HSimulGeantReader::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HSimulGeantReader", 1684, G__DataSourceDict_589_0_16, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader), -1, 0, 1, 1, 1, 0, "u 'HSimulGeantReader' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HSimulGeantReader", 1810, G__DataSourceDict_589_0_17, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_589_0_18, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HSimulGeantReader), -1, 1, 1, 1, 1, 0, "u 'HSimulGeantReader' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHDirectSource(void) { /* HDirectSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HDirectSource)); G__memfunc_setup("addGeantReader",1387,G__DataSourceDict_590_0_3, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "U 'HGeantReader' - 0 - r", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,G__DataSourceDict_590_0_4, 105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("finalize",850,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setCurrentRunId",1553,G__DataSourceDict_590_0_7, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - Id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCurrentRunId",1541,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRefId",1517,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentFileName",1828,(G__InterfaceMethod) NULL,67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Class",502,G__DataSourceDict_590_0_11, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HDirectSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_590_0_12, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HDirectSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_590_0_13, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HDirectSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_590_0_14, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HDirectSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_590_0_18, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_590_0_19, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HDirectSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_590_0_20, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HDirectSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_590_0_21, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HDirectSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_590_0_22, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HDirectSource::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HDirectSource", 1426, G__DataSourceDict_590_0_23, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); G__tag_memfunc_reset(); } static void G__setup_memfuncHldRemoteSource(void) { /* HldRemoteSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource)); G__memfunc_setup("HldRemoteSource",1525,G__DataSourceDict_591_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HldRemoteSource",1525,G__DataSourceDict_591_0_2, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource), -1, 0, 1, 1, 1, 0, "C - 'Text_t' 10 - nodeName", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRunId",1541,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentRefId",1517,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setRefId",790,G__DataSourceDict_591_0_6, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - r", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getCurrentFileName",1828,(G__InterfaceMethod) NULL,67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getNodeName",1095,G__DataSourceDict_591_0_9, 67, -1, G__defined_typename("Text_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_591_0_10, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldRemoteSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_591_0_11, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldRemoteSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_591_0_12, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldRemoteSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_591_0_13, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldRemoteSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_591_0_17, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_591_0_18, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldRemoteSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_591_0_19, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldRemoteSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_591_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldRemoteSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_591_0_21, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldRemoteSource::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HldRemoteSource", 1525, G__DataSourceDict_591_0_22, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource), -1, 0, 1, 1, 1, 0, "u 'HldRemoteSource' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HldRemoteSource", 1651, G__DataSourceDict_591_0_23, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_591_0_24, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HldRemoteSource), -1, 1, 1, 1, 1, 0, "u 'HldRemoteSource' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHldGrepFileSource(void) { /* HldGrepFileSource */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource)); G__memfunc_setup("getNewFile",1002,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 2, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("checkDir",797,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 1, 1, 2, 0, "u 'TString' - 0 - dir", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("decodeOption",1245,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 1, 1, 2, 0, "u 'TString' - 0 - opt", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("selectFiles",1139,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 1, 3, 2, 0, "U 'dirent' - 10 - entry", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("loopForNewFile",1419,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 2, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HldGrepFileSource",1687,G__DataSourceDict_594_0_6, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HldGrepFileSource), -1, 0, 6, 1, 1, 0, "u 'TString' - 0 '\"\"' dir u 'TString' - 0 '\"Grep\"' opt " "i - 'Int_t' 0 '5' grepInterval i - 'Int_t' 0 '-1' refId " "i - 'Int_t' 0 '5' off i - 'Int_t' 0 '1' fileoffset", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNextEvent",1249,(G__InterfaceMethod) NULL,105, G__get_linked_tagnum(&G__DataSourceDictLN_EDsState), -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' doUnpack", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getRunId",802,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "C - 'Text_t' 10 - fileName", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setMaxEventPerFile",1819,G__DataSourceDict_594_0_9, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setRefId",790,G__DataSourceDict_594_0_10, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 '-1' id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("stop",454,G__DataSourceDict_594_0_11, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addFile",681,(G__InterfaceMethod) NULL,121, -1, -1, 0, 2, 1, 1, 0, "C - 'Text_t' 10 - fileName i - 'Int_t' 0 '-1' refId", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getNextFile",1119,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("rewind",649,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Class",502,G__DataSourceDict_594_0_15, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HldGrepFileSource::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_594_0_16, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldGrepFileSource::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_594_0_17, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HldGrepFileSource::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_594_0_18, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HldGrepFileSource::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_594_0_22, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_594_0_23, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldGrepFileSource::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_594_0_24, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldGrepFileSource::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_594_0_25, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HldGrepFileSource::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_594_0_26, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HldGrepFileSource::DeclFileLine) ), 0); // automatic destructor G__memfunc_setup("~HldGrepFileSource", 1813, G__DataSourceDict_594_0_27, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbLookup(void) { /* HTrbLookup */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup)); G__memfunc_setup("HTrbLookup",1002,G__DataSourceDict_595_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup), -1, 0, 5, 1, 1, 0, "C - 'Char_t' 10 '\"TrbLookup\"' name C - 'Char_t' 10 '\"Lookup table for TRB unpacker\"' title " "C - 'Char_t' 10 '\"TrbLookupProduction\"' context i - 'Int_t' 0 '800' minSubeventId " "i - 'Int_t' 0 '100' nBoards", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getBoard",808,G__DataSourceDict_595_0_2, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - subeventId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("operator[]",1060,G__DataSourceDict_595_0_3, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - i", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSize",731,G__DataSourceDict_595_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getArrayOffset",1446,G__DataSourceDict_595_0_5, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "U 'HParIo' - 0 - input I - 'Int_t' 0 - set", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("write",555,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "U 'HParIo' - 0 - output", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("clear",519,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("printParam",1054,G__DataSourceDict_595_0_9, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill",423,G__DataSourceDict_595_0_10, 103, -1, G__defined_typename("Bool_t"), 0, 8, 1, 1, 0, "i - 'Int_t' 0 - - i - 'Int_t' 0 - - " "c - 'Char_t' 0 - - i - 'Int_t' 0 - - " "i - 'Int_t' 0 - - i - 'Int_t' 0 - - " "c - 'Char_t' 0 - - i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("readline",836,G__DataSourceDict_595_0_11, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "C - 'Char_t' 10 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("putAsciiHeader",1419,G__DataSourceDict_595_0_12, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TString' - 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("write",555,G__DataSourceDict_595_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "u 'basic_fstream<char,char_traits<char> >' 'fstream' 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_595_0_14, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbLookup::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_595_0_15, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookup::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_595_0_16, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbLookup::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_595_0_17, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbLookup::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_595_0_21, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_595_0_22, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookup::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_595_0_23, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbLookup::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_595_0_24, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookup::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_595_0_25, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbLookup::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrbLookup", 1002, G__DataSourceDict_595_0_26, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup), -1, 0, 1, 1, 1, 0, "u 'HTrbLookup' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrbLookup", 1128, G__DataSourceDict_595_0_27, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_595_0_28, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookup), -1, 1, 1, 1, 1, 0, "u 'HTrbLookup' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbBaseUnpacker(void) { /* HTrbBaseUnpacker */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker)); G__memfunc_setup("HTrbBaseUnpacker",1572,(G__InterfaceMethod) NULL, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker), -1, 0, 1, 1, 2, 0, "h - 'UInt_t' 0 '0' id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSubEvtId",1094,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getTrbDataVer",1295,G__DataSourceDict_596_0_3, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("execute",755,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("decode",612,G__DataSourceDict_596_0_6, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctOverflow",1606,G__DataSourceDict_596_0_7, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctRefTimeCh31",1709,G__DataSourceDict_596_0_8, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctRefTimeCh127",1763,G__DataSourceDict_596_0_9, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("clearAll",800,G__DataSourceDict_596_0_10, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setQuietMode",1241,G__DataSourceDict_596_0_11, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setReportCritical",1779,G__DataSourceDict_596_0_12, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setDebugFlag",1197,G__DataSourceDict_596_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - db", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getDebugFlag",1185,G__DataSourceDict_596_0_14, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("PrintTdcError",1330,G__DataSourceDict_596_0_15, 121, -1, -1, 0, 2, 1, 1, 0, "h - 'UInt_t' 0 - e h - 'UInt_t' 0 - trbId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill_trail",1058,G__DataSourceDict_596_0_16, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "i - 'Int_t' 0 - ch i - 'Int_t' 0 - d", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill_lead",924,G__DataSourceDict_596_0_17, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "i - 'Int_t' 0 - ch i - 'Int_t' 0 - d", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill_pair",946,G__DataSourceDict_596_0_18, 103, -1, G__defined_typename("Bool_t"), 0, 3, 1, 1, 0, "i - 'Int_t' 0 - ch i - 'Int_t' 0 - time " "i - 'Int_t' 0 - length", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_596_0_19, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbBaseUnpacker::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_596_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbBaseUnpacker::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_596_0_21, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbBaseUnpacker::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_596_0_22, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbBaseUnpacker::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_596_0_26, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_596_0_27, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbBaseUnpacker::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_596_0_28, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbBaseUnpacker::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_596_0_29, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbBaseUnpacker::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_596_0_30, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbBaseUnpacker::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrbBaseUnpacker", 1572, G__DataSourceDict_596_0_31, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker), -1, 0, 1, 1, 1, 0, "u 'HTrbBaseUnpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_596_0_32, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbBaseUnpacker), -1, 1, 1, 1, 1, 0, "u 'HTrbBaseUnpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb2Correction(void) { /* HTrb2Correction */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction)); G__memfunc_setup("HTrb2Correction",1466,G__DataSourceDict_597_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction), -1, 0, 1, 1, 1, 0, "C - 'Char_t' 10 '\"\"' temperatureSensor", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNChannels",1210,G__DataSourceDict_597_0_2, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHighResolutionFlag",2158,G__DataSourceDict_597_0_3, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isHighResolution",1680,G__DataSourceDict_597_0_4, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getBoardType",1226,G__DataSourceDict_597_0_5, 67, -1, G__defined_typename("Char_t"), 0, 0, 1, 1, 1, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSubeventId",1337,G__DataSourceDict_597_0_6, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNValuesPerChannel",2014,G__DataSourceDict_597_0_7, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSize",731,G__DataSourceDict_597_0_8, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCorrection",1368,G__DataSourceDict_597_0_9, 102, -1, G__defined_typename("Float_t"), 0, 2, 1, 1, 0, "i - 'Int_t' 0 - - i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setBoardType",1238,G__DataSourceDict_597_0_10, 121, -1, -1, 0, 1, 1, 1, 0, "C - 'Char_t' 10 - t", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setHighResolutionFlag",2170,G__DataSourceDict_597_0_11, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - f", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setSubeventId",1349,G__DataSourceDict_597_0_12, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - i", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("makeArray",925,G__DataSourceDict_597_0_13, 70, -1, G__defined_typename("Float_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("deleteArray",1138,G__DataSourceDict_597_0_14, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setCorrection",1380,G__DataSourceDict_597_0_15, 121, -1, -1, 0, 3, 1, 1, 0, "i - 'Int_t' 0 - c i - 'Int_t' 0 - i " "f - 'Float_t' 0 - v", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fillArray",934,G__DataSourceDict_597_0_16, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "F - 'Float_t' 0 - - i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clearArray",1030,G__DataSourceDict_597_0_17, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("print",557,G__DataSourceDict_597_0_18, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("write",555,G__DataSourceDict_597_0_19, 121, -1, -1, 0, 1, 1, 1, 0, "u 'basic_fstream<char,char_traits<char> >' 'fstream' 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("compare",743,G__DataSourceDict_597_0_20, 102, -1, G__defined_typename("Float_t"), 0, 1, 1, 1, 0, "u 'HTrb2Correction' - 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCorrections",1483,G__DataSourceDict_597_0_21, 70, -1, G__defined_typename("Float_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_597_0_22, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrb2Correction::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_597_0_23, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb2Correction::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_597_0_24, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrb2Correction::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_597_0_25, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrb2Correction::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_597_0_29, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_597_0_30, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb2Correction::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_597_0_31, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb2Correction::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_597_0_32, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb2Correction::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_597_0_33, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb2Correction::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrb2Correction", 1466, G__DataSourceDict_597_0_34, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction), -1, 0, 1, 1, 1, 0, "u 'HTrb2Correction' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrb2Correction", 1592, G__DataSourceDict_597_0_35, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbnetAddressMapping(void) { /* HTrbnetAddressMapping */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping)); G__memfunc_setup("HTrbnetAddressMapping",2121,G__DataSourceDict_598_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping), -1, 0, 5, 1, 1, 0, "C - 'Char_t' 10 '\"TrbnetAddressMapping\"' name C - 'Char_t' 10 '\"Mapping of trbnet addresses to boards\"' title " "C - 'Char_t' 10 '\"Trb2Production\"' context i - 'Int_t' 0 'Trbnet::kTrb2MinTrbnetAddress' minTrbnetAddress " "i - 'Int_t' 0 'Trbnet::kTrb2MaxTrbnetAddress' maxTrbnetAddress", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getBoard",808,G__DataSourceDict_598_0_2, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - trbnetAddress", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getBoard",808,G__DataSourceDict_598_0_3, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction), -1, 0, 1, 1, 1, 0, "C - 'Char_t' 10 - temperaturSensor", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("operator[]",1060,G__DataSourceDict_598_0_4, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - i", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSize",731,G__DataSourceDict_598_0_5, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getArrayOffset",1446,G__DataSourceDict_598_0_6, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "U 'HParIo' - 0 - input I - 'Int_t' 0 - set", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("write",555,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "U 'HParIo' - 0 - output", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("clear",519,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("printParam",1054,G__DataSourceDict_598_0_10, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addBoard",785,G__DataSourceDict_598_0_11, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Correction), -1, 0, 5, 1, 1, 0, "i - 'Int_t' 0 - - C - 'Char_t' 10 - - " "C - 'Char_t' 10 - - i - 'Int_t' 0 - - " "i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("readline",836,G__DataSourceDict_598_0_12, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "C - 'Char_t' 10 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("putAsciiHeader",1419,G__DataSourceDict_598_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TString' - 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("write",555,G__DataSourceDict_598_0_14, 121, -1, -1, 0, 1, 1, 1, 0, "u 'basic_fstream<char,char_traits<char> >' 'fstream' 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_598_0_15, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbnetAddressMapping::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_598_0_16, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbnetAddressMapping::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_598_0_17, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbnetAddressMapping::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_598_0_18, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbnetAddressMapping::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_598_0_22, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_598_0_23, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbnetAddressMapping::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_598_0_24, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbnetAddressMapping::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_598_0_25, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbnetAddressMapping::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_598_0_26, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbnetAddressMapping::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrbnetAddressMapping", 2121, G__DataSourceDict_598_0_27, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping), -1, 0, 1, 1, 1, 0, "u 'HTrbnetAddressMapping' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrbnetAddressMapping", 2247, G__DataSourceDict_598_0_28, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_598_0_29, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbnetAddressMapping), -1, 1, 1, 1, 1, 0, "u 'HTrbnetAddressMapping' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb2Unpacker(void) { /* HTrb2Unpacker */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker)); G__memfunc_setup("HTrb2Unpacker",1243,(G__InterfaceMethod) NULL, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker), -1, 0, 1, 1, 2, 0, "h - 'UInt_t' 0 '0' id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSubEvtId",1094,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("getTrbDataVer",1295,G__DataSourceDict_599_0_3, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("execute",755,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("decode",612,G__DataSourceDict_599_0_6, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctOverflow",1606,G__DataSourceDict_599_0_7, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctRefTimeCh",1609,G__DataSourceDict_599_0_8, 105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctRefTimeCh31",1709,G__DataSourceDict_599_0_9, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctRefTimeCh127",1763,G__DataSourceDict_599_0_10, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("correctRefTimeStartDet23",2350,G__DataSourceDict_599_0_11, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("doINLCorrection",1486,G__DataSourceDict_599_0_12, 102, -1, G__defined_typename("Float_t"), 0, 2, 1, 1, 0, "i - 'Int_t' 0 - nTrbCh i - 'Int_t' 0 - nRawTime", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("clearAll",800,G__DataSourceDict_599_0_13, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setQuietMode",1241,G__DataSourceDict_599_0_14, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setReportCritical",1779,G__DataSourceDict_599_0_15, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setcorrectINL",1313,G__DataSourceDict_599_0_16, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setDebugFlag",1197,G__DataSourceDict_599_0_17, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - db", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getDebugFlag",1185,G__DataSourceDict_599_0_18, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("printTdcError",1362,G__DataSourceDict_599_0_19, 121, -1, -1, 0, 2, 1, 1, 0, "h - 'UInt_t' 0 - e h - 'UInt_t' 0 - trbId", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill_trail",1058,G__DataSourceDict_599_0_20, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "i - 'Int_t' 0 - ch f - 'Float_t' 0 - d", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill_lead",924,G__DataSourceDict_599_0_21, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "i - 'Int_t' 0 - ch f - 'Float_t' 0 - d", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill_pair",946,G__DataSourceDict_599_0_22, 103, -1, G__defined_typename("Bool_t"), 0, 3, 1, 1, 0, "i - 'Int_t' 0 - ch f - 'Float_t' 0 - time " "f - 'Float_t' 0 - length", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("tryRecover",1077,G__DataSourceDict_599_0_23, 121, -1, -1, 0, 2, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' trycase1 g - 'Bool_t' 0 'kTRUE' trycase2", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_599_0_24, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrb2Unpacker::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_599_0_25, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb2Unpacker::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_599_0_26, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrb2Unpacker::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_599_0_27, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrb2Unpacker::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_599_0_31, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_599_0_32, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb2Unpacker::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_599_0_33, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb2Unpacker::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_599_0_34, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb2Unpacker::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_599_0_35, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb2Unpacker::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrb2Unpacker", 1243, G__DataSourceDict_599_0_36, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker), -1, 0, 1, 1, 1, 0, "u 'HTrb2Unpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_599_0_37, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb2Unpacker), -1, 1, 1, 1, 1, 0, "u 'HTrb2Unpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb3Unpacker(void) { /* HTrb3Unpacker */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker)); G__memfunc_setup("HTrb3Unpacker",1244,(G__InterfaceMethod) NULL, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker), -1, 0, 1, 1, 2, 0, "h - 'UInt_t' 0 '0' id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSubEvtId",1094,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("setHUBId",728,G__DataSourceDict_600_0_3, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setCTSId",739,G__DataSourceDict_600_0_4, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - id", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setDebugFlag",1197,G__DataSourceDict_600_0_5, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - db", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getDebugFlag",1185,G__DataSourceDict_600_0_6, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setQuietMode",1241,G__DataSourceDict_600_0_7, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setReportCritical",1779,G__DataSourceDict_600_0_8, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isQuietMode",1129,G__DataSourceDict_600_0_9, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isReportCritical",1667,G__DataSourceDict_600_0_10, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("execute",755,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("reinit",651,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("createTDC",847,G__DataSourceDict_600_0_14, 121, -1, -1, 0, 2, 1, 1, 0, "h - 'UInt_t' 0 - id1 U 'HTrb3CalparTdc' - 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("addTDC",516,G__DataSourceDict_600_0_15, 121, -1, -1, 0, 1, 1, 1, 0, "U 'HTrb3TdcUnpacker' - 0 - tdc", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("numTDC",555,G__DataSourceDict_600_0_16, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getTDC",539,G__DataSourceDict_600_0_17, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker), -1, 0, 1, 1, 1, 8, "h - 'UInt_t' 0 - indx", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clearAll",800,(G__InterfaceMethod) NULL, 121, -1, -1, 0, 0, 1, 2, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("decode",612,(G__InterfaceMethod) NULL, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 2, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_600_0_20, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrb3Unpacker::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_600_0_21, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3Unpacker::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_600_0_22, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrb3Unpacker::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_600_0_23, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrb3Unpacker::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_600_0_27, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_600_0_28, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3Unpacker::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_600_0_29, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3Unpacker::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_600_0_30, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3Unpacker::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_600_0_31, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3Unpacker::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrb3Unpacker", 1244, G__DataSourceDict_600_0_32, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker), -1, 0, 1, 1, 1, 0, "u 'HTrb3Unpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_600_0_33, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Unpacker), -1, 1, 1, 1, 1, 0, "u 'HTrb3Unpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb3CalparTdc(void) { /* HTrb3CalparTdc */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc)); G__memfunc_setup("HTrb3CalparTdc",1297,G__DataSourceDict_601_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSubEvtId",1094,G__DataSourceDict_601_0_2, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getEdgesMask",1204,G__DataSourceDict_601_0_3, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNChannels",1210,G__DataSourceDict_601_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getNBinsPerChannel",1786,G__DataSourceDict_601_0_5, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getBinsPar",1007,G__DataSourceDict_601_0_6, 70, -1, G__defined_typename("Float_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getArraySize",1242,G__DataSourceDict_601_0_7, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getRisingArr",1233,G__DataSourceDict_601_0_8, 70, -1, G__defined_typename("Float_t"), 0, 1, 1, 1, 0, "i - 'Int_t' 0 - chan", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getFallingArr",1314,G__DataSourceDict_601_0_9, 70, -1, G__defined_typename("Float_t"), 0, 1, 1, 1, 0, "i - 'Int_t' 0 - chan", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getRisingPar",1231,G__DataSourceDict_601_0_10, 102, -1, G__defined_typename("Float_t"), 0, 2, 1, 1, 8, "i - 'Int_t' 0 - chan i - 'Int_t' 0 - bin", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getFallingPar",1312,G__DataSourceDict_601_0_11, 102, -1, G__defined_typename("Float_t"), 0, 2, 1, 1, 8, "i - 'Int_t' 0 - chan i - 'Int_t' 0 - bin", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clear",519,G__DataSourceDict_601_0_12, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("makeArray",925,G__DataSourceDict_601_0_13, 105, -1, G__defined_typename("Int_t"), 0, 4, 1, 1, 0, "i - 'Int_t' 0 - - i - 'Int_t' 0 - - " "i - 'Int_t' 0 - - i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fillArray",934,G__DataSourceDict_601_0_14, 103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "F - 'Float_t' 0 - - i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("loadFromBinaryFile",1817,G__DataSourceDict_601_0_15, 103, -1, G__defined_typename("Bool_t"), 0, 4, 1, 1, 0, "C - - 10 - filename i - 'Int_t' 0 - subevtid " "i - 'Int_t' 0 '600' numBins i - 'Int_t' 0 '1' nEdgesMask", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setSimpleFineCalibration",2464,G__DataSourceDict_601_0_16, 121, -1, -1, 0, 2, 1, 1, 0, "h - 'UInt_t' 0 - - h - 'UInt_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("print",557,G__DataSourceDict_601_0_17, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("write",555,G__DataSourceDict_601_0_18, 121, -1, -1, 0, 1, 1, 1, 0, "u 'basic_fstream<char,char_traits<char> >' 'fstream' 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_601_0_19, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrb3CalparTdc::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_601_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3CalparTdc::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_601_0_21, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrb3CalparTdc::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_601_0_22, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrb3CalparTdc::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_601_0_26, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_601_0_27, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3CalparTdc::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_601_0_28, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3CalparTdc::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_601_0_29, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3CalparTdc::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_601_0_30, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3CalparTdc::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrb3CalparTdc", 1297, G__DataSourceDict_601_0_31, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc), -1, 0, 1, 1, 1, 0, "u 'HTrb3CalparTdc' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrb3CalparTdc", 1423, G__DataSourceDict_601_0_32, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_601_0_33, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc), -1, 1, 1, 1, 1, 0, "u 'HTrb3CalparTdc' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb3TdcUnpacker(void) { /* HTrb3TdcUnpacker */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker)); G__memfunc_setup("isQuietMode",1129,(G__InterfaceMethod) NULL, 103, -1, G__defined_typename("Bool_t"), 0, 0, 1, 2, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSubEvtId",1094,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 2, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getEventSeqNumber",1748,(G__InterfaceMethod) NULL, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 2, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HTrb3TdcUnpacker",1527,G__DataSourceDict_602_0_4, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker), -1, 0, 2, 1, 1, 0, "h - 'UInt_t' 0 '0' id U 'HTrb3CalparTdc' - 0 '0' tdcpar", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getTrbAddr",995,G__DataSourceDict_602_0_5, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setParent",950,G__DataSourceDict_602_0_6, 121, -1, -1, 0, 1, 1, 1, 0, "U 'HTrb3Unpacker' - 0 - prnt", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("numChannels",1148,G__DataSourceDict_602_0_7, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCh",491,G__DataSourceDict_602_0_8, 117, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpackercLcLChannelRec), -1, 1, 1, 1, 1, 0, "h - - 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clearHits",927,G__DataSourceDict_602_0_9, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("scanTdcData",1082,G__DataSourceDict_602_0_10, 121, -1, -1, 0, 2, 1, 1, 0, "H - 'UInt_t' 0 - data h - 'UInt_t' 0 - datalen", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("correctRefTimeCh",1609,G__DataSourceDict_602_0_11, 103, -1, G__defined_typename("Bool_t"), 0, 1, 1, 1, 0, "h - 'UInt_t' 0 '0' ch", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_602_0_12, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrb3TdcUnpacker::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_602_0_13, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3TdcUnpacker::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_602_0_14, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrb3TdcUnpacker::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_602_0_15, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrb3TdcUnpacker::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_602_0_19, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_602_0_20, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3TdcUnpacker::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_602_0_21, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3TdcUnpacker::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_602_0_22, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3TdcUnpacker::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_602_0_23, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3TdcUnpacker::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrb3TdcUnpacker", 1527, G__DataSourceDict_602_0_24, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker), -1, 0, 1, 1, 1, 0, "u 'HTrb3TdcUnpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrb3TdcUnpacker", 1653, G__DataSourceDict_602_0_25, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_602_0_26, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcUnpacker), -1, 1, 1, 1, 1, 0, "u 'HTrb3TdcUnpacker' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb3Calpar(void) { /* HTrb3Calpar */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar)); G__memfunc_setup("HTrb3Calpar",1014,G__DataSourceDict_608_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar), -1, 0, 5, 1, 1, 0, "C - 'Char_t' 10 '\"\"' name C - 'Char_t' 10 '\"\"' title " "C - 'Char_t' 10 '\"\"' context i - 'Int_t' 0 '-1' minTrbnetAddress " "i - 'Int_t' 0 '-1' maxTrbnetAddress", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getTdc",603,G__DataSourceDict_608_0_2, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - trbnetAddress", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("operator[]",1060,G__DataSourceDict_608_0_3, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - i", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSize",731,G__DataSourceDict_608_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getArrayOffset",1446,G__DataSourceDict_608_0_5, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("init",436,(G__InterfaceMethod) NULL,103, -1, G__defined_typename("Bool_t"), 0, 2, 1, 1, 0, "U 'HParIo' - 0 - input I - 'Int_t' 0 - set", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("write",555,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 0, "U 'HParIo' - 0 - output", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("clear",519,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("addTdc",580,G__DataSourceDict_608_0_9, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3CalparTdc), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("printParam",1054,G__DataSourceDict_608_0_10, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("putAsciiHeader",1419,G__DataSourceDict_608_0_11, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TString' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("write",555,G__DataSourceDict_608_0_12, 121, -1, -1, 0, 1, 1, 1, 0, "u 'basic_fstream<char,char_traits<char> >' 'fstream' 1 - -", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("loadFromBinaryFiles",1932,G__DataSourceDict_608_0_13, 103, -1, G__defined_typename("Bool_t"), 0, 4, 1, 1, 0, "C - - 10 - basefname i - 'Int_t' 0 - subevtid " "i - 'Int_t' 0 '600' numBins i - 'Int_t' 0 '1' nEdgesMask", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_608_0_14, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrb3Calpar::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_608_0_15, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3Calpar::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_608_0_16, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrb3Calpar::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_608_0_17, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrb3Calpar::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_608_0_21, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_608_0_22, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3Calpar::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_608_0_23, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3Calpar::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_608_0_24, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrb3Calpar::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_608_0_25, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrb3Calpar::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrb3Calpar", 1014, G__DataSourceDict_608_0_26, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar), -1, 0, 1, 1, 1, 0, "u 'HTrb3Calpar' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrb3Calpar", 1140, G__DataSourceDict_608_0_27, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_608_0_28, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3Calpar), -1, 1, 1, 1, 1, 0, "u 'HTrb3Calpar' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb3TdcMessage(void) { /* HTrb3TdcMessage */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage)); G__memfunc_setup("HTrb3TdcMessage",1411,G__DataSourceDict_615_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("HTrb3TdcMessage",1411,G__DataSourceDict_615_0_2, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage), -1, 0, 1, 1, 1, 0, "h - 'uint32_t' 0 - d", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("assign",645,G__DataSourceDict_615_0_3, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'uint32_t' 0 - d", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getKind",710,G__DataSourceDict_615_0_4, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isHitMsg",808,G__DataSourceDict_615_0_5, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isEpochMsg",1010,G__DataSourceDict_615_0_6, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isDebugMsg",1002,G__DataSourceDict_615_0_7, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isHeaderMsg",1100,G__DataSourceDict_615_0_8, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isReservedMsg",1347,G__DataSourceDict_615_0_9, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getEpochValue",1324,G__DataSourceDict_615_0_10, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getEpochRes",1113,G__DataSourceDict_615_0_11, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHitChannel",1310,G__DataSourceDict_615_0_12, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHitTmCoarse",1411,G__DataSourceDict_615_0_13, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHitTmFine",1192,G__DataSourceDict_615_0_14, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHitTmStamp",1323,G__DataSourceDict_615_0_15, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHitEdge",986,G__DataSourceDict_615_0_16, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isHitRisingEdge",1506,G__DataSourceDict_615_0_17, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isHitFallingEdge",1587,G__DataSourceDict_615_0_18, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHitReserved",1445,G__DataSourceDict_615_0_19, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHeaderErr",1202,G__DataSourceDict_615_0_20, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getHeaderRes",1203,G__DataSourceDict_615_0_21, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("print",557,G__DataSourceDict_615_0_22, 121, -1, -1, 0, 1, 1, 1, 0, "d - - 0 '-1.' tm", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("coarseUnit",1053,G__DataSourceDict_615_0_23, 100, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (double (*)())(&HTrb3TdcMessage::coarseUnit) ), 0); G__memfunc_setup("simpleFineCalibr",1625,G__DataSourceDict_615_0_24, 100, -1, -1, 0, 1, 3, 1, 0, "h - - 0 - -", (char*)NULL, (void*) G__func2void( (double (*)(unsigned int))(&HTrb3TdcMessage::simpleFineCalibr) ), 0); G__memfunc_setup("setFineLimits",1344,G__DataSourceDict_615_0_25, 121, -1, -1, 0, 2, 3, 1, 0, "h - - 0 - - h - - 0 - -", (char*)NULL, (void*) G__func2void( (void (*)(unsigned int, unsigned int))(&HTrb3TdcMessage::setFineLimits) ), 0); // automatic copy constructor G__memfunc_setup("HTrb3TdcMessage", 1411, G__DataSourceDict_615_0_26, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage), -1, 0, 1, 1, 1, 0, "u 'HTrb3TdcMessage' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrb3TdcMessage", 1537, G__DataSourceDict_615_0_27, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 0); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_615_0_28, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage), -1, 1, 1, 1, 1, 0, "u 'HTrb3TdcMessage' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrb3TdcIterator(void) { /* HTrb3TdcIterator */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator)); G__memfunc_setup("HTrb3TdcIterator",1544,G__DataSourceDict_616_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("assign",645,G__DataSourceDict_616_0_2, 121, -1, -1, 0, 3, 1, 1, 0, "H - 'uint32_t' 0 - buf h - - 0 - - " "g - - 0 'true' swapped", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setRefEpoch",1112,G__DataSourceDict_616_0_3, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'uint32_t' 0 - epoch", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("next",447,G__DataSourceDict_616_0_4, 103, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getMsgStamp",1132,G__DataSourceDict_616_0_5, 109, -1, G__defined_typename("uint64_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getMsgTimeCoarse",1619,G__DataSourceDict_616_0_6, 100, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getMsgTimeFine",1400,G__DataSourceDict_616_0_7, 100, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("msg",327,G__DataSourceDict_616_0_8, 117, G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcMessage), -1, 1, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("isCurEpoch",1013,G__DataSourceDict_616_0_9, 103, -1, -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clearCurEpoch",1312,G__DataSourceDict_616_0_10, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCurEpoch",1113,G__DataSourceDict_616_0_11, 104, -1, G__defined_typename("uint32_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("printmsg",884,G__DataSourceDict_616_0_12, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); // automatic copy constructor G__memfunc_setup("HTrb3TdcIterator", 1544, G__DataSourceDict_616_0_13, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator), -1, 0, 1, 1, 1, 0, "u 'HTrb3TdcIterator' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrb3TdcIterator", 1670, G__DataSourceDict_616_0_14, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 0); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_616_0_15, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrb3TdcIterator), -1, 1, 1, 1, 1, 0, "u 'HTrb3TdcIterator' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbLookupChan(void) { /* HTrbLookupChan */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan)); G__memfunc_setup("HTrbLookupChan",1380,G__DataSourceDict_620_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getDetector",1146,G__DataSourceDict_620_0_2, 99, -1, G__defined_typename("Char_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSector",944,G__DataSourceDict_620_0_3, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getModule",934,G__DataSourceDict_620_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getCell",704,G__DataSourceDict_620_0_5, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSide",709,G__DataSourceDict_620_0_6, 99, -1, G__defined_typename("Char_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getFeAddress",1201,G__DataSourceDict_620_0_7, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getAddress",1030,G__DataSourceDict_620_0_8, 121, -1, -1, 0, 6, 1, 1, 0, "c - 'Char_t' 1 - d i - 'Int_t' 1 - s " "i - 'Int_t' 1 - m i - 'Int_t' 1 - c " "c - 'Char_t' 1 - t i - 'Int_t' 1 - f", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill",423,G__DataSourceDict_620_0_9, 121, -1, -1, 0, 6, 1, 1, 0, "c - 'Char_t' 0 - d i - 'Int_t' 0 - s " "i - 'Int_t' 0 - m i - 'Int_t' 0 - c " "c - 'Char_t' 0 - t i - 'Int_t' 0 - f", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("fill",423,G__DataSourceDict_620_0_10, 121, -1, -1, 0, 1, 1, 1, 0, "u 'HTrbLookupChan' - 1 - r", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setDetector",1158,G__DataSourceDict_620_0_11, 121, -1, -1, 0, 1, 1, 1, 0, "c - 'Char_t' 0 - c", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setSector",956,G__DataSourceDict_620_0_12, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 10 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setModule",946,G__DataSourceDict_620_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 10 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setCell",716,G__DataSourceDict_620_0_14, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 10 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setSide",721,G__DataSourceDict_620_0_15, 121, -1, -1, 0, 1, 1, 1, 0, "c - 'Char_t' 0 - c", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setFeAddress",1213,G__DataSourceDict_620_0_16, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 10 - n", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clear",519,G__DataSourceDict_620_0_17, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_620_0_18, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbLookupChan::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_620_0_19, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookupChan::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_620_0_20, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbLookupChan::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_620_0_21, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbLookupChan::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_620_0_25, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_620_0_26, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookupChan::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_620_0_27, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbLookupChan::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_620_0_28, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookupChan::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_620_0_29, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbLookupChan::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrbLookupChan", 1380, G__DataSourceDict_620_0_30, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan), -1, 0, 1, 1, 1, 0, "u 'HTrbLookupChan' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrbLookupChan", 1506, G__DataSourceDict_620_0_31, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_620_0_32, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan), -1, 1, 1, 1, 1, 0, "u 'HTrbLookupChan' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbLookupBoard(void) { /* HTrbLookupBoard */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard)); G__memfunc_setup("HTrbLookupBoard",1490,G__DataSourceDict_621_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getChannel",1017,G__DataSourceDict_621_0_2, 85, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - c", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("operator[]",1060,G__DataSourceDict_621_0_3, 117, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupChan), -1, 1, 1, 1, 1, 0, "i - 'Int_t' 0 - i", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getSize",731,G__DataSourceDict_621_0_4, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("clear",519,G__DataSourceDict_621_0_5, 121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_621_0_6, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbLookupBoard::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_621_0_7, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookupBoard::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_621_0_8, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbLookupBoard::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_621_0_9, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbLookupBoard::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_621_0_13, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_621_0_14, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookupBoard::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_621_0_15, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbLookupBoard::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_621_0_16, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbLookupBoard::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_621_0_17, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbLookupBoard::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrbLookupBoard", 1490, G__DataSourceDict_621_0_18, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard), -1, 0, 1, 1, 1, 0, "u 'HTrbLookupBoard' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrbLookupBoard", 1616, G__DataSourceDict_621_0_19, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_621_0_20, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbLookupBoard), -1, 1, 1, 1, 1, 0, "u 'HTrbLookupBoard' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } static void G__setup_memfuncTrbnet(void) { /* Trbnet */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_Trbnet)); G__tag_memfunc_reset(); } static void G__setup_memfuncHTrbNetDebugInfo(void) { /* HTrbNetDebugInfo */ G__tag_memfunc_setup(G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo)); G__memfunc_setup("HTrbNetDebugInfo",1546,G__DataSourceDict_626_0_1, 105, G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getAddress",1030,G__DataSourceDict_626_0_2, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getStatusWord",1376,G__DataSourceDict_626_0_3, 104, -1, G__defined_typename("UInt_t"), 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("getStatusBit",1251,G__DataSourceDict_626_0_4, 104, -1, G__defined_typename("UInt_t"), 0, 1, 1, 1, 0, "c - - 0 - bit", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setAddress",1042,G__DataSourceDict_626_0_5, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - addr", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("setStatus",976,G__DataSourceDict_626_0_6, 121, -1, -1, 0, 1, 1, 1, 0, "h - 'UInt_t' 0 - val", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("Class",502,G__DataSourceDict_626_0_7, 85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&HTrbNetDebugInfo::Class) ), 0); G__memfunc_setup("Class_Name",982,G__DataSourceDict_626_0_8, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbNetDebugInfo::Class_Name) ), 0); G__memfunc_setup("Class_Version",1339,G__DataSourceDict_626_0_9, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&HTrbNetDebugInfo::Class_Version) ), 0); G__memfunc_setup("Dictionary",1046,G__DataSourceDict_626_0_10, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&HTrbNetDebugInfo::Dictionary) ), 0); G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__DataSourceDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1); G__memfunc_setup("StreamerNVirtual",1656,G__DataSourceDict_626_0_14, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0); G__memfunc_setup("DeclFileName",1145,G__DataSourceDict_626_0_15, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbNetDebugInfo::DeclFileName) ), 0); G__memfunc_setup("ImplFileLine",1178,G__DataSourceDict_626_0_16, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbNetDebugInfo::ImplFileLine) ), 0); G__memfunc_setup("ImplFileName",1171,G__DataSourceDict_626_0_17, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&HTrbNetDebugInfo::ImplFileName) ), 0); G__memfunc_setup("DeclFileLine",1152,G__DataSourceDict_626_0_18, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&HTrbNetDebugInfo::DeclFileLine) ), 0); // automatic copy constructor G__memfunc_setup("HTrbNetDebugInfo", 1546, G__DataSourceDict_626_0_19, (int) ('i'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo), -1, 0, 1, 1, 1, 0, "u 'HTrbNetDebugInfo' - 11 - -", (char*) NULL, (void*) NULL, 0); // automatic destructor G__memfunc_setup("~HTrbNetDebugInfo", 1672, G__DataSourceDict_626_0_20, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1); // automatic assignment operator G__memfunc_setup("operator=", 937, G__DataSourceDict_626_0_21, (int) ('u'), G__get_linked_tagnum(&G__DataSourceDictLN_HTrbNetDebugInfo), -1, 1, 1, 1, 1, 0, "u 'HTrbNetDebugInfo' - 11 - -", (char*) NULL, (void*) NULL, 0); G__tag_memfunc_reset(); } /********************************************************* * Member function information setup *********************************************************/ extern "C" void G__cpp_setup_memfuncDataSourceDict() { } /********************************************************* * Global variable information setup for each class *********************************************************/ static void G__cpp_setup_global0() { /* Setting up global variables */ G__resetplocal(); } static void G__cpp_setup_global1() { } static void G__cpp_setup_global2() { } static void G__cpp_setup_global3() { G__resetglobalenv(); } extern "C" void G__cpp_setup_globalDataSourceDict() { G__cpp_setup_global0(); G__cpp_setup_global1(); G__cpp_setup_global2(); G__cpp_setup_global3(); } /********************************************************* * Global function information setup for each class *********************************************************/ static void G__cpp_setup_func0() { G__lastifuncposition(); } static void G__cpp_setup_func1() { } static void G__cpp_setup_func2() { } static void G__cpp_setup_func3() { } static void G__cpp_setup_func4() { } static void G__cpp_setup_func5() { } static void G__cpp_setup_func6() { } static void G__cpp_setup_func7() { } static void G__cpp_setup_func8() { } static void G__cpp_setup_func9() { } static void G__cpp_setup_func10() { } static void G__cpp_setup_func11() { } static void G__cpp_setup_func12() { } static void G__cpp_setup_func13() { } static void G__cpp_setup_func14() { } static void G__cpp_setup_func15() { } static void G__cpp_setup_func16() { } static void G__cpp_setup_func17() { } static void G__cpp_setup_func18() { } static void G__cpp_setup_func19() { } static void G__cpp_setup_func20() { } static void G__cpp_setup_func21() { } static void G__cpp_setup_func22() { } static void G__cpp_setup_func23() { } static void G__cpp_setup_func24() { } static void G__cpp_setup_func25() { } static void G__cpp_setup_func26() { } static void G__cpp_setup_func27() { } static void G__cpp_setup_func28() { } static void G__cpp_setup_func29() { G__resetifuncposition(); } extern "C" void G__cpp_setup_funcDataSourceDict() { G__cpp_setup_func0(); G__cpp_setup_func1(); G__cpp_setup_func2(); G__cpp_setup_func3(); G__cpp_setup_func4(); G__cpp_setup_func5(); G__cpp_setup_func6(); G__cpp_setup_func7(); G__cpp_setup_func8(); G__cpp_setup_func9(); G__cpp_setup_func10(); G__cpp_setup_func11(); G__cpp_setup_func12(); G__cpp_setup_func13(); G__cpp_setup_func14(); G__cpp_setup_func15(); G__cpp_setup_func16(); G__cpp_setup_func17(); G__cpp_setup_func18(); G__cpp_setup_func19(); G__cpp_setup_func20(); G__cpp_setup_func21(); G__cpp_setup_func22(); G__cpp_setup_func23(); G__cpp_setup_func24(); G__cpp_setup_func25(); G__cpp_setup_func26(); G__cpp_setup_func27(); G__cpp_setup_func28(); G__cpp_setup_func29(); } /********************************************************* * Class,struct,union,enum tag information setup *********************************************************/ /* Setup class/struct taginfo */ G__linked_taginfo G__DataSourceDictLN_TClass = { "TClass" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TBuffer = { "TBuffer" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TMemberInspector = { "TMemberInspector" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TObject = { "TObject" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TNamed = { "TNamed" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TString = { "TString" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_basic_ofstreamlEcharcOchar_traitslEchargRsPgR = { "basic_ofstream<char,char_traits<char> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_basic_fstreamlEcharcOchar_traitslEchargRsPgR = { "basic_fstream<char,char_traits<char> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR = { "vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR = { "reverse_iterator<vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >::iterator>" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TList = { "TList" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TObjArray = { "TObjArray" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR = { "vector<TVirtualArray*,allocator<TVirtualArray*> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TVirtualArray*,allocator<TVirtualArray*> >::iterator>" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HEvent = { "HEvent" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_EDsState = { "EDsState" , 101 , -1 }; G__linked_taginfo G__DataSourceDictLN_HDataSource = { "HDataSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TIterator = { "TIterator" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR = { "iterator<bidirectional_iterator_tag,TObject*,long,const TObject**,const TObject*&>" , 115 , -1 }; G__linked_taginfo G__DataSourceDictLN_TFile = { "TFile" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_THashTable = { "THashTable" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TStopwatch = { "TStopwatch" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HGeantReader = { "HGeantReader" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HGeantSource = { "HGeantSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TTree = { "TTree" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR = { "map<int,int,less<int>,allocator<pair<const int,int> > >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR = { "map<string,TObjArray*,less<string>,allocator<pair<const string,TObjArray*> > >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TEventList = { "TEventList" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TChain = { "TChain" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HRootSource = { "HRootSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HLocation = { "HLocation" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HCategory = { "HCategory" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HEventHeader = { "HEventHeader" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HRecEvent = { "HRecEvent" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HGeantMergeSource = { "HGeantMergeSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR = { "vector<HParallelEvent*,allocator<HParallelEvent*> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_reverse_iteratorlEvectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<HParallelEvent*,allocator<HParallelEvent*> >::iterator>" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldSubEvt = { "HldSubEvt" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbNetUnpacker = { "HTrbNetUnpacker" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldUnpack = { "HldUnpack" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldEvt = { "HldEvt" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_dirent = { "dirent" , 115 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldSource = { "HldSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldFileOutput = { "HldFileOutput" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldFileDesc = { "HldFileDesc" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldFileSourceBase = { "HldFileSourceBase" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldFileSource = { "HldFileSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HLinearCategory = { "HLinearCategory" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HGeantKine = { "HGeantKine" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HKineGeantReader = { "HKineGeantReader" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HSimulGeantReader = { "HSimulGeantReader" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HDirectSource = { "HDirectSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldRemoteSource = { "HldRemoteSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HldGrepFileSource = { "HldGrepFileSource" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbLookup = { "HTrbLookup" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbBaseUnpacker = { "HTrbBaseUnpacker" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb2Correction = { "HTrb2Correction" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbnetAddressMapping = { "HTrbnetAddressMapping" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb2Unpacker = { "HTrb2Unpacker" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3Unpacker = { "HTrb3Unpacker" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3CalparTdc = { "HTrb3CalparTdc" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3TdcUnpacker = { "HTrb3TdcUnpacker" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3TdcUnpackercLcLChannelRec = { "HTrb3TdcUnpacker::ChannelRec" , 115 , -1 }; G__linked_taginfo G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR = { "vector<HTrb3TdcUnpacker::ChannelRec,allocator<HTrb3TdcUnpacker::ChannelRec> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<HTrb3TdcUnpacker::ChannelRec,allocator<HTrb3TdcUnpacker::ChannelRec> >::iterator>" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3Calpar = { "HTrb3Calpar" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR = { "vector<HTrb3TdcUnpacker*,allocator<HTrb3TdcUnpacker*> >" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<HTrb3TdcUnpacker*,allocator<HTrb3TdcUnpacker*> >::iterator>" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3TdcMessage = { "HTrb3TdcMessage" , 115 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3TdcIterator = { "HTrb3TdcIterator" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrb3TdcIteratorcLcLdA = { "HTrb3TdcIterator::$" , 101 , -1 }; G__linked_taginfo G__DataSourceDictLN_HParIo = { "HParIo" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HParSet = { "HParSet" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbLookupChan = { "HTrbLookupChan" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbLookupBoard = { "HTrbLookupBoard" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_TArrayF = { "TArrayF" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_Trbnet = { "Trbnet" , 110 , -1 }; G__linked_taginfo G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange = { "Trbnet::eTrbnetAddressRange" , 101 , -1 }; G__linked_taginfo G__DataSourceDictLN_HRuntimeDb = { "HRuntimeDb" , 99 , -1 }; G__linked_taginfo G__DataSourceDictLN_HTrbNetDebugInfo = { "HTrbNetDebugInfo" , 99 , -1 }; /* Reset class/struct taginfo */ extern "C" void G__cpp_reset_tagtableDataSourceDict() { G__DataSourceDictLN_TClass.tagnum = -1 ; G__DataSourceDictLN_TBuffer.tagnum = -1 ; G__DataSourceDictLN_TMemberInspector.tagnum = -1 ; G__DataSourceDictLN_TObject.tagnum = -1 ; G__DataSourceDictLN_TNamed.tagnum = -1 ; G__DataSourceDictLN_TString.tagnum = -1 ; G__DataSourceDictLN_basic_ofstreamlEcharcOchar_traitslEchargRsPgR.tagnum = -1 ; G__DataSourceDictLN_basic_fstreamlEcharcOchar_traitslEchargRsPgR.tagnum = -1 ; G__DataSourceDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR.tagnum = -1 ; G__DataSourceDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR.tagnum = -1 ; G__DataSourceDictLN_TList.tagnum = -1 ; G__DataSourceDictLN_TObjArray.tagnum = -1 ; G__DataSourceDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR.tagnum = -1 ; G__DataSourceDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR.tagnum = -1 ; G__DataSourceDictLN_HEvent.tagnum = -1 ; G__DataSourceDictLN_EDsState.tagnum = -1 ; G__DataSourceDictLN_HDataSource.tagnum = -1 ; G__DataSourceDictLN_TIterator.tagnum = -1 ; G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR.tagnum = -1 ; G__DataSourceDictLN_TFile.tagnum = -1 ; G__DataSourceDictLN_THashTable.tagnum = -1 ; G__DataSourceDictLN_TStopwatch.tagnum = -1 ; G__DataSourceDictLN_HGeantReader.tagnum = -1 ; G__DataSourceDictLN_HGeantSource.tagnum = -1 ; G__DataSourceDictLN_TTree.tagnum = -1 ; G__DataSourceDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR.tagnum = -1 ; G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR.tagnum = -1 ; G__DataSourceDictLN_TEventList.tagnum = -1 ; G__DataSourceDictLN_TChain.tagnum = -1 ; G__DataSourceDictLN_HRootSource.tagnum = -1 ; G__DataSourceDictLN_HLocation.tagnum = -1 ; G__DataSourceDictLN_HCategory.tagnum = -1 ; G__DataSourceDictLN_HEventHeader.tagnum = -1 ; G__DataSourceDictLN_HRecEvent.tagnum = -1 ; G__DataSourceDictLN_HGeantMergeSource.tagnum = -1 ; G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR.tagnum = -1 ; G__DataSourceDictLN_reverse_iteratorlEvectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgRcLcLiteratorgR.tagnum = -1 ; G__DataSourceDictLN_HldSubEvt.tagnum = -1 ; G__DataSourceDictLN_HTrbNetUnpacker.tagnum = -1 ; G__DataSourceDictLN_HldUnpack.tagnum = -1 ; G__DataSourceDictLN_HldEvt.tagnum = -1 ; G__DataSourceDictLN_dirent.tagnum = -1 ; G__DataSourceDictLN_HldSource.tagnum = -1 ; G__DataSourceDictLN_HldFileOutput.tagnum = -1 ; G__DataSourceDictLN_HldFileDesc.tagnum = -1 ; G__DataSourceDictLN_HldFileSourceBase.tagnum = -1 ; G__DataSourceDictLN_HldFileSource.tagnum = -1 ; G__DataSourceDictLN_HLinearCategory.tagnum = -1 ; G__DataSourceDictLN_HGeantKine.tagnum = -1 ; G__DataSourceDictLN_HKineGeantReader.tagnum = -1 ; G__DataSourceDictLN_HSimulGeantReader.tagnum = -1 ; G__DataSourceDictLN_HDirectSource.tagnum = -1 ; G__DataSourceDictLN_HldRemoteSource.tagnum = -1 ; G__DataSourceDictLN_HldGrepFileSource.tagnum = -1 ; G__DataSourceDictLN_HTrbLookup.tagnum = -1 ; G__DataSourceDictLN_HTrbBaseUnpacker.tagnum = -1 ; G__DataSourceDictLN_HTrb2Correction.tagnum = -1 ; G__DataSourceDictLN_HTrbnetAddressMapping.tagnum = -1 ; G__DataSourceDictLN_HTrb2Unpacker.tagnum = -1 ; G__DataSourceDictLN_HTrb3Unpacker.tagnum = -1 ; G__DataSourceDictLN_HTrb3CalparTdc.tagnum = -1 ; G__DataSourceDictLN_HTrb3TdcUnpacker.tagnum = -1 ; G__DataSourceDictLN_HTrb3TdcUnpackercLcLChannelRec.tagnum = -1 ; G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR.tagnum = -1 ; G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgRcLcLiteratorgR.tagnum = -1 ; G__DataSourceDictLN_HTrb3Calpar.tagnum = -1 ; G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR.tagnum = -1 ; G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgRcLcLiteratorgR.tagnum = -1 ; G__DataSourceDictLN_HTrb3TdcMessage.tagnum = -1 ; G__DataSourceDictLN_HTrb3TdcIterator.tagnum = -1 ; G__DataSourceDictLN_HTrb3TdcIteratorcLcLdA.tagnum = -1 ; G__DataSourceDictLN_HParIo.tagnum = -1 ; G__DataSourceDictLN_HParSet.tagnum = -1 ; G__DataSourceDictLN_HTrbLookupChan.tagnum = -1 ; G__DataSourceDictLN_HTrbLookupBoard.tagnum = -1 ; G__DataSourceDictLN_TArrayF.tagnum = -1 ; G__DataSourceDictLN_Trbnet.tagnum = -1 ; G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange.tagnum = -1 ; G__DataSourceDictLN_HRuntimeDb.tagnum = -1 ; G__DataSourceDictLN_HTrbNetDebugInfo.tagnum = -1 ; } extern "C" void G__cpp_setup_tagtableDataSourceDict() { /* Setting up class,struct,union tag entry */ G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TClass); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TBuffer); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TMemberInspector); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TObject); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TNamed); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TString); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_basic_ofstreamlEcharcOchar_traitslEchargRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_basic_fstreamlEcharcOchar_traitslEchargRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TList); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TObjArray); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HEvent); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_EDsState); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HDataSource),sizeof(HDataSource),-1,28936,"Event's input data manager.",G__setup_memvarHDataSource,G__setup_memfuncHDataSource); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TIterator); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TFile); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_THashTable); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TStopwatch); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HGeantReader),sizeof(HGeantReader),-1,29952,"Base class for the different GEANT readers",G__setup_memvarHGeantReader,G__setup_memfuncHGeantReader); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HGeantSource),sizeof(HGeantSource),-1,30466,"Data source to read GEANT ouput",G__setup_memvarHGeantSource,G__setup_memfuncHGeantSource); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TTree); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_maplEstringcOTObjArraymUcOlesslEstringgRcOallocatorlEpairlEconstsPstringcOTObjArraymUgRsPgRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TEventList); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TChain); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HRootSource),sizeof(HRootSource),-1,29952,"Data source to read Root files.",G__setup_memvarHRootSource,G__setup_memfuncHRootSource); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HLocation); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HCategory); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HEventHeader); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HRecEvent); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HGeantMergeSource),sizeof(HGeantMergeSource),-1,29952,"Data source to read Root files.",G__setup_memvarHGeantMergeSource,G__setup_memfuncHGeantMergeSource); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_vectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHParallelEventmUcOallocatorlEHParallelEventmUgRsPgRcLcLiteratorgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldSubEvt); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbNetUnpacker),sizeof(HTrbNetUnpacker),-1,30464,(char*)NULL,G__setup_memvarHTrbNetUnpacker,G__setup_memfuncHTrbNetUnpacker); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldUnpack),sizeof(HldUnpack),-1,29954,"base class for the raw data unpackers",G__setup_memvarHldUnpack,G__setup_memfuncHldUnpack); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldEvt); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_dirent); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldSource),sizeof(HldSource),-1,29957,"Data source to read LMD data",G__setup_memvarHldSource,G__setup_memfuncHldSource); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldFileOutput),sizeof(HldFileOutput),-1,62720,"! Writes LMD files;",G__setup_memvarHldFileOutput,G__setup_memfuncHldFileOutput); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldFileDesc),sizeof(HldFileDesc),-1,62720,"File descriptor for Hld source",G__setup_memvarHldFileDesc,G__setup_memfuncHldFileDesc); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldFileSourceBase),sizeof(HldFileSourceBase),-1,30468,"! Data source to read HLD files;",G__setup_memvarHldFileSourceBase,G__setup_memfuncHldFileSourceBase); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldFileSource),sizeof(HldFileSource),-1,30464,"! Data source to read LMD files;",G__setup_memvarHldFileSource,G__setup_memfuncHldFileSource); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HLinearCategory); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HGeantKine); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HKineGeantReader),sizeof(HKineGeantReader),-1,29952,"KINE reader for HGeant root file",G__setup_memvarHKineGeantReader,G__setup_memfuncHKineGeantReader); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HSimulGeantReader),sizeof(HSimulGeantReader),-1,29952,"Simul reader for HGeant root file",G__setup_memvarHSimulGeantReader,G__setup_memfuncHSimulGeantReader); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HDirectSource),sizeof(HDirectSource),-1,30467,"Data source to operate under HGeant control",G__setup_memvarHDirectSource,G__setup_memfuncHDirectSource); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldRemoteSource),sizeof(HldRemoteSource),-1,62720,"Data source to read rpc buffers;",G__setup_memvarHldRemoteSource,G__setup_memfuncHldRemoteSource); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HldGrepFileSource),sizeof(HldGrepFileSource),-1,29952,"! Data source to read LMD files;",G__setup_memvarHldGrepFileSource,G__setup_memfuncHldGrepFileSource); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbLookup),sizeof(HTrbLookup),-1,62720,"Lookup table for the TRB unpacker",G__setup_memvarHTrbLookup,G__setup_memfuncHTrbLookup); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbBaseUnpacker),sizeof(HTrbBaseUnpacker),-1,29952,"Base class for TRB unpacker",G__setup_memvarHTrbBaseUnpacker,G__setup_memfuncHTrbBaseUnpacker); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb2Correction),sizeof(HTrb2Correction),-1,62720,"Correction table for the tdc channels of one TRB board",G__setup_memvarHTrb2Correction,G__setup_memfuncHTrb2Correction); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbnetAddressMapping),sizeof(HTrbnetAddressMapping),-1,62720,"Mapping of trbnet addresses to boards",G__setup_memvarHTrbnetAddressMapping,G__setup_memfuncHTrbnetAddressMapping); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb2Unpacker),sizeof(HTrb2Unpacker),-1,29952,"Base class for TRB2 unpackers",G__setup_memvarHTrb2Unpacker,G__setup_memfuncHTrb2Unpacker); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3Unpacker),sizeof(HTrb3Unpacker),-1,29952,"Base class for TRB3 unpackers",G__setup_memvarHTrb3Unpacker,G__setup_memfuncHTrb3Unpacker); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3CalparTdc),sizeof(HTrb3CalparTdc),-1,29952,"TDC level of the TRB3 TDC calibration parameters",G__setup_memvarHTrb3CalparTdc,G__setup_memfuncHTrb3CalparTdc); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3TdcUnpacker),sizeof(HTrb3TdcUnpacker),-1,29952,"Unpacker for TRB3 FPGA TDC",G__setup_memvarHTrb3TdcUnpacker,G__setup_memfuncHTrb3TdcUnpacker); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3TdcUnpackercLcLChannelRec); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackercLcLChannelReccOallocatorlEHTrb3TdcUnpackercLcLChannelRecgRsPgRcLcLiteratorgR); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3Calpar),sizeof(HTrb3Calpar),-1,62720,"Base class for the TRB3 TDC calibration parameters",G__setup_memvarHTrb3Calpar,G__setup_memfuncHTrb3Calpar); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_vectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgR); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_reverse_iteratorlEvectorlEHTrb3TdcUnpackermUcOallocatorlEHTrb3TdcUnpackermUgRsPgRcLcLiteratorgR); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3TdcMessage),sizeof(HTrb3TdcMessage),-1,33024,(char*)NULL,G__setup_memvarHTrb3TdcMessage,G__setup_memfuncHTrb3TdcMessage); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3TdcIterator),sizeof(HTrb3TdcIterator),-1,256,(char*)NULL,G__setup_memvarHTrb3TdcIterator,G__setup_memfuncHTrb3TdcIterator); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrb3TdcIteratorcLcLdA); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HParIo); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HParSet); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbLookupChan),sizeof(HTrbLookupChan),-1,95488,"Channel level of the lookup table for the TRB unpacker",G__setup_memvarHTrbLookupChan,G__setup_memfuncHTrbLookupChan); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbLookupBoard),sizeof(HTrbLookupBoard),-1,29952,"Board level of the lookup table for the TRB unpacker",G__setup_memvarHTrbLookupBoard,G__setup_memfuncHTrbLookupBoard); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TArrayF); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_Trbnet),0,-1,0,(char*)NULL,G__setup_memvarTrbnet,G__setup_memfuncTrbnet); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_TrbnetcLcLeTrbnetAddressRange),sizeof(int),-1,0,(char*)NULL,NULL,NULL); G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HRuntimeDb); G__tagtable_setup(G__get_linked_tagnum_fwd(&G__DataSourceDictLN_HTrbNetDebugInfo),sizeof(HTrbNetDebugInfo),-1,29952,(char*)NULL,G__setup_memvarHTrbNetDebugInfo,G__setup_memfuncHTrbNetDebugInfo); } extern "C" void G__cpp_setupDataSourceDict(void) { G__check_setup_version(30051515,"G__cpp_setupDataSourceDict()"); G__set_cpp_environmentDataSourceDict(); G__cpp_setup_tagtableDataSourceDict(); G__cpp_setup_inheritanceDataSourceDict(); G__cpp_setup_typetableDataSourceDict(); G__cpp_setup_memvarDataSourceDict(); G__cpp_setup_memfuncDataSourceDict(); G__cpp_setup_globalDataSourceDict(); G__cpp_setup_funcDataSourceDict(); if(0==G__getsizep2memfunc()) G__get_sizep2memfuncDataSourceDict(); return; } class G__cpp_setup_initDataSourceDict { public: G__cpp_setup_initDataSourceDict() { G__add_setup_func("DataSourceDict",(G__incsetup)(&G__cpp_setupDataSourceDict)); G__call_setup_funcs(); } ~G__cpp_setup_initDataSourceDict() { G__remove_setup_func("DataSourceDict"); } }; G__cpp_setup_initDataSourceDict G__cpp_setup_initializerDataSourceDict;
[ "lsilvamiguel@gmail.com" ]
lsilvamiguel@gmail.com
b5209fa05451bc138a52eabf63e7a3f1a2137860
469d127c666e5cf84b949f41344341e374001fa9
/1_White_Belt/Students_list/Students_list.cpp
129af59b3770588a7feb09989373ae50bf7cf7e8
[]
no_license
Namerlok/C_plus_plus_Development
c10537368b9c24ffc9f486726f6e71f389a80599
c2ba2db4167086e6c9e9ace49daeacaf026a78c4
refs/heads/master
2021-12-11T16:01:55.754034
2021-08-09T20:41:17
2021-08-09T20:41:17
219,206,824
1
0
null
null
null
null
UTF-8
C++
false
false
995
cpp
#include <iostream> #include <string> #include <vector> using namespace std; /* struct person { string first_name; string second_name; long long int day; long long int month; long long int year; }; */ struct person { string name; string birthday; }; int main () { int n = 0; cin >> n; vector<person> people; string first_name, second_name, day, month, year; for (int i = 0; i < n; i++) { cin >> first_name >> second_name >> day >> month >> year; people.push_back (person{first_name + " " + second_name, day + "." + month + "." + year}); } string command = ""; int number_st = 0; int m = 0; cin >> m; for (int i = 0; i < m; i++) { cin >> command >> number_st; number_st--; if (command == "name" && number_st >= 0 && number_st < n) { cout << people[number_st].name << endl; } else if (command == "date" && number_st >= 0 && number_st < n) { cout << people[number_st].birthday << endl; } else { cout << "bad request" << endl; } } return 0; }
[ "Namerlok@yandex.ru" ]
Namerlok@yandex.ru
79bf706c48e6e2285276b9db1feef119ce5a7fa0
078bc6208f4921008423a7c0a0e107c5d88ab103
/ps/src/petuum_ps/server/ssp_push_server_thread.hpp
9e866a7f6ad7e77bf7c96b7a7007b3ce126610bf
[ "BSD-2-Clause", "LicenseRef-scancode-generic-cla" ]
permissive
XinYao1994/pmls-caffe
1c6d43601e91421c6eb20c6f9de98156e5d60eed
e5f44229cbb1475e4c8d839cce73cad83af398a0
refs/heads/master
2020-04-14T07:35:19.679100
2019-03-26T07:46:23
2019-03-26T07:46:23
163,716,653
0
0
NOASSERTION
2019-01-01T06:05:52
2019-01-01T06:05:51
null
UTF-8
C++
false
false
746
hpp
#pragma once #include <petuum_ps/server/server_thread.hpp> namespace petuum { class SSPPushServerThread : public ServerThread { public: SSPPushServerThread(int32_t my_id, pthread_barrier_t *init_barrier): ServerThread(my_id, init_barrier) { } ~SSPPushServerThread() { } protected: virtual void ServerPushRow(); static void SendServerPushRowMsg (int32_t bg_id, ServerPushRowMsg *msg, bool last_msg, int32_t version, int32_t server_min_clock, MsgTracker *msg_tracker); virtual void RowSubscribe(ServerRow *server_row, int32_t client_id); void HandleBgServerPushRowAck( int32_t bg_id, uint64_t ack_seq); }; }
[ "zhisbug@gmail.com" ]
zhisbug@gmail.com
dcf74ecf98e153581c15262bc2235aef27519093
89a4255327209c02ea98d0cceb5b2d5171769e9e
/progtech/week07/penna/src/lib/animal.hpp
8766b7d7cd5985c23634194ae37837d0c2030f6f
[]
no_license
greschd/exercises
4c2f24941c81ded7fe4c0afed6d5e19bc5b99460
a82f7cfc93958608c2d9d295a86712e5a15860af
refs/heads/master
2021-06-22T08:33:37.532767
2017-01-30T09:30:44
2017-01-30T09:30:44
30,702,283
0
0
null
null
null
null
UTF-8
C++
false
false
1,104
hpp
#ifndef ANIMAL_HPP #define ANIMAL_HPP #include <genome.hpp> namespace Penna { /* * Animal having a genome and age. */ class Animal { public: static const age_type maximum_age = Genome::number_of_genes; static void set_bad_threshold( age_type t ); static void set_maturity_age( age_type r ); // Default constructor: Uses all good genome. Animal(); // Constructor using a given genome. Animal( const Genome& gen ); bool is_dead() const; // the first gene is evaluated at age 0, not 1 bool is_mature() const; age_type age() const; // Make the animal grow older by one year. void grow(); // Create a baby animal inheriting its genome from this except for some random mutations. Animal give_birth() const; private: // Number of bad genes an animal can tolerate. Parameter T in Penna's paper. (Standard: 0) static age_type bad_threshold_; // Maturity age. Parameter R in Penna's paper. (Standard: 0) static age_type maturity_age_; Genome gen_; age_type age_; }; } // end namespace Penna #endif // !defined ANIMAL_HPP
[ "greschd@stud.phys.ethz.ch" ]
greschd@stud.phys.ethz.ch
46f122493172b3ecf714d70283bda0531d1ea2af
b9161adaea3c7f23d4d47d3dd8642bd33c6aaa17
/GameMain.cpp
f197cc402b6489bac9d9eacab35e6676b4681405
[]
no_license
hohoho3661/Study1129
db6ffd193c4aa05e7e90674ed22746ba637e7ca8
6936465d09da9f8b2122fa5c75384c12de951008
refs/heads/master
2020-04-08T19:00:13.505456
2018-11-29T08:43:08
2018-11-29T08:43:08
159,634,490
0
0
null
null
null
null
UTF-8
C++
false
false
728
cpp
#include "GameSys.h" #include "User.h" #include "Scene.h" #include "Texture.h" #include "GameMain.h" #include "PaintTestScene.h" #include "VertexBufferTest.h" #include "WVPTest.h" #include "SRTTest.h" #include "TextureTest.h" #include "TextureTest1.h" #include "SolarSystem.h" GameMain::GameMain() { } GameMain::~GameMain() { ReleaseAll(); } void GameMain::Init(HWND hWnd) { GameBase::Init(hWnd); pScene = new SolarSystem; pScene->Init(); } void GameMain::Update() { pScene->Update(); } void GameMain::Render() { pScene->Render(); } void GameMain::ReleaseAll() { GameBase::ReleaseAll(); SafeDelete(pScene); INPUT->Release(); Texture::ReleaseInstance(); } void GameMain::ResetAll() { GameBase::ResetAll(); }
[ "alknium@gmail.com" ]
alknium@gmail.com
7d5f0e63b7fed0bd9c3b671d02c388251bdf5cba
1adcd86fbb950d946db15183258349996644fa85
/src/classes.h
8584b58780ffd45ff99584ae8e15b1c3f55cc9ab
[]
no_license
QJohn2017/mithra
bbcf0969bb84f138acd6b89ed779ac062a83b5c5
e1c5017bf6e205a4b51900f235f51d6b8f5da0b4
refs/heads/master
2022-12-25T04:13:08.705075
2020-09-18T08:37:13
2020-09-18T08:37:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,652
h
/******************************************************************************************************** * classes.hh : Implementation of the classes used in mithra ********************************************************************************************************/ #ifndef CLASSES_H_ #define CLASSES_H_ #include <list> #include "database.h" #include "fieldvector.h" #include "stdinclude.h" namespace MITHRA { /* Structure containing all the parsed parameters for mesh. */ struct Mesh { /* The parsed data related to the mesh (ls). */ Double lengthScale_; /* Coordinate of the center for the computational domain (x0, y0, z0). */ FieldVector<Double> meshCenter_; /* Length of the mesh box in the three dimensions (lx, ly, lz). */ FieldVector<Double> meshLength_; /* Mesh resolution in the three dimensions (dx, dy, dz). */ FieldVector<Double> meshResolution_; /* The parsed data related to the time marching scheme. */ Double timeScale_; Double timeStep_; Double totalTime_; Double totalDist_; /* Truncation order for the finite difference mesh. It can be either one or two. */ unsigned int truncationOrder_; /* Boolean flag returning the status of space charge assumption. */ bool spaceCharge_; /* Boolean that determines whether to shift the bunch in the initial setup. */ bool optimizePosition_; /* Initial shift in time with respect to the standard initial conditions. */ Double timeShift_; /* Solver type that will be used to update the field values. */ SolverType solver_; /* Show the stored values for the mesh. */ void show (); /* Initialize the parameters in the mesh initializer. */ void initialize (); }; /* Bunch class includes the data for the bunch properties and the functions for initializing the * bunches and also evaluating the bunch properties. */ class Bunch { public: typedef std::list <Charge> ChargeVector; /* The constructor clears and initializes the internal data structure. */ Bunch (); /* Initialize a bunch with a manual type. This bunch produces one charge equal to the cloudCharge_. */ void initializeManual (BunchInitialize bunchInit, ChargeVector & chargeVector, Double (zp) [2], int rank, int size, int ia); /* Initialize a bunch with an ellipsoid type in the lab frame. This bunch produces a number of * charges equal to the numberOfParticles_ with the total charge equal to the cloudCharge_ which are * distributed in an ellipsoid with dimensions given by sigmaPosition_ and center given by the * position vector. The particles have uniform energy distribution centered at initialEnergy_ with * variances determined by sigmaGammaBeta_. */ void initializeEllipsoid (BunchInitialize bunchInit, ChargeVector & chargeVector, int rank, int size, int ia); /* Initialize a bunch with a 3D-crystal type. This bunch produces a number of charges equal * to the numberOfParticles_ with the total charge equal to the cloudCharge_ which are arranged in a * 3D crystal. The number of particles in each direction is given by numbers_. Therefore, * numberOfParticles_ should be a multiple of the product of all these three numbers. The ratio gives * the number of particles in each crystal point. Position of each particle is determined by the * lattice constants and the crystal is centered at the position_ vector. At each point, the charges * have a small Gaussian distribution around the crsytal. */ void initialize3DCrystal (BunchInitialize bunchInit, ChargeVector & chargeVector, Double (zp) [2], int rank, int size, int ia); /* Initialize a bunch with a file type. This bunch produces a number of charges read from a given file. * The number of initialized charge is equal to the vertical length of the table in the text file. The * file format should contain the charge value, 3 position coordinates and 3 momentum coordinates of * of the charge distribution. */ void initializeFile (BunchInitialize bunchInit, ChargeVector & chargeVector, Double (zp) [2], int rank, int size, int ia); /****************************************************************************************************/ /* The data containing the bunch initialization parameters. */ std::vector<BunchInitialize> bunchInit_; /* The directory parsed for the whole project. */ std::string directory_; /* Base name for writing the outputs of the electron acceleration analysis. */ std::string basename_; /* Boolean variable that determines if the bunch sampling should be done or not. */ bool sampling_; /* Store the time step for updating the electron motion. */ Double timeStep_; /* Rhythm of writing the bunch macroscopic values in the output file. */ Double rhythm_; /* Boolean parameter that determines if the vtk visualization should be done. */ bool bunchVTK_; /* The directory in which the bunch vtk files should be saved. */ std::string bunchVTKDirectory_; /* Name of the files in which the vtk visualization should be saved. */ std::string bunchVTKBasename_; /* Rhythm of producing the vtk files. It should be double value bigger than the time step. */ Double bunchVTKRhythm_; /* Boolean parameter that determines if the bunch profile should be saved. */ bool bunchProfile_; /* The directory in which the bunch profile should be saved. */ std::string bunchProfileDirectory_; /* Name of the files in which the bunch profile should be saved. */ std::string bunchProfileBasename_; /* Vector of time points at which the bunch profile should be saved. */ std::vector<Double> bunchProfileTime_; /* Rhythm of saving the bunch profile. It should be a double value bigger than the time step. */ Double bunchProfileRhythm_; /* Position of the undulator begin at the instance of bunch initialization. */ Double zu_; /* Beta of the moving frame in the stationary lab frame. */ Double beta_; /* Show the stored values for the bunch. */ void show (); }; /* Define the main signal class. */ class Signal { public: /* Initialize the values of the parameters. */ Signal (); /* Initializer with signal type, time offset, variance, frequency and carrier-envelope-phase. */ void initialize (std::string type, Double l0, Double s, Double l, Double cep); public: /* Store type of the signal. */ SignalType signalType_; /* Time offset of the signal. */ Double t0_; /* Variance of the signal. Variance is defined according to the point where the intensity of the * signal, i.e. signal squared is half of the maximum. */ Double s_; /* Frequency of the modulation. */ Double f0_; /* Carrier envelope phase of the modulation. */ Double cep_; /* Provide the signal at time t. */ Double self (Double& t, Double& phase); /* Show the stored values for this signal. */ void show (); }; /* Define the main seed class. */ class Seed { public: Seed (); void initialize (std::string type, std::vector<Double> position, std::vector<Double> direction, std::vector<Double> polarization, Double amplitude, std::vector<Double> radius, std::vector<int> order, Signal signal); /* Store data required for visualizing the radiated field in all-domain. */ struct vtk { bool sample_; std::vector <FieldType> field_; std::string directory_; SamplingType type_; std::string basename_; Double rhythm_; PlaneType plane_; FieldVector <Double> position_; /* Initialize the data-base for field visualization. */ vtk (); }; public: /* Store type of the seed. */ SeedType seedType_; /* Speed of light value in terms of the given length-scale and time-scale. */ Double c0_; /* Store reference position of the seed. For waves, it is a reference position and for * hertzian dipole, it is the position of the dipole. */ FieldVector<Double> position_; /* Store the direction of the seed. For waves, it is the propagation direction and for a * hertzian dipole, it is the direction of the dipole. */ FieldVector<Double> direction_; /* Store the polarization of the wave in the seed. */ FieldVector<Double> polarization_; /* Store the amplitude of the seed. */ Double amplitude_; /* Store the normalized amplitude of the seed. */ Double a0_; /* Store the Rayleigh radius of the Gaussian beam in the parallel and perpendicular directions. */ std::vector<Double> radius_; /* Store the signal class for this seed. */ Signal signal_; /* Order of the super-gaussian beam. */ std::vector<int> order_; /* Wavelength of the optical undulator. */ Double l_; /* Rayleigh lengths of the optical undulator excitation. */ std::vector<Double> zR_; /* Parameters for Lorentz transformation. */ Double beta_; Double gamma_; Double dt_; /* Store all the required variables in the computations. */ Double gamma; Double tsignal; Double d, l, zRp, wrp, zRs, wrs, x, y, x0, y0, z, p, t; FieldVector<Double> rv, yv, ax, az; FieldVector<Double> rl; Double tl; public: /* Return the potentials at any desired location and time. */ void fields (FieldVector <Double> & aufpunkt, Double & time, FieldVector <Double> & a); /* Store the data required for sampling the radiated field in a point. */ bool sampling_; SamplingType samplingType_; std::vector<FieldType> samplingField_; std::string samplingDirectory_; std::string samplingBasename_; Double samplingRhythm_; std::vector<FieldVector<Double> > samplingPosition_; FieldVector<Double> samplingLineBegin_; FieldVector<Double> samplingLineEnd_; FieldVector<Double> samplingSurfaceBegin_; FieldVector<Double> samplingSurfaceEnd_; unsigned int samplingRes_; std::vector <vtk> vtk_; /* Store data required for writing the profile of the field in all-domain. */ bool profile_; std::vector<FieldType> profileField_; std::string profileDirectory_; std::string profileBasename_; std::vector<Double> profileTime_; Double profileRhythm_; /* Set the sampling type of the seed. */ SamplingType samplingType (std::string samplingType); /* Set the sampling type of the seed. */ SamplingType vtkType (std::string vtkType); /* Set the plane type for vtk in plane visualization. */ PlaneType planeType (std::string planeType); /* Set the field sampling type of the seed. */ FieldType fieldType (std::string fieldType); /* Show the stored values for this signal. */ void show (); }; /* Define the structure containing the main parameters for the undulator. */ class Undulator { public: Undulator (); /* The magnetic field of the undulator. */ Double k_; /* The period of the static undulator. */ Double lu_; /* The start position of the undulator. */ Double rb_; /* The length of the undulator. */ unsigned int length_; /* The initial distance between the bunch head and the undulator begin. */ Double dist_; /* The normalized velocity and the equivalent gamma of the undulator movement. */ Double beta_; Double gamma_; Double dt_; /* Angle of the undulator polarization with respect to x axis. */ Double theta_; /* Type of the undulator, it can be an optical or a static undulator. */ UndulatorType type_; /* Store type of the seed. */ SeedType seedType_; /* Speed of light value in terms of the given length-scale and time-scale. */ Double c0_; /* Store reference position of the seed. For waves, it is a reference position and for * hertzian dipole, it is the position of the dipole. */ FieldVector<Double> position_; /* Store the direction of the seed. For waves, it is the propagation direction and for a * hertzian dipole, it is the direction of the dipole. */ FieldVector<Double> direction_; /* Store the polarization of the wave in the seed. */ FieldVector<Double> polarization_; /* Store the amplitude of the seed. */ Double amplitude_; /* Store the normalized amplitude of the seed. */ Double a0_; /* Store the Rayleigh radius of the Gaussian beam in the parallel and perpendicular directions. */ std::vector<Double> radius_; /* Store the signal class for this seed. */ Signal signal_; /* Order of the super-gaussian beam. */ std::vector<int> order_; /* Wavelength of the optical undulator. */ Double l_; /* Rayleigh lengths of the optical undulator excitation. */ std::vector<Double> zR_; /* Set the type of the undulator. */ UndulatorType undulatorType (std::string undulatorType); /* Initialize the data of the undulator according to the input parameters. */ void initialize (std::string type, std::vector<Double> position, std::vector<Double> direction, std::vector<Double> polarization, Double amplitude, std::vector<Double> radius, Double wavelength, std::vector<int> order, Signal signal); /* Show the stored values for the undulator. */ void show (); }; class ExtField { public: ExtField(); /* Type of the external field, it can be an EM-wave or a cavity field. */ ExtFieldType type_; /* Store type of the seed. */ SeedType seedType_; /* Speed of light value in terms of the given length-scale and time-scale. */ Double c0_; /* Store reference position of the seed. For waves, it is a reference position and for hertzian * dipole, it is the position of the dipole. */ FieldVector<Double> position_; /* Store the direction of the seed. For waves, it is the propagation direction and for hertzian * dipole, it is the direction of the dipole. */ FieldVector<Double> direction_; /* Store the polarization of the wave in the seed. */ FieldVector<Double> polarization_; /* Store the amplitude of the seed. */ Double amplitude_; /* Store the normalized amplitude of the seed. */ Double a0_; /* Store the Rayleigh radius of the Gaussian beam in the parallel and perpendicular directions. */ std::vector<Double> radius_; /* Store the signal class for this seed. */ Signal signal_; /* Order of the super-gaussian beam. */ std::vector<int> order_; /* Wavelength of the external field. */ Double l_; /* Rayleigh lengths of the external excitation. */ std::vector<Double> zR_; /* Initialize the data of the undulator according to the input parameters. */ void initialize (std::string type, std::vector<Double> position, std::vector<Double> direction, std::vector<Double> polarization, Double amplitude, std::vector<Double> radius, Double wavelength, std::vector<int> order, Signal signal); /* Show the stored values for the external field. */ void show (); }; struct FreeElectronLaser { /* Structure contianing the parsed parameters for the radiation power. */ struct RadiationSampling { /* The distance of the planes from the bunch to sample the radiation power. */ std::vector<Double> z_; /* Store the data required for sampling the radiation power. */ bool sampling_; /* Store the directory in which the radiation data is saved. */ std::string directory_; /* Store the base-name of the file in which the radiation data is saved. */ std::string basename_; /* The begin and end of the line as well as the resolution on which the radiation data is saved. */ Double lineBegin_; Double lineEnd_; unsigned int res_; /* Store the sampling type of the radiation power. */ SamplingType samplingType_; /* The wavelength of the harmonic whose power should be plotted. */ std::vector<Double> lambda_; /* The wavelength sweep data for the power computation. */ Double lambdaMin_; Double lambdaMax_; unsigned int lambdaRes_; /* Set the sampling type of the radiation power. */ void samplingType(std::string samplingType); /* Initialize the values for initializing the radiation power. */ RadiationSampling(); }; /* Structure containing the parsed parameters for the power or energy visualization. */ struct RadiationVisualization { /* The distance of the plane from the bunch to sample the radiation power or energy. */ Double z_; /* Store the data required for sampling the radiation power or energy. */ bool sampling_; /* Store the directory in which the radiation data is saved. */ std::string directory_; /* Store the base-name of the file in which the radiation data is saved. */ std::string basename_; /* Store the rhythm for calculating and saving the radiation power or energy. */ Double rhythm_; /* The wavelength of the harmonic whose power or energy should be plotted. */ Double lambda_; /* Initialize the values for initializing the radiation power or energy. */ RadiationVisualization (); }; /* Define the variables containing the required structures for power sampling and visualization. */ RadiationSampling radiationPower_; RadiationVisualization vtkPower_; /* Define the variables containing the required structures for energy sampling and visualization. */ RadiationSampling radiationEnergy_; RadiationVisualization vtkEnergy_; /* Parsed parameters for the screens that record the bunch profile. This produces the bunch profile * in the lab frame. */ struct ScreenProfile { /* Flag that activates storing the data required for sampling the bunch on a screen. */ bool sampling_; /* Store the directory in which the bunch profile in the lab frame is saved. */ std::string directory_; /* Store the base-name of the file in which this bunch profile is saved. */ std::string basename_; /* Store the positions in the undulator where the saving of the bunch profile is done. */ std::vector<Double> pos_; /* Store the rhythm in position for saving the bunch profile. */ Double rhythm_; ScreenProfile (); }; /* Define the variables containing the required structure for profiling the bunch in the lab frame. */ ScreenProfile screenProfile_; }; } #endif
[ "arya.fallahi@gmail.com" ]
arya.fallahi@gmail.com
d9004069d080ef28706c5c9b82108cf18a3fa3ee
8565325365db437120a4ae8b97f2919e362be8a6
/Baekjoon/Data Structure/18258/18258.cpp
2a68087f6093b3ecd6a8194b19a84a160ec828f0
[]
no_license
FacerAin/Algorithm-Study
31e56ea9ba01cff0fb27211b62d6665f1620dbb5
ad7474c72d8a6c83a15880b86e931ac6f03893fd
refs/heads/master
2021-07-24T00:53:10.022607
2021-07-03T14:37:48
2021-07-03T14:37:48
194,530,669
0
0
null
null
null
null
UTF-8
C++
false
false
1,440
cpp
/* 18258번 큐 2 */ #include <iostream> #include <queue> #include <string> using namespace std; int main() { cin.tie(0); cin.sync_with_stdio(false); int T; cin >> T; queue<int> q; while (T--) { string oper; int num; cin >> oper; if (oper == "push") { cin >> num; q.push(num); } else if (oper == "pop") { if (q.empty()) { cout << -1 << '\n'; } else { cout << q.front() << '\n'; q.pop(); } } else if (oper == "size") { cout << q.size() << '\n'; } else if (oper == "empty") { if (q.empty()) { cout << 1 << '\n'; } else { cout << 0 << '\n'; } } else if (oper == "front") { if (q.empty()) { cout << -1 << '\n'; } else { cout << q.front() << '\n'; } } else if (oper == "back") { if (q.empty()) { cout << -1 << '\n'; } else { cout << q.back() << '\n'; } } } return 0; }
[ "syw5141@khu.ac.kr" ]
syw5141@khu.ac.kr
a7accdd961e1215dfcf3a35de949882a8f5347e0
d2256875e2ba018c8c6c541c42d0947c98e6c82e
/dtrades.hpp
d8d239a3321b8b83a027ee77d12676c11741ae0c
[]
no_license
kesar/dtrades-contract
057f0650e5af06ed6e47e3269a3621a705fea260
bb414fb870d4d52a6e031bda2ce84a1f3d5bcb6b
refs/heads/master
2020-03-29T12:19:38.817340
2018-09-22T14:46:51
2018-09-22T14:46:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,418
hpp
#include <eosiolib/eosio.hpp> #include <eosiolib/asset.hpp> #include <string> using namespace eosio; using std::string; using eosio::name; class dtrades : public contract { public: dtrades(account_name self) :contract(self), products(_self, _self), orders(_self, _self){} [[eosio::action]] void listprod(name seller, string metadata, name escrow, asset price); [[eosio::action]] void tracking(uint64_t order_id, string details); [[eosio::action]] void shipping(uint64_t order_id, string details); [[eosio::action]] void apprbuyer(uint64_t order_id); [[eosio::action]] void apprseller(uint64_t order_id); [[eosio::action]] void purchase(name buyer, uint64_t product_id, uint64_t quantity); private: // Helper Structs struct [[eosio::table]] st_products { uint64_t id; name seller; name escrow; string metadata; asset price; uint64_t primary_key() const { return id; } }; typedef multi_index<N(products), st_products> tb_products; tb_products products; struct [[eosio::table]] st_orders { uint64_t id; uint64_t product_id; name seller; name buyer; name escrow; string shipping; string tracking; string status; uint64_t primary_key() const { return id; } }; typedef multi_index<N(orders), st_orders> tb_orders; tb_orders orders; };
[ "nathan.rempel@solium.com" ]
nathan.rempel@solium.com
f3e43e86194fd059cf4d7ad7aa80a564d3745bad
afea19e63a7969f1c6d616f0670a0beea1d6c947
/platform_csharp/040_ipad_programs/AataOotaPaatha/DheemsBlob/blob.cpp
b50d050c0e4c99252bc7ab1cb512eb83d06af735
[]
no_license
crazysystemics/POI
c10b16afccc44dd0e831f85660a9f4bc632da999
9ff4dab49a2a8dc1167c091bb55ab8ff0a282b46
refs/heads/master
2023-08-25T05:09:03.338436
2023-08-19T04:22:35
2023-08-19T04:22:35
138,387,102
1
1
null
2023-08-06T20:09:44
2018-06-23T09:06:30
C
UTF-8
C++
false
false
5,041
cpp
#include<stdio.h> #include<math.h> #include<stdlib.h> //array definition (cluster memory) int main() { int Cluster_memory_x[16][256]; int Cluster_memory_y[16][256]; int value_pointer_array[16]; int cluster_pointer=0; int threshold = 25; int X[326] = { 393, 393, 393, 393, 394, 394, 394, 394, 394, 394, 394, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 402, 402, 402, 402, 402, 402, 402, 402, 403, 403, 403, 403, 403, 403, 403, 403, 404, 404, 404, 404, 404, 404, 405, 405, 405, 405, 405, 405, 406, 406, 406, 406, 406, 406, 407, 407, 407, 407, 407, 407, 408, 408, 408, 408, 408, 409, 409, 409, 409, 409, 410, 410, 437, 437, 438, 438, 438, 438, 439, 439, 439, 439, 439, 440, 440, 440, 440, 440, 441, 441, 441, 441, 441, 441, 441, 442, 442, 442, 442, 442, 442, 442, 442, 442, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 444, 444, 444, 444, 444, 444, 444, 444, 444, 445, 445, 445, 445, 445, 446, 446, 446, 447, 484, 485, 485, 485, 486, 486, 486, 486, 486, 487, 487, 487, 487, 487, 487, 487, 487, 487, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 489, 489, 489, 489, 489, 489, 489, 489, 489, 489, 490, 490, 490, 490, 490, 490, 490, 490, 491, 491, 491, 491, 491, 491, 492, 492, 492, 492, 492, 493, 493, 493, 493, 494, 494, 494, 494, 495, 495, 495, 495, 496, 496, 496, 496, 497, 497, 497, 497, 498, 498, 498, 498, 499, 499, 499, 499, 499, 499, 500, 500, 500, 500, 500, 500, 501, 501, 501, 501, 502, 502, 502, 503 }; int Y[326] = { 340, 341, 343, 344, 339, 340, 341, 342, 343, 344, 345, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 338, 339, 340, 341, 342, 343, 344, 345, 338, 339, 340, 341, 342, 343, 344, 345, 339, 340, 341, 342, 343, 344, 339, 340, 341, 342, 343, 344, 339, 340, 341, 342, 343, 344, 339, 340, 341, 342, 343, 344, 340, 341, 342, 343, 344, 340, 341, 342, 343, 344, 341, 343, 171, 172, 170, 171, 172, 173, 169, 170, 171, 172, 173, 169, 170, 171, 172, 173, 168, 169, 170, 171, 172, 173, 174, 167, 168, 169, 170, 171, 172, 173, 174, 175, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 167, 168, 169, 170, 171, 172, 173, 174, 175, 169, 170, 171, 172, 173, 171, 172, 173, 172, 240, 239, 240, 241, 238, 239, 240, 241, 242, 237, 238, 239, 240, 241, 242, 243, 244, 245, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 237, 238, 239, 240, 241, 242, 243, 244, 237, 238, 239, 240, 241, 242, 238, 239, 240, 241, 242, 238, 239, 240, 241, 238, 239, 240, 241, 238, 239, 240, 241, 239, 240, 241, 820, 240, 819, 820, 821, 819, 820, 821, 822, 818, 819, 820, 821, 822, 823, 818, 819, 820, 821, 822, 823, 819, 820, 821, 822, 819, 820, 821, 820 }; //initialise the array to 0 int ix = 0; for (int i=0; i<16; i++) { for (int j=0;j<256;j++) { Cluster_memory_x[i][j]=0; Cluster_memory_y[i][j]=0; } } for (int i = 0; i < 16; i++) { value_pointer_array[i] = 0; } for (int i = 0; i < 326; i++) { while (cluster_pointer < 16) { if ((abs(Cluster_memory_x[cluster_pointer][0] - X[i]) + abs(Cluster_memory_y[cluster_pointer][0] - Y[i]) < threshold) && Cluster_memory_x[cluster_pointer][0] != 0 && Cluster_memory_y[cluster_pointer][0] != 0) { value_pointer_array[cluster_pointer] = value_pointer_array[cluster_pointer] + 1; ix = value_pointer_array[cluster_pointer]; Cluster_memory_x[cluster_pointer][ix] = X[i]; Cluster_memory_y[cluster_pointer][ix] = Y[i]; cluster_pointer = 0; break; } else if (Cluster_memory_x[cluster_pointer][0] != 0 && Cluster_memory_y[cluster_pointer][0] != 0) { cluster_pointer += 1; } else { Cluster_memory_x[cluster_pointer][0] = X[i]; Cluster_memory_y[cluster_pointer][0] = Y[i]; cluster_pointer = 0; break; } } } printf("Done...\n"); }
[ "rvjoshi18@hotmail.com" ]
rvjoshi18@hotmail.com
cc8a01ab9ce5c1071a5532cdc66308b34dadcaed
a63bc208c747ed457989c8be1c2cc368920e595a
/src/iGPSoE/Extensions/Devices/WebcamUtils/WebcamVFWCfg.cpp
d8d032c0643e67b32ddc09de2e4ac8fbdd529103
[]
no_license
msis/moos-ivp-ENSTABretagne
a14b91289549eb967c69c66f5e05c3968e932e01
1efd1ecc2ed2368a7a273d8368329e62564d4fe8
refs/heads/master
2021-01-25T05:35:41.880199
2014-09-16T08:21:37
2014-09-16T08:21:37
10,523,552
2
1
null
null
null
null
UTF-8
C++
false
false
5,408
cpp
#include "WebcamVFWCfg.h" HWND hWndC; UCHAR* pImg = (UCHAR*)23; LRESULT CALLBACK capVideoStreamCallback(HWND hWnd, LPVIDEOHDR lpVHdr) { int i = 0, j = 0; int nbBytes = (int)((lpVHdr->dwBufferLength/4)*3); char r, g, b, a; char *p = (char*)malloc(nbBytes); while (j < (int)(lpVHdr->dwBufferLength)) { b = (lpVHdr->lpData)[j+0]; g = (lpVHdr->lpData)[j+1]; r = (lpVHdr->lpData)[j+2]; a = (lpVHdr->lpData)[j+3]; p[i+0] = (char)b; p[i+1] = (char)g; p[i+2] = (char)r; i+=3; j+=4; } HWND hWndParent = GetParent(hWnd); int thing = GetWindowLongPtr(hWndParent, GWLP_USERDATA); LONG_PTR ret = SetWindowLongPtr(hWndParent, GWLP_USERDATA, (LONG_PTR)lpVHdr->lpData); //SendTCP(ClientSocket, (char*)p, (int)nbBytes); //SendTCP(ClientSocket, (char*)(lpVHdr->lpData), (int)(lpVHdr->dwBufferLength)); return (LRESULT) TRUE ; } LRESULT CALLBACK capYieldCallback(HWND hWnd){ MSG msg; ZeroMemory(&msg, sizeof(msg)); int bRet = 0; if (bRet = GetMessage(&msg, NULL, 0, 0) != 0) { if (bRet == -1) { return (LRESULT) FALSE; } else { TranslateMessage(&msg); DispatchMessage(&msg); } } return (LRESULT) TRUE; } LRESULT WINAPI MsgProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam ) { PAINTSTRUCT ps; HDC hdc; switch( msg ) { case WM_DESTROY: PostQuitMessage(0); return 0; case WM_KEYDOWN: switch (wParam) { case VK_ESCAPE: PostQuitMessage(0); return 0; default: return DefWindowProc(hWnd, msg, wParam, lParam); } break; case WM_MOUSEMOVE: break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... EndPaint(hWnd, &ps); break; default: break; } return DefWindowProc( hWnd, msg, wParam, lParam ); } int VFWInit() { // Register the window class WNDCLASSEX wc = { sizeof(WNDCLASSEX), CS_CLASSDC, MsgProc, 0L, sizeof(void*), GetModuleHandle(NULL), NULL, NULL, NULL, NULL, "VFWSrv", NULL }; RegisterClassEx( &wc ); HWND hWnd = CreateWindow( "VFWSrv", "VFWSrv", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, 1, 1, NULL, NULL, wc.hInstance, NULL ); LONG_PTR ret = SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)pImg); hWndC = capCreateCaptureWindow ( (LPSTR) "Capture Window", // window name if pop-up WS_CHILD | WS_VISIBLE, // window style 0, 0, 320, 240, // window position and dimensions (HWND) hWnd, (int) 0 // child ID ); // connect to the MSVIDEO driver: capDriverConnect(hWndC, 0); CAPDRIVERCAPS CapDrvCaps; if(!capDriverGetCaps(hWndC, &CapDrvCaps, sizeof (CAPDRIVERCAPS))) { MessageBox(NULL, "Unable to get driver capabilities", "ERROR", MB_OK); return EXIT_FAILURE; } if (CapDrvCaps.fHasOverlay) capOverlay(hWndC, TRUE); CAPSTATUS CapStatus; if(!capGetStatus(hWndC, &CapStatus, sizeof (CAPSTATUS))) { MessageBox(NULL, "Unable to get capture status", "ERROR", MB_OK); return EXIT_FAILURE; } SetWindowPos(hWndC, NULL, 0, 0, CapStatus.uiImageWidth, CapStatus.uiImageHeight, SWP_NOZORDER | SWP_NOMOVE); LPBITMAPINFO lpbi; DWORD dwSize; dwSize = capGetVideoFormatSize(hWndC); lpbi = (LPBITMAPINFO)GlobalAlloc (GHND, dwSize); capGetVideoFormat(hWndC, lpbi, dwSize); lpbi->bmiHeader.biSize = 40; lpbi->bmiHeader.biWidth = 320; lpbi->bmiHeader.biHeight = 240; lpbi->bmiHeader.biPlanes = 1; lpbi->bmiHeader.biBitCount = 24; lpbi->bmiHeader.biCompression = BI_RGB; lpbi->bmiHeader.biSizeImage = lpbi->bmiHeader.biWidth * lpbi->bmiHeader.biHeight * 3; lpbi->bmiHeader.biClrImportant = 0; lpbi->bmiHeader.biClrUsed = 0; lpbi->bmiHeader.biXPelsPerMeter = 0; lpbi->bmiHeader.biYPelsPerMeter = 0; if(!capSetVideoFormat(hWndC, lpbi, dwSize)) { GlobalFree(lpbi); MessageBox(NULL, "Unsupported video format", "ERROR", MB_OK); return EXIT_FAILURE; } GlobalFree(lpbi); CAPTUREPARMS CapParams; capCaptureGetSetup(hWndC, &CapParams, sizeof(CAPTUREPARMS)); CapParams.fCaptureAudio = FALSE; CapParams.fLimitEnabled = FALSE; CapParams.fYield = FALSE; CapParams.fMakeUserHitOKToCapture = TRUE; CapParams.fAbortLeftMouse = FALSE; CapParams.fAbortRightMouse = FALSE; CapParams.vKeyAbort = VK_ESCAPE; capCaptureSetSetup(hWndC, &CapParams, sizeof(CAPTUREPARMS)); // Register the video-stream callback function using the // capSetCallbackOnVideoStream macro. capSetCallbackOnVideoStream(hWndC, capVideoStreamCallback); // Register the frame callback function using the // capSetCallbackOnFrame macro. //capSetCallbackOnFrame(hWndC, capFrameCallback); capSetCallbackOnYield(hWndC, capYieldCallback); // Access the video format and then free the allocated memory. capPreviewRate(hWndC, 1); // rate, in milliseconds capPreview(hWndC, TRUE); // starts preview // Preview // Set up the capture operation. capCaptureSequenceNoFile(hWndC); // Capture. return EXIT_SUCCESS; } int VFWGetPict() { HWND hWndParent = GetParent(hWndC); void* pict = GetWindowLongPtr(hWndParent, GWLP_USERDATA); return EXIT_SUCCESS; } int VFWStop() { //capSetCallbackOnVideoStream(hWndC, NULL); capCaptureStop(hWndC); capPreview(hWndC, FALSE); //capOverlay(hWndC, FALSE); capDriverDisconnect(hWndC); return EXIT_SUCCESS; }
[ "ms.ibnseddik@gmail.com" ]
ms.ibnseddik@gmail.com
dd343ceaf3c81f8e20e5ac3fdfaa81a20366d567
f40bef40a82602ca0e5e852468e3bac888861714
/src/server/server/CommandService.hpp
9160ec02ead99ec10d3ed629ddf05b9a28714884
[]
no_license
pomb95/buguetnoel
88cb4545836f5ab6f71e12b8d2e20d9262b1acca
127c7be6617e54c94c2177e85339646f10d56f7f
refs/heads/master
2021-09-04T19:28:59.507211
2018-01-21T18:49:23
2018-01-21T18:49:23
104,056,653
0
1
null
null
null
null
UTF-8
C++
false
false
275
hpp
/** * @file CommandService.hpp * @author Philippe-Henri Gosselin * @date 9 décembre 2015 * @copyright CNRS */ #ifndef __CommandService_hpp__ #define __CommandService_hpp__ #include "AbstractService.hpp" #include "CommandDB.hpp" #include "CommandService.h" #endif
[ "paul.buguet@ensea.fr" ]
paul.buguet@ensea.fr
19e92e697077f05412b733cb023083f9552f0a16
2f55c9c9cc67712df3f9c12f6f81650fb3f7f1d0
/processor6/15/k
82c9ae993107873278ed040b0783561ff54d315d
[]
no_license
bhqasx/Learning-openFoam-case
86677c25948a2c0ac767be406a9356c2d2907ef9
159304b7e5d3579a1dfb3f20dc5ad8be79683222
refs/heads/main
2023-07-09T21:27:17.128564
2021-08-20T01:15:51
2021-08-20T01:15:51
397,872,602
0
0
null
null
null
null
UTF-8
C++
false
false
553,127
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "15"; object k; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 37530 ( 4.17038e-06 4.20626e-06 4.24465e-06 4.28563e-06 4.32923e-06 4.37544e-06 4.42413e-06 4.47501e-06 4.52752e-06 4.58054e-06 4.63251e-06 4.68051e-06 4.71968e-06 4.73863e-06 4.71099e-06 4.71777e-06 1.00254e-05 4.68802e-05 6.61857e-05 6.55545e-05 6.31594e-05 6.42584e-05 6.38167e-05 5.79029e-05 5.78823e-05 0.000106928 0.000327518 0.000544156 0.00058735 0.000593673 0.000588989 0.000548183 0.000510795 0.000500614 0.000503201 0.00052264 0.000548717 5.88237e-06 5.92762e-06 5.97599e-06 6.02753e-06 6.08227e-06 6.14015e-06 6.201e-06 6.26445e-06 6.3298e-06 6.39575e-06 6.45955e-06 6.51638e-06 6.55826e-06 6.57253e-06 6.5383e-06 6.42878e-06 6.63334e-06 1.41433e-05 2.84332e-05 3.44076e-05 4.01518e-05 4.38141e-05 4.53686e-05 4.48747e-05 4.37034e-05 5.12348e-05 0.000109345 0.000203759 0.000238388 0.000276265 0.000349534 0.00041782 0.000452155 0.000468747 0.000470375 0.000461704 0.000441404 6.66706e-06 6.71331e-06 6.76275e-06 6.81547e-06 6.8715e-06 6.93084e-06 6.9934e-06 7.0589e-06 7.12673e-06 7.19578e-06 7.26416e-06 7.32872e-06 7.38428e-06 7.42311e-06 7.43953e-06 7.42497e-06 7.35959e-06 7.79775e-06 9.94749e-06 1.19419e-05 1.3342e-05 1.49034e-05 1.5753e-05 1.56642e-05 1.59788e-05 1.79811e-05 2.85952e-05 5.63341e-05 7.11886e-05 7.90556e-05 0.000107799 0.000150035 0.000188481 0.000221683 0.00023517 0.000234977 0.000219604 7.03863e-06 7.08548e-06 7.13562e-06 7.18916e-06 7.24619e-06 7.3068e-06 7.37101e-06 7.43871e-06 7.50963e-06 7.58326e-06 7.65889e-06 7.73552e-06 7.81204e-06 7.88764e-06 7.9631e-06 8.04601e-06 8.15803e-06 8.29841e-06 8.70168e-06 9.27511e-06 9.75279e-06 1.02004e-05 1.06658e-05 1.1055e-05 1.14783e-05 1.20797e-05 1.36024e-05 1.81544e-05 2.2721e-05 2.44691e-05 2.99814e-05 4.64883e-05 7.7141e-05 0.000108075 0.000123751 0.000131507 0.000130309 7.19766e-06 7.24489e-06 7.29551e-06 7.34968e-06 7.40752e-06 7.46919e-06 7.53478e-06 7.60431e-06 7.67768e-06 7.75461e-06 7.83462e-06 7.91702e-06 8.00089e-06 8.08528e-06 8.16981e-06 8.25627e-06 8.35457e-06 8.47601e-06 8.64536e-06 8.86926e-06 9.11029e-06 9.34676e-06 9.58163e-06 9.82036e-06 1.0085e-05 1.0407e-05 1.08458e-05 1.15975e-05 1.25931e-05 1.34133e-05 1.44774e-05 1.71412e-05 2.39337e-05 3.858e-05 5.40573e-05 6.67859e-05 7.01487e-05 7.25341e-06 7.30089e-06 7.35186e-06 7.40649e-06 7.46497e-06 7.52749e-06 7.59423e-06 7.66535e-06 7.74101e-06 7.82137e-06 7.90669e-06 7.99746e-06 8.09453e-06 8.19953e-06 8.31537e-06 8.44711e-06 8.60295e-06 8.79389e-06 9.02571e-06 9.30216e-06 9.60249e-06 9.90558e-06 1.02227e-05 1.05569e-05 1.08938e-05 1.12234e-05 1.15627e-05 1.19589e-05 1.24423e-05 1.29617e-05 1.34913e-05 1.41563e-05 1.53337e-05 1.81237e-05 2.25362e-05 2.97032e-05 3.46195e-05 7.25336e-06 7.30102e-06 7.35226e-06 7.40727e-06 7.46626e-06 7.52946e-06 7.59712e-06 7.6695e-06 7.74687e-06 7.82948e-06 7.91763e-06 8.01167e-06 8.11209e-06 8.21963e-06 8.33551e-06 8.46164e-06 8.60081e-06 8.75722e-06 8.93455e-06 9.1326e-06 9.34709e-06 9.57476e-06 9.8166e-06 1.00762e-05 1.03605e-05 1.06784e-05 1.10385e-05 1.14475e-05 1.19022e-05 1.23847e-05 1.2905e-05 1.34777e-05 1.41025e-05 1.49444e-05 1.62874e-05 1.77244e-05 2.06714e-05 7.19777e-06 7.24557e-06 7.29704e-06 7.35236e-06 7.41177e-06 7.47555e-06 7.544e-06 7.61748e-06 7.69639e-06 7.78121e-06 7.87261e-06 7.97145e-06 8.07888e-06 8.1965e-06 8.32646e-06 8.47168e-06 8.63605e-06 8.82286e-06 9.03482e-06 9.27173e-06 9.52932e-06 9.80321e-06 1.00932e-05 1.03996e-05 1.07218e-05 1.10608e-05 1.14217e-05 1.18119e-05 1.22377e-05 1.27014e-05 1.31957e-05 1.37537e-05 1.43061e-05 1.51419e-05 1.58469e-05 1.71527e-05 1.81136e-05 7.03907e-06 7.08681e-06 7.13831e-06 7.19372e-06 7.25329e-06 7.31734e-06 7.38622e-06 7.46035e-06 7.5402e-06 7.62634e-06 7.71941e-06 7.82013e-06 7.92938e-06 8.04821e-06 8.17794e-06 8.32014e-06 8.47619e-06 8.64757e-06 8.83492e-06 9.03831e-06 9.25731e-06 9.49217e-06 9.74443e-06 1.00168e-05 1.03134e-05 1.06391e-05 1.09991e-05 1.13969e-05 1.18364e-05 1.23167e-05 1.28426e-05 1.34179e-05 1.40476e-05 1.47213e-05 1.57287e-05 1.64196e-05 1.79639e-05 6.66825e-06 6.71565e-06 6.76682e-06 6.82195e-06 6.88128e-06 6.94515e-06 7.01397e-06 7.08818e-06 7.16831e-06 7.25501e-06 7.34909e-06 7.45147e-06 7.56327e-06 7.68584e-06 7.82075e-06 7.9698e-06 8.13474e-06 8.31704e-06 8.51788e-06 8.73738e-06 8.97495e-06 9.23013e-06 9.50333e-06 9.79558e-06 1.01086e-05 1.04448e-05 1.08081e-05 1.12013e-05 1.16305e-05 1.20956e-05 1.26041e-05 1.31542e-05 1.37832e-05 1.43506e-05 1.53968e-05 1.59845e-05 1.75282e-05 5.88458e-06 5.9311e-06 5.98133e-06 6.03551e-06 6.09388e-06 6.15681e-06 6.2247e-06 6.29803e-06 6.37733e-06 6.46326e-06 6.55662e-06 6.65825e-06 6.76909e-06 6.89017e-06 7.02267e-06 7.1678e-06 7.3267e-06 7.50029e-06 7.68917e-06 7.89372e-06 8.11431e-06 8.35169e-06 8.60729e-06 8.88317e-06 9.18218e-06 9.50723e-06 9.86261e-06 1.02487e-05 1.06759e-05 1.11252e-05 1.16603e-05 1.21191e-05 1.28954e-05 1.32825e-05 1.43645e-05 1.4739e-05 1.62498e-05 4.17242e-06 4.20918e-06 4.24885e-06 4.29164e-06 4.3378e-06 4.38761e-06 4.44139e-06 4.49952e-06 4.56241e-06 4.63058e-06 4.70463e-06 4.78525e-06 4.87321e-06 4.96937e-06 5.07466e-06 5.19007e-06 5.31654e-06 5.45488e-06 5.60568e-06 5.76932e-06 5.94618e-06 6.1368e-06 6.3421e-06 6.5633e-06 6.80218e-06 7.06046e-06 7.34179e-06 7.64462e-06 7.98367e-06 8.32527e-06 8.77025e-06 9.08099e-06 9.75252e-06 1.0006e-05 1.09702e-05 1.10052e-05 1.24288e-05 6.37492e-06 6.40548e-06 6.43822e-06 6.47321e-06 6.51048e-06 6.55002e-06 6.59176e-06 6.63549e-06 6.68079e-06 6.72732e-06 6.77384e-06 6.81771e-06 6.8518e-06 6.86052e-06 6.80942e-06 6.65101e-06 9.93237e-06 4.76151e-05 8.12105e-05 8.38757e-05 7.87359e-05 7.72414e-05 7.73465e-05 7.65678e-05 7.37428e-05 8.00983e-05 0.000161339 0.000352324 0.000561266 0.000631462 0.000639208 0.000637627 0.000643572 0.000654121 0.000658967 0.000672707 0.000707952 9.56573e-06 9.58671e-06 9.60913e-06 9.63297e-06 9.65817e-06 9.68465e-06 9.71224e-06 9.74058e-06 9.76901e-06 9.79589e-06 9.81882e-06 9.83388e-06 9.83337e-06 9.8067e-06 9.7428e-06 9.68624e-06 1.03179e-05 1.90406e-05 4.55538e-05 7.06562e-05 8.25604e-05 8.59586e-05 8.70294e-05 8.67592e-05 9.21297e-05 0.000102719 0.00013457 0.000253732 0.000430606 0.000571407 0.000689972 0.000724754 0.000740004 0.000744817 0.000733605 0.000753166 0.000792999 1.13906e-05 1.14149e-05 1.14409e-05 1.14686e-05 1.1498e-05 1.15291e-05 1.15618e-05 1.15957e-05 1.16304e-05 1.16649e-05 1.16976e-05 1.17261e-05 1.17469e-05 1.17551e-05 1.17408e-05 1.17032e-05 1.17254e-05 1.2339e-05 1.519e-05 1.85561e-05 1.9624e-05 1.98064e-05 1.92952e-05 1.94928e-05 2.14183e-05 2.84385e-05 4.52368e-05 7.73815e-05 0.000117292 0.000139445 0.00016644 0.000205446 0.000250261 0.000292578 0.000311097 0.000330389 0.000335727 1.22854e-05 1.2312e-05 1.23405e-05 1.2371e-05 1.24036e-05 1.24383e-05 1.2475e-05 1.25137e-05 1.2554e-05 1.25953e-05 1.26368e-05 1.26774e-05 1.27156e-05 1.27508e-05 1.27859e-05 1.28313e-05 1.2928e-05 1.31242e-05 1.35541e-05 1.40433e-05 1.46717e-05 1.52326e-05 1.5737e-05 1.63953e-05 1.7363e-05 1.87907e-05 2.14165e-05 2.6282e-05 3.23354e-05 3.57572e-05 3.97627e-05 4.81105e-05 6.88354e-05 0.000104368 0.000137381 0.000161615 0.000171537 1.26895e-05 1.27174e-05 1.27474e-05 1.27796e-05 1.28141e-05 1.28509e-05 1.28903e-05 1.2932e-05 1.2976e-05 1.30218e-05 1.30691e-05 1.31171e-05 1.31648e-05 1.32112e-05 1.3256e-05 1.33004e-05 1.33465e-05 1.34153e-05 1.35571e-05 1.3763e-05 1.39025e-05 1.40453e-05 1.42569e-05 1.45597e-05 1.49844e-05 1.55668e-05 1.63611e-05 1.73235e-05 1.82155e-05 1.88463e-05 1.96952e-05 2.1279e-05 2.42279e-05 3.17364e-05 4.19933e-05 5.916e-05 7.16226e-05 1.28395e-05 1.2868e-05 1.28987e-05 1.29317e-05 1.29672e-05 1.30053e-05 1.30461e-05 1.30896e-05 1.31359e-05 1.3185e-05 1.32369e-05 1.32916e-05 1.33494e-05 1.3411e-05 1.34783e-05 1.3555e-05 1.36473e-05 1.37624e-05 1.38955e-05 1.40454e-05 1.42402e-05 1.44662e-05 1.47286e-05 1.50419e-05 1.54097e-05 1.58296e-05 1.63262e-05 1.68922e-05 1.74333e-05 1.79489e-05 1.8571e-05 1.94368e-05 2.05912e-05 2.23715e-05 2.47117e-05 2.74588e-05 3.19611e-05 1.28389e-05 1.28675e-05 1.28984e-05 1.29317e-05 1.29676e-05 1.30061e-05 1.30474e-05 1.30917e-05 1.31391e-05 1.31897e-05 1.32436e-05 1.33009e-05 1.33617e-05 1.34262e-05 1.34952e-05 1.35698e-05 1.36522e-05 1.37465e-05 1.38589e-05 1.39882e-05 1.41313e-05 1.42929e-05 1.44826e-05 1.47073e-05 1.49751e-05 1.52914e-05 1.56579e-05 1.60559e-05 1.64639e-05 1.69069e-05 1.73632e-05 1.80133e-05 1.85444e-05 1.96066e-05 2.02857e-05 2.14901e-05 2.3003e-05 1.26884e-05 1.27167e-05 1.27473e-05 1.27804e-05 1.2816e-05 1.28544e-05 1.28957e-05 1.29402e-05 1.2988e-05 1.30396e-05 1.30953e-05 1.31555e-05 1.32209e-05 1.32924e-05 1.33714e-05 1.34595e-05 1.3559e-05 1.36714e-05 1.37971e-05 1.39382e-05 1.40976e-05 1.42786e-05 1.44837e-05 1.47152e-05 1.49757e-05 1.52677e-05 1.55942e-05 1.59595e-05 1.63533e-05 1.67986e-05 1.72621e-05 1.78827e-05 1.84666e-05 1.93478e-05 2.02063e-05 2.09825e-05 2.25387e-05 1.2284e-05 1.23113e-05 1.23409e-05 1.23729e-05 1.24073e-05 1.24445e-05 1.24846e-05 1.25278e-05 1.25746e-05 1.26253e-05 1.26803e-05 1.27401e-05 1.28051e-05 1.28762e-05 1.29543e-05 1.30404e-05 1.31359e-05 1.32419e-05 1.33592e-05 1.34882e-05 1.36295e-05 1.37853e-05 1.39589e-05 1.41541e-05 1.43751e-05 1.4627e-05 1.4911e-05 1.5235e-05 1.55846e-05 1.60081e-05 1.6411e-05 1.70223e-05 1.74662e-05 1.83249e-05 1.89589e-05 1.98584e-05 2.08476e-05 1.13897e-05 1.14148e-05 1.14422e-05 1.14718e-05 1.15037e-05 1.15381e-05 1.15754e-05 1.16156e-05 1.16593e-05 1.17069e-05 1.17588e-05 1.18157e-05 1.18783e-05 1.19473e-05 1.20239e-05 1.21091e-05 1.2204e-05 1.23093e-05 1.24255e-05 1.25527e-05 1.26918e-05 1.28449e-05 1.30144e-05 1.32028e-05 1.34125e-05 1.36474e-05 1.39084e-05 1.42061e-05 1.45203e-05 1.49179e-05 1.52493e-05 1.58486e-05 1.6191e-05 1.69843e-05 1.74515e-05 1.8213e-05 1.93781e-05 9.56578e-06 9.58765e-06 9.61146e-06 9.63722e-06 9.665e-06 9.695e-06 9.72745e-06 9.76259e-06 9.80073e-06 9.8423e-06 9.88778e-06 9.93767e-06 9.99248e-06 1.00528e-05 1.01193e-05 1.01928e-05 1.02737e-05 1.03624e-05 1.04591e-05 1.05636e-05 1.06762e-05 1.07977e-05 1.09296e-05 1.10738e-05 1.12327e-05 1.14097e-05 1.1604e-05 1.18303e-05 1.20531e-05 1.23801e-05 1.2582e-05 1.30897e-05 1.3296e-05 1.3985e-05 1.42248e-05 1.49499e-05 1.5828e-05 6.37641e-06 6.40772e-06 6.44157e-06 6.47812e-06 6.51756e-06 6.56016e-06 6.60618e-06 6.65595e-06 6.70983e-06 6.76828e-06 6.83181e-06 6.90101e-06 6.97651e-06 7.05902e-06 7.14932e-06 7.24825e-06 7.35663e-06 7.4752e-06 7.60459e-06 7.74537e-06 7.89812e-06 8.06364e-06 8.24294e-06 8.43723e-06 8.64801e-06 8.87691e-06 9.12625e-06 9.39713e-06 9.69396e-06 1.00155e-05 1.03676e-05 1.07581e-05 1.11567e-05 1.16632e-05 1.21315e-05 1.25601e-05 1.35315e-05 7.38931e-06 7.42011e-06 7.45309e-06 7.48832e-06 7.52584e-06 7.5656e-06 7.60763e-06 7.65192e-06 7.69813e-06 7.7456e-06 7.79302e-06 7.83794e-06 7.87547e-06 7.89547e-06 7.87401e-06 7.77397e-06 8.76552e-06 3.73593e-05 7.80854e-05 8.15423e-05 7.60613e-05 7.4756e-05 7.44412e-05 7.38391e-05 7.37394e-05 7.44283e-05 8.72427e-05 0.000133164 0.000211962 0.000301608 0.000358195 0.000382732 0.000419339 0.000496773 0.000610153 0.000662279 0.000693149 1.18366e-05 1.18546e-05 1.1874e-05 1.18946e-05 1.19163e-05 1.1939e-05 1.19623e-05 1.19857e-05 1.20082e-05 1.20285e-05 1.20437e-05 1.20495e-05 1.20386e-05 1.20047e-05 1.19462e-05 1.19502e-05 1.27337e-05 1.88187e-05 4.16805e-05 6.28375e-05 7.15259e-05 7.69377e-05 7.89501e-05 7.87697e-05 8.41933e-05 9.75848e-05 0.000118242 0.000158826 0.000201877 0.000247028 0.000306001 0.000343277 0.000371671 0.000387787 0.000436825 0.000556595 0.000637082 1.40714e-05 1.40923e-05 1.41148e-05 1.41388e-05 1.41643e-05 1.41913e-05 1.42196e-05 1.42488e-05 1.42784e-05 1.43074e-05 1.43342e-05 1.43565e-05 1.43719e-05 1.43791e-05 1.43853e-05 1.44221e-05 1.46501e-05 1.56064e-05 1.82083e-05 2.07546e-05 2.139e-05 2.21563e-05 2.27097e-05 2.3448e-05 2.49914e-05 2.97657e-05 4.12578e-05 6.34811e-05 9.00141e-05 0.000105832 0.000119088 0.000133193 0.000139401 0.000146824 0.000149052 0.000168322 0.000193077 1.51826e-05 1.5206e-05 1.52311e-05 1.52582e-05 1.52872e-05 1.5318e-05 1.53508e-05 1.53853e-05 1.54212e-05 1.54579e-05 1.54948e-05 1.55307e-05 1.55654e-05 1.56003e-05 1.56443e-05 1.57255e-05 1.59195e-05 1.63655e-05 1.7138e-05 1.77999e-05 1.84756e-05 1.89998e-05 1.95501e-05 2.03808e-05 2.16685e-05 2.35485e-05 2.65898e-05 3.08256e-05 3.4957e-05 3.79196e-05 4.11748e-05 4.53595e-05 5.10076e-05 6.29947e-05 7.08294e-05 7.92272e-05 8.67757e-05 1.57048e-05 1.57297e-05 1.57566e-05 1.57857e-05 1.58169e-05 1.58505e-05 1.58863e-05 1.59245e-05 1.59649e-05 1.60071e-05 1.60508e-05 1.60955e-05 1.61409e-05 1.61873e-05 1.62371e-05 1.62975e-05 1.63851e-05 1.65381e-05 1.68149e-05 1.71363e-05 1.7364e-05 1.75889e-05 1.78864e-05 1.82918e-05 1.88544e-05 1.96495e-05 2.07779e-05 2.2121e-05 2.31653e-05 2.38879e-05 2.48811e-05 2.65573e-05 2.86389e-05 3.1641e-05 3.47703e-05 3.89933e-05 4.52956e-05 1.59071e-05 1.59328e-05 1.59606e-05 1.59907e-05 1.60232e-05 1.60582e-05 1.60959e-05 1.61364e-05 1.61797e-05 1.62259e-05 1.62751e-05 1.63276e-05 1.63843e-05 1.64469e-05 1.65189e-05 1.66072e-05 1.67216e-05 1.68734e-05 1.7052e-05 1.72454e-05 1.74671e-05 1.77166e-05 1.80083e-05 1.83607e-05 1.87919e-05 1.9326e-05 2.00061e-05 2.08067e-05 2.15529e-05 2.22262e-05 2.30588e-05 2.42585e-05 2.58633e-05 2.80073e-05 3.01617e-05 3.17698e-05 3.42226e-05 1.59067e-05 1.59325e-05 1.59605e-05 1.59909e-05 1.60238e-05 1.60593e-05 1.60976e-05 1.6139e-05 1.61836e-05 1.62315e-05 1.62831e-05 1.63386e-05 1.63985e-05 1.64637e-05 1.65359e-05 1.66175e-05 1.67125e-05 1.68271e-05 1.69661e-05 1.71235e-05 1.72921e-05 1.74801e-05 1.77007e-05 1.79637e-05 1.82816e-05 1.86616e-05 1.91128e-05 1.96301e-05 2.01761e-05 2.07552e-05 2.14071e-05 2.22756e-05 2.3255e-05 2.46449e-05 2.601e-05 2.75002e-05 2.93186e-05 1.57041e-05 1.57294e-05 1.57571e-05 1.5787e-05 1.58195e-05 1.58548e-05 1.5893e-05 1.59344e-05 1.59793e-05 1.60282e-05 1.60816e-05 1.61401e-05 1.62048e-05 1.6277e-05 1.63587e-05 1.64525e-05 1.6561e-05 1.66854e-05 1.68254e-05 1.69805e-05 1.71524e-05 1.73469e-05 1.75687e-05 1.7822e-05 1.81131e-05 1.84508e-05 1.88437e-05 1.92968e-05 1.97949e-05 2.03538e-05 2.09712e-05 2.17658e-05 2.26516e-05 2.38016e-05 2.50654e-05 2.62901e-05 2.80469e-05 1.51818e-05 1.52059e-05 1.52322e-05 1.52608e-05 1.52918e-05 1.53255e-05 1.53621e-05 1.5402e-05 1.54454e-05 1.5493e-05 1.55451e-05 1.56025e-05 1.5666e-05 1.57366e-05 1.58156e-05 1.59046e-05 1.60053e-05 1.61188e-05 1.62458e-05 1.6386e-05 1.65396e-05 1.67098e-05 1.69018e-05 1.71209e-05 1.73736e-05 1.76669e-05 1.80051e-05 1.8396e-05 1.88308e-05 1.93449e-05 1.98901e-05 2.06024e-05 2.13287e-05 2.227e-05 2.33808e-05 2.43382e-05 2.59101e-05 1.4071e-05 1.40929e-05 1.41168e-05 1.41428e-05 1.41711e-05 1.42018e-05 1.42352e-05 1.42717e-05 1.43117e-05 1.43556e-05 1.44041e-05 1.4458e-05 1.4518e-05 1.45853e-05 1.46611e-05 1.47469e-05 1.48437e-05 1.49524e-05 1.5073e-05 1.52054e-05 1.53505e-05 1.55107e-05 1.56892e-05 1.58898e-05 1.61167e-05 1.6376e-05 1.6671e-05 1.70134e-05 1.73881e-05 1.78507e-05 1.82924e-05 1.89661e-05 1.94899e-05 2.03791e-05 2.12174e-05 2.19435e-05 2.34809e-05 1.1837e-05 1.18561e-05 1.18771e-05 1.18999e-05 1.19246e-05 1.19515e-05 1.19808e-05 1.20128e-05 1.20477e-05 1.20862e-05 1.21287e-05 1.21759e-05 1.22284e-05 1.22869e-05 1.23522e-05 1.24253e-05 1.25067e-05 1.2597e-05 1.26961e-05 1.2804e-05 1.29209e-05 1.30478e-05 1.3187e-05 1.33412e-05 1.35134e-05 1.37083e-05 1.39264e-05 1.41825e-05 1.44464e-05 1.48152e-05 1.50773e-05 1.56578e-05 1.59509e-05 1.66959e-05 1.71188e-05 1.78387e-05 1.89416e-05 7.39103e-06 7.4227e-06 7.45697e-06 7.49399e-06 7.53397e-06 7.57717e-06 7.62388e-06 7.67445e-06 7.72925e-06 7.78879e-06 7.85363e-06 7.92437e-06 8.0017e-06 8.08636e-06 8.17918e-06 8.28102e-06 8.39268e-06 8.51486e-06 8.64812e-06 8.79295e-06 8.9499e-06 9.11978e-06 9.30376e-06 9.50321e-06 9.7199e-06 9.95576e-06 1.02133e-05 1.04945e-05 1.08021e-05 1.11418e-05 1.14989e-05 1.19429e-05 1.22907e-05 1.29576e-05 1.32892e-05 1.40455e-05 1.47103e-05 7.98616e-06 8.01691e-06 8.0499e-06 8.08519e-06 8.12285e-06 8.1629e-06 8.20529e-06 8.2499e-06 8.29645e-06 8.34434e-06 8.3924e-06 8.43848e-06 8.47851e-06 8.50491e-06 8.50106e-06 8.44634e-06 8.39336e-06 1.51903e-05 5.82954e-05 6.70572e-05 6.19683e-05 6.31961e-05 6.66849e-05 6.71445e-05 6.7858e-05 6.99506e-05 7.34134e-05 8.11277e-05 9.26912e-05 0.000109047 0.000121404 0.000118568 0.000115091 0.000148104 0.000313559 0.000533936 0.000633869 1.32929e-05 1.33092e-05 1.33266e-05 1.33452e-05 1.33647e-05 1.3385e-05 1.34057e-05 1.34264e-05 1.3446e-05 1.34632e-05 1.34753e-05 1.34779e-05 1.34651e-05 1.34313e-05 1.33766e-05 1.33665e-05 1.38934e-05 1.6732e-05 2.81242e-05 3.90836e-05 4.42852e-05 5.50984e-05 6.36959e-05 6.53597e-05 6.76123e-05 7.52525e-05 9.30285e-05 0.000111182 0.000118772 0.000117563 0.000118475 0.000113427 0.000111788 0.000119713 0.000168872 0.000245707 0.000325679 1.57766e-05 1.57954e-05 1.58156e-05 1.58373e-05 1.58604e-05 1.58849e-05 1.59105e-05 1.59371e-05 1.59639e-05 1.59901e-05 1.60142e-05 1.60345e-05 1.60495e-05 1.60606e-05 1.6081e-05 1.61518e-05 1.64206e-05 1.73054e-05 1.90201e-05 2.05004e-05 2.17418e-05 2.32051e-05 2.47481e-05 2.61631e-05 2.77784e-05 3.05327e-05 3.64296e-05 4.62511e-05 5.66791e-05 6.30407e-05 6.81593e-05 7.13618e-05 6.95943e-05 6.98658e-05 7.36054e-05 8.39997e-05 0.000100634 1.70177e-05 1.70388e-05 1.70617e-05 1.70864e-05 1.71129e-05 1.71413e-05 1.71715e-05 1.72034e-05 1.72367e-05 1.72708e-05 1.73053e-05 1.73395e-05 1.73739e-05 1.74117e-05 1.74653e-05 1.75691e-05 1.78029e-05 1.83383e-05 1.92261e-05 1.99512e-05 2.04044e-05 2.07777e-05 2.13194e-05 2.22363e-05 2.3673e-05 2.56949e-05 2.86777e-05 3.23382e-05 3.51382e-05 3.68694e-05 3.91726e-05 4.19418e-05 4.50377e-05 4.70975e-05 4.98106e-05 5.24338e-05 5.57542e-05 1.7617e-05 1.76397e-05 1.76645e-05 1.76913e-05 1.77202e-05 1.77514e-05 1.7785e-05 1.78208e-05 1.78589e-05 1.7899e-05 1.79409e-05 1.79845e-05 1.80302e-05 1.80796e-05 1.81375e-05 1.82153e-05 1.83343e-05 1.85358e-05 1.88675e-05 1.92355e-05 1.95291e-05 1.98117e-05 2.01703e-05 2.06455e-05 2.1281e-05 2.2151e-05 2.33732e-05 2.48451e-05 2.60304e-05 2.68754e-05 2.80049e-05 2.97098e-05 3.21619e-05 3.46684e-05 3.71311e-05 3.92472e-05 4.2111e-05 1.78562e-05 1.78798e-05 1.79055e-05 1.79335e-05 1.79638e-05 1.79967e-05 1.80323e-05 1.80707e-05 1.81121e-05 1.81566e-05 1.82045e-05 1.82564e-05 1.83137e-05 1.83788e-05 1.84568e-05 1.85565e-05 1.869e-05 1.887e-05 1.9087e-05 1.93117e-05 1.95435e-05 1.97999e-05 2.0104e-05 2.04761e-05 2.09401e-05 2.15299e-05 2.22932e-05 2.32034e-05 2.40795e-05 2.48777e-05 2.58374e-05 2.71678e-05 2.89188e-05 3.11971e-05 3.34157e-05 3.56453e-05 3.77377e-05 1.78559e-05 1.78797e-05 1.79056e-05 1.79339e-05 1.79646e-05 1.7998e-05 1.80344e-05 1.80738e-05 1.81166e-05 1.81631e-05 1.82136e-05 1.82688e-05 1.83295e-05 1.83973e-05 1.84746e-05 1.85653e-05 1.86746e-05 1.88095e-05 1.89733e-05 1.91561e-05 1.9349e-05 1.9561e-05 1.98066e-05 2.00982e-05 2.04534e-05 2.08874e-05 2.14125e-05 2.20224e-05 2.26775e-05 2.33746e-05 2.41789e-05 2.52113e-05 2.646e-05 2.80687e-05 2.98262e-05 3.16753e-05 3.37569e-05 1.76167e-05 1.76399e-05 1.76653e-05 1.76931e-05 1.77234e-05 1.77565e-05 1.77926e-05 1.78321e-05 1.78753e-05 1.79227e-05 1.7975e-05 1.80331e-05 1.80983e-05 1.81724e-05 1.8258e-05 1.83581e-05 1.84759e-05 1.86126e-05 1.8767e-05 1.89365e-05 1.91211e-05 1.9328e-05 1.95638e-05 1.98346e-05 2.01501e-05 2.05239e-05 2.09686e-05 2.14894e-05 2.20705e-05 2.2723e-05 2.34642e-05 2.43902e-05 2.54848e-05 2.68211e-05 2.83615e-05 2.9907e-05 3.18257e-05 1.70175e-05 1.70394e-05 1.70634e-05 1.70897e-05 1.71184e-05 1.71498e-05 1.71842e-05 1.72219e-05 1.72634e-05 1.73092e-05 1.736e-05 1.74166e-05 1.74801e-05 1.75518e-05 1.76333e-05 1.77267e-05 1.78339e-05 1.79564e-05 1.80944e-05 1.82472e-05 1.84148e-05 1.86011e-05 1.88118e-05 1.90536e-05 1.9334e-05 1.96623e-05 2.00453e-05 2.04919e-05 2.09985e-05 2.15907e-05 2.22505e-05 2.30637e-05 2.39922e-05 2.50565e-05 2.64459e-05 2.76072e-05 2.93926e-05 1.57768e-05 1.57965e-05 1.58182e-05 1.5842e-05 1.5868e-05 1.58965e-05 1.59278e-05 1.59621e-05 1.6e-05 1.60421e-05 1.6089e-05 1.61416e-05 1.6201e-05 1.62683e-05 1.63452e-05 1.6433e-05 1.65332e-05 1.66465e-05 1.6773e-05 1.69122e-05 1.70648e-05 1.72333e-05 1.74216e-05 1.76344e-05 1.7877e-05 1.81572e-05 1.84807e-05 1.88594e-05 1.92839e-05 1.9798e-05 2.03312e-05 2.10559e-05 2.17585e-05 2.26786e-05 2.37822e-05 2.46238e-05 2.62227e-05 1.32938e-05 1.33114e-05 1.33307e-05 1.33519e-05 1.33751e-05 1.34004e-05 1.34281e-05 1.34586e-05 1.34921e-05 1.35294e-05 1.35709e-05 1.36173e-05 1.36694e-05 1.3728e-05 1.37942e-05 1.38688e-05 1.39527e-05 1.40464e-05 1.41499e-05 1.42633e-05 1.43867e-05 1.45216e-05 1.46703e-05 1.48361e-05 1.50226e-05 1.52353e-05 1.54757e-05 1.57578e-05 1.60595e-05 1.64574e-05 1.6789e-05 1.74011e-05 1.77746e-05 1.85612e-05 1.91829e-05 1.98669e-05 2.10283e-05 7.98784e-06 8.01941e-06 8.0536e-06 8.09056e-06 8.1305e-06 8.17371e-06 8.22049e-06 8.27119e-06 8.32622e-06 8.38611e-06 8.45144e-06 8.52284e-06 8.60103e-06 8.68679e-06 8.78097e-06 8.88446e-06 8.99805e-06 9.12241e-06 9.25804e-06 9.40538e-06 9.56495e-06 9.73759e-06 9.92452e-06 1.01273e-05 1.03478e-05 1.05882e-05 1.08513e-05 1.11394e-05 1.14558e-05 1.18048e-05 1.21797e-05 1.26273e-05 1.30185e-05 1.36753e-05 1.40332e-05 1.48658e-05 1.53597e-05 8.35622e-06 8.38648e-06 8.41894e-06 8.4537e-06 8.49082e-06 8.53031e-06 8.57215e-06 8.61623e-06 8.66232e-06 8.70992e-06 8.75803e-06 8.80489e-06 8.84728e-06 8.87975e-06 8.8925e-06 8.87273e-06 8.80921e-06 9.52393e-06 2.24875e-05 3.6851e-05 3.31294e-05 3.78617e-05 5.19702e-05 5.62383e-05 5.83484e-05 6.05345e-05 6.30777e-05 6.52215e-05 6.57825e-05 6.39676e-05 6.06872e-05 5.3151e-05 4.3019e-05 3.26475e-05 5.17588e-05 0.000192053 0.000470529 1.42618e-05 1.42765e-05 1.42924e-05 1.43092e-05 1.43269e-05 1.43452e-05 1.4364e-05 1.43825e-05 1.44001e-05 1.44154e-05 1.4426e-05 1.4428e-05 1.44165e-05 1.43873e-05 1.43404e-05 1.43188e-05 1.45839e-05 1.59665e-05 1.974e-05 2.35942e-05 2.4966e-05 3.06894e-05 4.2011e-05 4.78649e-05 5.17301e-05 5.73615e-05 6.82454e-05 8.10864e-05 8.32572e-05 7.68974e-05 6.88585e-05 5.95184e-05 5.5084e-05 4.88208e-05 5.3572e-05 9.26185e-05 0.000204191 1.69334e-05 1.69504e-05 1.69688e-05 1.69887e-05 1.70099e-05 1.70324e-05 1.70561e-05 1.70807e-05 1.71056e-05 1.71301e-05 1.71529e-05 1.71729e-05 1.71895e-05 1.72059e-05 1.72374e-05 1.73256e-05 1.75831e-05 1.82998e-05 1.95294e-05 2.0343e-05 2.11624e-05 2.20257e-05 2.36401e-05 2.65976e-05 2.97348e-05 3.20518e-05 3.52869e-05 3.9878e-05 4.37305e-05 4.53808e-05 4.7367e-05 4.87914e-05 4.98341e-05 5.02835e-05 5.1564e-05 5.56029e-05 7.13325e-05 1.8271e-05 1.82904e-05 1.83114e-05 1.83343e-05 1.83589e-05 1.83854e-05 1.84136e-05 1.84436e-05 1.8475e-05 1.85075e-05 1.85408e-05 1.85746e-05 1.86099e-05 1.86515e-05 1.87126e-05 1.88276e-05 1.90671e-05 1.95719e-05 2.04172e-05 2.10902e-05 2.14091e-05 2.16825e-05 2.2119e-05 2.28781e-05 2.42527e-05 2.62506e-05 2.89698e-05 3.21349e-05 3.45312e-05 3.58455e-05 3.74421e-05 3.94829e-05 4.20335e-05 4.38772e-05 4.64336e-05 4.73482e-05 4.98074e-05 1.89289e-05 1.895e-05 1.89729e-05 1.89979e-05 1.9025e-05 1.90544e-05 1.90862e-05 1.91203e-05 1.91567e-05 1.91955e-05 1.92364e-05 1.92799e-05 1.93268e-05 1.938e-05 1.9446e-05 1.95382e-05 1.96792e-05 1.99046e-05 2.02442e-05 2.06111e-05 2.09215e-05 2.12215e-05 2.15966e-05 2.21028e-05 2.27598e-05 2.3624e-05 2.48037e-05 2.62227e-05 2.74763e-05 2.84566e-05 2.96635e-05 3.13184e-05 3.35219e-05 3.60587e-05 3.89206e-05 4.11593e-05 4.36855e-05 1.91971e-05 1.9219e-05 1.9243e-05 1.92692e-05 1.92978e-05 1.9329e-05 1.93629e-05 1.93998e-05 1.94397e-05 1.94831e-05 1.95303e-05 1.95821e-05 1.96404e-05 1.97083e-05 1.97916e-05 1.99002e-05 2.00472e-05 2.02446e-05 2.04848e-05 2.07278e-05 2.09626e-05 2.12187e-05 2.15231e-05 2.18951e-05 2.2367e-05 2.29778e-05 2.37672e-05 2.47071e-05 2.56448e-05 2.65237e-05 2.75515e-05 2.89179e-05 3.06621e-05 3.28858e-05 3.51028e-05 3.74438e-05 3.9629e-05 1.9197e-05 1.92191e-05 1.92433e-05 1.92698e-05 1.92988e-05 1.93306e-05 1.93653e-05 1.94032e-05 1.94448e-05 1.94902e-05 1.95402e-05 1.95954e-05 1.96572e-05 1.97277e-05 1.98101e-05 1.9909e-05 2.00305e-05 2.01813e-05 2.03636e-05 2.05653e-05 2.07767e-05 2.10081e-05 2.12735e-05 2.15871e-05 2.19676e-05 2.24343e-05 2.30036e-05 2.36714e-05 2.44018e-05 2.51875e-05 2.60988e-05 2.72398e-05 2.86381e-05 3.03767e-05 3.23421e-05 3.44107e-05 3.66842e-05 1.8929e-05 1.89505e-05 1.89742e-05 1.90002e-05 1.90287e-05 1.906e-05 1.90945e-05 1.91324e-05 1.91742e-05 1.92206e-05 1.92722e-05 1.93302e-05 1.93961e-05 1.9472e-05 1.95609e-05 1.96662e-05 1.97914e-05 1.9938e-05 2.01042e-05 2.02858e-05 2.04817e-05 2.06998e-05 2.0948e-05 2.1234e-05 2.15695e-05 2.19711e-05 2.24528e-05 2.30217e-05 2.36655e-05 2.43918e-05 2.52278e-05 2.62535e-05 2.74886e-05 2.89559e-05 3.06753e-05 3.24245e-05 3.44769e-05 1.82713e-05 1.82914e-05 1.83136e-05 1.8338e-05 1.83649e-05 1.83945e-05 1.84271e-05 1.84632e-05 1.85032e-05 1.85477e-05 1.85976e-05 1.86537e-05 1.87173e-05 1.879e-05 1.88738e-05 1.89709e-05 1.90836e-05 1.92133e-05 1.93604e-05 1.95238e-05 1.97036e-05 1.99035e-05 2.01302e-05 2.03906e-05 2.06933e-05 2.10491e-05 2.14679e-05 2.19589e-05 2.25213e-05 2.31759e-05 2.39214e-05 2.48168e-05 2.58782e-05 2.70557e-05 2.86044e-05 2.99615e-05 3.18521e-05 1.6934e-05 1.6952e-05 1.69719e-05 1.69939e-05 1.70181e-05 1.70448e-05 1.70742e-05 1.71068e-05 1.71432e-05 1.71838e-05 1.72295e-05 1.72811e-05 1.73399e-05 1.74072e-05 1.74847e-05 1.7574e-05 1.76766e-05 1.77933e-05 1.79242e-05 1.80688e-05 1.82274e-05 1.84029e-05 1.85995e-05 1.88225e-05 1.90783e-05 1.93756e-05 1.97218e-05 2.01288e-05 2.05924e-05 2.1147e-05 2.17499e-05 2.25167e-05 2.33451e-05 2.43034e-05 2.55708e-05 2.65337e-05 2.81625e-05 1.42634e-05 1.42795e-05 1.42975e-05 1.43172e-05 1.43389e-05 1.43627e-05 1.4389e-05 1.4418e-05 1.44502e-05 1.44862e-05 1.45265e-05 1.45719e-05 1.46231e-05 1.46813e-05 1.47474e-05 1.48225e-05 1.49074e-05 1.50029e-05 1.51089e-05 1.52256e-05 1.53532e-05 1.54933e-05 1.56485e-05 1.58223e-05 1.60187e-05 1.62435e-05 1.64993e-05 1.67989e-05 1.71274e-05 1.75432e-05 1.7932e-05 1.85447e-05 1.90103e-05 1.97774e-05 2.06044e-05 2.11999e-05 2.24608e-05 8.3573e-06 8.38824e-06 8.42171e-06 8.4579e-06 8.49707e-06 8.53951e-06 8.58554e-06 8.6355e-06 8.68984e-06 8.7491e-06 8.81386e-06 8.88478e-06 8.96257e-06 9.04804e-06 9.14203e-06 9.2454e-06 9.3589e-06 9.48318e-06 9.61876e-06 9.76606e-06 9.9256e-06 1.00982e-05 1.02852e-05 1.04883e-05 1.07093e-05 1.09508e-05 1.12155e-05 1.15059e-05 1.18262e-05 1.21785e-05 1.25667e-05 1.3001e-05 1.34593e-05 1.40165e-05 1.45367e-05 1.52343e-05 1.58667e-05 8.58992e-06 8.61949e-06 8.65124e-06 8.68526e-06 8.7216e-06 8.7603e-06 8.80133e-06 8.84465e-06 8.89006e-06 8.93717e-06 8.9852e-06 9.03273e-06 9.07738e-06 9.11541e-06 9.14121e-06 9.14892e-06 9.14066e-06 9.18997e-06 1.12712e-05 1.62714e-05 1.65701e-05 1.66494e-05 2.08574e-05 3.51814e-05 4.81816e-05 5.15125e-05 5.31365e-05 5.35288e-05 5.1646e-05 4.71074e-05 4.08563e-05 3.27741e-05 2.32908e-05 2.01116e-05 2.83509e-05 5.7782e-05 0.000224961 1.49111e-05 1.49243e-05 1.49386e-05 1.49538e-05 1.49698e-05 1.49864e-05 1.50033e-05 1.50201e-05 1.50362e-05 1.50502e-05 1.50601e-05 1.50628e-05 1.50541e-05 1.50317e-05 1.4995e-05 1.49727e-05 1.50956e-05 1.57652e-05 1.72707e-05 1.84282e-05 1.86235e-05 1.93147e-05 2.18651e-05 2.89662e-05 4.1108e-05 4.4429e-05 4.81357e-05 5.37306e-05 5.51391e-05 5.12792e-05 4.64387e-05 4.08212e-05 3.89704e-05 3.53393e-05 3.91731e-05 5.62659e-05 0.000118374 1.77333e-05 1.77488e-05 1.77656e-05 1.77839e-05 1.78034e-05 1.78243e-05 1.78463e-05 1.78693e-05 1.78928e-05 1.79161e-05 1.79385e-05 1.79591e-05 1.79781e-05 1.79999e-05 1.80394e-05 1.81347e-05 1.83684e-05 1.89222e-05 1.98558e-05 2.04384e-05 2.08137e-05 2.11423e-05 2.17495e-05 2.3672e-05 2.74764e-05 3.07284e-05 3.36159e-05 3.6609e-05 3.9047e-05 4.03819e-05 4.21353e-05 4.35388e-05 4.48485e-05 4.64873e-05 4.66813e-05 4.84984e-05 5.72728e-05 1.91501e-05 1.91679e-05 1.91874e-05 1.92086e-05 1.92317e-05 1.92565e-05 1.92832e-05 1.93117e-05 1.93418e-05 1.93732e-05 1.94059e-05 1.944e-05 1.94771e-05 1.95223e-05 1.9589e-05 1.9708e-05 1.99364e-05 2.03766e-05 2.10878e-05 2.16945e-05 2.19708e-05 2.21954e-05 2.25587e-05 2.31072e-05 2.40618e-05 2.56344e-05 2.78997e-05 3.05388e-05 3.26552e-05 3.39072e-05 3.52735e-05 3.70377e-05 3.88968e-05 4.12106e-05 4.35448e-05 4.46908e-05 4.74986e-05 1.9856e-05 1.98755e-05 1.98969e-05 1.99204e-05 1.9946e-05 1.99739e-05 2.00041e-05 2.00369e-05 2.00721e-05 2.01099e-05 2.01505e-05 2.01943e-05 2.0243e-05 2.03001e-05 2.03731e-05 2.04759e-05 2.06302e-05 2.08642e-05 2.11911e-05 2.1536e-05 2.1836e-05 2.21283e-05 2.24843e-05 2.29642e-05 2.35811e-05 2.43642e-05 2.54157e-05 2.66835e-05 2.79028e-05 2.8947e-05 3.01636e-05 3.17034e-05 3.36132e-05 3.60099e-05 3.86135e-05 4.0843e-05 4.34017e-05 2.01479e-05 2.01684e-05 2.01909e-05 2.02156e-05 2.02427e-05 2.02725e-05 2.0305e-05 2.03406e-05 2.03794e-05 2.04219e-05 2.04687e-05 2.05209e-05 2.05803e-05 2.06508e-05 2.07385e-05 2.08536e-05 2.10087e-05 2.12147e-05 2.14666e-05 2.17177e-05 2.19547e-05 2.2209e-05 2.2509e-05 2.28718e-05 2.33292e-05 2.39231e-05 2.46897e-05 2.56046e-05 2.65493e-05 2.74668e-05 2.85234e-05 2.98777e-05 3.15663e-05 3.37194e-05 3.58784e-05 3.81757e-05 4.04496e-05 2.01479e-05 2.01685e-05 2.01913e-05 2.02163e-05 2.02439e-05 2.02742e-05 2.03075e-05 2.03443e-05 2.03847e-05 2.04294e-05 2.0479e-05 2.05345e-05 2.05975e-05 2.06705e-05 2.07572e-05 2.08627e-05 2.09935e-05 2.11556e-05 2.13502e-05 2.15652e-05 2.17901e-05 2.20351e-05 2.23157e-05 2.26429e-05 2.30369e-05 2.35188e-05 2.41077e-05 2.48029e-05 2.55759e-05 2.64188e-05 2.73965e-05 2.85988e-05 3.00661e-05 3.18749e-05 3.39311e-05 3.61015e-05 3.84844e-05 1.98563e-05 1.98763e-05 1.98984e-05 1.99229e-05 1.99499e-05 1.99798e-05 2.00128e-05 2.00494e-05 2.00901e-05 2.01356e-05 2.01867e-05 2.02445e-05 2.0311e-05 2.03883e-05 2.04797e-05 2.05889e-05 2.07196e-05 2.08733e-05 2.10484e-05 2.12395e-05 2.14451e-05 2.16727e-05 2.19316e-05 2.22302e-05 2.25812e-05 2.30017e-05 2.35085e-05 2.41097e-05 2.47972e-05 2.55776e-05 2.64814e-05 2.75767e-05 2.88985e-05 3.0452e-05 3.22733e-05 3.41437e-05 3.62918e-05 1.91506e-05 1.91692e-05 1.91899e-05 1.92127e-05 1.9238e-05 1.9266e-05 1.92971e-05 1.93317e-05 1.93704e-05 1.94139e-05 1.94628e-05 1.95184e-05 1.95821e-05 1.96555e-05 1.97409e-05 1.98406e-05 1.99572e-05 2.00921e-05 2.02459e-05 2.04175e-05 2.06067e-05 2.08175e-05 2.10565e-05 2.13314e-05 2.16513e-05 2.20283e-05 2.24729e-05 2.29954e-05 2.35984e-05 2.42997e-05 2.51071e-05 2.60648e-05 2.72114e-05 2.84774e-05 3.01137e-05 3.16177e-05 3.35741e-05 1.77341e-05 1.77506e-05 1.7769e-05 1.77893e-05 1.78119e-05 1.78369e-05 1.78647e-05 1.78958e-05 1.79306e-05 1.79699e-05 1.80143e-05 1.80649e-05 1.81229e-05 1.81899e-05 1.82674e-05 1.83572e-05 1.8461e-05 1.85796e-05 1.87131e-05 1.88612e-05 1.90242e-05 1.92048e-05 1.94078e-05 1.96388e-05 1.99047e-05 2.02151e-05 2.05782e-05 2.10062e-05 2.14988e-05 2.20835e-05 2.2737e-05 2.35371e-05 2.44482e-05 2.54461e-05 2.68044e-05 2.78701e-05 2.9534e-05 1.49127e-05 1.49274e-05 1.49438e-05 1.49619e-05 1.49821e-05 1.50045e-05 1.50293e-05 1.50568e-05 1.50876e-05 1.51221e-05 1.51609e-05 1.52049e-05 1.52549e-05 1.53119e-05 1.5377e-05 1.54514e-05 1.55359e-05 1.56313e-05 1.57378e-05 1.58555e-05 1.59848e-05 1.61273e-05 1.62857e-05 1.64638e-05 1.66658e-05 1.68974e-05 1.71626e-05 1.74725e-05 1.78185e-05 1.8244e-05 1.86738e-05 1.92756e-05 1.98322e-05 2.05486e-05 2.15167e-05 2.20977e-05 2.3416e-05 8.59096e-06 8.6212e-06 8.65393e-06 8.68931e-06 8.72755e-06 8.7689e-06 8.81381e-06 8.86266e-06 8.9159e-06 8.97407e-06 9.03778e-06 9.10766e-06 9.18442e-06 9.26887e-06 9.36185e-06 9.46419e-06 9.57663e-06 9.69977e-06 9.83407e-06 9.98006e-06 1.01383e-05 1.03096e-05 1.04953e-05 1.06972e-05 1.09175e-05 1.11583e-05 1.14227e-05 1.17132e-05 1.20341e-05 1.23873e-05 1.27789e-05 1.32127e-05 1.36865e-05 1.42251e-05 1.48053e-05 1.54306e-05 1.61599e-05 8.73629e-06 8.76516e-06 8.79619e-06 8.82946e-06 8.86503e-06 8.90293e-06 8.94318e-06 8.98576e-06 9.03056e-06 9.07726e-06 9.12527e-06 9.17354e-06 9.22036e-06 9.26328e-06 9.29923e-06 9.32613e-06 9.34823e-06 9.37876e-06 9.66888e-06 1.0588e-05 1.09507e-05 1.11297e-05 1.1921e-05 1.46098e-05 2.13345e-05 2.95478e-05 3.54991e-05 3.77007e-05 3.62672e-05 3.21457e-05 2.66219e-05 2.11064e-05 1.57186e-05 1.99279e-05 4.81426e-05 5.8629e-05 0.000108826 1.53436e-05 1.53554e-05 1.53683e-05 1.5382e-05 1.53965e-05 1.54115e-05 1.54269e-05 1.54423e-05 1.54571e-05 1.54703e-05 1.54802e-05 1.54842e-05 1.54792e-05 1.5464e-05 1.54384e-05 1.54217e-05 1.54807e-05 1.57949e-05 1.64884e-05 1.6962e-05 1.69934e-05 1.69286e-05 1.71617e-05 1.87116e-05 2.27276e-05 2.69712e-05 3.06128e-05 3.28297e-05 3.29927e-05 3.1461e-05 2.97272e-05 2.74567e-05 2.82697e-05 3.04893e-05 4.17393e-05 5.93956e-05 9.53559e-05 1.82872e-05 1.83013e-05 1.83168e-05 1.83335e-05 1.83516e-05 1.8371e-05 1.83916e-05 1.84133e-05 1.84356e-05 1.84582e-05 1.84805e-05 1.8502e-05 1.85237e-05 1.85502e-05 1.85951e-05 1.86911e-05 1.88982e-05 1.93285e-05 2.00305e-05 2.05181e-05 2.07497e-05 2.09272e-05 2.11841e-05 2.18165e-05 2.33233e-05 2.60986e-05 2.91606e-05 3.17834e-05 3.39369e-05 3.5515e-05 3.73876e-05 3.87814e-05 4.02104e-05 4.20895e-05 4.20497e-05 4.54007e-05 5.68495e-05 1.97709e-05 1.97874e-05 1.98055e-05 1.98253e-05 1.98469e-05 1.98704e-05 1.98958e-05 1.9923e-05 1.9952e-05 1.99828e-05 2.00153e-05 2.00501e-05 2.00891e-05 2.01376e-05 2.02081e-05 2.03268e-05 2.05381e-05 2.09094e-05 2.1476e-05 2.19852e-05 2.22506e-05 2.24641e-05 2.27726e-05 2.32015e-05 2.38618e-05 2.49042e-05 2.65038e-05 2.84745e-05 3.02174e-05 3.14228e-05 3.26715e-05 3.40833e-05 3.5767e-05 3.86984e-05 4.04522e-05 4.18079e-05 4.50582e-05 2.05173e-05 2.05356e-05 2.05556e-05 2.05777e-05 2.0602e-05 2.06286e-05 2.06576e-05 2.06892e-05 2.07234e-05 2.07606e-05 2.0801e-05 2.08455e-05 2.0896e-05 2.09566e-05 2.10351e-05 2.1145e-05 2.13058e-05 2.15386e-05 2.18483e-05 2.21668e-05 2.24493e-05 2.27314e-05 2.30641e-05 2.34875e-05 2.40333e-05 2.47266e-05 2.56239e-05 2.67004e-05 2.78033e-05 2.8822e-05 2.99845e-05 3.13858e-05 3.30849e-05 3.54709e-05 3.7795e-05 3.99687e-05 4.2566e-05 2.08293e-05 2.08485e-05 2.08697e-05 2.08931e-05 2.09189e-05 2.09474e-05 2.09787e-05 2.10132e-05 2.10511e-05 2.1093e-05 2.11395e-05 2.1192e-05 2.12526e-05 2.13252e-05 2.14163e-05 2.15355e-05 2.16945e-05 2.19025e-05 2.21547e-05 2.24117e-05 2.26513e-05 2.29048e-05 2.32003e-05 2.35507e-05 2.39884e-05 2.45504e-05 2.52674e-05 2.6125e-05 2.70376e-05 2.79555e-05 2.90076e-05 3.03265e-05 3.19563e-05 3.40778e-05 3.61755e-05 3.83978e-05 4.07119e-05 2.08295e-05 2.08488e-05 2.08702e-05 2.08939e-05 2.09201e-05 2.09492e-05 2.09813e-05 2.1017e-05 2.10565e-05 2.11005e-05 2.11497e-05 2.12054e-05 2.12694e-05 2.13445e-05 2.14345e-05 2.1545e-05 2.16821e-05 2.18515e-05 2.20533e-05 2.22765e-05 2.25109e-05 2.27655e-05 2.30555e-05 2.33926e-05 2.37926e-05 2.42791e-05 2.48711e-05 2.55715e-05 2.63613e-05 2.7234e-05 2.82464e-05 2.9477e-05 3.09704e-05 3.28172e-05 3.49024e-05 3.71046e-05 3.95277e-05 2.05178e-05 2.05365e-05 2.05573e-05 2.05804e-05 2.06061e-05 2.06346e-05 2.06664e-05 2.07018e-05 2.07415e-05 2.07861e-05 2.08366e-05 2.08943e-05 2.0961e-05 2.10393e-05 2.11324e-05 2.12442e-05 2.13784e-05 2.15367e-05 2.17176e-05 2.1916e-05 2.21295e-05 2.23653e-05 2.26332e-05 2.29422e-05 2.33048e-05 2.37383e-05 2.42604e-05 2.4881e-05 2.55963e-05 2.64133e-05 2.73627e-05 2.8503e-05 2.98743e-05 3.14809e-05 3.33521e-05 3.52874e-05 3.74928e-05 1.97717e-05 1.97889e-05 1.98082e-05 1.98296e-05 1.98534e-05 1.988e-05 1.99097e-05 1.9943e-05 1.99805e-05 2.00228e-05 2.00709e-05 2.01259e-05 2.01893e-05 2.0263e-05 2.03492e-05 2.04505e-05 2.05695e-05 2.07077e-05 2.08658e-05 2.1043e-05 2.12391e-05 2.1458e-05 2.17064e-05 2.19922e-05 2.2325e-05 2.27169e-05 2.31794e-05 2.37238e-05 2.43553e-05 2.50899e-05 2.59407e-05 2.69427e-05 2.81422e-05 2.94716e-05 3.11505e-05 3.27549e-05 3.4749e-05 1.82882e-05 1.83033e-05 1.83202e-05 1.83391e-05 1.83601e-05 1.83836e-05 1.84099e-05 1.84395e-05 1.84729e-05 1.85107e-05 1.85539e-05 1.86033e-05 1.86603e-05 1.87264e-05 1.88034e-05 1.8893e-05 1.89968e-05 1.91159e-05 1.92505e-05 1.94004e-05 1.95661e-05 1.97503e-05 1.99578e-05 2.01946e-05 2.04682e-05 2.0788e-05 2.11635e-05 2.16064e-05 2.21198e-05 2.27264e-05 2.3416e-05 2.42408e-05 2.52041e-05 2.62375e-05 2.76364e-05 2.87888e-05 3.04697e-05 1.53452e-05 1.53584e-05 1.53733e-05 1.539e-05 1.54086e-05 1.54294e-05 1.54527e-05 1.54787e-05 1.5508e-05 1.55409e-05 1.55782e-05 1.56206e-05 1.5669e-05 1.57244e-05 1.57881e-05 1.5861e-05 1.59442e-05 1.60383e-05 1.61438e-05 1.62609e-05 1.639e-05 1.65329e-05 1.66923e-05 1.68721e-05 1.70767e-05 1.73118e-05 1.75822e-05 1.78977e-05 1.82546e-05 1.86849e-05 1.91428e-05 1.97333e-05 2.03523e-05 2.1037e-05 2.20703e-05 2.26684e-05 2.40317e-05 8.73729e-06 8.76683e-06 8.79881e-06 8.83341e-06 8.87081e-06 8.91129e-06 8.95516e-06 9.00293e-06 9.05509e-06 9.11217e-06 9.17478e-06 9.24353e-06 9.31913e-06 9.40236e-06 9.49405e-06 9.59502e-06 9.70598e-06 9.82751e-06 9.96013e-06 1.01044e-05 1.0261e-05 1.04306e-05 1.06146e-05 1.08147e-05 1.10328e-05 1.12716e-05 1.1534e-05 1.18231e-05 1.21428e-05 1.24958e-05 1.28876e-05 1.33236e-05 1.37959e-05 1.43543e-05 1.4889e-05 1.56394e-05 1.61732e-05 8.82577e-06 8.85404e-06 8.88443e-06 8.91705e-06 8.95195e-06 8.98918e-06 9.02879e-06 9.07079e-06 9.11512e-06 9.16159e-06 9.20976e-06 9.25886e-06 9.30773e-06 9.35489e-06 9.39887e-06 9.43942e-06 9.48114e-06 9.53804e-06 9.64197e-06 9.87435e-06 1.00827e-05 1.02375e-05 1.04171e-05 1.08623e-05 1.20751e-05 1.43807e-05 1.74709e-05 2.01376e-05 2.04885e-05 1.92463e-05 1.67655e-05 1.46883e-05 1.392e-05 3.06484e-05 7.15552e-05 7.01845e-05 7.52757e-05 1.56277e-05 1.56384e-05 1.565e-05 1.56625e-05 1.56757e-05 1.56895e-05 1.57036e-05 1.57179e-05 1.57319e-05 1.57446e-05 1.57548e-05 1.57607e-05 1.57596e-05 1.57512e-05 1.57364e-05 1.57286e-05 1.57627e-05 1.59192e-05 1.62664e-05 1.65075e-05 1.65201e-05 1.64754e-05 1.64843e-05 1.66111e-05 1.72372e-05 1.87333e-05 2.05093e-05 2.16454e-05 2.18946e-05 2.1542e-05 2.12903e-05 2.13835e-05 2.33008e-05 2.95822e-05 4.7305e-05 6.99317e-05 0.000130039 1.86677e-05 1.86807e-05 1.86948e-05 1.87103e-05 1.87271e-05 1.87452e-05 1.87646e-05 1.87851e-05 1.88066e-05 1.88287e-05 1.88511e-05 1.88738e-05 1.88981e-05 1.89285e-05 1.89771e-05 1.90702e-05 1.92529e-05 1.95917e-05 2.01158e-05 2.05244e-05 2.07185e-05 2.08749e-05 2.10766e-05 2.14093e-05 2.20902e-05 2.33384e-05 2.51257e-05 2.70572e-05 2.88438e-05 3.0293e-05 3.19785e-05 3.29367e-05 3.52096e-05 3.57603e-05 3.76559e-05 4.2928e-05 6.10179e-05 2.02079e-05 2.02232e-05 2.02401e-05 2.02586e-05 2.0279e-05 2.03013e-05 2.03255e-05 2.03517e-05 2.03799e-05 2.04101e-05 2.04427e-05 2.04783e-05 2.05192e-05 2.05705e-05 2.06434e-05 2.07593e-05 2.09522e-05 2.12644e-05 2.17128e-05 2.21312e-05 2.23845e-05 2.25991e-05 2.2885e-05 2.32457e-05 2.37381e-05 2.44562e-05 2.5523e-05 2.6866e-05 2.81488e-05 2.91408e-05 3.02197e-05 3.13374e-05 3.30784e-05 3.59067e-05 3.72313e-05 3.91015e-05 4.25025e-05 2.09888e-05 2.10059e-05 2.10248e-05 2.10457e-05 2.10687e-05 2.10941e-05 2.1122e-05 2.11526e-05 2.11861e-05 2.12228e-05 2.12632e-05 2.13084e-05 2.13606e-05 2.1424e-05 2.15065e-05 2.16204e-05 2.17826e-05 2.20088e-05 2.2299e-05 2.25979e-05 2.28663e-05 2.3137e-05 2.34509e-05 2.38363e-05 2.43186e-05 2.49212e-05 2.56839e-05 2.65912e-05 2.75531e-05 2.84811e-05 2.95443e-05 3.07911e-05 3.23469e-05 3.46984e-05 3.67637e-05 3.88185e-05 4.1359e-05 2.13178e-05 2.13358e-05 2.13559e-05 2.13781e-05 2.14027e-05 2.143e-05 2.14603e-05 2.14937e-05 2.15308e-05 2.15721e-05 2.16185e-05 2.16713e-05 2.17328e-05 2.18072e-05 2.19005e-05 2.20218e-05 2.21817e-05 2.23873e-05 2.26343e-05 2.2891e-05 2.3134e-05 2.33891e-05 2.36825e-05 2.40254e-05 2.44427e-05 2.49687e-05 2.56348e-05 2.64299e-05 2.72949e-05 2.81908e-05 2.92208e-05 3.04936e-05 3.20684e-05 3.41595e-05 3.61951e-05 3.83084e-05 4.06165e-05 2.1318e-05 2.13362e-05 2.13564e-05 2.13789e-05 2.1404e-05 2.14318e-05 2.14629e-05 2.14975e-05 2.15362e-05 2.15795e-05 2.16285e-05 2.16843e-05 2.1749e-05 2.18256e-05 2.1918e-05 2.20317e-05 2.21726e-05 2.23457e-05 2.25509e-05 2.27785e-05 2.30194e-05 2.32808e-05 2.35772e-05 2.39198e-05 2.43235e-05 2.48089e-05 2.53952e-05 2.60893e-05 2.68805e-05 2.77638e-05 2.87896e-05 3.00266e-05 3.15207e-05 3.33809e-05 3.54547e-05 3.76271e-05 4.00262e-05 2.09895e-05 2.1007e-05 2.10266e-05 2.10484e-05 2.10729e-05 2.11002e-05 2.11308e-05 2.11651e-05 2.12038e-05 2.12476e-05 2.12975e-05 2.13548e-05 2.14216e-05 2.15004e-05 2.15944e-05 2.17075e-05 2.18434e-05 2.20041e-05 2.21883e-05 2.23916e-05 2.26112e-05 2.28536e-05 2.31289e-05 2.34463e-05 2.38183e-05 2.42618e-05 2.47934e-05 2.54243e-05 2.6156e-05 2.69968e-05 2.79758e-05 2.91435e-05 3.05399e-05 3.21744e-05 3.40604e-05 3.60243e-05 3.82585e-05 2.02088e-05 2.02249e-05 2.02428e-05 2.0263e-05 2.02855e-05 2.03108e-05 2.03392e-05 2.03713e-05 2.04076e-05 2.04489e-05 2.0496e-05 2.05503e-05 2.06132e-05 2.06867e-05 2.07731e-05 2.08751e-05 2.0995e-05 2.11349e-05 2.12953e-05 2.14759e-05 2.16766e-05 2.19012e-05 2.21564e-05 2.24502e-05 2.27924e-05 2.31949e-05 2.36699e-05 2.42293e-05 2.48805e-05 2.56386e-05 2.65195e-05 2.75524e-05 2.87837e-05 3.01555e-05 3.18481e-05 3.35157e-05 3.55249e-05 1.86689e-05 1.86828e-05 1.86984e-05 1.87159e-05 1.87355e-05 1.87576e-05 1.87825e-05 1.88106e-05 1.88426e-05 1.88792e-05 1.8921e-05 1.89692e-05 1.9025e-05 1.90901e-05 1.9166e-05 1.92547e-05 1.93577e-05 1.94762e-05 1.96107e-05 1.97611e-05 1.99281e-05 2.01144e-05 2.0325e-05 2.0566e-05 2.0845e-05 2.11717e-05 2.1556e-05 2.20096e-05 2.25383e-05 2.31608e-05 2.38762e-05 2.4719e-05 2.57137e-05 2.67765e-05 2.8184e-05 2.94077e-05 3.10836e-05 1.56293e-05 1.56413e-05 1.5655e-05 1.56703e-05 1.56874e-05 1.57067e-05 1.57286e-05 1.57532e-05 1.57809e-05 1.58124e-05 1.58481e-05 1.58889e-05 1.59357e-05 1.59894e-05 1.60513e-05 1.61223e-05 1.62037e-05 1.62959e-05 1.63996e-05 1.6515e-05 1.66429e-05 1.67849e-05 1.6944e-05 1.7124e-05 1.73294e-05 1.7566e-05 1.7839e-05 1.81573e-05 1.85212e-05 1.89536e-05 1.94306e-05 2.0013e-05 2.0668e-05 2.13463e-05 2.23824e-05 2.30186e-05 2.4376e-05 8.82675e-06 8.85566e-06 8.88697e-06 8.92087e-06 8.95754e-06 8.99725e-06 9.0403e-06 9.0872e-06 9.13848e-06 9.19466e-06 9.25632e-06 9.32407e-06 9.39861e-06 9.48069e-06 9.57113e-06 9.67073e-06 9.78017e-06 9.90005e-06 1.00308e-05 1.01731e-05 1.03275e-05 1.04948e-05 1.06765e-05 1.08742e-05 1.10902e-05 1.13268e-05 1.15873e-05 1.18748e-05 1.21933e-05 1.25459e-05 1.29371e-05 1.33747e-05 1.3846e-05 1.44102e-05 1.4936e-05 1.57083e-05 1.62083e-05 8.87863e-06 8.90641e-06 8.93631e-06 8.9684e-06 9.00278e-06 9.0395e-06 9.07863e-06 9.12022e-06 9.16429e-06 9.21071e-06 9.25917e-06 9.30918e-06 9.36e-06 9.41082e-06 9.46114e-06 9.51167e-06 9.56652e-06 9.63549e-06 9.73604e-06 9.88141e-06 1.00433e-05 1.01829e-05 1.03187e-05 1.04861e-05 1.07474e-05 1.11947e-05 1.18971e-05 1.27458e-05 1.31649e-05 1.3104e-05 1.28694e-05 1.26604e-05 1.36811e-05 5.20915e-05 8.29341e-05 8.68943e-05 8.84012e-05 1.58108e-05 1.58206e-05 1.58313e-05 1.58427e-05 1.58549e-05 1.58676e-05 1.58809e-05 1.58944e-05 1.59079e-05 1.59206e-05 1.59315e-05 1.59392e-05 1.59423e-05 1.59401e-05 1.59349e-05 1.59366e-05 1.59632e-05 1.60539e-05 1.62458e-05 1.63871e-05 1.64199e-05 1.6411e-05 1.63988e-05 1.64318e-05 1.65605e-05 1.68405e-05 1.73364e-05 1.7833e-05 1.81479e-05 1.82941e-05 1.85682e-05 1.95408e-05 2.18587e-05 3.29845e-05 5.04749e-05 8.88625e-05 0.000168285 1.89255e-05 1.89374e-05 1.89505e-05 1.89649e-05 1.89806e-05 1.89976e-05 1.90159e-05 1.90356e-05 1.90564e-05 1.90783e-05 1.9101e-05 1.91249e-05 1.91515e-05 1.91851e-05 1.92362e-05 1.93253e-05 1.94857e-05 1.97574e-05 2.01544e-05 2.04957e-05 2.06826e-05 2.08377e-05 2.10426e-05 2.13288e-05 2.17721e-05 2.24638e-05 2.35228e-05 2.48008e-05 2.60608e-05 2.71188e-05 2.83303e-05 2.90661e-05 3.12449e-05 3.21371e-05 3.44259e-05 4.2372e-05 7.35966e-05 2.05123e-05 2.05266e-05 2.05424e-05 2.05599e-05 2.05792e-05 2.06004e-05 2.06236e-05 2.06489e-05 2.06765e-05 2.07064e-05 2.07391e-05 2.07756e-05 2.08182e-05 2.08718e-05 2.09461e-05 2.10584e-05 2.12341e-05 2.14996e-05 2.186e-05 2.22088e-05 2.24491e-05 2.26618e-05 2.29268e-05 2.32542e-05 2.36694e-05 2.42147e-05 2.49752e-05 2.59261e-05 2.68721e-05 2.76529e-05 2.85557e-05 2.94689e-05 3.13416e-05 3.3882e-05 3.50225e-05 3.68722e-05 4.15009e-05 2.13223e-05 2.13383e-05 2.13561e-05 2.1376e-05 2.13979e-05 2.14223e-05 2.14493e-05 2.1479e-05 2.15118e-05 2.15481e-05 2.15886e-05 2.16345e-05 2.16882e-05 2.17539e-05 2.18389e-05 2.19546e-05 2.2115e-05 2.23317e-05 2.26025e-05 2.28852e-05 2.31449e-05 2.34086e-05 2.37105e-05 2.40701e-05 2.45085e-05 2.50468e-05 2.57122e-05 2.64944e-05 2.73348e-05 2.81675e-05 2.91286e-05 3.02473e-05 3.17379e-05 3.40005e-05 3.59526e-05 3.7721e-05 4.03182e-05 2.16656e-05 2.16826e-05 2.17016e-05 2.17227e-05 2.17463e-05 2.17726e-05 2.18018e-05 2.18344e-05 2.18708e-05 2.19117e-05 2.19578e-05 2.20109e-05 2.20732e-05 2.21487e-05 2.22434e-05 2.23654e-05 2.25239e-05 2.27247e-05 2.29639e-05 2.32169e-05 2.34629e-05 2.37205e-05 2.40136e-05 2.43527e-05 2.47575e-05 2.52565e-05 2.58765e-05 2.66145e-05 2.74332e-05 2.83032e-05 2.93098e-05 3.05405e-05 3.20768e-05 3.4125e-05 3.60953e-05 3.80622e-05 4.03514e-05 2.16658e-05 2.1683e-05 2.17021e-05 2.17236e-05 2.17475e-05 2.17744e-05 2.18044e-05 2.18381e-05 2.1876e-05 2.19188e-05 2.19674e-05 2.20233e-05 2.20885e-05 2.2166e-05 2.22599e-05 2.23754e-05 2.25181e-05 2.26924e-05 2.28981e-05 2.31274e-05 2.33722e-05 2.36387e-05 2.39399e-05 2.42864e-05 2.4692e-05 2.51747e-05 2.57536e-05 2.64378e-05 2.72227e-05 2.81062e-05 2.91336e-05 3.03656e-05 3.18509e-05 3.37121e-05 3.5749e-05 3.78527e-05 4.02057e-05 2.1323e-05 2.13395e-05 2.1358e-05 2.13788e-05 2.14021e-05 2.14283e-05 2.14578e-05 2.14912e-05 2.15289e-05 2.15719e-05 2.16212e-05 2.16781e-05 2.17447e-05 2.18235e-05 2.19178e-05 2.20313e-05 2.21677e-05 2.23289e-05 2.25143e-05 2.27203e-05 2.29444e-05 2.31921e-05 2.34732e-05 2.37973e-05 2.41766e-05 2.46274e-05 2.5166e-05 2.58044e-05 2.65474e-05 2.74048e-05 2.8404e-05 2.95888e-05 3.09967e-05 3.26418e-05 3.45256e-05 3.64969e-05 3.87292e-05 2.05134e-05 2.05284e-05 2.05452e-05 2.05642e-05 2.05856e-05 2.06097e-05 2.0637e-05 2.06679e-05 2.07031e-05 2.07434e-05 2.07896e-05 2.08431e-05 2.09053e-05 2.09784e-05 2.10645e-05 2.11662e-05 2.12862e-05 2.14264e-05 2.15876e-05 2.17697e-05 2.19733e-05 2.22018e-05 2.24618e-05 2.27615e-05 2.31104e-05 2.35207e-05 2.40047e-05 2.4575e-05 2.52408e-05 2.60166e-05 2.69199e-05 2.79753e-05 2.92258e-05 3.06242e-05 3.23135e-05 3.40189e-05 3.60259e-05 1.89267e-05 1.89396e-05 1.8954e-05 1.89703e-05 1.89887e-05 1.90096e-05 1.90332e-05 1.90601e-05 1.90908e-05 1.91261e-05 1.91667e-05 1.92136e-05 1.92682e-05 1.9332e-05 1.94067e-05 1.94941e-05 1.95957e-05 1.9713e-05 1.98464e-05 1.99964e-05 2.01637e-05 2.03512e-05 2.05638e-05 2.08076e-05 2.10906e-05 2.14225e-05 2.18134e-05 2.22753e-05 2.28157e-05 2.34507e-05 2.41854e-05 2.50423e-05 2.60555e-05 2.7142e-05 2.85405e-05 2.98198e-05 3.14779e-05 1.58125e-05 1.58235e-05 1.58361e-05 1.58503e-05 1.58662e-05 1.58843e-05 1.59049e-05 1.59282e-05 1.59546e-05 1.59846e-05 1.60189e-05 1.60582e-05 1.61034e-05 1.61554e-05 1.62155e-05 1.62847e-05 1.63639e-05 1.64539e-05 1.65554e-05 1.66687e-05 1.67948e-05 1.69355e-05 1.70936e-05 1.7273e-05 1.74783e-05 1.77152e-05 1.79894e-05 1.83094e-05 1.8678e-05 1.91121e-05 1.9602e-05 2.01804e-05 2.08532e-05 2.15407e-05 2.25427e-05 2.32529e-05 2.45396e-05 8.8796e-06 8.90801e-06 8.93878e-06 8.97211e-06 9.00818e-06 9.04727e-06 9.08967e-06 9.13593e-06 9.18655e-06 9.24204e-06 9.30297e-06 9.36991e-06 9.44354e-06 9.5246e-06 9.61385e-06 9.71203e-06 9.81985e-06 9.93785e-06 1.00667e-05 1.02068e-05 1.03591e-05 1.05244e-05 1.0704e-05 1.08999e-05 1.1114e-05 1.13489e-05 1.16078e-05 1.18937e-05 1.22109e-05 1.25627e-05 1.29536e-05 1.33912e-05 1.38657e-05 1.44243e-05 1.49697e-05 1.56992e-05 1.62976e-05 8.90845e-06 8.93586e-06 8.96536e-06 8.99705e-06 9.03102e-06 9.06736e-06 9.10616e-06 9.14752e-06 9.19148e-06 9.23801e-06 9.28692e-06 9.33789e-06 9.39054e-06 9.44454e-06 9.49995e-06 9.55791e-06 9.62197e-06 9.69924e-06 9.80131e-06 9.93468e-06 1.00823e-05 1.0223e-05 1.03603e-05 1.05081e-05 1.06831e-05 1.0899e-05 1.11614e-05 1.14696e-05 1.17555e-05 1.19879e-05 1.22152e-05 1.22542e-05 1.5185e-05 7.21166e-05 9.4208e-05 9.86626e-05 9.7089e-05 1.59262e-05 1.59352e-05 1.59452e-05 1.59559e-05 1.59673e-05 1.59793e-05 1.59919e-05 1.6005e-05 1.60183e-05 1.60312e-05 1.6043e-05 1.60528e-05 1.60596e-05 1.60634e-05 1.60665e-05 1.60758e-05 1.61037e-05 1.61697e-05 1.6294e-05 1.63983e-05 1.64399e-05 1.64638e-05 1.64937e-05 1.65311e-05 1.65981e-05 1.67327e-05 1.69605e-05 1.72366e-05 1.7492e-05 1.77045e-05 1.78847e-05 1.89256e-05 2.14073e-05 3.83856e-05 5.92113e-05 0.00012032 0.000172637 1.90968e-05 1.91078e-05 1.912e-05 1.91335e-05 1.91483e-05 1.91644e-05 1.9182e-05 1.9201e-05 1.92214e-05 1.92432e-05 1.92664e-05 1.92916e-05 1.93203e-05 1.93566e-05 1.94092e-05 1.94942e-05 1.96358e-05 1.98587e-05 2.01674e-05 2.04544e-05 2.06379e-05 2.07971e-05 2.10034e-05 2.1278e-05 2.16543e-05 2.21686e-05 2.28813e-05 2.37455e-05 2.46043e-05 2.53049e-05 2.60164e-05 2.65664e-05 2.7863e-05 3.03086e-05 3.33052e-05 4.63096e-05 8.26345e-05 2.07211e-05 2.07345e-05 2.07494e-05 2.0766e-05 2.07843e-05 2.08047e-05 2.08271e-05 2.08517e-05 2.08788e-05 2.09086e-05 2.09416e-05 2.0979e-05 2.10231e-05 2.10785e-05 2.11535e-05 2.12621e-05 2.1423e-05 2.1653e-05 2.19513e-05 2.22497e-05 2.2479e-05 2.26914e-05 2.29436e-05 2.32437e-05 2.36085e-05 2.40684e-05 2.46684e-05 2.53943e-05 2.61368e-05 2.67832e-05 2.75523e-05 2.83826e-05 3.02269e-05 3.24959e-05 3.37448e-05 3.57389e-05 4.15561e-05 2.15551e-05 2.15702e-05 2.1587e-05 2.16059e-05 2.1627e-05 2.16505e-05 2.16766e-05 2.17057e-05 2.1738e-05 2.1774e-05 2.18147e-05 2.18612e-05 2.19161e-05 2.19835e-05 2.20701e-05 2.21859e-05 2.23426e-05 2.25489e-05 2.28019e-05 2.30703e-05 2.33248e-05 2.35852e-05 2.38802e-05 2.42253e-05 2.46366e-05 2.51317e-05 2.57312e-05 2.64277e-05 2.71817e-05 2.79436e-05 2.88313e-05 2.98558e-05 3.13106e-05 3.3501e-05 3.53535e-05 3.68713e-05 3.96048e-05 2.19102e-05 2.19263e-05 2.19443e-05 2.19645e-05 2.19872e-05 2.20125e-05 2.2041e-05 2.20728e-05 2.21086e-05 2.21491e-05 2.21951e-05 2.22484e-05 2.23113e-05 2.23876e-05 2.24829e-05 2.26045e-05 2.27603e-05 2.29552e-05 2.31858e-05 2.34336e-05 2.36814e-05 2.3942e-05 2.4236e-05 2.4574e-05 2.4972e-05 2.54534e-05 2.6041e-05 2.67371e-05 2.75199e-05 2.83695e-05 2.9359e-05 3.05601e-05 3.20722e-05 3.40799e-05 3.59862e-05 3.78185e-05 4.00909e-05 2.19105e-05 2.19267e-05 2.19449e-05 2.19654e-05 2.19884e-05 2.20143e-05 2.20435e-05 2.20764e-05 2.21136e-05 2.21558e-05 2.22041e-05 2.226e-05 2.23255e-05 2.24036e-05 2.24983e-05 2.26146e-05 2.27575e-05 2.29311e-05 2.31355e-05 2.33645e-05 2.36117e-05 2.38819e-05 2.41868e-05 2.45368e-05 2.49443e-05 2.54256e-05 2.59983e-05 2.66727e-05 2.74495e-05 2.83307e-05 2.93572e-05 3.05821e-05 3.2055e-05 3.38967e-05 3.58916e-05 3.7931e-05 4.02407e-05 2.15558e-05 2.15714e-05 2.15889e-05 2.16087e-05 2.16311e-05 2.16563e-05 2.16849e-05 2.17174e-05 2.17543e-05 2.17965e-05 2.18452e-05 2.19017e-05 2.19679e-05 2.20465e-05 2.21406e-05 2.22539e-05 2.23897e-05 2.25502e-05 2.27353e-05 2.29423e-05 2.31694e-05 2.34212e-05 2.37071e-05 2.40366e-05 2.4422e-05 2.48784e-05 2.54221e-05 2.60659e-05 2.68173e-05 2.76868e-05 2.87002e-05 2.9896e-05 3.13088e-05 3.29597e-05 3.48308e-05 3.67899e-05 3.90005e-05 2.07223e-05 2.07364e-05 2.07523e-05 2.07702e-05 2.07906e-05 2.08137e-05 2.084e-05 2.08699e-05 2.09041e-05 2.09435e-05 2.09888e-05 2.10415e-05 2.11031e-05 2.11754e-05 2.12609e-05 2.1362e-05 2.14813e-05 2.16208e-05 2.17817e-05 2.19642e-05 2.21691e-05 2.24001e-05 2.26636e-05 2.29676e-05 2.33219e-05 2.37383e-05 2.42298e-05 2.48092e-05 2.54874e-05 2.62786e-05 2.72005e-05 2.82739e-05 2.95376e-05 3.09535e-05 3.26313e-05 3.43588e-05 3.63527e-05 1.90981e-05 1.911e-05 1.91236e-05 1.91389e-05 1.91562e-05 1.9176e-05 1.91986e-05 1.92244e-05 1.9254e-05 1.92881e-05 1.93276e-05 1.93734e-05 1.94268e-05 1.94894e-05 1.95627e-05 1.96485e-05 1.97486e-05 1.98641e-05 1.99961e-05 2.0145e-05 2.03119e-05 2.04999e-05 2.07137e-05 2.09597e-05 2.12458e-05 2.15819e-05 2.19785e-05 2.24477e-05 2.29985e-05 2.36448e-05 2.43955e-05 2.52648e-05 2.62897e-05 2.7395e-05 2.87779e-05 3.00969e-05 3.1733e-05 1.59279e-05 1.59382e-05 1.59499e-05 1.59632e-05 1.59782e-05 1.59953e-05 1.60148e-05 1.6037e-05 1.60622e-05 1.60911e-05 1.61242e-05 1.61622e-05 1.62059e-05 1.62565e-05 1.63148e-05 1.63821e-05 1.64593e-05 1.65471e-05 1.66463e-05 1.67575e-05 1.68818e-05 1.70207e-05 1.71773e-05 1.73556e-05 1.75602e-05 1.77971e-05 1.80724e-05 1.8394e-05 1.87666e-05 1.92032e-05 1.97024e-05 2.02806e-05 2.09612e-05 2.16595e-05 2.2627e-05 2.33943e-05 2.45994e-05 8.90946e-06 8.93746e-06 8.96781e-06 9.00067e-06 9.03626e-06 9.07483e-06 9.11674e-06 9.16253e-06 9.21266e-06 9.26763e-06 9.32795e-06 9.3942e-06 9.46701e-06 9.54712e-06 9.63526e-06 9.73217e-06 9.83853e-06 9.95487e-06 1.00819e-05 1.02203e-05 1.03706e-05 1.05341e-05 1.07124e-05 1.0907e-05 1.11199e-05 1.13538e-05 1.16117e-05 1.18967e-05 1.2213e-05 1.25638e-05 1.29552e-05 1.33871e-05 1.38746e-05 1.43969e-05 1.50084e-05 1.56157e-05 1.63747e-05 8.92406e-06 8.95117e-06 8.98037e-06 9.01176e-06 9.04544e-06 9.08152e-06 9.12013e-06 9.16139e-06 9.20539e-06 9.25215e-06 9.3016e-06 9.35359e-06 9.40797e-06 9.46473e-06 9.52428e-06 9.58791e-06 9.65866e-06 9.74186e-06 9.84472e-06 9.97183e-06 1.01129e-05 1.02539e-05 1.03975e-05 1.05528e-05 1.07246e-05 1.09164e-05 1.11323e-05 1.13749e-05 1.1629e-05 1.18724e-05 1.20922e-05 1.21888e-05 2.15155e-05 8.4429e-05 9.72723e-05 9.76963e-05 8.39135e-05 1.59969e-05 1.60055e-05 1.60149e-05 1.60251e-05 1.6036e-05 1.60475e-05 1.60598e-05 1.60728e-05 1.60861e-05 1.60996e-05 1.61125e-05 1.61242e-05 1.61345e-05 1.61437e-05 1.61538e-05 1.61702e-05 1.62021e-05 1.62607e-05 1.6355e-05 1.64442e-05 1.6498e-05 1.65451e-05 1.65975e-05 1.66571e-05 1.67397e-05 1.68603e-05 1.70395e-05 1.7253e-05 1.74543e-05 1.76081e-05 1.76894e-05 1.86101e-05 2.20962e-05 4.35797e-05 7.25532e-05 0.000135838 0.000151149 1.9208e-05 1.92183e-05 1.92299e-05 1.92427e-05 1.92568e-05 1.92723e-05 1.92893e-05 1.93079e-05 1.93281e-05 1.935e-05 1.93739e-05 1.94003e-05 1.94309e-05 1.94694e-05 1.95231e-05 1.96045e-05 1.97311e-05 1.99189e-05 2.01674e-05 2.04129e-05 2.05939e-05 2.07594e-05 2.09642e-05 2.12243e-05 2.15589e-05 2.19844e-05 2.25265e-05 2.31543e-05 2.37636e-05 2.42291e-05 2.46164e-05 2.50889e-05 2.60401e-05 2.95356e-05 3.35463e-05 4.86913e-05 8.21246e-05 2.08616e-05 2.08742e-05 2.08883e-05 2.09041e-05 2.09218e-05 2.09414e-05 2.09632e-05 2.09874e-05 2.10142e-05 2.1044e-05 2.10774e-05 2.11157e-05 2.11611e-05 2.1218e-05 2.12934e-05 2.13985e-05 2.15473e-05 2.17509e-05 2.20059e-05 2.22683e-05 2.24901e-05 2.27022e-05 2.29456e-05 2.32295e-05 2.35665e-05 2.39751e-05 2.44828e-05 2.50806e-05 2.57053e-05 2.62764e-05 2.69683e-05 2.77794e-05 2.95838e-05 3.18157e-05 3.3239e-05 3.53993e-05 4.16309e-05 2.17146e-05 2.17289e-05 2.17451e-05 2.17632e-05 2.17835e-05 2.18062e-05 2.18317e-05 2.18602e-05 2.18922e-05 2.19281e-05 2.1969e-05 2.20162e-05 2.20721e-05 2.21407e-05 2.22282e-05 2.23431e-05 2.24952e-05 2.26913e-05 2.29284e-05 2.31843e-05 2.34354e-05 2.36947e-05 2.39862e-05 2.43232e-05 2.47189e-05 2.51873e-05 2.57439e-05 2.63833e-05 2.70803e-05 2.77976e-05 2.86364e-05 2.96105e-05 3.10391e-05 3.32229e-05 3.49896e-05 3.64479e-05 3.92699e-05 2.20793e-05 2.20946e-05 2.21119e-05 2.21313e-05 2.21532e-05 2.21778e-05 2.22055e-05 2.22368e-05 2.22721e-05 2.23122e-05 2.23582e-05 2.24117e-05 2.24751e-05 2.2552e-05 2.26475e-05 2.2768e-05 2.29205e-05 2.31091e-05 2.33311e-05 2.35732e-05 2.38218e-05 2.40854e-05 2.43811e-05 2.47197e-05 2.5115e-05 2.55863e-05 2.61532e-05 2.6821e-05 2.75792e-05 2.84162e-05 2.93965e-05 3.05817e-05 3.20806e-05 3.40639e-05 3.59277e-05 3.76793e-05 3.99527e-05 2.20796e-05 2.2095e-05 2.21124e-05 2.21321e-05 2.21544e-05 2.21795e-05 2.2208e-05 2.22402e-05 2.22768e-05 2.23186e-05 2.23666e-05 2.24225e-05 2.24881e-05 2.25666e-05 2.26616e-05 2.27779e-05 2.29201e-05 2.3092e-05 2.32938e-05 2.35213e-05 2.37696e-05 2.40425e-05 2.43505e-05 2.47037e-05 2.51138e-05 2.5596e-05 2.61662e-05 2.68351e-05 2.76082e-05 2.8491e-05 2.95208e-05 3.07445e-05 3.22099e-05 3.40257e-05 3.59815e-05 3.79748e-05 4.02497e-05 2.17154e-05 2.17302e-05 2.17469e-05 2.17659e-05 2.17875e-05 2.18119e-05 2.18397e-05 2.18714e-05 2.19076e-05 2.19492e-05 2.19973e-05 2.20533e-05 2.21193e-05 2.21975e-05 2.22912e-05 2.24037e-05 2.25383e-05 2.26974e-05 2.28812e-05 2.3088e-05 2.33169e-05 2.35719e-05 2.38617e-05 2.4196e-05 2.45866e-05 2.50482e-05 2.55967e-05 2.62459e-05 2.70052e-05 2.78856e-05 2.89116e-05 3.01171e-05 3.1534e-05 3.31884e-05 3.50419e-05 3.69792e-05 3.91612e-05 2.08628e-05 2.08761e-05 2.08912e-05 2.09084e-05 2.09279e-05 2.09501e-05 2.09755e-05 2.10046e-05 2.10381e-05 2.10766e-05 2.11212e-05 2.11731e-05 2.1234e-05 2.13056e-05 2.13903e-05 2.14905e-05 2.16088e-05 2.17471e-05 2.19068e-05 2.20888e-05 2.22943e-05 2.25268e-05 2.27927e-05 2.31001e-05 2.34589e-05 2.38809e-05 2.43795e-05 2.49679e-05 2.56583e-05 2.64643e-05 2.74033e-05 2.84932e-05 2.97674e-05 3.11984e-05 3.28654e-05 3.46048e-05 3.65787e-05 1.92095e-05 1.92207e-05 1.92334e-05 1.9248e-05 1.92645e-05 1.92834e-05 1.93051e-05 1.933e-05 1.93587e-05 1.93919e-05 1.94304e-05 1.94753e-05 1.95276e-05 1.9589e-05 1.96609e-05 1.97453e-05 1.98436e-05 1.99573e-05 2.00875e-05 2.0235e-05 2.04013e-05 2.05893e-05 2.08038e-05 2.10514e-05 2.13403e-05 2.16804e-05 2.20828e-05 2.25595e-05 2.31208e-05 2.37791e-05 2.45448e-05 2.5427e-05 2.64606e-05 2.75815e-05 2.89478e-05 3.02949e-05 3.19062e-05 1.59989e-05 1.60086e-05 1.60197e-05 1.60323e-05 1.60466e-05 1.60629e-05 1.60815e-05 1.61028e-05 1.61272e-05 1.61551e-05 1.61871e-05 1.6224e-05 1.62666e-05 1.63158e-05 1.63727e-05 1.64383e-05 1.65136e-05 1.65994e-05 1.66963e-05 1.68052e-05 1.69271e-05 1.7064e-05 1.7219e-05 1.7396e-05 1.76e-05 1.78372e-05 1.81139e-05 1.84381e-05 1.88151e-05 1.92554e-05 1.97623e-05 2.03415e-05 2.1027e-05 2.17285e-05 2.26665e-05 2.34525e-05 2.46079e-05 8.92513e-06 8.95282e-06 8.98283e-06 9.01533e-06 9.05053e-06 9.08871e-06 9.1303e-06 9.17577e-06 9.22554e-06 9.28011e-06 9.33995e-06 9.40563e-06 9.47775e-06 9.55703e-06 9.64419e-06 9.73992e-06 9.84494e-06 9.96009e-06 1.00859e-05 1.0223e-05 1.03722e-05 1.05344e-05 1.07108e-05 1.09034e-05 1.11142e-05 1.1346e-05 1.16018e-05 1.1885e-05 1.21994e-05 1.25492e-05 1.29384e-05 1.33722e-05 1.38528e-05 1.43823e-05 1.49824e-05 1.55946e-05 1.63425e-05 8.93122e-06 8.9581e-06 8.98707e-06 9.01823e-06 9.05171e-06 9.08763e-06 9.12615e-06 9.1674e-06 9.21153e-06 9.25861e-06 9.30864e-06 9.36162e-06 9.41757e-06 9.47672e-06 9.53965e-06 9.60769e-06 9.68343e-06 9.77094e-06 9.87506e-06 9.99875e-06 1.01363e-05 1.0279e-05 1.04272e-05 1.05864e-05 1.07613e-05 1.09543e-05 1.11648e-05 1.13935e-05 1.16329e-05 1.18613e-05 1.20525e-05 1.22046e-05 2.95665e-05 8.72831e-05 9.37472e-05 8.17317e-05 5.97159e-05 1.60391e-05 1.60474e-05 1.60564e-05 1.60663e-05 1.60769e-05 1.60883e-05 1.61004e-05 1.61134e-05 1.61271e-05 1.61412e-05 1.61553e-05 1.61691e-05 1.61826e-05 1.61964e-05 1.62126e-05 1.62356e-05 1.6272e-05 1.63291e-05 1.64109e-05 1.64959e-05 1.65617e-05 1.66255e-05 1.66988e-05 1.67823e-05 1.68841e-05 1.70072e-05 1.71664e-05 1.73516e-05 1.75181e-05 1.76215e-05 1.76527e-05 1.85292e-05 2.35608e-05 4.66235e-05 8.30747e-05 0.000130777 0.000134957 1.92784e-05 1.92883e-05 1.92993e-05 1.93116e-05 1.93252e-05 1.93403e-05 1.9357e-05 1.93753e-05 1.93956e-05 1.94178e-05 1.94424e-05 1.947e-05 1.95024e-05 1.95429e-05 1.95975e-05 1.9676e-05 1.97911e-05 1.99537e-05 2.01615e-05 2.0376e-05 2.05541e-05 2.07231e-05 2.09247e-05 2.11741e-05 2.14813e-05 2.18512e-05 2.22937e-05 2.27825e-05 2.32473e-05 2.35876e-05 2.38156e-05 2.4289e-05 2.52874e-05 2.92796e-05 3.54099e-05 4.81676e-05 7.16691e-05 2.09538e-05 2.09659e-05 2.09794e-05 2.09947e-05 2.10118e-05 2.10309e-05 2.10523e-05 2.10761e-05 2.11028e-05 2.11328e-05 2.11667e-05 2.12059e-05 2.12526e-05 2.13107e-05 2.13863e-05 2.14884e-05 2.16276e-05 2.18114e-05 2.20364e-05 2.22735e-05 2.24899e-05 2.27025e-05 2.29415e-05 2.32165e-05 2.35371e-05 2.39166e-05 2.43727e-05 2.48972e-05 2.54544e-05 2.59871e-05 2.6644e-05 2.74717e-05 2.92716e-05 3.15953e-05 3.32202e-05 3.55557e-05 4.1031e-05 2.18216e-05 2.18354e-05 2.18509e-05 2.18684e-05 2.18881e-05 2.19103e-05 2.19353e-05 2.19634e-05 2.19952e-05 2.20312e-05 2.20723e-05 2.21201e-05 2.2177e-05 2.22466e-05 2.23345e-05 2.24481e-05 2.25954e-05 2.27819e-05 2.30055e-05 2.32503e-05 2.34984e-05 2.37576e-05 2.40477e-05 2.43807e-05 2.47677e-05 2.52201e-05 2.57493e-05 2.63526e-05 2.70145e-05 2.77084e-05 2.85238e-05 2.94871e-05 3.09072e-05 3.31115e-05 3.48643e-05 3.63863e-05 3.92147e-05 2.21939e-05 2.22085e-05 2.22251e-05 2.22439e-05 2.22652e-05 2.22892e-05 2.23164e-05 2.23472e-05 2.23822e-05 2.24222e-05 2.24683e-05 2.2522e-05 2.25858e-05 2.26631e-05 2.27584e-05 2.28777e-05 2.30267e-05 2.32092e-05 2.34233e-05 2.36598e-05 2.39083e-05 2.41744e-05 2.44723e-05 2.48128e-05 2.52082e-05 2.56749e-05 2.62301e-05 2.6881e-05 2.7625e-05 2.84583e-05 2.94386e-05 3.06224e-05 3.21164e-05 3.40843e-05 3.59292e-05 3.76559e-05 3.99326e-05 2.21941e-05 2.22089e-05 2.22257e-05 2.22447e-05 2.22663e-05 2.22909e-05 2.23187e-05 2.23504e-05 2.23866e-05 2.24281e-05 2.2476e-05 2.25318e-05 2.25977e-05 2.26763e-05 2.27714e-05 2.28872e-05 2.30282e-05 2.31977e-05 2.33964e-05 2.36217e-05 2.38701e-05 2.4145e-05 2.44557e-05 2.4812e-05 2.52255e-05 2.57103e-05 2.62812e-05 2.69499e-05 2.77245e-05 2.86136e-05 2.96516e-05 3.08811e-05 3.23474e-05 3.41448e-05 3.60736e-05 3.80346e-05 4.02829e-05 2.18225e-05 2.18366e-05 2.18527e-05 2.18711e-05 2.18919e-05 2.19157e-05 2.19429e-05 2.1974e-05 2.20096e-05 2.20507e-05 2.20984e-05 2.21541e-05 2.22197e-05 2.22976e-05 2.23906e-05 2.25022e-05 2.26354e-05 2.27926e-05 2.29745e-05 2.31805e-05 2.34102e-05 2.36676e-05 2.39607e-05 2.42993e-05 2.46949e-05 2.5162e-05 2.57165e-05 2.63726e-05 2.71417e-05 2.80357e-05 2.90771e-05 3.02957e-05 3.17194e-05 3.33767e-05 3.52139e-05 3.7134e-05 3.92872e-05 2.09551e-05 2.09678e-05 2.09823e-05 2.09988e-05 2.10177e-05 2.10392e-05 2.1064e-05 2.10924e-05 2.11252e-05 2.11631e-05 2.12071e-05 2.12584e-05 2.13186e-05 2.13896e-05 2.14734e-05 2.15726e-05 2.16896e-05 2.18264e-05 2.19847e-05 2.21657e-05 2.23711e-05 2.26045e-05 2.28722e-05 2.31825e-05 2.35454e-05 2.39732e-05 2.44793e-05 2.50778e-05 2.57817e-05 2.66043e-05 2.75619e-05 2.86698e-05 2.99555e-05 3.14e-05 3.3058e-05 3.48035e-05 3.67532e-05 1.928e-05 1.92907e-05 1.93029e-05 1.93168e-05 1.93327e-05 1.93509e-05 1.93719e-05 1.93962e-05 1.94242e-05 1.94567e-05 1.94944e-05 1.95384e-05 1.95898e-05 1.96501e-05 1.97209e-05 1.98038e-05 1.99004e-05 2.00123e-05 2.01407e-05 2.02868e-05 2.04521e-05 2.06399e-05 2.0855e-05 2.11041e-05 2.13957e-05 2.17401e-05 2.21488e-05 2.26342e-05 2.32072e-05 2.38795e-05 2.46611e-05 2.55584e-05 2.66001e-05 2.77355e-05 2.90859e-05 3.04546e-05 3.20389e-05 1.60413e-05 1.60507e-05 1.60614e-05 1.60735e-05 1.60872e-05 1.61029e-05 1.61209e-05 1.61415e-05 1.61652e-05 1.61923e-05 1.62236e-05 1.62596e-05 1.63012e-05 1.63494e-05 1.6405e-05 1.6469e-05 1.65424e-05 1.66261e-05 1.67208e-05 1.68274e-05 1.69472e-05 1.70824e-05 1.72359e-05 1.74121e-05 1.76159e-05 1.78537e-05 1.81322e-05 1.84595e-05 1.88414e-05 1.9287e-05 1.97996e-05 2.03829e-05 2.1064e-05 2.17694e-05 2.26715e-05 2.34719e-05 2.45567e-05 8.93237e-06 8.95982e-06 8.98956e-06 9.02177e-06 9.05667e-06 9.09459e-06 9.13597e-06 9.18119e-06 9.23069e-06 9.28491e-06 9.34437e-06 9.40962e-06 9.48125e-06 9.55996e-06 9.64642e-06 9.74133e-06 9.84534e-06 9.9591e-06 1.00833e-05 1.02186e-05 1.03659e-05 1.05261e-05 1.07007e-05 1.08914e-05 1.11005e-05 1.13304e-05 1.15844e-05 1.18658e-05 1.21787e-05 1.25263e-05 1.29157e-05 1.33443e-05 1.38255e-05 1.43592e-05 1.49167e-05 1.55983e-05 1.62224e-05 8.9336e-06 8.96032e-06 8.98912e-06 9.02013e-06 9.05348e-06 9.08931e-06 9.12779e-06 9.1691e-06 9.21338e-06 9.26075e-06 9.31129e-06 9.36512e-06 9.42244e-06 9.48361e-06 9.54931e-06 9.62082e-06 9.70036e-06 9.79109e-06 9.89642e-06 1.00184e-05 1.0154e-05 1.02977e-05 1.04495e-05 1.06128e-05 1.07907e-05 1.09845e-05 1.11946e-05 1.14197e-05 1.16513e-05 1.18704e-05 1.20473e-05 1.22042e-05 3.0984e-05 8.30977e-05 8.59995e-05 6.89647e-05 5.13069e-05 1.60636e-05 1.60717e-05 1.60806e-05 1.60902e-05 1.61007e-05 1.6112e-05 1.61242e-05 1.61374e-05 1.61516e-05 1.61664e-05 1.61818e-05 1.61976e-05 1.6214e-05 1.62319e-05 1.62533e-05 1.62817e-05 1.63223e-05 1.63804e-05 1.64576e-05 1.65418e-05 1.66177e-05 1.66946e-05 1.6782e-05 1.68815e-05 1.69972e-05 1.7133e-05 1.72941e-05 1.74626e-05 1.76069e-05 1.76737e-05 1.76886e-05 1.85232e-05 2.38252e-05 4.69045e-05 8.01274e-05 0.000108315 0.00012111 1.93218e-05 1.93313e-05 1.9342e-05 1.93539e-05 1.93672e-05 1.93821e-05 1.93986e-05 1.9417e-05 1.94374e-05 1.94601e-05 1.94855e-05 1.95144e-05 1.95485e-05 1.95907e-05 1.96461e-05 1.97223e-05 1.9829e-05 1.99734e-05 2.01535e-05 2.03456e-05 2.05203e-05 2.0692e-05 2.08908e-05 2.11298e-05 2.14152e-05 2.17496e-05 2.21334e-05 2.25416e-05 2.29274e-05 2.32074e-05 2.3412e-05 2.39016e-05 2.51105e-05 2.93708e-05 3.64332e-05 4.22072e-05 5.16698e-05 2.10129e-05 2.10245e-05 2.10377e-05 2.10525e-05 2.10692e-05 2.1088e-05 2.11091e-05 2.11329e-05 2.11597e-05 2.11899e-05 2.12244e-05 2.12646e-05 2.13125e-05 2.13716e-05 2.14474e-05 2.1547e-05 2.16787e-05 2.18478e-05 2.20516e-05 2.22709e-05 2.2483e-05 2.2697e-05 2.29348e-05 2.32057e-05 2.35179e-05 2.38813e-05 2.43075e-05 2.47906e-05 2.53116e-05 2.58321e-05 2.64896e-05 2.73397e-05 2.91434e-05 3.16354e-05 3.35845e-05 3.62051e-05 3.96905e-05 2.18917e-05 2.1905e-05 2.192e-05 2.19371e-05 2.19564e-05 2.19782e-05 2.20029e-05 2.20308e-05 2.20625e-05 2.20987e-05 2.21402e-05 2.21887e-05 2.22464e-05 2.23169e-05 2.24049e-05 2.2517e-05 2.26598e-05 2.28379e-05 2.305e-05 2.32851e-05 2.353e-05 2.37894e-05 2.40793e-05 2.44106e-05 2.47931e-05 2.52362e-05 2.57492e-05 2.63309e-05 2.69739e-05 2.76628e-05 2.84776e-05 2.9452e-05 3.0874e-05 3.30952e-05 3.48863e-05 3.6603e-05 3.92566e-05 2.22696e-05 2.22838e-05 2.22999e-05 2.23182e-05 2.2339e-05 2.23626e-05 2.23895e-05 2.242e-05 2.24548e-05 2.24948e-05 2.2541e-05 2.25951e-05 2.26593e-05 2.27368e-05 2.2832e-05 2.29499e-05 2.30956e-05 2.32725e-05 2.34797e-05 2.37109e-05 2.39587e-05 2.42268e-05 2.45272e-05 2.48703e-05 2.52677e-05 2.57339e-05 2.62841e-05 2.6927e-05 2.7666e-05 2.85036e-05 2.94925e-05 3.06867e-05 3.21833e-05 3.41415e-05 3.59921e-05 3.77226e-05 3.99891e-05 2.22699e-05 2.22842e-05 2.23005e-05 2.2319e-05 2.23401e-05 2.23642e-05 2.23916e-05 2.2423e-05 2.24589e-05 2.25002e-05 2.25481e-05 2.2604e-05 2.267e-05 2.27488e-05 2.28438e-05 2.2959e-05 2.30984e-05 2.32653e-05 2.34608e-05 2.36835e-05 2.39315e-05 2.42077e-05 2.45207e-05 2.48801e-05 2.52976e-05 2.57864e-05 2.63609e-05 2.70335e-05 2.78148e-05 2.87158e-05 2.97682e-05 3.10117e-05 3.24863e-05 3.42756e-05 3.61883e-05 3.81315e-05 4.03588e-05 2.18926e-05 2.19063e-05 2.19219e-05 2.19397e-05 2.19601e-05 2.19834e-05 2.20101e-05 2.20407e-05 2.2076e-05 2.21168e-05 2.21641e-05 2.22196e-05 2.22849e-05 2.23624e-05 2.24549e-05 2.25654e-05 2.26971e-05 2.28523e-05 2.30322e-05 2.32368e-05 2.34668e-05 2.3726e-05 2.40219e-05 2.43644e-05 2.47652e-05 2.52387e-05 2.58008e-05 2.64665e-05 2.72488e-05 2.81603e-05 2.92218e-05 3.04591e-05 3.18951e-05 3.35568e-05 3.53843e-05 3.72921e-05 3.94184e-05 2.10143e-05 2.10265e-05 2.10405e-05 2.10565e-05 2.10749e-05 2.1096e-05 2.11202e-05 2.11482e-05 2.11804e-05 2.12179e-05 2.12614e-05 2.13123e-05 2.1372e-05 2.14424e-05 2.15254e-05 2.16236e-05 2.17392e-05 2.18745e-05 2.20312e-05 2.22109e-05 2.24159e-05 2.26497e-05 2.29189e-05 2.32317e-05 2.35988e-05 2.40327e-05 2.45475e-05 2.51579e-05 2.58779e-05 2.67205e-05 2.77005e-05 2.88303e-05 3.01311e-05 3.15897e-05 3.32416e-05 3.49884e-05 3.69106e-05 1.93236e-05 1.93339e-05 1.93456e-05 1.93591e-05 1.93745e-05 1.93923e-05 1.94128e-05 1.94365e-05 1.9464e-05 1.94959e-05 1.95331e-05 1.95764e-05 1.96271e-05 1.96865e-05 1.97562e-05 1.98378e-05 1.99329e-05 2.00431e-05 2.01697e-05 2.03141e-05 2.04783e-05 2.06656e-05 2.08811e-05 2.11319e-05 2.14267e-05 2.17758e-05 2.21918e-05 2.26874e-05 2.32744e-05 2.39636e-05 2.47639e-05 2.56794e-05 2.67307e-05 2.7881e-05 2.92183e-05 3.06026e-05 3.21638e-05 1.60661e-05 1.60753e-05 1.60856e-05 1.60974e-05 1.61107e-05 1.6126e-05 1.61435e-05 1.61636e-05 1.61867e-05 1.62133e-05 1.62439e-05 1.62793e-05 1.63201e-05 1.63673e-05 1.64217e-05 1.64843e-05 1.6556e-05 1.66378e-05 1.67304e-05 1.6835e-05 1.69532e-05 1.70871e-05 1.72398e-05 1.74155e-05 1.76194e-05 1.78579e-05 1.81381e-05 1.84687e-05 1.88559e-05 1.93077e-05 1.98241e-05 2.04129e-05 2.10808e-05 2.17886e-05 2.26365e-05 2.34488e-05 2.4471e-05 8.93481e-06 8.96209e-06 8.99165e-06 9.02366e-06 9.05837e-06 9.09614e-06 9.13734e-06 9.18237e-06 9.23163e-06 9.28557e-06 9.34468e-06 9.40947e-06 9.48054e-06 9.55855e-06 9.64415e-06 9.738e-06 9.84078e-06 9.9532e-06 1.00759e-05 1.02097e-05 1.03553e-05 1.05138e-05 1.06866e-05 1.08755e-05 1.10826e-05 1.13105e-05 1.15623e-05 1.18414e-05 1.2152e-05 1.24976e-05 1.28849e-05 1.33111e-05 1.37918e-05 1.43139e-05 1.48776e-05 1.55387e-05 1.61363e-05 8.93316e-06 8.9597e-06 8.98833e-06 9.01917e-06 9.05239e-06 9.08813e-06 9.1266e-06 9.16797e-06 9.21243e-06 9.26013e-06 9.31121e-06 9.36586e-06 9.42436e-06 9.4872e-06 9.55518e-06 9.62943e-06 9.71189e-06 9.80506e-06 9.91151e-06 1.00328e-05 1.01673e-05 1.03118e-05 1.0466e-05 1.06322e-05 1.08127e-05 1.10084e-05 1.1219e-05 1.14426e-05 1.16719e-05 1.18861e-05 1.20816e-05 1.21519e-05 2.39885e-05 7.52348e-05 7.59494e-05 5.59796e-05 4.47924e-05 1.60774e-05 1.60854e-05 1.60942e-05 1.61037e-05 1.61142e-05 1.61256e-05 1.6138e-05 1.61516e-05 1.61662e-05 1.61819e-05 1.61985e-05 1.62162e-05 1.62353e-05 1.62567e-05 1.62824e-05 1.63153e-05 1.63596e-05 1.64193e-05 1.64952e-05 1.65802e-05 1.6664e-05 1.67512e-05 1.68495e-05 1.69613e-05 1.7089e-05 1.72334e-05 1.73949e-05 1.7557e-05 1.76965e-05 1.77578e-05 1.77764e-05 1.86046e-05 2.25021e-05 4.12554e-05 6.78601e-05 7.83044e-05 7.54171e-05 1.93478e-05 1.93571e-05 1.93675e-05 1.93793e-05 1.93924e-05 1.94072e-05 1.94237e-05 1.94422e-05 1.9463e-05 1.94862e-05 1.95125e-05 1.95427e-05 1.95783e-05 1.96221e-05 1.96783e-05 1.9753e-05 1.98534e-05 1.99849e-05 2.0146e-05 2.03219e-05 2.0493e-05 2.06665e-05 2.08635e-05 2.10948e-05 2.13653e-05 2.16752e-05 2.20223e-05 2.23851e-05 2.27329e-05 2.30004e-05 2.32579e-05 2.37605e-05 2.51214e-05 2.93111e-05 3.46681e-05 3.70166e-05 4.19422e-05 2.10497e-05 2.10611e-05 2.10739e-05 2.10885e-05 2.1105e-05 2.11236e-05 2.11446e-05 2.11684e-05 2.11954e-05 2.12261e-05 2.12613e-05 2.13024e-05 2.13514e-05 2.14116e-05 2.14875e-05 2.15851e-05 2.1711e-05 2.18692e-05 2.20578e-05 2.22642e-05 2.2473e-05 2.26887e-05 2.29271e-05 2.31972e-05 2.35061e-05 2.38615e-05 2.42721e-05 2.47339e-05 2.5239e-05 2.57642e-05 2.64395e-05 2.73064e-05 2.91237e-05 3.17713e-05 3.38861e-05 3.66606e-05 3.86777e-05 2.19364e-05 2.19494e-05 2.19641e-05 2.19808e-05 2.19998e-05 2.20214e-05 2.2046e-05 2.20739e-05 2.21057e-05 2.21421e-05 2.21841e-05 2.22334e-05 2.22919e-05 2.2363e-05 2.24511e-05 2.25617e-05 2.27006e-05 2.28715e-05 2.3074e-05 2.33007e-05 2.35423e-05 2.38021e-05 2.40924e-05 2.44233e-05 2.48036e-05 2.52418e-05 2.57461e-05 2.6317e-05 2.6954e-05 2.76494e-05 2.84754e-05 2.94739e-05 3.09007e-05 3.31156e-05 3.49848e-05 3.68549e-05 3.92382e-05 2.23185e-05 2.23323e-05 2.2348e-05 2.2366e-05 2.23865e-05 2.24098e-05 2.24365e-05 2.24669e-05 2.25017e-05 2.25417e-05 2.25882e-05 2.26427e-05 2.27074e-05 2.27852e-05 2.28801e-05 2.29967e-05 2.31394e-05 2.33115e-05 2.35127e-05 2.37391e-05 2.39856e-05 2.42554e-05 2.45584e-05 2.49047e-05 2.53053e-05 2.57735e-05 2.63236e-05 2.69655e-05 2.77069e-05 2.85559e-05 2.95605e-05 3.07736e-05 3.22772e-05 3.42248e-05 3.60922e-05 3.78465e-05 4.00787e-05 2.23187e-05 2.23327e-05 2.23486e-05 2.23668e-05 2.23876e-05 2.24113e-05 2.24385e-05 2.24697e-05 2.25055e-05 2.25468e-05 2.25947e-05 2.26508e-05 2.27171e-05 2.2796e-05 2.28908e-05 2.30053e-05 2.31432e-05 2.33075e-05 2.34999e-05 2.37199e-05 2.3967e-05 2.42441e-05 2.4559e-05 2.49217e-05 2.53434e-05 2.58373e-05 2.64178e-05 2.70983e-05 2.78911e-05 2.88096e-05 2.9883e-05 3.11482e-05 3.2638e-05 3.44249e-05 3.633e-05 3.8267e-05 4.04724e-05 2.19374e-05 2.19507e-05 2.19659e-05 2.19834e-05 2.20034e-05 2.20264e-05 2.20527e-05 2.20831e-05 2.21181e-05 2.21587e-05 2.2206e-05 2.22613e-05 2.23264e-05 2.24037e-05 2.24956e-05 2.26052e-05 2.27353e-05 2.28885e-05 2.30663e-05 2.32695e-05 2.34994e-05 2.37597e-05 2.40581e-05 2.44044e-05 2.48106e-05 2.52914e-05 2.58629e-05 2.65412e-05 2.73405e-05 2.82745e-05 2.9362e-05 3.06247e-05 3.20797e-05 3.37496e-05 3.55723e-05 3.74703e-05 3.95682e-05 2.10512e-05 2.10631e-05 2.10768e-05 2.10924e-05 2.11104e-05 2.11312e-05 2.11551e-05 2.11827e-05 2.12147e-05 2.12518e-05 2.1295e-05 2.13456e-05 2.14049e-05 2.14748e-05 2.15572e-05 2.16544e-05 2.17687e-05 2.19024e-05 2.20575e-05 2.22359e-05 2.244e-05 2.26739e-05 2.29443e-05 2.32598e-05 2.36312e-05 2.40718e-05 2.45966e-05 2.52213e-05 2.59608e-05 2.68279e-05 2.78357e-05 2.8993e-05 3.03145e-05 3.17892e-05 3.34376e-05 3.51786e-05 3.70653e-05 1.93497e-05 1.93597e-05 1.93712e-05 1.93844e-05 1.93995e-05 1.94169e-05 1.94371e-05 1.94604e-05 1.94875e-05 1.95191e-05 1.95558e-05 1.95987e-05 1.96488e-05 1.97075e-05 1.97762e-05 1.98567e-05 1.99504e-05 2.00589e-05 2.01837e-05 2.03265e-05 2.04895e-05 2.06763e-05 2.08923e-05 2.11448e-05 2.14428e-05 2.17974e-05 2.22217e-05 2.27295e-05 2.33331e-05 2.4043e-05 2.48663e-05 2.58041e-05 2.68689e-05 2.80343e-05 2.93647e-05 3.07593e-05 3.22998e-05 1.60802e-05 1.60892e-05 1.60994e-05 1.61109e-05 1.61239e-05 1.61388e-05 1.6156e-05 1.61757e-05 1.61984e-05 1.62246e-05 1.62548e-05 1.62896e-05 1.63297e-05 1.63761e-05 1.64294e-05 1.64907e-05 1.65609e-05 1.66411e-05 1.67323e-05 1.68355e-05 1.69521e-05 1.70846e-05 1.7236e-05 1.74109e-05 1.76147e-05 1.78544e-05 1.81371e-05 1.84713e-05 1.88633e-05 1.93211e-05 1.98411e-05 2.04306e-05 2.10861e-05 2.1783e-05 2.25782e-05 2.33939e-05 2.44312e-05 8.93446e-06 8.96155e-06 8.99091e-06 9.02274e-06 9.05728e-06 9.09487e-06 9.13587e-06 9.18066e-06 9.22964e-06 9.28326e-06 9.34199e-06 9.40635e-06 9.4769e-06 9.55428e-06 9.6391e-06 9.732e-06 9.83367e-06 9.94483e-06 1.00662e-05 1.01984e-05 1.03424e-05 1.04991e-05 1.067e-05 1.08568e-05 1.10616e-05 1.12871e-05 1.15363e-05 1.18127e-05 1.21204e-05 1.2465e-05 1.2847e-05 1.32767e-05 1.37512e-05 1.42532e-05 1.48651e-05 1.53849e-05 1.60971e-05 8.93098e-06 8.95735e-06 8.98581e-06 9.01649e-06 9.04959e-06 9.08526e-06 9.12371e-06 9.16516e-06 9.20979e-06 9.25779e-06 9.30935e-06 9.36473e-06 9.42431e-06 9.48859e-06 9.55835e-06 9.6348e-06 9.71952e-06 9.81457e-06 9.92199e-06 1.0043e-05 1.0177e-05 1.0322e-05 1.0478e-05 1.06465e-05 1.08291e-05 1.10265e-05 1.12381e-05 1.14624e-05 1.16908e-05 1.19143e-05 1.21161e-05 1.21647e-05 1.41451e-05 5.86627e-05 6.56291e-05 4.00398e-05 2.83447e-05 1.6085e-05 1.60929e-05 1.61016e-05 1.61112e-05 1.61217e-05 1.61332e-05 1.61459e-05 1.61599e-05 1.61751e-05 1.61917e-05 1.62095e-05 1.62289e-05 1.62504e-05 1.62749e-05 1.63042e-05 1.63409e-05 1.63883e-05 1.64496e-05 1.65255e-05 1.66118e-05 1.67015e-05 1.67968e-05 1.69038e-05 1.70247e-05 1.71614e-05 1.73133e-05 1.74788e-05 1.7641e-05 1.77891e-05 1.78502e-05 1.79219e-05 1.84866e-05 2.12413e-05 3.4725e-05 4.38818e-05 4.15636e-05 3.96382e-05 1.93629e-05 1.93721e-05 1.93824e-05 1.93941e-05 1.94072e-05 1.9422e-05 1.94386e-05 1.94574e-05 1.94786e-05 1.95025e-05 1.95297e-05 1.9561e-05 1.95981e-05 1.96434e-05 1.97003e-05 1.9774e-05 1.987e-05 1.99923e-05 2.01401e-05 2.03044e-05 2.04722e-05 2.06468e-05 2.08428e-05 2.10691e-05 2.13296e-05 2.16243e-05 2.19499e-05 2.22888e-05 2.26258e-05 2.29099e-05 2.32465e-05 2.37206e-05 2.53372e-05 2.95069e-05 3.21705e-05 3.65481e-05 4.0526e-05 2.10721e-05 2.10832e-05 2.10959e-05 2.11103e-05 2.11267e-05 2.11453e-05 2.11664e-05 2.11904e-05 2.12176e-05 2.12488e-05 2.12848e-05 2.13269e-05 2.1377e-05 2.14381e-05 2.15142e-05 2.16103e-05 2.17316e-05 2.18817e-05 2.20593e-05 2.22563e-05 2.24623e-05 2.26796e-05 2.29197e-05 2.31907e-05 2.34993e-05 2.38523e-05 2.42561e-05 2.47091e-05 2.52111e-05 2.57485e-05 2.64437e-05 2.73254e-05 2.90528e-05 3.19347e-05 3.38858e-05 3.63563e-05 3.76765e-05 2.19642e-05 2.19769e-05 2.19914e-05 2.2008e-05 2.20269e-05 2.20484e-05 2.20729e-05 2.21009e-05 2.21329e-05 2.21697e-05 2.22123e-05 2.22623e-05 2.23217e-05 2.23934e-05 2.24816e-05 2.25909e-05 2.27263e-05 2.28913e-05 2.30859e-05 2.33054e-05 2.35442e-05 2.38041e-05 2.40949e-05 2.44259e-05 2.48056e-05 2.5242e-05 2.57425e-05 2.63105e-05 2.6949e-05 2.76593e-05 2.85072e-05 2.95425e-05 3.09623e-05 3.31537e-05 3.50833e-05 3.6952e-05 3.90588e-05 2.23491e-05 2.23627e-05 2.23782e-05 2.2396e-05 2.24163e-05 2.24395e-05 2.24661e-05 2.24965e-05 2.25314e-05 2.25717e-05 2.26185e-05 2.26735e-05 2.27386e-05 2.28168e-05 2.29115e-05 2.30269e-05 2.31671e-05 2.3335e-05 2.35311e-05 2.37532e-05 2.39982e-05 2.42693e-05 2.45748e-05 2.49244e-05 2.53289e-05 2.5801e-05 2.63544e-05 2.70006e-05 2.77503e-05 2.86164e-05 2.96425e-05 3.08811e-05 3.23921e-05 3.43246e-05 3.62019e-05 3.79844e-05 4.01235e-05 2.23494e-05 2.23631e-05 2.23788e-05 2.23968e-05 2.24173e-05 2.24409e-05 2.2468e-05 2.24991e-05 2.25349e-05 2.25763e-05 2.26244e-05 2.26808e-05 2.27473e-05 2.28264e-05 2.29212e-05 2.30349e-05 2.31713e-05 2.33333e-05 2.35227e-05 2.37402e-05 2.39859e-05 2.42634e-05 2.45802e-05 2.4946e-05 2.53722e-05 2.58721e-05 2.64606e-05 2.71522e-05 2.79611e-05 2.89026e-05 3.00036e-05 3.12977e-05 3.28084e-05 3.45962e-05 3.64966e-05 3.84309e-05 4.06023e-05 2.19651e-05 2.19782e-05 2.19932e-05 2.20105e-05 2.20303e-05 2.2053e-05 2.20792e-05 2.21094e-05 2.21444e-05 2.21849e-05 2.22321e-05 2.22874e-05 2.23525e-05 2.24296e-05 2.2521e-05 2.26297e-05 2.27585e-05 2.29098e-05 2.30856e-05 2.32872e-05 2.35164e-05 2.37776e-05 2.40782e-05 2.44282e-05 2.484e-05 2.53288e-05 2.59114e-05 2.66052e-05 2.7426e-05 2.83882e-05 2.95086e-05 3.08043e-05 3.2285e-05 3.3966e-05 3.57848e-05 3.76696e-05 3.9731e-05 2.10736e-05 2.10853e-05 2.10987e-05 2.11142e-05 2.1132e-05 2.11525e-05 2.11762e-05 2.12036e-05 2.12354e-05 2.12723e-05 2.13154e-05 2.13658e-05 2.14248e-05 2.14943e-05 2.15761e-05 2.16725e-05 2.17856e-05 2.19179e-05 2.20714e-05 2.22482e-05 2.24513e-05 2.26851e-05 2.29565e-05 2.32744e-05 2.36504e-05 2.40984e-05 2.46347e-05 2.52764e-05 2.60394e-05 2.69367e-05 2.79793e-05 2.91712e-05 3.05195e-05 3.20129e-05 3.36568e-05 3.53787e-05 3.72118e-05 1.9365e-05 1.93748e-05 1.93861e-05 1.93991e-05 1.9414e-05 1.94312e-05 1.94512e-05 1.94743e-05 1.95012e-05 1.95324e-05 1.95689e-05 1.96114e-05 1.9661e-05 1.97191e-05 1.97871e-05 1.98665e-05 1.99589e-05 2.00658e-05 2.0189e-05 2.03303e-05 2.04924e-05 2.06789e-05 2.08952e-05 2.1149e-05 2.14501e-05 2.18107e-05 2.22444e-05 2.27665e-05 2.33903e-05 2.41256e-05 2.49779e-05 2.59435e-05 2.70271e-05 2.82104e-05 2.95398e-05 3.09411e-05 3.24359e-05 1.60881e-05 1.60969e-05 1.61069e-05 1.61182e-05 1.61311e-05 1.61458e-05 1.61626e-05 1.61821e-05 1.62045e-05 1.62304e-05 1.62602e-05 1.62945e-05 1.63341e-05 1.63797e-05 1.64321e-05 1.64924e-05 1.65615e-05 1.66403e-05 1.67298e-05 1.68313e-05 1.69463e-05 1.70772e-05 1.72274e-05 1.74015e-05 1.76051e-05 1.78456e-05 1.81307e-05 1.84687e-05 1.88662e-05 1.93275e-05 1.98528e-05 2.04377e-05 2.10789e-05 2.174e-05 2.25197e-05 2.33825e-05 2.44263e-05 8.93237e-06 8.95931e-06 8.98851e-06 9.02017e-06 9.05453e-06 9.09192e-06 9.1327e-06 9.17724e-06 9.22595e-06 9.27925e-06 9.33762e-06 9.40156e-06 9.4716e-06 9.54836e-06 9.6324e-06 9.72439e-06 9.825e-06 9.93495e-06 1.00549e-05 1.01856e-05 1.03278e-05 1.04827e-05 1.06515e-05 1.0836e-05 1.10383e-05 1.12609e-05 1.1507e-05 1.17803e-05 1.20862e-05 1.24271e-05 1.28097e-05 1.32368e-05 1.36962e-05 1.42298e-05 1.47229e-05 1.53279e-05 1.60727e-05 8.92779e-06 8.95397e-06 8.98225e-06 9.01277e-06 9.04574e-06 9.08133e-06 9.11977e-06 9.16128e-06 9.20607e-06 9.25433e-06 9.30631e-06 9.36234e-06 9.42282e-06 9.48831e-06 9.55957e-06 9.63767e-06 9.72415e-06 9.82068e-06 9.92891e-06 1.00499e-05 1.01836e-05 1.03291e-05 1.04863e-05 1.06564e-05 1.08406e-05 1.10396e-05 1.12528e-05 1.14787e-05 1.17106e-05 1.19433e-05 1.21443e-05 1.23076e-05 1.26289e-05 2.60585e-05 4.51584e-05 3.34077e-05 2.22095e-05 1.6089e-05 1.60969e-05 1.61056e-05 1.61151e-05 1.61257e-05 1.61375e-05 1.61505e-05 1.61649e-05 1.61808e-05 1.61982e-05 1.62172e-05 1.62382e-05 1.62618e-05 1.6289e-05 1.63213e-05 1.6361e-05 1.6411e-05 1.64739e-05 1.65503e-05 1.66378e-05 1.6732e-05 1.68338e-05 1.69475e-05 1.70758e-05 1.72197e-05 1.73783e-05 1.75488e-05 1.77174e-05 1.78757e-05 1.79643e-05 1.81089e-05 1.83093e-05 2.05139e-05 2.74209e-05 2.97604e-05 2.82073e-05 2.92007e-05 1.93715e-05 1.93806e-05 1.93909e-05 1.94025e-05 1.94157e-05 1.94306e-05 1.94474e-05 1.94666e-05 1.94882e-05 1.95128e-05 1.95409e-05 1.95735e-05 1.96119e-05 1.96585e-05 1.97162e-05 1.97892e-05 1.9882e-05 1.99979e-05 2.01365e-05 2.02922e-05 2.0457e-05 2.06324e-05 2.08279e-05 2.10513e-05 2.1306e-05 2.15918e-05 2.19059e-05 2.22371e-05 2.25773e-05 2.28908e-05 2.32914e-05 2.37767e-05 2.52567e-05 2.88639e-05 3.11041e-05 3.63796e-05 3.78669e-05 2.10853e-05 2.10963e-05 2.11089e-05 2.11233e-05 2.11397e-05 2.11583e-05 2.11796e-05 2.12038e-05 2.12315e-05 2.12633e-05 2.13e-05 2.1343e-05 2.13942e-05 2.14562e-05 2.15325e-05 2.16274e-05 2.17454e-05 2.18893e-05 2.20588e-05 2.22487e-05 2.24523e-05 2.26709e-05 2.2913e-05 2.31859e-05 2.3496e-05 2.38494e-05 2.42516e-05 2.47035e-05 2.52091e-05 2.57684e-05 2.64814e-05 2.74063e-05 2.89154e-05 3.18727e-05 3.35928e-05 3.52778e-05 3.641e-05 2.1981e-05 2.19936e-05 2.2008e-05 2.20245e-05 2.20433e-05 2.20648e-05 2.20894e-05 2.21176e-05 2.21499e-05 2.21872e-05 2.22305e-05 2.22812e-05 2.23414e-05 2.24138e-05 2.2502e-05 2.26102e-05 2.27427e-05 2.29028e-05 2.3091e-05 2.33047e-05 2.35405e-05 2.38001e-05 2.40913e-05 2.44229e-05 2.4803e-05 2.52395e-05 2.57403e-05 2.63104e-05 2.69571e-05 2.76895e-05 2.85639e-05 2.96443e-05 3.10436e-05 3.3172e-05 3.51116e-05 3.6881e-05 3.87322e-05 2.23679e-05 2.23813e-05 2.23967e-05 2.24144e-05 2.24346e-05 2.24578e-05 2.24844e-05 2.25149e-05 2.255e-05 2.25907e-05 2.2638e-05 2.26934e-05 2.27591e-05 2.28376e-05 2.29322e-05 2.30466e-05 2.31846e-05 2.33489e-05 2.35407e-05 2.3759e-05 2.40026e-05 2.42745e-05 2.45821e-05 2.4935e-05 2.53438e-05 2.58209e-05 2.63802e-05 2.70345e-05 2.77972e-05 2.86854e-05 2.97375e-05 3.10061e-05 3.25245e-05 3.44309e-05 3.6307e-05 3.80887e-05 4.01408e-05 2.23682e-05 2.23817e-05 2.23973e-05 2.24151e-05 2.24356e-05 2.24591e-05 2.24862e-05 2.25173e-05 2.25532e-05 2.25949e-05 2.26433e-05 2.27e-05 2.27669e-05 2.28462e-05 2.29408e-05 2.3054e-05 2.3189e-05 2.33488e-05 2.35355e-05 2.37505e-05 2.39948e-05 2.42724e-05 2.45907e-05 2.49594e-05 2.53901e-05 2.58968e-05 2.64949e-05 2.72005e-05 2.80296e-05 2.89993e-05 3.01339e-05 3.14632e-05 3.29995e-05 3.47888e-05 3.66827e-05 3.86086e-05 4.07345e-05 2.1982e-05 2.19949e-05 2.20098e-05 2.20269e-05 2.20466e-05 2.20692e-05 2.20954e-05 2.21256e-05 2.21605e-05 2.22011e-05 2.22484e-05 2.23038e-05 2.23689e-05 2.24458e-05 2.25369e-05 2.26448e-05 2.27723e-05 2.29219e-05 2.30957e-05 2.32956e-05 2.3524e-05 2.37857e-05 2.40882e-05 2.44418e-05 2.48593e-05 2.53566e-05 2.59519e-05 2.66641e-05 2.75109e-05 2.85076e-05 2.96688e-05 3.10054e-05 3.25178e-05 3.42107e-05 3.60202e-05 3.78806e-05 3.98905e-05 2.10868e-05 2.10984e-05 2.11117e-05 2.11271e-05 2.11447e-05 2.11651e-05 2.11887e-05 2.1216e-05 2.12478e-05 2.12847e-05 2.13277e-05 2.13779e-05 2.14368e-05 2.1506e-05 2.15873e-05 2.16829e-05 2.1795e-05 2.19259e-05 2.20777e-05 2.2253e-05 2.2455e-05 2.26886e-05 2.29607e-05 2.32809e-05 2.36615e-05 2.41175e-05 2.46667e-05 2.53284e-05 2.61196e-05 2.70539e-05 2.81401e-05 2.93752e-05 3.07566e-05 3.22688e-05 3.38997e-05 3.55766e-05 3.73226e-05 1.93737e-05 1.93835e-05 1.93947e-05 1.94075e-05 1.94223e-05 1.94394e-05 1.94592e-05 1.94822e-05 1.95089e-05 1.954e-05 1.95763e-05 1.96185e-05 1.96678e-05 1.97254e-05 1.97927e-05 1.98711e-05 1.99623e-05 2.00678e-05 2.01897e-05 2.03297e-05 2.04906e-05 2.06765e-05 2.0893e-05 2.11482e-05 2.14523e-05 2.18191e-05 2.22632e-05 2.28019e-05 2.34502e-05 2.42174e-05 2.5107e-05 2.61083e-05 2.72174e-05 2.8426e-05 2.97576e-05 3.11368e-05 3.25456e-05 1.60922e-05 1.6101e-05 1.61109e-05 1.61221e-05 1.61348e-05 1.61493e-05 1.6166e-05 1.61852e-05 1.62075e-05 1.62331e-05 1.62626e-05 1.62965e-05 1.63356e-05 1.63806e-05 1.64324e-05 1.64917e-05 1.65595e-05 1.66369e-05 1.67249e-05 1.68247e-05 1.6938e-05 1.70673e-05 1.72162e-05 1.73892e-05 1.75925e-05 1.78334e-05 1.812e-05 1.84608e-05 1.88643e-05 1.93291e-05 1.98592e-05 2.04384e-05 2.10407e-05 2.17135e-05 2.25068e-05 2.34432e-05 2.45354e-05 8.9294e-06 8.95616e-06 8.98516e-06 9.0166e-06 9.05075e-06 9.08792e-06 9.12845e-06 9.17273e-06 9.22116e-06 9.27414e-06 9.33216e-06 9.39567e-06 9.46521e-06 9.54134e-06 9.62463e-06 9.71571e-06 9.81526e-06 9.924e-06 1.00426e-05 1.01717e-05 1.03122e-05 1.0465e-05 1.06316e-05 1.08136e-05 1.10129e-05 1.12322e-05 1.14751e-05 1.17456e-05 1.20499e-05 1.23869e-05 1.27723e-05 1.31831e-05 1.36609e-05 1.41226e-05 1.46484e-05 1.53928e-05 1.66237e-05 8.92393e-06 8.94991e-06 8.97799e-06 9.00834e-06 9.04117e-06 9.07667e-06 9.11509e-06 9.15664e-06 9.20156e-06 9.25005e-06 9.3024e-06 9.35897e-06 9.42021e-06 9.48669e-06 9.55916e-06 9.63863e-06 9.72638e-06 9.82398e-06 9.93285e-06 1.00539e-05 1.01875e-05 1.03332e-05 1.04913e-05 1.06627e-05 1.08484e-05 1.10491e-05 1.12644e-05 1.14929e-05 1.17294e-05 1.19701e-05 1.21945e-05 1.2416e-05 1.25481e-05 1.47432e-05 2.26279e-05 1.90226e-05 1.62972e-05 1.6091e-05 1.60988e-05 1.61075e-05 1.61171e-05 1.61278e-05 1.61398e-05 1.61532e-05 1.61681e-05 1.61846e-05 1.62028e-05 1.62229e-05 1.62454e-05 1.62709e-05 1.63003e-05 1.63351e-05 1.63774e-05 1.64296e-05 1.64938e-05 1.65709e-05 1.66596e-05 1.67572e-05 1.6864e-05 1.69833e-05 1.71175e-05 1.72676e-05 1.74326e-05 1.76094e-05 1.77879e-05 1.79592e-05 1.80948e-05 1.8247e-05 1.84848e-05 1.95012e-05 2.31313e-05 2.47506e-05 2.4447e-05 2.47471e-05 1.93763e-05 1.93854e-05 1.93956e-05 1.94073e-05 1.94205e-05 1.94356e-05 1.94527e-05 1.94722e-05 1.94944e-05 1.95197e-05 1.95487e-05 1.95823e-05 1.96221e-05 1.96698e-05 1.97283e-05 1.9801e-05 1.98916e-05 2.00028e-05 2.01348e-05 2.02844e-05 2.04467e-05 2.06223e-05 2.0818e-05 2.104e-05 2.12915e-05 2.15732e-05 2.18836e-05 2.2216e-05 2.25638e-05 2.2916e-05 2.33538e-05 2.39306e-05 2.51089e-05 2.81487e-05 3.01724e-05 3.27434e-05 3.28887e-05 2.10929e-05 2.11039e-05 2.11165e-05 2.11309e-05 2.11473e-05 2.11661e-05 2.11876e-05 2.12121e-05 2.12403e-05 2.12727e-05 2.13102e-05 2.13542e-05 2.14063e-05 2.14691e-05 2.15457e-05 2.16398e-05 2.17551e-05 2.18944e-05 2.20577e-05 2.22422e-05 2.24437e-05 2.26633e-05 2.29072e-05 2.31825e-05 2.34951e-05 2.38508e-05 2.42553e-05 2.47118e-05 2.52268e-05 2.58124e-05 2.65403e-05 2.75117e-05 2.88585e-05 3.14653e-05 3.31753e-05 3.42536e-05 3.51164e-05 2.19909e-05 2.20034e-05 2.20178e-05 2.20343e-05 2.20532e-05 2.20748e-05 2.20996e-05 2.2128e-05 2.21607e-05 2.21985e-05 2.22425e-05 2.2294e-05 2.23549e-05 2.2428e-05 2.25163e-05 2.26236e-05 2.27537e-05 2.29097e-05 2.30927e-05 2.33015e-05 2.35344e-05 2.37933e-05 2.40848e-05 2.44171e-05 2.47983e-05 2.52365e-05 2.57401e-05 2.63166e-05 2.6976e-05 2.77344e-05 2.86378e-05 2.97621e-05 3.11506e-05 3.31686e-05 3.50766e-05 3.67773e-05 3.84442e-05 2.23791e-05 2.23924e-05 2.24078e-05 2.24254e-05 2.24457e-05 2.24689e-05 2.24956e-05 2.25263e-05 2.25618e-05 2.26028e-05 2.26506e-05 2.27066e-05 2.27728e-05 2.28517e-05 2.29462e-05 2.30598e-05 2.31959e-05 2.33573e-05 2.35454e-05 2.37605e-05 2.40027e-05 2.4275e-05 2.45843e-05 2.494e-05 2.53531e-05 2.58358e-05 2.64027e-05 2.7068e-05 2.78475e-05 2.87614e-05 2.98434e-05 3.1144e-05 3.26731e-05 3.45438e-05 3.64098e-05 3.81902e-05 4.01691e-05 2.23793e-05 2.23928e-05 2.24083e-05 2.24261e-05 2.24466e-05 2.24702e-05 2.24973e-05 2.25286e-05 2.25647e-05 2.26066e-05 2.26554e-05 2.27125e-05 2.27798e-05 2.28593e-05 2.29539e-05 2.30665e-05 2.32003e-05 2.33582e-05 2.35424e-05 2.3755e-05 2.39978e-05 2.42753e-05 2.45947e-05 2.49658e-05 2.54011e-05 2.59148e-05 2.65238e-05 2.72459e-05 2.80989e-05 2.91018e-05 3.02759e-05 3.16455e-05 3.32111e-05 3.50001e-05 3.68811e-05 3.87892e-05 4.08608e-05 2.19919e-05 2.20048e-05 2.20196e-05 2.20366e-05 2.20563e-05 2.20789e-05 2.21051e-05 2.21353e-05 2.21704e-05 2.22111e-05 2.22586e-05 2.23141e-05 2.23793e-05 2.24562e-05 2.2547e-05 2.26542e-05 2.27806e-05 2.29285e-05 2.31005e-05 2.32987e-05 2.35263e-05 2.37882e-05 2.4092e-05 2.44486e-05 2.48717e-05 2.53779e-05 2.59872e-05 2.6721e-05 2.75985e-05 2.86368e-05 2.98479e-05 3.12336e-05 3.27819e-05 3.44825e-05 3.62693e-05 3.80868e-05 4.0029e-05 2.10945e-05 2.1106e-05 2.11193e-05 2.11346e-05 2.11522e-05 2.11725e-05 2.11961e-05 2.12234e-05 2.12552e-05 2.12921e-05 2.13351e-05 2.13853e-05 2.14441e-05 2.15131e-05 2.1594e-05 2.16889e-05 2.17999e-05 2.19295e-05 2.20797e-05 2.22537e-05 2.24547e-05 2.26878e-05 2.29603e-05 2.32823e-05 2.36672e-05 2.41317e-05 2.46954e-05 2.53804e-05 2.62052e-05 2.71853e-05 2.83265e-05 2.96149e-05 3.10347e-05 3.25591e-05 3.41529e-05 3.57459e-05 3.73683e-05 1.93786e-05 1.93883e-05 1.93994e-05 1.94122e-05 1.94269e-05 1.94439e-05 1.94637e-05 1.94866e-05 1.95133e-05 1.95443e-05 1.95804e-05 1.96225e-05 1.96715e-05 1.97287e-05 1.97953e-05 1.98729e-05 1.9963e-05 2.00673e-05 2.01877e-05 2.03263e-05 2.0486e-05 2.06709e-05 2.08873e-05 2.11436e-05 2.14509e-05 2.18236e-05 2.22795e-05 2.28381e-05 2.3516e-05 2.4324e-05 2.52621e-05 2.63095e-05 2.74574e-05 2.8697e-05 3.0011e-05 3.13086e-05 3.26169e-05 1.60942e-05 1.6103e-05 1.61128e-05 1.61239e-05 1.61365e-05 1.61509e-05 1.61675e-05 1.61866e-05 1.62087e-05 1.62341e-05 1.62634e-05 1.6297e-05 1.63357e-05 1.63802e-05 1.64311e-05 1.64895e-05 1.65562e-05 1.66322e-05 1.67187e-05 1.68168e-05 1.69284e-05 1.70561e-05 1.72033e-05 1.73749e-05 1.75771e-05 1.78174e-05 1.81044e-05 1.84478e-05 1.88561e-05 1.93253e-05 1.98612e-05 2.04143e-05 2.10211e-05 2.17318e-05 2.25912e-05 2.36188e-05 2.5696e-05 8.92583e-06 8.95239e-06 8.98116e-06 9.01235e-06 9.04625e-06 9.08316e-06 9.12343e-06 9.16744e-06 9.21558e-06 9.26826e-06 9.3259e-06 9.38899e-06 9.45802e-06 9.53352e-06 9.61605e-06 9.70622e-06 9.80474e-06 9.91228e-06 1.00295e-05 1.0157e-05 1.02957e-05 1.04465e-05 1.06106e-05 1.07898e-05 1.09857e-05 1.12017e-05 1.14419e-05 1.17107e-05 1.20087e-05 1.2351e-05 1.27167e-05 1.31457e-05 1.35712e-05 1.40485e-05 1.47563e-05 1.60788e-05 1.85551e-05 8.91959e-06 8.94535e-06 8.97322e-06 9.00339e-06 9.03606e-06 9.07145e-06 9.10982e-06 9.1514e-06 9.19642e-06 9.2451e-06 9.29776e-06 9.35478e-06 9.41665e-06 9.48393e-06 9.55737e-06 9.63792e-06 9.72676e-06 9.82521e-06 9.93452e-06 1.00557e-05 1.01891e-05 1.0335e-05 1.04938e-05 1.06663e-05 1.08535e-05 1.10559e-05 1.12733e-05 1.15047e-05 1.17468e-05 1.19959e-05 1.22434e-05 1.24847e-05 1.27069e-05 1.30635e-05 1.43856e-05 1.48244e-05 1.48243e-05 1.60918e-05 1.60997e-05 1.61083e-05 1.6118e-05 1.61289e-05 1.61411e-05 1.61548e-05 1.61702e-05 1.61873e-05 1.62063e-05 1.62274e-05 1.62512e-05 1.62783e-05 1.63097e-05 1.63466e-05 1.6391e-05 1.6445e-05 1.65105e-05 1.65884e-05 1.66781e-05 1.67782e-05 1.6889e-05 1.7013e-05 1.71523e-05 1.73079e-05 1.74791e-05 1.76631e-05 1.78529e-05 1.80409e-05 1.82166e-05 1.84048e-05 1.86717e-05 1.92407e-05 2.12829e-05 2.2389e-05 2.20772e-05 2.22534e-05 1.93789e-05 1.93879e-05 1.93982e-05 1.941e-05 1.94234e-05 1.94386e-05 1.9456e-05 1.94759e-05 1.94986e-05 1.95246e-05 1.95545e-05 1.95892e-05 1.963e-05 1.96789e-05 1.97381e-05 1.98106e-05 1.98996e-05 2.00075e-05 2.01349e-05 2.028e-05 2.044e-05 2.06157e-05 2.08118e-05 2.10334e-05 2.1284e-05 2.15651e-05 2.18758e-05 2.22121e-05 2.25733e-05 2.2965e-05 2.34367e-05 2.41121e-05 2.50908e-05 2.74801e-05 2.93114e-05 3.06879e-05 3.0668e-05 2.10972e-05 2.11082e-05 2.11208e-05 2.11353e-05 2.11518e-05 2.11708e-05 2.11925e-05 2.12175e-05 2.12461e-05 2.12791e-05 2.13175e-05 2.13623e-05 2.14154e-05 2.1479e-05 2.15558e-05 2.16493e-05 2.17626e-05 2.18983e-05 2.2057e-05 2.22372e-05 2.24368e-05 2.26569e-05 2.29026e-05 2.31801e-05 2.34956e-05 2.38549e-05 2.4264e-05 2.47283e-05 2.52565e-05 2.58688e-05 2.66153e-05 2.76175e-05 2.8867e-05 3.10747e-05 3.2731e-05 3.36973e-05 3.44906e-05 2.19967e-05 2.20092e-05 2.20236e-05 2.20401e-05 2.20591e-05 2.20809e-05 2.21059e-05 2.21346e-05 2.21678e-05 2.22061e-05 2.22507e-05 2.2303e-05 2.23647e-05 2.24383e-05 2.25268e-05 2.26333e-05 2.27616e-05 2.29143e-05 2.30929e-05 2.32976e-05 2.35278e-05 2.37857e-05 2.40774e-05 2.44104e-05 2.4793e-05 2.52338e-05 2.57421e-05 2.63277e-05 2.70027e-05 2.77884e-05 2.87226e-05 2.98837e-05 3.12742e-05 3.31755e-05 3.50322e-05 3.67096e-05 3.82724e-05 2.23856e-05 2.2399e-05 2.24143e-05 2.2432e-05 2.24523e-05 2.24757e-05 2.25026e-05 2.25336e-05 2.25694e-05 2.26109e-05 2.26592e-05 2.27158e-05 2.27825e-05 2.28617e-05 2.29562e-05 2.30692e-05 2.32037e-05 2.33625e-05 2.35476e-05 2.37598e-05 2.40004e-05 2.42727e-05 2.45833e-05 2.49415e-05 2.53585e-05 2.58472e-05 2.64226e-05 2.71011e-05 2.79001e-05 2.88427e-05 2.99579e-05 3.1291e-05 3.2835e-05 3.46694e-05 3.6521e-05 3.83107e-05 4.02409e-05 2.23859e-05 2.23993e-05 2.24148e-05 2.24327e-05 2.24532e-05 2.24769e-05 2.25041e-05 2.25356e-05 2.2572e-05 2.26143e-05 2.26635e-05 2.2721e-05 2.27887e-05 2.28685e-05 2.29631e-05 2.30752e-05 2.32079e-05 2.3364e-05 2.3546e-05 2.37563e-05 2.39977e-05 2.42747e-05 2.45947e-05 2.49678e-05 2.54071e-05 2.59281e-05 2.65489e-05 2.72897e-05 2.81699e-05 2.92106e-05 3.04299e-05 3.1844e-05 3.34406e-05 3.52252e-05 3.70835e-05 3.89634e-05 4.09769e-05 2.19977e-05 2.20105e-05 2.20253e-05 2.20424e-05 2.2062e-05 2.20848e-05 2.2111e-05 2.21414e-05 2.21766e-05 2.22175e-05 2.22652e-05 2.23209e-05 2.23863e-05 2.24631e-05 2.25537e-05 2.26603e-05 2.27856e-05 2.29321e-05 2.31022e-05 2.32989e-05 2.35254e-05 2.3787e-05 2.40919e-05 2.44509e-05 2.48791e-05 2.53945e-05 2.6019e-05 2.67772e-05 2.76905e-05 2.87787e-05 3.005e-05 3.14926e-05 3.30776e-05 3.4774e-05 3.65158e-05 3.82689e-05 4.01344e-05 2.10989e-05 2.11104e-05 2.11236e-05 2.11389e-05 2.11565e-05 2.11769e-05 2.12005e-05 2.12279e-05 2.12597e-05 2.12967e-05 2.13397e-05 2.139e-05 2.14488e-05 2.15176e-05 2.15981e-05 2.16923e-05 2.18025e-05 2.19307e-05 2.20796e-05 2.22519e-05 2.24516e-05 2.26838e-05 2.29564e-05 2.328e-05 2.36691e-05 2.41426e-05 2.47223e-05 2.54343e-05 2.62992e-05 2.73366e-05 2.85478e-05 2.99008e-05 3.13595e-05 3.28738e-05 3.43873e-05 3.58561e-05 3.73684e-05 1.93812e-05 1.9391e-05 1.94021e-05 1.94148e-05 1.94295e-05 1.94465e-05 1.94662e-05 1.94891e-05 1.95158e-05 1.95468e-05 1.95828e-05 1.96247e-05 1.96735e-05 1.97303e-05 1.97964e-05 1.98732e-05 1.99623e-05 2.00654e-05 2.01843e-05 2.03214e-05 2.04796e-05 2.06635e-05 2.08793e-05 2.11362e-05 2.14461e-05 2.18254e-05 2.22942e-05 2.28763e-05 2.35909e-05 2.4451e-05 2.5454e-05 2.65652e-05 2.7768e-05 2.90219e-05 3.02506e-05 3.14427e-05 3.28831e-05 1.60951e-05 1.61039e-05 1.61137e-05 1.61247e-05 1.61372e-05 1.61515e-05 1.6168e-05 1.6187e-05 1.6209e-05 1.62343e-05 1.62634e-05 1.62967e-05 1.6335e-05 1.63789e-05 1.64291e-05 1.64866e-05 1.65522e-05 1.6627e-05 1.67119e-05 1.68084e-05 1.69182e-05 1.70439e-05 1.71891e-05 1.73587e-05 1.75586e-05 1.77968e-05 1.80829e-05 1.84292e-05 1.88393e-05 1.93189e-05 1.98469e-05 2.04011e-05 2.1068e-05 2.1859e-05 2.28266e-05 2.48803e-05 3.10386e-05 8.92172e-06 8.94808e-06 8.97662e-06 9.00756e-06 9.04119e-06 9.07782e-06 9.1178e-06 9.16154e-06 9.2094e-06 9.26176e-06 9.31904e-06 9.38168e-06 9.45019e-06 9.52505e-06 9.60681e-06 9.69611e-06 9.79361e-06 9.89995e-06 1.00158e-05 1.01417e-05 1.02784e-05 1.04271e-05 1.05886e-05 1.07645e-05 1.09573e-05 1.11708e-05 1.14079e-05 1.16731e-05 1.19682e-05 1.23055e-05 1.26678e-05 1.30766e-05 1.3502e-05 1.41796e-05 1.55295e-05 1.80263e-05 2.27824e-05 8.91486e-06 8.94038e-06 8.96802e-06 8.99799e-06 9.03049e-06 9.06576e-06 9.10406e-06 9.14564e-06 9.19071e-06 9.23954e-06 9.29245e-06 9.34985e-06 9.41222e-06 9.48015e-06 9.55435e-06 9.63574e-06 9.72541e-06 9.82455e-06 9.93432e-06 1.00557e-05 1.01892e-05 1.03353e-05 1.04946e-05 1.06679e-05 1.08561e-05 1.10601e-05 1.12796e-05 1.15144e-05 1.1762e-05 1.20213e-05 1.2283e-05 1.2562e-05 1.28254e-05 1.31586e-05 1.35739e-05 1.43923e-05 1.46559e-05 1.6092e-05 1.60998e-05 1.61086e-05 1.61183e-05 1.61293e-05 1.61417e-05 1.61558e-05 1.61716e-05 1.61893e-05 1.6209e-05 1.62311e-05 1.62561e-05 1.62846e-05 1.63176e-05 1.63564e-05 1.64026e-05 1.64581e-05 1.65247e-05 1.66033e-05 1.6694e-05 1.67961e-05 1.69101e-05 1.7038e-05 1.71818e-05 1.73425e-05 1.75197e-05 1.77114e-05 1.7913e-05 1.81191e-05 1.83304e-05 1.85495e-05 1.88958e-05 1.93027e-05 2.0565e-05 2.14621e-05 2.11973e-05 2.13113e-05 1.93803e-05 1.93893e-05 1.93997e-05 1.94115e-05 1.9425e-05 1.94405e-05 1.94582e-05 1.94786e-05 1.95018e-05 1.95284e-05 1.95591e-05 1.95947e-05 1.96366e-05 1.96864e-05 1.97463e-05 1.98189e-05 1.99068e-05 2.00123e-05 2.01363e-05 2.02782e-05 2.04363e-05 2.06118e-05 2.08084e-05 2.10305e-05 2.12816e-05 2.15634e-05 2.18766e-05 2.22211e-05 2.25987e-05 2.30246e-05 2.353e-05 2.42616e-05 2.51546e-05 2.70892e-05 2.86687e-05 2.96964e-05 2.97273e-05 2.10996e-05 2.11107e-05 2.11234e-05 2.11379e-05 2.11546e-05 2.11738e-05 2.11958e-05 2.12211e-05 2.12503e-05 2.12839e-05 2.1323e-05 2.13687e-05 2.14227e-05 2.14869e-05 2.15641e-05 2.16571e-05 2.17689e-05 2.19018e-05 2.20569e-05 2.22337e-05 2.24316e-05 2.26518e-05 2.28988e-05 2.31786e-05 2.3497e-05 2.38605e-05 2.42754e-05 2.47493e-05 2.52926e-05 2.59303e-05 2.66987e-05 2.77167e-05 2.89278e-05 3.08239e-05 3.2403e-05 3.34758e-05 3.4282e-05 2.2e-05 2.20125e-05 2.2027e-05 2.20436e-05 2.20627e-05 2.20847e-05 2.21099e-05 2.21391e-05 2.21727e-05 2.22116e-05 2.22568e-05 2.23098e-05 2.23723e-05 2.24465e-05 2.2535e-05 2.2641e-05 2.27677e-05 2.29177e-05 2.30928e-05 2.32939e-05 2.35215e-05 2.37783e-05 2.40698e-05 2.44034e-05 2.47876e-05 2.52316e-05 2.57457e-05 2.63417e-05 2.7034e-05 2.7847e-05 2.88123e-05 3.00031e-05 3.14048e-05 3.32095e-05 3.50233e-05 3.67062e-05 3.82391e-05 2.23894e-05 2.24028e-05 2.24182e-05 2.24359e-05 2.24564e-05 2.24799e-05 2.2507e-05 2.25383e-05 2.25745e-05 2.26165e-05 2.26653e-05 2.27225e-05 2.27898e-05 2.28694e-05 2.29639e-05 2.30762e-05 2.32094e-05 2.33661e-05 2.35485e-05 2.37581e-05 2.3997e-05 2.42688e-05 2.45803e-05 2.49405e-05 2.53609e-05 2.58556e-05 2.64401e-05 2.71329e-05 2.79535e-05 2.89272e-05 3.00784e-05 3.14442e-05 3.30065e-05 3.48095e-05 3.66482e-05 3.84551e-05 4.03664e-05 2.23897e-05 2.24032e-05 2.24187e-05 2.24366e-05 2.24572e-05 2.2481e-05 2.25085e-05 2.25402e-05 2.25769e-05 2.26195e-05 2.26692e-05 2.27272e-05 2.27952e-05 2.28753e-05 2.29699e-05 2.30816e-05 2.32133e-05 2.33678e-05 2.35478e-05 2.3756e-05 2.39957e-05 2.42717e-05 2.45919e-05 2.49666e-05 2.54094e-05 2.59377e-05 2.65709e-05 2.7332e-05 2.82422e-05 2.93257e-05 3.05959e-05 3.2058e-05 3.36843e-05 3.5457e-05 3.72805e-05 3.91229e-05 4.10831e-05 2.2001e-05 2.20138e-05 2.20287e-05 2.20458e-05 2.20655e-05 2.20883e-05 2.21147e-05 2.21452e-05 2.21806e-05 2.22218e-05 2.22697e-05 2.23257e-05 2.23912e-05 2.24681e-05 2.25584e-05 2.26645e-05 2.27888e-05 2.29339e-05 2.31024e-05 2.32973e-05 2.35224e-05 2.37834e-05 2.40886e-05 2.44497e-05 2.48822e-05 2.5407e-05 2.60478e-05 2.68332e-05 2.77877e-05 2.89361e-05 3.02791e-05 3.17854e-05 3.34001e-05 3.50701e-05 3.67398e-05 3.84124e-05 4.02036e-05 2.11013e-05 2.11129e-05 2.11261e-05 2.11414e-05 2.11591e-05 2.11795e-05 2.12032e-05 2.12307e-05 2.12626e-05 2.12997e-05 2.13429e-05 2.13932e-05 2.1452e-05 2.15206e-05 2.16008e-05 2.16945e-05 2.18037e-05 2.19307e-05 2.2078e-05 2.22487e-05 2.24468e-05 2.26778e-05 2.29499e-05 2.32746e-05 2.36678e-05 2.41505e-05 2.4748e-05 2.54913e-05 2.64046e-05 2.75149e-05 2.88144e-05 3.02426e-05 3.17255e-05 3.31838e-05 3.4569e-05 3.59073e-05 3.73617e-05 1.93827e-05 1.93924e-05 1.94035e-05 1.94163e-05 1.9431e-05 1.9448e-05 1.94677e-05 1.94906e-05 1.95173e-05 1.95483e-05 1.95843e-05 1.96261e-05 1.96747e-05 1.97311e-05 1.97967e-05 1.98728e-05 1.99609e-05 2.00628e-05 2.01802e-05 2.03157e-05 2.04722e-05 2.06546e-05 2.08695e-05 2.11263e-05 2.14384e-05 2.18243e-05 2.23076e-05 2.29176e-05 2.3679e-05 2.46044e-05 2.57e-05 2.69036e-05 2.81559e-05 2.93427e-05 3.04363e-05 3.17625e-05 3.45653e-05 1.60954e-05 1.61041e-05 1.61139e-05 1.61249e-05 1.61374e-05 1.61516e-05 1.6168e-05 1.6187e-05 1.62088e-05 1.6234e-05 1.62628e-05 1.62959e-05 1.63338e-05 1.63772e-05 1.64267e-05 1.64834e-05 1.6548e-05 1.66215e-05 1.67049e-05 1.67997e-05 1.69075e-05 1.7031e-05 1.71738e-05 1.73401e-05 1.7536e-05 1.77707e-05 1.80549e-05 1.84012e-05 1.88199e-05 1.92903e-05 1.98395e-05 2.04629e-05 2.12427e-05 2.2104e-05 2.40052e-05 3.03307e-05 4.8153e-05 8.91718e-06 8.94332e-06 8.97162e-06 9.00229e-06 9.03564e-06 9.07197e-06 9.11167e-06 9.15513e-06 9.2027e-06 9.25474e-06 9.31163e-06 9.37383e-06 9.4418e-06 9.51602e-06 9.59704e-06 9.68548e-06 9.78197e-06 9.88713e-06 1.00015e-05 1.01258e-05 1.02607e-05 1.04069e-05 1.05655e-05 1.07384e-05 1.09288e-05 1.11392e-05 1.13736e-05 1.16322e-05 1.19334e-05 1.22454e-05 1.26262e-05 1.30054e-05 1.36386e-05 1.49475e-05 1.74595e-05 2.25352e-05 3.42806e-05 8.90978e-06 8.93504e-06 8.96245e-06 8.99221e-06 9.02452e-06 9.05964e-06 9.09785e-06 9.13939e-06 9.18449e-06 9.23342e-06 9.28652e-06 9.34421e-06 9.40699e-06 9.47543e-06 9.55024e-06 9.63229e-06 9.72258e-06 9.82224e-06 9.93232e-06 1.00538e-05 1.01873e-05 1.03336e-05 1.04933e-05 1.06674e-05 1.08567e-05 1.1062e-05 1.12839e-05 1.15221e-05 1.17755e-05 1.20429e-05 1.23224e-05 1.26184e-05 1.2919e-05 1.33168e-05 1.36597e-05 1.44137e-05 1.46217e-05 1.60918e-05 1.60997e-05 1.61084e-05 1.61182e-05 1.61293e-05 1.61419e-05 1.61563e-05 1.61726e-05 1.61908e-05 1.62113e-05 1.62342e-05 1.62602e-05 1.629e-05 1.63245e-05 1.63648e-05 1.64125e-05 1.64693e-05 1.65368e-05 1.66162e-05 1.67077e-05 1.68115e-05 1.69281e-05 1.70594e-05 1.72071e-05 1.73725e-05 1.75555e-05 1.77549e-05 1.79681e-05 1.81919e-05 1.8433e-05 1.86882e-05 1.90709e-05 1.94561e-05 2.03844e-05 2.12249e-05 2.10032e-05 2.11868e-05 1.9381e-05 1.93901e-05 1.94005e-05 1.94124e-05 1.94261e-05 1.94418e-05 1.94598e-05 1.94805e-05 1.95043e-05 1.95315e-05 1.9563e-05 1.95995e-05 1.96423e-05 1.9693e-05 1.97536e-05 1.98262e-05 1.99134e-05 2.00172e-05 2.01387e-05 2.0278e-05 2.04348e-05 2.06101e-05 2.08073e-05 2.10301e-05 2.12822e-05 2.15662e-05 2.18839e-05 2.22378e-05 2.2632e-05 2.30869e-05 2.36252e-05 2.43798e-05 2.5274e-05 2.688e-05 2.83133e-05 2.92634e-05 2.94339e-05 2.1101e-05 2.11121e-05 2.11249e-05 2.11395e-05 2.11564e-05 2.11758e-05 2.11981e-05 2.12238e-05 2.12535e-05 2.12878e-05 2.13275e-05 2.1374e-05 2.14288e-05 2.14937e-05 2.15712e-05 2.16639e-05 2.17745e-05 2.19052e-05 2.20574e-05 2.22315e-05 2.24278e-05 2.26478e-05 2.28959e-05 2.31775e-05 2.34988e-05 2.38665e-05 2.42878e-05 2.47719e-05 2.53309e-05 2.59918e-05 2.67831e-05 2.78094e-05 2.90136e-05 3.07062e-05 3.22601e-05 3.34414e-05 3.42903e-05 2.20019e-05 2.20145e-05 2.2029e-05 2.20457e-05 2.2065e-05 2.20872e-05 2.21128e-05 2.21422e-05 2.21763e-05 2.22158e-05 2.22617e-05 2.23154e-05 2.23785e-05 2.24532e-05 2.25419e-05 2.26475e-05 2.27729e-05 2.29206e-05 2.30928e-05 2.32908e-05 2.3516e-05 2.37715e-05 2.40626e-05 2.43965e-05 2.47822e-05 2.52295e-05 2.575e-05 2.63571e-05 2.70669e-05 2.79061e-05 2.89017e-05 3.01178e-05 3.15349e-05 3.32724e-05 3.50603e-05 3.67748e-05 3.83334e-05 2.23916e-05 2.2405e-05 2.24205e-05 2.24384e-05 2.2459e-05 2.24827e-05 2.25101e-05 2.25417e-05 2.25783e-05 2.26207e-05 2.26701e-05 2.27278e-05 2.27957e-05 2.28756e-05 2.29702e-05 2.30821e-05 2.32141e-05 2.33689e-05 2.35489e-05 2.37562e-05 2.39933e-05 2.42643e-05 2.45759e-05 2.49375e-05 2.53608e-05 2.58606e-05 2.64545e-05 2.71624e-05 2.8006e-05 2.90127e-05 3.02022e-05 3.16018e-05 3.31835e-05 3.49618e-05 3.67909e-05 3.86195e-05 4.05422e-05 2.23919e-05 2.24054e-05 2.2421e-05 2.2439e-05 2.24598e-05 2.24837e-05 2.25114e-05 2.25434e-05 2.25804e-05 2.26235e-05 2.26735e-05 2.2732e-05 2.28004e-05 2.28808e-05 2.29754e-05 2.30867e-05 2.32175e-05 2.33705e-05 2.35486e-05 2.37547e-05 2.39925e-05 2.42673e-05 2.4587e-05 2.49626e-05 2.54086e-05 2.59434e-05 2.65896e-05 2.73721e-05 2.83154e-05 2.94474e-05 3.07742e-05 3.22868e-05 3.39368e-05 3.56866e-05 3.74647e-05 3.92647e-05 4.11835e-05 2.20029e-05 2.20158e-05 2.20307e-05 2.20479e-05 2.20677e-05 2.20906e-05 2.21172e-05 2.21479e-05 2.21835e-05 2.22249e-05 2.22731e-05 2.23294e-05 2.23951e-05 2.2472e-05 2.25621e-05 2.26677e-05 2.27911e-05 2.29348e-05 2.31017e-05 2.32948e-05 2.35183e-05 2.37781e-05 2.4083e-05 2.44453e-05 2.48819e-05 2.54152e-05 2.60733e-05 2.68888e-05 2.78908e-05 2.91121e-05 3.05388e-05 3.21114e-05 3.37374e-05 3.53502e-05 3.69252e-05 3.85142e-05 4.02442e-05 2.11028e-05 2.11143e-05 2.11276e-05 2.1143e-05 2.11607e-05 2.11812e-05 2.1205e-05 2.12326e-05 2.12646e-05 2.13018e-05 2.13452e-05 2.13956e-05 2.14544e-05 2.15229e-05 2.16028e-05 2.16959e-05 2.18042e-05 2.193e-05 2.20758e-05 2.22448e-05 2.2441e-05 2.26703e-05 2.29414e-05 2.32666e-05 2.36635e-05 2.41551e-05 2.47726e-05 2.5552e-05 2.65237e-05 2.77296e-05 2.91378e-05 3.06432e-05 3.21059e-05 3.34497e-05 3.46869e-05 3.59459e-05 3.74588e-05 1.93835e-05 1.93932e-05 1.94044e-05 1.94171e-05 1.94318e-05 1.94489e-05 1.94686e-05 1.94916e-05 1.95183e-05 1.95493e-05 1.95853e-05 1.9627e-05 1.96754e-05 1.97315e-05 1.97966e-05 1.9872e-05 1.99592e-05 2.00599e-05 2.01758e-05 2.03095e-05 2.04642e-05 2.06447e-05 2.08579e-05 2.11138e-05 2.14275e-05 2.18199e-05 2.23201e-05 2.29635e-05 2.37828e-05 2.47992e-05 2.60281e-05 2.73482e-05 2.85597e-05 2.95791e-05 3.0765e-05 3.33926e-05 3.88815e-05 1.60953e-05 1.6104e-05 1.61138e-05 1.61247e-05 1.61371e-05 1.61513e-05 1.61677e-05 1.61866e-05 1.62084e-05 1.62334e-05 1.62621e-05 1.62949e-05 1.63324e-05 1.63753e-05 1.64242e-05 1.648e-05 1.65437e-05 1.66159e-05 1.66979e-05 1.67908e-05 1.68965e-05 1.70175e-05 1.71567e-05 1.73182e-05 1.75088e-05 1.77378e-05 1.80185e-05 1.83609e-05 1.8795e-05 1.92588e-05 1.99038e-05 2.06996e-05 2.14581e-05 2.3042e-05 2.90183e-05 4.70109e-05 7.74924e-05 8.91226e-06 8.93817e-06 8.9662e-06 8.9966e-06 9.02964e-06 9.06567e-06 9.10509e-06 9.14827e-06 9.19554e-06 9.24723e-06 9.30373e-06 9.36547e-06 9.4329e-06 9.50649e-06 9.58678e-06 9.67438e-06 9.76989e-06 9.87387e-06 9.98689e-06 1.01095e-05 1.02424e-05 1.03861e-05 1.05418e-05 1.07126e-05 1.09003e-05 1.11079e-05 1.13381e-05 1.15977e-05 1.18815e-05 1.22177e-05 1.25601e-05 1.31042e-05 1.43398e-05 1.68039e-05 2.1805e-05 3.41368e-05 5.39016e-05 8.88133e-06 8.90437e-06 8.92938e-06 8.95654e-06 8.98606e-06 9.01817e-06 9.05313e-06 9.09121e-06 9.13269e-06 9.17778e-06 9.22676e-06 9.28e-06 9.33791e-06 9.401e-06 9.46984e-06 9.54512e-06 9.62767e-06 9.71845e-06 9.81848e-06 9.92879e-06 1.00503e-05 1.01839e-05 1.03303e-05 1.04904e-05 1.06652e-05 1.08555e-05 1.10625e-05 1.12867e-05 1.15283e-05 1.17872e-05 1.20626e-05 1.23547e-05 1.26682e-05 1.29977e-05 1.34057e-05 1.37837e-05 1.44521e-05 1.46972e-05 1.60844e-05 1.60914e-05 1.60992e-05 1.6108e-05 1.61179e-05 1.61291e-05 1.61419e-05 1.61566e-05 1.61733e-05 1.61921e-05 1.62131e-05 1.62368e-05 1.62638e-05 1.62947e-05 1.63304e-05 1.6372e-05 1.6421e-05 1.64789e-05 1.65473e-05 1.66274e-05 1.67197e-05 1.68248e-05 1.69437e-05 1.70779e-05 1.72292e-05 1.73987e-05 1.75869e-05 1.77934e-05 1.80173e-05 1.82576e-05 1.85234e-05 1.88126e-05 1.92131e-05 1.96369e-05 2.03813e-05 2.11359e-05 2.10423e-05 2.11909e-05 1.93733e-05 1.93813e-05 1.93905e-05 1.9401e-05 1.9413e-05 1.94268e-05 1.94428e-05 1.94611e-05 1.94822e-05 1.95064e-05 1.95343e-05 1.95664e-05 1.96037e-05 1.96474e-05 1.96989e-05 1.97601e-05 1.98329e-05 1.99196e-05 2.00221e-05 2.01417e-05 2.02791e-05 2.04348e-05 2.061e-05 2.08076e-05 2.10313e-05 2.12849e-05 2.15717e-05 2.18945e-05 2.22579e-05 2.26678e-05 2.31473e-05 2.37141e-05 2.44818e-05 2.5401e-05 2.67892e-05 2.81818e-05 2.91516e-05 2.94311e-05 2.11018e-05 2.1113e-05 2.11258e-05 2.11406e-05 2.11577e-05 2.11773e-05 2.11999e-05 2.12261e-05 2.12562e-05 2.1291e-05 2.13315e-05 2.13787e-05 2.14342e-05 2.14998e-05 2.15776e-05 2.16701e-05 2.17797e-05 2.19087e-05 2.20586e-05 2.22305e-05 2.24252e-05 2.26449e-05 2.28936e-05 2.31767e-05 2.35005e-05 2.38722e-05 2.42998e-05 2.4794e-05 2.53678e-05 2.60497e-05 2.68625e-05 2.78971e-05 2.91076e-05 3.06752e-05 3.2238e-05 3.35377e-05 3.44973e-05 2.2003e-05 2.20157e-05 2.20303e-05 2.20472e-05 2.20666e-05 2.2089e-05 2.21149e-05 2.21448e-05 2.21793e-05 2.22193e-05 2.22658e-05 2.23202e-05 2.2384e-05 2.24592e-05 2.25481e-05 2.26533e-05 2.27776e-05 2.29235e-05 2.30932e-05 2.32885e-05 2.35115e-05 2.37654e-05 2.40557e-05 2.43898e-05 2.47767e-05 2.52271e-05 2.57538e-05 2.63718e-05 2.70986e-05 2.79625e-05 2.89864e-05 3.02266e-05 3.16608e-05 3.33589e-05 3.51514e-05 3.69133e-05 3.85559e-05 2.23929e-05 2.24064e-05 2.2422e-05 2.244e-05 2.24607e-05 2.24847e-05 2.25123e-05 2.25443e-05 2.25813e-05 2.26242e-05 2.26741e-05 2.27324e-05 2.28007e-05 2.2881e-05 2.29757e-05 2.30871e-05 2.32182e-05 2.33714e-05 2.35493e-05 2.37543e-05 2.39895e-05 2.42593e-05 2.45705e-05 2.49326e-05 2.5358e-05 2.58622e-05 2.64652e-05 2.71882e-05 2.80557e-05 2.90973e-05 3.03272e-05 3.17619e-05 3.33622e-05 3.51221e-05 3.69485e-05 3.8803e-05 4.07703e-05 2.23932e-05 2.24068e-05 2.24225e-05 2.24406e-05 2.24615e-05 2.24856e-05 2.25135e-05 2.25458e-05 2.25832e-05 2.26266e-05 2.26771e-05 2.2736e-05 2.28048e-05 2.28855e-05 2.29801e-05 2.30911e-05 2.32211e-05 2.33727e-05 2.3549e-05 2.3753e-05 2.39888e-05 2.42618e-05 2.45805e-05 2.49562e-05 2.54045e-05 2.59454e-05 2.66046e-05 2.74094e-05 2.83892e-05 2.95762e-05 3.09654e-05 3.25277e-05 3.41906e-05 3.59059e-05 3.76329e-05 3.93925e-05 4.12902e-05 2.20041e-05 2.2017e-05 2.2032e-05 2.20492e-05 2.20692e-05 2.20922e-05 2.21189e-05 2.21499e-05 2.21858e-05 2.22275e-05 2.2276e-05 2.23324e-05 2.23983e-05 2.24753e-05 2.25653e-05 2.26704e-05 2.27929e-05 2.29354e-05 2.31006e-05 2.32917e-05 2.35133e-05 2.37714e-05 2.40753e-05 2.44378e-05 2.48775e-05 2.54188e-05 2.60951e-05 2.69435e-05 2.80004e-05 2.93105e-05 3.08317e-05 3.24636e-05 3.40702e-05 3.55957e-05 3.70683e-05 3.8585e-05 4.02734e-05 2.11036e-05 2.11152e-05 2.11286e-05 2.1144e-05 2.11617e-05 2.11824e-05 2.12062e-05 2.1234e-05 2.12662e-05 2.13036e-05 2.1347e-05 2.13976e-05 2.14564e-05 2.15248e-05 2.16044e-05 2.1697e-05 2.18045e-05 2.19291e-05 2.20733e-05 2.22403e-05 2.24344e-05 2.26616e-05 2.2931e-05 2.3256e-05 2.36559e-05 2.41566e-05 2.4796e-05 2.56164e-05 2.66596e-05 2.79944e-05 2.95285e-05 3.10828e-05 3.24569e-05 3.36508e-05 3.47785e-05 3.60906e-05 3.79338e-05 1.9384e-05 1.93937e-05 1.94048e-05 1.94176e-05 1.94324e-05 1.94494e-05 1.94692e-05 1.94923e-05 1.9519e-05 1.955e-05 1.9586e-05 1.96276e-05 1.96759e-05 1.97318e-05 1.97964e-05 1.98712e-05 1.99575e-05 2.00569e-05 2.01713e-05 2.03031e-05 2.04557e-05 2.06337e-05 2.08444e-05 2.10986e-05 2.14132e-05 2.18122e-05 2.23318e-05 2.30167e-05 2.39002e-05 2.50701e-05 2.64758e-05 2.78444e-05 2.88542e-05 2.98579e-05 3.218e-05 3.7729e-05 4.61885e-05 1.6095e-05 1.61037e-05 1.61134e-05 1.61243e-05 1.61366e-05 1.61508e-05 1.61671e-05 1.6186e-05 1.62077e-05 1.62326e-05 1.62611e-05 1.62937e-05 1.63309e-05 1.63733e-05 1.64216e-05 1.64767e-05 1.65394e-05 1.66104e-05 1.66909e-05 1.67819e-05 1.68853e-05 1.70029e-05 1.71373e-05 1.72926e-05 1.7476e-05 1.7698e-05 1.79717e-05 1.83281e-05 1.8722e-05 1.93137e-05 2.01271e-05 2.09675e-05 2.20807e-05 2.69702e-05 4.42408e-05 8.10685e-05 0.000102524 8.90699e-06 8.93264e-06 8.9604e-06 8.99049e-06 9.02324e-06 9.05898e-06 9.0981e-06 9.14098e-06 9.18793e-06 9.23927e-06 9.29536e-06 9.35664e-06 9.42353e-06 9.49649e-06 9.57608e-06 9.66286e-06 9.7574e-06 9.86023e-06 9.97186e-06 1.00928e-05 1.02235e-05 1.03646e-05 1.05186e-05 1.0687e-05 1.08722e-05 1.10764e-05 1.13008e-05 1.15543e-05 1.18396e-05 1.2143e-05 1.25723e-05 1.37071e-05 1.61011e-05 2.08631e-05 3.25679e-05 5.54634e-05 7.14332e-05 8.87592e-06 8.89867e-06 8.9234e-06 8.9503e-06 8.97957e-06 9.01145e-06 9.04623e-06 9.08417e-06 9.12555e-06 9.17058e-06 9.21958e-06 9.27289e-06 9.33096e-06 9.39428e-06 9.46342e-06 9.53906e-06 9.62199e-06 9.71312e-06 9.81343e-06 9.92391e-06 1.00455e-05 1.01791e-05 1.03257e-05 1.04861e-05 1.06615e-05 1.0853e-05 1.10617e-05 1.12886e-05 1.15337e-05 1.17979e-05 1.20794e-05 1.2384e-05 1.27042e-05 1.30746e-05 1.3445e-05 1.39449e-05 1.44181e-05 1.48965e-05 1.60838e-05 1.60908e-05 1.60986e-05 1.61074e-05 1.61173e-05 1.61287e-05 1.61418e-05 1.61568e-05 1.61738e-05 1.6193e-05 1.62146e-05 1.62391e-05 1.62669e-05 1.62987e-05 1.63355e-05 1.63783e-05 1.64284e-05 1.64873e-05 1.65565e-05 1.66371e-05 1.67302e-05 1.68365e-05 1.69573e-05 1.7094e-05 1.72482e-05 1.74212e-05 1.76138e-05 1.78266e-05 1.80602e-05 1.83146e-05 1.86018e-05 1.89169e-05 1.93367e-05 1.98067e-05 2.04255e-05 2.11761e-05 2.11768e-05 2.15019e-05 1.93735e-05 1.93815e-05 1.93907e-05 1.94012e-05 1.94134e-05 1.94274e-05 1.94435e-05 1.94622e-05 1.94836e-05 1.95083e-05 1.95367e-05 1.95695e-05 1.96076e-05 1.96521e-05 1.97043e-05 1.9766e-05 1.9839e-05 1.99254e-05 2.0027e-05 2.01453e-05 2.02812e-05 2.04359e-05 2.06109e-05 2.08089e-05 2.10336e-05 2.12888e-05 2.15784e-05 2.19063e-05 2.22786e-05 2.27022e-05 2.32027e-05 2.37917e-05 2.45741e-05 2.5517e-05 2.67683e-05 2.81938e-05 2.91845e-05 2.97244e-05 2.11024e-05 2.11136e-05 2.11265e-05 2.11414e-05 2.11587e-05 2.11785e-05 2.12015e-05 2.1228e-05 2.12586e-05 2.1294e-05 2.13351e-05 2.1383e-05 2.14392e-05 2.15053e-05 2.15835e-05 2.16758e-05 2.17847e-05 2.19123e-05 2.20604e-05 2.22304e-05 2.24236e-05 2.26428e-05 2.28917e-05 2.31759e-05 2.35017e-05 2.38769e-05 2.43102e-05 2.48136e-05 2.54007e-05 2.61014e-05 2.69328e-05 2.79801e-05 2.92024e-05 3.0702e-05 3.23238e-05 3.37395e-05 3.48697e-05 2.20038e-05 2.20165e-05 2.20312e-05 2.20482e-05 2.20679e-05 2.20905e-05 2.21167e-05 2.21469e-05 2.21819e-05 2.22224e-05 2.22696e-05 2.23246e-05 2.2389e-05 2.24646e-05 2.25537e-05 2.26587e-05 2.27821e-05 2.29264e-05 2.3094e-05 2.32869e-05 2.35077e-05 2.376e-05 2.40493e-05 2.4383e-05 2.47707e-05 2.52237e-05 2.57557e-05 2.63841e-05 2.71266e-05 2.80136e-05 2.90638e-05 3.03293e-05 3.17818e-05 3.34668e-05 3.52951e-05 3.71146e-05 3.88914e-05 2.23938e-05 2.24074e-05 2.2423e-05 2.24412e-05 2.24621e-05 2.24862e-05 2.25142e-05 2.25465e-05 2.25839e-05 2.26272e-05 2.26777e-05 2.27365e-05 2.28053e-05 2.2886e-05 2.29807e-05 2.30919e-05 2.3222e-05 2.33738e-05 2.35498e-05 2.37527e-05 2.39858e-05 2.42539e-05 2.4564e-05 2.49258e-05 2.53523e-05 2.58603e-05 2.64706e-05 2.72091e-05 2.81012e-05 2.91798e-05 3.04521e-05 3.19231e-05 3.35396e-05 3.52879e-05 3.71226e-05 3.90104e-05 4.10576e-05 2.23941e-05 2.24077e-05 2.24235e-05 2.24417e-05 2.24628e-05 2.24871e-05 2.25153e-05 2.25479e-05 2.25856e-05 2.26294e-05 2.26804e-05 2.27397e-05 2.28089e-05 2.28898e-05 2.29844e-05 2.30951e-05 2.32243e-05 2.33748e-05 2.35493e-05 2.37512e-05 2.39846e-05 2.42556e-05 2.45725e-05 2.49474e-05 2.53971e-05 2.59433e-05 2.66144e-05 2.74428e-05 2.8463e-05 2.97121e-05 3.11687e-05 3.27757e-05 3.44379e-05 3.61098e-05 3.77886e-05 3.95179e-05 4.1424e-05 2.20048e-05 2.20178e-05 2.20328e-05 2.20502e-05 2.20703e-05 2.20935e-05 2.21204e-05 2.21516e-05 2.21877e-05 2.22297e-05 2.22785e-05 2.23352e-05 2.24013e-05 2.24784e-05 2.25682e-05 2.26728e-05 2.27946e-05 2.29358e-05 2.30993e-05 2.32884e-05 2.35077e-05 2.37636e-05 2.40655e-05 2.44273e-05 2.4869e-05 2.5418e-05 2.61127e-05 2.69965e-05 2.81179e-05 2.95348e-05 3.11578e-05 3.2827e-05 3.43787e-05 3.58e-05 3.71824e-05 3.86455e-05 4.03005e-05 2.11042e-05 2.11158e-05 2.11292e-05 2.11447e-05 2.11626e-05 2.11833e-05 2.12073e-05 2.12352e-05 2.12675e-05 2.13051e-05 2.13487e-05 2.13994e-05 2.14582e-05 2.15266e-05 2.16059e-05 2.1698e-05 2.18047e-05 2.19281e-05 2.20707e-05 2.22356e-05 2.24272e-05 2.26518e-05 2.29189e-05 2.32427e-05 2.36445e-05 2.4154e-05 2.48176e-05 2.56844e-05 2.68188e-05 2.8323e-05 2.9986e-05 3.15127e-05 3.27449e-05 3.3806e-05 3.49474e-05 3.6576e-05 3.90451e-05 1.93842e-05 1.9394e-05 1.94051e-05 1.94179e-05 1.94327e-05 1.94498e-05 1.94697e-05 1.94928e-05 1.95196e-05 1.95507e-05 1.95866e-05 1.96282e-05 1.96763e-05 1.9732e-05 1.97962e-05 1.98704e-05 1.99558e-05 2.0054e-05 2.01668e-05 2.02966e-05 2.04466e-05 2.06216e-05 2.0829e-05 2.10806e-05 2.13953e-05 2.18008e-05 2.2343e-05 2.30766e-05 2.40387e-05 2.54661e-05 2.70424e-05 2.81857e-05 2.90408e-05 3.09282e-05 3.59141e-05 4.55554e-05 5.77008e-05 1.60946e-05 1.61032e-05 1.61129e-05 1.61237e-05 1.6136e-05 1.61502e-05 1.61665e-05 1.61853e-05 1.62069e-05 1.62317e-05 1.62601e-05 1.62924e-05 1.63293e-05 1.63713e-05 1.64191e-05 1.64735e-05 1.65352e-05 1.66051e-05 1.6684e-05 1.6773e-05 1.68736e-05 1.69869e-05 1.71152e-05 1.72629e-05 1.74383e-05 1.76521e-05 1.79183e-05 1.82888e-05 1.86711e-05 1.96298e-05 2.03965e-05 2.11604e-05 2.4663e-05 3.94779e-05 7.79639e-05 0.000109234 0.000125393 8.90137e-06 8.92675e-06 8.95422e-06 8.98401e-06 9.01645e-06 9.0519e-06 9.09073e-06 9.13329e-06 9.1799e-06 9.23087e-06 9.28655e-06 9.34735e-06 9.41369e-06 9.48605e-06 9.56495e-06 9.65094e-06 9.74454e-06 9.84625e-06 9.95651e-06 1.00757e-05 1.02042e-05 1.03437e-05 1.04957e-05 1.06619e-05 1.08432e-05 1.10412e-05 1.12631e-05 1.14995e-05 1.17912e-05 1.21018e-05 1.30165e-05 1.52813e-05 1.98729e-05 3.02182e-05 5.33217e-05 7.47288e-05 8.94931e-05 8.87023e-06 8.89267e-06 8.91711e-06 8.94373e-06 8.97274e-06 9.00439e-06 9.03896e-06 9.07674e-06 9.11798e-06 9.16293e-06 9.21189e-06 9.26523e-06 9.32339e-06 9.38687e-06 9.45623e-06 9.53212e-06 9.61533e-06 9.70671e-06 9.80722e-06 9.91781e-06 1.00395e-05 1.01732e-05 1.03199e-05 1.04806e-05 1.06568e-05 1.08498e-05 1.10606e-05 1.129e-05 1.15385e-05 1.18069e-05 1.20942e-05 1.24058e-05 1.27389e-05 1.31129e-05 1.35139e-05 1.39964e-05 1.44207e-05 1.54252e-05 1.60832e-05 1.60901e-05 1.60979e-05 1.61067e-05 1.61167e-05 1.61282e-05 1.61415e-05 1.61567e-05 1.61741e-05 1.61937e-05 1.62159e-05 1.62409e-05 1.62695e-05 1.63022e-05 1.63399e-05 1.63837e-05 1.64348e-05 1.64945e-05 1.65644e-05 1.66456e-05 1.67395e-05 1.68469e-05 1.69692e-05 1.71078e-05 1.72642e-05 1.74399e-05 1.76362e-05 1.78544e-05 1.80968e-05 1.83625e-05 1.8668e-05 1.90039e-05 1.9433e-05 1.99716e-05 2.04329e-05 2.13863e-05 2.14064e-05 2.19094e-05 1.93735e-05 1.93816e-05 1.93908e-05 1.94014e-05 1.94137e-05 1.94278e-05 1.94442e-05 1.94631e-05 1.9485e-05 1.95101e-05 1.9539e-05 1.95724e-05 1.96111e-05 1.96563e-05 1.97092e-05 1.97714e-05 1.98447e-05 1.99309e-05 2.00319e-05 2.01491e-05 2.0284e-05 2.04378e-05 2.06126e-05 2.08109e-05 2.10364e-05 2.12931e-05 2.15854e-05 2.19178e-05 2.22978e-05 2.27325e-05 2.32511e-05 2.3855e-05 2.46599e-05 2.56212e-05 2.68014e-05 2.8407e-05 2.93658e-05 3.02659e-05 2.11027e-05 2.1114e-05 2.11271e-05 2.11421e-05 2.11595e-05 2.11796e-05 2.12029e-05 2.12298e-05 2.12608e-05 2.12968e-05 2.13385e-05 2.13871e-05 2.14439e-05 2.15106e-05 2.1589e-05 2.16813e-05 2.17896e-05 2.19161e-05 2.20627e-05 2.2231e-05 2.24231e-05 2.26414e-05 2.28902e-05 2.31748e-05 2.3502e-05 2.388e-05 2.43182e-05 2.48296e-05 2.54279e-05 2.61449e-05 2.69914e-05 2.80589e-05 2.92941e-05 3.07908e-05 3.2534e-05 3.40197e-05 3.53896e-05 2.20043e-05 2.20171e-05 2.2032e-05 2.20491e-05 2.20689e-05 2.20918e-05 2.21183e-05 2.21489e-05 2.21843e-05 2.22254e-05 2.22731e-05 2.23287e-05 2.23936e-05 2.24698e-05 2.25591e-05 2.26638e-05 2.27865e-05 2.29296e-05 2.30953e-05 2.32861e-05 2.35048e-05 2.37552e-05 2.40431e-05 2.43761e-05 2.47639e-05 2.52187e-05 2.57553e-05 2.63922e-05 2.71493e-05 2.80578e-05 2.91328e-05 3.04268e-05 3.18991e-05 3.36005e-05 3.54969e-05 3.73782e-05 3.9335e-05 2.23944e-05 2.24081e-05 2.24238e-05 2.24421e-05 2.24632e-05 2.24876e-05 2.25158e-05 2.25484e-05 2.25863e-05 2.26301e-05 2.26811e-05 2.27404e-05 2.28097e-05 2.28907e-05 2.29855e-05 2.30964e-05 2.32258e-05 2.33763e-05 2.35506e-05 2.37514e-05 2.39823e-05 2.42483e-05 2.45566e-05 2.49171e-05 2.53436e-05 2.5854e-05 2.64713e-05 2.72242e-05 2.81413e-05 2.92589e-05 3.05762e-05 3.20842e-05 3.37151e-05 3.54616e-05 3.73212e-05 3.92551e-05 4.14189e-05 2.23947e-05 2.24084e-05 2.24243e-05 2.24427e-05 2.24639e-05 2.24884e-05 2.25168e-05 2.25497e-05 2.25878e-05 2.2632e-05 2.26834e-05 2.27431e-05 2.28127e-05 2.28939e-05 2.29886e-05 2.3099e-05 2.32275e-05 2.33767e-05 2.35495e-05 2.37493e-05 2.39803e-05 2.42486e-05 2.4563e-05 2.49362e-05 2.53859e-05 2.59361e-05 2.66182e-05 2.7471e-05 2.85359e-05 2.98548e-05 3.13822e-05 3.30246e-05 3.4673e-05 3.63001e-05 3.7943e-05 3.96618e-05 4.16185e-05 2.20053e-05 2.20184e-05 2.20335e-05 2.2051e-05 2.20712e-05 2.20946e-05 2.21217e-05 2.21531e-05 2.21895e-05 2.22318e-05 2.22808e-05 2.23379e-05 2.24042e-05 2.24813e-05 2.2571e-05 2.26753e-05 2.27962e-05 2.29362e-05 2.3098e-05 2.32849e-05 2.35016e-05 2.37547e-05 2.40538e-05 2.44137e-05 2.4856e-05 2.54117e-05 2.61253e-05 2.70476e-05 2.82457e-05 2.9786e-05 3.151e-05 3.31806e-05 3.46516e-05 3.59733e-05 3.72943e-05 3.87114e-05 4.03981e-05 2.11046e-05 2.11162e-05 2.11297e-05 2.11452e-05 2.11632e-05 2.11841e-05 2.12082e-05 2.12363e-05 2.12688e-05 2.13066e-05 2.13503e-05 2.14011e-05 2.146e-05 2.15283e-05 2.16075e-05 2.16991e-05 2.18049e-05 2.19271e-05 2.2068e-05 2.22307e-05 2.24195e-05 2.26409e-05 2.29049e-05 2.32263e-05 2.36288e-05 2.41464e-05 2.48365e-05 2.57561e-05 2.70125e-05 2.87225e-05 3.04788e-05 3.1887e-05 3.29752e-05 3.39876e-05 3.54257e-05 3.76105e-05 4.08963e-05 1.93843e-05 1.93941e-05 1.94053e-05 1.94181e-05 1.94329e-05 1.94501e-05 1.94701e-05 1.94933e-05 1.95201e-05 1.95512e-05 1.95872e-05 1.96288e-05 1.96768e-05 1.97322e-05 1.97961e-05 1.98697e-05 1.99542e-05 2.00512e-05 2.01624e-05 2.02899e-05 2.0437e-05 2.06083e-05 2.08116e-05 2.10595e-05 2.13734e-05 2.17849e-05 2.23543e-05 2.31369e-05 2.42339e-05 2.59988e-05 2.75095e-05 2.83274e-05 2.97186e-05 3.38574e-05 4.35878e-05 5.70317e-05 7.27296e-05 1.6094e-05 1.61026e-05 1.61122e-05 1.6123e-05 1.61353e-05 1.61494e-05 1.61657e-05 1.61845e-05 1.62061e-05 1.62308e-05 1.6259e-05 1.62911e-05 1.63276e-05 1.63692e-05 1.64166e-05 1.64703e-05 1.65312e-05 1.65998e-05 1.66772e-05 1.6764e-05 1.6861e-05 1.69691e-05 1.70906e-05 1.723e-05 1.73967e-05 1.75967e-05 1.78738e-05 1.81841e-05 1.87457e-05 1.98425e-05 2.05159e-05 2.25957e-05 3.35585e-05 6.75554e-05 0.000112493 0.00012999 0.000150693 8.89543e-06 8.92051e-06 8.94768e-06 8.97717e-06 9.0093e-06 9.04444e-06 9.08296e-06 9.12519e-06 9.17144e-06 9.22203e-06 9.27728e-06 9.3376e-06 9.40341e-06 9.47517e-06 9.55342e-06 9.63865e-06 9.73134e-06 9.83195e-06 9.94085e-06 1.00583e-05 1.01851e-05 1.03232e-05 1.04733e-05 1.06359e-05 1.08122e-05 1.10048e-05 1.12143e-05 1.1467e-05 1.1688e-05 1.22382e-05 1.42169e-05 1.87749e-05 2.80496e-05 4.90349e-05 7.37062e-05 9.01589e-05 0.000112744 8.86428e-06 8.8864e-06 8.91054e-06 8.93687e-06 8.9656e-06 8.997e-06 9.03134e-06 9.06893e-06 9.11e-06 9.15482e-06 9.20371e-06 9.25703e-06 9.31523e-06 9.37879e-06 9.44829e-06 9.52436e-06 9.60775e-06 9.6993e-06 9.79994e-06 9.91062e-06 1.00323e-05 1.01661e-05 1.0313e-05 1.04744e-05 1.06519e-05 1.08466e-05 1.10592e-05 1.12905e-05 1.15412e-05 1.18129e-05 1.21043e-05 1.24243e-05 1.27516e-05 1.31475e-05 1.35391e-05 1.4005e-05 1.47176e-05 1.66609e-05 1.60824e-05 1.60894e-05 1.60972e-05 1.6106e-05 1.6116e-05 1.61277e-05 1.61411e-05 1.61566e-05 1.61743e-05 1.61943e-05 1.62169e-05 1.62425e-05 1.62718e-05 1.63052e-05 1.63438e-05 1.63884e-05 1.64403e-05 1.65008e-05 1.65713e-05 1.66532e-05 1.67477e-05 1.68561e-05 1.69795e-05 1.71194e-05 1.72772e-05 1.74549e-05 1.76546e-05 1.78777e-05 1.81277e-05 1.84013e-05 1.87259e-05 1.90552e-05 1.95344e-05 2.00308e-05 2.04987e-05 2.17708e-05 2.17208e-05 2.22723e-05 1.93735e-05 1.93816e-05 1.93908e-05 1.94015e-05 1.94139e-05 1.94282e-05 1.94448e-05 1.94641e-05 1.94862e-05 1.95117e-05 1.95411e-05 1.95751e-05 1.96145e-05 1.96603e-05 1.97138e-05 1.97765e-05 1.985e-05 1.99362e-05 2.00367e-05 2.01532e-05 2.02873e-05 2.04404e-05 2.06148e-05 2.08133e-05 2.10394e-05 2.12973e-05 2.15917e-05 2.19278e-05 2.23143e-05 2.27571e-05 2.32916e-05 2.39005e-05 2.47467e-05 2.56923e-05 2.69322e-05 2.87809e-05 2.9621e-05 3.10213e-05 2.1103e-05 2.11144e-05 2.11275e-05 2.11427e-05 2.11603e-05 2.11807e-05 2.12043e-05 2.12315e-05 2.1263e-05 2.12994e-05 2.13417e-05 2.13909e-05 2.14483e-05 2.15155e-05 2.15943e-05 2.16866e-05 2.17945e-05 2.19201e-05 2.20654e-05 2.22324e-05 2.24231e-05 2.26405e-05 2.28888e-05 2.31734e-05 2.35014e-05 2.38809e-05 2.43228e-05 2.48406e-05 2.5448e-05 2.61792e-05 2.70374e-05 2.81344e-05 2.93797e-05 3.0949e-05 3.28465e-05 3.43605e-05 3.60664e-05 2.20048e-05 2.20177e-05 2.20326e-05 2.20499e-05 2.20699e-05 2.20931e-05 2.21198e-05 2.21508e-05 2.21866e-05 2.22282e-05 2.22765e-05 2.23326e-05 2.23981e-05 2.24747e-05 2.25642e-05 2.26689e-05 2.2791e-05 2.29329e-05 2.30971e-05 2.3286e-05 2.35026e-05 2.37511e-05 2.40372e-05 2.43688e-05 2.4756e-05 2.52116e-05 2.57515e-05 2.63948e-05 2.71653e-05 2.8094e-05 2.91935e-05 3.05201e-05 3.20159e-05 3.37691e-05 3.57605e-05 3.77085e-05 3.98884e-05 2.23949e-05 2.24087e-05 2.24246e-05 2.2443e-05 2.24642e-05 2.24889e-05 2.25174e-05 2.25503e-05 2.25886e-05 2.26329e-05 2.26843e-05 2.27442e-05 2.28139e-05 2.28952e-05 2.29902e-05 2.31009e-05 2.32297e-05 2.3379e-05 2.35516e-05 2.37503e-05 2.39789e-05 2.42424e-05 2.45481e-05 2.49064e-05 2.53316e-05 2.58432e-05 2.64662e-05 2.72313e-05 2.81753e-05 2.93342e-05 3.06993e-05 3.22451e-05 3.38909e-05 3.56515e-05 3.7558e-05 3.9557e-05 4.18726e-05 2.23952e-05 2.2409e-05 2.2425e-05 2.24435e-05 2.24649e-05 2.24896e-05 2.25183e-05 2.25515e-05 2.25899e-05 2.26345e-05 2.26863e-05 2.27465e-05 2.28165e-05 2.28979e-05 2.29927e-05 2.31028e-05 2.32307e-05 2.33788e-05 2.35499e-05 2.37474e-05 2.39757e-05 2.42409e-05 2.45521e-05 2.49224e-05 2.53707e-05 2.59232e-05 2.66161e-05 2.74933e-05 2.86073e-05 3.00044e-05 3.16034e-05 3.32691e-05 3.48956e-05 3.64865e-05 3.81151e-05 3.98559e-05 4.19114e-05 2.20058e-05 2.20189e-05 2.20341e-05 2.20517e-05 2.20721e-05 2.20956e-05 2.21229e-05 2.21546e-05 2.21913e-05 2.22338e-05 2.22832e-05 2.23405e-05 2.2407e-05 2.24842e-05 2.25739e-05 2.26778e-05 2.27979e-05 2.29367e-05 2.30967e-05 2.32814e-05 2.34951e-05 2.37447e-05 2.40401e-05 2.43968e-05 2.48384e-05 2.53995e-05 2.61311e-05 2.70962e-05 2.83864e-05 3.00624e-05 3.18722e-05 3.35089e-05 3.4893e-05 3.61442e-05 3.74277e-05 3.88447e-05 4.06799e-05 2.11049e-05 2.11166e-05 2.11301e-05 2.11458e-05 2.11638e-05 2.11848e-05 2.12091e-05 2.12374e-05 2.12701e-05 2.1308e-05 2.1352e-05 2.14029e-05 2.14618e-05 2.15301e-05 2.16091e-05 2.17002e-05 2.18053e-05 2.19263e-05 2.20654e-05 2.22256e-05 2.24114e-05 2.26291e-05 2.28888e-05 2.32065e-05 2.3608e-05 2.41333e-05 2.4851e-05 2.58337e-05 2.72532e-05 2.91802e-05 3.09478e-05 3.21909e-05 3.31801e-05 3.43948e-05 3.63764e-05 3.92869e-05 4.33973e-05 1.93843e-05 1.93942e-05 1.94054e-05 1.94183e-05 1.94332e-05 1.94504e-05 1.94704e-05 1.94937e-05 1.95206e-05 1.95518e-05 1.95878e-05 1.96293e-05 1.96773e-05 1.97325e-05 1.97961e-05 1.98691e-05 1.99528e-05 2.00486e-05 2.0158e-05 2.02831e-05 2.04268e-05 2.05939e-05 2.07923e-05 2.10353e-05 2.13467e-05 2.17643e-05 2.23608e-05 2.32014e-05 2.45401e-05 2.65939e-05 2.76647e-05 2.86357e-05 3.17009e-05 4.01608e-05 5.54392e-05 7.15301e-05 8.91621e-05 1.60933e-05 1.61019e-05 1.61115e-05 1.61222e-05 1.61345e-05 1.61486e-05 1.61649e-05 1.61837e-05 1.62052e-05 1.62298e-05 1.62578e-05 1.62897e-05 1.6326e-05 1.63673e-05 1.64142e-05 1.64673e-05 1.65273e-05 1.65948e-05 1.66705e-05 1.67547e-05 1.68475e-05 1.69498e-05 1.70641e-05 1.71944e-05 1.73504e-05 1.75347e-05 1.78212e-05 1.81178e-05 1.91322e-05 1.98854e-05 2.08545e-05 2.79775e-05 5.40942e-05 0.00010693 0.000133228 0.000150482 0.000178357 8.88916e-06 8.91393e-06 8.94079e-06 8.96997e-06 9.00179e-06 9.03662e-06 9.07481e-06 9.11668e-06 9.16256e-06 9.21275e-06 9.26757e-06 9.32741e-06 9.39269e-06 9.46388e-06 9.5415e-06 9.626e-06 9.71781e-06 9.81735e-06 9.92484e-06 1.00407e-05 1.01665e-05 1.0303e-05 1.04502e-05 1.06087e-05 1.07791e-05 1.09661e-05 1.11613e-05 1.14141e-05 1.1666e-05 1.28943e-05 1.711e-05 2.62615e-05 4.4475e-05 6.9285e-05 8.77061e-05 0.00010887 0.000139498 8.85785e-06 8.87962e-06 8.90343e-06 8.92944e-06 8.95787e-06 8.989e-06 9.0231e-06 9.06045e-06 9.10132e-06 9.14598e-06 9.19474e-06 9.24799e-06 9.30618e-06 9.36977e-06 9.43934e-06 9.5155e-06 9.59901e-06 9.69069e-06 9.79142e-06 9.90216e-06 1.00239e-05 1.01578e-05 1.03053e-05 1.0468e-05 1.06467e-05 1.08425e-05 1.10564e-05 1.12894e-05 1.15422e-05 1.18156e-05 1.21089e-05 1.24346e-05 1.27523e-05 1.31892e-05 1.35367e-05 1.41294e-05 1.56648e-05 1.95261e-05 1.60816e-05 1.60885e-05 1.60963e-05 1.61051e-05 1.61153e-05 1.61271e-05 1.61407e-05 1.61565e-05 1.61744e-05 1.61947e-05 1.62178e-05 1.62439e-05 1.62738e-05 1.63079e-05 1.63472e-05 1.63926e-05 1.64452e-05 1.65065e-05 1.65776e-05 1.66601e-05 1.67553e-05 1.68642e-05 1.69883e-05 1.71288e-05 1.72879e-05 1.74676e-05 1.76705e-05 1.78978e-05 1.81544e-05 1.84322e-05 1.87805e-05 1.9076e-05 1.96703e-05 2.0007e-05 2.07761e-05 2.21582e-05 2.20861e-05 2.3076e-05 1.93734e-05 1.93815e-05 1.93909e-05 1.94017e-05 1.94142e-05 1.94287e-05 1.94455e-05 1.9465e-05 1.94875e-05 1.95134e-05 1.95432e-05 1.95778e-05 1.96177e-05 1.96642e-05 1.97183e-05 1.97815e-05 1.98553e-05 1.99415e-05 2.00417e-05 2.01576e-05 2.0291e-05 2.04436e-05 2.06177e-05 2.08161e-05 2.10425e-05 2.13012e-05 2.15972e-05 2.19362e-05 2.23275e-05 2.27759e-05 2.33225e-05 2.39282e-05 2.48402e-05 2.57275e-05 2.72421e-05 2.92268e-05 2.99773e-05 3.19477e-05 2.11033e-05 2.11148e-05 2.1128e-05 2.11434e-05 2.11612e-05 2.11818e-05 2.12056e-05 2.12332e-05 2.12652e-05 2.13021e-05 2.1345e-05 2.13948e-05 2.14528e-05 2.15205e-05 2.15996e-05 2.16919e-05 2.17996e-05 2.19245e-05 2.20687e-05 2.22344e-05 2.24238e-05 2.26402e-05 2.28875e-05 2.31716e-05 2.34995e-05 2.38801e-05 2.43237e-05 2.4845e-05 2.54587e-05 2.62022e-05 2.70727e-05 2.82084e-05 2.94647e-05 3.12075e-05 3.32484e-05 3.4782e-05 3.69198e-05 2.20052e-05 2.20182e-05 2.20332e-05 2.20507e-05 2.20709e-05 2.20943e-05 2.21214e-05 2.21527e-05 2.2189e-05 2.22311e-05 2.22799e-05 2.23366e-05 2.24027e-05 2.24797e-05 2.25695e-05 2.26741e-05 2.27958e-05 2.29367e-05 2.30994e-05 2.32864e-05 2.3501e-05 2.37473e-05 2.40313e-05 2.43609e-05 2.47465e-05 2.52016e-05 2.57433e-05 2.63925e-05 2.71725e-05 2.81222e-05 2.92484e-05 3.06135e-05 3.21421e-05 3.39935e-05 3.61001e-05 3.81286e-05 4.0581e-05 2.23954e-05 2.24092e-05 2.24252e-05 2.24438e-05 2.24653e-05 2.24902e-05 2.2519e-05 2.25523e-05 2.25909e-05 2.26357e-05 2.26876e-05 2.2748e-05 2.28182e-05 2.28999e-05 2.2995e-05 2.31056e-05 2.32338e-05 2.33821e-05 2.3553e-05 2.37496e-05 2.39756e-05 2.4236e-05 2.45384e-05 2.48933e-05 2.5316e-05 2.5827e-05 2.64542e-05 2.72321e-05 2.8204e-05 2.94083e-05 3.08263e-05 3.24126e-05 3.40793e-05 3.58785e-05 3.786e-05 3.9951e-05 4.24541e-05 2.23957e-05 2.24096e-05 2.24257e-05 2.24443e-05 2.24659e-05 2.24909e-05 2.25198e-05 2.25533e-05 2.25921e-05 2.26371e-05 2.26894e-05 2.275e-05 2.28203e-05 2.2902e-05 2.29969e-05 2.31069e-05 2.32342e-05 2.33811e-05 2.35505e-05 2.37457e-05 2.39709e-05 2.42324e-05 2.45393e-05 2.49053e-05 2.53505e-05 2.59036e-05 2.6606e-05 2.75093e-05 2.86795e-05 3.01663e-05 3.18357e-05 3.35151e-05 3.51206e-05 3.66932e-05 3.83387e-05 4.01458e-05 4.23513e-05 2.20062e-05 2.20194e-05 2.20347e-05 2.20524e-05 2.20729e-05 2.20967e-05 2.21242e-05 2.21561e-05 2.21931e-05 2.2236e-05 2.22856e-05 2.23432e-05 2.241e-05 2.24874e-05 2.25769e-05 2.26805e-05 2.27999e-05 2.29375e-05 2.30957e-05 2.32777e-05 2.3488e-05 2.37333e-05 2.4024e-05 2.4376e-05 2.48149e-05 2.53799e-05 2.61305e-05 2.71436e-05 2.85459e-05 3.03677e-05 3.22395e-05 3.38208e-05 3.51356e-05 3.63526e-05 3.76225e-05 3.91466e-05 4.11792e-05 2.11051e-05 2.11169e-05 2.11305e-05 2.11463e-05 2.11645e-05 2.11856e-05 2.12101e-05 2.12385e-05 2.12714e-05 2.13095e-05 2.13537e-05 2.14047e-05 2.14638e-05 2.15321e-05 2.16109e-05 2.17016e-05 2.18059e-05 2.19256e-05 2.20628e-05 2.22204e-05 2.24026e-05 2.26157e-05 2.287e-05 2.31821e-05 2.35807e-05 2.41136e-05 2.4859e-05 2.59243e-05 2.75567e-05 2.9676e-05 3.13509e-05 3.24553e-05 3.35074e-05 3.52407e-05 3.78548e-05 4.16466e-05 4.66373e-05 1.93843e-05 1.93942e-05 1.94054e-05 1.94184e-05 1.94333e-05 1.94507e-05 1.94708e-05 1.94941e-05 1.95212e-05 1.95524e-05 1.95884e-05 1.963e-05 1.96779e-05 1.97329e-05 1.97962e-05 1.98688e-05 1.99516e-05 2.00461e-05 2.01536e-05 2.02759e-05 2.04158e-05 2.05779e-05 2.07701e-05 2.10069e-05 2.13135e-05 2.17381e-05 2.23602e-05 2.32866e-05 2.49986e-05 2.69121e-05 2.7676e-05 2.98507e-05 3.67294e-05 5.1901e-05 6.87429e-05 8.82057e-05 0.0001056 1.60924e-05 1.6101e-05 1.61106e-05 1.61214e-05 1.61336e-05 1.61478e-05 1.6164e-05 1.61827e-05 1.62041e-05 1.62286e-05 1.62565e-05 1.62883e-05 1.63243e-05 1.63653e-05 1.64117e-05 1.64643e-05 1.65235e-05 1.65897e-05 1.66635e-05 1.67445e-05 1.68326e-05 1.69288e-05 1.70352e-05 1.71548e-05 1.72957e-05 1.74724e-05 1.77215e-05 1.81273e-05 1.93402e-05 1.98741e-05 2.35512e-05 4.17909e-05 9.08055e-05 0.000132368 0.00014631 0.000176714 0.000208168 8.88235e-06 8.90679e-06 8.9333e-06 8.96215e-06 8.99364e-06 9.02813e-06 9.06596e-06 9.10745e-06 9.15293e-06 9.20269e-06 9.25705e-06 9.31639e-06 9.38114e-06 9.45178e-06 9.52876e-06 9.61254e-06 9.70347e-06 9.80191e-06 9.90802e-06 1.0023e-05 1.01476e-05 1.02817e-05 1.04254e-05 1.05792e-05 1.07436e-05 1.09197e-05 1.11172e-05 1.13012e-05 1.17535e-05 1.47142e-05 2.37375e-05 4.09302e-05 6.45777e-05 8.42965e-05 9.90078e-05 0.000132882 0.000168422 8.85089e-06 8.8723e-06 8.89575e-06 8.92141e-06 8.94952e-06 8.98035e-06 9.01417e-06 9.05126e-06 9.09189e-06 9.13634e-06 9.18493e-06 9.23806e-06 9.29616e-06 9.35972e-06 9.42928e-06 9.50549e-06 9.58906e-06 9.6808e-06 9.7816e-06 9.89241e-06 1.00143e-05 1.01488e-05 1.02973e-05 1.04608e-05 1.06404e-05 1.08372e-05 1.10522e-05 1.12864e-05 1.1541e-05 1.18162e-05 1.21099e-05 1.24382e-05 1.27452e-05 1.32024e-05 1.35269e-05 1.47513e-05 1.83846e-05 2.49716e-05 1.60807e-05 1.60876e-05 1.60953e-05 1.61042e-05 1.61145e-05 1.61264e-05 1.61403e-05 1.61562e-05 1.61744e-05 1.6195e-05 1.62185e-05 1.62451e-05 1.62755e-05 1.63102e-05 1.63502e-05 1.63963e-05 1.64496e-05 1.65115e-05 1.65833e-05 1.66664e-05 1.67619e-05 1.68712e-05 1.69954e-05 1.71366e-05 1.72968e-05 1.74785e-05 1.7684e-05 1.79148e-05 1.81761e-05 1.84561e-05 1.88134e-05 1.90936e-05 1.97471e-05 1.99808e-05 2.15512e-05 2.22548e-05 2.25877e-05 2.53972e-05 1.93734e-05 1.93815e-05 1.93909e-05 1.94018e-05 1.94144e-05 1.94291e-05 1.94462e-05 1.94659e-05 1.94887e-05 1.9515e-05 1.95454e-05 1.95804e-05 1.96209e-05 1.9668e-05 1.97226e-05 1.97863e-05 1.98605e-05 1.99467e-05 2.00468e-05 2.01624e-05 2.02952e-05 2.04473e-05 2.06209e-05 2.08191e-05 2.10455e-05 2.13045e-05 2.16014e-05 2.1942e-05 2.2335e-05 2.27853e-05 2.33347e-05 2.3945e-05 2.49017e-05 2.57746e-05 2.77877e-05 2.96022e-05 3.0444e-05 3.29692e-05 2.11036e-05 2.11151e-05 2.11285e-05 2.1144e-05 2.1162e-05 2.11829e-05 2.12071e-05 2.1235e-05 2.12674e-05 2.13048e-05 2.13483e-05 2.13986e-05 2.14572e-05 2.15255e-05 2.16049e-05 2.16974e-05 2.18049e-05 2.19292e-05 2.20726e-05 2.22371e-05 2.24252e-05 2.26402e-05 2.28863e-05 2.31693e-05 2.34964e-05 2.38767e-05 2.4321e-05 2.4844e-05 2.5461e-05 2.62105e-05 2.70987e-05 2.82753e-05 2.95664e-05 3.15947e-05 3.37168e-05 3.53188e-05 3.79683e-05 2.20056e-05 2.20187e-05 2.20339e-05 2.20515e-05 2.2072e-05 2.20956e-05 2.2123e-05 2.21547e-05 2.21915e-05 2.2234e-05 2.22834e-05 2.23407e-05 2.24074e-05 2.24848e-05 2.25749e-05 2.26795e-05 2.28008e-05 2.2941e-05 2.31024e-05 2.32876e-05 2.35001e-05 2.3744e-05 2.40253e-05 2.4352e-05 2.47348e-05 2.51879e-05 2.57296e-05 2.63824e-05 2.71724e-05 2.8141e-05 2.92982e-05 3.07078e-05 3.22896e-05 3.42932e-05 3.65265e-05 3.86603e-05 4.14301e-05 2.23959e-05 2.24098e-05 2.24259e-05 2.24447e-05 2.24664e-05 2.24915e-05 2.25206e-05 2.25543e-05 2.25934e-05 2.26386e-05 2.26911e-05 2.2752e-05 2.28227e-05 2.29048e-05 2.30001e-05 2.31105e-05 2.32382e-05 2.33855e-05 2.35549e-05 2.37493e-05 2.39723e-05 2.42292e-05 2.45274e-05 2.48778e-05 2.52963e-05 2.58049e-05 2.64342e-05 2.72242e-05 2.82261e-05 2.94804e-05 3.09578e-05 3.25902e-05 3.42924e-05 3.61648e-05 3.82544e-05 4.04693e-05 4.31894e-05 2.23961e-05 2.24101e-05 2.24263e-05 2.24451e-05 2.24669e-05 2.24922e-05 2.25214e-05 2.25552e-05 2.25944e-05 2.26399e-05 2.26925e-05 2.27536e-05 2.28244e-05 2.29064e-05 2.30014e-05 2.31112e-05 2.32379e-05 2.33838e-05 2.35515e-05 2.3744e-05 2.39658e-05 2.42229e-05 2.45245e-05 2.48847e-05 2.53246e-05 2.58764e-05 2.65868e-05 2.75167e-05 2.87523e-05 3.03396e-05 3.20757e-05 3.37647e-05 3.53627e-05 3.69472e-05 3.8655e-05 4.05768e-05 4.29801e-05 2.20066e-05 2.20199e-05 2.20353e-05 2.20532e-05 2.20738e-05 2.20978e-05 2.21256e-05 2.21577e-05 2.2195e-05 2.22382e-05 2.22882e-05 2.23461e-05 2.24132e-05 2.24907e-05 2.25803e-05 2.26835e-05 2.28023e-05 2.29386e-05 2.30948e-05 2.3274e-05 2.34804e-05 2.37207e-05 2.40052e-05 2.43507e-05 2.47846e-05 2.53512e-05 2.61198e-05 2.71884e-05 2.8724e-05 3.06952e-05 3.2598e-05 3.41282e-05 3.54205e-05 3.66338e-05 3.79721e-05 3.96624e-05 4.19217e-05 2.11054e-05 2.11173e-05 2.1131e-05 2.11468e-05 2.11651e-05 2.11864e-05 2.12111e-05 2.12397e-05 2.12728e-05 2.13111e-05 2.13555e-05 2.14068e-05 2.1466e-05 2.15343e-05 2.16129e-05 2.17033e-05 2.18068e-05 2.19252e-05 2.20604e-05 2.22151e-05 2.23932e-05 2.26007e-05 2.28479e-05 2.31525e-05 2.35458e-05 2.40851e-05 2.48613e-05 2.60319e-05 2.79222e-05 3.01715e-05 3.1645e-05 3.27716e-05 3.41871e-05 3.65959e-05 3.98647e-05 4.471e-05 5.02143e-05 1.93843e-05 1.93942e-05 1.94055e-05 1.94185e-05 1.94335e-05 1.9451e-05 1.94712e-05 1.94946e-05 1.95217e-05 1.95531e-05 1.95892e-05 1.96307e-05 1.96786e-05 1.97335e-05 1.97966e-05 1.98686e-05 1.99506e-05 2.00438e-05 2.01492e-05 2.02684e-05 2.0404e-05 2.05602e-05 2.0745e-05 2.09733e-05 2.12726e-05 2.17032e-05 2.23501e-05 2.34109e-05 2.55668e-05 2.69462e-05 2.82236e-05 3.32495e-05 4.63678e-05 6.54513e-05 8.28898e-05 0.000105055 0.000120175 1.60915e-05 1.61001e-05 1.61096e-05 1.61204e-05 1.61327e-05 1.61468e-05 1.6163e-05 1.61817e-05 1.6203e-05 1.62274e-05 1.62552e-05 1.62868e-05 1.63226e-05 1.63633e-05 1.64094e-05 1.64614e-05 1.65197e-05 1.65846e-05 1.6656e-05 1.67335e-05 1.68168e-05 1.69065e-05 1.70036e-05 1.71108e-05 1.72324e-05 1.74054e-05 1.76032e-05 1.82659e-05 1.91937e-05 2.07436e-05 3.14585e-05 6.75898e-05 0.000123664 0.000142252 0.000162349 0.000205496 0.000240654 8.87496e-06 8.89903e-06 8.92518e-06 8.95366e-06 8.9848e-06 9.01892e-06 9.05636e-06 9.09744e-06 9.14249e-06 9.19179e-06 9.24567e-06 9.3045e-06 9.36872e-06 9.43879e-06 9.51516e-06 9.5982e-06 9.68827e-06 9.78559e-06 9.89091e-06 1.00049e-05 1.01277e-05 1.0259e-05 1.0399e-05 1.05473e-05 1.0705e-05 1.08674e-05 1.10646e-05 1.12193e-05 1.21514e-05 1.95449e-05 3.6762e-05 5.97514e-05 8.08042e-05 9.14215e-05 0.000113743 0.000157459 0.000198918 8.84363e-06 8.86466e-06 8.88773e-06 8.91304e-06 8.94082e-06 8.97133e-06 9.00486e-06 9.04167e-06 9.08202e-06 9.12621e-06 9.17459e-06 9.22755e-06 9.28552e-06 9.34898e-06 9.41848e-06 9.49467e-06 9.57826e-06 9.67005e-06 9.77091e-06 9.88186e-06 1.00044e-05 1.01396e-05 1.02887e-05 1.04528e-05 1.06331e-05 1.08308e-05 1.10468e-05 1.12821e-05 1.15372e-05 1.18133e-05 1.21057e-05 1.24293e-05 1.27537e-05 1.31559e-05 1.35885e-05 1.66857e-05 2.49093e-05 3.17054e-05 1.60798e-05 1.60866e-05 1.60943e-05 1.61033e-05 1.61137e-05 1.61258e-05 1.61398e-05 1.61559e-05 1.61743e-05 1.61952e-05 1.6219e-05 1.6246e-05 1.62768e-05 1.63121e-05 1.63526e-05 1.63994e-05 1.64534e-05 1.65159e-05 1.65882e-05 1.66716e-05 1.67673e-05 1.68767e-05 1.70012e-05 1.7143e-05 1.73042e-05 1.74874e-05 1.76949e-05 1.79281e-05 1.81917e-05 1.84747e-05 1.88191e-05 1.91225e-05 1.97266e-05 2.0069e-05 2.2082e-05 2.23223e-05 2.3938e-05 3.1338e-05 1.93733e-05 1.93814e-05 1.93909e-05 1.94019e-05 1.94147e-05 1.94296e-05 1.94469e-05 1.94669e-05 1.949e-05 1.95166e-05 1.95474e-05 1.95829e-05 1.96239e-05 1.96715e-05 1.97267e-05 1.97909e-05 1.98654e-05 1.99519e-05 2.00519e-05 2.01673e-05 2.02997e-05 2.04513e-05 2.06244e-05 2.08222e-05 2.10483e-05 2.13071e-05 2.1604e-05 2.19441e-05 2.23365e-05 2.2787e-05 2.33331e-05 2.39622e-05 2.49113e-05 2.59144e-05 2.84453e-05 2.97981e-05 3.09927e-05 3.461e-05 2.11039e-05 2.11155e-05 2.1129e-05 2.11447e-05 2.11629e-05 2.1184e-05 2.12085e-05 2.12368e-05 2.12696e-05 2.13075e-05 2.13515e-05 2.14024e-05 2.14616e-05 2.15303e-05 2.16102e-05 2.17029e-05 2.18103e-05 2.19343e-05 2.20769e-05 2.22404e-05 2.24272e-05 2.26408e-05 2.28854e-05 2.31667e-05 2.34921e-05 2.38707e-05 2.43137e-05 2.48361e-05 2.54551e-05 2.62087e-05 2.7119e-05 2.83267e-05 2.97138e-05 3.20764e-05 3.42202e-05 3.59936e-05 3.91687e-05 2.2006e-05 2.20192e-05 2.20346e-05 2.20524e-05 2.2073e-05 2.20969e-05 2.21247e-05 2.21568e-05 2.21939e-05 2.2237e-05 2.22869e-05 2.23448e-05 2.2412e-05 2.24899e-05 2.25803e-05 2.26851e-05 2.28061e-05 2.29456e-05 2.31059e-05 2.32895e-05 2.34999e-05 2.37413e-05 2.40194e-05 2.43423e-05 2.47211e-05 2.51707e-05 2.57102e-05 2.63644e-05 2.71631e-05 2.81493e-05 2.93435e-05 3.08021e-05 3.24681e-05 3.46648e-05 3.70284e-05 3.92978e-05 4.23814e-05 2.23963e-05 2.24104e-05 2.24267e-05 2.24456e-05 2.24675e-05 2.24929e-05 2.25223e-05 2.25564e-05 2.25958e-05 2.26415e-05 2.26945e-05 2.2756e-05 2.28272e-05 2.29097e-05 2.30052e-05 2.31156e-05 2.3243e-05 2.33894e-05 2.35572e-05 2.37494e-05 2.39694e-05 2.42223e-05 2.45157e-05 2.48607e-05 2.52734e-05 2.57774e-05 2.64067e-05 2.72073e-05 2.82389e-05 2.95482e-05 3.10912e-05 3.2777e-05 3.45367e-05 3.65201e-05 3.87472e-05 4.11109e-05 4.40523e-05 2.23966e-05 2.24107e-05 2.2427e-05 2.2446e-05 2.2468e-05 2.24935e-05 2.2523e-05 2.25571e-05 2.25967e-05 2.26426e-05 2.26957e-05 2.27572e-05 2.28284e-05 2.29108e-05 2.3006e-05 2.31157e-05 2.32419e-05 2.33868e-05 2.35527e-05 2.37427e-05 2.39608e-05 2.42129e-05 2.45083e-05 2.48611e-05 2.5294e-05 2.58421e-05 2.65585e-05 2.75171e-05 2.88232e-05 3.05146e-05 3.23134e-05 3.40183e-05 3.56334e-05 3.72696e-05 3.90856e-05 4.11603e-05 4.37831e-05 2.2007e-05 2.20204e-05 2.20359e-05 2.20539e-05 2.20748e-05 2.20989e-05 2.21269e-05 2.21594e-05 2.2197e-05 2.22405e-05 2.22909e-05 2.23491e-05 2.24165e-05 2.24942e-05 2.25838e-05 2.26868e-05 2.28049e-05 2.294e-05 2.30943e-05 2.32705e-05 2.34728e-05 2.37073e-05 2.39845e-05 2.43217e-05 2.4748e-05 2.53133e-05 2.60985e-05 2.72282e-05 2.89082e-05 3.10219e-05 3.29408e-05 3.44533e-05 3.57791e-05 3.70243e-05 3.84928e-05 4.03712e-05 4.28552e-05 2.11056e-05 2.11176e-05 2.11314e-05 2.11473e-05 2.11658e-05 2.11872e-05 2.12121e-05 2.12409e-05 2.12742e-05 2.13128e-05 2.13574e-05 2.14089e-05 2.14683e-05 2.15367e-05 2.16152e-05 2.17052e-05 2.1808e-05 2.19251e-05 2.20583e-05 2.22099e-05 2.23834e-05 2.25845e-05 2.28234e-05 2.31186e-05 2.35042e-05 2.40474e-05 2.48567e-05 2.61508e-05 2.83101e-05 3.05875e-05 3.1935e-05 3.32661e-05 3.53711e-05 3.82429e-05 4.24037e-05 4.79452e-05 5.34833e-05 1.93842e-05 1.93941e-05 1.94055e-05 1.94186e-05 1.94337e-05 1.94512e-05 1.94716e-05 1.94951e-05 1.95223e-05 1.95537e-05 1.95899e-05 1.96316e-05 1.96794e-05 1.97343e-05 1.97971e-05 1.98687e-05 1.99499e-05 2.00417e-05 2.0145e-05 2.0261e-05 2.0392e-05 2.05417e-05 2.07177e-05 2.09355e-05 2.1225e-05 2.16575e-05 2.23361e-05 2.35802e-05 2.59297e-05 2.69432e-05 2.97952e-05 3.94783e-05 5.91186e-05 7.6571e-05 9.68344e-05 0.000119322 0.000131888 1.60905e-05 1.6099e-05 1.61086e-05 1.61193e-05 1.61316e-05 1.61457e-05 1.61619e-05 1.61806e-05 1.62019e-05 1.62262e-05 1.62539e-05 1.62853e-05 1.63209e-05 1.63614e-05 1.64071e-05 1.64586e-05 1.6516e-05 1.65794e-05 1.66484e-05 1.67223e-05 1.68009e-05 1.68838e-05 1.69706e-05 1.70638e-05 1.71651e-05 1.73217e-05 1.7525e-05 1.8407e-05 1.90482e-05 2.40675e-05 4.67774e-05 0.00010027 0.000137409 0.00014655 0.000184859 0.000230374 0.000274114 8.86724e-06 8.89093e-06 8.9167e-06 8.94481e-06 8.97557e-06 9.0093e-06 9.04633e-06 9.08699e-06 9.13159e-06 9.18043e-06 9.23383e-06 9.29216e-06 9.35587e-06 9.42539e-06 9.50114e-06 9.58349e-06 9.67272e-06 9.76931e-06 9.87384e-06 9.98662e-06 1.01074e-05 1.0236e-05 1.0372e-05 1.05145e-05 1.06639e-05 1.08152e-05 1.09869e-05 1.11997e-05 1.34674e-05 2.99387e-05 5.37455e-05 7.66389e-05 8.80648e-05 9.69216e-05 0.000129457 0.000177822 0.000228981 8.83607e-06 8.85671e-06 8.8794e-06 8.90434e-06 8.93178e-06 8.96197e-06 8.99517e-06 9.03166e-06 9.07171e-06 9.11562e-06 9.16374e-06 9.21647e-06 9.27425e-06 9.33756e-06 9.40697e-06 9.48311e-06 9.56668e-06 9.65853e-06 9.75954e-06 9.87102e-06 9.99402e-06 1.01297e-05 1.02793e-05 1.04439e-05 1.06248e-05 1.08233e-05 1.10402e-05 1.12761e-05 1.15316e-05 1.18056e-05 1.21014e-05 1.23939e-05 1.27803e-05 1.30176e-05 1.38226e-05 2.17338e-05 3.48956e-05 3.79714e-05 1.60788e-05 1.60855e-05 1.60933e-05 1.61023e-05 1.61129e-05 1.61251e-05 1.61393e-05 1.61556e-05 1.61742e-05 1.61953e-05 1.62193e-05 1.62466e-05 1.62779e-05 1.63136e-05 1.63547e-05 1.64019e-05 1.64565e-05 1.65196e-05 1.65923e-05 1.6676e-05 1.67718e-05 1.68813e-05 1.70062e-05 1.71485e-05 1.73107e-05 1.74949e-05 1.77036e-05 1.7938e-05 1.82009e-05 1.8486e-05 1.88001e-05 1.91977e-05 1.94924e-05 2.05398e-05 2.17847e-05 2.30363e-05 2.71554e-05 4.62433e-05 1.93732e-05 1.93814e-05 1.93909e-05 1.9402e-05 1.9415e-05 1.943e-05 1.94475e-05 1.94678e-05 1.94912e-05 1.95182e-05 1.95493e-05 1.95853e-05 1.96268e-05 1.96749e-05 1.97307e-05 1.97953e-05 1.98702e-05 1.99569e-05 2.0057e-05 2.01723e-05 2.03044e-05 2.04556e-05 2.06283e-05 2.08255e-05 2.1051e-05 2.1309e-05 2.16048e-05 2.19435e-05 2.23331e-05 2.27817e-05 2.33147e-05 2.39751e-05 2.48596e-05 2.61507e-05 2.88176e-05 2.98665e-05 3.20125e-05 3.75879e-05 2.11042e-05 2.11159e-05 2.11295e-05 2.11454e-05 2.11638e-05 2.11852e-05 2.12099e-05 2.12386e-05 2.12718e-05 2.13102e-05 2.13546e-05 2.14062e-05 2.14659e-05 2.15351e-05 2.16154e-05 2.17084e-05 2.18158e-05 2.19396e-05 2.20817e-05 2.22442e-05 2.24299e-05 2.2642e-05 2.28848e-05 2.31639e-05 2.34868e-05 2.38625e-05 2.43023e-05 2.48214e-05 2.54399e-05 2.6195e-05 2.71326e-05 2.83648e-05 2.99261e-05 3.25827e-05 3.47751e-05 3.68279e-05 4.03811e-05 2.20064e-05 2.20198e-05 2.20352e-05 2.20532e-05 2.20741e-05 2.20983e-05 2.21263e-05 2.21588e-05 2.21964e-05 2.22399e-05 2.22904e-05 2.23488e-05 2.24166e-05 2.2495e-05 2.25858e-05 2.26907e-05 2.28117e-05 2.29506e-05 2.311e-05 2.32922e-05 2.35005e-05 2.3739e-05 2.40135e-05 2.4332e-05 2.47058e-05 2.51502e-05 2.56858e-05 2.63392e-05 2.71451e-05 2.81507e-05 2.93867e-05 3.09011e-05 3.26874e-05 3.51e-05 3.76067e-05 4.00334e-05 4.33493e-05 2.23968e-05 2.24109e-05 2.24274e-05 2.24465e-05 2.24686e-05 2.24943e-05 2.2524e-05 2.25584e-05 2.25983e-05 2.26445e-05 2.2698e-05 2.276e-05 2.28317e-05 2.29146e-05 2.30105e-05 2.3121e-05 2.3248e-05 2.33936e-05 2.35601e-05 2.375e-05 2.39669e-05 2.42157e-05 2.45038e-05 2.48423e-05 2.52477e-05 2.57451e-05 2.63721e-05 2.71819e-05 2.82433e-05 2.96131e-05 3.12285e-05 3.29789e-05 3.48237e-05 3.6955e-05 3.93459e-05 4.18723e-05 4.50059e-05 2.2397e-05 2.24113e-05 2.24277e-05 2.24469e-05 2.24691e-05 2.24948e-05 2.25246e-05 2.25591e-05 2.25991e-05 2.26454e-05 2.2699e-05 2.2761e-05 2.28326e-05 2.29154e-05 2.30108e-05 2.31205e-05 2.32463e-05 2.33902e-05 2.35544e-05 2.37418e-05 2.39559e-05 2.42027e-05 2.44909e-05 2.48352e-05 2.5259e-05 2.5801e-05 2.65214e-05 2.75077e-05 2.88914e-05 3.06872e-05 3.25497e-05 3.42868e-05 3.59506e-05 3.76831e-05 3.96471e-05 4.18995e-05 4.47424e-05 2.20074e-05 2.20209e-05 2.20365e-05 2.20547e-05 2.20757e-05 2.21001e-05 2.21283e-05 2.2161e-05 2.2199e-05 2.22428e-05 2.22936e-05 2.23522e-05 2.24199e-05 2.24979e-05 2.25876e-05 2.26904e-05 2.28079e-05 2.29418e-05 2.30942e-05 2.32673e-05 2.34651e-05 2.36934e-05 2.39622e-05 2.42892e-05 2.47053e-05 2.52662e-05 2.60665e-05 2.7261e-05 2.90894e-05 3.13389e-05 3.32802e-05 3.48363e-05 3.62272e-05 3.75409e-05 3.91733e-05 4.12251e-05 4.39373e-05 2.11059e-05 2.11179e-05 2.11318e-05 2.11479e-05 2.11665e-05 2.11881e-05 2.12131e-05 2.12421e-05 2.12757e-05 2.13145e-05 2.13594e-05 2.14111e-05 2.14707e-05 2.15392e-05 2.16178e-05 2.17075e-05 2.18096e-05 2.19255e-05 2.20565e-05 2.22049e-05 2.23734e-05 2.25675e-05 2.27968e-05 2.30806e-05 2.3456e-05 2.39997e-05 2.48459e-05 2.62741e-05 2.86799e-05 3.08752e-05 3.23345e-05 3.40738e-05 3.68942e-05 4.01379e-05 4.5166e-05 5.08244e-05 5.62163e-05 1.93841e-05 1.93941e-05 1.94055e-05 1.94187e-05 1.94339e-05 1.94515e-05 1.94719e-05 1.94956e-05 1.95229e-05 1.95545e-05 1.95908e-05 1.96325e-05 1.96804e-05 1.97353e-05 1.97979e-05 1.98691e-05 1.99496e-05 2.004e-05 2.01411e-05 2.02538e-05 2.03798e-05 2.05224e-05 2.06884e-05 2.08936e-05 2.11707e-05 2.16005e-05 2.23205e-05 2.37798e-05 2.59672e-05 2.76119e-05 3.34506e-05 4.83003e-05 6.93515e-05 8.63558e-05 0.000109569 0.00012989 0.000140907 1.60894e-05 1.6098e-05 1.61075e-05 1.61183e-05 1.61305e-05 1.61446e-05 1.61608e-05 1.61794e-05 1.62007e-05 1.6225e-05 1.62525e-05 1.62838e-05 1.63194e-05 1.63596e-05 1.6405e-05 1.64559e-05 1.65125e-05 1.65744e-05 1.6641e-05 1.67115e-05 1.67853e-05 1.68608e-05 1.69366e-05 1.70139e-05 1.70947e-05 1.72223e-05 1.74815e-05 1.83762e-05 1.9608e-05 3.07445e-05 6.7718e-05 0.000122908 0.000139123 0.000155833 0.000209245 0.00024849 0.000305187 8.85922e-06 8.88251e-06 8.90788e-06 8.93561e-06 8.96597e-06 8.99929e-06 9.03589e-06 9.07611e-06 9.12026e-06 9.16864e-06 9.22155e-06 9.27939e-06 9.34259e-06 9.41158e-06 9.48675e-06 9.56845e-06 9.65703e-06 9.75302e-06 9.85669e-06 9.96807e-06 1.00869e-05 1.02126e-05 1.03444e-05 1.04809e-05 1.06206e-05 1.07619e-05 1.08965e-05 1.12289e-05 1.73319e-05 4.48709e-05 7.07102e-05 8.53078e-05 9.10243e-05 0.000104344 0.000142042 0.000192109 0.000257249 8.82823e-06 8.84846e-06 8.87076e-06 8.89533e-06 8.92241e-06 8.95225e-06 8.98511e-06 9.02126e-06 9.06097e-06 9.10455e-06 9.15237e-06 9.20484e-06 9.26239e-06 9.32552e-06 9.3948e-06 9.47087e-06 9.55444e-06 9.64642e-06 9.7478e-06 9.85959e-06 9.9829e-06 1.01189e-05 1.02689e-05 1.0434e-05 1.06155e-05 1.08147e-05 1.10324e-05 1.12687e-05 1.15238e-05 1.17944e-05 1.20924e-05 1.23553e-05 1.27753e-05 1.29725e-05 1.45615e-05 3.18282e-05 4.40023e-05 4.64266e-05 1.60777e-05 1.60844e-05 1.60922e-05 1.61014e-05 1.61121e-05 1.61245e-05 1.61388e-05 1.61552e-05 1.61739e-05 1.61952e-05 1.62194e-05 1.6247e-05 1.62786e-05 1.63148e-05 1.63563e-05 1.64041e-05 1.64592e-05 1.65227e-05 1.65958e-05 1.66796e-05 1.67757e-05 1.68855e-05 1.70108e-05 1.71538e-05 1.73165e-05 1.75014e-05 1.77105e-05 1.79451e-05 1.82041e-05 1.84893e-05 1.87656e-05 1.92356e-05 1.93598e-05 2.11564e-05 2.13155e-05 2.47212e-05 3.4347e-05 7.71824e-05 1.93731e-05 1.93813e-05 1.93909e-05 1.94021e-05 1.94153e-05 1.94305e-05 1.94482e-05 1.94687e-05 1.94924e-05 1.95197e-05 1.95512e-05 1.95875e-05 1.96296e-05 1.96782e-05 1.97344e-05 1.97996e-05 1.98749e-05 1.9962e-05 2.00623e-05 2.01775e-05 2.03095e-05 2.04604e-05 2.06326e-05 2.08291e-05 2.10536e-05 2.13104e-05 2.16043e-05 2.19403e-05 2.23245e-05 2.27671e-05 2.32831e-05 2.39727e-05 2.47835e-05 2.64777e-05 2.88655e-05 3.01483e-05 3.34147e-05 4.31323e-05 2.11044e-05 2.11163e-05 2.113e-05 2.11461e-05 2.11647e-05 2.11863e-05 2.12114e-05 2.12404e-05 2.1274e-05 2.13128e-05 2.13578e-05 2.14098e-05 2.14701e-05 2.15399e-05 2.16207e-05 2.1714e-05 2.18216e-05 2.19453e-05 2.20869e-05 2.22488e-05 2.24334e-05 2.26439e-05 2.28847e-05 2.31613e-05 2.34809e-05 2.38526e-05 2.42876e-05 2.48013e-05 2.54165e-05 2.6172e-05 2.71376e-05 2.84031e-05 3.01891e-05 3.30712e-05 3.54088e-05 3.76645e-05 4.19258e-05 2.20069e-05 2.20203e-05 2.20359e-05 2.20541e-05 2.20752e-05 2.20996e-05 2.2128e-05 2.21608e-05 2.21988e-05 2.22429e-05 2.22939e-05 2.23529e-05 2.24212e-05 2.25002e-05 2.25914e-05 2.26966e-05 2.28175e-05 2.29562e-05 2.31147e-05 2.32956e-05 2.35019e-05 2.37376e-05 2.4008e-05 2.43215e-05 2.46893e-05 2.51273e-05 2.56571e-05 2.63079e-05 2.71199e-05 2.81473e-05 2.94289e-05 3.10109e-05 3.29472e-05 3.55853e-05 3.82538e-05 4.08304e-05 4.42138e-05 2.23973e-05 2.24115e-05 2.24281e-05 2.24474e-05 2.24697e-05 2.24957e-05 2.25257e-05 2.25605e-05 2.26008e-05 2.26475e-05 2.27015e-05 2.2764e-05 2.28363e-05 2.29197e-05 2.30159e-05 2.31266e-05 2.32534e-05 2.33984e-05 2.35636e-05 2.37514e-05 2.39653e-05 2.42097e-05 2.4492e-05 2.48231e-05 2.52197e-05 2.57086e-05 2.63313e-05 2.71489e-05 2.82414e-05 2.96758e-05 3.13708e-05 3.32007e-05 3.51597e-05 3.74709e-05 4.00451e-05 4.27287e-05 4.5996e-05 2.23975e-05 2.24118e-05 2.24285e-05 2.24478e-05 2.24702e-05 2.24961e-05 2.25262e-05 2.25611e-05 2.26015e-05 2.26482e-05 2.27023e-05 2.27648e-05 2.28369e-05 2.29201e-05 2.30158e-05 2.31255e-05 2.3251e-05 2.33941e-05 2.35567e-05 2.37414e-05 2.39516e-05 2.41926e-05 2.4473e-05 2.48074e-05 2.52205e-05 2.57539e-05 2.64759e-05 2.74887e-05 2.89537e-05 3.0855e-05 3.27882e-05 3.45782e-05 3.63275e-05 3.82008e-05 4.03411e-05 4.27823e-05 4.58236e-05 2.20078e-05 2.20214e-05 2.20371e-05 2.20554e-05 2.20766e-05 2.21012e-05 2.21297e-05 2.21628e-05 2.2201e-05 2.22453e-05 2.22964e-05 2.23554e-05 2.24235e-05 2.25018e-05 2.25916e-05 2.26943e-05 2.28114e-05 2.29443e-05 2.30947e-05 2.32648e-05 2.34579e-05 2.36793e-05 2.39387e-05 2.42537e-05 2.46572e-05 2.52104e-05 2.60235e-05 2.72838e-05 2.92582e-05 3.16536e-05 3.36516e-05 3.52965e-05 3.6763e-05 3.81841e-05 3.99626e-05 4.21891e-05 4.51227e-05 2.11061e-05 2.11182e-05 2.11322e-05 2.11484e-05 2.11672e-05 2.11889e-05 2.12142e-05 2.12434e-05 2.12772e-05 2.13163e-05 2.13615e-05 2.14135e-05 2.14733e-05 2.1542e-05 2.16206e-05 2.17101e-05 2.18116e-05 2.19263e-05 2.20554e-05 2.22003e-05 2.23636e-05 2.25499e-05 2.27686e-05 2.30391e-05 2.34016e-05 2.39423e-05 2.48272e-05 2.63936e-05 2.8999e-05 3.11995e-05 3.29026e-05 3.51877e-05 3.84906e-05 4.21957e-05 4.76001e-05 5.31738e-05 5.83231e-05 1.93839e-05 1.9394e-05 1.94055e-05 1.94188e-05 1.94341e-05 1.94518e-05 1.94723e-05 1.94961e-05 1.95236e-05 1.95553e-05 1.95917e-05 1.96336e-05 1.96816e-05 1.97364e-05 1.9799e-05 1.98698e-05 1.99496e-05 2.00387e-05 2.01377e-05 2.02471e-05 2.03679e-05 2.05026e-05 2.06575e-05 2.08481e-05 2.111e-05 2.15338e-05 2.23072e-05 2.39715e-05 2.58292e-05 2.87178e-05 3.8981e-05 5.77263e-05 7.6793e-05 9.53635e-05 0.000119607 0.000136272 0.000146562 1.60883e-05 1.60968e-05 1.61064e-05 1.61171e-05 1.61294e-05 1.61435e-05 1.61597e-05 1.61783e-05 1.61995e-05 1.62237e-05 1.62512e-05 1.62825e-05 1.63179e-05 1.63579e-05 1.6403e-05 1.64535e-05 1.65091e-05 1.65695e-05 1.66339e-05 1.67012e-05 1.677e-05 1.68379e-05 1.69022e-05 1.69622e-05 1.70209e-05 1.7125e-05 1.74463e-05 1.82716e-05 2.1851e-05 4.1073e-05 8.86042e-05 0.000132147 0.000139486 0.000172822 0.000228711 0.000259606 0.000329174 8.85089e-06 8.87377e-06 8.89875e-06 8.92606e-06 8.95601e-06 8.9889e-06 9.02506e-06 9.06483e-06 9.10852e-06 9.15643e-06 9.20886e-06 9.26621e-06 9.32891e-06 9.39738e-06 9.47201e-06 9.55316e-06 9.64126e-06 9.73656e-06 9.83934e-06 9.94932e-06 1.00661e-05 1.0189e-05 1.03166e-05 1.04467e-05 1.05761e-05 1.07048e-05 1.08174e-05 1.13799e-05 2.61539e-05 6.05274e-05 8.15823e-05 9.01465e-05 9.39808e-05 0.00011278 0.000149309 0.000199167 0.000275681 8.82012e-06 8.83993e-06 8.86182e-06 8.88601e-06 8.91272e-06 8.94218e-06 8.97467e-06 9.01045e-06 9.04979e-06 9.09302e-06 9.14051e-06 9.19267e-06 9.24996e-06 9.31288e-06 9.38201e-06 9.45802e-06 9.54169e-06 9.63383e-06 9.73538e-06 9.84742e-06 9.97104e-06 1.01073e-05 1.02576e-05 1.04231e-05 1.06052e-05 1.08049e-05 1.10232e-05 1.12598e-05 1.15137e-05 1.17823e-05 1.20711e-05 1.23378e-05 1.26928e-05 1.2969e-05 1.65185e-05 4.48357e-05 5.17298e-05 5.93091e-05 1.60766e-05 1.60833e-05 1.60912e-05 1.61004e-05 1.61113e-05 1.61238e-05 1.61383e-05 1.61548e-05 1.61736e-05 1.6195e-05 1.62194e-05 1.62472e-05 1.62791e-05 1.63156e-05 1.63575e-05 1.64058e-05 1.64614e-05 1.65253e-05 1.65988e-05 1.6683e-05 1.67793e-05 1.68895e-05 1.70154e-05 1.71588e-05 1.7322e-05 1.75072e-05 1.77161e-05 1.79494e-05 1.82043e-05 1.84838e-05 1.87415e-05 1.91868e-05 1.93555e-05 2.11593e-05 2.157e-05 2.83519e-05 4.77383e-05 0.000121199 1.93729e-05 1.93812e-05 1.93909e-05 1.94023e-05 1.94156e-05 1.9431e-05 1.94489e-05 1.94697e-05 1.94936e-05 1.95212e-05 1.9553e-05 1.95898e-05 1.96322e-05 1.96813e-05 1.97381e-05 1.98038e-05 1.98796e-05 1.99671e-05 2.00676e-05 2.0183e-05 2.0315e-05 2.04656e-05 2.06373e-05 2.08331e-05 2.10566e-05 2.13117e-05 2.1603e-05 2.19349e-05 2.2312e-05 2.27445e-05 2.32458e-05 2.39328e-05 2.47532e-05 2.66852e-05 2.87898e-05 3.10305e-05 3.5453e-05 5.36897e-05 2.11047e-05 2.11167e-05 2.11306e-05 2.11468e-05 2.11656e-05 2.11875e-05 2.12129e-05 2.12422e-05 2.12762e-05 2.13154e-05 2.13609e-05 2.14135e-05 2.14744e-05 2.15448e-05 2.16261e-05 2.17198e-05 2.18277e-05 2.19514e-05 2.20928e-05 2.22541e-05 2.24377e-05 2.26468e-05 2.28854e-05 2.31592e-05 2.34748e-05 2.38416e-05 2.42706e-05 2.47772e-05 2.5387e-05 2.61432e-05 2.71332e-05 2.84558e-05 3.04571e-05 3.35599e-05 3.60729e-05 3.86201e-05 4.34981e-05 2.20073e-05 2.20208e-05 2.20366e-05 2.2055e-05 2.20763e-05 2.2101e-05 2.21297e-05 2.21629e-05 2.22013e-05 2.22458e-05 2.22974e-05 2.2357e-05 2.24259e-05 2.25055e-05 2.25972e-05 2.27028e-05 2.28239e-05 2.29623e-05 2.31203e-05 2.33e-05 2.35042e-05 2.37369e-05 2.40033e-05 2.43113e-05 2.46723e-05 2.51028e-05 2.56255e-05 2.62723e-05 2.70894e-05 2.81401e-05 2.9471e-05 3.11356e-05 3.32374e-05 3.61067e-05 3.89395e-05 4.16383e-05 4.50437e-05 2.23977e-05 2.24121e-05 2.24289e-05 2.24483e-05 2.24709e-05 2.24971e-05 2.25274e-05 2.25626e-05 2.26034e-05 2.26505e-05 2.27051e-05 2.27682e-05 2.2841e-05 2.2925e-05 2.30216e-05 2.31325e-05 2.32593e-05 2.34038e-05 2.35678e-05 2.37537e-05 2.39646e-05 2.42047e-05 2.44808e-05 2.48037e-05 2.51906e-05 2.56692e-05 2.62856e-05 2.71096e-05 2.82328e-05 2.97365e-05 3.15185e-05 3.34451e-05 3.55451e-05 3.80591e-05 4.08243e-05 4.36364e-05 4.69669e-05 2.2398e-05 2.24124e-05 2.24292e-05 2.24487e-05 2.24713e-05 2.24975e-05 2.25279e-05 2.25631e-05 2.26039e-05 2.26511e-05 2.27056e-05 2.27687e-05 2.28414e-05 2.2925e-05 2.30211e-05 2.3131e-05 2.32563e-05 2.33986e-05 2.35597e-05 2.37419e-05 2.3948e-05 2.4183e-05 2.44551e-05 2.47786e-05 2.51794e-05 2.57019e-05 2.6423e-05 2.74608e-05 2.90066e-05 3.10157e-05 3.30318e-05 3.4898e-05 3.67733e-05 3.88257e-05 4.11579e-05 4.37831e-05 4.69826e-05 2.20081e-05 2.20219e-05 2.20378e-05 2.20562e-05 2.20776e-05 2.21024e-05 2.21312e-05 2.21645e-05 2.22031e-05 2.22477e-05 2.22993e-05 2.23588e-05 2.24273e-05 2.25059e-05 2.2596e-05 2.26987e-05 2.28154e-05 2.29473e-05 2.30959e-05 2.3263e-05 2.34513e-05 2.36654e-05 2.39146e-05 2.42163e-05 2.46048e-05 2.51469e-05 2.59698e-05 2.72944e-05 2.94075e-05 3.19666e-05 3.40695e-05 3.58232e-05 3.73732e-05 3.89345e-05 4.08251e-05 4.3235e-05 4.63457e-05 2.11063e-05 2.11185e-05 2.11326e-05 2.1149e-05 2.11679e-05 2.11898e-05 2.12153e-05 2.12447e-05 2.12788e-05 2.13182e-05 2.13637e-05 2.1416e-05 2.14761e-05 2.15451e-05 2.16237e-05 2.17131e-05 2.18142e-05 2.19278e-05 2.20548e-05 2.21963e-05 2.23542e-05 2.25324e-05 2.27395e-05 2.2995e-05 2.33418e-05 2.38763e-05 2.47977e-05 2.64978e-05 2.92517e-05 3.15645e-05 3.36299e-05 3.64173e-05 4.00067e-05 4.42294e-05 4.94132e-05 5.48497e-05 5.94251e-05 1.93838e-05 1.93939e-05 1.94055e-05 1.94188e-05 1.94342e-05 1.94521e-05 1.94728e-05 1.94967e-05 1.95243e-05 1.95562e-05 1.95928e-05 1.96348e-05 1.96829e-05 1.97378e-05 1.98003e-05 1.98709e-05 1.995e-05 2.0038e-05 2.01349e-05 2.02409e-05 2.03564e-05 2.04829e-05 2.06257e-05 2.08e-05 2.10436e-05 2.14597e-05 2.22832e-05 2.4095e-05 2.6048e-05 3.03841e-05 4.48851e-05 6.49234e-05 8.26832e-05 0.0001035 0.000125954 0.000138776 0.000148882 1.60871e-05 1.60956e-05 1.61052e-05 1.6116e-05 1.61283e-05 1.61424e-05 1.61585e-05 1.61771e-05 1.61983e-05 1.62225e-05 1.625e-05 1.62812e-05 1.63165e-05 1.63564e-05 1.64013e-05 1.64512e-05 1.6506e-05 1.65651e-05 1.66274e-05 1.66916e-05 1.67554e-05 1.68156e-05 1.68679e-05 1.69096e-05 1.69457e-05 1.70299e-05 1.73972e-05 1.82831e-05 2.5199e-05 5.30098e-05 0.000104198 0.000133824 0.000144214 0.000194793 0.000239303 0.000265171 0.000344347 8.84228e-06 8.86474e-06 8.88929e-06 8.91617e-06 8.94569e-06 8.97814e-06 9.01385e-06 9.05315e-06 9.09638e-06 9.14381e-06 9.19576e-06 9.25264e-06 9.31485e-06 9.38283e-06 9.45698e-06 9.53769e-06 9.62525e-06 9.71995e-06 9.82177e-06 9.93042e-06 1.00453e-05 1.01654e-05 1.02888e-05 1.04124e-05 1.05313e-05 1.06439e-05 1.07472e-05 1.1935e-05 3.73269e-05 7.30983e-05 8.82371e-05 9.37549e-05 9.909e-05 0.000120902 0.00015259 0.000200146 0.00028262 8.81174e-06 8.83113e-06 8.8526e-06 8.87638e-06 8.90269e-06 8.93176e-06 8.96386e-06 8.99924e-06 9.03818e-06 9.08102e-06 9.12815e-06 9.17999e-06 9.23699e-06 9.29969e-06 9.36869e-06 9.44465e-06 9.52833e-06 9.62057e-06 9.72232e-06 9.83459e-06 9.95842e-06 1.0095e-05 1.02455e-05 1.04114e-05 1.0594e-05 1.07943e-05 1.1013e-05 1.12496e-05 1.1502e-05 1.17687e-05 1.20438e-05 1.23237e-05 1.25841e-05 1.29823e-05 2.15873e-05 5.77554e-05 6.05719e-05 7.53459e-05 1.60754e-05 1.60822e-05 1.60901e-05 1.60995e-05 1.61105e-05 1.61231e-05 1.61377e-05 1.61543e-05 1.61732e-05 1.61947e-05 1.62192e-05 1.62473e-05 1.62794e-05 1.63162e-05 1.63586e-05 1.64073e-05 1.64633e-05 1.65277e-05 1.66015e-05 1.66861e-05 1.6783e-05 1.68936e-05 1.70199e-05 1.71638e-05 1.73273e-05 1.75126e-05 1.77208e-05 1.79518e-05 1.82026e-05 1.84679e-05 1.87256e-05 1.90578e-05 1.93834e-05 2.0586e-05 2.29203e-05 3.48817e-05 6.71263e-05 0.000151029 1.93728e-05 1.93811e-05 1.9391e-05 1.94025e-05 1.94159e-05 1.94315e-05 1.94496e-05 1.94706e-05 1.94947e-05 1.95226e-05 1.95548e-05 1.95919e-05 1.96348e-05 1.96845e-05 1.97418e-05 1.9808e-05 1.98844e-05 1.99723e-05 2.00733e-05 2.01889e-05 2.03209e-05 2.04714e-05 2.06428e-05 2.08379e-05 2.10601e-05 2.13134e-05 2.16016e-05 2.19284e-05 2.22975e-05 2.27166e-05 2.32045e-05 2.38654e-05 2.47364e-05 2.67509e-05 2.87672e-05 3.21716e-05 3.93257e-05 6.74857e-05 2.1105e-05 2.11171e-05 2.11311e-05 2.11475e-05 2.11666e-05 2.11887e-05 2.12143e-05 2.1244e-05 2.12783e-05 2.13181e-05 2.1364e-05 2.14172e-05 2.14786e-05 2.15497e-05 2.16316e-05 2.17259e-05 2.18341e-05 2.19581e-05 2.20994e-05 2.22603e-05 2.24431e-05 2.26507e-05 2.28873e-05 2.3158e-05 2.34694e-05 2.38307e-05 2.42528e-05 2.47514e-05 2.53543e-05 2.61118e-05 2.71204e-05 2.85178e-05 3.0697e-05 3.40577e-05 3.65573e-05 3.97432e-05 4.5284e-05 2.20077e-05 2.20214e-05 2.20373e-05 2.20559e-05 2.20774e-05 2.21024e-05 2.21314e-05 2.21649e-05 2.22038e-05 2.22488e-05 2.23009e-05 2.23611e-05 2.24307e-05 2.25109e-05 2.26032e-05 2.27093e-05 2.28307e-05 2.29692e-05 2.31267e-05 2.33053e-05 2.35078e-05 2.37376e-05 2.39999e-05 2.43022e-05 2.4656e-05 2.50782e-05 2.55928e-05 2.62345e-05 2.70562e-05 2.81318e-05 2.95147e-05 3.12732e-05 3.35437e-05 3.66415e-05 3.96156e-05 4.23676e-05 4.58693e-05 2.23982e-05 2.24127e-05 2.24296e-05 2.24493e-05 2.24721e-05 2.24985e-05 2.25292e-05 2.25648e-05 2.26059e-05 2.26536e-05 2.27087e-05 2.27724e-05 2.28459e-05 2.29304e-05 2.30276e-05 2.31389e-05 2.32658e-05 2.34099e-05 2.3573e-05 2.37573e-05 2.39653e-05 2.4201e-05 2.44708e-05 2.47852e-05 2.51615e-05 2.56287e-05 2.6237e-05 2.7066e-05 2.82198e-05 2.97949e-05 3.16713e-05 3.37119e-05 3.59745e-05 3.87017e-05 4.165e-05 4.4541e-05 4.78498e-05 2.23984e-05 2.2413e-05 2.24299e-05 2.24496e-05 2.24724e-05 2.24989e-05 2.25296e-05 2.25652e-05 2.26064e-05 2.2654e-05 2.27091e-05 2.27727e-05 2.2846e-05 2.29302e-05 2.30267e-05 2.31369e-05 2.32621e-05 2.34039e-05 2.35637e-05 2.37434e-05 2.39457e-05 2.41746e-05 2.4438e-05 2.475e-05 2.51371e-05 2.56468e-05 2.63644e-05 2.74243e-05 2.90468e-05 3.11661e-05 3.32791e-05 3.52543e-05 3.72927e-05 3.95523e-05 4.20811e-05 4.48661e-05 4.81647e-05 2.20085e-05 2.20224e-05 2.20384e-05 2.2057e-05 2.20786e-05 2.21036e-05 2.21327e-05 2.21663e-05 2.22053e-05 2.22503e-05 2.23023e-05 2.23623e-05 2.24312e-05 2.25103e-05 2.26007e-05 2.27036e-05 2.282e-05 2.29512e-05 2.30981e-05 2.32623e-05 2.34457e-05 2.36524e-05 2.38908e-05 2.4178e-05 2.45495e-05 2.50777e-05 2.59063e-05 2.72907e-05 2.95306e-05 3.22729e-05 3.45235e-05 3.63901e-05 3.80461e-05 3.97593e-05 4.17642e-05 4.43239e-05 4.7575e-05 2.11065e-05 2.11188e-05 2.11331e-05 2.11495e-05 2.11686e-05 2.11907e-05 2.12164e-05 2.12461e-05 2.12805e-05 2.13202e-05 2.1366e-05 2.14187e-05 2.14792e-05 2.15484e-05 2.16273e-05 2.17166e-05 2.18173e-05 2.193e-05 2.20551e-05 2.21932e-05 2.23457e-05 2.25154e-05 2.27103e-05 2.29495e-05 2.32783e-05 2.38031e-05 2.47548e-05 2.65771e-05 2.94106e-05 3.19746e-05 3.44144e-05 3.75635e-05 4.13939e-05 4.58898e-05 5.06945e-05 5.55972e-05 5.98941e-05 1.93836e-05 1.93938e-05 1.94055e-05 1.94189e-05 1.94344e-05 1.94524e-05 1.94732e-05 1.94973e-05 1.95251e-05 1.95571e-05 1.95939e-05 1.96361e-05 1.96844e-05 1.97395e-05 1.9802e-05 1.98724e-05 1.9951e-05 2.00379e-05 2.01328e-05 2.02355e-05 2.03456e-05 2.04637e-05 2.05939e-05 2.07503e-05 2.09732e-05 2.1382e-05 2.22402e-05 2.41429e-05 2.66824e-05 3.23931e-05 4.98458e-05 6.98418e-05 8.75974e-05 0.00010976 0.000128255 0.000138944 0.00014877 1.60859e-05 1.60944e-05 1.6104e-05 1.61148e-05 1.61271e-05 1.61412e-05 1.61574e-05 1.6176e-05 1.61972e-05 1.62214e-05 1.62488e-05 1.628e-05 1.63152e-05 1.6355e-05 1.63997e-05 1.64492e-05 1.65033e-05 1.65611e-05 1.66216e-05 1.66828e-05 1.67418e-05 1.67942e-05 1.68346e-05 1.6857e-05 1.68718e-05 1.69369e-05 1.73269e-05 1.85289e-05 2.92333e-05 6.45347e-05 0.000112591 0.000133869 0.000154435 0.000213697 0.000242477 0.00026761 0.000352701 8.83339e-06 8.85541e-06 8.87951e-06 8.90595e-06 8.93501e-06 8.967e-06 9.00225e-06 9.04109e-06 9.08384e-06 9.13079e-06 9.18227e-06 9.23867e-06 9.30042e-06 9.36795e-06 9.44169e-06 9.52195e-06 9.60902e-06 9.70311e-06 9.80404e-06 9.91146e-06 1.00246e-05 1.0142e-05 1.02613e-05 1.03783e-05 1.04869e-05 1.05814e-05 1.06849e-05 1.3923e-05 4.81477e-05 8.15257e-05 9.26613e-05 9.65351e-05 0.000105807 0.00012854 0.000154417 0.000196581 0.000282475 8.80312e-06 8.82206e-06 8.84311e-06 8.86647e-06 8.89235e-06 8.921e-06 8.95267e-06 8.98763e-06 9.02615e-06 9.06858e-06 9.11532e-06 9.16681e-06 9.22351e-06 9.28597e-06 9.35482e-06 9.43071e-06 9.51441e-06 9.60674e-06 9.70864e-06 9.82107e-06 9.94511e-06 1.00819e-05 1.02328e-05 1.03991e-05 1.05821e-05 1.07829e-05 1.10019e-05 1.12384e-05 1.14892e-05 1.1753e-05 1.20204e-05 1.22884e-05 1.2517e-05 1.30067e-05 3.14458e-05 6.66072e-05 7.07192e-05 9.11015e-05 1.60743e-05 1.60811e-05 1.60891e-05 1.60986e-05 1.61097e-05 1.61224e-05 1.6137e-05 1.61537e-05 1.61726e-05 1.61942e-05 1.62189e-05 1.62471e-05 1.62795e-05 1.63167e-05 1.63594e-05 1.64086e-05 1.64651e-05 1.65299e-05 1.66042e-05 1.66894e-05 1.67867e-05 1.68979e-05 1.70246e-05 1.71689e-05 1.73327e-05 1.75178e-05 1.7725e-05 1.79534e-05 1.81989e-05 1.84505e-05 1.86977e-05 1.89566e-05 1.93549e-05 2.04717e-05 2.52391e-05 4.36281e-05 8.65611e-05 0.000162656 1.93727e-05 1.93811e-05 1.9391e-05 1.94027e-05 1.94162e-05 1.9432e-05 1.94503e-05 1.94714e-05 1.94958e-05 1.9524e-05 1.95565e-05 1.9594e-05 1.96374e-05 1.96876e-05 1.97455e-05 1.98123e-05 1.98893e-05 1.99778e-05 2.00793e-05 2.01953e-05 2.03275e-05 2.04781e-05 2.06492e-05 2.08437e-05 2.10647e-05 2.1316e-05 2.16009e-05 2.19222e-05 2.22827e-05 2.26879e-05 2.31598e-05 2.37926e-05 2.46973e-05 2.67644e-05 2.87844e-05 3.30077e-05 4.40643e-05 7.69814e-05 2.11053e-05 2.11175e-05 2.11317e-05 2.11483e-05 2.11675e-05 2.11899e-05 2.12158e-05 2.12458e-05 2.12805e-05 2.13207e-05 2.13672e-05 2.14209e-05 2.1483e-05 2.15547e-05 2.16373e-05 2.17322e-05 2.1841e-05 2.19653e-05 2.21068e-05 2.22675e-05 2.24497e-05 2.26561e-05 2.28907e-05 2.31583e-05 2.34658e-05 2.38211e-05 2.42361e-05 2.47265e-05 2.53222e-05 2.60808e-05 2.71062e-05 2.85752e-05 3.09003e-05 3.44946e-05 3.71078e-05 4.07039e-05 4.64982e-05 2.20082e-05 2.2022e-05 2.20381e-05 2.20568e-05 2.20785e-05 2.21038e-05 2.21331e-05 2.2167e-05 2.22064e-05 2.22519e-05 2.23045e-05 2.23654e-05 2.24356e-05 2.25165e-05 2.26096e-05 2.27162e-05 2.28381e-05 2.29767e-05 2.3134e-05 2.33119e-05 2.35128e-05 2.374e-05 2.39984e-05 2.4295e-05 2.46414e-05 2.5055e-05 2.55611e-05 2.61975e-05 2.70237e-05 2.81263e-05 2.9562e-05 3.14185e-05 3.38507e-05 3.71509e-05 4.0259e-05 4.29379e-05 4.65127e-05 2.23987e-05 2.24134e-05 2.24304e-05 2.24502e-05 2.24733e-05 2.25e-05 2.2531e-05 2.25669e-05 2.26086e-05 2.26567e-05 2.27124e-05 2.27767e-05 2.28509e-05 2.29362e-05 2.3034e-05 2.31457e-05 2.32729e-05 2.34169e-05 2.35794e-05 2.37622e-05 2.39676e-05 2.41993e-05 2.44627e-05 2.47685e-05 2.51339e-05 2.5589e-05 2.61881e-05 2.70204e-05 2.82035e-05 2.9851e-05 3.18283e-05 3.39979e-05 3.64372e-05 3.93731e-05 4.24839e-05 4.53916e-05 4.85652e-05 2.23989e-05 2.24136e-05 2.24307e-05 2.24505e-05 2.24736e-05 2.25003e-05 2.25313e-05 2.25673e-05 2.26089e-05 2.26571e-05 2.27127e-05 2.27769e-05 2.28508e-05 2.29356e-05 2.30327e-05 2.31433e-05 2.32686e-05 2.34101e-05 2.35688e-05 2.37464e-05 2.39449e-05 2.41679e-05 2.44227e-05 2.47228e-05 2.50953e-05 2.55907e-05 2.63023e-05 2.73806e-05 2.90713e-05 3.13038e-05 3.35273e-05 3.56465e-05 3.78831e-05 4.0369e-05 4.30873e-05 4.59925e-05 4.93018e-05 2.20089e-05 2.20229e-05 2.20391e-05 2.20578e-05 2.20796e-05 2.21049e-05 2.21342e-05 2.21682e-05 2.22075e-05 2.2253e-05 2.23055e-05 2.2366e-05 2.24354e-05 2.25151e-05 2.26059e-05 2.2709e-05 2.28254e-05 2.2956e-05 2.31015e-05 2.32629e-05 2.34417e-05 2.3641e-05 2.38683e-05 2.41404e-05 2.44935e-05 2.5005e-05 2.58345e-05 2.72684e-05 2.96314e-05 3.25714e-05 3.49905e-05 3.69794e-05 3.87742e-05 4.06507e-05 4.27772e-05 4.54689e-05 4.8793e-05 2.11068e-05 2.11192e-05 2.11335e-05 2.11501e-05 2.11693e-05 2.11917e-05 2.12176e-05 2.12475e-05 2.12822e-05 2.13223e-05 2.13684e-05 2.14215e-05 2.14824e-05 2.1552e-05 2.16312e-05 2.17207e-05 2.18212e-05 2.1933e-05 2.20564e-05 2.21915e-05 2.23385e-05 2.24999e-05 2.26822e-05 2.29042e-05 2.32129e-05 2.37246e-05 2.46983e-05 2.6617e-05 2.96046e-05 3.23774e-05 3.51245e-05 3.84695e-05 4.25717e-05 4.70995e-05 5.13158e-05 5.58209e-05 6.00191e-05 1.93835e-05 1.93937e-05 1.94055e-05 1.9419e-05 1.94346e-05 1.94527e-05 1.94737e-05 1.94979e-05 1.95259e-05 1.95582e-05 1.95952e-05 1.96376e-05 1.96861e-05 1.97414e-05 1.9804e-05 1.98744e-05 1.99526e-05 2.00385e-05 2.01318e-05 2.02312e-05 2.03361e-05 2.04457e-05 2.05629e-05 2.07008e-05 2.09014e-05 2.12996e-05 2.2179e-05 2.41561e-05 2.72832e-05 3.4514e-05 5.32934e-05 7.22644e-05 9.14198e-05 0.000112873 0.000128016 0.000136754 0.0001461 1.60847e-05 1.60932e-05 1.61027e-05 1.61135e-05 1.61259e-05 1.614e-05 1.61562e-05 1.61748e-05 1.61961e-05 1.62203e-05 1.62477e-05 1.62789e-05 1.63141e-05 1.63538e-05 1.63984e-05 1.64476e-05 1.6501e-05 1.65578e-05 1.66166e-05 1.66751e-05 1.67295e-05 1.67745e-05 1.6803e-05 1.68057e-05 1.67992e-05 1.68479e-05 1.72494e-05 1.89976e-05 3.32998e-05 7.33856e-05 0.000115543 0.000134568 0.000167997 0.000224736 0.000241934 0.000268865 0.000357291 8.82423e-06 8.84579e-06 8.86942e-06 8.89539e-06 8.92399e-06 8.95551e-06 8.99028e-06 9.02864e-06 9.0709e-06 9.11738e-06 9.16838e-06 9.22432e-06 9.28562e-06 9.35275e-06 9.42609e-06 9.50594e-06 9.59256e-06 9.68606e-06 9.7862e-06 9.89251e-06 1.0004e-05 1.0119e-05 1.02345e-05 1.0345e-05 1.04437e-05 1.05202e-05 1.06294e-05 1.66166e-05 5.6754e-05 8.695e-05 9.57152e-05 9.95505e-05 0.000112789 0.000135506 0.000154651 0.000190508 0.00027858 8.79425e-06 8.81275e-06 8.83335e-06 8.85625e-06 8.88168e-06 8.90989e-06 8.94111e-06 8.97562e-06 9.01368e-06 9.05568e-06 9.10202e-06 9.15314e-06 9.20952e-06 9.27175e-06 9.34043e-06 9.41625e-06 9.49994e-06 9.59235e-06 9.69435e-06 9.80694e-06 9.93119e-06 1.00683e-05 1.02195e-05 1.03863e-05 1.05697e-05 1.07709e-05 1.09902e-05 1.12264e-05 1.1476e-05 1.17366e-05 1.19989e-05 1.2251e-05 1.24635e-05 1.30066e-05 3.67803e-05 7.48609e-05 8.28884e-05 0.00010362 1.60732e-05 1.608e-05 1.60881e-05 1.60977e-05 1.61088e-05 1.61216e-05 1.61363e-05 1.61529e-05 1.61719e-05 1.61936e-05 1.62184e-05 1.62469e-05 1.62795e-05 1.6317e-05 1.63601e-05 1.64098e-05 1.64667e-05 1.65321e-05 1.6607e-05 1.66927e-05 1.67906e-05 1.69023e-05 1.70296e-05 1.71743e-05 1.73384e-05 1.75233e-05 1.77296e-05 1.79552e-05 1.81953e-05 1.84349e-05 1.86638e-05 1.88847e-05 1.92779e-05 2.04829e-05 2.69443e-05 5.13118e-05 9.54046e-05 0.000165821 1.93725e-05 1.93811e-05 1.93911e-05 1.94029e-05 1.94166e-05 1.94325e-05 1.9451e-05 1.94723e-05 1.94969e-05 1.95254e-05 1.95582e-05 1.95962e-05 1.964e-05 1.96907e-05 1.97493e-05 1.98168e-05 1.98945e-05 1.99836e-05 2.00857e-05 2.02022e-05 2.03349e-05 2.04857e-05 2.06567e-05 2.08508e-05 2.10708e-05 2.13202e-05 2.1602e-05 2.19187e-05 2.22707e-05 2.26625e-05 2.31175e-05 2.37232e-05 2.46358e-05 2.66769e-05 2.90093e-05 3.40319e-05 4.66243e-05 8.00579e-05 2.11056e-05 2.11179e-05 2.11323e-05 2.11491e-05 2.11685e-05 2.11911e-05 2.12173e-05 2.12476e-05 2.12827e-05 2.13233e-05 2.13704e-05 2.14247e-05 2.14875e-05 2.15599e-05 2.16433e-05 2.1739e-05 2.18484e-05 2.19733e-05 2.21152e-05 2.2276e-05 2.24578e-05 2.26633e-05 2.28961e-05 2.3161e-05 2.34644e-05 2.38149e-05 2.42229e-05 2.47057e-05 2.52951e-05 2.60555e-05 2.70973e-05 2.86215e-05 3.10447e-05 3.47845e-05 3.75931e-05 4.10519e-05 4.68228e-05 2.20086e-05 2.20226e-05 2.20388e-05 2.20577e-05 2.20797e-05 2.21052e-05 2.21348e-05 2.21692e-05 2.22089e-05 2.2255e-05 2.23082e-05 2.23697e-05 2.24407e-05 2.25224e-05 2.26162e-05 2.27236e-05 2.28461e-05 2.29852e-05 2.31426e-05 2.332e-05 2.35197e-05 2.37446e-05 2.39994e-05 2.42912e-05 2.46301e-05 2.50351e-05 2.55331e-05 2.61646e-05 2.69958e-05 2.81253e-05 2.96152e-05 3.15671e-05 3.41412e-05 3.75951e-05 4.08117e-05 4.34008e-05 4.67562e-05 2.23992e-05 2.2414e-05 2.24312e-05 2.24512e-05 2.24745e-05 2.25015e-05 2.25328e-05 2.25692e-05 2.26112e-05 2.266e-05 2.27163e-05 2.27813e-05 2.28561e-05 2.29422e-05 2.30407e-05 2.31532e-05 2.32808e-05 2.3425e-05 2.35872e-05 2.37689e-05 2.3972e-05 2.41999e-05 2.44578e-05 2.47549e-05 2.51096e-05 2.55528e-05 2.61419e-05 2.69759e-05 2.81865e-05 2.99055e-05 3.19897e-05 3.42995e-05 3.69208e-05 4.00455e-05 4.32852e-05 4.61606e-05 4.91252e-05 2.23994e-05 2.24142e-05 2.24315e-05 2.24515e-05 2.24747e-05 2.25018e-05 2.25331e-05 2.25694e-05 2.26115e-05 2.26602e-05 2.27164e-05 2.27813e-05 2.28559e-05 2.29414e-05 2.30391e-05 2.31503e-05 2.3276e-05 2.34173e-05 2.35753e-05 2.37511e-05 2.39462e-05 2.4164e-05 2.44101e-05 2.46986e-05 2.50563e-05 2.55363e-05 2.62397e-05 2.73316e-05 2.90812e-05 3.14282e-05 3.37835e-05 3.60762e-05 3.85394e-05 4.12617e-05 4.41506e-05 4.71229e-05 5.03493e-05 2.20094e-05 2.20234e-05 2.20397e-05 2.20587e-05 2.20806e-05 2.21062e-05 2.21358e-05 2.21701e-05 2.22098e-05 2.22558e-05 2.23088e-05 2.23698e-05 2.24399e-05 2.25201e-05 2.26115e-05 2.27151e-05 2.28316e-05 2.29618e-05 2.31062e-05 2.32652e-05 2.34398e-05 2.36318e-05 2.38484e-05 2.41051e-05 2.44391e-05 2.49319e-05 2.57569e-05 2.72275e-05 2.97102e-05 3.2852e-05 3.545e-05 3.75871e-05 3.95574e-05 4.16189e-05 4.38799e-05 4.66638e-05 4.99793e-05 2.1107e-05 2.11195e-05 2.11339e-05 2.11507e-05 2.11701e-05 2.11926e-05 2.12188e-05 2.1249e-05 2.1284e-05 2.13245e-05 2.1371e-05 2.14246e-05 2.1486e-05 2.1556e-05 2.16356e-05 2.17254e-05 2.18258e-05 2.1937e-05 2.20589e-05 2.21911e-05 2.23332e-05 2.24864e-05 2.26564e-05 2.28608e-05 2.31482e-05 2.36433e-05 2.46298e-05 2.66257e-05 2.97777e-05 3.2762e-05 3.56664e-05 3.91765e-05 4.35019e-05 4.79058e-05 5.15685e-05 5.58051e-05 5.97165e-05 1.93833e-05 1.93936e-05 1.94054e-05 1.94191e-05 1.94348e-05 1.94531e-05 1.94742e-05 1.94986e-05 1.95268e-05 1.95593e-05 1.95966e-05 1.96393e-05 1.96881e-05 1.97437e-05 1.98065e-05 1.98769e-05 1.99548e-05 2.004e-05 2.01317e-05 2.02284e-05 2.03282e-05 2.04296e-05 2.05341e-05 2.06534e-05 2.08317e-05 2.12121e-05 2.2099e-05 2.4111e-05 2.77933e-05 3.61214e-05 5.48334e-05 7.32788e-05 9.35367e-05 0.000113508 0.000125614 0.000132581 0.000141787 1.60834e-05 1.60919e-05 1.61014e-05 1.61123e-05 1.61246e-05 1.61388e-05 1.6155e-05 1.61736e-05 1.61949e-05 1.62192e-05 1.62467e-05 1.62778e-05 1.63131e-05 1.63529e-05 1.63973e-05 1.64463e-05 1.64992e-05 1.65552e-05 1.66125e-05 1.66685e-05 1.67187e-05 1.6757e-05 1.67729e-05 1.67607e-05 1.67299e-05 1.67624e-05 1.71722e-05 1.95024e-05 3.64835e-05 7.80262e-05 0.000114824 0.000135981 0.000179408 0.000229959 0.000240463 0.00027024 0.000360489 8.8148e-06 8.83588e-06 8.85903e-06 8.88451e-06 8.91262e-06 8.94366e-06 8.97795e-06 9.0158e-06 9.05757e-06 9.10356e-06 9.15409e-06 9.20957e-06 9.27046e-06 9.33721e-06 9.41017e-06 9.48964e-06 9.57586e-06 9.66883e-06 9.7683e-06 9.87366e-06 9.98379e-06 1.00966e-05 1.02085e-05 1.03132e-05 1.04026e-05 1.04623e-05 1.05724e-05 1.86806e-05 6.25947e-05 9.01959e-05 9.76679e-05 0.000102423 0.000118846 0.000141158 0.000154729 0.000184291 0.000268325 8.78516e-06 8.8032e-06 8.82333e-06 8.84575e-06 8.87071e-06 8.89844e-06 8.92919e-06 8.9632e-06 9.0008e-06 9.04234e-06 9.08825e-06 9.13899e-06 9.19506e-06 9.25704e-06 9.32556e-06 9.40127e-06 9.48495e-06 9.5774e-06 9.67951e-06 9.79226e-06 9.91675e-06 1.00542e-05 1.02058e-05 1.0373e-05 1.0557e-05 1.07586e-05 1.09782e-05 1.12143e-05 1.14629e-05 1.17215e-05 1.19778e-05 1.22211e-05 1.24243e-05 1.3055e-05 3.8673e-05 8.26543e-05 9.31637e-05 0.000104504 1.60721e-05 1.6079e-05 1.60872e-05 1.60968e-05 1.61079e-05 1.61207e-05 1.61354e-05 1.61521e-05 1.61712e-05 1.61929e-05 1.62179e-05 1.62465e-05 1.62794e-05 1.63173e-05 1.63609e-05 1.64109e-05 1.64684e-05 1.65344e-05 1.66099e-05 1.66962e-05 1.67948e-05 1.69072e-05 1.70351e-05 1.71804e-05 1.73448e-05 1.75297e-05 1.7735e-05 1.79584e-05 1.81936e-05 1.84246e-05 1.86372e-05 1.88296e-05 1.91907e-05 2.044e-05 2.75669e-05 5.46431e-05 9.76024e-05 0.000159606 1.93724e-05 1.93811e-05 1.93912e-05 1.94031e-05 1.94169e-05 1.9433e-05 1.94516e-05 1.94731e-05 1.9498e-05 1.95267e-05 1.95599e-05 1.95983e-05 1.96427e-05 1.9694e-05 1.97532e-05 1.98214e-05 1.98998e-05 1.99898e-05 2.00926e-05 2.02099e-05 2.03432e-05 2.04944e-05 2.06657e-05 2.08597e-05 2.10791e-05 2.13269e-05 2.16061e-05 2.19182e-05 2.22649e-05 2.2647e-05 2.30876e-05 2.36659e-05 2.45645e-05 2.64965e-05 2.90996e-05 3.44579e-05 4.73203e-05 7.85508e-05 2.1106e-05 2.11184e-05 2.11329e-05 2.11498e-05 2.11695e-05 2.11923e-05 2.12188e-05 2.12494e-05 2.12849e-05 2.13261e-05 2.13736e-05 2.14286e-05 2.14921e-05 2.15654e-05 2.16496e-05 2.17461e-05 2.18565e-05 2.19821e-05 2.21246e-05 2.22858e-05 2.24676e-05 2.26727e-05 2.29042e-05 2.31669e-05 2.34669e-05 2.38128e-05 2.42164e-05 2.46942e-05 2.52805e-05 2.6044e-05 2.70951e-05 2.86563e-05 3.11073e-05 3.49094e-05 3.7831e-05 4.10776e-05 4.63868e-05 2.20091e-05 2.20232e-05 2.20396e-05 2.20587e-05 2.20809e-05 2.21067e-05 2.21366e-05 2.21713e-05 2.22116e-05 2.22581e-05 2.2312e-05 2.23742e-05 2.2446e-05 2.25286e-05 2.26233e-05 2.27316e-05 2.28549e-05 2.29947e-05 2.31525e-05 2.33298e-05 2.35288e-05 2.3752e-05 2.40037e-05 2.42907e-05 2.46244e-05 2.50217e-05 2.55126e-05 2.61411e-05 2.69805e-05 2.81341e-05 2.96779e-05 3.17184e-05 3.44039e-05 3.79497e-05 4.12274e-05 4.36999e-05 4.67529e-05 2.23997e-05 2.24147e-05 2.2432e-05 2.24522e-05 2.24757e-05 2.2503e-05 2.25347e-05 2.25714e-05 2.2614e-05 2.26633e-05 2.27202e-05 2.27859e-05 2.28616e-05 2.29485e-05 2.3048e-05 2.31612e-05 2.32896e-05 2.34343e-05 2.35965e-05 2.37775e-05 2.3979e-05 2.42036e-05 2.44564e-05 2.47465e-05 2.50907e-05 2.55226e-05 2.61019e-05 2.69366e-05 2.8174e-05 2.99609e-05 3.21572e-05 3.46152e-05 3.74152e-05 4.06968e-05 4.40214e-05 4.68287e-05 4.95684e-05 2.23999e-05 2.24149e-05 2.24322e-05 2.24525e-05 2.2476e-05 2.25032e-05 2.25349e-05 2.25716e-05 2.26142e-05 2.26634e-05 2.27203e-05 2.27858e-05 2.28612e-05 2.29476e-05 2.30461e-05 2.3158e-05 2.32843e-05 2.34258e-05 2.35834e-05 2.37578e-05 2.39502e-05 2.4163e-05 2.44019e-05 2.46789e-05 2.50223e-05 2.54868e-05 2.61803e-05 2.72808e-05 2.90805e-05 3.15415e-05 3.40528e-05 3.65458e-05 3.92564e-05 4.22151e-05 4.52446e-05 4.8224e-05 5.12847e-05 2.20098e-05 2.2024e-05 2.20404e-05 2.20595e-05 2.20817e-05 2.21075e-05 2.21374e-05 2.21721e-05 2.22122e-05 2.22587e-05 2.23122e-05 2.23739e-05 2.24447e-05 2.25256e-05 2.26177e-05 2.27219e-05 2.28388e-05 2.29689e-05 2.31125e-05 2.32695e-05 2.34402e-05 2.36262e-05 2.38322e-05 2.40743e-05 2.43892e-05 2.4862e-05 2.56768e-05 2.7169e-05 2.97537e-05 3.31066e-05 3.59023e-05 3.82182e-05 4.04007e-05 4.26701e-05 4.50789e-05 4.78895e-05 5.11421e-05 2.11073e-05 2.11198e-05 2.11344e-05 2.11513e-05 2.11709e-05 2.11936e-05 2.122e-05 2.12506e-05 2.12859e-05 2.13267e-05 2.13738e-05 2.14278e-05 2.14898e-05 2.15604e-05 2.16405e-05 2.17307e-05 2.18312e-05 2.19421e-05 2.20629e-05 2.21927e-05 2.23307e-05 2.2476e-05 2.26342e-05 2.28214e-05 2.30871e-05 2.3564e-05 2.45487e-05 2.65897e-05 2.99021e-05 3.30987e-05 3.60968e-05 3.97162e-05 4.4164e-05 4.82895e-05 5.16764e-05 5.53723e-05 5.94139e-05 1.93831e-05 1.93935e-05 1.94054e-05 1.94192e-05 1.9435e-05 1.94534e-05 1.94747e-05 1.94993e-05 1.95278e-05 1.95605e-05 1.95981e-05 1.96412e-05 1.96903e-05 1.97462e-05 1.98094e-05 1.98799e-05 1.99578e-05 2.00425e-05 2.01329e-05 2.02273e-05 2.03225e-05 2.04164e-05 2.05087e-05 2.06102e-05 2.07666e-05 2.11233e-05 2.20022e-05 2.40428e-05 2.80964e-05 3.67577e-05 5.51751e-05 7.35064e-05 9.41789e-05 0.000112314 0.000121701 0.000126626 0.000136407 1.60821e-05 1.60906e-05 1.61001e-05 1.6111e-05 1.61233e-05 1.61375e-05 1.61538e-05 1.61725e-05 1.61938e-05 1.62181e-05 1.62457e-05 1.62769e-05 1.63123e-05 1.63521e-05 1.63965e-05 1.64454e-05 1.64979e-05 1.65533e-05 1.66094e-05 1.66632e-05 1.671e-05 1.67424e-05 1.67464e-05 1.67229e-05 1.66694e-05 1.66807e-05 1.70914e-05 1.97703e-05 3.80004e-05 7.93997e-05 0.000112185 0.000136821 0.000185893 0.000231307 0.0002394 0.000272495 0.000363972 8.80513e-06 8.8257e-06 8.84834e-06 8.87331e-06 8.90092e-06 8.93145e-06 8.96523e-06 9.00258e-06 9.04385e-06 9.08933e-06 9.13939e-06 9.19443e-06 9.25492e-06 9.3213e-06 9.39392e-06 9.47304e-06 9.55891e-06 9.65146e-06 9.75038e-06 9.85499e-06 9.964e-06 1.0075e-05 1.01839e-05 1.02837e-05 1.03648e-05 1.04097e-05 1.0543e-05 1.9561e-05 6.56889e-05 9.194e-05 9.83569e-05 0.000104614 0.000123536 0.000145271 0.000155677 0.000180104 0.000254914 8.77585e-06 8.79341e-06 8.81305e-06 8.83499e-06 8.85945e-06 8.88666e-06 8.91689e-06 8.9504e-06 8.9875e-06 9.02857e-06 9.07404e-06 9.12439e-06 9.18013e-06 9.24186e-06 9.3102e-06 9.38581e-06 9.46945e-06 9.56194e-06 9.66416e-06 9.77711e-06 9.90188e-06 1.00397e-05 1.01918e-05 1.03595e-05 1.0544e-05 1.07462e-05 1.09661e-05 1.12024e-05 1.14507e-05 1.17078e-05 1.19613e-05 1.22056e-05 1.24047e-05 1.29035e-05 3.66728e-05 8.57827e-05 9.51884e-05 9.80243e-05 1.6071e-05 1.6078e-05 1.60862e-05 1.60959e-05 1.6107e-05 1.61198e-05 1.61344e-05 1.61512e-05 1.61703e-05 1.61922e-05 1.62173e-05 1.62462e-05 1.62794e-05 1.63176e-05 1.63616e-05 1.64121e-05 1.64702e-05 1.65368e-05 1.6613e-05 1.67001e-05 1.67994e-05 1.69126e-05 1.70414e-05 1.71874e-05 1.73524e-05 1.75374e-05 1.77424e-05 1.79642e-05 1.81961e-05 1.84205e-05 1.8625e-05 1.88013e-05 1.91052e-05 2.03052e-05 2.69433e-05 5.49449e-05 9.35558e-05 0.00013798 1.93724e-05 1.93811e-05 1.93913e-05 1.94033e-05 1.94173e-05 1.94335e-05 1.94523e-05 1.9474e-05 1.94991e-05 1.95281e-05 1.95617e-05 1.96005e-05 1.96454e-05 1.96973e-05 1.97573e-05 1.98263e-05 1.99055e-05 1.99964e-05 2.01002e-05 2.02183e-05 2.03525e-05 2.05046e-05 2.06765e-05 2.08708e-05 2.109e-05 2.13372e-05 2.16147e-05 2.19241e-05 2.22657e-05 2.26418e-05 2.30753e-05 2.36372e-05 2.45066e-05 2.62663e-05 2.89895e-05 3.4447e-05 4.5221e-05 6.80824e-05 2.11063e-05 2.11189e-05 2.11336e-05 2.11506e-05 2.11705e-05 2.11935e-05 2.12203e-05 2.12513e-05 2.12872e-05 2.13288e-05 2.1377e-05 2.14327e-05 2.1497e-05 2.15711e-05 2.16562e-05 2.17538e-05 2.18652e-05 2.19918e-05 2.21353e-05 2.22972e-05 2.24795e-05 2.26846e-05 2.29156e-05 2.31768e-05 2.34745e-05 2.38171e-05 2.42167e-05 2.46915e-05 2.52771e-05 2.60448e-05 2.71098e-05 2.86883e-05 3.11159e-05 3.49392e-05 3.79105e-05 4.07372e-05 4.48475e-05 2.20096e-05 2.20238e-05 2.20404e-05 2.20597e-05 2.20821e-05 2.21082e-05 2.21384e-05 2.21735e-05 2.22142e-05 2.22614e-05 2.23159e-05 2.23789e-05 2.24515e-05 2.25351e-05 2.26309e-05 2.27402e-05 2.28646e-05 2.30054e-05 2.31639e-05 2.33417e-05 2.35404e-05 2.37627e-05 2.40123e-05 2.42957e-05 2.4624e-05 2.50163e-05 2.55035e-05 2.61313e-05 2.69771e-05 2.8159e-05 2.97576e-05 3.18781e-05 3.46423e-05 3.82127e-05 4.15054e-05 4.38676e-05 4.64597e-05 2.24003e-05 2.24153e-05 2.24329e-05 2.24533e-05 2.2477e-05 2.25046e-05 2.25366e-05 2.25737e-05 2.26168e-05 2.26667e-05 2.27243e-05 2.27908e-05 2.28674e-05 2.29553e-05 2.30557e-05 2.317e-05 2.32994e-05 2.34449e-05 2.36076e-05 2.37885e-05 2.3989e-05 2.42112e-05 2.44597e-05 2.47437e-05 2.50808e-05 2.55029e-05 2.60738e-05 2.69097e-05 2.81699e-05 3.0022e-05 3.23355e-05 3.49481e-05 3.79168e-05 4.1315e-05 4.46792e-05 4.74054e-05 4.99327e-05 2.24004e-05 2.24155e-05 2.24331e-05 2.24535e-05 2.24772e-05 2.25048e-05 2.25368e-05 2.25739e-05 2.26169e-05 2.26667e-05 2.27243e-05 2.27906e-05 2.28668e-05 2.29541e-05 2.30536e-05 2.31665e-05 2.32936e-05 2.34357e-05 2.35934e-05 2.37671e-05 2.39574e-05 2.41662e-05 2.43987e-05 2.46664e-05 2.49961e-05 2.54459e-05 2.61286e-05 2.72333e-05 2.90737e-05 3.16487e-05 3.43404e-05 3.70593e-05 4.003e-05 4.3215e-05 4.63471e-05 4.92764e-05 5.21005e-05 2.20102e-05 2.20245e-05 2.20411e-05 2.20604e-05 2.20828e-05 2.21088e-05 2.21391e-05 2.21741e-05 2.22147e-05 2.22617e-05 2.23158e-05 2.23782e-05 2.24498e-05 2.25315e-05 2.26245e-05 2.27295e-05 2.2847e-05 2.29775e-05 2.31207e-05 2.32763e-05 2.3444e-05 2.36244e-05 2.3822e-05 2.405e-05 2.43468e-05 2.47993e-05 2.55989e-05 2.70976e-05 2.97676e-05 3.33338e-05 3.63491e-05 3.88725e-05 4.13087e-05 4.38145e-05 4.63676e-05 4.91738e-05 5.2272e-05 2.11075e-05 2.11202e-05 2.11349e-05 2.11519e-05 2.11717e-05 2.11947e-05 2.12213e-05 2.12522e-05 2.12879e-05 2.13291e-05 2.13767e-05 2.14313e-05 2.14939e-05 2.15652e-05 2.1646e-05 2.17367e-05 2.18377e-05 2.19486e-05 2.20687e-05 2.21966e-05 2.23307e-05 2.24702e-05 2.26171e-05 2.27882e-05 2.30326e-05 2.34885e-05 2.44583e-05 2.65148e-05 2.99667e-05 3.34106e-05 3.63964e-05 4.00235e-05 4.45727e-05 4.84732e-05 5.17156e-05 5.51863e-05 5.93115e-05 1.9383e-05 1.93934e-05 1.94054e-05 1.94192e-05 1.94353e-05 1.94538e-05 1.94753e-05 1.95001e-05 1.95288e-05 1.95618e-05 1.95997e-05 1.96432e-05 1.96928e-05 1.97491e-05 1.98127e-05 1.98836e-05 1.99616e-05 2.00461e-05 2.01357e-05 2.0228e-05 2.03199e-05 2.0407e-05 2.04882e-05 2.05734e-05 2.07082e-05 2.10376e-05 2.18939e-05 2.3964e-05 2.82115e-05 3.68331e-05 5.43988e-05 7.2313e-05 9.31765e-05 0.000109164 0.000116463 0.000120293 0.000130541 1.60808e-05 1.60893e-05 1.60988e-05 1.61096e-05 1.6122e-05 1.61363e-05 1.61526e-05 1.61713e-05 1.61927e-05 1.62171e-05 1.62447e-05 1.62761e-05 1.63116e-05 1.63515e-05 1.6396e-05 1.64449e-05 1.64974e-05 1.65524e-05 1.66078e-05 1.666e-05 1.67037e-05 1.67309e-05 1.67257e-05 1.6692e-05 1.66201e-05 1.66069e-05 1.70081e-05 1.98391e-05 3.83782e-05 7.85899e-05 0.000108117 0.00013611 0.00018646 0.000230359 0.000239369 0.000275655 0.00036891 8.79521e-06 8.81524e-06 8.83734e-06 8.86179e-06 8.88887e-06 8.91889e-06 8.95214e-06 8.98896e-06 9.0297e-06 9.07469e-06 9.12427e-06 9.17889e-06 9.239e-06 9.30503e-06 9.37732e-06 9.45614e-06 9.54173e-06 9.63397e-06 9.73251e-06 9.83661e-06 9.94479e-06 1.00545e-05 1.01609e-05 1.0257e-05 1.03312e-05 1.03637e-05 1.05179e-05 1.96938e-05 6.60907e-05 9.21109e-05 9.81946e-05 0.000105775 0.000126455 0.000148057 0.00015793 0.000178512 0.000242028 8.76634e-06 8.78341e-06 8.80256e-06 8.82397e-06 8.84788e-06 8.87454e-06 8.90422e-06 8.93721e-06 8.9738e-06 9.01437e-06 9.05939e-06 9.10934e-06 9.16475e-06 9.22622e-06 9.29436e-06 9.36987e-06 9.45347e-06 9.54602e-06 9.64837e-06 9.76154e-06 9.88665e-06 1.00249e-05 1.01776e-05 1.03459e-05 1.05311e-05 1.07339e-05 1.09545e-05 1.11912e-05 1.14401e-05 1.16963e-05 1.19541e-05 1.22e-05 1.23988e-05 1.2612e-05 2.64687e-05 8.1463e-05 9.21965e-05 8.81086e-05 1.60699e-05 1.6077e-05 1.60852e-05 1.60948e-05 1.61059e-05 1.61187e-05 1.61334e-05 1.61502e-05 1.61694e-05 1.61914e-05 1.62167e-05 1.62458e-05 1.62793e-05 1.63179e-05 1.63623e-05 1.64134e-05 1.64721e-05 1.65393e-05 1.66163e-05 1.67043e-05 1.68046e-05 1.69188e-05 1.70486e-05 1.71956e-05 1.73614e-05 1.75471e-05 1.77524e-05 1.7974e-05 1.8205e-05 1.84272e-05 1.86241e-05 1.87915e-05 1.90518e-05 2.0052e-05 2.44777e-05 4.80947e-05 8.03499e-05 0.000107618 1.93723e-05 1.93811e-05 1.93915e-05 1.94036e-05 1.94176e-05 1.9434e-05 1.94529e-05 1.94748e-05 1.95002e-05 1.95295e-05 1.95635e-05 1.96028e-05 1.96483e-05 1.97008e-05 1.97615e-05 1.98314e-05 1.99116e-05 2.00035e-05 2.01084e-05 2.02277e-05 2.03631e-05 2.05164e-05 2.06894e-05 2.08846e-05 2.11044e-05 2.13518e-05 2.16292e-05 2.19381e-05 2.22791e-05 2.26541e-05 2.30842e-05 2.36318e-05 2.44821e-05 2.60232e-05 2.87713e-05 3.33495e-05 4.01655e-05 5.49015e-05 2.11067e-05 2.11194e-05 2.11342e-05 2.11514e-05 2.11715e-05 2.11948e-05 2.12218e-05 2.12532e-05 2.12895e-05 2.13317e-05 2.13804e-05 2.14368e-05 2.1502e-05 2.1577e-05 2.16633e-05 2.1762e-05 2.18746e-05 2.20026e-05 2.21473e-05 2.23105e-05 2.24939e-05 2.26997e-05 2.29309e-05 2.31919e-05 2.34887e-05 2.383e-05 2.42288e-05 2.47045e-05 2.5295e-05 2.60741e-05 2.71543e-05 2.87357e-05 3.10998e-05 3.47895e-05 3.78327e-05 4.01233e-05 4.30349e-05 2.20101e-05 2.20245e-05 2.20412e-05 2.20607e-05 2.20833e-05 2.21097e-05 2.21403e-05 2.21758e-05 2.2217e-05 2.22647e-05 2.23199e-05 2.23838e-05 2.24574e-05 2.2542e-05 2.26389e-05 2.27496e-05 2.28753e-05 2.30173e-05 2.31771e-05 2.33558e-05 2.35552e-05 2.37773e-05 2.40259e-05 2.43072e-05 2.46324e-05 2.50208e-05 2.55056e-05 2.61362e-05 2.69951e-05 2.82095e-05 2.98658e-05 3.20599e-05 3.48743e-05 3.83972e-05 4.1674e-05 4.40037e-05 4.61737e-05 2.24008e-05 2.2416e-05 2.24337e-05 2.24543e-05 2.24783e-05 2.25062e-05 2.25385e-05 2.25761e-05 2.26197e-05 2.26702e-05 2.27286e-05 2.27959e-05 2.28735e-05 2.29625e-05 2.30641e-05 2.31797e-05 2.33103e-05 2.3457e-05 2.36207e-05 2.38022e-05 2.40025e-05 2.42235e-05 2.44692e-05 2.47484e-05 2.50789e-05 2.54953e-05 2.60619e-05 2.68995e-05 2.81802e-05 3.0097e-05 3.25331e-05 3.53062e-05 3.84302e-05 4.19026e-05 4.52634e-05 4.79183e-05 5.01907e-05 2.2401e-05 2.24162e-05 2.24339e-05 2.24545e-05 2.24785e-05 2.25063e-05 2.25387e-05 2.25762e-05 2.26198e-05 2.26702e-05 2.27284e-05 2.27956e-05 2.28728e-05 2.29611e-05 2.30618e-05 2.31758e-05 2.33041e-05 2.34472e-05 2.36055e-05 2.37792e-05 2.39684e-05 2.41744e-05 2.44015e-05 2.46619e-05 2.49825e-05 2.54195e-05 2.60917e-05 2.71981e-05 2.90707e-05 3.17584e-05 3.46498e-05 3.76249e-05 4.08584e-05 4.42507e-05 4.74437e-05 5.02696e-05 5.28132e-05 2.20107e-05 2.20251e-05 2.20418e-05 2.20613e-05 2.20839e-05 2.21102e-05 2.21408e-05 2.21762e-05 2.22173e-05 2.22648e-05 2.23196e-05 2.23827e-05 2.24552e-05 2.25379e-05 2.26319e-05 2.27379e-05 2.28564e-05 2.29876e-05 2.3131e-05 2.3286e-05 2.34516e-05 2.36277e-05 2.38181e-05 2.40357e-05 2.43158e-05 2.47484e-05 2.55293e-05 2.70213e-05 2.9752e-05 3.35324e-05 3.67975e-05 3.95679e-05 4.23045e-05 4.50669e-05 4.77436e-05 5.05094e-05 5.33734e-05 2.11078e-05 2.11206e-05 2.11354e-05 2.11526e-05 2.11725e-05 2.11957e-05 2.12226e-05 2.12538e-05 2.12899e-05 2.13316e-05 2.13797e-05 2.1435e-05 2.14983e-05 2.15704e-05 2.1652e-05 2.17436e-05 2.18452e-05 2.19566e-05 2.20765e-05 2.22033e-05 2.23346e-05 2.24686e-05 2.26076e-05 2.27641e-05 2.29882e-05 2.34207e-05 2.43648e-05 2.6409e-05 2.99872e-05 3.36991e-05 3.65884e-05 4.02373e-05 4.48695e-05 4.86605e-05 5.1766e-05 5.52531e-05 5.94133e-05 1.93828e-05 1.93933e-05 1.94054e-05 1.94193e-05 1.94355e-05 1.94542e-05 1.94758e-05 1.95009e-05 1.95299e-05 1.95632e-05 1.96015e-05 1.96454e-05 1.96955e-05 1.97524e-05 1.98165e-05 1.98879e-05 1.99663e-05 2.0051e-05 2.01402e-05 2.02311e-05 2.03199e-05 2.04026e-05 2.04746e-05 2.05449e-05 2.06595e-05 2.09599e-05 2.17808e-05 2.38776e-05 2.81714e-05 3.62627e-05 5.23637e-05 6.98092e-05 9.04309e-05 0.000104711 0.000110453 0.000114557 0.000126038 1.60794e-05 1.60879e-05 1.60974e-05 1.61083e-05 1.61207e-05 1.6135e-05 1.61513e-05 1.61701e-05 1.61915e-05 1.6216e-05 1.62438e-05 1.62753e-05 1.6311e-05 1.63511e-05 1.63958e-05 1.64448e-05 1.64973e-05 1.65523e-05 1.66073e-05 1.66587e-05 1.67006e-05 1.67239e-05 1.67133e-05 1.66699e-05 1.65829e-05 1.65463e-05 1.69211e-05 1.96057e-05 3.7384e-05 7.54294e-05 0.000103182 0.000133337 0.000182777 0.000227539 0.000239997 0.000279947 0.000376311 8.78504e-06 8.80452e-06 8.82605e-06 8.84995e-06 8.87648e-06 8.90595e-06 8.93866e-06 8.97493e-06 9.01514e-06 9.05962e-06 9.10873e-06 9.16293e-06 9.22267e-06 9.28837e-06 9.36037e-06 9.43895e-06 9.52433e-06 9.61638e-06 9.71473e-06 9.81857e-06 9.92632e-06 1.00352e-05 1.014e-05 1.02335e-05 1.03026e-05 1.03256e-05 1.04537e-05 1.87607e-05 6.44224e-05 9.16124e-05 9.76559e-05 0.000106159 0.000127568 0.000149977 0.000161237 0.000179511 0.000234099 8.75665e-06 8.77323e-06 8.79184e-06 8.81268e-06 8.83599e-06 8.86207e-06 8.8912e-06 8.92364e-06 8.9597e-06 8.99977e-06 9.04432e-06 9.09386e-06 9.14893e-06 9.21012e-06 9.27806e-06 9.35346e-06 9.43704e-06 9.52965e-06 9.63216e-06 9.74562e-06 9.87116e-06 1.001e-05 1.01633e-05 1.03324e-05 1.05183e-05 1.0722e-05 1.09435e-05 1.11813e-05 1.14307e-05 1.16914e-05 1.19523e-05 1.22007e-05 1.24067e-05 1.25256e-05 1.66524e-05 6.64975e-05 8.78481e-05 8.08485e-05 1.60689e-05 1.60759e-05 1.60842e-05 1.60938e-05 1.61048e-05 1.61176e-05 1.61323e-05 1.61492e-05 1.61685e-05 1.61906e-05 1.62161e-05 1.62454e-05 1.62792e-05 1.63182e-05 1.63631e-05 1.64148e-05 1.64741e-05 1.65422e-05 1.662e-05 1.6709e-05 1.68104e-05 1.69258e-05 1.70569e-05 1.72053e-05 1.73724e-05 1.75595e-05 1.7766e-05 1.79891e-05 1.82219e-05 1.84471e-05 1.86494e-05 1.88185e-05 1.90327e-05 1.97835e-05 2.25052e-05 3.80978e-05 6.51015e-05 8.3488e-05 1.93723e-05 1.93812e-05 1.93916e-05 1.94038e-05 1.94179e-05 1.94344e-05 1.94535e-05 1.94757e-05 1.95013e-05 1.9531e-05 1.95653e-05 1.96051e-05 1.96512e-05 1.97045e-05 1.9766e-05 1.98368e-05 1.99181e-05 2.00112e-05 2.01174e-05 2.02382e-05 2.03752e-05 2.05301e-05 2.07048e-05 2.09016e-05 2.1123e-05 2.13719e-05 2.1651e-05 2.19623e-05 2.23073e-05 2.2689e-05 2.31281e-05 2.36808e-05 2.45038e-05 2.58909e-05 2.85656e-05 3.17908e-05 3.73264e-05 4.45383e-05 2.11071e-05 2.11199e-05 2.11348e-05 2.11522e-05 2.11725e-05 2.1196e-05 2.12234e-05 2.12551e-05 2.12919e-05 2.13346e-05 2.1384e-05 2.14412e-05 2.15072e-05 2.15834e-05 2.16708e-05 2.17709e-05 2.1885e-05 2.20145e-05 2.21609e-05 2.23258e-05 2.25109e-05 2.27183e-05 2.2951e-05 2.32131e-05 2.35109e-05 2.38537e-05 2.42555e-05 2.47378e-05 2.53406e-05 2.61395e-05 2.72436e-05 2.8825e-05 3.11056e-05 3.45075e-05 3.77352e-05 3.97257e-05 4.15735e-05 2.20106e-05 2.20251e-05 2.2042e-05 2.20617e-05 2.20846e-05 2.21112e-05 2.21421e-05 2.21781e-05 2.22198e-05 2.22681e-05 2.23241e-05 2.23888e-05 2.24634e-05 2.25492e-05 2.26475e-05 2.27596e-05 2.28869e-05 2.30307e-05 2.31922e-05 2.33726e-05 2.35734e-05 2.37966e-05 2.40456e-05 2.43267e-05 2.46512e-05 2.50394e-05 2.55262e-05 2.61653e-05 2.70438e-05 2.82969e-05 3.00174e-05 3.22842e-05 3.51313e-05 3.85544e-05 4.17975e-05 4.42381e-05 4.60439e-05 2.24014e-05 2.24167e-05 2.24346e-05 2.24554e-05 2.24796e-05 2.25078e-05 2.25405e-05 2.25786e-05 2.26227e-05 2.26738e-05 2.2733e-05 2.28013e-05 2.28799e-05 2.29701e-05 2.30731e-05 2.31902e-05 2.33224e-05 2.34708e-05 2.36361e-05 2.38189e-05 2.40201e-05 2.42412e-05 2.44859e-05 2.47627e-05 2.50898e-05 2.55023e-05 2.60673e-05 2.69104e-05 2.82167e-05 3.01987e-05 3.27634e-05 3.57024e-05 3.8968e-05 4.24787e-05 4.57958e-05 4.83935e-05 5.04689e-05 2.24015e-05 2.24169e-05 2.24347e-05 2.24555e-05 2.24797e-05 2.25079e-05 2.25406e-05 2.25786e-05 2.26227e-05 2.26738e-05 2.27328e-05 2.28008e-05 2.28791e-05 2.29686e-05 2.30706e-05 2.31861e-05 2.33159e-05 2.34605e-05 2.36201e-05 2.37945e-05 2.39838e-05 2.41885e-05 2.44125e-05 2.46671e-05 2.49799e-05 2.54096e-05 2.60761e-05 2.71837e-05 2.90783e-05 3.18824e-05 3.49914e-05 3.82442e-05 4.17385e-05 4.53135e-05 4.85275e-05 5.12108e-05 5.34576e-05 2.20111e-05 2.20257e-05 2.20426e-05 2.20622e-05 2.20851e-05 2.21116e-05 2.21425e-05 2.21784e-05 2.22199e-05 2.2268e-05 2.23236e-05 2.23875e-05 2.24609e-05 2.25448e-05 2.264e-05 2.27473e-05 2.28671e-05 2.29995e-05 2.31438e-05 2.32991e-05 2.34638e-05 2.36371e-05 2.38221e-05 2.40313e-05 2.43013e-05 2.47172e-05 2.54773e-05 2.6951e-05 2.97153e-05 3.37128e-05 3.72788e-05 4.03444e-05 4.34074e-05 4.64227e-05 4.9202e-05 5.18951e-05 5.44632e-05 2.1108e-05 2.11209e-05 2.11359e-05 2.11532e-05 2.11734e-05 2.11968e-05 2.1224e-05 2.12555e-05 2.1292e-05 2.13343e-05 2.13829e-05 2.14389e-05 2.1503e-05 2.1576e-05 2.16587e-05 2.17513e-05 2.1854e-05 2.19662e-05 2.20866e-05 2.22132e-05 2.23428e-05 2.24731e-05 2.2605e-05 2.27525e-05 2.29592e-05 2.33661e-05 2.42764e-05 2.62817e-05 2.99522e-05 3.39905e-05 3.68053e-05 4.0438e-05 4.51095e-05 4.88832e-05 5.20156e-05 5.57718e-05 6.00461e-05 1.93827e-05 1.93932e-05 1.94054e-05 1.94194e-05 1.94357e-05 1.94546e-05 1.94764e-05 1.95017e-05 1.9531e-05 1.95647e-05 1.96034e-05 1.96478e-05 1.96984e-05 1.9756e-05 1.98208e-05 1.98929e-05 1.9972e-05 2.00572e-05 2.01465e-05 2.02369e-05 2.0324e-05 2.04024e-05 2.04689e-05 2.05286e-05 2.06249e-05 2.08955e-05 2.16708e-05 2.37463e-05 2.79247e-05 3.56893e-05 4.93122e-05 6.62862e-05 8.62441e-05 9.91588e-05 0.000104562 0.000109734 0.000124108 1.60781e-05 1.60865e-05 1.6096e-05 1.61068e-05 1.61193e-05 1.61336e-05 1.615e-05 1.61688e-05 1.61904e-05 1.6215e-05 1.62429e-05 1.62746e-05 1.63105e-05 1.63509e-05 1.63959e-05 1.64451e-05 1.64979e-05 1.6553e-05 1.6608e-05 1.66589e-05 1.66999e-05 1.67213e-05 1.67082e-05 1.66593e-05 1.65637e-05 1.65065e-05 1.68366e-05 1.91863e-05 3.51075e-05 7.03216e-05 9.75981e-05 0.00012831 0.000174446 0.000222327 0.000240843 0.000286416 0.000387093 8.77464e-06 8.79352e-06 8.81446e-06 8.83777e-06 8.86373e-06 8.89263e-06 8.92476e-06 8.96048e-06 9.00016e-06 9.04412e-06 9.09277e-06 9.14655e-06 9.20593e-06 9.27132e-06 9.34307e-06 9.42147e-06 9.50674e-06 9.59873e-06 9.69706e-06 9.80088e-06 9.90855e-06 1.00172e-05 1.01213e-05 1.02134e-05 1.02797e-05 1.02955e-05 1.03662e-05 1.70719e-05 6.01902e-05 9.03192e-05 9.68593e-05 0.000106017 0.00012749 0.000150732 0.00016542 0.00018367 0.000232697 8.74675e-06 8.76282e-06 8.78086e-06 8.80108e-06 8.82378e-06 8.84927e-06 8.87782e-06 8.90969e-06 8.9452e-06 8.98475e-06 9.02883e-06 9.07794e-06 9.13265e-06 9.19356e-06 9.26131e-06 9.3366e-06 9.42017e-06 9.51286e-06 9.61559e-06 9.72943e-06 9.85549e-06 9.99496e-06 1.01491e-05 1.0319e-05 1.0506e-05 1.07108e-05 1.09336e-05 1.11728e-05 1.14247e-05 1.16904e-05 1.19555e-05 1.22159e-05 1.24451e-05 1.2604e-05 1.31631e-05 3.88484e-05 7.91091e-05 7.69608e-05 1.60678e-05 1.60749e-05 1.60831e-05 1.60927e-05 1.61037e-05 1.61165e-05 1.61312e-05 1.61481e-05 1.61675e-05 1.61898e-05 1.62154e-05 1.6245e-05 1.62791e-05 1.63185e-05 1.6364e-05 1.64163e-05 1.64764e-05 1.65453e-05 1.66241e-05 1.67142e-05 1.6817e-05 1.6934e-05 1.70667e-05 1.72169e-05 1.7386e-05 1.75751e-05 1.77842e-05 1.80107e-05 1.82483e-05 1.84819e-05 1.86975e-05 1.88826e-05 1.90908e-05 1.96502e-05 2.15165e-05 2.87734e-05 5.05505e-05 5.76322e-05 1.93722e-05 1.93812e-05 1.93917e-05 1.9404e-05 1.94183e-05 1.94349e-05 1.94541e-05 1.94765e-05 1.95024e-05 1.95324e-05 1.95672e-05 1.96075e-05 1.96542e-05 1.97083e-05 1.97707e-05 1.98425e-05 1.99251e-05 2.00195e-05 2.01273e-05 2.02499e-05 2.03889e-05 2.05459e-05 2.0723e-05 2.09223e-05 2.11465e-05 2.13986e-05 2.16817e-05 2.19989e-05 2.23531e-05 2.27498e-05 2.32105e-05 2.37874e-05 2.46096e-05 2.58642e-05 2.81921e-05 3.07144e-05 3.49911e-05 3.69852e-05 2.11075e-05 2.11204e-05 2.11355e-05 2.11531e-05 2.11735e-05 2.11973e-05 2.1225e-05 2.12571e-05 2.12943e-05 2.13376e-05 2.13877e-05 2.14457e-05 2.15128e-05 2.159e-05 2.16788e-05 2.17804e-05 2.18962e-05 2.20277e-05 2.21763e-05 2.23435e-05 2.25311e-05 2.27412e-05 2.29765e-05 2.32415e-05 2.35427e-05 2.38903e-05 2.42997e-05 2.47952e-05 2.54195e-05 2.62503e-05 2.73923e-05 2.89862e-05 3.11917e-05 3.42931e-05 3.77437e-05 3.96395e-05 4.06111e-05 2.20112e-05 2.20258e-05 2.20428e-05 2.20627e-05 2.20858e-05 2.21127e-05 2.21441e-05 2.21804e-05 2.22227e-05 2.22717e-05 2.23285e-05 2.23941e-05 2.24698e-05 2.25569e-05 2.26567e-05 2.27706e-05 2.28998e-05 2.30457e-05 2.32094e-05 2.33923e-05 2.35955e-05 2.38211e-05 2.40724e-05 2.43556e-05 2.46827e-05 2.50748e-05 2.55694e-05 2.62245e-05 2.71318e-05 2.84338e-05 3.02296e-05 3.25755e-05 3.54508e-05 3.87592e-05 4.19394e-05 4.43814e-05 4.62837e-05 2.2402e-05 2.24174e-05 2.24355e-05 2.24565e-05 2.2481e-05 2.25094e-05 2.25426e-05 2.25811e-05 2.26257e-05 2.26776e-05 2.27376e-05 2.28068e-05 2.28866e-05 2.29782e-05 2.30828e-05 2.32016e-05 2.33359e-05 2.34864e-05 2.36539e-05 2.3839e-05 2.40423e-05 2.42651e-05 2.4511e-05 2.47884e-05 2.51159e-05 2.55299e-05 2.60999e-05 2.69549e-05 2.82922e-05 3.03425e-05 3.30439e-05 3.61531e-05 3.95478e-05 4.30721e-05 4.63095e-05 4.88481e-05 5.08103e-05 2.24021e-05 2.24176e-05 2.24356e-05 2.24566e-05 2.24811e-05 2.25095e-05 2.25426e-05 2.25811e-05 2.26257e-05 2.26775e-05 2.27373e-05 2.28063e-05 2.28857e-05 2.29766e-05 2.30802e-05 2.31974e-05 2.33291e-05 2.34757e-05 2.36373e-05 2.38136e-05 2.40042e-05 2.42095e-05 2.44329e-05 2.46854e-05 2.49943e-05 2.54193e-05 2.60825e-05 2.71945e-05 2.91142e-05 3.20354e-05 3.53831e-05 3.89134e-05 4.2665e-05 4.63953e-05 4.95972e-05 5.21107e-05 5.40685e-05 2.20116e-05 2.20263e-05 2.20433e-05 2.20631e-05 2.20862e-05 2.21131e-05 2.21443e-05 2.21806e-05 2.22227e-05 2.22714e-05 2.23277e-05 2.23926e-05 2.24671e-05 2.25522e-05 2.26488e-05 2.27576e-05 2.28792e-05 2.30133e-05 2.31593e-05 2.33159e-05 2.34811e-05 2.36539e-05 2.38362e-05 2.40399e-05 2.43007e-05 2.47066e-05 2.54538e-05 2.69064e-05 2.96795e-05 3.38833e-05 3.78132e-05 4.12209e-05 4.46146e-05 4.78673e-05 5.07474e-05 5.33273e-05 5.55437e-05 2.11083e-05 2.11213e-05 2.11364e-05 2.11539e-05 2.11742e-05 2.11979e-05 2.12254e-05 2.12573e-05 2.12942e-05 2.1337e-05 2.13863e-05 2.14431e-05 2.15081e-05 2.15822e-05 2.1666e-05 2.17599e-05 2.1864e-05 2.19776e-05 2.20993e-05 2.22266e-05 2.23561e-05 2.24846e-05 2.26122e-05 2.27511e-05 2.29476e-05 2.33342e-05 2.42037e-05 2.61497e-05 2.98796e-05 3.42714e-05 3.71309e-05 4.0727e-05 4.54532e-05 4.92804e-05 5.25784e-05 5.67572e-05 6.10554e-05 1.93825e-05 1.93931e-05 1.94053e-05 1.94195e-05 1.94359e-05 1.94549e-05 1.9477e-05 1.95025e-05 1.95321e-05 1.95662e-05 1.96054e-05 1.96503e-05 1.97017e-05 1.97599e-05 1.98256e-05 1.98986e-05 1.99787e-05 2.00649e-05 2.0155e-05 2.02458e-05 2.03324e-05 2.04088e-05 2.04704e-05 2.05231e-05 2.06088e-05 2.08521e-05 2.15747e-05 2.35586e-05 2.75562e-05 3.5056e-05 4.57153e-05 6.2093e-05 8.12915e-05 9.3081e-05 9.87163e-05 0.000106046 0.000124097 1.60767e-05 1.6085e-05 1.60945e-05 1.61054e-05 1.61178e-05 1.61321e-05 1.61486e-05 1.61675e-05 1.61892e-05 1.62139e-05 1.62421e-05 1.6274e-05 1.63102e-05 1.63509e-05 1.63962e-05 1.64459e-05 1.64992e-05 1.65549e-05 1.66103e-05 1.66616e-05 1.67025e-05 1.67228e-05 1.6708e-05 1.66568e-05 1.65576e-05 1.64895e-05 1.67635e-05 1.87201e-05 3.19885e-05 6.41872e-05 9.15473e-05 0.000121729 0.000164509 0.000214976 0.000242313 0.000296292 0.000403965 8.76398e-06 8.78225e-06 8.80257e-06 8.82526e-06 8.85062e-06 8.87891e-06 8.91045e-06 8.94561e-06 8.98474e-06 9.02819e-06 9.07638e-06 9.12976e-06 9.18879e-06 9.25389e-06 9.32543e-06 9.40371e-06 9.48895e-06 9.58103e-06 9.67955e-06 9.78365e-06 9.89165e-06 1.00005e-05 1.01048e-05 1.01969e-05 1.02616e-05 1.02787e-05 1.02897e-05 1.50138e-05 5.32443e-05 8.81487e-05 9.62086e-05 0.000105634 0.000126926 0.000151087 0.000170402 0.000190339 0.000234186 8.73664e-06 8.75216e-06 8.76959e-06 8.78918e-06 8.81125e-06 8.83613e-06 8.86408e-06 8.89536e-06 8.9303e-06 8.96932e-06 9.01291e-06 9.06159e-06 9.11593e-06 9.17655e-06 9.24411e-06 9.3193e-06 9.40288e-06 9.4957e-06 9.59872e-06 9.71302e-06 9.83971e-06 9.97997e-06 1.0135e-05 1.03061e-05 1.04943e-05 1.07005e-05 1.0925e-05 1.11657e-05 1.14233e-05 1.16928e-05 1.19679e-05 1.22444e-05 1.2504e-05 1.27038e-05 1.27493e-05 1.48417e-05 5.2028e-05 6.79885e-05 1.60666e-05 1.60738e-05 1.6082e-05 1.60915e-05 1.61025e-05 1.61153e-05 1.613e-05 1.6147e-05 1.61665e-05 1.61889e-05 1.62147e-05 1.62446e-05 1.62791e-05 1.6319e-05 1.6365e-05 1.64179e-05 1.64788e-05 1.65487e-05 1.66287e-05 1.67202e-05 1.68246e-05 1.69434e-05 1.70782e-05 1.72307e-05 1.74025e-05 1.75948e-05 1.78078e-05 1.80398e-05 1.82857e-05 1.85331e-05 1.87705e-05 1.89859e-05 1.92189e-05 1.96379e-05 2.08339e-05 2.36997e-05 3.47659e-05 4.06565e-05 1.93722e-05 1.93813e-05 1.93919e-05 1.94042e-05 1.94186e-05 1.94353e-05 1.94548e-05 1.94774e-05 1.95035e-05 1.95339e-05 1.95691e-05 1.961e-05 1.96574e-05 1.97123e-05 1.97756e-05 1.98486e-05 1.99325e-05 2.00286e-05 2.01382e-05 2.0263e-05 2.04044e-05 2.05642e-05 2.07445e-05 2.09474e-05 2.11758e-05 2.1433e-05 2.17228e-05 2.20498e-05 2.24192e-05 2.284e-05 2.33364e-05 2.3958e-05 2.48088e-05 2.60317e-05 2.79767e-05 3.04923e-05 3.33476e-05 3.42024e-05 2.11079e-05 2.11209e-05 2.11362e-05 2.11539e-05 2.11745e-05 2.11986e-05 2.12266e-05 2.12591e-05 2.12968e-05 2.13407e-05 2.13915e-05 2.14504e-05 2.15185e-05 2.1597e-05 2.16873e-05 2.17906e-05 2.19084e-05 2.20423e-05 2.21935e-05 2.23638e-05 2.25548e-05 2.27686e-05 2.30083e-05 2.32783e-05 2.35857e-05 2.3942e-05 2.43645e-05 2.48811e-05 2.55383e-05 2.64161e-05 2.76151e-05 2.92453e-05 3.14055e-05 3.42179e-05 3.74694e-05 3.982e-05 4.05162e-05 2.20117e-05 2.20265e-05 2.20437e-05 2.20637e-05 2.20871e-05 2.21143e-05 2.2146e-05 2.21829e-05 2.22257e-05 2.22754e-05 2.2333e-05 2.23996e-05 2.24766e-05 2.25651e-05 2.26666e-05 2.27824e-05 2.29139e-05 2.30624e-05 2.32291e-05 2.34152e-05 2.36221e-05 2.38516e-05 2.41071e-05 2.43954e-05 2.47288e-05 2.51302e-05 2.56395e-05 2.63201e-05 2.72686e-05 2.86341e-05 3.05207e-05 3.29583e-05 3.58683e-05 3.90735e-05 4.21244e-05 4.46563e-05 4.65528e-05 2.24026e-05 2.24182e-05 2.24364e-05 2.24576e-05 2.24823e-05 2.25111e-05 2.25446e-05 2.25836e-05 2.26289e-05 2.26815e-05 2.27423e-05 2.28127e-05 2.28937e-05 2.29868e-05 2.30932e-05 2.32141e-05 2.33508e-05 2.3504e-05 2.36746e-05 2.3863e-05 2.40697e-05 2.42961e-05 2.45458e-05 2.48273e-05 2.516e-05 2.55818e-05 2.61652e-05 2.70423e-05 2.84211e-05 3.05468e-05 3.33938e-05 3.66775e-05 4.01898e-05 4.3713e-05 4.68475e-05 4.93239e-05 5.12189e-05 2.24027e-05 2.24183e-05 2.24365e-05 2.24577e-05 2.24824e-05 2.25112e-05 2.25447e-05 2.25836e-05 2.26289e-05 2.26813e-05 2.2742e-05 2.28121e-05 2.28928e-05 2.29852e-05 2.30905e-05 2.32098e-05 2.33438e-05 2.3493e-05 2.36575e-05 2.38368e-05 2.40304e-05 2.42384e-05 2.44642e-05 2.47186e-05 2.50294e-05 2.54571e-05 2.61252e-05 2.72498e-05 2.91961e-05 3.22347e-05 3.584e-05 3.9646e-05 4.36352e-05 4.74907e-05 5.06568e-05 5.29826e-05 5.46724e-05 2.20121e-05 2.20269e-05 2.20441e-05 2.20641e-05 2.20874e-05 2.21146e-05 2.21462e-05 2.21829e-05 2.22255e-05 2.22749e-05 2.23321e-05 2.23979e-05 2.24736e-05 2.25601e-05 2.26583e-05 2.27691e-05 2.28928e-05 2.30293e-05 2.31779e-05 2.33369e-05 2.35044e-05 2.36788e-05 2.38619e-05 2.40649e-05 2.43231e-05 2.47227e-05 2.54579e-05 2.68932e-05 2.96656e-05 3.406e-05 3.84146e-05 4.22081e-05 4.5917e-05 4.93712e-05 5.2372e-05 5.47952e-05 5.66298e-05 2.11086e-05 2.11217e-05 2.11369e-05 2.11545e-05 2.11751e-05 2.1199e-05 2.12268e-05 2.12591e-05 2.12965e-05 2.13399e-05 2.13899e-05 2.14475e-05 2.15135e-05 2.15888e-05 2.1674e-05 2.17695e-05 2.18754e-05 2.1991e-05 2.21148e-05 2.22439e-05 2.2375e-05 2.25041e-05 2.2631e-05 2.27665e-05 2.29543e-05 2.33246e-05 2.41643e-05 2.60354e-05 2.97935e-05 3.45263e-05 3.76683e-05 4.11893e-05 4.59737e-05 4.993e-05 5.35608e-05 5.80986e-05 6.25245e-05 1.93823e-05 1.9393e-05 1.94053e-05 1.94195e-05 1.94361e-05 1.94553e-05 1.94775e-05 1.95034e-05 1.95333e-05 1.95678e-05 1.96075e-05 1.96531e-05 1.97051e-05 1.97643e-05 1.98309e-05 1.99052e-05 1.99866e-05 2.00742e-05 2.01659e-05 2.0258e-05 2.03456e-05 2.04223e-05 2.04828e-05 2.05314e-05 2.06071e-05 2.08335e-05 2.15075e-05 2.33672e-05 2.71282e-05 3.43216e-05 4.24898e-05 5.76007e-05 7.59379e-05 8.69439e-05 9.33672e-05 0.000104385 0.000127805 1.60752e-05 1.60835e-05 1.6093e-05 1.61038e-05 1.61163e-05 1.61306e-05 1.61471e-05 1.61661e-05 1.61879e-05 1.62128e-05 1.62412e-05 1.62734e-05 1.63099e-05 1.6351e-05 1.63968e-05 1.64472e-05 1.65012e-05 1.65578e-05 1.66143e-05 1.66667e-05 1.67087e-05 1.67305e-05 1.67172e-05 1.66669e-05 1.65677e-05 1.64882e-05 1.67181e-05 1.82846e-05 2.86126e-05 5.78202e-05 8.48932e-05 0.000114215 0.000154153 0.000206028 0.000244903 0.000310829 0.000428327 8.75308e-06 8.7707e-06 8.79037e-06 8.81241e-06 8.83712e-06 8.86479e-06 8.89572e-06 8.9303e-06 8.96889e-06 9.01184e-06 9.05956e-06 9.11254e-06 9.17124e-06 9.23609e-06 9.30746e-06 9.38569e-06 9.47099e-06 9.56331e-06 9.66224e-06 9.76693e-06 9.8757e-06 9.98554e-06 1.00911e-05 1.01844e-05 1.02519e-05 1.02731e-05 1.02478e-05 1.30784e-05 4.43883e-05 8.51835e-05 9.57555e-05 0.000105332 0.000126114 0.000151709 0.000176342 0.000199433 0.000239774 8.7263e-06 8.74124e-06 8.75805e-06 8.77699e-06 8.79842e-06 8.82266e-06 8.84998e-06 8.88063e-06 8.91498e-06 8.95346e-06 8.99655e-06 9.04479e-06 9.09877e-06 9.1591e-06 9.22648e-06 9.30158e-06 9.38519e-06 9.47819e-06 9.58159e-06 9.69645e-06 9.82389e-06 9.96509e-06 1.01213e-05 1.02936e-05 1.04834e-05 1.06915e-05 1.09179e-05 1.11626e-05 1.14243e-05 1.17013e-05 1.19887e-05 1.22858e-05 1.25746e-05 1.28372e-05 1.30196e-05 1.30129e-05 1.66588e-05 3.55629e-05 1.60655e-05 1.60726e-05 1.60808e-05 1.60903e-05 1.61013e-05 1.61141e-05 1.61288e-05 1.61459e-05 1.61654e-05 1.6188e-05 1.62141e-05 1.62442e-05 1.62791e-05 1.63194e-05 1.6366e-05 1.64197e-05 1.64815e-05 1.65525e-05 1.66339e-05 1.6727e-05 1.68334e-05 1.69544e-05 1.70918e-05 1.72472e-05 1.74225e-05 1.76191e-05 1.78377e-05 1.80778e-05 1.83353e-05 1.86017e-05 1.88687e-05 1.91277e-05 1.94177e-05 1.98044e-05 2.06467e-05 2.21865e-05 2.55872e-05 2.9445e-05 1.93721e-05 1.93813e-05 1.9392e-05 1.94044e-05 1.94189e-05 1.94357e-05 1.94554e-05 1.94782e-05 1.95047e-05 1.95354e-05 1.95711e-05 1.96126e-05 1.96607e-05 1.97164e-05 1.97809e-05 1.98551e-05 1.99405e-05 2.00384e-05 2.01502e-05 2.02775e-05 2.04219e-05 2.05853e-05 2.07696e-05 2.09774e-05 2.12116e-05 2.14761e-05 2.17759e-05 2.21171e-05 2.25084e-05 2.29632e-05 2.35096e-05 2.41972e-05 2.51136e-05 2.63476e-05 2.81367e-05 3.02329e-05 3.27148e-05 3.29797e-05 2.11083e-05 2.11215e-05 2.11368e-05 2.11547e-05 2.11756e-05 2.11999e-05 2.12282e-05 2.12611e-05 2.12994e-05 2.13438e-05 2.13955e-05 2.14553e-05 2.15246e-05 2.16045e-05 2.16963e-05 2.18016e-05 2.19218e-05 2.20584e-05 2.22129e-05 2.2387e-05 2.25824e-05 2.28013e-05 2.3047e-05 2.33245e-05 2.36415e-05 2.4011e-05 2.44532e-05 2.5e-05 2.57033e-05 2.66462e-05 2.79249e-05 2.96224e-05 3.17771e-05 3.44186e-05 3.73188e-05 4.01648e-05 4.15384e-05 2.20122e-05 2.20271e-05 2.20445e-05 2.20648e-05 2.20884e-05 2.21159e-05 2.2148e-05 2.21853e-05 2.22287e-05 2.22791e-05 2.23376e-05 2.24054e-05 2.24836e-05 2.25737e-05 2.26771e-05 2.27952e-05 2.29293e-05 2.3081e-05 2.32514e-05 2.34417e-05 2.36535e-05 2.38887e-05 2.4151e-05 2.44475e-05 2.47918e-05 2.52086e-05 2.57414e-05 2.64591e-05 2.74648e-05 2.89122e-05 3.09084e-05 3.3454e-05 3.64122e-05 3.95516e-05 4.24752e-05 4.50482e-05 4.71483e-05 2.24031e-05 2.24189e-05 2.24373e-05 2.24587e-05 2.24837e-05 2.25128e-05 2.25468e-05 2.25862e-05 2.26322e-05 2.26855e-05 2.27473e-05 2.28188e-05 2.29012e-05 2.2996e-05 2.31044e-05 2.32277e-05 2.33672e-05 2.35238e-05 2.36982e-05 2.38911e-05 2.41029e-05 2.43351e-05 2.45915e-05 2.48813e-05 2.52248e-05 2.56622e-05 2.62696e-05 2.71831e-05 2.86193e-05 3.0832e-05 3.38329e-05 3.72942e-05 4.09134e-05 4.44295e-05 4.74639e-05 4.98489e-05 5.173e-05 2.24032e-05 2.2419e-05 2.24374e-05 2.24588e-05 2.24838e-05 2.25129e-05 2.25468e-05 2.25862e-05 2.26321e-05 2.26853e-05 2.2747e-05 2.28182e-05 2.29003e-05 2.29943e-05 2.31017e-05 2.32233e-05 2.33602e-05 2.35127e-05 2.3681e-05 2.38646e-05 2.40629e-05 2.42761e-05 2.45077e-05 2.47689e-05 2.50882e-05 2.55276e-05 2.62124e-05 2.73628e-05 2.93442e-05 3.25005e-05 3.63753e-05 4.04547e-05 4.46485e-05 4.85988e-05 5.17106e-05 5.38397e-05 5.52945e-05 2.20126e-05 2.20275e-05 2.20448e-05 2.20651e-05 2.20886e-05 2.21161e-05 2.2148e-05 2.21853e-05 2.22285e-05 2.22786e-05 2.23366e-05 2.24036e-05 2.24805e-05 2.25686e-05 2.26687e-05 2.27818e-05 2.29081e-05 2.30477e-05 2.31997e-05 2.33626e-05 2.35343e-05 2.37131e-05 2.39007e-05 2.41085e-05 2.43715e-05 2.47753e-05 2.55108e-05 2.69365e-05 2.96959e-05 3.42487e-05 3.90888e-05 4.33039e-05 4.72986e-05 5.09234e-05 5.40142e-05 5.62676e-05 5.77405e-05 2.11089e-05 2.11221e-05 2.11374e-05 2.11552e-05 2.11759e-05 2.12001e-05 2.12282e-05 2.12609e-05 2.12989e-05 2.13428e-05 2.13936e-05 2.14521e-05 2.15193e-05 2.15959e-05 2.16827e-05 2.17802e-05 2.18884e-05 2.20066e-05 2.21333e-05 2.22657e-05 2.24001e-05 2.25327e-05 2.26626e-05 2.28005e-05 2.29881e-05 2.33478e-05 2.4157e-05 2.59722e-05 2.9751e-05 3.47907e-05 3.84792e-05 4.18802e-05 4.67072e-05 5.08926e-05 5.49786e-05 5.96927e-05 6.44128e-05 1.93821e-05 1.93928e-05 1.94052e-05 1.94195e-05 1.94362e-05 1.94556e-05 1.94781e-05 1.95043e-05 1.95345e-05 1.95695e-05 1.96098e-05 1.9656e-05 1.97089e-05 1.9769e-05 1.98369e-05 1.99126e-05 1.99957e-05 2.00853e-05 2.01792e-05 2.02739e-05 2.03641e-05 2.04435e-05 2.05066e-05 2.0557e-05 2.06304e-05 2.08413e-05 2.14787e-05 2.32016e-05 2.67305e-05 3.35426e-05 4.06409e-05 5.31102e-05 7.05337e-05 8.11407e-05 8.90476e-05 0.00010423 0.000134811 1.60738e-05 1.6082e-05 1.60914e-05 1.61021e-05 1.61146e-05 1.6129e-05 1.61455e-05 1.61647e-05 1.61866e-05 1.62118e-05 1.62404e-05 1.62729e-05 1.63098e-05 1.63514e-05 1.63978e-05 1.64489e-05 1.6504e-05 1.65618e-05 1.66199e-05 1.66743e-05 1.67188e-05 1.67441e-05 1.6735e-05 1.66902e-05 1.65989e-05 1.652e-05 1.67006e-05 1.7941e-05 2.54758e-05 5.13106e-05 7.70858e-05 0.000106674 0.000143481 0.000196683 0.000249196 0.000330703 0.000460388 8.74194e-06 8.75888e-06 8.77787e-06 8.79922e-06 8.82326e-06 8.85027e-06 8.88058e-06 8.91458e-06 8.95262e-06 8.99506e-06 9.04233e-06 9.09492e-06 9.15329e-06 9.2179e-06 9.28916e-06 9.3674e-06 9.45288e-06 9.54558e-06 9.64514e-06 9.75074e-06 9.86072e-06 9.9722e-06 1.00801e-05 1.01758e-05 1.02496e-05 1.02742e-05 1.02348e-05 1.1588e-05 3.43881e-05 8.08631e-05 9.55226e-05 0.000105458 0.00012585 0.000153033 0.000183447 0.000211045 0.000250081 8.71575e-06 8.73008e-06 8.74624e-06 8.76452e-06 8.78529e-06 8.80886e-06 8.8355e-06 8.8655e-06 8.89925e-06 8.93716e-06 8.97974e-06 9.02754e-06 9.08115e-06 9.14121e-06 9.2084e-06 9.28343e-06 9.36713e-06 9.46038e-06 9.56423e-06 9.67976e-06 9.8081e-06 9.95041e-06 1.01079e-05 1.02819e-05 1.04736e-05 1.0684e-05 1.09129e-05 1.11625e-05 1.14299e-05 1.17162e-05 1.20192e-05 1.23382e-05 1.26654e-05 1.29795e-05 1.32624e-05 1.34722e-05 1.36152e-05 1.52156e-05 1.60643e-05 1.60714e-05 1.60796e-05 1.6089e-05 1.61e-05 1.61128e-05 1.61276e-05 1.61446e-05 1.61643e-05 1.6187e-05 1.62133e-05 1.62438e-05 1.62791e-05 1.632e-05 1.63672e-05 1.64218e-05 1.64846e-05 1.65568e-05 1.66397e-05 1.67347e-05 1.68433e-05 1.6967e-05 1.71075e-05 1.72667e-05 1.74465e-05 1.76488e-05 1.7875e-05 1.81255e-05 1.83982e-05 1.86887e-05 1.89923e-05 1.93084e-05 1.96655e-05 2.0134e-05 2.08298e-05 2.19268e-05 2.3428e-05 2.46302e-05 1.93721e-05 1.93813e-05 1.9392e-05 1.94045e-05 1.94191e-05 1.94362e-05 1.9456e-05 1.94791e-05 1.95058e-05 1.9537e-05 1.95732e-05 1.96153e-05 1.96642e-05 1.97208e-05 1.97864e-05 1.98621e-05 1.99491e-05 2.00491e-05 2.01634e-05 2.02937e-05 2.04417e-05 2.06094e-05 2.07988e-05 2.10128e-05 2.12547e-05 2.15291e-05 2.18424e-05 2.2203e-05 2.26234e-05 2.31226e-05 2.3734e-05 2.4509e-05 2.55198e-05 2.68362e-05 2.85421e-05 3.06315e-05 3.264e-05 3.4375e-05 2.11087e-05 2.1122e-05 2.11375e-05 2.11555e-05 2.11766e-05 2.12012e-05 2.12299e-05 2.12632e-05 2.1302e-05 2.13471e-05 2.13996e-05 2.14604e-05 2.15309e-05 2.16123e-05 2.1706e-05 2.18135e-05 2.19363e-05 2.20761e-05 2.22345e-05 2.24132e-05 2.26142e-05 2.28398e-05 2.30936e-05 2.33813e-05 2.37117e-05 2.40998e-05 2.45691e-05 2.51567e-05 2.59213e-05 2.69495e-05 2.83327e-05 3.01285e-05 3.23274e-05 3.48762e-05 3.76128e-05 4.02678e-05 4.24466e-05 2.20128e-05 2.20278e-05 2.20454e-05 2.20658e-05 2.20897e-05 2.21176e-05 2.215e-05 2.21878e-05 2.22319e-05 2.2283e-05 2.23425e-05 2.24114e-05 2.24911e-05 2.25829e-05 2.26883e-05 2.2809e-05 2.29462e-05 2.31016e-05 2.32764e-05 2.34721e-05 2.36903e-05 2.39332e-05 2.42049e-05 2.45135e-05 2.48739e-05 2.53135e-05 2.588e-05 2.6649e-05 2.77311e-05 2.92824e-05 3.14085e-05 3.40781e-05 3.71009e-05 4.0207e-05 4.30678e-05 4.56104e-05 4.79004e-05 2.24037e-05 2.24196e-05 2.24382e-05 2.24599e-05 2.24851e-05 2.25146e-05 2.25489e-05 2.25889e-05 2.26355e-05 2.26896e-05 2.27525e-05 2.28252e-05 2.29092e-05 2.30058e-05 2.31164e-05 2.32425e-05 2.33853e-05 2.35459e-05 2.37251e-05 2.39238e-05 2.41425e-05 2.4383e-05 2.46495e-05 2.49523e-05 2.53132e-05 2.57757e-05 2.64201e-05 2.73884e-05 2.8903e-05 3.12191e-05 3.43797e-05 3.8018e-05 4.17348e-05 4.52404e-05 4.81933e-05 5.0484e-05 5.23544e-05 2.24038e-05 2.24197e-05 2.24383e-05 2.24599e-05 2.24852e-05 2.25146e-05 2.25489e-05 2.25889e-05 2.26354e-05 2.26894e-05 2.27521e-05 2.28246e-05 2.29082e-05 2.30041e-05 2.31137e-05 2.32381e-05 2.33783e-05 2.35349e-05 2.3708e-05 2.38973e-05 2.41024e-05 2.43237e-05 2.45651e-05 2.48386e-05 2.51744e-05 2.56367e-05 2.63535e-05 2.75492e-05 2.95837e-05 3.28578e-05 3.69992e-05 4.13459e-05 4.57102e-05 4.97205e-05 5.27617e-05 5.47004e-05 5.59644e-05 2.20131e-05 2.20281e-05 2.20456e-05 2.2066e-05 2.20898e-05 2.21176e-05 2.215e-05 2.21877e-05 2.22315e-05 2.22824e-05 2.23414e-05 2.24095e-05 2.24879e-05 2.25777e-05 2.268e-05 2.27956e-05 2.29252e-05 2.30686e-05 2.32252e-05 2.33935e-05 2.35715e-05 2.37577e-05 2.39542e-05 2.41729e-05 2.44498e-05 2.48705e-05 2.56231e-05 2.70593e-05 2.98132e-05 3.44878e-05 3.98244e-05 4.4505e-05 4.87527e-05 5.25005e-05 5.5659e-05 5.77011e-05 5.89215e-05 2.11092e-05 2.11224e-05 2.11379e-05 2.11558e-05 2.11768e-05 2.12012e-05 2.12297e-05 2.12628e-05 2.13013e-05 2.13459e-05 2.13975e-05 2.14571e-05 2.15254e-05 2.16036e-05 2.16923e-05 2.17921e-05 2.1903e-05 2.20246e-05 2.21552e-05 2.22923e-05 2.24322e-05 2.25712e-05 2.27086e-05 2.28551e-05 2.30517e-05 2.34139e-05 2.42076e-05 2.596e-05 2.9663e-05 3.50843e-05 3.94626e-05 4.287e-05 4.76513e-05 5.21368e-05 5.67408e-05 6.15523e-05 6.68469e-05 1.9382e-05 1.93927e-05 1.94051e-05 1.94195e-05 1.94363e-05 1.94559e-05 1.94787e-05 1.95051e-05 1.95358e-05 1.95713e-05 1.96122e-05 1.96591e-05 1.97129e-05 1.97742e-05 1.98434e-05 1.99208e-05 2.00061e-05 2.00983e-05 2.01953e-05 2.02937e-05 2.03884e-05 2.04733e-05 2.0543e-05 2.06009e-05 2.06805e-05 2.08897e-05 2.14949e-05 2.31115e-05 2.65888e-05 3.28373e-05 4.01601e-05 4.8858e-05 6.53948e-05 7.57676e-05 8.62932e-05 0.000106372 0.000145522 1.60723e-05 1.60804e-05 1.60897e-05 1.61004e-05 1.61129e-05 1.61273e-05 1.61439e-05 1.61632e-05 1.61853e-05 1.62107e-05 1.62396e-05 1.62724e-05 1.63097e-05 1.63519e-05 1.63991e-05 1.64511e-05 1.65075e-05 1.6567e-05 1.66273e-05 1.66845e-05 1.67328e-05 1.67635e-05 1.67623e-05 1.67268e-05 1.66501e-05 1.6583e-05 1.67304e-05 1.77324e-05 2.28865e-05 4.44438e-05 6.90576e-05 9.96773e-05 0.000133236 0.000187768 0.000255926 0.000356252 0.000499104 8.73057e-06 8.74681e-06 8.76508e-06 8.78572e-06 8.80904e-06 8.83536e-06 8.86504e-06 8.89845e-06 8.93595e-06 8.97788e-06 9.02469e-06 9.07688e-06 9.13494e-06 9.19935e-06 9.27054e-06 9.34888e-06 9.43462e-06 9.52786e-06 9.62827e-06 9.73509e-06 9.84677e-06 9.96058e-06 1.00717e-05 1.01728e-05 1.02517e-05 1.02873e-05 1.02563e-05 1.07363e-05 2.48839e-05 7.38615e-05 9.53547e-05 0.000106378 0.000126276 0.000155833 0.000191926 0.000225204 0.00026331 8.705e-06 8.71869e-06 8.73417e-06 8.75177e-06 8.77184e-06 8.79471e-06 8.82065e-06 8.84997e-06 8.88309e-06 8.92042e-06 8.96248e-06 9.00984e-06 9.06308e-06 9.12287e-06 9.18989e-06 9.26489e-06 9.34871e-06 9.44229e-06 9.5467e-06 9.66302e-06 9.7924e-06 9.93602e-06 1.00951e-05 1.0271e-05 1.0465e-05 1.06778e-05 1.09116e-05 1.11656e-05 1.14411e-05 1.17386e-05 1.20597e-05 1.24045e-05 1.27681e-05 1.31429e-05 1.35221e-05 1.38331e-05 1.42997e-05 1.45406e-05 1.60631e-05 1.60702e-05 1.60783e-05 1.60877e-05 1.60986e-05 1.61114e-05 1.61262e-05 1.61433e-05 1.61631e-05 1.6186e-05 1.62126e-05 1.62434e-05 1.62791e-05 1.63206e-05 1.63685e-05 1.6424e-05 1.64879e-05 1.65615e-05 1.66463e-05 1.67434e-05 1.68547e-05 1.69815e-05 1.71258e-05 1.72896e-05 1.74751e-05 1.76847e-05 1.79204e-05 1.81837e-05 1.84753e-05 1.87948e-05 1.91425e-05 1.95253e-05 1.99746e-05 2.05272e-05 2.12644e-05 2.23154e-05 2.31421e-05 2.42393e-05 1.9372e-05 1.93813e-05 1.93921e-05 1.94047e-05 1.94194e-05 1.94366e-05 1.94566e-05 1.94799e-05 1.9507e-05 1.95386e-05 1.95753e-05 1.9618e-05 1.96677e-05 1.97254e-05 1.97922e-05 1.98694e-05 1.99584e-05 2.00607e-05 2.01778e-05 2.03116e-05 2.04639e-05 2.06367e-05 2.08325e-05 2.10542e-05 2.1306e-05 2.15932e-05 2.1924e-05 2.23096e-05 2.27669e-05 2.33217e-05 2.40132e-05 2.48954e-05 2.60295e-05 2.74562e-05 2.9214e-05 3.12627e-05 3.34014e-05 3.54711e-05 2.11091e-05 2.11225e-05 2.11381e-05 2.11564e-05 2.11777e-05 2.12025e-05 2.12315e-05 2.12653e-05 2.13047e-05 2.13505e-05 2.14038e-05 2.14658e-05 2.15375e-05 2.16206e-05 2.17163e-05 2.18262e-05 2.19521e-05 2.20956e-05 2.22585e-05 2.24428e-05 2.26505e-05 2.28846e-05 2.31488e-05 2.34498e-05 2.3798e-05 2.42107e-05 2.47155e-05 2.53563e-05 2.61993e-05 2.73342e-05 2.88463e-05 3.07691e-05 3.3049e-05 3.55893e-05 3.82485e-05 4.09007e-05 4.33209e-05 2.20133e-05 2.20285e-05 2.20462e-05 2.20669e-05 2.20911e-05 2.21192e-05 2.21521e-05 2.21904e-05 2.22351e-05 2.22871e-05 2.23475e-05 2.24177e-05 2.24989e-05 2.25926e-05 2.27004e-05 2.28238e-05 2.29646e-05 2.31243e-05 2.33045e-05 2.35067e-05 2.37329e-05 2.39857e-05 2.42701e-05 2.45949e-05 2.49775e-05 2.54485e-05 2.60607e-05 2.68977e-05 2.80784e-05 2.97579e-05 3.20331e-05 3.48402e-05 3.79402e-05 4.10436e-05 4.38809e-05 4.64384e-05 4.88409e-05 2.24044e-05 2.24204e-05 2.24391e-05 2.2461e-05 2.24866e-05 2.25164e-05 2.25511e-05 2.25917e-05 2.2639e-05 2.26939e-05 2.27578e-05 2.28319e-05 2.29175e-05 2.30161e-05 2.31293e-05 2.32585e-05 2.34051e-05 2.35704e-05 2.37555e-05 2.39613e-05 2.41889e-05 2.44404e-05 2.4721e-05 2.50422e-05 2.54284e-05 2.5927e-05 2.66246e-05 2.76698e-05 2.92876e-05 3.17279e-05 3.50508e-05 3.88594e-05 4.26653e-05 4.61571e-05 4.90427e-05 5.12635e-05 5.31272e-05 2.24044e-05 2.24205e-05 2.24392e-05 2.2461e-05 2.24866e-05 2.25163e-05 2.25511e-05 2.25916e-05 2.26388e-05 2.26937e-05 2.27575e-05 2.28313e-05 2.29165e-05 2.30145e-05 2.31266e-05 2.32542e-05 2.33984e-05 2.35598e-05 2.37388e-05 2.39354e-05 2.41496e-05 2.43822e-05 2.46379e-05 2.49303e-05 2.52918e-05 2.57905e-05 2.65587e-05 2.78251e-05 2.99416e-05 3.3333e-05 3.77233e-05 4.23222e-05 4.68247e-05 5.08579e-05 5.38137e-05 5.55804e-05 5.67151e-05 2.20136e-05 2.20287e-05 2.20464e-05 2.2067e-05 2.20911e-05 2.21192e-05 2.2152e-05 2.21902e-05 2.22347e-05 2.22864e-05 2.23463e-05 2.24157e-05 2.24957e-05 2.25874e-05 2.26922e-05 2.28108e-05 2.29441e-05 2.30921e-05 2.32545e-05 2.34299e-05 2.36166e-05 2.38138e-05 2.40241e-05 2.42611e-05 2.45623e-05 2.50154e-05 2.58072e-05 2.72836e-05 3.00499e-05 3.48102e-05 4.06189e-05 4.57875e-05 5.02612e-05 5.40932e-05 5.73036e-05 5.91059e-05 6.02403e-05 2.11095e-05 2.11228e-05 2.11384e-05 2.11565e-05 2.11777e-05 2.12024e-05 2.12312e-05 2.12648e-05 2.13038e-05 2.13492e-05 2.14017e-05 2.14623e-05 2.1532e-05 2.16118e-05 2.17026e-05 2.18051e-05 2.19193e-05 2.2045e-05 2.21807e-05 2.23242e-05 2.24719e-05 2.26207e-05 2.27706e-05 2.29331e-05 2.31495e-05 2.35302e-05 2.43313e-05 2.60476e-05 2.9636e-05 3.54139e-05 4.0524e-05 4.41676e-05 4.87992e-05 5.36046e-05 5.88361e-05 6.36533e-05 6.98966e-05 1.93818e-05 1.93925e-05 1.9405e-05 1.94195e-05 1.94365e-05 1.94562e-05 1.94793e-05 1.95061e-05 1.95372e-05 1.95732e-05 1.96147e-05 1.96624e-05 1.97172e-05 1.97798e-05 1.98506e-05 1.99301e-05 2.00179e-05 2.01133e-05 2.02144e-05 2.03179e-05 2.04191e-05 2.05123e-05 2.05929e-05 2.06651e-05 2.07605e-05 2.09829e-05 2.15781e-05 2.30899e-05 2.66314e-05 3.22994e-05 3.99573e-05 4.64215e-05 6.08327e-05 7.08427e-05 8.51769e-05 0.000110715 0.000159915 1.60707e-05 1.60788e-05 1.6088e-05 1.60987e-05 1.61111e-05 1.61255e-05 1.61423e-05 1.61617e-05 1.6184e-05 1.62096e-05 1.62388e-05 1.6272e-05 1.63098e-05 1.63526e-05 1.64007e-05 1.64539e-05 1.65119e-05 1.65734e-05 1.66365e-05 1.66975e-05 1.67509e-05 1.67889e-05 1.67999e-05 1.6777e-05 1.67225e-05 1.66803e-05 1.6814e-05 1.76421e-05 2.10914e-05 3.74951e-05 6.25763e-05 9.14694e-05 0.000125241 0.000180532 0.000265817 0.0003872 0.000542175 8.719e-06 8.73451e-06 8.75203e-06 8.7719e-06 8.79448e-06 8.8201e-06 8.84913e-06 8.88195e-06 8.91888e-06 8.96029e-06 9.00664e-06 9.05843e-06 9.11619e-06 9.18043e-06 9.25161e-06 9.33011e-06 9.41623e-06 9.51016e-06 9.61165e-06 9.72002e-06 9.83391e-06 9.95075e-06 1.00658e-05 1.01733e-05 1.02606e-05 1.03114e-05 1.02983e-05 1.03872e-05 1.81315e-05 6.23498e-05 9.47565e-05 0.00010837 0.000127812 0.000160274 0.000201921 0.000241605 0.000278867 8.69404e-06 8.70706e-06 8.72185e-06 8.73874e-06 8.75809e-06 8.78021e-06 8.80542e-06 8.83405e-06 8.86651e-06 8.90325e-06 8.94478e-06 8.99168e-06 9.04456e-06 9.10408e-06 9.17095e-06 9.24595e-06 9.32996e-06 9.42394e-06 9.529e-06 9.64625e-06 9.77684e-06 9.92199e-06 1.0083e-05 1.02612e-05 1.04579e-05 1.06745e-05 1.0913e-05 1.11736e-05 1.14587e-05 1.17698e-05 1.21113e-05 1.24837e-05 1.28877e-05 1.33201e-05 1.37816e-05 1.4256e-05 1.47831e-05 1.53503e-05 1.60618e-05 1.60689e-05 1.60769e-05 1.60863e-05 1.60972e-05 1.611e-05 1.61248e-05 1.6142e-05 1.61619e-05 1.6185e-05 1.62118e-05 1.6243e-05 1.62792e-05 1.63212e-05 1.637e-05 1.64264e-05 1.64916e-05 1.65668e-05 1.66536e-05 1.67533e-05 1.68675e-05 1.69981e-05 1.71469e-05 1.73163e-05 1.75088e-05 1.77271e-05 1.79742e-05 1.82533e-05 1.85676e-05 1.89213e-05 1.93206e-05 1.97812e-05 2.03308e-05 2.10077e-05 2.18228e-05 2.28808e-05 2.38296e-05 2.49073e-05 1.93719e-05 1.93813e-05 1.93921e-05 1.94048e-05 1.94197e-05 1.9437e-05 1.94572e-05 1.94807e-05 1.95082e-05 1.95402e-05 1.95774e-05 1.96209e-05 1.96715e-05 1.97302e-05 1.97984e-05 1.98773e-05 1.99683e-05 2.00732e-05 2.01936e-05 2.03314e-05 2.04887e-05 2.06676e-05 2.0871e-05 2.11023e-05 2.13662e-05 2.16695e-05 2.20222e-05 2.2439e-05 2.29419e-05 2.35639e-05 2.43509e-05 2.53588e-05 2.66363e-05 2.82037e-05 3.00462e-05 3.21611e-05 3.43542e-05 3.6708e-05 2.11095e-05 2.1123e-05 2.11388e-05 2.11572e-05 2.11787e-05 2.12039e-05 2.12332e-05 2.12675e-05 2.13074e-05 2.1354e-05 2.14082e-05 2.14713e-05 2.15445e-05 2.16293e-05 2.17272e-05 2.18399e-05 2.19692e-05 2.21169e-05 2.22851e-05 2.2476e-05 2.26919e-05 2.29361e-05 2.32134e-05 2.35313e-05 2.39021e-05 2.43462e-05 2.48965e-05 2.56043e-05 2.65439e-05 2.78075e-05 2.94708e-05 3.15423e-05 3.39321e-05 3.65113e-05 3.91748e-05 4.18352e-05 4.44473e-05 2.20139e-05 2.20292e-05 2.20471e-05 2.2068e-05 2.20924e-05 2.21209e-05 2.21542e-05 2.21931e-05 2.22384e-05 2.22912e-05 2.23527e-05 2.24242e-05 2.2507e-05 2.26028e-05 2.27132e-05 2.28398e-05 2.29846e-05 2.31493e-05 2.33357e-05 2.35458e-05 2.37818e-05 2.4047e-05 2.43474e-05 2.46934e-05 2.5105e-05 2.56171e-05 2.62892e-05 2.72134e-05 2.85174e-05 3.03498e-05 3.27909e-05 3.57431e-05 3.89284e-05 4.2049e-05 4.48937e-05 4.74785e-05 4.99591e-05 2.2405e-05 2.24212e-05 2.24401e-05 2.24622e-05 2.2488e-05 2.25182e-05 2.25534e-05 2.25945e-05 2.26425e-05 2.26984e-05 2.27634e-05 2.28389e-05 2.29262e-05 2.30271e-05 2.3143e-05 2.32757e-05 2.34268e-05 2.35976e-05 2.37896e-05 2.40042e-05 2.42428e-05 2.45085e-05 2.48075e-05 2.51533e-05 2.55737e-05 2.61215e-05 2.68911e-05 2.80389e-05 2.97883e-05 3.23753e-05 3.58589e-05 3.98252e-05 4.37112e-05 4.71838e-05 5.00111e-05 5.2182e-05 5.404e-05 2.2405e-05 2.24212e-05 2.24401e-05 2.24622e-05 2.2488e-05 2.25181e-05 2.25534e-05 2.25944e-05 2.26424e-05 2.26982e-05 2.2763e-05 2.28383e-05 2.29253e-05 2.30255e-05 2.31405e-05 2.32717e-05 2.34203e-05 2.35874e-05 2.37736e-05 2.39793e-05 2.4205e-05 2.44525e-05 2.47277e-05 2.50464e-05 2.54446e-05 2.59959e-05 2.68389e-05 2.82072e-05 3.04419e-05 3.39516e-05 3.85586e-05 4.33875e-05 4.79996e-05 5.20193e-05 5.48741e-05 5.65003e-05 5.75829e-05 2.20141e-05 2.20294e-05 2.20472e-05 2.2068e-05 2.20924e-05 2.21208e-05 2.2154e-05 2.21928e-05 2.22379e-05 2.22905e-05 2.23515e-05 2.24222e-05 2.25039e-05 2.25978e-05 2.27053e-05 2.28274e-05 2.2965e-05 2.31186e-05 2.32879e-05 2.34722e-05 2.36704e-05 2.38824e-05 2.41123e-05 2.43757e-05 2.47136e-05 2.52179e-05 2.60768e-05 2.76312e-05 3.0444e-05 3.52477e-05 4.14621e-05 4.71245e-05 5.18278e-05 5.57308e-05 5.89543e-05 6.05156e-05 6.17823e-05 2.11098e-05 2.11232e-05 2.11389e-05 2.11572e-05 2.11786e-05 2.12036e-05 2.12328e-05 2.12668e-05 2.13065e-05 2.13525e-05 2.14059e-05 2.14677e-05 2.15389e-05 2.16206e-05 2.17139e-05 2.18193e-05 2.19375e-05 2.20681e-05 2.22101e-05 2.23616e-05 2.25198e-05 2.26822e-05 2.28502e-05 2.30371e-05 2.32862e-05 2.37059e-05 2.45435e-05 2.62674e-05 2.97504e-05 3.58097e-05 4.16512e-05 4.56709e-05 5.02264e-05 5.55215e-05 6.12013e-05 6.60305e-05 7.36281e-05 1.93816e-05 1.93924e-05 1.94049e-05 1.94195e-05 1.94366e-05 1.94565e-05 1.94798e-05 1.9507e-05 1.95386e-05 1.95751e-05 1.96173e-05 1.96659e-05 1.97219e-05 1.97858e-05 1.98585e-05 1.99402e-05 2.00311e-05 2.01304e-05 2.02365e-05 2.03466e-05 2.04565e-05 2.05613e-05 2.06578e-05 2.07515e-05 2.08744e-05 2.11275e-05 2.17405e-05 2.31963e-05 2.65695e-05 3.19905e-05 3.98678e-05 4.57653e-05 5.74905e-05 6.80722e-05 8.51859e-05 0.000116866 0.000177421 1.60692e-05 1.60771e-05 1.60863e-05 1.60969e-05 1.61092e-05 1.61237e-05 1.61405e-05 1.61601e-05 1.61827e-05 1.62085e-05 1.6238e-05 1.62717e-05 1.631e-05 1.63536e-05 1.64026e-05 1.64572e-05 1.6517e-05 1.65811e-05 1.66475e-05 1.67133e-05 1.67734e-05 1.68207e-05 1.68468e-05 1.68425e-05 1.68175e-05 1.68127e-05 1.69579e-05 1.76617e-05 2.02683e-05 3.16832e-05 5.65207e-05 8.16283e-05 0.000120082 0.000176954 0.000279358 0.000422833 0.000586539 8.70724e-06 8.72198e-06 8.73872e-06 8.75781e-06 8.77961e-06 8.80451e-06 8.83287e-06 8.86508e-06 8.90143e-06 8.94231e-06 8.98818e-06 9.03957e-06 9.09705e-06 9.16115e-06 9.23236e-06 9.31111e-06 9.39774e-06 9.49249e-06 9.59527e-06 9.70556e-06 9.82211e-06 9.94266e-06 1.00632e-05 1.01778e-05 1.02764e-05 1.0345e-05 1.03586e-05 1.03187e-05 1.36232e-05 4.75079e-05 9.30414e-05 0.000111768 0.000130589 0.000166399 0.000213636 0.000259883 0.000295662 8.68288e-06 8.69521e-06 8.70929e-06 8.72544e-06 8.74403e-06 8.76538e-06 8.78983e-06 8.81773e-06 8.84952e-06 8.88565e-06 8.92665e-06 8.97309e-06 9.02559e-06 9.08486e-06 9.1516e-06 9.22664e-06 9.31089e-06 9.40536e-06 9.51118e-06 9.6295e-06 9.76149e-06 9.90842e-06 1.00716e-05 1.02526e-05 1.04526e-05 1.06743e-05 1.09184e-05 1.11873e-05 1.14837e-05 1.1811e-05 1.21743e-05 1.25769e-05 1.3023e-05 1.35158e-05 1.40553e-05 1.46359e-05 1.53056e-05 1.59342e-05 1.60605e-05 1.60675e-05 1.60755e-05 1.60849e-05 1.60958e-05 1.61085e-05 1.61233e-05 1.61405e-05 1.61606e-05 1.61839e-05 1.6211e-05 1.62426e-05 1.62793e-05 1.6322e-05 1.63716e-05 1.64291e-05 1.64957e-05 1.65727e-05 1.66617e-05 1.67642e-05 1.6882e-05 1.70168e-05 1.7171e-05 1.73469e-05 1.75476e-05 1.77763e-05 1.80371e-05 1.83351e-05 1.86764e-05 1.90701e-05 1.95297e-05 2.0077e-05 2.07395e-05 2.15412e-05 2.2485e-05 2.361e-05 2.45189e-05 2.60778e-05 1.93718e-05 1.93812e-05 1.93922e-05 1.94049e-05 1.94199e-05 1.94373e-05 1.94577e-05 1.94815e-05 1.95093e-05 1.95418e-05 1.95796e-05 1.96238e-05 1.96753e-05 1.97352e-05 1.98049e-05 1.98856e-05 1.9979e-05 2.00867e-05 2.02108e-05 2.03532e-05 2.05162e-05 2.07023e-05 2.09147e-05 2.11575e-05 2.14362e-05 2.17591e-05 2.21386e-05 2.25934e-05 2.31514e-05 2.3853e-05 2.4751e-05 2.59003e-05 2.73365e-05 2.90554e-05 3.10156e-05 3.3194e-05 3.54328e-05 3.79913e-05 2.11099e-05 2.11235e-05 2.11394e-05 2.1158e-05 2.11798e-05 2.12052e-05 2.12349e-05 2.12697e-05 2.13102e-05 2.13576e-05 2.14128e-05 2.1477e-05 2.15518e-05 2.16384e-05 2.17388e-05 2.18545e-05 2.19876e-05 2.21402e-05 2.23145e-05 2.25129e-05 2.27385e-05 2.2995e-05 2.32881e-05 2.36268e-05 2.40257e-05 2.4509e-05 2.5116e-05 2.59062e-05 2.69619e-05 2.83752e-05 3.02083e-05 3.24425e-05 3.49577e-05 3.76061e-05 4.03019e-05 4.29911e-05 4.57113e-05 2.20145e-05 2.20299e-05 2.2048e-05 2.20691e-05 2.20938e-05 2.21226e-05 2.21564e-05 2.21958e-05 2.22418e-05 2.22955e-05 2.23581e-05 2.2431e-05 2.25156e-05 2.26136e-05 2.27268e-05 2.2857e-05 2.30063e-05 2.31767e-05 2.33704e-05 2.35896e-05 2.38373e-05 2.41177e-05 2.44379e-05 2.48106e-05 2.52589e-05 2.58233e-05 2.65711e-05 2.76043e-05 2.90574e-05 3.10665e-05 3.36856e-05 3.67842e-05 4.00575e-05 4.32068e-05 4.60697e-05 4.868e-05 5.11866e-05 2.24056e-05 2.24219e-05 2.2441e-05 2.24634e-05 2.24895e-05 2.252e-05 2.25557e-05 2.25975e-05 2.26462e-05 2.2703e-05 2.27692e-05 2.28462e-05 2.29354e-05 2.30387e-05 2.31577e-05 2.32943e-05 2.34503e-05 2.36275e-05 2.38277e-05 2.40526e-05 2.43047e-05 2.45879e-05 2.49101e-05 2.52876e-05 2.57526e-05 2.63647e-05 2.72279e-05 2.85067e-05 3.04186e-05 3.31744e-05 3.6814e-05 4.09201e-05 4.48747e-05 4.832e-05 5.10889e-05 5.32187e-05 5.50576e-05 2.24056e-05 2.24219e-05 2.2441e-05 2.24634e-05 2.24895e-05 2.252e-05 2.25557e-05 2.25973e-05 2.2646e-05 2.27028e-05 2.27688e-05 2.28456e-05 2.29345e-05 2.30372e-05 2.31554e-05 2.32906e-05 2.34443e-05 2.36181e-05 2.38128e-05 2.40295e-05 2.42695e-05 2.45358e-05 2.48363e-05 2.51898e-05 2.56375e-05 2.62603e-05 2.72057e-05 2.87114e-05 3.11031e-05 3.4739e-05 3.9523e-05 4.4554e-05 4.92453e-05 5.32157e-05 5.59555e-05 5.74899e-05 5.8617e-05 2.20146e-05 2.203e-05 2.2048e-05 2.2069e-05 2.20936e-05 2.21224e-05 2.21561e-05 2.21954e-05 2.22413e-05 2.22947e-05 2.23569e-05 2.24291e-05 2.25126e-05 2.26089e-05 2.27193e-05 2.28453e-05 2.2988e-05 2.3148e-05 2.33258e-05 2.3521e-05 2.37336e-05 2.39646e-05 2.42204e-05 2.45199e-05 2.49091e-05 2.5487e-05 2.64463e-05 2.81227e-05 3.10284e-05 3.58307e-05 4.23619e-05 4.85097e-05 5.34636e-05 5.74389e-05 6.06208e-05 6.19976e-05 6.36665e-05 2.11101e-05 2.11236e-05 2.11394e-05 2.11579e-05 2.11795e-05 2.12048e-05 2.12344e-05 2.12689e-05 2.13092e-05 2.1356e-05 2.14104e-05 2.14735e-05 2.15463e-05 2.16301e-05 2.17259e-05 2.18349e-05 2.19575e-05 2.20939e-05 2.22436e-05 2.24051e-05 2.25766e-05 2.27569e-05 2.29494e-05 2.31704e-05 2.34672e-05 2.39513e-05 2.48617e-05 2.665e-05 3.00733e-05 3.6182e-05 4.28022e-05 4.73102e-05 5.20845e-05 5.79897e-05 6.38642e-05 6.88717e-05 7.83212e-05 1.93814e-05 1.93922e-05 1.94048e-05 1.94195e-05 1.94367e-05 1.94569e-05 1.94805e-05 1.9508e-05 1.954e-05 1.95771e-05 1.96201e-05 1.96696e-05 1.97268e-05 1.97923e-05 1.9867e-05 1.99514e-05 2.00458e-05 2.01497e-05 2.0262e-05 2.03803e-05 2.05013e-05 2.06212e-05 2.07388e-05 2.08625e-05 2.10271e-05 2.13308e-05 2.19971e-05 2.34635e-05 2.66324e-05 3.20518e-05 3.98663e-05 4.63123e-05 5.6018e-05 6.7475e-05 8.71834e-05 0.000125147 0.000197042 1.60677e-05 1.60755e-05 1.60845e-05 1.6095e-05 1.61074e-05 1.61219e-05 1.61388e-05 1.61585e-05 1.61813e-05 1.62074e-05 1.62373e-05 1.62714e-05 1.63103e-05 1.63547e-05 1.64048e-05 1.6461e-05 1.65229e-05 1.65899e-05 1.66605e-05 1.6732e-05 1.68002e-05 1.68592e-05 1.69025e-05 1.69257e-05 1.69363e-05 1.69787e-05 1.71716e-05 1.78276e-05 1.9977e-05 2.76761e-05 5.00223e-05 7.48326e-05 0.000115721 0.000177386 0.000296854 0.000463015 0.000627319 8.6953e-06 8.70924e-06 8.72517e-06 8.74344e-06 8.76445e-06 8.7886e-06 8.81629e-06 8.84785e-06 8.8836e-06 8.92392e-06 8.9693e-06 9.0203e-06 9.07751e-06 9.1415e-06 9.21279e-06 9.29186e-06 9.37913e-06 9.47488e-06 9.57916e-06 9.69168e-06 9.8114e-06 9.93635e-06 1.00633e-05 1.01868e-05 1.02988e-05 1.03878e-05 1.04352e-05 1.04193e-05 1.14472e-05 3.31398e-05 8.72667e-05 0.000116488 0.000134486 0.000174186 0.00022711 0.000279379 0.000312559 8.67154e-06 8.68315e-06 8.69648e-06 8.71186e-06 8.72966e-06 8.75022e-06 8.77388e-06 8.80105e-06 8.83214e-06 8.86764e-06 8.90809e-06 8.95406e-06 9.00619e-06 9.06521e-06 9.13186e-06 9.20697e-06 9.29153e-06 9.38657e-06 9.49327e-06 9.61282e-06 9.74644e-06 9.89547e-06 1.00613e-05 1.02457e-05 1.04502e-05 1.06772e-05 1.09285e-05 1.12072e-05 1.15167e-05 1.18624e-05 1.22496e-05 1.2685e-05 1.31764e-05 1.37285e-05 1.43469e-05 1.50204e-05 1.57786e-05 1.65526e-05 1.60591e-05 1.60661e-05 1.60741e-05 1.60834e-05 1.60942e-05 1.61069e-05 1.61217e-05 1.6139e-05 1.61592e-05 1.61827e-05 1.62101e-05 1.62421e-05 1.62794e-05 1.63228e-05 1.63733e-05 1.6432e-05 1.65002e-05 1.65792e-05 1.66707e-05 1.67764e-05 1.68981e-05 1.70379e-05 1.71981e-05 1.73816e-05 1.75919e-05 1.78329e-05 1.811e-05 1.84303e-05 1.88036e-05 1.92442e-05 1.97729e-05 2.0416e-05 2.1198e-05 2.21341e-05 2.32037e-05 2.43974e-05 2.55412e-05 2.65661e-05 1.93717e-05 1.93811e-05 1.93922e-05 1.9405e-05 1.94201e-05 1.94377e-05 1.94583e-05 1.94823e-05 1.95105e-05 1.95434e-05 1.95819e-05 1.96269e-05 1.96793e-05 1.97405e-05 1.98117e-05 1.98944e-05 1.99903e-05 2.01013e-05 2.02295e-05 2.03771e-05 2.05466e-05 2.0741e-05 2.09639e-05 2.12202e-05 2.15166e-05 2.18631e-05 2.22749e-05 2.27751e-05 2.33985e-05 2.41931e-05 2.52168e-05 2.65208e-05 2.81243e-05 2.99991e-05 3.20798e-05 3.43241e-05 3.66355e-05 3.89884e-05 2.11102e-05 2.1124e-05 2.114e-05 2.11588e-05 2.11808e-05 2.12066e-05 2.12367e-05 2.12719e-05 2.13131e-05 2.13612e-05 2.14174e-05 2.1483e-05 2.15594e-05 2.16481e-05 2.1751e-05 2.18701e-05 2.20074e-05 2.21654e-05 2.23466e-05 2.25538e-05 2.27906e-05 2.30617e-05 2.33737e-05 2.37375e-05 2.41707e-05 2.47022e-05 2.53782e-05 2.62674e-05 2.7459e-05 2.90414e-05 3.10577e-05 3.34606e-05 3.61062e-05 3.88345e-05 4.15706e-05 4.42846e-05 4.69787e-05 2.2015e-05 2.20306e-05 2.20488e-05 2.20702e-05 2.20951e-05 2.21244e-05 2.21585e-05 2.21985e-05 2.22453e-05 2.22999e-05 2.23637e-05 2.24381e-05 2.25246e-05 2.2625e-05 2.27412e-05 2.28754e-05 2.30297e-05 2.32065e-05 2.34085e-05 2.36384e-05 2.39e-05 2.41985e-05 2.45428e-05 2.49481e-05 2.54418e-05 2.60712e-05 2.69128e-05 2.8079e-05 2.97065e-05 3.19127e-05 3.47161e-05 3.79567e-05 4.13153e-05 4.44965e-05 4.73738e-05 4.99871e-05 5.24412e-05 2.24062e-05 2.24227e-05 2.2442e-05 2.24646e-05 2.2491e-05 2.25219e-05 2.25581e-05 2.26004e-05 2.26499e-05 2.27077e-05 2.27752e-05 2.28538e-05 2.29451e-05 2.3051e-05 2.31733e-05 2.33142e-05 2.34758e-05 2.36602e-05 2.38698e-05 2.41069e-05 2.4375e-05 2.46794e-05 2.50303e-05 2.54474e-05 2.59686e-05 2.66623e-05 2.76436e-05 2.90835e-05 3.11889e-05 3.41329e-05 3.79222e-05 4.2146e-05 4.61536e-05 4.95601e-05 5.22608e-05 5.43404e-05 5.61328e-05 2.24062e-05 2.24227e-05 2.2442e-05 2.24645e-05 2.24909e-05 2.25218e-05 2.2558e-05 2.26003e-05 2.26498e-05 2.27075e-05 2.27749e-05 2.28532e-05 2.29443e-05 2.30496e-05 2.31712e-05 2.33109e-05 2.34705e-05 2.36518e-05 2.38564e-05 2.40862e-05 2.43435e-05 2.4633e-05 2.49654e-05 2.53636e-05 2.58754e-05 2.65917e-05 2.76707e-05 2.93524e-05 3.19388e-05 3.57125e-05 4.06338e-05 4.5831e-05 5.05701e-05 5.44576e-05 5.70805e-05 5.859e-05 5.98914e-05 2.20151e-05 2.20306e-05 2.20488e-05 2.20701e-05 2.2095e-05 2.21241e-05 2.21582e-05 2.21981e-05 2.22448e-05 2.22992e-05 2.23625e-05 2.24362e-05 2.25217e-05 2.26206e-05 2.27344e-05 2.28647e-05 2.30131e-05 2.31806e-05 2.33683e-05 2.35766e-05 2.38068e-05 2.40618e-05 2.43507e-05 2.46972e-05 2.51547e-05 2.58319e-05 2.693e-05 2.87763e-05 3.18279e-05 3.66288e-05 4.33499e-05 4.99336e-05 5.51756e-05 5.92281e-05 6.23176e-05 6.36828e-05 6.61743e-05 2.11104e-05 2.1124e-05 2.11399e-05 2.11586e-05 2.11804e-05 2.1206e-05 2.1236e-05 2.12711e-05 2.1312e-05 2.13596e-05 2.14151e-05 2.14795e-05 2.1554e-05 2.16401e-05 2.17389e-05 2.18517e-05 2.19795e-05 2.21227e-05 2.22814e-05 2.24551e-05 2.2643e-05 2.28459e-05 2.30701e-05 2.33363e-05 2.36985e-05 2.42753e-05 2.5305e-05 2.72135e-05 3.06473e-05 3.66132e-05 4.39862e-05 4.91667e-05 5.43796e-05 6.08796e-05 6.68513e-05 7.25089e-05 8.44276e-05 1.93813e-05 1.93921e-05 1.94047e-05 1.94195e-05 1.94368e-05 1.94572e-05 1.94811e-05 1.9509e-05 1.95415e-05 1.95792e-05 1.9623e-05 1.96735e-05 1.9732e-05 1.97992e-05 1.98762e-05 1.99636e-05 2.0062e-05 2.01713e-05 2.02909e-05 2.04191e-05 2.05538e-05 2.06929e-05 2.08377e-05 2.10008e-05 2.12227e-05 2.16033e-05 2.23652e-05 2.39157e-05 2.69555e-05 3.27378e-05 3.99136e-05 4.7444e-05 5.57751e-05 6.84957e-05 9.10498e-05 0.000135368 0.000218093 1.60661e-05 1.60738e-05 1.60827e-05 1.60932e-05 1.61055e-05 1.612e-05 1.61371e-05 1.6157e-05 1.61799e-05 1.62063e-05 1.62365e-05 1.62711e-05 1.63107e-05 1.6356e-05 1.64074e-05 1.64653e-05 1.65296e-05 1.66e-05 1.66754e-05 1.67537e-05 1.68316e-05 1.69046e-05 1.69688e-05 1.70234e-05 1.70808e-05 1.71877e-05 1.74613e-05 1.81499e-05 2.00077e-05 2.52557e-05 4.38327e-05 7.14529e-05 0.000111163 0.000181002 0.000317797 0.000504038 0.000662056 8.68319e-06 8.6963e-06 8.71139e-06 8.72882e-06 8.74902e-06 8.77241e-06 8.79938e-06 8.83027e-06 8.86538e-06 8.90513e-06 8.95001e-06 9.00062e-06 9.05757e-06 9.12146e-06 9.19289e-06 9.27237e-06 9.3604e-06 9.45734e-06 9.56336e-06 9.6784e-06 9.80176e-06 9.93177e-06 1.00661e-05 1.02001e-05 1.03278e-05 1.04405e-05 1.05265e-05 1.05629e-05 1.07823e-05 2.28621e-05 7.73975e-05 0.000120113 0.000140041 0.000183163 0.000241766 0.0002998 0.000328478 8.66001e-06 8.67087e-06 8.68342e-06 8.69801e-06 8.715e-06 8.73474e-06 8.75761e-06 8.78401e-06 8.81438e-06 8.84924e-06 8.88912e-06 8.93461e-06 8.98638e-06 9.04516e-06 9.11172e-06 9.18696e-06 9.27188e-06 9.36759e-06 9.4753e-06 9.59625e-06 9.73175e-06 9.88319e-06 1.00522e-05 1.02404e-05 1.04502e-05 1.06836e-05 1.09435e-05 1.12335e-05 1.15582e-05 1.19238e-05 1.23376e-05 1.28093e-05 1.33485e-05 1.3963e-05 1.46524e-05 1.54173e-05 1.62389e-05 1.71182e-05 1.60577e-05 1.60646e-05 1.60726e-05 1.60818e-05 1.60926e-05 1.61053e-05 1.61201e-05 1.61375e-05 1.61578e-05 1.61815e-05 1.62093e-05 1.62417e-05 1.62795e-05 1.63237e-05 1.63752e-05 1.64352e-05 1.65051e-05 1.65863e-05 1.66806e-05 1.67898e-05 1.69159e-05 1.70613e-05 1.72285e-05 1.74208e-05 1.76422e-05 1.78977e-05 1.8194e-05 1.85408e-05 1.89518e-05 1.94471e-05 2.00537e-05 2.08009e-05 2.17088e-05 2.27787e-05 2.39771e-05 2.52531e-05 2.64107e-05 2.76555e-05 1.93715e-05 1.93811e-05 1.93921e-05 1.94051e-05 1.94202e-05 1.9438e-05 1.94588e-05 1.94832e-05 1.95117e-05 1.95451e-05 1.95842e-05 1.963e-05 1.96835e-05 1.9746e-05 1.98188e-05 1.99037e-05 2.00024e-05 2.0117e-05 2.02497e-05 2.04031e-05 2.058e-05 2.07839e-05 2.1019e-05 2.12911e-05 2.16082e-05 2.19825e-05 2.24326e-05 2.29867e-05 2.36865e-05 2.45877e-05 2.57512e-05 2.72201e-05 2.89942e-05 3.10218e-05 3.32184e-05 3.55213e-05 3.78285e-05 4.01735e-05 2.11106e-05 2.11245e-05 2.11407e-05 2.11597e-05 2.11819e-05 2.12079e-05 2.12385e-05 2.12742e-05 2.1316e-05 2.1365e-05 2.14223e-05 2.14892e-05 2.15673e-05 2.16582e-05 2.1764e-05 2.18867e-05 2.20287e-05 2.21927e-05 2.23816e-05 2.25989e-05 2.28486e-05 2.31366e-05 2.34709e-05 2.38646e-05 2.43389e-05 2.49284e-05 2.56871e-05 2.66931e-05 2.804e-05 2.98078e-05 3.2015e-05 3.45856e-05 3.73579e-05 4.01647e-05 4.29327e-05 4.5631e-05 4.82757e-05 2.20155e-05 2.20313e-05 2.20497e-05 2.20713e-05 2.20965e-05 2.21261e-05 2.21608e-05 2.22014e-05 2.22489e-05 2.23045e-05 2.23695e-05 2.24454e-05 2.25339e-05 2.26369e-05 2.27565e-05 2.28949e-05 2.30548e-05 2.32389e-05 2.34503e-05 2.36924e-05 2.39701e-05 2.429e-05 2.46629e-05 2.51077e-05 2.56567e-05 2.63654e-05 2.73209e-05 2.86447e-05 3.04704e-05 3.28886e-05 3.58766e-05 3.92505e-05 4.26871e-05 4.58957e-05 4.87698e-05 5.13406e-05 5.3678e-05 2.24068e-05 2.24234e-05 2.24429e-05 2.24658e-05 2.24925e-05 2.25238e-05 2.25605e-05 2.26035e-05 2.26538e-05 2.27126e-05 2.27814e-05 2.28617e-05 2.29552e-05 2.30639e-05 2.31899e-05 2.33355e-05 2.35033e-05 2.36959e-05 2.39161e-05 2.41673e-05 2.44542e-05 2.47839e-05 2.51694e-05 2.5635e-05 2.62257e-05 2.70205e-05 2.81466e-05 2.97789e-05 3.21067e-05 3.5254e-05 3.91837e-05 4.35007e-05 4.75402e-05 5.08919e-05 5.35032e-05 5.55076e-05 5.72364e-05 2.24068e-05 2.24234e-05 2.24429e-05 2.24657e-05 2.24924e-05 2.25237e-05 2.25604e-05 2.26034e-05 2.26536e-05 2.27124e-05 2.27811e-05 2.28612e-05 2.29544e-05 2.30627e-05 2.31881e-05 2.33327e-05 2.34988e-05 2.36887e-05 2.39047e-05 2.41498e-05 2.44276e-05 2.47453e-05 2.51168e-05 2.55708e-05 2.61636e-05 2.69985e-05 2.82453e-05 3.01419e-05 3.29571e-05 3.68851e-05 4.19081e-05 4.72261e-05 5.19804e-05 5.57609e-05 5.82856e-05 5.98482e-05 6.15316e-05 2.20156e-05 2.20313e-05 2.20496e-05 2.20711e-05 2.20963e-05 2.21258e-05 2.21604e-05 2.22009e-05 2.22483e-05 2.23037e-05 2.23684e-05 2.24437e-05 2.25313e-05 2.2633e-05 2.27504e-05 2.28856e-05 2.30404e-05 2.32165e-05 2.34156e-05 2.36395e-05 2.38908e-05 2.41751e-05 2.45053e-05 2.49115e-05 2.54569e-05 2.62634e-05 2.75418e-05 2.96069e-05 3.28564e-05 3.76889e-05 4.44667e-05 5.14311e-05 5.69844e-05 6.11249e-05 6.40875e-05 6.5829e-05 6.97773e-05 2.11107e-05 2.11244e-05 2.11405e-05 2.11593e-05 2.11814e-05 2.12073e-05 2.12377e-05 2.12733e-05 2.13149e-05 2.13634e-05 2.14199e-05 2.14857e-05 2.15622e-05 2.16507e-05 2.17528e-05 2.18699e-05 2.20034e-05 2.21545e-05 2.23237e-05 2.25119e-05 2.27197e-05 2.29506e-05 2.32147e-05 2.35391e-05 2.39873e-05 2.46891e-05 2.58862e-05 2.79746e-05 3.14991e-05 3.72515e-05 4.52483e-05 5.12823e-05 5.72286e-05 6.43167e-05 7.03278e-05 7.71414e-05 9.26978e-05 1.93811e-05 1.93919e-05 1.94046e-05 1.94195e-05 1.9437e-05 1.94576e-05 1.94818e-05 1.95101e-05 1.95431e-05 1.95814e-05 1.9626e-05 1.96776e-05 1.97375e-05 1.98066e-05 1.98861e-05 1.99769e-05 2.00798e-05 2.01953e-05 2.03234e-05 2.04635e-05 2.06147e-05 2.07773e-05 2.09563e-05 2.11699e-05 2.14671e-05 2.19578e-05 2.28634e-05 2.45731e-05 2.75936e-05 3.3222e-05 4.00392e-05 4.90552e-05 5.81189e-05 7.21492e-05 9.69483e-05 0.000147176 0.000240354 1.60646e-05 1.60721e-05 1.60809e-05 1.60913e-05 1.61036e-05 1.61181e-05 1.61353e-05 1.61554e-05 1.61785e-05 1.62052e-05 1.62357e-05 1.62709e-05 1.63112e-05 1.63575e-05 1.64103e-05 1.64701e-05 1.65371e-05 1.66113e-05 1.66921e-05 1.67783e-05 1.68675e-05 1.69572e-05 1.70463e-05 1.71389e-05 1.72547e-05 1.74452e-05 1.78341e-05 1.86432e-05 2.03666e-05 2.45156e-05 3.94959e-05 7.02249e-05 0.000108648 0.000186914 0.00034121 0.000543267 0.000690307 8.67089e-06 8.68316e-06 8.69739e-06 8.71396e-06 8.73333e-06 8.75592e-06 8.78215e-06 8.81233e-06 8.84678e-06 8.88593e-06 8.9303e-06 8.98051e-06 9.03721e-06 9.10105e-06 9.17265e-06 9.25262e-06 9.34152e-06 9.43984e-06 9.54792e-06 9.66582e-06 9.79323e-06 9.92903e-06 1.00717e-05 1.02179e-05 1.03637e-05 1.05038e-05 1.06336e-05 1.07342e-05 1.08492e-05 1.66425e-05 6.61476e-05 0.000123027 0.000147372 0.000193336 0.000259375 0.000318182 0.000342624 8.64832e-06 8.65839e-06 8.67014e-06 8.68391e-06 8.70006e-06 8.71897e-06 8.74102e-06 8.76663e-06 8.79626e-06 8.83046e-06 8.86977e-06 8.91477e-06 8.96616e-06 9.02471e-06 9.09121e-06 9.1666e-06 9.25196e-06 9.34842e-06 9.45727e-06 9.5798e-06 9.7174e-06 9.87159e-06 1.00441e-05 1.02369e-05 1.04526e-05 1.06936e-05 1.09633e-05 1.12662e-05 1.16078e-05 1.19955e-05 1.24392e-05 1.29505e-05 1.35412e-05 1.42184e-05 1.49824e-05 1.58188e-05 1.67192e-05 1.7632e-05 1.60563e-05 1.60631e-05 1.6071e-05 1.60802e-05 1.60909e-05 1.61036e-05 1.61184e-05 1.61359e-05 1.61563e-05 1.61803e-05 1.62084e-05 1.62413e-05 1.62797e-05 1.63247e-05 1.63773e-05 1.64387e-05 1.65104e-05 1.6594e-05 1.66914e-05 1.68045e-05 1.69357e-05 1.70873e-05 1.72625e-05 1.74649e-05 1.76992e-05 1.79717e-05 1.82907e-05 1.86687e-05 1.9124e-05 1.96821e-05 2.03755e-05 2.12343e-05 2.22729e-05 2.34777e-05 2.4796e-05 2.6154e-05 2.73769e-05 2.84245e-05 1.93714e-05 1.93809e-05 1.93921e-05 1.94051e-05 1.94204e-05 1.94383e-05 1.94593e-05 1.9484e-05 1.95129e-05 1.95468e-05 1.95866e-05 1.96332e-05 1.96878e-05 1.97517e-05 1.98263e-05 1.99135e-05 2.00152e-05 2.01337e-05 2.02714e-05 2.04313e-05 2.06165e-05 2.08311e-05 2.10801e-05 2.13704e-05 2.17116e-05 2.21185e-05 2.26134e-05 2.32304e-05 2.40186e-05 2.50402e-05 2.63559e-05 2.79968e-05 2.99407e-05 3.21149e-05 3.44174e-05 3.67649e-05 3.90558e-05 4.12546e-05 2.1111e-05 2.11249e-05 2.11413e-05 2.11605e-05 2.11829e-05 2.12093e-05 2.12402e-05 2.12765e-05 2.1319e-05 2.13689e-05 2.14273e-05 2.14956e-05 2.15755e-05 2.16688e-05 2.17776e-05 2.19043e-05 2.20514e-05 2.22221e-05 2.24197e-05 2.26482e-05 2.29127e-05 2.322e-05 2.35803e-05 2.40092e-05 2.45322e-05 2.51902e-05 2.60465e-05 2.71874e-05 2.87077e-05 3.06732e-05 3.30736e-05 3.58053e-05 3.86954e-05 4.15708e-05 4.43502e-05 4.6997e-05 4.95187e-05 2.20161e-05 2.2032e-05 2.20506e-05 2.20724e-05 2.20979e-05 2.21279e-05 2.2163e-05 2.22042e-05 2.22525e-05 2.23092e-05 2.23755e-05 2.2453e-05 2.25437e-05 2.26494e-05 2.27726e-05 2.29157e-05 2.30817e-05 2.32739e-05 2.34957e-05 2.37518e-05 2.4048e-05 2.43927e-05 2.47994e-05 2.52909e-05 2.59063e-05 2.67101e-05 2.78011e-05 2.93069e-05 3.1351e-05 3.39898e-05 3.71577e-05 4.06529e-05 4.41559e-05 4.73793e-05 5.02185e-05 5.26934e-05 5.4851e-05 2.24074e-05 2.24242e-05 2.24439e-05 2.2467e-05 2.2494e-05 2.25257e-05 2.2563e-05 2.26066e-05 2.26577e-05 2.27177e-05 2.27878e-05 2.28699e-05 2.29657e-05 2.30774e-05 2.32074e-05 2.33582e-05 2.35329e-05 2.37345e-05 2.39667e-05 2.42341e-05 2.45428e-05 2.49022e-05 2.5329e-05 2.58531e-05 2.65284e-05 2.74462e-05 2.87456e-05 3.06011e-05 3.31746e-05 3.6534e-05 4.05932e-05 4.49773e-05 4.90212e-05 5.22951e-05 5.47837e-05 5.66867e-05 5.83757e-05 2.24074e-05 2.24242e-05 2.24439e-05 2.24669e-05 2.24939e-05 2.25257e-05 2.25629e-05 2.26065e-05 2.26576e-05 2.27175e-05 2.27875e-05 2.28695e-05 2.29651e-05 2.30765e-05 2.32059e-05 2.3356e-05 2.35293e-05 2.37288e-05 2.39579e-05 2.42205e-05 2.45225e-05 2.48737e-05 2.52924e-05 2.58145e-05 2.65075e-05 2.74888e-05 2.89393e-05 3.1088e-05 3.41608e-05 3.82649e-05 4.3359e-05 4.87438e-05 5.34786e-05 5.71487e-05 5.96161e-05 6.13262e-05 6.37325e-05 2.20161e-05 2.20319e-05 2.20505e-05 2.20722e-05 2.20976e-05 2.21275e-05 2.21626e-05 2.22038e-05 2.2252e-05 2.23084e-05 2.23744e-05 2.24515e-05 2.25414e-05 2.2646e-05 2.27675e-05 2.2908e-05 2.30699e-05 2.32557e-05 2.3468e-05 2.371e-05 2.39864e-05 2.43059e-05 2.46869e-05 2.51674e-05 2.58235e-05 2.67927e-05 2.82949e-05 3.06253e-05 3.41181e-05 3.90241e-05 4.57561e-05 5.30355e-05 5.89098e-05 6.31534e-05 6.60484e-05 6.87734e-05 7.52552e-05 2.1111e-05 2.11248e-05 2.1141e-05 2.116e-05 2.11823e-05 2.12086e-05 2.12394e-05 2.12755e-05 2.13178e-05 2.13672e-05 2.14249e-05 2.14923e-05 2.15707e-05 2.16619e-05 2.17676e-05 2.18895e-05 2.20295e-05 2.21893e-05 2.23708e-05 2.25759e-05 2.28075e-05 2.30723e-05 2.33858e-05 2.37835e-05 2.43417e-05 2.52051e-05 2.66201e-05 2.89464e-05 3.26364e-05 3.82396e-05 4.6582e-05 5.37805e-05 6.06624e-05 6.8322e-05 7.44948e-05 8.31847e-05 0.000104125 1.93809e-05 1.93918e-05 1.94045e-05 1.94195e-05 1.94371e-05 1.9458e-05 1.94825e-05 1.95112e-05 1.95447e-05 1.95837e-05 1.96291e-05 1.96819e-05 1.97433e-05 1.98144e-05 1.98967e-05 1.99912e-05 2.00992e-05 2.02217e-05 2.03596e-05 2.05135e-05 2.06845e-05 2.08756e-05 2.10967e-05 2.13736e-05 2.17675e-05 2.2403e-05 2.35069e-05 2.54362e-05 2.85682e-05 3.3937e-05 4.09805e-05 5.16813e-05 6.16224e-05 7.74594e-05 0.000104508 0.000160339 0.000263376 1.6063e-05 1.60705e-05 1.60791e-05 1.60894e-05 1.61017e-05 1.61163e-05 1.61335e-05 1.61537e-05 1.61771e-05 1.6204e-05 1.6235e-05 1.62706e-05 1.63118e-05 1.63592e-05 1.64135e-05 1.64754e-05 1.65454e-05 1.66238e-05 1.67106e-05 1.68056e-05 1.69079e-05 1.70172e-05 1.71356e-05 1.72735e-05 1.74603e-05 1.77604e-05 1.8302e-05 1.93152e-05 2.09934e-05 2.4675e-05 3.74547e-05 7.02964e-05 0.000109167 0.000194219 0.000365628 0.000578504 0.000711165 8.65842e-06 8.66983e-06 8.68318e-06 8.69888e-06 8.71739e-06 8.73917e-06 8.76462e-06 8.79405e-06 8.8278e-06 8.86633e-06 8.91017e-06 8.95999e-06 9.01646e-06 9.08026e-06 9.15208e-06 9.23259e-06 9.32246e-06 9.42234e-06 9.53277e-06 9.65406e-06 9.78609e-06 9.9285e-06 1.00805e-05 1.02406e-05 1.0407e-05 1.05788e-05 1.07571e-05 1.09284e-05 1.11686e-05 1.39867e-05 5.57548e-05 0.00012527 0.00015629 0.000204579 0.000278378 0.000334329 0.000354353 8.63648e-06 8.64574e-06 8.65665e-06 8.66956e-06 8.68486e-06 8.70291e-06 8.72412e-06 8.74893e-06 8.77781e-06 8.81133e-06 8.85003e-06 8.89453e-06 8.94555e-06 9.00388e-06 9.07033e-06 9.14592e-06 9.23178e-06 9.3291e-06 9.4392e-06 9.56347e-06 9.7034e-06 9.86066e-06 1.00372e-05 1.02352e-05 1.04574e-05 1.0707e-05 1.09878e-05 1.13051e-05 1.16656e-05 1.20783e-05 1.25551e-05 1.31098e-05 1.3755e-05 1.44978e-05 1.53327e-05 1.62442e-05 1.71917e-05 1.81615e-05 1.60548e-05 1.60616e-05 1.60694e-05 1.60785e-05 1.60892e-05 1.61019e-05 1.61167e-05 1.61343e-05 1.61549e-05 1.61791e-05 1.62075e-05 1.62409e-05 1.628e-05 1.63258e-05 1.63795e-05 1.64425e-05 1.65162e-05 1.66024e-05 1.67032e-05 1.68207e-05 1.69573e-05 1.71161e-05 1.73003e-05 1.75143e-05 1.77636e-05 1.80558e-05 1.84013e-05 1.8816e-05 1.93226e-05 1.99523e-05 2.07413e-05 2.17191e-05 2.28915e-05 2.42305e-05 2.5668e-05 2.70922e-05 2.837e-05 2.9378e-05 1.93712e-05 1.93808e-05 1.9392e-05 1.94051e-05 1.94205e-05 1.94386e-05 1.94598e-05 1.94848e-05 1.95141e-05 1.95486e-05 1.9589e-05 1.96365e-05 1.96922e-05 1.97576e-05 1.98342e-05 1.99239e-05 2.00288e-05 2.01515e-05 2.02947e-05 2.04617e-05 2.06562e-05 2.08828e-05 2.11475e-05 2.14586e-05 2.18275e-05 2.2272e-05 2.28188e-05 2.35084e-05 2.43975e-05 2.55529e-05 2.70314e-05 2.8848e-05 3.09583e-05 3.32711e-05 3.56705e-05 3.80482e-05 4.03044e-05 4.23914e-05 2.11113e-05 2.11254e-05 2.11419e-05 2.11613e-05 2.1184e-05 2.12107e-05 2.12421e-05 2.12789e-05 2.13221e-05 2.13728e-05 2.14324e-05 2.15022e-05 2.15841e-05 2.16799e-05 2.1792e-05 2.19229e-05 2.20756e-05 2.22536e-05 2.24607e-05 2.27018e-05 2.29829e-05 2.33124e-05 2.37025e-05 2.41722e-05 2.47519e-05 2.54902e-05 2.64596e-05 2.77534e-05 2.9463e-05 3.16339e-05 3.42243e-05 3.71074e-05 4.01029e-05 4.30314e-05 4.57971e-05 4.8359e-05 5.07393e-05 2.20166e-05 2.20326e-05 2.20514e-05 2.20735e-05 2.20993e-05 2.21297e-05 2.21653e-05 2.22072e-05 2.22563e-05 2.23139e-05 2.23816e-05 2.24609e-05 2.25538e-05 2.26625e-05 2.27895e-05 2.29377e-05 2.31104e-05 2.33114e-05 2.3545e-05 2.38168e-05 2.41339e-05 2.45072e-05 2.49531e-05 2.54996e-05 2.61933e-05 2.71096e-05 2.83581e-05 3.0069e-05 3.23466e-05 3.52079e-05 3.85471e-05 4.21487e-05 4.57025e-05 4.8918e-05 5.16796e-05 5.40096e-05 5.59638e-05 2.2408e-05 2.2425e-05 2.24449e-05 2.24682e-05 2.24956e-05 2.25277e-05 2.25654e-05 2.26098e-05 2.26618e-05 2.27228e-05 2.27944e-05 2.28784e-05 2.29766e-05 2.30916e-05 2.32258e-05 2.33823e-05 2.35644e-05 2.37761e-05 2.40219e-05 2.43075e-05 2.46412e-05 2.50352e-05 2.55106e-05 2.61044e-05 2.68812e-05 2.7946e-05 2.9448e-05 3.1554e-05 3.43891e-05 3.79632e-05 4.21404e-05 4.65615e-05 5.05756e-05 5.37376e-05 5.60647e-05 5.78678e-05 5.96395e-05 2.2408e-05 2.2425e-05 2.24448e-05 2.24681e-05 2.24955e-05 2.25276e-05 2.25653e-05 2.26096e-05 2.26616e-05 2.27227e-05 2.27942e-05 2.2878e-05 2.29762e-05 2.30909e-05 2.32248e-05 2.33807e-05 2.3562e-05 2.37723e-05 2.4016e-05 2.42988e-05 2.46287e-05 2.50191e-05 2.54941e-05 2.60984e-05 2.69129e-05 2.80707e-05 2.97607e-05 3.21947e-05 3.55464e-05 3.98435e-05 4.49861e-05 5.03809e-05 5.50661e-05 5.86535e-05 6.11125e-05 6.31484e-05 6.67838e-05 2.20167e-05 2.20326e-05 2.20513e-05 2.20732e-05 2.2099e-05 2.21293e-05 2.21649e-05 2.22067e-05 2.22557e-05 2.23132e-05 2.23806e-05 2.24595e-05 2.25519e-05 2.26597e-05 2.27855e-05 2.29319e-05 2.31017e-05 2.32984e-05 2.35256e-05 2.37884e-05 2.40942e-05 2.44558e-05 2.48981e-05 2.54699e-05 2.62627e-05 2.74308e-05 2.92001e-05 3.18374e-05 3.56089e-05 4.0634e-05 4.72803e-05 5.47856e-05 6.10006e-05 6.53586e-05 6.84842e-05 7.31354e-05 8.38501e-05 2.11113e-05 2.11252e-05 2.11416e-05 2.11607e-05 2.11833e-05 2.12099e-05 2.12411e-05 2.12778e-05 2.13208e-05 2.13712e-05 2.14301e-05 2.14991e-05 2.15797e-05 2.16737e-05 2.17832e-05 2.19104e-05 2.20576e-05 2.22274e-05 2.24228e-05 2.26475e-05 2.29071e-05 2.32126e-05 2.35862e-05 2.40748e-05 2.47709e-05 2.58364e-05 2.75201e-05 3.01388e-05 3.406e-05 3.96381e-05 4.81102e-05 5.67447e-05 6.47859e-05 7.30079e-05 7.97818e-05 9.14349e-05 0.000119859 1.93808e-05 1.93917e-05 1.94044e-05 1.94195e-05 1.94373e-05 1.94584e-05 1.94832e-05 1.95123e-05 1.95463e-05 1.9586e-05 1.96323e-05 1.96863e-05 1.97493e-05 1.98227e-05 1.99079e-05 2.00065e-05 2.01202e-05 2.02506e-05 2.03998e-05 2.05697e-05 2.07638e-05 2.09891e-05 2.12615e-05 2.16171e-05 2.21327e-05 2.29517e-05 2.43074e-05 2.65163e-05 2.98815e-05 3.51312e-05 4.27819e-05 5.51369e-05 6.67457e-05 8.42427e-05 0.000113597 0.000174994 0.000286741 1.60614e-05 1.60688e-05 1.60773e-05 1.60876e-05 1.60998e-05 1.61144e-05 1.61317e-05 1.6152e-05 1.61756e-05 1.62028e-05 1.62342e-05 1.62705e-05 1.63125e-05 1.63611e-05 1.6417e-05 1.64812e-05 1.65544e-05 1.66375e-05 1.67311e-05 1.68359e-05 1.69528e-05 1.70842e-05 1.72373e-05 1.7429e-05 1.77012e-05 1.81361e-05 1.8875e-05 2.01441e-05 2.18931e-05 2.55553e-05 3.693e-05 7.11705e-05 0.000112243 0.000202297 0.000389345 0.000607884 0.000723918 8.64578e-06 8.65631e-06 8.66877e-06 8.68358e-06 8.70121e-06 8.72214e-06 8.74677e-06 8.77542e-06 8.80844e-06 8.84633e-06 8.88964e-06 8.93906e-06 8.99531e-06 9.05909e-06 9.13116e-06 9.21225e-06 9.30319e-06 9.40478e-06 9.51782e-06 9.64295e-06 9.78048e-06 9.93053e-06 1.00929e-05 1.02686e-05 1.04585e-05 1.0667e-05 1.08965e-05 1.11627e-05 1.16035e-05 1.33936e-05 4.85795e-05 0.000126091 0.000166106 0.000216742 0.000297214 0.00034795 0.000363676 8.62451e-06 8.63293e-06 8.64297e-06 8.655e-06 8.66942e-06 8.6866e-06 8.70695e-06 8.73092e-06 8.75903e-06 8.79183e-06 8.82991e-06 8.87391e-06 8.92455e-06 8.98265e-06 9.04909e-06 9.12494e-06 9.21136e-06 9.30962e-06 9.42108e-06 9.54726e-06 9.68974e-06 9.85037e-06 1.00313e-05 1.02351e-05 1.04647e-05 1.07238e-05 1.1017e-05 1.13503e-05 1.17319e-05 1.21724e-05 1.26859e-05 1.32878e-05 1.3991e-05 1.48006e-05 1.57086e-05 1.66851e-05 1.76928e-05 1.86717e-05 1.60533e-05 1.606e-05 1.60677e-05 1.60768e-05 1.60875e-05 1.61001e-05 1.6115e-05 1.61326e-05 1.61534e-05 1.61778e-05 1.62066e-05 1.62405e-05 1.62803e-05 1.6327e-05 1.6382e-05 1.64465e-05 1.65224e-05 1.66115e-05 1.67159e-05 1.68382e-05 1.6981e-05 1.71477e-05 1.73421e-05 1.75693e-05 1.78359e-05 1.81509e-05 1.85273e-05 1.89844e-05 1.95498e-05 2.02599e-05 2.11535e-05 2.22571e-05 2.35666e-05 2.50393e-05 2.65898e-05 2.80908e-05 2.93911e-05 3.0432e-05 1.9371e-05 1.93807e-05 1.93919e-05 1.94051e-05 1.94206e-05 1.94389e-05 1.94604e-05 1.94856e-05 1.95154e-05 1.95503e-05 1.95915e-05 1.96399e-05 1.96968e-05 1.97638e-05 1.98424e-05 1.99347e-05 2.00432e-05 2.01704e-05 2.03196e-05 2.04943e-05 2.0699e-05 2.0939e-05 2.12214e-05 2.15559e-05 2.19564e-05 2.24438e-05 2.30502e-05 2.38228e-05 2.48252e-05 2.61268e-05 2.77763e-05 2.97698e-05 3.20418e-05 3.44856e-05 3.69722e-05 3.93755e-05 4.15954e-05 4.36141e-05 2.11116e-05 2.11258e-05 2.11425e-05 2.11621e-05 2.11851e-05 2.12121e-05 2.12439e-05 2.12813e-05 2.13252e-05 2.13769e-05 2.14376e-05 2.1509e-05 2.15929e-05 2.16914e-05 2.1807e-05 2.19425e-05 2.21012e-05 2.22871e-05 2.25048e-05 2.27598e-05 2.30595e-05 2.34139e-05 2.38379e-05 2.43543e-05 2.49996e-05 2.58305e-05 2.69289e-05 2.83927e-05 3.03041e-05 3.26831e-05 3.54567e-05 3.8479e-05 4.15654e-05 4.4528e-05 4.72571e-05 4.97213e-05 5.19829e-05 2.20172e-05 2.20333e-05 2.20523e-05 2.20746e-05 2.21007e-05 2.21315e-05 2.21676e-05 2.22101e-05 2.22601e-05 2.23188e-05 2.23879e-05 2.2469e-05 2.25643e-05 2.26761e-05 2.28073e-05 2.29609e-05 2.31409e-05 2.33515e-05 2.3598e-05 2.38872e-05 2.4228e-05 2.46337e-05 2.51248e-05 2.5735e-05 2.65202e-05 2.75674e-05 2.89957e-05 3.09314e-05 3.34516e-05 3.65315e-05 4.00293e-05 4.37201e-05 4.73028e-05 5.04764e-05 5.31154e-05 5.52751e-05 5.70556e-05 2.24086e-05 2.24257e-05 2.24458e-05 2.24694e-05 2.24971e-05 2.25297e-05 2.2568e-05 2.2613e-05 2.26659e-05 2.27281e-05 2.28012e-05 2.28871e-05 2.2988e-05 2.31064e-05 2.32451e-05 2.34077e-05 2.3598e-05 2.38207e-05 2.40814e-05 2.43877e-05 2.47497e-05 2.51835e-05 2.57155e-05 2.63914e-05 2.72883e-05 2.85254e-05 3.02584e-05 3.26373e-05 3.5742e-05 3.95261e-05 4.38064e-05 4.82308e-05 5.21737e-05 5.51764e-05 5.73171e-05 5.90925e-05 6.12207e-05 2.24086e-05 2.24257e-05 2.24458e-05 2.24693e-05 2.2497e-05 2.25296e-05 2.25679e-05 2.26129e-05 2.26658e-05 2.2728e-05 2.2801e-05 2.28869e-05 2.29877e-05 2.3106e-05 2.32446e-05 2.3407e-05 2.35969e-05 2.38191e-05 2.40792e-05 2.43848e-05 2.47467e-05 2.51829e-05 2.57243e-05 2.64268e-05 2.73867e-05 2.87529e-05 3.07168e-05 3.34625e-05 3.7104e-05 4.15998e-05 4.67758e-05 5.21238e-05 5.67498e-05 6.03066e-05 6.28139e-05 6.5603e-05 7.1095e-05 2.20172e-05 2.20333e-05 2.20521e-05 2.20743e-05 2.21004e-05 2.21311e-05 2.21672e-05 2.22097e-05 2.22595e-05 2.23182e-05 2.2387e-05 2.24679e-05 2.25628e-05 2.26741e-05 2.28045e-05 2.29572e-05 2.31358e-05 2.33444e-05 2.35885e-05 2.38751e-05 2.42149e-05 2.4626e-05 2.51417e-05 2.58238e-05 2.67819e-05 2.8187e-05 3.02635e-05 3.32415e-05 3.73182e-05 4.25065e-05 4.90826e-05 5.67523e-05 6.33281e-05 6.78475e-05 7.19514e-05 7.99284e-05 9.73951e-05 2.11116e-05 2.11256e-05 2.11421e-05 2.11615e-05 2.11843e-05 2.12112e-05 2.12429e-05 2.12802e-05 2.13239e-05 2.13752e-05 2.14355e-05 2.15061e-05 2.1589e-05 2.16861e-05 2.17998e-05 2.19326e-05 2.20877e-05 2.22687e-05 2.24798e-05 2.2727e-05 2.30193e-05 2.33729e-05 2.38192e-05 2.44189e-05 2.52842e-05 2.65948e-05 2.85963e-05 3.15573e-05 3.57663e-05 4.14714e-05 5.00812e-05 6.03283e-05 6.96924e-05 7.85565e-05 8.69683e-05 0.000103029 0.000140878 1.93806e-05 1.93915e-05 1.94044e-05 1.94195e-05 1.94375e-05 1.94588e-05 1.94839e-05 1.95134e-05 1.95479e-05 1.95883e-05 1.96356e-05 1.96909e-05 1.97556e-05 1.98314e-05 1.99198e-05 2.00228e-05 2.01427e-05 2.0282e-05 2.04439e-05 2.06322e-05 2.08534e-05 2.11192e-05 2.14537e-05 2.1906e-05 2.25725e-05 2.36172e-05 2.5276e-05 2.78236e-05 3.15376e-05 3.69353e-05 4.55721e-05 6.00117e-05 7.38286e-05 9.22989e-05 0.0001242 0.000191244 0.000310063 1.60598e-05 1.6067e-05 1.60755e-05 1.60857e-05 1.60979e-05 1.61125e-05 1.61299e-05 1.61503e-05 1.61741e-05 1.62016e-05 1.62334e-05 1.62703e-05 1.63132e-05 1.6363e-05 1.64208e-05 1.64874e-05 1.65641e-05 1.66523e-05 1.67535e-05 1.68693e-05 1.70026e-05 1.7159e-05 1.73509e-05 1.76059e-05 1.79808e-05 1.85779e-05 1.95553e-05 2.11166e-05 2.31071e-05 2.71837e-05 3.8407e-05 7.38801e-05 0.000117577 0.000210775 0.000410693 0.000628529 0.000729455 8.63297e-06 8.64261e-06 8.65417e-06 8.66807e-06 8.68481e-06 8.70486e-06 8.72862e-06 8.75645e-06 8.78872e-06 8.82594e-06 8.86872e-06 8.91774e-06 8.97376e-06 9.03753e-06 9.10986e-06 9.1916e-06 9.28369e-06 9.38714e-06 9.50303e-06 9.63235e-06 9.77602e-06 9.93503e-06 1.01104e-05 1.0304e-05 1.05207e-05 1.07698e-05 1.10583e-05 1.14753e-05 1.22265e-05 1.39091e-05 4.43478e-05 0.000125905 0.000175777 0.00022922 0.000314308 0.000358678 0.000370895 8.61243e-06 8.61998e-06 8.62912e-06 8.64024e-06 8.65375e-06 8.67004e-06 8.68951e-06 8.71263e-06 8.73993e-06 8.77199e-06 8.80943e-06 8.8529e-06 8.90316e-06 8.96106e-06 9.02752e-06 9.10367e-06 9.19072e-06 9.28998e-06 9.40293e-06 9.53115e-06 9.6764e-06 9.84069e-06 1.00264e-05 1.02365e-05 1.04742e-05 1.07439e-05 1.10507e-05 1.14019e-05 1.18069e-05 1.22783e-05 1.28319e-05 1.34846e-05 1.42489e-05 1.51281e-05 1.61074e-05 1.71521e-05 1.8206e-05 1.92283e-05 1.60518e-05 1.60584e-05 1.6066e-05 1.6075e-05 1.60857e-05 1.60983e-05 1.61133e-05 1.6131e-05 1.61519e-05 1.61766e-05 1.62057e-05 1.62401e-05 1.62806e-05 1.63283e-05 1.63846e-05 1.64509e-05 1.65291e-05 1.66212e-05 1.67297e-05 1.68572e-05 1.70068e-05 1.71822e-05 1.73881e-05 1.76303e-05 1.79165e-05 1.82577e-05 1.86696e-05 1.91753e-05 1.98074e-05 2.06069e-05 2.16137e-05 2.28493e-05 2.42988e-05 2.59053e-05 2.75684e-05 2.91393e-05 3.05037e-05 3.15277e-05 1.93708e-05 1.93805e-05 1.93918e-05 1.94051e-05 1.94207e-05 1.94392e-05 1.94609e-05 1.94865e-05 1.95166e-05 1.95522e-05 1.9594e-05 1.96434e-05 1.97016e-05 1.97701e-05 1.98509e-05 1.99461e-05 2.00582e-05 2.01904e-05 2.03459e-05 2.05291e-05 2.07449e-05 2.09997e-05 2.13017e-05 2.16625e-05 2.20985e-05 2.26348e-05 2.33087e-05 2.41749e-05 2.53029e-05 2.67615e-05 2.85877e-05 3.07571e-05 3.31854e-05 3.57534e-05 3.83209e-05 4.07515e-05 4.29709e-05 4.49858e-05 2.1112e-05 2.11263e-05 2.11431e-05 2.11629e-05 2.11861e-05 2.12135e-05 2.12458e-05 2.12837e-05 2.13284e-05 2.1381e-05 2.1443e-05 2.15161e-05 2.16021e-05 2.17034e-05 2.18226e-05 2.1963e-05 2.21282e-05 2.23227e-05 2.25517e-05 2.2822e-05 2.31423e-05 2.35247e-05 2.39869e-05 2.45564e-05 2.52764e-05 2.62127e-05 2.74559e-05 2.91048e-05 3.12265e-05 3.38117e-05 3.67585e-05 3.99064e-05 4.30669e-05 4.6043e-05 4.87222e-05 5.11097e-05 5.33307e-05 2.20177e-05 2.2034e-05 2.20532e-05 2.20757e-05 2.21022e-05 2.21333e-05 2.217e-05 2.22132e-05 2.2264e-05 2.23239e-05 2.23943e-05 2.24774e-05 2.25751e-05 2.26903e-05 2.28258e-05 2.29853e-05 2.3173e-05 2.33941e-05 2.36548e-05 2.39632e-05 2.43304e-05 2.47726e-05 2.53151e-05 2.59986e-05 2.68893e-05 2.80863e-05 2.97154e-05 3.18915e-05 3.46572e-05 3.79461e-05 4.15865e-05 4.53455e-05 4.89268e-05 5.20147e-05 5.44967e-05 5.65009e-05 5.82014e-05 2.24092e-05 2.24265e-05 2.24468e-05 2.24706e-05 2.24987e-05 2.25317e-05 2.25705e-05 2.26163e-05 2.26701e-05 2.27335e-05 2.28082e-05 2.28962e-05 2.29997e-05 2.31217e-05 2.32653e-05 2.34344e-05 2.36335e-05 2.38682e-05 2.41455e-05 2.44745e-05 2.48685e-05 2.53476e-05 2.5945e-05 2.67166e-05 2.77536e-05 2.91888e-05 3.11782e-05 3.38457e-05 3.72197e-05 4.1202e-05 4.55655e-05 4.99544e-05 5.37758e-05 5.65652e-05 5.85425e-05 6.04854e-05 6.31877e-05 2.24092e-05 2.24265e-05 2.24467e-05 2.24706e-05 2.24986e-05 2.25316e-05 2.25704e-05 2.26162e-05 2.267e-05 2.27334e-05 2.28081e-05 2.2896e-05 2.29996e-05 2.31217e-05 2.32654e-05 2.34346e-05 2.3634e-05 2.38692e-05 2.41475e-05 2.44786e-05 2.4877e-05 2.53659e-05 2.5985e-05 2.68035e-05 2.79349e-05 2.9542e-05 3.18104e-05 3.48857e-05 3.88185e-05 4.35059e-05 4.86966e-05 5.39536e-05 5.85463e-05 6.21156e-05 6.48466e-05 6.90333e-05 7.71995e-05 2.20177e-05 2.20339e-05 2.2053e-05 2.20754e-05 2.21018e-05 2.21329e-05 2.21695e-05 2.22127e-05 2.22634e-05 2.23232e-05 2.23936e-05 2.24765e-05 2.25741e-05 2.26891e-05 2.28245e-05 2.2984e-05 2.3172e-05 2.33939e-05 2.36568e-05 2.39703e-05 2.43492e-05 2.4818e-05 2.54204e-05 2.62343e-05 2.73888e-05 2.90689e-05 3.14894e-05 3.48367e-05 3.92359e-05 4.46219e-05 5.11905e-05 5.90147e-05 6.59864e-05 7.08947e-05 7.73766e-05 9.05669e-05 0.000116579 2.11119e-05 2.11261e-05 2.11427e-05 2.11623e-05 2.11853e-05 2.12126e-05 2.12447e-05 2.12826e-05 2.13271e-05 2.13794e-05 2.1441e-05 2.15134e-05 2.15986e-05 2.1699e-05 2.18171e-05 2.19562e-05 2.21199e-05 2.23132e-05 2.25419e-05 2.28147e-05 2.31448e-05 2.35551e-05 2.40882e-05 2.48222e-05 2.58912e-05 2.74897e-05 2.98507e-05 3.31918e-05 3.77379e-05 4.37444e-05 5.26862e-05 6.46639e-05 7.5515e-05 8.55064e-05 9.7325e-05 0.000119256 0.00016766 1.93804e-05 1.93914e-05 1.94043e-05 1.94196e-05 1.94377e-05 1.94592e-05 1.94846e-05 1.95145e-05 1.95496e-05 1.95908e-05 1.9639e-05 1.96957e-05 1.97622e-05 1.98404e-05 1.99322e-05 2.00401e-05 2.01668e-05 2.03159e-05 2.0492e-05 2.07014e-05 2.0954e-05 2.12677e-05 2.16768e-05 2.22468e-05 2.30972e-05 2.44113e-05 2.64202e-05 2.93695e-05 3.35546e-05 3.94443e-05 4.94976e-05 6.67819e-05 8.29419e-05 0.000101631 0.00013637 0.000209353 0.000333205 1.60582e-05 1.60653e-05 1.60738e-05 1.60838e-05 1.6096e-05 1.61106e-05 1.61281e-05 1.61486e-05 1.61725e-05 1.62003e-05 1.62326e-05 1.62702e-05 1.6314e-05 1.63652e-05 1.64247e-05 1.6494e-05 1.65745e-05 1.66684e-05 1.67778e-05 1.69059e-05 1.70577e-05 1.72425e-05 1.74792e-05 1.78061e-05 1.82998e-05 1.90894e-05 2.03421e-05 2.22356e-05 2.47266e-05 2.97252e-05 4.166e-05 7.83828e-05 0.000124585 0.000219625 0.000428484 0.000640439 0.000728064 8.62001e-06 8.62875e-06 8.63939e-06 8.65237e-06 8.66818e-06 8.68732e-06 8.71019e-06 8.73716e-06 8.76865e-06 8.80519e-06 8.84741e-06 8.89602e-06 8.95181e-06 9.01558e-06 9.0882e-06 9.17062e-06 9.26395e-06 9.36939e-06 9.48831e-06 9.62215e-06 9.77249e-06 9.94138e-06 1.01318e-05 1.03482e-05 1.05994e-05 1.08892e-05 1.12739e-05 1.19371e-05 1.3178e-05 1.50507e-05 4.1958e-05 0.000125455 0.000184619 0.00024217 0.000328276 0.000366561 0.000376133 8.60025e-06 8.6069e-06 8.6151e-06 8.62529e-06 8.63789e-06 8.65325e-06 8.67182e-06 8.69406e-06 8.72052e-06 8.75181e-06 8.78857e-06 8.83151e-06 8.88139e-06 8.9391e-06 9.00562e-06 9.08211e-06 9.16984e-06 9.27019e-06 9.38472e-06 9.51514e-06 9.66334e-06 9.83159e-06 1.00226e-05 1.02394e-05 1.0486e-05 1.07672e-05 1.10891e-05 1.14599e-05 1.18906e-05 1.23958e-05 1.2993e-05 1.37e-05 1.45287e-05 1.54789e-05 1.65306e-05 1.76397e-05 1.87561e-05 1.98229e-05 1.60503e-05 1.60568e-05 1.60643e-05 1.60732e-05 1.60839e-05 1.60965e-05 1.61115e-05 1.61293e-05 1.61503e-05 1.61753e-05 1.62048e-05 1.62397e-05 1.62809e-05 1.63297e-05 1.63874e-05 1.64556e-05 1.65362e-05 1.66317e-05 1.67444e-05 1.68776e-05 1.70346e-05 1.72197e-05 1.74383e-05 1.76973e-05 1.80058e-05 1.83768e-05 1.8829e-05 1.93898e-05 2.00967e-05 2.09944e-05 2.21224e-05 2.34957e-05 2.5088e-05 2.68287e-05 2.86015e-05 3.02568e-05 3.16892e-05 3.28348e-05 1.93706e-05 1.93803e-05 1.93917e-05 1.94051e-05 1.94208e-05 1.94395e-05 1.94614e-05 1.94873e-05 1.95179e-05 1.9554e-05 1.95966e-05 1.9647e-05 1.97064e-05 1.97767e-05 1.98597e-05 1.99579e-05 2.0074e-05 2.02113e-05 2.03738e-05 2.05661e-05 2.0794e-05 2.10649e-05 2.13885e-05 2.17785e-05 2.22542e-05 2.28451e-05 2.3595e-05 2.45653e-05 2.58304e-05 2.7455e-05 2.9461e-05 3.18038e-05 3.43829e-05 3.70689e-05 3.9714e-05 4.21906e-05 4.44688e-05 4.66284e-05 2.11123e-05 2.11267e-05 2.11437e-05 2.11637e-05 2.11872e-05 2.1215e-05 2.12476e-05 2.12862e-05 2.13316e-05 2.13852e-05 2.14485e-05 2.15233e-05 2.16115e-05 2.17157e-05 2.18389e-05 2.19844e-05 2.21565e-05 2.23602e-05 2.26016e-05 2.28885e-05 2.32314e-05 2.36445e-05 2.41494e-05 2.47786e-05 2.55829e-05 2.66378e-05 2.80408e-05 2.98871e-05 3.22233e-05 3.50086e-05 3.81165e-05 4.13745e-05 4.45897e-05 4.75603e-05 5.01951e-05 5.25675e-05 5.48952e-05 2.20182e-05 2.20347e-05 2.2054e-05 2.20768e-05 2.21036e-05 2.21352e-05 2.21724e-05 2.22162e-05 2.22679e-05 2.23289e-05 2.24009e-05 2.24859e-05 2.25863e-05 2.27049e-05 2.2845e-05 2.30107e-05 2.32067e-05 2.34391e-05 2.37151e-05 2.40446e-05 2.4441e-05 2.4924e-05 2.55244e-05 2.62913e-05 2.73023e-05 2.86679e-05 3.05164e-05 3.29429e-05 3.59509e-05 3.94347e-05 4.31981e-05 4.69991e-05 5.05371e-05 5.34932e-05 5.58113e-05 5.77236e-05 5.95156e-05 2.24098e-05 2.24272e-05 2.24477e-05 2.24718e-05 2.25002e-05 2.25337e-05 2.25731e-05 2.26196e-05 2.26744e-05 2.2739e-05 2.28153e-05 2.29054e-05 2.30118e-05 2.31376e-05 2.32863e-05 2.34623e-05 2.36709e-05 2.39186e-05 2.42139e-05 2.45681e-05 2.49977e-05 2.55281e-05 2.62002e-05 2.7082e-05 2.82798e-05 2.99379e-05 3.2205e-05 3.5169e-05 3.88043e-05 4.29656e-05 4.73857e-05 5.16931e-05 5.53342e-05 5.78719e-05 5.98002e-05 6.21965e-05 6.56678e-05 2.24098e-05 2.24272e-05 2.24477e-05 2.24718e-05 2.25002e-05 2.25336e-05 2.2573e-05 2.26195e-05 2.26743e-05 2.27389e-05 2.28153e-05 2.29054e-05 2.3012e-05 2.31379e-05 2.3287e-05 2.34636e-05 2.36731e-05 2.39226e-05 2.42208e-05 2.45804e-05 2.50198e-05 2.5569e-05 2.62782e-05 2.72319e-05 2.85621e-05 3.04414e-05 3.30388e-05 3.64514e-05 4.0669e-05 4.55278e-05 5.07098e-05 5.58609e-05 6.04747e-05 6.40833e-05 6.75982e-05 7.38919e-05 8.53374e-05 2.20182e-05 2.20346e-05 2.20538e-05 2.20765e-05 2.21032e-05 2.21347e-05 2.21719e-05 2.22157e-05 2.22674e-05 2.23284e-05 2.24003e-05 2.24853e-05 2.25858e-05 2.27046e-05 2.28453e-05 2.30121e-05 2.32104e-05 2.34468e-05 2.37305e-05 2.40741e-05 2.44974e-05 2.5033e-05 2.5737e-05 2.6706e-05 2.80896e-05 3.00811e-05 3.28766e-05 3.66164e-05 4.13462e-05 4.6958e-05 5.36159e-05 6.16675e-05 6.9116e-05 7.51452e-05 8.58655e-05 0.000106608 0.000140217 2.11122e-05 2.11265e-05 2.11432e-05 2.1163e-05 2.11864e-05 2.1214e-05 2.12466e-05 2.1285e-05 2.13303e-05 2.13836e-05 2.14466e-05 2.15209e-05 2.16086e-05 2.17124e-05 2.18353e-05 2.19809e-05 2.21541e-05 2.23608e-05 2.26092e-05 2.29109e-05 2.32842e-05 2.37608e-05 2.43968e-05 2.5291e-05 2.66002e-05 2.85266e-05 3.12803e-05 3.50243e-05 3.99533e-05 4.64705e-05 5.61399e-05 6.998e-05 8.2678e-05 9.49985e-05 0.000112031 0.000140929 0.000198154 1.93802e-05 1.93913e-05 1.94043e-05 1.94197e-05 1.9438e-05 1.94597e-05 1.94854e-05 1.95157e-05 1.95513e-05 1.95932e-05 1.96425e-05 1.97006e-05 1.9769e-05 1.98498e-05 1.99453e-05 2.00583e-05 2.01924e-05 2.03523e-05 2.05443e-05 2.07774e-05 2.10662e-05 2.14361e-05 2.19343e-05 2.26461e-05 2.37164e-05 2.53418e-05 2.77436e-05 3.11674e-05 3.59632e-05 4.28024e-05 5.4779e-05 7.58631e-05 9.4183e-05 0.000112554 0.00015012 0.000229228 0.000355368 1.60566e-05 1.60636e-05 1.6072e-05 1.6082e-05 1.60941e-05 1.61087e-05 1.61262e-05 1.61468e-05 1.6171e-05 1.6199e-05 1.62318e-05 1.62701e-05 1.63149e-05 1.63674e-05 1.64288e-05 1.65009e-05 1.65856e-05 1.66855e-05 1.68039e-05 1.69456e-05 1.71183e-05 1.73356e-05 1.76244e-05 1.80361e-05 1.86678e-05 1.96679e-05 2.12262e-05 2.35337e-05 2.68497e-05 3.33659e-05 4.70277e-05 8.49891e-05 0.00013324 0.000228584 0.000441193 0.000643211 0.000720862 8.60691e-06 8.61475e-06 8.62445e-06 8.63648e-06 8.65134e-06 8.66953e-06 8.69147e-06 8.71756e-06 8.74824e-06 8.78408e-06 8.82572e-06 8.87392e-06 8.92948e-06 8.99324e-06 9.06617e-06 9.14932e-06 9.24395e-06 9.3515e-06 9.47364e-06 9.61225e-06 9.76974e-06 9.94936e-06 1.01561e-05 1.03979e-05 1.0689e-05 1.10406e-05 1.161e-05 1.26864e-05 1.46279e-05 1.66469e-05 4.06332e-05 0.000124707 0.000192183 0.000254917 0.000338151 0.000371755 0.000379678 8.58797e-06 8.59369e-06 8.60095e-06 8.61019e-06 8.62183e-06 8.63627e-06 8.65391e-06 8.67523e-06 8.7008e-06 8.73128e-06 8.76736e-06 8.80974e-06 8.85925e-06 8.91679e-06 8.98339e-06 9.06026e-06 9.14872e-06 9.25023e-06 9.36645e-06 9.4992e-06 9.65055e-06 9.82303e-06 1.00196e-05 1.02438e-05 1.05e-05 1.07937e-05 1.11319e-05 1.1524e-05 1.19828e-05 1.25247e-05 1.31688e-05 1.39334e-05 1.48291e-05 1.5852e-05 1.69754e-05 1.8153e-05 1.93378e-05 2.0504e-05 1.60488e-05 1.60552e-05 1.60626e-05 1.60714e-05 1.60821e-05 1.60947e-05 1.61098e-05 1.61276e-05 1.61488e-05 1.6174e-05 1.62039e-05 1.62393e-05 1.62813e-05 1.63312e-05 1.63903e-05 1.64605e-05 1.65438e-05 1.66427e-05 1.67601e-05 1.68993e-05 1.70643e-05 1.72601e-05 1.74928e-05 1.77705e-05 1.81039e-05 1.85083e-05 1.90059e-05 1.96284e-05 2.04182e-05 2.14226e-05 2.26793e-05 2.41952e-05 2.59325e-05 2.78073e-05 2.96918e-05 3.14434e-05 3.30018e-05 3.43234e-05 1.93704e-05 1.93802e-05 1.93916e-05 1.9405e-05 1.9421e-05 1.94398e-05 1.9462e-05 1.94882e-05 1.95192e-05 1.95559e-05 1.95993e-05 1.96506e-05 1.97114e-05 1.97835e-05 1.98688e-05 1.99701e-05 2.00904e-05 2.02332e-05 2.0403e-05 2.0605e-05 2.0846e-05 2.11344e-05 2.14816e-05 2.19037e-05 2.24234e-05 2.30751e-05 2.39092e-05 2.49939e-05 2.64061e-05 2.82036e-05 3.03904e-05 3.2903e-05 3.56271e-05 3.84254e-05 4.11524e-05 4.37107e-05 4.6149e-05 4.86324e-05 2.11126e-05 2.11271e-05 2.11443e-05 2.11645e-05 2.11883e-05 2.12164e-05 2.12495e-05 2.12887e-05 2.13349e-05 2.13895e-05 2.14541e-05 2.15306e-05 2.16212e-05 2.17285e-05 2.18557e-05 2.20067e-05 2.21861e-05 2.23995e-05 2.26542e-05 2.2959e-05 2.33264e-05 2.37734e-05 2.43254e-05 2.5021e-05 2.59195e-05 2.71056e-05 2.86818e-05 3.07345e-05 3.32848e-05 3.62612e-05 3.95158e-05 4.28661e-05 4.61144e-05 4.90689e-05 5.16913e-05 5.41582e-05 5.67969e-05 2.20187e-05 2.20353e-05 2.20549e-05 2.20779e-05 2.2105e-05 2.2137e-05 2.21748e-05 2.22193e-05 2.22719e-05 2.23341e-05 2.24077e-05 2.24947e-05 2.25978e-05 2.272e-05 2.28649e-05 2.30371e-05 2.3242e-05 2.34864e-05 2.37789e-05 2.41313e-05 2.45596e-05 2.50878e-05 2.57529e-05 2.66136e-05 2.77596e-05 2.93118e-05 3.13946e-05 3.40758e-05 3.73175e-05 4.09779e-05 4.48407e-05 4.86489e-05 5.20921e-05 5.48833e-05 5.70693e-05 5.90077e-05 6.11563e-05 2.24104e-05 2.2428e-05 2.24487e-05 2.24731e-05 2.25018e-05 2.25357e-05 2.25757e-05 2.26229e-05 2.26787e-05 2.27446e-05 2.28226e-05 2.29149e-05 2.30243e-05 2.3154e-05 2.33081e-05 2.34914e-05 2.371e-05 2.39717e-05 2.42864e-05 2.46682e-05 2.51372e-05 2.57249e-05 2.64816e-05 2.74887e-05 2.88683e-05 3.07719e-05 3.33318e-05 3.65921e-05 4.0473e-05 4.4788e-05 4.9229e-05 5.34007e-05 5.68006e-05 5.91056e-05 6.12426e-05 6.42826e-05 6.87844e-05 2.24104e-05 2.2428e-05 2.24486e-05 2.2473e-05 2.25017e-05 2.25356e-05 2.25756e-05 2.26228e-05 2.26786e-05 2.27446e-05 2.28226e-05 2.2915e-05 2.30246e-05 2.31547e-05 2.33094e-05 2.34938e-05 2.37142e-05 2.39789e-05 2.42989e-05 2.46899e-05 2.51752e-05 2.57928e-05 2.66052e-05 2.77147e-05 2.92711e-05 3.14502e-05 3.43927e-05 3.81417e-05 4.26282e-05 4.76265e-05 5.27814e-05 5.78486e-05 6.25423e-05 6.63549e-05 7.13442e-05 8.0672e-05 9.55866e-05 2.20187e-05 2.20352e-05 2.20546e-05 2.20776e-05 2.21046e-05 2.21366e-05 2.21743e-05 2.22188e-05 2.22714e-05 2.23336e-05 2.24072e-05 2.24944e-05 2.25978e-05 2.27207e-05 2.28669e-05 2.30415e-05 2.32507e-05 2.35029e-05 2.38093e-05 2.41865e-05 2.466e-05 2.52719e-05 2.60939e-05 2.72431e-05 2.88884e-05 3.1224e-05 3.44184e-05 3.85603e-05 4.362e-05 4.94806e-05 5.63845e-05 6.48431e-05 7.30387e-05 8.17525e-05 9.91774e-05 0.000127832 0.000167553 2.11125e-05 2.11269e-05 2.11438e-05 2.11638e-05 2.11874e-05 2.12154e-05 2.12484e-05 2.12875e-05 2.13335e-05 2.1388e-05 2.14523e-05 2.15285e-05 2.16189e-05 2.17263e-05 2.18542e-05 2.20069e-05 2.21902e-05 2.24116e-05 2.26815e-05 2.30155e-05 2.34382e-05 2.39915e-05 2.47484e-05 2.5831e-05 2.7417e-05 2.97056e-05 3.28737e-05 3.70348e-05 4.242e-05 4.97634e-05 6.06396e-05 7.66431e-05 9.22224e-05 0.000108423 0.00013163 0.000168097 0.000230896 1.938e-05 1.93911e-05 1.94042e-05 1.94197e-05 1.94382e-05 1.94601e-05 1.94862e-05 1.95169e-05 1.95531e-05 1.95958e-05 1.96461e-05 1.97056e-05 1.9776e-05 1.98596e-05 1.99589e-05 2.00774e-05 2.02195e-05 2.03911e-05 2.06006e-05 2.08604e-05 2.11906e-05 2.16261e-05 2.22298e-05 2.31104e-05 2.44375e-05 2.64106e-05 2.92455e-05 3.3227e-05 3.88328e-05 4.72673e-05 6.20878e-05 8.76537e-05 0.000107456 0.000125736 0.00016574 0.00025047 0.000375998 1.60549e-05 1.60619e-05 1.60702e-05 1.60802e-05 1.60922e-05 1.61069e-05 1.61244e-05 1.61451e-05 1.61693e-05 1.61977e-05 1.6231e-05 1.627e-05 1.63158e-05 1.63697e-05 1.64331e-05 1.65081e-05 1.65972e-05 1.67036e-05 1.68318e-05 1.69885e-05 1.71843e-05 1.74387e-05 1.77878e-05 1.82988e-05 1.90917e-05 2.03275e-05 2.22106e-05 2.50498e-05 2.96181e-05 3.85885e-05 5.50186e-05 9.4454e-05 0.000142835 0.000237135 0.00044902 0.000640219 0.000705603 8.59369e-06 8.60061e-06 8.60936e-06 8.62041e-06 8.6343e-06 8.65151e-06 8.67248e-06 8.69765e-06 8.7275e-06 8.76261e-06 8.80367e-06 8.85144e-06 8.90675e-06 8.97051e-06 9.04376e-06 9.12768e-06 9.22368e-06 9.33344e-06 9.45894e-06 9.6026e-06 9.76768e-06 9.95885e-06 1.01833e-05 1.04534e-05 1.07833e-05 1.12436e-05 1.21609e-05 1.39967e-05 1.6727e-05 1.86516e-05 3.99036e-05 0.000123431 0.000198149 0.000265794 0.000344315 0.000374325 0.000381215 8.57559e-06 8.58037e-06 8.58666e-06 8.59493e-06 8.60562e-06 8.61909e-06 8.63576e-06 8.65613e-06 8.68079e-06 8.71044e-06 8.74579e-06 8.78761e-06 8.83674e-06 8.89413e-06 8.96084e-06 9.03812e-06 9.12736e-06 9.23011e-06 9.3481e-06 9.4833e-06 9.63799e-06 9.81496e-06 1.00175e-05 1.02496e-05 1.0516e-05 1.08231e-05 1.11789e-05 1.15941e-05 1.20832e-05 1.26645e-05 1.33585e-05 1.41836e-05 1.51485e-05 1.6245e-05 1.7441e-05 1.86912e-05 1.99685e-05 2.12697e-05 1.60472e-05 1.60535e-05 1.60608e-05 1.60697e-05 1.60803e-05 1.60929e-05 1.6108e-05 1.61259e-05 1.61473e-05 1.61727e-05 1.62029e-05 1.62389e-05 1.62818e-05 1.63327e-05 1.63934e-05 1.64656e-05 1.65517e-05 1.66543e-05 1.67766e-05 1.69223e-05 1.7096e-05 1.73033e-05 1.75515e-05 1.78497e-05 1.82107e-05 1.86524e-05 1.92005e-05 1.98913e-05 2.07717e-05 2.18908e-05 2.32827e-05 2.49456e-05 2.68295e-05 2.88383e-05 3.08392e-05 3.2716e-05 3.44604e-05 3.61126e-05 1.93702e-05 1.938e-05 1.93915e-05 1.9405e-05 1.94211e-05 1.94401e-05 1.94625e-05 1.94891e-05 1.95205e-05 1.95578e-05 1.96019e-05 1.96543e-05 1.97165e-05 1.97904e-05 1.98782e-05 1.99828e-05 2.01073e-05 2.0256e-05 2.04335e-05 2.06458e-05 2.09007e-05 2.1208e-05 2.15808e-05 2.20378e-05 2.26057e-05 2.33243e-05 2.42507e-05 2.54594e-05 2.70273e-05 2.9002e-05 3.1369e-05 3.4047e-05 3.691e-05 3.98174e-05 4.26411e-05 4.53432e-05 4.808e-05 5.11362e-05 2.11129e-05 2.11276e-05 2.11449e-05 2.11653e-05 2.11894e-05 2.12178e-05 2.12514e-05 2.12912e-05 2.13382e-05 2.13938e-05 2.14598e-05 2.15381e-05 2.16311e-05 2.17415e-05 2.1873e-05 2.20297e-05 2.22167e-05 2.24405e-05 2.27092e-05 2.30333e-05 2.34271e-05 2.39109e-05 2.45145e-05 2.52833e-05 2.62855e-05 2.76147e-05 2.93753e-05 3.16396e-05 3.43998e-05 3.75556e-05 4.09406e-05 4.43628e-05 4.76235e-05 5.05672e-05 5.32448e-05 5.59659e-05 5.91812e-05 2.20192e-05 2.2036e-05 2.20557e-05 2.2079e-05 2.21065e-05 2.21389e-05 2.21772e-05 2.22224e-05 2.2276e-05 2.23394e-05 2.24145e-05 2.25036e-05 2.26095e-05 2.27354e-05 2.28854e-05 2.30644e-05 2.32786e-05 2.35357e-05 2.38459e-05 2.42229e-05 2.46859e-05 2.52636e-05 2.60003e-05 2.69652e-05 2.82606e-05 3.00151e-05 3.23427e-05 3.52773e-05 3.87392e-05 4.25542e-05 4.64873e-05 5.02577e-05 5.35534e-05 5.61764e-05 5.8306e-05 6.04574e-05 6.3345e-05 2.2411e-05 2.24287e-05 2.24496e-05 2.24743e-05 2.25034e-05 2.25378e-05 2.25783e-05 2.26263e-05 2.26831e-05 2.27503e-05 2.28299e-05 2.29245e-05 2.3037e-05 2.31708e-05 2.33305e-05 2.35215e-05 2.37508e-05 2.40272e-05 2.43628e-05 2.47745e-05 2.52867e-05 2.59379e-05 2.67892e-05 2.7937e-05 2.95182e-05 3.16863e-05 3.45471e-05 3.80953e-05 4.21997e-05 4.66358e-05 5.105e-05 5.5027e-05 5.81411e-05 6.0342e-05 6.29162e-05 6.68925e-05 7.25952e-05 2.2411e-05 2.24287e-05 2.24496e-05 2.24742e-05 2.25033e-05 2.25377e-05 2.25782e-05 2.26262e-05 2.2683e-05 2.27503e-05 2.28301e-05 2.29248e-05 2.30376e-05 2.3172e-05 2.33326e-05 2.35252e-05 2.37571e-05 2.40382e-05 2.43817e-05 2.48069e-05 2.53431e-05 2.60373e-05 2.69667e-05 2.82528e-05 3.00615e-05 3.25623e-05 3.5856e-05 3.99325e-05 4.46625e-05 4.97599e-05 5.48871e-05 5.99222e-05 6.47806e-05 6.92924e-05 7.66923e-05 8.968e-05 0.000107748 2.20192e-05 2.20359e-05 2.20555e-05 2.20787e-05 2.21061e-05 2.21384e-05 2.21767e-05 2.22219e-05 2.22755e-05 2.23389e-05 2.24142e-05 2.25036e-05 2.26101e-05 2.27372e-05 2.28893e-05 2.30721e-05 2.3293e-05 2.3562e-05 2.38932e-05 2.43073e-05 2.48369e-05 2.55356e-05 2.64927e-05 2.78479e-05 2.97859e-05 3.24925e-05 3.61005e-05 4.0638e-05 4.60146e-05 5.21522e-05 5.95413e-05 6.86927e-05 7.85028e-05 9.23166e-05 0.000118067 0.000153635 0.000197469 2.11128e-05 2.11273e-05 2.11444e-05 2.11646e-05 2.11885e-05 2.12168e-05 2.12503e-05 2.12899e-05 2.13368e-05 2.13923e-05 2.14582e-05 2.15364e-05 2.16295e-05 2.17406e-05 2.18737e-05 2.20339e-05 2.2228e-05 2.24652e-05 2.27588e-05 2.31287e-05 2.36071e-05 2.42485e-05 2.51459e-05 2.64463e-05 2.83428e-05 3.10195e-05 3.46084e-05 3.92022e-05 4.51853e-05 5.38146e-05 6.63768e-05 8.55357e-05 0.000105673 0.000126655 0.000156065 0.000199391 0.000265492 1.93798e-05 1.9391e-05 1.94042e-05 1.94198e-05 1.94385e-05 1.94606e-05 1.94869e-05 1.95181e-05 1.95548e-05 1.95983e-05 1.96497e-05 1.97107e-05 1.97832e-05 1.98696e-05 1.9973e-05 2.00973e-05 2.02479e-05 2.04322e-05 2.06609e-05 2.09504e-05 2.13275e-05 2.1839e-05 2.25665e-05 2.36446e-05 2.52631e-05 2.76119e-05 3.09206e-05 3.5581e-05 4.2366e-05 5.3363e-05 7.22824e-05 0.000102325 0.000122709 0.000140971 0.000183486 0.000272534 0.000395262 1.60533e-05 1.60602e-05 1.60684e-05 1.60783e-05 1.60904e-05 1.6105e-05 1.61225e-05 1.61432e-05 1.61677e-05 1.61964e-05 1.62302e-05 1.62699e-05 1.63167e-05 1.6372e-05 1.64376e-05 1.65156e-05 1.66093e-05 1.67226e-05 1.68613e-05 1.70342e-05 1.72558e-05 1.7552e-05 1.79704e-05 1.85956e-05 1.95704e-05 2.1055e-05 2.33219e-05 2.69051e-05 3.33695e-05 4.60143e-05 6.66507e-05 0.000105708 0.000152417 0.000244706 0.000451598 0.000631094 0.000686504 8.58037e-06 8.58634e-06 8.59412e-06 8.60418e-06 8.61705e-06 8.63324e-06 8.65321e-06 8.67744e-06 8.70643e-06 8.7408e-06 8.78125e-06 8.82858e-06 8.88364e-06 8.94741e-06 9.021e-06 9.10572e-06 9.20315e-06 9.31519e-06 9.44419e-06 9.59313e-06 9.76623e-06 9.96979e-06 1.02136e-05 1.05144e-05 1.08914e-05 1.15946e-05 1.31333e-05 1.62096e-05 1.94571e-05 2.12747e-05 3.96565e-05 0.000121586 0.000202268 0.000274269 0.000347527 0.000374679 0.00038145 8.56313e-06 8.56695e-06 8.57226e-06 8.57955e-06 8.58924e-06 8.60172e-06 8.61739e-06 8.63676e-06 8.66049e-06 8.68927e-06 8.72389e-06 8.76513e-06 8.81388e-06 8.87112e-06 8.93796e-06 9.0157e-06 9.10577e-06 9.2098e-06 9.32965e-06 9.46741e-06 9.62562e-06 9.80735e-06 1.00162e-05 1.02566e-05 1.05339e-05 1.08553e-05 1.12298e-05 1.16696e-05 1.21911e-05 1.28142e-05 1.35607e-05 1.44488e-05 1.54847e-05 1.66557e-05 1.79264e-05 1.92608e-05 2.06566e-05 2.21595e-05 1.60457e-05 1.60518e-05 1.60591e-05 1.60679e-05 1.60785e-05 1.60912e-05 1.61063e-05 1.61242e-05 1.61457e-05 1.61713e-05 1.6202e-05 1.62385e-05 1.62822e-05 1.63343e-05 1.63966e-05 1.6471e-05 1.656e-05 1.66664e-05 1.67939e-05 1.69465e-05 1.71295e-05 1.73493e-05 1.76141e-05 1.79348e-05 1.83261e-05 1.88087e-05 1.94124e-05 2.01781e-05 2.11564e-05 2.23974e-05 2.39302e-05 2.57436e-05 2.77753e-05 2.99192e-05 3.20492e-05 3.40938e-05 3.61258e-05 3.82617e-05 1.937e-05 1.93798e-05 1.93913e-05 1.9405e-05 1.94212e-05 1.94404e-05 1.94631e-05 1.949e-05 1.95218e-05 1.95596e-05 1.96046e-05 1.9658e-05 1.97216e-05 1.97974e-05 1.98878e-05 1.99957e-05 2.01248e-05 2.02794e-05 2.0465e-05 2.06883e-05 2.0958e-05 2.12853e-05 2.16856e-05 2.21804e-05 2.28006e-05 2.35919e-05 2.46183e-05 2.59592e-05 2.76896e-05 2.9844e-05 3.23891e-05 3.52273e-05 3.82237e-05 4.12426e-05 4.41956e-05 4.71361e-05 5.03617e-05 5.4297e-05 2.11132e-05 2.1128e-05 2.11454e-05 2.11661e-05 2.11905e-05 2.12193e-05 2.12533e-05 2.12937e-05 2.13415e-05 2.13982e-05 2.14656e-05 2.15457e-05 2.16411e-05 2.17549e-05 2.18907e-05 2.20533e-05 2.22484e-05 2.2483e-05 2.27665e-05 2.3111e-05 2.35331e-05 2.40564e-05 2.4716e-05 2.55645e-05 2.66794e-05 2.81623e-05 3.01155e-05 3.25928e-05 3.55557e-05 3.88769e-05 4.23738e-05 4.58458e-05 4.91058e-05 5.20701e-05 5.49134e-05 5.81035e-05 6.22219e-05 2.20197e-05 2.20366e-05 2.20566e-05 2.20801e-05 2.21079e-05 2.21407e-05 2.21796e-05 2.22255e-05 2.228e-05 2.23446e-05 2.24214e-05 2.25127e-05 2.26214e-05 2.27512e-05 2.29064e-05 2.30925e-05 2.33164e-05 2.35869e-05 2.39158e-05 2.43189e-05 2.48192e-05 2.54506e-05 2.62656e-05 2.73448e-05 2.88029e-05 3.07726e-05 3.33502e-05 3.65316e-05 4.01961e-05 4.414e-05 4.8107e-05 5.17868e-05 5.48981e-05 5.73908e-05 5.95902e-05 6.22352e-05 6.62401e-05 2.24116e-05 2.24295e-05 2.24506e-05 2.24755e-05 2.2505e-05 2.25398e-05 2.2581e-05 2.26297e-05 2.26874e-05 2.2756e-05 2.28374e-05 2.29343e-05 2.30499e-05 2.3188e-05 2.33535e-05 2.35525e-05 2.37929e-05 2.40849e-05 2.44428e-05 2.48864e-05 2.54455e-05 2.61663e-05 2.71221e-05 2.84254e-05 3.02261e-05 3.26724e-05 3.58348e-05 3.96552e-05 4.39543e-05 4.84705e-05 5.27982e-05 5.6527e-05 5.93588e-05 6.16999e-05 6.49463e-05 7.01533e-05 7.71498e-05 2.24116e-05 2.24294e-05 2.24505e-05 2.24754e-05 2.25049e-05 2.25397e-05 2.25809e-05 2.26296e-05 2.26874e-05 2.2756e-05 2.28376e-05 2.29348e-05 2.30508e-05 2.31897e-05 2.33564e-05 2.35576e-05 2.38016e-05 2.40999e-05 2.44686e-05 2.49309e-05 2.55228e-05 2.63021e-05 2.73624e-05 2.88455e-05 3.09291e-05 3.37656e-05 3.74084e-05 4.17941e-05 4.67314e-05 5.18887e-05 5.70132e-05 6.20937e-05 6.73526e-05 7.32706e-05 8.41346e-05 0.000100907 0.000121445 2.20197e-05 2.20365e-05 2.20563e-05 2.20798e-05 2.21075e-05 2.21403e-05 2.21791e-05 2.22251e-05 2.22796e-05 2.23443e-05 2.24213e-05 2.2513e-05 2.26227e-05 2.27541e-05 2.29123e-05 2.31036e-05 2.33369e-05 2.36239e-05 2.39817e-05 2.44361e-05 2.50277e-05 2.58238e-05 2.69338e-05 2.85204e-05 3.07783e-05 3.38759e-05 3.78932e-05 4.28091e-05 4.84745e-05 5.49735e-05 6.31365e-05 7.35792e-05 8.69144e-05 0.000108401 0.000142211 0.000182894 0.00022884 2.11131e-05 2.11277e-05 2.1145e-05 2.11654e-05 2.11896e-05 2.12182e-05 2.12522e-05 2.12924e-05 2.13401e-05 2.13968e-05 2.14641e-05 2.15443e-05 2.16402e-05 2.17552e-05 2.18938e-05 2.20618e-05 2.22674e-05 2.25215e-05 2.28406e-05 2.325e-05 2.37907e-05 2.45324e-05 2.55906e-05 2.71376e-05 2.93735e-05 3.24513e-05 3.64561e-05 4.15199e-05 4.83654e-05 5.86486e-05 7.38626e-05 9.8271e-05 0.000124427 0.000149693 0.000184625 0.000233296 0.000301119 1.93797e-05 1.93909e-05 1.94042e-05 1.94199e-05 1.94387e-05 1.94611e-05 1.94877e-05 1.95193e-05 1.95566e-05 1.96009e-05 1.96534e-05 1.97159e-05 1.97905e-05 1.98799e-05 1.99874e-05 2.01178e-05 2.02774e-05 2.04753e-05 2.07248e-05 2.10471e-05 2.14772e-05 2.20759e-05 2.29466e-05 2.42513e-05 2.61883e-05 2.89336e-05 3.27626e-05 3.83164e-05 4.69718e-05 6.22801e-05 8.6081e-05 0.000119892 0.000139984 0.00015819 0.00020333 0.000295522 0.0004136 1.60516e-05 1.60585e-05 1.60666e-05 1.60765e-05 1.60885e-05 1.6103e-05 1.61205e-05 1.61414e-05 1.6166e-05 1.61951e-05 1.62293e-05 1.62697e-05 1.63176e-05 1.63744e-05 1.64421e-05 1.65233e-05 1.66217e-05 1.67423e-05 1.68921e-05 1.70825e-05 1.73323e-05 1.76753e-05 1.81717e-05 1.8926e-05 2.00953e-05 2.18399e-05 2.45942e-05 2.94247e-05 3.89942e-05 5.60093e-05 8.2002e-05 0.000117382 0.000161935 0.000251174 0.000450767 0.000616201 0.000665509 8.56697e-06 8.57197e-06 8.57875e-06 8.58779e-06 8.59961e-06 8.61475e-06 8.63369e-06 8.65694e-06 8.68504e-06 8.71864e-06 8.75847e-06 8.80535e-06 8.86016e-06 8.92394e-06 8.99789e-06 9.08344e-06 9.18234e-06 9.29673e-06 9.42934e-06 9.58381e-06 9.76539e-06 9.98222e-06 1.02474e-05 1.05793e-05 1.10681e-05 1.22317e-05 1.49689e-05 1.94859e-05 2.27254e-05 2.53462e-05 3.99603e-05 0.00011919 0.000204667 0.000279757 0.000348651 0.000374278 0.00038128 8.5506e-06 8.55345e-06 8.55777e-06 8.56405e-06 8.57273e-06 8.58417e-06 8.59879e-06 8.61714e-06 8.6399e-06 8.6678e-06 8.70166e-06 8.74231e-06 8.79068e-06 8.84779e-06 8.91477e-06 8.99299e-06 9.08393e-06 9.18931e-06 9.31108e-06 9.45152e-06 9.61343e-06 9.80013e-06 1.00156e-05 1.02647e-05 1.05534e-05 1.08898e-05 1.12841e-05 1.175e-05 1.23056e-05 1.29727e-05 1.37739e-05 1.47269e-05 1.58352e-05 1.70819e-05 1.84329e-05 1.98692e-05 2.14268e-05 2.32257e-05 1.60441e-05 1.60501e-05 1.60574e-05 1.60661e-05 1.60767e-05 1.60894e-05 1.61045e-05 1.61225e-05 1.61441e-05 1.617e-05 1.6201e-05 1.62381e-05 1.62826e-05 1.6336e-05 1.63998e-05 1.64765e-05 1.65685e-05 1.6679e-05 1.68118e-05 1.69717e-05 1.71645e-05 1.73976e-05 1.76804e-05 1.80254e-05 1.84495e-05 1.89767e-05 1.96408e-05 2.04873e-05 2.15704e-05 2.29397e-05 2.46185e-05 2.65851e-05 2.87659e-05 3.10501e-05 3.33339e-05 3.56149e-05 3.80703e-05 4.09234e-05 1.93697e-05 1.93796e-05 1.93912e-05 1.9405e-05 1.94213e-05 1.94407e-05 1.94636e-05 1.94908e-05 1.95231e-05 1.95615e-05 1.96073e-05 1.96618e-05 1.97269e-05 1.98046e-05 1.98975e-05 2.00089e-05 2.01427e-05 2.03036e-05 2.04976e-05 2.07323e-05 2.10174e-05 2.1366e-05 2.17955e-05 2.23307e-05 2.30071e-05 2.38765e-05 2.50097e-05 2.64899e-05 2.83875e-05 3.07224e-05 3.34425e-05 3.64361e-05 3.95627e-05 4.27062e-05 4.58465e-05 4.9163e-05 5.31292e-05 5.83194e-05 2.11135e-05 2.11284e-05 2.1146e-05 2.11669e-05 2.11915e-05 2.12207e-05 2.12552e-05 2.12962e-05 2.13448e-05 2.14026e-05 2.14714e-05 2.15534e-05 2.16513e-05 2.17685e-05 2.19088e-05 2.20775e-05 2.22808e-05 2.25267e-05 2.28257e-05 2.31916e-05 2.36436e-05 2.42091e-05 2.49286e-05 2.58627e-05 2.70985e-05 2.87438e-05 3.0895e-05 3.3583e-05 3.67388e-05 4.02099e-05 4.37987e-05 4.73003e-05 5.0563e-05 5.36149e-05 5.67839e-05 6.0718e-05 6.61331e-05 2.20202e-05 2.20373e-05 2.20574e-05 2.20812e-05 2.21093e-05 2.21426e-05 2.2182e-05 2.22287e-05 2.22841e-05 2.235e-05 2.24284e-05 2.25219e-05 2.26336e-05 2.27673e-05 2.29279e-05 2.31213e-05 2.33552e-05 2.36397e-05 2.39881e-05 2.44189e-05 2.49588e-05 2.56477e-05 2.65472e-05 2.775e-05 2.93822e-05 3.15762e-05 3.4404e-05 3.78209e-05 4.16665e-05 4.57093e-05 4.96665e-05 5.3204e-05 5.61292e-05 5.85738e-05 6.10329e-05 6.4583e-05 6.99236e-05 2.24121e-05 2.24302e-05 2.24515e-05 2.24767e-05 2.25065e-05 2.25418e-05 2.25836e-05 2.26331e-05 2.26919e-05 2.27617e-05 2.2845e-05 2.29443e-05 2.30631e-05 2.32055e-05 2.3377e-05 2.35843e-05 2.38361e-05 2.41445e-05 2.45257e-05 2.50033e-05 2.56126e-05 2.64088e-05 2.74786e-05 2.89509e-05 3.09855e-05 3.37179e-05 3.71748e-05 4.12448e-05 4.57044e-05 5.02488e-05 5.44249e-05 5.78693e-05 6.05344e-05 6.32141e-05 6.74981e-05 7.40893e-05 8.25183e-05 2.24121e-05 2.24302e-05 2.24515e-05 2.24767e-05 2.25065e-05 2.25417e-05 2.25835e-05 2.2633e-05 2.26919e-05 2.27618e-05 2.28452e-05 2.29449e-05 2.30642e-05 2.32076e-05 2.33807e-05 2.35907e-05 2.38474e-05 2.41639e-05 2.45591e-05 2.50611e-05 2.57133e-05 2.65858e-05 2.77904e-05 2.94889e-05 3.18651e-05 3.5043e-05 3.90235e-05 4.36907e-05 4.87897e-05 5.39792e-05 5.91366e-05 6.4403e-05 7.0525e-05 7.89276e-05 9.39199e-05 0.00011402 0.000136239 2.20202e-05 2.20371e-05 2.20572e-05 2.20809e-05 2.21089e-05 2.21421e-05 2.21815e-05 2.22282e-05 2.22837e-05 2.23497e-05 2.24284e-05 2.25226e-05 2.26354e-05 2.27713e-05 2.29357e-05 2.3136e-05 2.33822e-05 2.36881e-05 2.40743e-05 2.45721e-05 2.52316e-05 2.61356e-05 2.74158e-05 2.92569e-05 3.18561e-05 3.53504e-05 3.97597e-05 4.50214e-05 5.0927e-05 5.79687e-05 6.73028e-05 8.02521e-05 0.000100429 0.000130298 0.000170578 0.000214318 0.000260648 2.11134e-05 2.11281e-05 2.11456e-05 2.11662e-05 2.11906e-05 2.12196e-05 2.12541e-05 2.12949e-05 2.13435e-05 2.14012e-05 2.14701e-05 2.15524e-05 2.16511e-05 2.17701e-05 2.19144e-05 2.20906e-05 2.2308e-05 2.25801e-05 2.29266e-05 2.33789e-05 2.39885e-05 2.48427e-05 2.60821e-05 2.79025e-05 3.0498e-05 3.39767e-05 3.83837e-05 4.40139e-05 5.21558e-05 6.44188e-05 8.4515e-05 0.000116863 0.000148603 0.000176724 0.000216415 0.000268823 0.000336791 1.93795e-05 1.93908e-05 1.94041e-05 1.94201e-05 1.9439e-05 1.94616e-05 1.94885e-05 1.95204e-05 1.95584e-05 1.96035e-05 1.96571e-05 1.97212e-05 1.9798e-05 1.98903e-05 2.00022e-05 2.01389e-05 2.0308e-05 2.05202e-05 2.07921e-05 2.11502e-05 2.16392e-05 2.23367e-05 2.33705e-05 2.49278e-05 2.72006e-05 3.0357e-05 3.47798e-05 4.1621e-05 5.34993e-05 7.501e-05 0.000104049 0.000140262 0.000158947 0.000177205 0.000225236 0.000319202 0.000431985 1.605e-05 1.60567e-05 1.60649e-05 1.60747e-05 1.60866e-05 1.61011e-05 1.61186e-05 1.61395e-05 1.61643e-05 1.61937e-05 1.62284e-05 1.62696e-05 1.63185e-05 1.63767e-05 1.64466e-05 1.65311e-05 1.66344e-05 1.67624e-05 1.69238e-05 1.71328e-05 1.74131e-05 1.78075e-05 1.83896e-05 1.92857e-05 2.06487e-05 2.26865e-05 2.62211e-05 3.33861e-05 4.7533e-05 6.98524e-05 0.000100591 0.000129888 0.000170659 0.000256794 0.000446867 0.000598021 0.000645106 8.55348e-06 8.55749e-06 8.56326e-06 8.57124e-06 8.58198e-06 8.59603e-06 8.61391e-06 8.63615e-06 8.66334e-06 8.69614e-06 8.73533e-06 8.78175e-06 8.83632e-06 8.90012e-06 8.97444e-06 9.06085e-06 9.16126e-06 9.27806e-06 9.41441e-06 9.57464e-06 9.76527e-06 9.99638e-06 1.02854e-05 1.06561e-05 1.14009e-05 1.35143e-05 1.83138e-05 2.35014e-05 2.73121e-05 3.16483e-05 4.14812e-05 0.000116792 0.000205886 0.000283544 0.000348385 0.00037297 0.000380617 8.53806e-06 8.53989e-06 8.5432e-06 8.54846e-06 8.55608e-06 8.56644e-06 8.57997e-06 8.59727e-06 8.61903e-06 8.64603e-06 8.67912e-06 8.71917e-06 8.76716e-06 8.82413e-06 8.89127e-06 8.97e-06 9.06186e-06 9.16863e-06 9.29239e-06 9.43562e-06 9.60136e-06 9.79322e-06 1.00155e-05 1.02736e-05 1.05743e-05 1.09263e-05 1.13412e-05 1.18344e-05 1.24256e-05 1.31384e-05 1.39961e-05 1.50155e-05 1.61974e-05 1.75228e-05 1.89645e-05 2.05308e-05 2.23152e-05 2.4592e-05 1.60425e-05 1.60485e-05 1.60556e-05 1.60643e-05 1.60749e-05 1.60875e-05 1.61027e-05 1.61208e-05 1.61425e-05 1.61686e-05 1.62e-05 1.62377e-05 1.62831e-05 1.63376e-05 1.64032e-05 1.64821e-05 1.65772e-05 1.66919e-05 1.68303e-05 1.69978e-05 1.72009e-05 1.74481e-05 1.775e-05 1.81208e-05 1.85802e-05 1.91553e-05 1.98843e-05 2.08173e-05 2.20112e-05 2.35143e-05 2.53433e-05 2.7466e-05 2.97989e-05 3.22361e-05 3.47167e-05 3.73364e-05 4.04072e-05 4.42369e-05 1.93695e-05 1.93794e-05 1.93911e-05 1.94049e-05 1.94214e-05 1.9441e-05 1.94642e-05 1.94917e-05 1.95244e-05 1.95634e-05 1.961e-05 1.96656e-05 1.97321e-05 1.98118e-05 1.99074e-05 2.00224e-05 2.01609e-05 2.03282e-05 2.05309e-05 2.07774e-05 2.10787e-05 2.14495e-05 2.19098e-05 2.24876e-05 2.32237e-05 2.4176e-05 2.54218e-05 2.70468e-05 2.91146e-05 3.16294e-05 3.45215e-05 3.76663e-05 4.09259e-05 4.42248e-05 4.76448e-05 5.15294e-05 5.65595e-05 6.34033e-05 2.11138e-05 2.11288e-05 2.11466e-05 2.11677e-05 2.11926e-05 2.12221e-05 2.12571e-05 2.12987e-05 2.13481e-05 2.1407e-05 2.14773e-05 2.15612e-05 2.16617e-05 2.17822e-05 2.19272e-05 2.21021e-05 2.23139e-05 2.25714e-05 2.28864e-05 2.32745e-05 2.37578e-05 2.43677e-05 2.51507e-05 2.61758e-05 2.75391e-05 2.93529e-05 3.17041e-05 3.4598e-05 3.79353e-05 4.15396e-05 4.52006e-05 4.87195e-05 5.2016e-05 5.52659e-05 5.89769e-05 6.39937e-05 7.11536e-05 2.20207e-05 2.20379e-05 2.20582e-05 2.20823e-05 2.21107e-05 2.21444e-05 2.21844e-05 2.22318e-05 2.22882e-05 2.23553e-05 2.24354e-05 2.25311e-05 2.26458e-05 2.27836e-05 2.29496e-05 2.31505e-05 2.33948e-05 2.36937e-05 2.40623e-05 2.45219e-05 2.51035e-05 2.58534e-05 2.68428e-05 2.81771e-05 2.99921e-05 3.2415e-05 3.54884e-05 3.91253e-05 4.31278e-05 4.72349e-05 5.11344e-05 5.44946e-05 5.7279e-05 5.98056e-05 6.28059e-05 6.75915e-05 7.45958e-05 2.24127e-05 2.24309e-05 2.24525e-05 2.24779e-05 2.25081e-05 2.25438e-05 2.25862e-05 2.26365e-05 2.26963e-05 2.27675e-05 2.28525e-05 2.29543e-05 2.30763e-05 2.32232e-05 2.34008e-05 2.36165e-05 2.38803e-05 2.42055e-05 2.4611e-05 2.51242e-05 2.57867e-05 2.66634e-05 2.78555e-05 2.95078e-05 3.17866e-05 3.4806e-05 3.85434e-05 4.28349e-05 4.74145e-05 5.19243e-05 5.58941e-05 5.90406e-05 6.17596e-05 6.50469e-05 7.07039e-05 7.87861e-05 8.86808e-05 2.24127e-05 2.24309e-05 2.24524e-05 2.24779e-05 2.2508e-05 2.25437e-05 2.25861e-05 2.26364e-05 2.26963e-05 2.27677e-05 2.28529e-05 2.2955e-05 2.30778e-05 2.32258e-05 2.34054e-05 2.36245e-05 2.38942e-05 2.42295e-05 2.46526e-05 2.51965e-05 2.59131e-05 2.68862e-05 2.82468e-05 3.01761e-05 3.28555e-05 3.63721e-05 4.06695e-05 4.55807e-05 5.07912e-05 5.59995e-05 6.12203e-05 6.68861e-05 7.48251e-05 8.6704e-05 0.00010591 0.000128535 0.000151586 2.20207e-05 2.20378e-05 2.2058e-05 2.2082e-05 2.21103e-05 2.2144e-05 2.21839e-05 2.22313e-05 2.22878e-05 2.23552e-05 2.24356e-05 2.25322e-05 2.26483e-05 2.27888e-05 2.29596e-05 2.31691e-05 2.34285e-05 2.37542e-05 2.41702e-05 2.47142e-05 2.5447e-05 2.64687e-05 2.79348e-05 3.00495e-05 3.30036e-05 3.68834e-05 4.1655e-05 4.72107e-05 5.33605e-05 6.11815e-05 7.24282e-05 9.02426e-05 0.000120247 0.000157153 0.000201751 0.000246685 0.00029203 2.11137e-05 2.11286e-05 2.11461e-05 2.1167e-05 2.11917e-05 2.1221e-05 2.12559e-05 2.12974e-05 2.13468e-05 2.14057e-05 2.14761e-05 2.15605e-05 2.16621e-05 2.17852e-05 2.19352e-05 2.21199e-05 2.23498e-05 2.26405e-05 2.3016e-05 2.35144e-05 2.41993e-05 2.51778e-05 2.66175e-05 2.87327e-05 3.16962e-05 3.55616e-05 4.03676e-05 4.67508e-05 5.65889e-05 7.17395e-05 0.000100561 0.000142613 0.000177082 0.000206858 0.000250524 0.000305171 0.000372003 1.93793e-05 1.93907e-05 1.94041e-05 1.94202e-05 1.94393e-05 1.94621e-05 1.94892e-05 1.95216e-05 1.95601e-05 1.9606e-05 1.96609e-05 1.97265e-05 1.98054e-05 1.99009e-05 2.00172e-05 2.01605e-05 2.03393e-05 2.05666e-05 2.08622e-05 2.12589e-05 2.18127e-05 2.26202e-05 2.38357e-05 2.56654e-05 2.82796e-05 3.18554e-05 3.70276e-05 4.59088e-05 6.33575e-05 9.25217e-05 0.000126382 0.000163025 0.000179044 0.0001977 0.000249319 0.000343217 0.000451006 1.60483e-05 1.6055e-05 1.60631e-05 1.60729e-05 1.60848e-05 1.60992e-05 1.61166e-05 1.61376e-05 1.61625e-05 1.61922e-05 1.62274e-05 1.62693e-05 1.63193e-05 1.6379e-05 1.64511e-05 1.65389e-05 1.66472e-05 1.67828e-05 1.69561e-05 1.71844e-05 1.74968e-05 1.79462e-05 1.86204e-05 1.9664e-05 2.12158e-05 2.36767e-05 2.88212e-05 4.02798e-05 6.06871e-05 8.83439e-05 0.000121953 0.000141968 0.000179068 0.000261704 0.000439306 0.000578023 0.000627339 8.53995e-06 8.54294e-06 8.54766e-06 8.55455e-06 8.56418e-06 8.57711e-06 8.59388e-06 8.61508e-06 8.64132e-06 8.67332e-06 8.71185e-06 8.75781e-06 8.81213e-06 8.87595e-06 8.95067e-06 9.03796e-06 9.13991e-06 9.2592e-06 9.39941e-06 9.56568e-06 9.76596e-06 1.00129e-05 1.03284e-05 1.0791e-05 1.20739e-05 1.60536e-05 2.33126e-05 2.83052e-05 3.44522e-05 4.06559e-05 4.50865e-05 0.000114636 0.000206212 0.00028558 0.000347066 0.000370635 0.000380066 8.52547e-06 8.52633e-06 8.52859e-06 8.53278e-06 8.5393e-06 8.54852e-06 8.56093e-06 8.57714e-06 8.59789e-06 8.62398e-06 8.65628e-06 8.69573e-06 8.74333e-06 8.80017e-06 8.86749e-06 8.94674e-06 9.03956e-06 9.14777e-06 9.27358e-06 9.41969e-06 9.58937e-06 9.78653e-06 1.00159e-05 1.02832e-05 1.05961e-05 1.09643e-05 1.14005e-05 1.19218e-05 1.25498e-05 1.33094e-05 1.42249e-05 1.53121e-05 1.65694e-05 1.79793e-05 1.95291e-05 2.1269e-05 2.33926e-05 2.65634e-05 1.60409e-05 1.60468e-05 1.60539e-05 1.60626e-05 1.60731e-05 1.60857e-05 1.61008e-05 1.6119e-05 1.61408e-05 1.61671e-05 1.61989e-05 1.62373e-05 1.62835e-05 1.63393e-05 1.64066e-05 1.64878e-05 1.6586e-05 1.6705e-05 1.68492e-05 1.70246e-05 1.72385e-05 1.75003e-05 1.78222e-05 1.82204e-05 1.87171e-05 1.93432e-05 2.01412e-05 2.11656e-05 2.24755e-05 2.41173e-05 2.61004e-05 2.83826e-05 3.08747e-05 3.349e-05 3.62372e-05 3.93448e-05 4.32757e-05 4.83297e-05 1.93692e-05 1.93792e-05 1.93909e-05 1.94049e-05 1.94215e-05 1.94413e-05 1.94647e-05 1.94925e-05 1.95257e-05 1.95653e-05 1.96127e-05 1.96694e-05 1.97374e-05 1.98191e-05 1.99174e-05 2.0036e-05 2.01793e-05 2.03532e-05 2.05647e-05 2.08234e-05 2.11414e-05 2.15352e-05 2.20275e-05 2.265e-05 2.34485e-05 2.44877e-05 2.58508e-05 2.76243e-05 2.98638e-05 3.25576e-05 3.56188e-05 3.89142e-05 4.23202e-05 4.5831e-05 4.96674e-05 5.43782e-05 6.08535e-05 6.96767e-05 2.1114e-05 2.11292e-05 2.11472e-05 2.11685e-05 2.11937e-05 2.12235e-05 2.1259e-05 2.13012e-05 2.13515e-05 2.14114e-05 2.14831e-05 2.1569e-05 2.1672e-05 2.17961e-05 2.19457e-05 2.2127e-05 2.23474e-05 2.26167e-05 2.29481e-05 2.33592e-05 2.38749e-05 2.45309e-05 2.53802e-05 2.65003e-05 2.79961e-05 2.99821e-05 3.25324e-05 3.56251e-05 3.91314e-05 4.28524e-05 4.657e-05 5.0111e-05 5.35089e-05 5.71166e-05 6.16481e-05 6.815e-05 7.7491e-05 2.20212e-05 2.20385e-05 2.20591e-05 2.20834e-05 2.21121e-05 2.21463e-05 2.21868e-05 2.22349e-05 2.22922e-05 2.23606e-05 2.24424e-05 2.25404e-05 2.26581e-05 2.28e-05 2.29716e-05 2.31801e-05 2.34349e-05 2.37484e-05 2.41378e-05 2.46272e-05 2.5252e-05 2.60655e-05 2.71492e-05 2.86207e-05 3.06239e-05 3.32758e-05 3.6586e-05 4.04243e-05 4.45564e-05 4.86899e-05 5.24877e-05 5.56721e-05 5.84056e-05 6.12012e-05 6.51558e-05 7.13923e-05 8.04577e-05 2.24132e-05 2.24316e-05 2.24534e-05 2.24791e-05 2.25096e-05 2.25458e-05 2.25888e-05 2.26398e-05 2.27007e-05 2.27733e-05 2.28601e-05 2.29643e-05 2.30897e-05 2.32411e-05 2.34248e-05 2.36491e-05 2.3925e-05 2.42675e-05 2.4698e-05 2.5248e-05 2.59659e-05 2.69272e-05 2.82481e-05 3.00883e-05 3.26162e-05 3.59168e-05 3.99143e-05 4.43944e-05 4.90469e-05 5.3455e-05 5.71868e-05 6.00954e-05 6.3086e-05 6.73727e-05 7.45696e-05 8.42353e-05 9.56158e-05 2.24132e-05 2.24316e-05 2.24533e-05 2.24791e-05 2.25096e-05 2.25457e-05 2.25887e-05 2.26398e-05 2.27007e-05 2.27735e-05 2.28606e-05 2.29652e-05 2.30914e-05 2.32442e-05 2.34303e-05 2.36587e-05 2.39416e-05 2.42963e-05 2.47481e-05 2.53356e-05 2.61199e-05 2.71995e-05 2.87257e-05 3.08962e-05 3.38823e-05 3.77249e-05 4.23099e-05 4.74162e-05 5.26897e-05 5.78944e-05 6.32452e-05 6.98866e-05 8.08507e-05 9.67088e-05 0.000119622 0.000143866 0.000166921 2.20211e-05 2.20384e-05 2.20588e-05 2.2083e-05 2.21117e-05 2.21458e-05 2.21863e-05 2.22345e-05 2.22919e-05 2.23606e-05 2.24429e-05 2.25418e-05 2.26613e-05 2.28063e-05 2.29837e-05 2.32025e-05 2.34756e-05 2.38215e-05 2.42685e-05 2.48609e-05 2.56714e-05 2.68191e-05 2.84838e-05 3.08849e-05 3.41936e-05 3.84353e-05 4.35264e-05 4.93037e-05 5.57943e-05 6.47695e-05 7.91383e-05 0.000105553 0.000145837 0.000187409 0.000234289 0.000278938 0.000322263 2.1114e-05 2.1129e-05 2.11467e-05 2.11677e-05 2.11927e-05 2.12224e-05 2.12578e-05 2.12999e-05 2.13501e-05 2.14101e-05 2.14821e-05 2.15686e-05 2.16732e-05 2.18004e-05 2.19563e-05 2.21495e-05 2.23921e-05 2.27023e-05 2.3108e-05 2.36551e-05 2.44208e-05 2.5534e-05 2.71898e-05 2.96138e-05 3.29418e-05 3.71646e-05 4.24068e-05 4.98141e-05 6.19324e-05 8.22735e-05 0.000123989 0.000174889 0.000208238 0.00023953 0.00028621 0.000341694 0.000406408 1.93791e-05 1.93905e-05 1.94041e-05 1.94203e-05 1.94395e-05 1.94625e-05 1.949e-05 1.95228e-05 1.95619e-05 1.96086e-05 1.96646e-05 1.97318e-05 1.98129e-05 1.99115e-05 2.00323e-05 2.01822e-05 2.03711e-05 2.06139e-05 2.09343e-05 2.1372e-05 2.19958e-05 2.29234e-05 2.43361e-05 2.64484e-05 2.93969e-05 3.33961e-05 3.96853e-05 5.2117e-05 7.76347e-05 0.000115581 0.000152654 0.000187216 0.000199939 0.00021906 0.000275141 0.000367882 0.000470971 1.60467e-05 1.60534e-05 1.60614e-05 1.60711e-05 1.60829e-05 1.60972e-05 1.61146e-05 1.61356e-05 1.61607e-05 1.61906e-05 1.62264e-05 1.6269e-05 1.632e-05 1.63812e-05 1.64555e-05 1.65466e-05 1.66598e-05 1.6803e-05 1.69883e-05 1.72361e-05 1.75816e-05 1.80874e-05 1.88575e-05 2.00425e-05 2.1811e-05 2.5151e-05 3.36373e-05 5.22679e-05 8.02968e-05 0.00011141 0.000144346 0.000153752 0.000185158 0.00026488 0.000430449 0.000558893 0.000613184 8.52643e-06 8.52834e-06 8.53196e-06 8.53773e-06 8.5462e-06 8.55798e-06 8.57362e-06 8.59375e-06 8.61902e-06 8.65018e-06 8.68805e-06 8.73352e-06 8.7876e-06 8.85146e-06 8.92659e-06 9.0148e-06 9.11833e-06 9.24017e-06 9.38439e-06 9.55705e-06 9.76781e-06 1.00331e-05 1.03829e-05 1.10506e-05 1.35205e-05 2.07578e-05 2.92882e-05 3.567e-05 4.4537e-05 5.2068e-05 5.07411e-05 0.000112932 0.000205924 0.000285697 0.00034447 0.000368727 0.000380308 8.51285e-06 8.51273e-06 8.51398e-06 8.51703e-06 8.52238e-06 8.53043e-06 8.54167e-06 8.55677e-06 8.57649e-06 8.60166e-06 8.63317e-06 8.67201e-06 8.71922e-06 8.77593e-06 8.84343e-06 8.92324e-06 9.01703e-06 9.12673e-06 9.25465e-06 9.40372e-06 9.57743e-06 9.77998e-06 1.00165e-05 1.02933e-05 1.06186e-05 1.10032e-05 1.14613e-05 1.20113e-05 1.26767e-05 1.3484e-05 1.44582e-05 1.56143e-05 1.69504e-05 1.84546e-05 2.01402e-05 2.21238e-05 2.48062e-05 3.00058e-05 1.60393e-05 1.60451e-05 1.60522e-05 1.60608e-05 1.60712e-05 1.60838e-05 1.60989e-05 1.61171e-05 1.61391e-05 1.61657e-05 1.61979e-05 1.62369e-05 1.6284e-05 1.6341e-05 1.641e-05 1.64936e-05 1.6595e-05 1.67182e-05 1.68683e-05 1.70518e-05 1.72768e-05 1.75538e-05 1.78965e-05 1.83232e-05 1.88591e-05 1.95387e-05 2.04091e-05 2.15289e-05 2.29593e-05 2.4744e-05 2.68854e-05 2.93327e-05 3.19985e-05 3.48354e-05 3.79559e-05 4.17562e-05 4.68142e-05 5.32873e-05 1.9369e-05 1.9379e-05 1.93908e-05 1.94049e-05 1.94216e-05 1.94415e-05 1.94652e-05 1.94933e-05 1.95269e-05 1.95672e-05 1.96154e-05 1.96732e-05 1.97427e-05 1.98264e-05 1.99274e-05 2.00496e-05 2.01979e-05 2.03783e-05 2.05989e-05 2.08699e-05 2.12049e-05 2.16223e-05 2.21475e-05 2.28161e-05 2.36794e-05 2.48085e-05 2.62918e-05 2.82162e-05 3.0628e-05 3.34997e-05 3.67292e-05 4.01807e-05 4.37635e-05 4.75768e-05 5.20203e-05 5.78832e-05 6.61877e-05 7.71054e-05 2.11143e-05 2.11296e-05 2.11477e-05 2.11692e-05 2.11947e-05 2.12249e-05 2.12609e-05 2.13037e-05 2.13548e-05 2.14158e-05 2.1489e-05 2.15768e-05 2.16824e-05 2.18099e-05 2.19643e-05 2.2152e-05 2.23811e-05 2.26624e-05 2.30104e-05 2.34449e-05 2.39936e-05 2.4697e-05 2.56144e-05 2.68323e-05 2.84634e-05 3.06224e-05 3.33683e-05 3.66515e-05 4.03145e-05 4.41383e-05 4.79059e-05 5.15008e-05 5.51112e-05 5.92898e-05 6.49825e-05 7.34088e-05 8.52389e-05 2.20216e-05 2.20392e-05 2.20599e-05 2.20844e-05 2.21135e-05 2.21481e-05 2.21891e-05 2.2238e-05 2.22963e-05 2.2366e-05 2.24494e-05 2.25497e-05 2.26704e-05 2.28164e-05 2.29936e-05 2.32098e-05 2.34752e-05 2.38036e-05 2.4214e-05 2.47337e-05 2.54027e-05 2.62815e-05 2.74621e-05 2.90742e-05 3.12669e-05 3.41436e-05 3.76778e-05 4.16966e-05 4.59295e-05 5.00518e-05 5.37197e-05 5.6778e-05 5.9598e-05 6.29177e-05 6.81424e-05 7.61729e-05 8.76483e-05 2.24138e-05 2.24323e-05 2.24543e-05 2.24803e-05 2.25112e-05 2.25478e-05 2.25913e-05 2.26432e-05 2.27051e-05 2.2779e-05 2.28677e-05 2.29743e-05 2.3103e-05 2.32589e-05 2.34489e-05 2.36819e-05 2.39699e-05 2.43298e-05 2.47856e-05 2.53733e-05 2.61481e-05 2.71966e-05 2.86501e-05 3.06821e-05 3.34577e-05 3.70271e-05 4.12595e-05 4.58911e-05 5.05628e-05 5.4812e-05 5.82828e-05 6.11548e-05 6.46918e-05 7.03222e-05 7.91723e-05 9.03637e-05 0.000103296 2.24138e-05 2.24323e-05 2.24543e-05 2.24802e-05 2.25111e-05 2.25477e-05 2.25913e-05 2.26432e-05 2.27051e-05 2.27793e-05 2.28683e-05 2.29754e-05 2.3105e-05 2.32625e-05 2.34553e-05 2.3693e-05 2.39893e-05 2.43636e-05 2.48446e-05 2.54768e-05 2.6331e-05 2.7521e-05 2.92185e-05 3.16345e-05 3.49223e-05 3.90691e-05 4.39033e-05 4.91458e-05 5.44368e-05 5.95707e-05 6.51428e-05 7.39391e-05 8.89113e-05 0.000108654 0.000134428 0.000159369 0.000181647 2.20216e-05 2.2039e-05 2.20597e-05 2.20841e-05 2.21131e-05 2.21476e-05 2.21886e-05 2.22376e-05 2.2296e-05 2.2366e-05 2.24501e-05 2.25514e-05 2.26743e-05 2.2824e-05 2.30079e-05 2.32361e-05 2.35229e-05 2.38895e-05 2.4368e-05 2.50102e-05 2.59015e-05 2.71808e-05 2.90523e-05 3.17446e-05 3.53934e-05 3.99608e-05 4.53156e-05 5.1249e-05 5.82918e-05 6.89426e-05 8.88822e-05 0.000128378 0.000175701 0.000219353 0.000266895 0.000310192 0.000350773 2.11143e-05 2.11294e-05 2.11473e-05 2.11685e-05 2.11938e-05 2.12238e-05 2.12596e-05 2.13023e-05 2.13534e-05 2.14146e-05 2.14881e-05 2.15767e-05 2.16843e-05 2.18156e-05 2.19775e-05 2.21793e-05 2.24348e-05 2.27646e-05 2.32013e-05 2.3799e-05 2.46496e-05 2.59054e-05 2.77878e-05 3.0524e-05 3.41981e-05 3.87455e-05 4.45074e-05 5.32477e-05 6.86345e-05 9.89667e-05 0.000155691 0.000210431 0.000241424 0.00027397 0.000322787 0.00037783 0.000439716 1.93789e-05 1.93904e-05 1.94041e-05 1.94204e-05 1.94398e-05 1.9463e-05 1.94907e-05 1.95239e-05 1.95636e-05 1.96111e-05 1.96682e-05 1.9737e-05 1.98204e-05 1.99221e-05 2.00474e-05 2.02041e-05 2.0403e-05 2.06615e-05 2.10073e-05 2.14877e-05 2.21856e-05 2.32409e-05 2.48608e-05 2.72548e-05 3.05108e-05 3.49595e-05 4.32647e-05 6.10964e-05 9.86334e-05 0.000143848 0.000181606 0.00021146 0.000220237 0.000240923 0.000302638 0.000393521 0.000491806 1.60451e-05 1.60517e-05 1.60596e-05 1.60693e-05 1.6081e-05 1.60952e-05 1.61126e-05 1.61336e-05 1.61588e-05 1.6189e-05 1.62252e-05 1.62686e-05 1.63206e-05 1.63833e-05 1.64598e-05 1.65541e-05 1.66721e-05 1.68226e-05 1.70197e-05 1.72868e-05 1.76656e-05 1.82285e-05 1.90964e-05 2.04165e-05 2.25681e-05 2.78334e-05 4.31734e-05 7.26788e-05 0.00010493 0.000137795 0.000165394 0.000163066 0.000190397 0.000267316 0.000423075 0.000543305 0.000602011 8.51283e-06 8.51373e-06 8.51619e-06 8.52079e-06 8.52808e-06 8.53866e-06 8.55313e-06 8.57216e-06 8.59644e-06 8.62675e-06 8.66393e-06 8.70891e-06 8.76275e-06 8.82667e-06 8.90224e-06 8.99139e-06 9.09656e-06 9.22102e-06 9.36937e-06 9.54869e-06 9.77048e-06 1.0056e-05 1.04658e-05 1.15666e-05 1.64154e-05 2.77238e-05 3.65278e-05 4.57513e-05 5.7423e-05 6.50592e-05 5.82705e-05 0.000112431 0.00020556 0.000285316 0.000342022 0.000366822 0.000381079 8.50029e-06 8.4991e-06 8.49934e-06 8.50124e-06 8.50534e-06 8.51216e-06 8.5222e-06 8.53617e-06 8.55484e-06 8.57907e-06 8.6098e-06 8.64801e-06 8.69482e-06 8.75141e-06 8.81912e-06 8.8995e-06 8.99426e-06 9.10547e-06 9.23559e-06 9.38767e-06 9.56547e-06 9.77343e-06 1.00171e-05 1.03034e-05 1.06414e-05 1.10426e-05 1.15226e-05 1.21015e-05 1.28045e-05 1.36599e-05 1.46936e-05 1.59205e-05 1.73409e-05 1.89556e-05 2.082e-05 2.31673e-05 2.69263e-05 3.722e-05 1.60377e-05 1.60435e-05 1.60505e-05 1.6059e-05 1.60693e-05 1.60819e-05 1.60969e-05 1.61152e-05 1.61374e-05 1.61642e-05 1.61968e-05 1.62364e-05 1.62844e-05 1.63426e-05 1.64134e-05 1.64993e-05 1.66039e-05 1.67315e-05 1.68876e-05 1.70792e-05 1.73155e-05 1.7608e-05 1.79721e-05 1.84282e-05 1.90045e-05 1.97397e-05 2.06851e-05 2.19036e-05 2.34582e-05 2.539e-05 2.7695e-05 3.03171e-05 3.31824e-05 3.63103e-05 3.99572e-05 4.47017e-05 5.11087e-05 5.93999e-05 1.93687e-05 1.93788e-05 1.93907e-05 1.94049e-05 1.94217e-05 1.94417e-05 1.94656e-05 1.94941e-05 1.95282e-05 1.9569e-05 1.9618e-05 1.9677e-05 1.9748e-05 1.98337e-05 1.99374e-05 2.00632e-05 2.02164e-05 2.04035e-05 2.06331e-05 2.09165e-05 2.12688e-05 2.17101e-05 2.22687e-05 2.29843e-05 2.39137e-05 2.51343e-05 2.67396e-05 2.88157e-05 3.13998e-05 3.44495e-05 3.78504e-05 4.14736e-05 4.52876e-05 4.95359e-05 5.48378e-05 6.22241e-05 7.264e-05 8.54656e-05 2.11146e-05 2.113e-05 2.11483e-05 2.117e-05 2.11957e-05 2.12263e-05 2.12627e-05 2.13061e-05 2.1358e-05 2.14202e-05 2.14948e-05 2.15845e-05 2.16928e-05 2.18238e-05 2.19829e-05 2.21769e-05 2.24147e-05 2.27081e-05 2.30728e-05 2.35307e-05 2.41127e-05 2.48639e-05 2.58503e-05 2.71669e-05 2.89336e-05 3.12639e-05 3.41999e-05 3.76649e-05 4.1474e-05 4.53925e-05 4.92201e-05 5.29347e-05 5.69157e-05 6.19348e-05 6.9182e-05 7.9929e-05 9.43042e-05 2.20221e-05 2.20398e-05 2.20607e-05 2.20855e-05 2.21149e-05 2.21498e-05 2.21914e-05 2.2241e-05 2.23003e-05 2.23713e-05 2.24564e-05 2.25589e-05 2.26827e-05 2.28328e-05 2.30156e-05 2.32394e-05 2.35154e-05 2.38586e-05 2.42902e-05 2.48402e-05 2.55536e-05 2.64982e-05 2.77765e-05 2.95292e-05 3.19089e-05 3.50018e-05 3.87443e-05 4.29216e-05 4.72266e-05 5.13073e-05 5.48475e-05 5.78733e-05 6.09694e-05 6.51774e-05 7.1902e-05 8.20966e-05 9.61629e-05 2.24143e-05 2.2433e-05 2.24552e-05 2.24815e-05 2.25127e-05 2.25497e-05 2.25939e-05 2.26465e-05 2.27094e-05 2.27848e-05 2.28753e-05 2.29843e-05 2.31163e-05 2.32767e-05 2.34729e-05 2.37145e-05 2.40146e-05 2.43919e-05 2.4873e-05 2.54984e-05 2.63304e-05 2.74668e-05 2.90538e-05 3.12763e-05 3.42921e-05 3.81121e-05 4.255e-05 4.72925e-05 5.19268e-05 5.5983e-05 5.91815e-05 6.22517e-05 6.67451e-05 7.38864e-05 8.44353e-05 9.70929e-05 0.000111682 2.24143e-05 2.2433e-05 2.24551e-05 2.24814e-05 2.25126e-05 2.25497e-05 2.25938e-05 2.26465e-05 2.27095e-05 2.27851e-05 2.28759e-05 2.29856e-05 2.31186e-05 2.32808e-05 2.34801e-05 2.37272e-05 2.40368e-05 2.44306e-05 2.49409e-05 2.56179e-05 2.65425e-05 2.78443e-05 2.97142e-05 3.23729e-05 3.59481e-05 4.03689e-05 4.5404e-05 5.07163e-05 5.5964e-05 6.10192e-05 6.71883e-05 7.9539e-05 9.89055e-05 0.000121936 0.000149614 0.00017441 0.000195213 2.20221e-05 2.20396e-05 2.20604e-05 2.20851e-05 2.21145e-05 2.21494e-05 2.2191e-05 2.22406e-05 2.23001e-05 2.23714e-05 2.24572e-05 2.2561e-05 2.26872e-05 2.28415e-05 2.3032e-05 2.32695e-05 2.35701e-05 2.39572e-05 2.44673e-05 2.51598e-05 2.61329e-05 2.7546e-05 2.96256e-05 3.26022e-05 3.65648e-05 4.14107e-05 4.69641e-05 5.30288e-05 6.07037e-05 7.43203e-05 0.000103072 0.000157042 0.000207742 0.000251386 0.000298492 0.00033974 0.000377187 2.11145e-05 2.11298e-05 2.11478e-05 2.11693e-05 2.11948e-05 2.12252e-05 2.12614e-05 2.13048e-05 2.13567e-05 2.1419e-05 2.1494e-05 2.15848e-05 2.16953e-05 2.18308e-05 2.19985e-05 2.22089e-05 2.24772e-05 2.28266e-05 2.32946e-05 2.39436e-05 2.48812e-05 2.62832e-05 2.83953e-05 3.14357e-05 3.54209e-05 4.02723e-05 4.66493e-05 5.72462e-05 7.80194e-05 0.000124663 0.000193978 0.00024696 0.000275694 0.000309459 0.000359451 0.000413065 0.00047169 1.93787e-05 1.93903e-05 1.94041e-05 1.94204e-05 1.944e-05 1.94634e-05 1.94914e-05 1.9525e-05 1.95653e-05 1.96136e-05 1.96718e-05 1.97422e-05 1.98277e-05 1.99326e-05 2.00624e-05 2.02257e-05 2.04347e-05 2.07089e-05 2.10802e-05 2.1604e-05 2.23779e-05 2.35646e-05 2.53936e-05 2.80555e-05 3.15694e-05 3.66756e-05 4.87303e-05 7.5802e-05 0.000127012 0.000175755 0.000211398 0.000234558 0.000239011 0.00026374 0.000331745 0.000420016 0.000513343 1.60435e-05 1.605e-05 1.60578e-05 1.60674e-05 1.6079e-05 1.60932e-05 1.61105e-05 1.61315e-05 1.61569e-05 1.61874e-05 1.6224e-05 1.6268e-05 1.6321e-05 1.63852e-05 1.64638e-05 1.65612e-05 1.66838e-05 1.68414e-05 1.70497e-05 1.73353e-05 1.77466e-05 1.8365e-05 1.93284e-05 2.08033e-05 2.37282e-05 3.35409e-05 6.03613e-05 9.77743e-05 0.000132817 0.000165254 0.000183487 0.000169246 0.00019426 0.000271541 0.00041967 0.00053109 0.000594241 8.49922e-06 8.49904e-06 8.5004e-06 8.50375e-06 8.5098e-06 8.51915e-06 8.53243e-06 8.55033e-06 8.5736e-06 8.60303e-06 8.63951e-06 8.68401e-06 8.7376e-06 8.8016e-06 8.87765e-06 8.96779e-06 9.07461e-06 9.20167e-06 9.35411e-06 9.54008e-06 9.77335e-06 1.00825e-05 1.06082e-05 1.26417e-05 2.15776e-05 3.60787e-05 4.59962e-05 5.91902e-05 7.25207e-05 7.87962e-05 6.67681e-05 0.000112665 0.00020569 0.000284503 0.000339936 0.000364752 0.000382716 8.48778e-06 8.48554e-06 8.48461e-06 8.48541e-06 8.48821e-06 8.49372e-06 8.50253e-06 8.51534e-06 8.53295e-06 8.55624e-06 8.58616e-06 8.62375e-06 8.67016e-06 8.72665e-06 8.79458e-06 8.87553e-06 8.97128e-06 9.08403e-06 9.21637e-06 9.37152e-06 9.5534e-06 9.76681e-06 1.00177e-05 1.03135e-05 1.0664e-05 1.10817e-05 1.15835e-05 1.21912e-05 1.29317e-05 1.38353e-05 1.49292e-05 1.62299e-05 1.77434e-05 1.94937e-05 2.16046e-05 2.45503e-05 3.0742e-05 5.29985e-05 1.60362e-05 1.60418e-05 1.60487e-05 1.60572e-05 1.60674e-05 1.60798e-05 1.60949e-05 1.61133e-05 1.61356e-05 1.61627e-05 1.61957e-05 1.62359e-05 1.62848e-05 1.63443e-05 1.64167e-05 1.6505e-05 1.66128e-05 1.67448e-05 1.69068e-05 1.71066e-05 1.73542e-05 1.76623e-05 1.8048e-05 1.85341e-05 1.91518e-05 1.99437e-05 2.0966e-05 2.22857e-05 2.39675e-05 2.6051e-05 2.85272e-05 3.134e-05 3.44472e-05 3.79705e-05 4.23449e-05 4.82901e-05 5.62143e-05 6.79794e-05 1.93685e-05 1.93786e-05 1.93906e-05 1.94048e-05 1.94217e-05 1.94419e-05 1.9466e-05 1.94948e-05 1.95293e-05 1.95708e-05 1.96206e-05 1.96807e-05 1.97532e-05 1.98409e-05 1.99473e-05 2.00768e-05 2.02348e-05 2.04285e-05 2.06671e-05 2.0963e-05 2.13323e-05 2.17976e-05 2.23897e-05 2.31526e-05 2.41484e-05 2.54609e-05 2.71884e-05 2.94161e-05 3.21726e-05 3.54025e-05 3.8984e-05 4.28096e-05 4.69395e-05 5.18035e-05 5.82717e-05 6.75387e-05 8.0128e-05 9.44508e-05 2.11149e-05 2.11304e-05 2.11488e-05 2.11707e-05 2.11967e-05 2.12276e-05 2.12645e-05 2.13085e-05 2.13612e-05 2.14245e-05 2.15006e-05 2.15922e-05 2.17031e-05 2.18376e-05 2.20013e-05 2.22017e-05 2.24481e-05 2.27533e-05 2.31346e-05 2.36157e-05 2.42308e-05 2.50295e-05 2.60845e-05 2.74988e-05 2.9399e-05 3.1896e-05 3.50154e-05 3.86544e-05 4.26027e-05 4.66176e-05 5.05386e-05 5.44782e-05 5.90346e-05 6.52166e-05 7.44286e-05 8.7738e-05 0.000104391 2.20226e-05 2.20404e-05 2.20615e-05 2.20865e-05 2.21162e-05 2.21516e-05 2.21937e-05 2.2244e-05 2.23043e-05 2.23765e-05 2.24633e-05 2.25681e-05 2.26949e-05 2.2849e-05 2.30373e-05 2.32687e-05 2.35552e-05 2.39131e-05 2.43654e-05 2.49455e-05 2.57027e-05 2.67122e-05 2.80866e-05 2.99766e-05 3.25362e-05 3.58331e-05 3.97664e-05 4.40802e-05 4.84323e-05 5.24566e-05 5.59138e-05 5.90433e-05 6.26488e-05 6.80566e-05 7.65872e-05 8.92427e-05 0.000105827 2.24148e-05 2.24337e-05 2.24561e-05 2.24826e-05 2.25141e-05 2.25517e-05 2.25964e-05 2.26498e-05 2.27137e-05 2.27904e-05 2.28827e-05 2.29942e-05 2.31295e-05 2.32944e-05 2.34966e-05 2.37467e-05 2.40588e-05 2.44531e-05 2.49592e-05 2.56216e-05 2.65098e-05 2.77328e-05 2.94502e-05 3.18562e-05 3.50983e-05 3.91457e-05 4.37564e-05 4.85667e-05 5.31113e-05 5.69582e-05 5.9978e-05 6.35373e-05 6.93516e-05 7.80864e-05 9.02305e-05 0.000104345 0.000120724 2.24148e-05 2.24337e-05 2.2456e-05 2.24825e-05 2.25141e-05 2.25516e-05 2.25963e-05 2.26498e-05 2.27139e-05 2.27908e-05 2.28835e-05 2.29957e-05 2.31321e-05 2.3299e-05 2.35047e-05 2.37609e-05 2.40836e-05 2.44966e-05 2.50355e-05 2.57566e-05 2.67504e-05 2.81617e-05 3.01995e-05 3.309e-05 3.69289e-05 4.15855e-05 4.67631e-05 5.20749e-05 5.71688e-05 6.21341e-05 6.97989e-05 8.67738e-05 0.000110339 0.000135837 0.000164477 0.000188355 0.000207399 2.20225e-05 2.20402e-05 2.20612e-05 2.20862e-05 2.21158e-05 2.21511e-05 2.21933e-05 2.22437e-05 2.23041e-05 2.23767e-05 2.24643e-05 2.25705e-05 2.26999e-05 2.28588e-05 2.30557e-05 2.33026e-05 2.36166e-05 2.40237e-05 2.45649e-05 2.53067e-05 2.63603e-05 2.79045e-05 3.01856e-05 3.34279e-05 3.76658e-05 4.27341e-05 4.84142e-05 5.46263e-05 6.3123e-05 8.16224e-05 0.000122549 0.000188797 0.000239835 0.000282152 0.000328237 0.000367076 0.000401254 2.11148e-05 2.11301e-05 2.11484e-05 2.117e-05 2.11957e-05 2.12265e-05 2.12632e-05 2.13072e-05 2.13599e-05 2.14233e-05 2.14999e-05 2.15928e-05 2.17062e-05 2.18457e-05 2.20193e-05 2.22381e-05 2.25189e-05 2.28875e-05 2.33861e-05 2.40857e-05 2.51093e-05 2.66561e-05 2.89911e-05 3.23129e-05 3.65618e-05 4.17113e-05 4.881e-05 6.21689e-05 9.12598e-05 0.000158259 0.000235903 0.000283586 0.000310334 0.000345238 0.000395433 0.000446923 0.000502149 1.93785e-05 1.93902e-05 1.9404e-05 1.94205e-05 1.94402e-05 1.94638e-05 1.94921e-05 1.95261e-05 1.95669e-05 1.96161e-05 1.96754e-05 1.97473e-05 1.9835e-05 1.99429e-05 2.00772e-05 2.02469e-05 2.04657e-05 2.07551e-05 2.11515e-05 2.17179e-05 2.2567e-05 2.38832e-05 2.59128e-05 2.88121e-05 3.25416e-05 3.8979e-05 5.68347e-05 9.808e-05 0.000160971 0.000208989 0.000239726 0.00025429 0.00025595 0.000288856 0.000362088 0.000447144 0.000535437 1.60418e-05 1.60483e-05 1.6056e-05 1.60655e-05 1.6077e-05 1.60911e-05 1.61083e-05 1.61294e-05 1.61549e-05 1.61856e-05 1.62227e-05 1.62674e-05 1.63213e-05 1.63869e-05 1.64675e-05 1.65679e-05 1.66949e-05 1.68591e-05 1.70777e-05 1.73803e-05 1.7821e-05 1.8491e-05 1.9546e-05 2.12806e-05 2.58193e-05 4.42928e-05 8.48802e-05 0.000125319 0.000162011 0.000191485 0.000198196 0.000169297 0.000196437 0.000278338 0.00041946 0.000523157 0.000589634 8.48563e-06 8.48428e-06 8.48452e-06 8.48664e-06 8.49137e-06 8.49947e-06 8.51153e-06 8.52828e-06 8.55051e-06 8.57905e-06 8.61483e-06 8.65883e-06 8.71221e-06 8.77631e-06 8.85286e-06 8.94398e-06 9.05242e-06 9.18202e-06 9.33848e-06 9.53102e-06 9.77617e-06 1.01171e-05 1.0868e-05 1.47596e-05 2.93705e-05 4.56758e-05 5.86724e-05 7.47801e-05 8.88746e-05 9.19171e-05 7.55829e-05 0.00011356 0.000206133 0.000284 0.000338407 0.000363312 0.000385141 8.47536e-06 8.47203e-06 8.46992e-06 8.46945e-06 8.47102e-06 8.47515e-06 8.48267e-06 8.4943e-06 8.51083e-06 8.53316e-06 8.56227e-06 8.59924e-06 8.64526e-06 8.70166e-06 8.76982e-06 8.85134e-06 8.9481e-06 9.06239e-06 9.19693e-06 9.35516e-06 9.54119e-06 9.76002e-06 1.00181e-05 1.03233e-05 1.06861e-05 1.112e-05 1.16432e-05 1.22791e-05 1.30567e-05 1.40085e-05 1.51637e-05 1.65426e-05 1.8163e-05 2.00872e-05 2.25584e-05 2.66386e-05 3.86254e-05 8.37391e-05 1.60346e-05 1.60402e-05 1.6047e-05 1.60553e-05 1.60655e-05 1.60778e-05 1.60928e-05 1.61113e-05 1.61337e-05 1.61611e-05 1.61946e-05 1.62353e-05 1.62851e-05 1.63458e-05 1.642e-05 1.65106e-05 1.66216e-05 1.67578e-05 1.69257e-05 1.71337e-05 1.73925e-05 1.77162e-05 1.81236e-05 1.86397e-05 1.9299e-05 2.01482e-05 2.12483e-05 2.26708e-05 2.4483e-05 2.67236e-05 2.93818e-05 3.24108e-05 3.58253e-05 3.98872e-05 4.52244e-05 5.25728e-05 6.24259e-05 8.29264e-05 1.93683e-05 1.93784e-05 1.93904e-05 1.94047e-05 1.94217e-05 1.94421e-05 1.94664e-05 1.94955e-05 1.95305e-05 1.95725e-05 1.96232e-05 1.96843e-05 1.97583e-05 1.9848e-05 1.99571e-05 2.00901e-05 2.0253e-05 2.04532e-05 2.07007e-05 2.10087e-05 2.13951e-05 2.18839e-05 2.25092e-05 2.33189e-05 2.43805e-05 2.57839e-05 2.76323e-05 3.00107e-05 3.29407e-05 3.63564e-05 4.01366e-05 4.42152e-05 4.87816e-05 5.44925e-05 6.2466e-05 7.3866e-05 8.84233e-05 0.000103635 2.11151e-05 2.11308e-05 2.11493e-05 2.11714e-05 2.11976e-05 2.12289e-05 2.12662e-05 2.13109e-05 2.13644e-05 2.14288e-05 2.15063e-05 2.15998e-05 2.17132e-05 2.18511e-05 2.20195e-05 2.2226e-05 2.24809e-05 2.27978e-05 2.31953e-05 2.36991e-05 2.43466e-05 2.51915e-05 2.63132e-05 2.78223e-05 2.98514e-05 3.25085e-05 3.58038e-05 3.96108e-05 4.36977e-05 4.78257e-05 5.19022e-05 5.62123e-05 6.15936e-05 6.92987e-05 8.08278e-05 9.66947e-05 0.000115097 2.2023e-05 2.20409e-05 2.20622e-05 2.20875e-05 2.21175e-05 2.21533e-05 2.2196e-05 2.2247e-05 2.23082e-05 2.23817e-05 2.24702e-05 2.25771e-05 2.27069e-05 2.28651e-05 2.30588e-05 2.32976e-05 2.35943e-05 2.39665e-05 2.44391e-05 2.50482e-05 2.58478e-05 2.69198e-05 2.83862e-05 3.04065e-05 3.31348e-05 3.66203e-05 4.07259e-05 4.51565e-05 4.9539e-05 5.35174e-05 5.69797e-05 6.03889e-05 6.47895e-05 7.16456e-05 8.23118e-05 9.75476e-05 0.000116334 2.24153e-05 2.24344e-05 2.24569e-05 2.24837e-05 2.25156e-05 2.25535e-05 2.25988e-05 2.2653e-05 2.27179e-05 2.2796e-05 2.28901e-05 2.3004e-05 2.31425e-05 2.33117e-05 2.352e-05 2.37783e-05 2.41021e-05 2.45129e-05 2.5043e-05 2.5741e-05 2.66832e-05 2.79885e-05 2.9829e-05 3.2406e-05 3.58543e-05 4.01017e-05 4.48502e-05 4.96846e-05 5.41004e-05 5.77387e-05 6.07961e-05 6.51717e-05 7.25055e-05 8.28372e-05 9.6442e-05 0.000112061 0.0001303 2.24153e-05 2.24343e-05 2.24569e-05 2.24837e-05 2.25155e-05 2.25535e-05 2.25988e-05 2.2653e-05 2.27181e-05 2.27964e-05 2.28909e-05 2.30056e-05 2.31453e-05 2.33168e-05 2.35289e-05 2.3794e-05 2.41294e-05 2.45608e-05 2.51272e-05 2.58903e-05 2.695e-05 2.84647e-05 3.06595e-05 3.3762e-05 3.7832e-05 4.26779e-05 4.79309e-05 5.31678e-05 5.79589e-05 6.30016e-05 7.32467e-05 9.54896e-05 0.00012251 0.000149653 0.000178436 0.000200715 0.000218241 2.20229e-05 2.20408e-05 2.2062e-05 2.20871e-05 2.21171e-05 2.21528e-05 2.21955e-05 2.22466e-05 2.2308e-05 2.23819e-05 2.24713e-05 2.25799e-05 2.27125e-05 2.28759e-05 2.30791e-05 2.33348e-05 2.36618e-05 2.40883e-05 2.46591e-05 2.54479e-05 2.65777e-05 2.82449e-05 3.0711e-05 3.41884e-05 3.86522e-05 4.38788e-05 4.9612e-05 5.59032e-05 6.58045e-05 9.16194e-05 0.000147388 0.000221091 0.000270175 0.000310599 0.000355529 0.000391923 0.000422786 2.1115e-05 2.11305e-05 2.11489e-05 2.11707e-05 2.11967e-05 2.12278e-05 2.12649e-05 2.13095e-05 2.13631e-05 2.14276e-05 2.15057e-05 2.16007e-05 2.17169e-05 2.18604e-05 2.20396e-05 2.22666e-05 2.25594e-05 2.29464e-05 2.3474e-05 2.42216e-05 2.53268e-05 2.70099e-05 2.955e-05 3.31127e-05 3.75697e-05 4.29922e-05 5.10058e-05 6.83856e-05 0.000109943 0.000196776 0.000276747 0.0003194 0.000344678 0.000380365 0.000430063 0.00047907 0.000530927 1.93783e-05 1.939e-05 1.94039e-05 1.94205e-05 1.94403e-05 1.94641e-05 1.94927e-05 1.95271e-05 1.95685e-05 1.96184e-05 1.96789e-05 1.97523e-05 1.98421e-05 1.9953e-05 2.00916e-05 2.02675e-05 2.04956e-05 2.07995e-05 2.12193e-05 2.1826e-05 2.27456e-05 2.41824e-05 2.6391e-05 2.9472e-05 3.35185e-05 4.25269e-05 6.85878e-05 0.000125987 0.000197441 0.000240958 0.000264769 0.000271328 0.000272976 0.000316957 0.000393675 0.000474596 0.000557846 1.60402e-05 1.60465e-05 1.60542e-05 1.60636e-05 1.6075e-05 1.6089e-05 1.61062e-05 1.61272e-05 1.61528e-05 1.61838e-05 1.62213e-05 1.62666e-05 1.63215e-05 1.63884e-05 1.6471e-05 1.65741e-05 1.67051e-05 1.68751e-05 1.71026e-05 1.74198e-05 1.7885e-05 1.85991e-05 1.97474e-05 2.19635e-05 2.98493e-05 6.18445e-05 0.000112404 0.000153344 0.000191851 0.000213672 0.000203761 0.000167482 0.000199261 0.000287394 0.000421269 0.00052024 0.000587966 8.47204e-06 8.46954e-06 8.4685e-06 8.46944e-06 8.47285e-06 8.47963e-06 8.49045e-06 8.50602e-06 8.52719e-06 8.55483e-06 8.5899e-06 8.63342e-06 8.68659e-06 8.75082e-06 8.82788e-06 8.91998e-06 9.03e-06 9.16208e-06 9.32241e-06 9.52126e-06 9.7788e-06 1.01692e-05 1.13671e-05 1.84073e-05 3.88725e-05 5.67971e-05 7.38597e-05 9.12183e-05 0.000104797 0.000103347 8.36269e-05 0.000115746 0.000206951 0.000283476 0.000337234 0.000362639 0.000387754 8.46303e-06 8.45858e-06 8.45526e-06 8.45344e-06 8.45371e-06 8.4565e-06 8.46266e-06 8.47308e-06 8.4885e-06 8.50986e-06 8.53815e-06 8.57449e-06 8.62014e-06 8.67646e-06 8.74485e-06 8.82695e-06 8.92473e-06 9.04055e-06 9.17728e-06 9.33855e-06 9.52868e-06 9.75297e-06 1.0018e-05 1.03325e-05 1.07072e-05 1.11569e-05 1.17008e-05 1.23641e-05 1.31781e-05 1.41779e-05 1.53962e-05 1.68603e-05 1.86083e-05 2.0765e-05 2.38113e-05 3.03419e-05 5.49302e-05 0.000132424 1.60331e-05 1.60386e-05 1.60453e-05 1.60534e-05 1.60634e-05 1.60757e-05 1.60907e-05 1.61092e-05 1.61318e-05 1.61595e-05 1.61933e-05 1.62347e-05 1.62853e-05 1.63473e-05 1.64231e-05 1.65161e-05 1.66301e-05 1.67706e-05 1.69443e-05 1.71603e-05 1.74301e-05 1.77691e-05 1.81978e-05 1.87436e-05 1.94442e-05 2.03506e-05 2.15286e-05 2.30549e-05 2.50004e-05 2.74051e-05 3.02609e-05 3.35452e-05 3.73603e-05 4.21411e-05 4.86752e-05 5.75798e-05 7.09472e-05 0.000108454 1.9368e-05 1.93782e-05 1.93902e-05 1.94046e-05 1.94217e-05 1.94422e-05 1.94667e-05 1.94962e-05 1.95316e-05 1.95742e-05 1.96257e-05 1.96879e-05 1.97633e-05 1.9855e-05 1.99667e-05 2.01032e-05 2.02707e-05 2.04773e-05 2.07335e-05 2.10535e-05 2.14564e-05 2.19682e-05 2.26258e-05 2.3481e-05 2.46067e-05 2.60988e-05 2.80657e-05 3.05935e-05 3.36994e-05 3.73117e-05 4.13203e-05 4.57267e-05 5.0889e-05 5.77214e-05 6.75199e-05 8.11139e-05 9.7276e-05 0.000115035 2.11154e-05 2.11311e-05 2.11498e-05 2.1172e-05 2.11985e-05 2.12301e-05 2.12679e-05 2.13132e-05 2.13675e-05 2.14329e-05 2.15118e-05 2.16073e-05 2.17232e-05 2.18645e-05 2.20373e-05 2.22499e-05 2.2513e-05 2.28412e-05 2.32543e-05 2.37801e-05 2.44585e-05 2.53477e-05 2.65328e-05 2.81318e-05 3.02826e-05 3.30915e-05 3.65555e-05 4.05279e-05 4.47618e-05 4.90375e-05 5.33628e-05 5.82268e-05 6.47229e-05 7.43129e-05 8.83602e-05 0.0001065 0.000126145 2.20234e-05 2.20415e-05 2.20629e-05 2.20884e-05 2.21188e-05 2.21549e-05 2.21982e-05 2.22499e-05 2.2312e-05 2.23867e-05 2.24769e-05 2.2586e-05 2.27187e-05 2.28808e-05 2.30798e-05 2.33258e-05 2.36323e-05 2.40183e-05 2.45102e-05 2.51471e-05 2.59867e-05 2.71172e-05 2.86691e-05 3.08091e-05 3.36911e-05 3.73474e-05 4.16074e-05 4.61398e-05 5.055e-05 5.45237e-05 5.81149e-05 6.20118e-05 6.75012e-05 7.60489e-05 8.91058e-05 0.000106803 0.000127334 2.24158e-05 2.2435e-05 2.24578e-05 2.24848e-05 2.2517e-05 2.25554e-05 2.26012e-05 2.26562e-05 2.27221e-05 2.28015e-05 2.28973e-05 2.30136e-05 2.31552e-05 2.33287e-05 2.35428e-05 2.38091e-05 2.4144e-05 2.45707e-05 2.51235e-05 2.5855e-05 2.68472e-05 2.82282e-05 3.01802e-05 3.29095e-05 3.65383e-05 4.09549e-05 4.58053e-05 5.06228e-05 5.4893e-05 5.8362e-05 6.17158e-05 6.72394e-05 7.61416e-05 8.79901e-05 0.000102974 0.000120196 0.000140182 2.24158e-05 2.2435e-05 2.24577e-05 2.24847e-05 2.25169e-05 2.25553e-05 2.26012e-05 2.26562e-05 2.27223e-05 2.28019e-05 2.28983e-05 2.30153e-05 2.31583e-05 2.33342e-05 2.35525e-05 2.38261e-05 2.41735e-05 2.46224e-05 2.52146e-05 2.60166e-05 2.71363e-05 2.87443e-05 3.10784e-05 3.43643e-05 3.8624e-05 4.36049e-05 4.88594e-05 5.3896e-05 5.83437e-05 6.39083e-05 7.77107e-05 0.0001051 0.000134689 0.000162762 0.000191029 0.000211389 0.000227879 2.20233e-05 2.20413e-05 2.20627e-05 2.20881e-05 2.21184e-05 2.21545e-05 2.21977e-05 2.22496e-05 2.23119e-05 2.23871e-05 2.24782e-05 2.2589e-05 2.27248e-05 2.28926e-05 2.31018e-05 2.3366e-05 2.37053e-05 2.41499e-05 2.47483e-05 2.558e-05 2.67786e-05 2.85551e-05 3.11803e-05 3.48492e-05 3.948e-05 4.47926e-05 5.04536e-05 5.67647e-05 6.89405e-05 0.000104503 0.000175403 0.000251512 0.000297355 0.000335995 0.000379981 0.000414089 0.000441673 2.11152e-05 2.11308e-05 2.11493e-05 2.11713e-05 2.11976e-05 2.1229e-05 2.12666e-05 2.13118e-05 2.13662e-05 2.14318e-05 2.15114e-05 2.16083e-05 2.17273e-05 2.18747e-05 2.20593e-05 2.2294e-05 2.25981e-05 2.30021e-05 2.35564e-05 2.43476e-05 2.55256e-05 2.73283e-05 3.00425e-05 3.37907e-05 3.83875e-05 4.4056e-05 5.325e-05 7.6396e-05 0.000135928 0.000236827 0.000314295 0.000353561 0.000377893 0.000413768 0.000462743 0.000509292 0.000557838 1.9378e-05 1.93898e-05 1.94038e-05 1.94205e-05 1.94404e-05 1.94644e-05 1.94933e-05 1.95281e-05 1.957e-05 1.96207e-05 1.96822e-05 1.97571e-05 1.9849e-05 1.99628e-05 2.01054e-05 2.02872e-05 2.05239e-05 2.08411e-05 2.12822e-05 2.19245e-05 2.29057e-05 2.44454e-05 2.67949e-05 2.99558e-05 3.4693e-05 4.75467e-05 8.37582e-05 0.000156668 0.000231809 0.000269259 0.000285093 0.000284776 0.00029256 0.000348463 0.000426245 0.000501882 0.000580303 1.60385e-05 1.60447e-05 1.60523e-05 1.60616e-05 1.60729e-05 1.60868e-05 1.61039e-05 1.61249e-05 1.61507e-05 1.61819e-05 1.62198e-05 1.62657e-05 1.63215e-05 1.63897e-05 1.64741e-05 1.65798e-05 1.67142e-05 1.68892e-05 1.71238e-05 1.7452e-05 1.79345e-05 1.86816e-05 1.99438e-05 2.31014e-05 3.66771e-05 8.42891e-05 0.000139381 0.000180069 0.000218978 0.000230487 0.000201947 0.000163348 0.000203605 0.000300387 0.000427904 0.000520695 0.000589004 8.45847e-06 8.45478e-06 8.45247e-06 8.45208e-06 8.45427e-06 8.45966e-06 8.46919e-06 8.48357e-06 8.50366e-06 8.5304e-06 8.56476e-06 8.60782e-06 8.6608e-06 8.72516e-06 8.80275e-06 8.89581e-06 9.00739e-06 9.14183e-06 9.30578e-06 9.51055e-06 9.78141e-06 1.0255e-05 1.22935e-05 2.36418e-05 4.92746e-05 6.97906e-05 8.99604e-05 0.000107027 0.000118615 0.00011331 9.01988e-05 0.000119541 0.000208187 0.000283544 0.00033716 0.000362881 0.000390968 8.45082e-06 8.44521e-06 8.44062e-06 8.43745e-06 8.43628e-06 8.43779e-06 8.44256e-06 8.4517e-06 8.46599e-06 8.48634e-06 8.5138e-06 8.54952e-06 8.59482e-06 8.65107e-06 8.71969e-06 8.80239e-06 8.90117e-06 9.01851e-06 9.15741e-06 9.32165e-06 9.51578e-06 9.74541e-06 1.00175e-05 1.03408e-05 1.07271e-05 1.11918e-05 1.17555e-05 1.24453e-05 1.32949e-05 1.43429e-05 1.56273e-05 1.71869e-05 1.90928e-05 2.15767e-05 2.56607e-05 3.76443e-05 8.47824e-05 0.000191889 1.60316e-05 1.6037e-05 1.60435e-05 1.60515e-05 1.60614e-05 1.60735e-05 1.60885e-05 1.61071e-05 1.61299e-05 1.61578e-05 1.6192e-05 1.6234e-05 1.62855e-05 1.63486e-05 1.64261e-05 1.65213e-05 1.66384e-05 1.6783e-05 1.69624e-05 1.71862e-05 1.74667e-05 1.78205e-05 1.82697e-05 1.88445e-05 1.95856e-05 2.05482e-05 2.18037e-05 2.34342e-05 2.55164e-05 2.80945e-05 3.1171e-05 3.47671e-05 3.91044e-05 4.48106e-05 5.2728e-05 6.35301e-05 8.50169e-05 0.000147054 1.93678e-05 1.9378e-05 1.939e-05 1.94044e-05 1.94216e-05 1.94422e-05 1.9467e-05 1.94968e-05 1.95326e-05 1.95759e-05 1.96281e-05 1.96914e-05 1.97683e-05 1.98618e-05 1.99761e-05 2.0116e-05 2.0288e-05 2.05008e-05 2.07654e-05 2.1097e-05 2.15157e-05 2.20496e-05 2.27382e-05 2.3637e-05 2.48241e-05 2.64015e-05 2.84836e-05 3.11596e-05 3.44461e-05 3.8272e-05 4.25528e-05 4.73884e-05 5.33452e-05 6.15946e-05 7.34502e-05 8.90794e-05 0.000106327 0.000132438 2.11156e-05 2.11314e-05 2.11503e-05 2.11727e-05 2.11994e-05 2.12313e-05 2.12695e-05 2.13154e-05 2.13706e-05 2.1437e-05 2.15173e-05 2.16146e-05 2.1733e-05 2.18774e-05 2.20546e-05 2.2273e-05 2.25441e-05 2.28831e-05 2.33112e-05 2.38577e-05 2.45653e-05 2.54959e-05 2.67399e-05 2.84221e-05 3.06856e-05 3.36366e-05 3.7263e-05 4.14028e-05 4.58024e-05 5.02815e-05 5.49791e-05 6.0615e-05 6.85389e-05 8.03176e-05 9.68668e-05 0.000116779 0.000137569 2.20238e-05 2.2042e-05 2.20637e-05 2.20894e-05 2.212e-05 2.21566e-05 2.22003e-05 2.22528e-05 2.23158e-05 2.23917e-05 2.24835e-05 2.25947e-05 2.27303e-05 2.28961e-05 2.31002e-05 2.3353e-05 2.3669e-05 2.40681e-05 2.45783e-05 2.52408e-05 2.61172e-05 2.73009e-05 2.89293e-05 3.11756e-05 3.41931e-05 3.80008e-05 4.23991e-05 4.70263e-05 5.14799e-05 5.55207e-05 5.93939e-05 6.39983e-05 7.08223e-05 8.1332e-05 9.68721e-05 0.000116697 0.000138508 2.24163e-05 2.24356e-05 2.24586e-05 2.24859e-05 2.25184e-05 2.25572e-05 2.26036e-05 2.26593e-05 2.27262e-05 2.28069e-05 2.29044e-05 2.3023e-05 2.31676e-05 2.33453e-05 2.35649e-05 2.38389e-05 2.41843e-05 2.46258e-05 2.51997e-05 2.59616e-05 2.69987e-05 2.84462e-05 3.0494e-05 3.33517e-05 3.71305e-05 4.16831e-05 4.66003e-05 5.13696e-05 5.55062e-05 5.89125e-05 6.2854e-05 6.97497e-05 8.01831e-05 9.34006e-05 0.000109746 0.00012867 0.000150038 2.24163e-05 2.24356e-05 2.24585e-05 2.24858e-05 2.25183e-05 2.25571e-05 2.26036e-05 2.26593e-05 2.27264e-05 2.28074e-05 2.29054e-05 2.30248e-05 2.3171e-05 2.33512e-05 2.35753e-05 2.38569e-05 2.42158e-05 2.46808e-05 2.52964e-05 2.61329e-05 2.73048e-05 2.89916e-05 3.14405e-05 3.48736e-05 3.92736e-05 4.43276e-05 4.94967e-05 5.42122e-05 5.84587e-05 6.50155e-05 8.30503e-05 0.00011489 0.000146277 0.000174686 0.000201865 0.00022047 0.000236357 2.20237e-05 2.20419e-05 2.20634e-05 2.2089e-05 2.21196e-05 2.21561e-05 2.21999e-05 2.22524e-05 2.23157e-05 2.23921e-05 2.24849e-05 2.2598e-05 2.27368e-05 2.29087e-05 2.31236e-05 2.33959e-05 2.37466e-05 2.42078e-05 2.48307e-05 2.56998e-05 2.69567e-05 2.88227e-05 3.15733e-05 3.538e-05 4.01103e-05 4.53878e-05 5.08359e-05 5.72063e-05 7.2746e-05 0.000119209 0.000202345 0.000278119 0.000320421 0.000357971 0.000401448 0.00043343 0.00045787 2.11154e-05 2.11311e-05 2.11498e-05 2.1172e-05 2.11985e-05 2.12302e-05 2.12683e-05 2.1314e-05 2.13692e-05 2.14359e-05 2.15169e-05 2.16158e-05 2.17375e-05 2.18885e-05 2.20782e-05 2.23201e-05 2.26346e-05 2.3054e-05 2.36316e-05 2.44597e-05 2.56975e-05 2.7595e-05 3.04406e-05 3.43087e-05 3.89562e-05 4.48822e-05 5.54264e-05 8.60646e-05 0.00016472 0.000275032 0.000348213 0.00038488 0.000408997 0.000444374 0.000493009 0.000537354 0.000582661 1.93777e-05 1.93896e-05 1.94036e-05 1.94204e-05 1.94405e-05 1.94647e-05 1.94938e-05 1.9529e-05 1.95715e-05 1.9623e-05 1.96855e-05 1.97618e-05 1.98557e-05 1.99722e-05 2.01186e-05 2.03058e-05 2.05503e-05 2.08792e-05 2.13382e-05 2.20095e-05 2.30386e-05 2.46553e-05 2.70956e-05 3.03121e-05 3.60698e-05 5.39625e-05 0.000101627 0.000187614 0.000261389 0.000291895 0.000301003 0.000297909 0.000317501 0.000382196 0.000458798 0.000528642 0.000602097 1.60367e-05 1.60429e-05 1.60504e-05 1.60595e-05 1.60707e-05 1.60845e-05 1.61016e-05 1.61227e-05 1.61485e-05 1.618e-05 1.62182e-05 1.62647e-05 1.63213e-05 1.63908e-05 1.64769e-05 1.65848e-05 1.67222e-05 1.6901e-05 1.71405e-05 1.74745e-05 1.79618e-05 1.8725e-05 2.01485e-05 2.48469e-05 4.61687e-05 0.000106554 0.000162338 0.000203837 0.000238372 0.000237805 0.000195396 0.000162034 0.000212104 0.000318046 0.00043825 0.000522847 0.000592088 8.44493e-06 8.44001e-06 8.43641e-06 8.43467e-06 8.43558e-06 8.43961e-06 8.44779e-06 8.46094e-06 8.47995e-06 8.50578e-06 8.53944e-06 8.58204e-06 8.63485e-06 8.69939e-06 8.7775e-06 8.87153e-06 8.98462e-06 9.12129e-06 9.28853e-06 9.49859e-06 9.78422e-06 1.03875e-05 1.36439e-05 2.97652e-05 6.06232e-05 8.36067e-05 0.000105288 0.000121022 0.000129272 0.000118672 9.56354e-05 0.000124819 0.000210691 0.000283892 0.000337447 0.000363524 0.000394103 8.43873e-06 8.43193e-06 8.42603e-06 8.42148e-06 8.41886e-06 8.41897e-06 8.42242e-06 8.4302e-06 8.44331e-06 8.46263e-06 8.48924e-06 8.52436e-06 8.56932e-06 8.62551e-06 8.69438e-06 8.77767e-06 8.87745e-06 8.9963e-06 9.13733e-06 9.30446e-06 9.50245e-06 9.7372e-06 1.0016e-05 1.03481e-05 1.07453e-05 1.12242e-05 1.18068e-05 1.25219e-05 1.34063e-05 1.4503e-05 1.58578e-05 1.75276e-05 1.96364e-05 2.26162e-05 2.87853e-05 5.19047e-05 0.000130346 0.000242861 1.60302e-05 1.60354e-05 1.60417e-05 1.60496e-05 1.60593e-05 1.60713e-05 1.60864e-05 1.6105e-05 1.61279e-05 1.61561e-05 1.61907e-05 1.62332e-05 1.62855e-05 1.63499e-05 1.64289e-05 1.65262e-05 1.66463e-05 1.67949e-05 1.69799e-05 1.72111e-05 1.7502e-05 1.787e-05 1.8339e-05 1.89414e-05 1.97215e-05 2.07388e-05 2.20704e-05 2.38056e-05 2.60286e-05 2.87929e-05 3.21224e-05 3.61045e-05 4.11138e-05 4.79501e-05 5.73874e-05 7.1264e-05 0.000108218 0.000199986 1.93676e-05 1.93777e-05 1.93898e-05 1.94042e-05 1.94215e-05 1.94423e-05 1.94672e-05 1.94973e-05 1.95336e-05 1.95775e-05 1.96305e-05 1.96948e-05 1.9773e-05 1.98684e-05 1.99851e-05 2.01283e-05 2.03047e-05 2.05234e-05 2.07961e-05 2.11387e-05 2.15725e-05 2.21273e-05 2.28451e-05 2.37851e-05 2.50301e-05 2.66886e-05 2.88819e-05 3.17054e-05 3.51799e-05 3.92437e-05 4.38567e-05 4.9251e-05 5.62315e-05 6.61751e-05 8.01705e-05 9.75499e-05 0.000116894 0.000156891 2.11158e-05 2.11317e-05 2.11507e-05 2.11732e-05 2.12002e-05 2.12325e-05 2.12712e-05 2.13176e-05 2.13735e-05 2.1441e-05 2.15226e-05 2.16217e-05 2.17425e-05 2.189e-05 2.20714e-05 2.22954e-05 2.2574e-05 2.29234e-05 2.33654e-05 2.39313e-05 2.46659e-05 2.56343e-05 2.69317e-05 2.86887e-05 3.10544e-05 3.41373e-05 3.79214e-05 4.22362e-05 4.68325e-05 5.15906e-05 5.68119e-05 6.34647e-05 7.31221e-05 8.72661e-05 0.000106059 0.000127259 0.00015097 2.20242e-05 2.20426e-05 2.20643e-05 2.20903e-05 2.21212e-05 2.21582e-05 2.22024e-05 2.22555e-05 2.23195e-05 2.23966e-05 2.24899e-05 2.26032e-05 2.27415e-05 2.29109e-05 2.31199e-05 2.33793e-05 2.37043e-05 2.41155e-05 2.46425e-05 2.53284e-05 2.62376e-05 2.74677e-05 2.9162e-05 3.14986e-05 3.46317e-05 3.85709e-05 4.30952e-05 4.78198e-05 5.23521e-05 5.65588e-05 6.08848e-05 6.64161e-05 7.47993e-05 8.74903e-05 0.000105388 0.000126914 0.000149668 2.24168e-05 2.24362e-05 2.24594e-05 2.24869e-05 2.25197e-05 2.25589e-05 2.26059e-05 2.26623e-05 2.27302e-05 2.28121e-05 2.29113e-05 2.30321e-05 2.31797e-05 2.33613e-05 2.35862e-05 2.38674e-05 2.42226e-05 2.46778e-05 2.52707e-05 2.60594e-05 2.7135e-05 2.86377e-05 3.07627e-05 3.37208e-05 3.76154e-05 4.22691e-05 4.72233e-05 5.19313e-05 5.59715e-05 5.9505e-05 6.42853e-05 7.26509e-05 8.44926e-05 9.89524e-05 0.000116735 0.000137293 0.000159457 2.24167e-05 2.24362e-05 2.24593e-05 2.24868e-05 2.25196e-05 2.25589e-05 2.26059e-05 2.26624e-05 2.27304e-05 2.28127e-05 2.29124e-05 2.30341e-05 2.31833e-05 2.33675e-05 2.35971e-05 2.38864e-05 2.42557e-05 2.47353e-05 2.53715e-05 2.62374e-05 2.74515e-05 2.91992e-05 3.17322e-05 3.5269e-05 3.97561e-05 4.47994e-05 4.97978e-05 5.42763e-05 5.84227e-05 6.6432e-05 8.88872e-05 0.000124301 0.000156846 0.000185112 0.000210805 0.000228092 0.000243542 2.20241e-05 2.20424e-05 2.20641e-05 2.20899e-05 2.21208e-05 2.21577e-05 2.2202e-05 2.22552e-05 2.23194e-05 2.2397e-05 2.24914e-05 2.26067e-05 2.27484e-05 2.29243e-05 2.31446e-05 2.34243e-05 2.37854e-05 2.42613e-05 2.49051e-05 2.58047e-05 2.71062e-05 2.90369e-05 3.18721e-05 3.57544e-05 4.04856e-05 4.56413e-05 5.09193e-05 5.73772e-05 7.69446e-05 0.000134058 0.00022583 0.00029964 0.000338896 0.000376514 0.000419959 0.000449904 0.000471382 2.11156e-05 2.11314e-05 2.11502e-05 2.11726e-05 2.11993e-05 2.12314e-05 2.12699e-05 2.13162e-05 2.13721e-05 2.14399e-05 2.15223e-05 2.16231e-05 2.17473e-05 2.19018e-05 2.20962e-05 2.23447e-05 2.26686e-05 2.31011e-05 2.3698e-05 2.45544e-05 2.58351e-05 2.77954e-05 3.0707e-05 3.4604e-05 3.92261e-05 4.53358e-05 5.7262e-05 9.60594e-05 0.000191243 0.000308045 0.000377855 0.000412874 0.00043683 0.000471364 0.000520598 0.000563033 0.000605205 1.93774e-05 1.93893e-05 1.94034e-05 1.94203e-05 1.94405e-05 1.94649e-05 1.94943e-05 1.95299e-05 1.95729e-05 1.96251e-05 1.96887e-05 1.97663e-05 1.98621e-05 1.99811e-05 2.01311e-05 2.03232e-05 2.05746e-05 2.0913e-05 2.13859e-05 2.20775e-05 2.31366e-05 2.47853e-05 2.72488e-05 3.0552e-05 3.74942e-05 6.08265e-05 0.000118149 0.000214758 0.000285467 0.000309785 0.000314403 0.000313566 0.000348606 0.000416082 0.000490395 0.000554488 0.000622895 1.6035e-05 1.6041e-05 1.60484e-05 1.60574e-05 1.60685e-05 1.60822e-05 1.60993e-05 1.61203e-05 1.61463e-05 1.6178e-05 1.62166e-05 1.62636e-05 1.63211e-05 1.63917e-05 1.64792e-05 1.65891e-05 1.67288e-05 1.69103e-05 1.71521e-05 1.74854e-05 1.79711e-05 1.8739e-05 2.03603e-05 2.70533e-05 5.61009e-05 0.000126014 0.000179282 0.000219538 0.00024828 0.00023541 0.000182031 0.000163204 0.000226587 0.000339746 0.000449267 0.000527927 0.000598173 0.000684875 8.43146e-06 8.42529e-06 8.42036e-06 8.41727e-06 8.41677e-06 8.4195e-06 8.42627e-06 8.43817e-06 8.45608e-06 8.48099e-06 8.51395e-06 8.55612e-06 8.6088e-06 8.67353e-06 8.75219e-06 8.84719e-06 8.96175e-06 9.10049e-06 9.27063e-06 9.48524e-06 9.78658e-06 1.05574e-05 1.52386e-05 3.60636e-05 7.19271e-05 9.6732e-05 0.00011757 0.000130578 0.000132751 0.000119371 9.93863e-05 0.000131019 0.000214738 0.000284484 0.000338104 0.000364219 0.000396941 0.000443825 8.42679e-06 8.41877e-06 8.41154e-06 8.40558e-06 8.40151e-06 8.40012e-06 8.40225e-06 8.40863e-06 8.42049e-06 8.43874e-06 8.4645e-06 8.49903e-06 8.54367e-06 8.59981e-06 8.66893e-06 8.75281e-06 8.85363e-06 8.97397e-06 9.11707e-06 9.28698e-06 9.48865e-06 9.72826e-06 1.00134e-05 1.03537e-05 1.07616e-05 1.12539e-05 1.18541e-05 1.25934e-05 1.35118e-05 1.46583e-05 1.60899e-05 1.7891e-05 2.02716e-05 2.40815e-05 3.4556e-05 7.69744e-05 0.000186596 0.0002755 1.60287e-05 1.60337e-05 1.60399e-05 1.60476e-05 1.60572e-05 1.60692e-05 1.60842e-05 1.61028e-05 1.61259e-05 1.61543e-05 1.61893e-05 1.62324e-05 1.62855e-05 1.63509e-05 1.64315e-05 1.65309e-05 1.66538e-05 1.68063e-05 1.69965e-05 1.72349e-05 1.75356e-05 1.79172e-05 1.84049e-05 1.90334e-05 1.98504e-05 2.09204e-05 2.23266e-05 2.41669e-05 2.65361e-05 2.95034e-05 3.31276e-05 3.75902e-05 4.34404e-05 5.1574e-05 6.27601e-05 8.28435e-05 0.000142277 0.000262834 1.93673e-05 1.93775e-05 1.93896e-05 1.9404e-05 1.94214e-05 1.94423e-05 1.94675e-05 1.94979e-05 1.95346e-05 1.9579e-05 1.96327e-05 1.96981e-05 1.97776e-05 1.98748e-05 1.99938e-05 2.01401e-05 2.03208e-05 2.05452e-05 2.08255e-05 2.11784e-05 2.16263e-05 2.22007e-05 2.29457e-05 2.39238e-05 2.52227e-05 2.69574e-05 2.92577e-05 3.22287e-05 3.59018e-05 4.02359e-05 4.52578e-05 5.13662e-05 5.96137e-05 7.14627e-05 8.751e-05 0.000106336 0.000132154 0.000194066 2.1116e-05 2.1132e-05 2.11511e-05 2.11738e-05 2.1201e-05 2.12336e-05 2.12727e-05 2.13198e-05 2.13764e-05 2.14449e-05 2.15278e-05 2.16286e-05 2.17516e-05 2.19022e-05 2.20875e-05 2.23169e-05 2.26026e-05 2.29616e-05 2.34166e-05 2.40003e-05 2.47593e-05 2.57615e-05 2.71061e-05 2.89289e-05 3.13852e-05 3.45897e-05 3.85288e-05 4.3032e-05 4.78677e-05 5.29991e-05 5.89187e-05 6.68456e-05 7.84929e-05 9.49982e-05 0.000115644 0.000137898 0.000166878 2.20246e-05 2.20431e-05 2.2065e-05 2.20911e-05 2.21224e-05 2.21597e-05 2.22045e-05 2.22583e-05 2.2323e-05 2.24013e-05 2.24961e-05 2.26114e-05 2.27523e-05 2.29253e-05 2.31388e-05 2.34045e-05 2.37377e-05 2.41602e-05 2.47025e-05 2.54092e-05 2.63468e-05 2.76159e-05 2.93636e-05 3.1773e-05 3.50008e-05 3.90532e-05 4.36962e-05 4.85318e-05 5.31968e-05 5.76861e-05 6.26408e-05 6.93196e-05 7.94542e-05 9.44178e-05 0.0001144 0.000137184 0.000160517 2.24172e-05 2.24368e-05 2.24601e-05 2.24879e-05 2.2521e-05 2.25606e-05 2.26082e-05 2.26653e-05 2.27341e-05 2.28172e-05 2.29181e-05 2.30409e-05 2.31914e-05 2.33767e-05 2.36066e-05 2.38945e-05 2.42589e-05 2.47263e-05 2.53359e-05 2.61474e-05 2.72542e-05 2.87995e-05 3.09811e-05 3.40094e-05 3.79836e-05 4.2707e-05 4.76774e-05 5.23147e-05 5.63379e-05 6.02346e-05 6.60231e-05 7.58349e-05 8.89287e-05 0.000104576 0.000123844 0.000145675 0.000168104 2.24172e-05 2.24368e-05 2.24601e-05 2.24878e-05 2.2521e-05 2.25606e-05 2.26082e-05 2.26654e-05 2.27343e-05 2.28178e-05 2.29192e-05 2.3043e-05 2.31951e-05 2.33832e-05 2.3618e-05 2.39143e-05 2.42931e-05 2.47856e-05 2.54391e-05 2.63285e-05 2.7574e-05 2.93622e-05 3.19447e-05 3.5529e-05 4.0034e-05 4.50114e-05 4.98699e-05 5.40723e-05 5.82317e-05 6.82458e-05 9.48028e-05 0.000132954 0.000166146 0.000193863 0.000217921 0.000234195 0.000249173 2.20245e-05 2.20429e-05 2.20647e-05 2.20908e-05 2.2122e-05 2.21593e-05 2.2204e-05 2.22579e-05 2.2323e-05 2.24018e-05 2.24977e-05 2.26151e-05 2.27596e-05 2.29391e-05 2.31645e-05 2.3451e-05 2.38214e-05 2.43098e-05 2.49705e-05 2.58926e-05 2.72235e-05 2.91903e-05 3.20556e-05 3.59421e-05 4.06276e-05 4.56672e-05 5.06013e-05 5.73311e-05 8.07774e-05 0.000147548 0.000244315 0.000315429 0.000352845 0.000391883 0.000435605 0.000463525 0.000482246 2.11157e-05 2.11316e-05 2.11506e-05 2.11731e-05 2.12001e-05 2.12325e-05 2.12714e-05 2.13183e-05 2.1375e-05 2.14437e-05 2.15275e-05 2.16301e-05 2.17567e-05 2.19144e-05 2.21133e-05 2.23678e-05 2.26997e-05 2.31431e-05 2.37544e-05 2.46297e-05 2.59337e-05 2.79119e-05 3.08247e-05 3.47063e-05 3.92834e-05 4.54734e-05 5.82548e-05 0.000104129 0.000212237 0.000333415 0.000401665 0.000436479 0.000459714 0.000494394 0.000545373 0.000586117 0.000625299 1.93771e-05 1.9389e-05 1.94032e-05 1.94201e-05 1.94405e-05 1.94651e-05 1.94948e-05 1.95307e-05 1.95743e-05 1.96272e-05 1.96917e-05 1.97707e-05 1.98681e-05 1.99895e-05 2.01428e-05 2.03392e-05 2.05964e-05 2.09423e-05 2.14244e-05 2.21266e-05 2.31897e-05 2.48358e-05 2.72925e-05 3.0641e-05 3.8311e-05 6.52922e-05 0.000129311 0.000234871 0.000304793 0.000325122 0.000327176 0.000334739 0.000383729 0.000448436 0.000520333 0.000578781 0.000642463 1.60332e-05 1.60391e-05 1.60463e-05 1.60552e-05 1.60662e-05 1.60799e-05 1.60969e-05 1.6118e-05 1.6144e-05 1.6176e-05 1.62149e-05 1.62625e-05 1.63206e-05 1.63923e-05 1.64812e-05 1.65927e-05 1.67342e-05 1.69171e-05 1.71584e-05 1.74882e-05 1.79584e-05 1.8706e-05 2.04713e-05 2.87317e-05 6.24517e-05 0.000138592 0.000188922 0.00022618 0.000247824 0.000224916 0.000171465 0.00016767 0.000247382 0.000364472 0.000461499 0.000535759 0.000605847 0.00069345 8.4181e-06 8.41063e-06 8.40436e-06 8.3999e-06 8.39794e-06 8.39932e-06 8.40468e-06 8.41527e-06 8.43205e-06 8.45605e-06 8.48834e-06 8.5301e-06 8.58267e-06 8.64762e-06 8.72688e-06 8.82287e-06 8.93885e-06 9.0795e-06 9.25213e-06 9.4703e-06 9.78468e-06 1.06978e-05 1.65266e-05 4.12693e-05 8.21875e-05 0.000106884 0.000124827 0.000133029 0.000131875 0.000118568 0.000103009 0.000138795 0.000218274 0.000285091 0.000339047 0.000365228 0.000399484 0.000447235 8.41501e-06 8.40575e-06 8.39718e-06 8.38979e-06 8.38425e-06 8.38133e-06 8.38203e-06 8.38702e-06 8.39755e-06 8.4147e-06 8.43961e-06 8.47356e-06 8.51789e-06 8.57401e-06 8.6434e-06 8.72791e-06 8.82975e-06 8.95156e-06 9.09666e-06 9.26922e-06 9.4744e-06 9.71856e-06 1.00096e-05 1.03575e-05 1.07754e-05 1.12805e-05 1.18972e-05 1.26594e-05 1.36115e-05 1.48095e-05 1.63268e-05 1.82894e-05 2.10556e-05 2.63887e-05 4.51947e-05 0.000114682 0.000238447 0.000297366 1.60272e-05 1.60321e-05 1.60381e-05 1.60457e-05 1.60551e-05 1.6067e-05 1.6082e-05 1.61006e-05 1.61238e-05 1.61524e-05 1.61878e-05 1.62314e-05 1.62853e-05 1.63518e-05 1.64338e-05 1.65352e-05 1.66608e-05 1.6817e-05 1.70122e-05 1.72574e-05 1.75674e-05 1.79617e-05 1.84671e-05 1.91201e-05 1.99718e-05 2.10917e-05 2.25708e-05 2.45166e-05 2.70388e-05 3.02302e-05 3.42023e-05 3.92589e-05 4.61173e-05 5.56692e-05 6.93042e-05 0.000101537 0.000188735 0.000328641 1.9367e-05 1.93772e-05 1.93893e-05 1.94038e-05 1.94213e-05 1.94423e-05 1.94677e-05 1.94984e-05 1.95355e-05 1.95804e-05 1.96349e-05 1.97012e-05 1.9782e-05 1.98809e-05 2.00022e-05 2.01514e-05 2.03361e-05 2.05658e-05 2.08533e-05 2.12158e-05 2.16769e-05 2.22693e-05 2.30392e-05 2.40522e-05 2.54006e-05 2.72063e-05 2.96095e-05 3.2729e-05 3.66146e-05 4.12596e-05 4.67836e-05 5.37815e-05 6.35255e-05 7.73822e-05 9.52742e-05 0.00011552 0.000152622 0.000248672 2.11162e-05 2.11323e-05 2.11515e-05 2.11744e-05 2.12018e-05 2.12347e-05 2.12742e-05 2.13218e-05 2.13792e-05 2.14486e-05 2.15328e-05 2.16353e-05 2.17604e-05 2.19139e-05 2.2103e-05 2.23373e-05 2.26298e-05 2.29976e-05 2.34646e-05 2.40643e-05 2.4845e-05 2.58768e-05 2.7262e-05 2.91411e-05 3.16766e-05 3.49928e-05 3.90864e-05 4.37973e-05 4.89254e-05 5.45406e-05 6.13473e-05 7.07957e-05 8.45934e-05 0.000103283 0.000125376 0.000149718 0.000186643 2.20249e-05 2.20435e-05 2.20656e-05 2.2092e-05 2.21235e-05 2.21612e-05 2.22065e-05 2.22609e-05 2.23265e-05 2.24059e-05 2.25021e-05 2.26194e-05 2.27627e-05 2.2939e-05 2.31569e-05 2.34284e-05 2.37693e-05 2.4202e-05 2.47579e-05 2.54826e-05 2.6444e-05 2.77444e-05 2.95331e-05 3.19971e-05 3.52986e-05 3.94476e-05 4.42086e-05 4.91819e-05 5.40462e-05 5.89404e-05 6.46932e-05 7.27129e-05 8.47633e-05 0.000101929 0.000123655 0.000147211 0.000171039 2.24176e-05 2.24374e-05 2.24608e-05 2.24888e-05 2.25223e-05 2.25623e-05 2.26103e-05 2.26681e-05 2.27378e-05 2.28221e-05 2.29245e-05 2.30495e-05 2.32026e-05 2.33914e-05 2.3626e-05 2.39202e-05 2.42928e-05 2.4771e-05 2.53949e-05 2.6225e-05 2.73554e-05 2.893e-05 3.11472e-05 3.42165e-05 3.82357e-05 4.29938e-05 4.79514e-05 5.2551e-05 5.6683e-05 6.11351e-05 6.80344e-05 7.91876e-05 9.33768e-05 0.000110204 0.000130838 0.000153383 0.000175563 2.24176e-05 2.24373e-05 2.24608e-05 2.24888e-05 2.25222e-05 2.25623e-05 2.26104e-05 2.26682e-05 2.27381e-05 2.28228e-05 2.29258e-05 2.30517e-05 2.32065e-05 2.33982e-05 2.36379e-05 2.39405e-05 2.43278e-05 2.48313e-05 2.5499e-05 2.64059e-05 2.76714e-05 2.94795e-05 3.20723e-05 3.56506e-05 4.01375e-05 4.50438e-05 4.96791e-05 5.36334e-05 5.81796e-05 7.04734e-05 0.00010049 0.000140624 0.00017404 0.000200833 0.000223215 0.000238502 0.000252856 2.20248e-05 2.20433e-05 2.20654e-05 2.20917e-05 2.21231e-05 2.21608e-05 2.2206e-05 2.22606e-05 2.23265e-05 2.24064e-05 2.25038e-05 2.26231e-05 2.27703e-05 2.29533e-05 2.31833e-05 2.3476e-05 2.38543e-05 2.4353e-05 2.50265e-05 2.59631e-05 2.73076e-05 2.9277e-05 3.21308e-05 3.59911e-05 4.05665e-05 4.52843e-05 4.98164e-05 5.68801e-05 8.35987e-05 0.000158253 0.000257299 0.000325599 0.000362899 0.000404508 0.000448474 0.000474337 0.0004906 2.11159e-05 2.11319e-05 2.11509e-05 2.11737e-05 2.12009e-05 2.12336e-05 2.12729e-05 2.13203e-05 2.13777e-05 2.14475e-05 2.15325e-05 2.16368e-05 2.17656e-05 2.19264e-05 2.21293e-05 2.23891e-05 2.27278e-05 2.31797e-05 2.38006e-05 2.46849e-05 2.59894e-05 2.79554e-05 3.08368e-05 3.45847e-05 3.89114e-05 4.49314e-05 5.85003e-05 0.000108282 0.000224767 0.000349632 0.000417817 0.000453785 0.000476206 0.000513591 0.00056725 0.000606424 0.000642794 1.93767e-05 1.93886e-05 1.94029e-05 1.942e-05 1.94405e-05 1.94653e-05 1.94952e-05 1.95315e-05 1.95756e-05 1.96292e-05 1.96946e-05 1.97748e-05 1.98739e-05 1.99975e-05 2.01536e-05 2.03539e-05 2.06156e-05 2.09668e-05 2.14535e-05 2.2155e-05 2.32074e-05 2.48167e-05 2.71668e-05 3.04265e-05 3.85454e-05 6.68956e-05 0.000133944 0.000244888 0.000319897 0.000339813 0.000341778 0.000362772 0.000418423 0.000477828 0.000548026 0.000601121 0.000660498 1.60313e-05 1.60371e-05 1.60442e-05 1.6053e-05 1.60639e-05 1.60775e-05 1.60945e-05 1.61156e-05 1.61418e-05 1.61739e-05 1.62132e-05 1.62612e-05 1.632e-05 1.63926e-05 1.64827e-05 1.65956e-05 1.67383e-05 1.69215e-05 1.71606e-05 1.74801e-05 1.79216e-05 1.8614e-05 2.04388e-05 2.94049e-05 6.48692e-05 0.000144081 0.000193004 0.0002244 0.000239477 0.000201492 0.00016617 0.000178035 0.000277391 0.000389761 0.000474556 0.000544756 0.000614507 0.000701833 8.40489e-06 8.39611e-06 8.38848e-06 8.38261e-06 8.37917e-06 8.37905e-06 8.38305e-06 8.39226e-06 8.40791e-06 8.43099e-06 8.46262e-06 8.50401e-06 8.55652e-06 8.62174e-06 8.70165e-06 8.79864e-06 8.916e-06 9.05842e-06 9.23314e-06 9.45352e-06 9.7744e-06 1.07563e-05 1.70599e-05 4.39196e-05 8.97962e-05 0.000113183 0.000127669 0.0001317 0.000128391 0.000115438 0.000108079 0.000147381 0.000221359 0.000286318 0.000340381 0.00036646 0.000401855 0.000450167 8.40342e-06 8.39291e-06 8.38298e-06 8.37416e-06 8.36711e-06 8.36264e-06 8.36177e-06 8.3654e-06 8.37453e-06 8.39056e-06 8.41461e-06 8.44799e-06 8.49204e-06 8.54815e-06 8.61785e-06 8.70301e-06 8.80587e-06 8.92912e-06 9.07614e-06 9.25124e-06 9.4597e-06 9.70809e-06 1.00046e-05 1.03594e-05 1.07863e-05 1.13036e-05 1.1936e-05 1.27201e-05 1.37055e-05 1.4958e-05 1.65734e-05 1.87412e-05 2.2098e-05 3.03267e-05 6.33663e-05 0.000163871 0.000275132 0.000315173 1.60257e-05 1.60305e-05 1.60364e-05 1.60437e-05 1.60531e-05 1.60649e-05 1.60798e-05 1.60985e-05 1.61217e-05 1.61505e-05 1.61862e-05 1.62304e-05 1.6285e-05 1.63525e-05 1.64359e-05 1.65392e-05 1.66674e-05 1.68271e-05 1.70269e-05 1.72785e-05 1.75971e-05 1.80033e-05 1.8525e-05 1.92009e-05 2.00851e-05 2.12523e-05 2.2802e-05 2.48544e-05 2.75381e-05 3.09799e-05 3.53648e-05 4.11405e-05 4.91492e-05 6.02571e-05 7.80619e-05 0.000128453 0.000245839 0.000392674 1.93667e-05 1.93769e-05 1.93891e-05 1.94036e-05 1.94211e-05 1.94423e-05 1.94678e-05 1.94988e-05 1.95363e-05 1.95817e-05 1.96369e-05 1.97042e-05 1.97862e-05 1.98867e-05 2.00101e-05 2.01622e-05 2.03507e-05 2.05854e-05 2.08795e-05 2.12509e-05 2.17241e-05 2.23329e-05 2.31253e-05 2.41699e-05 2.55632e-05 2.74349e-05 2.99371e-05 3.32074e-05 3.73224e-05 4.23271e-05 4.84608e-05 5.65309e-05 6.79549e-05 8.37982e-05 0.000103376 0.000127673 0.000181147 0.000309936 2.11163e-05 2.11325e-05 2.11518e-05 2.11749e-05 2.12025e-05 2.12357e-05 2.12757e-05 2.13238e-05 2.13819e-05 2.14522e-05 2.15376e-05 2.16417e-05 2.17689e-05 2.1925e-05 2.21177e-05 2.23567e-05 2.26554e-05 2.30313e-05 2.35091e-05 2.4123e-05 2.49227e-05 2.59798e-05 2.73991e-05 2.93257e-05 3.193e-05 3.53493e-05 3.95992e-05 4.45407e-05 5.00236e-05 5.6244e-05 6.41302e-05 7.53087e-05 9.12825e-05 0.000111884 0.000135107 0.000162933 0.000210252 2.20253e-05 2.2044e-05 2.20662e-05 2.20928e-05 2.21246e-05 2.21626e-05 2.22084e-05 2.22634e-05 2.23299e-05 2.24103e-05 2.25079e-05 2.2627e-05 2.27727e-05 2.29521e-05 2.31741e-05 2.34509e-05 2.37989e-05 2.42407e-05 2.48085e-05 2.55486e-05 2.65293e-05 2.78536e-05 2.96714e-05 3.21733e-05 3.55286e-05 3.97606e-05 4.46473e-05 4.97926e-05 5.49269e-05 6.03475e-05 6.7054e-05 7.65787e-05 9.0637e-05 0.000109813 0.000132875 0.000156675 0.000181182 2.2418e-05 2.24379e-05 2.24615e-05 2.24898e-05 2.25235e-05 2.25639e-05 2.26125e-05 2.26709e-05 2.27414e-05 2.28269e-05 2.29308e-05 2.30576e-05 2.32133e-05 2.34054e-05 2.36444e-05 2.39443e-05 2.43242e-05 2.4812e-05 2.54477e-05 2.62923e-05 2.74391e-05 2.90303e-05 3.12636e-05 3.43449e-05 3.83728e-05 4.31338e-05 4.80781e-05 5.27003e-05 5.70713e-05 6.22162e-05 7.02642e-05 8.25936e-05 9.7761e-05 0.000115681 0.000137362 0.000159981 0.000180966 2.2418e-05 2.24378e-05 2.24615e-05 2.24897e-05 2.25235e-05 2.25639e-05 2.26125e-05 2.2671e-05 2.27418e-05 2.28276e-05 2.29321e-05 2.30599e-05 2.32173e-05 2.34124e-05 2.36566e-05 2.3965e-05 2.43597e-05 2.48724e-05 2.55511e-05 2.64697e-05 2.77446e-05 2.95533e-05 3.21258e-05 3.56743e-05 4.00879e-05 4.48496e-05 4.92768e-05 5.31057e-05 5.83604e-05 7.29446e-05 0.00010585 0.000147243 0.000180404 0.000205679 0.000226221 0.000240712 0.000254437 2.20251e-05 2.20438e-05 2.2066e-05 2.20925e-05 2.21242e-05 2.21622e-05 2.2208e-05 2.22631e-05 2.23298e-05 2.24109e-05 2.25097e-05 2.26309e-05 2.27804e-05 2.29667e-05 2.32009e-05 2.34991e-05 2.38843e-05 2.43911e-05 2.50734e-05 2.60167e-05 2.73596e-05 2.93092e-05 3.21185e-05 3.58745e-05 4.02587e-05 4.45809e-05 4.86542e-05 5.6031e-05 8.52017e-05 0.000164542 0.000264507 0.000330985 0.000370119 0.000414801 0.00045865 0.000482511 0.000496825 2.1116e-05 2.11321e-05 2.11513e-05 2.11742e-05 2.12016e-05 2.12346e-05 2.12743e-05 2.13223e-05 2.13804e-05 2.1451e-05 2.15373e-05 2.16432e-05 2.17741e-05 2.19377e-05 2.21442e-05 2.24086e-05 2.27529e-05 2.32109e-05 2.3837e-05 2.47211e-05 2.601e-05 2.79315e-05 3.06974e-05 3.42304e-05 3.81118e-05 4.34741e-05 5.65929e-05 0.000109596 0.000229672 0.000356738 0.000426517 0.000462978 0.000486011 0.000529445 0.000586158 0.000623766 0.000657564 1.93763e-05 1.93883e-05 1.94026e-05 1.94198e-05 1.94404e-05 1.94654e-05 1.94956e-05 1.95322e-05 1.95768e-05 1.9631e-05 1.96973e-05 1.97786e-05 1.98792e-05 2.00049e-05 2.01636e-05 2.03671e-05 2.06324e-05 2.09867e-05 2.14738e-05 2.21662e-05 2.31885e-05 2.47099e-05 2.68771e-05 2.98031e-05 3.71698e-05 6.49218e-05 0.000131513 0.00024597 0.000329932 0.000354369 0.000361596 0.000396025 0.000446928 0.000503433 0.000573028 0.000621077 0.000676653 1.60295e-05 1.60351e-05 1.60421e-05 1.60508e-05 1.60616e-05 1.60751e-05 1.60921e-05 1.61133e-05 1.61395e-05 1.61718e-05 1.62114e-05 1.62598e-05 1.63193e-05 1.63927e-05 1.64839e-05 1.65978e-05 1.67413e-05 1.69239e-05 1.71589e-05 1.7464e-05 1.78666e-05 1.84668e-05 2.01075e-05 2.88136e-05 6.35027e-05 0.000144855 0.000192573 0.00021217 0.000217399 0.000181691 0.000167105 0.000198793 0.000316845 0.000411524 0.000487323 0.000554116 0.000623389 0.000709579 8.39188e-06 8.38178e-06 8.37278e-06 8.36544e-06 8.36046e-06 8.35877e-06 8.36136e-06 8.36918e-06 8.38366e-06 8.40584e-06 8.43683e-06 8.47789e-06 8.53039e-06 8.59596e-06 8.67655e-06 8.77458e-06 8.89331e-06 9.03738e-06 9.21379e-06 9.435e-06 9.75123e-06 1.06985e-05 1.69666e-05 4.4791e-05 9.30785e-05 0.000115557 0.00012707 0.000128387 0.00011976 0.000112437 0.000113853 0.000156369 0.000227817 0.000287942 0.00034183 0.000367813 0.000403922 0.000452604 8.39205e-06 8.38029e-06 8.36901e-06 8.35872e-06 8.35013e-06 8.34407e-06 8.34158e-06 8.34375e-06 8.35148e-06 8.36633e-06 8.38953e-06 8.42235e-06 8.46615e-06 8.52229e-06 8.59235e-06 8.67819e-06 8.78206e-06 8.90671e-06 9.05558e-06 9.23309e-06 9.44461e-06 9.69687e-06 9.99824e-06 1.03594e-05 1.07945e-05 1.13228e-05 1.19706e-05 1.27757e-05 1.37945e-05 1.51058e-05 1.68363e-05 1.92758e-05 2.36102e-05 3.71473e-05 9.08358e-05 0.000215234 0.000299767 0.000330676 1.60242e-05 1.60288e-05 1.60346e-05 1.60418e-05 1.6051e-05 1.60628e-05 1.60776e-05 1.60963e-05 1.61196e-05 1.61486e-05 1.61846e-05 1.62292e-05 1.62845e-05 1.6353e-05 1.64377e-05 1.65428e-05 1.66734e-05 1.68363e-05 1.70405e-05 1.7298e-05 1.76246e-05 1.80417e-05 1.85784e-05 1.92755e-05 2.01901e-05 2.14022e-05 2.30203e-05 2.51809e-05 2.80366e-05 3.17606e-05 3.66334e-05 4.32526e-05 5.25164e-05 6.55142e-05 9.10949e-05 0.00016516 0.000307178 0.000440117 1.93664e-05 1.93766e-05 1.93888e-05 1.94034e-05 1.9421e-05 1.94422e-05 1.9468e-05 1.94992e-05 1.95371e-05 1.9583e-05 1.96389e-05 1.9707e-05 1.97902e-05 1.98922e-05 2.00176e-05 2.01724e-05 2.03644e-05 2.06037e-05 2.09039e-05 2.12835e-05 2.17676e-05 2.23911e-05 2.32038e-05 2.42766e-05 2.57109e-05 2.76439e-05 3.02421e-05 3.36665e-05 3.80311e-05 4.34518e-05 5.03125e-05 5.96274e-05 7.2839e-05 9.05457e-05 0.000111583 0.000143681 0.000223047 0.000366375 2.11165e-05 2.11327e-05 2.11521e-05 2.11754e-05 2.12033e-05 2.12368e-05 2.12771e-05 2.13257e-05 2.13845e-05 2.14557e-05 2.15422e-05 2.16478e-05 2.17769e-05 2.19356e-05 2.21316e-05 2.2375e-05 2.26793e-05 2.30627e-05 2.35501e-05 2.41765e-05 2.49925e-05 2.60709e-05 2.75185e-05 2.94845e-05 3.21484e-05 3.56648e-05 4.00745e-05 4.5273e-05 5.11792e-05 5.81316e-05 6.72782e-05 8.03262e-05 9.8369e-05 0.000120555 0.000145001 0.000177826 0.00023525 2.20256e-05 2.20444e-05 2.20668e-05 2.20936e-05 2.21256e-05 2.2164e-05 2.22102e-05 2.22659e-05 2.23331e-05 2.24145e-05 2.25135e-05 2.26343e-05 2.27822e-05 2.29645e-05 2.31904e-05 2.34721e-05 2.38265e-05 2.42764e-05 2.48545e-05 2.56072e-05 2.66032e-05 2.79449e-05 2.97816e-05 3.23071e-05 3.57009e-05 4.00071e-05 4.50257e-05 5.03782e-05 5.58589e-05 6.19217e-05 6.97198e-05 8.08779e-05 9.69245e-05 0.000117831 0.000141758 0.000165511 0.000190838 2.24184e-05 2.24384e-05 2.24622e-05 2.24907e-05 2.25247e-05 2.25655e-05 2.26145e-05 2.26736e-05 2.27449e-05 2.28315e-05 2.29368e-05 2.30654e-05 2.32235e-05 2.34187e-05 2.36618e-05 2.39667e-05 2.43533e-05 2.48491e-05 2.54946e-05 2.63498e-05 2.75064e-05 2.91035e-05 3.13345e-05 3.44048e-05 3.84247e-05 4.31768e-05 4.81184e-05 5.28253e-05 5.75571e-05 6.34754e-05 7.2643e-05 8.59573e-05 0.000101986 0.00012085 0.000142991 0.000164555 0.000182996 2.24184e-05 2.24384e-05 2.24622e-05 2.24906e-05 2.25246e-05 2.25655e-05 2.26145e-05 2.26737e-05 2.27453e-05 2.28322e-05 2.29381e-05 2.30678e-05 2.32276e-05 2.34259e-05 2.36741e-05 2.39877e-05 2.43888e-05 2.49091e-05 2.55959e-05 2.65211e-05 2.77967e-05 2.95896e-05 3.21259e-05 3.55888e-05 3.98932e-05 4.45249e-05 4.87818e-05 5.2597e-05 5.87056e-05 7.52778e-05 0.000110774 0.000152753 0.000184748 0.000208073 0.00022735 0.000241263 0.000254627 2.20254e-05 2.20442e-05 2.20666e-05 2.20933e-05 2.21252e-05 2.21636e-05 2.22098e-05 2.22656e-05 2.23331e-05 2.24151e-05 2.25153e-05 2.26382e-05 2.27901e-05 2.29793e-05 2.32174e-05 2.35203e-05 2.39112e-05 2.44243e-05 2.51118e-05 2.60555e-05 2.7384e-05 2.92948e-05 3.20103e-05 3.56175e-05 3.97726e-05 4.36612e-05 4.72352e-05 5.45006e-05 8.51201e-05 0.000166689 0.000267322 0.00033336 0.000375624 0.000423098 0.000466255 0.000488318 0.000501467 2.11161e-05 2.11323e-05 2.11516e-05 2.11747e-05 2.12023e-05 2.12356e-05 2.12757e-05 2.13242e-05 2.1383e-05 2.14545e-05 2.15419e-05 2.16492e-05 2.17822e-05 2.19482e-05 2.2158e-05 2.24263e-05 2.27751e-05 2.32372e-05 2.38646e-05 2.47405e-05 2.60012e-05 2.78421e-05 3.04481e-05 3.37209e-05 3.70192e-05 4.12714e-05 5.26937e-05 0.000104257 0.00022656 0.000357223 0.000427598 0.000463383 0.000490469 0.000542604 0.000601965 0.000637932 0.000669487 1.93759e-05 1.93879e-05 1.94023e-05 1.94196e-05 1.94404e-05 1.94655e-05 1.9496e-05 1.95329e-05 1.95779e-05 1.96328e-05 1.96998e-05 1.97822e-05 1.98843e-05 2.00118e-05 2.01728e-05 2.03789e-05 2.06469e-05 2.10026e-05 2.14866e-05 2.21643e-05 2.31382e-05 2.45437e-05 2.64662e-05 2.88217e-05 3.46041e-05 5.76201e-05 0.000121043 0.000235699 0.000334911 0.000369394 0.000386834 0.000427878 0.000466563 0.000525431 0.000594982 0.00063824 0.000690551 1.60277e-05 1.60332e-05 1.604e-05 1.60486e-05 1.60593e-05 1.60727e-05 1.60897e-05 1.61109e-05 1.61372e-05 1.61697e-05 1.62095e-05 1.62583e-05 1.63183e-05 1.63925e-05 1.64846e-05 1.65994e-05 1.67433e-05 1.69249e-05 1.71544e-05 1.74432e-05 1.78021e-05 1.82819e-05 1.94931e-05 2.63645e-05 5.58074e-05 0.000133956 0.000187929 0.00019846 0.000191154 0.000175489 0.000174209 0.00023503 0.000353859 0.000428055 0.000499564 0.000563115 0.000631883 0.000716368 8.37917e-06 8.36775e-06 8.3573e-06 8.34843e-06 8.34185e-06 8.33853e-06 8.33963e-06 8.34607e-06 8.35934e-06 8.38061e-06 8.41101e-06 8.45179e-06 8.50435e-06 8.57034e-06 8.65168e-06 8.75079e-06 8.87088e-06 9.01653e-06 9.19436e-06 9.41545e-06 9.71713e-06 1.04781e-05 1.53917e-05 4.11531e-05 9.27299e-05 0.000113567 0.000122032 0.000121767 0.000112991 0.000112366 0.000120514 0.00017044 0.000236182 0.000289069 0.000343442 0.000369189 0.000405809 0.000454612 8.38075e-06 8.36771e-06 8.35503e-06 8.34324e-06 8.33303e-06 8.3253e-06 8.3211e-06 8.32167e-06 8.32798e-06 8.34159e-06 8.36392e-06 8.39621e-06 8.43979e-06 8.49603e-06 8.5665e-06 8.65305e-06 8.75796e-06 8.88399e-06 9.03468e-06 9.2145e-06 9.42891e-06 9.68477e-06 9.99064e-06 1.03575e-05 1.08001e-05 1.13386e-05 1.20012e-05 1.28276e-05 1.38812e-05 1.52582e-05 1.71302e-05 1.99567e-05 2.60137e-05 4.86142e-05 0.000127917 0.000259868 0.000319289 0.000344327 1.60227e-05 1.60272e-05 1.60328e-05 1.60399e-05 1.6049e-05 1.60606e-05 1.60754e-05 1.60941e-05 1.61174e-05 1.61466e-05 1.61829e-05 1.6228e-05 1.6284e-05 1.63533e-05 1.64393e-05 1.65461e-05 1.6679e-05 1.6845e-05 1.70533e-05 1.73163e-05 1.76503e-05 1.80775e-05 1.86282e-05 1.93451e-05 2.02886e-05 2.15443e-05 2.32308e-05 2.55037e-05 2.85474e-05 3.25969e-05 3.80495e-05 4.56394e-05 5.62722e-05 7.20317e-05 0.000110503 0.000212425 0.000369609 0.000469878 1.93661e-05 1.93763e-05 1.93885e-05 1.94031e-05 1.94208e-05 1.94422e-05 1.94682e-05 1.94996e-05 1.95378e-05 1.95842e-05 1.96407e-05 1.97097e-05 1.9794e-05 1.98975e-05 2.00248e-05 2.01821e-05 2.03774e-05 2.06211e-05 2.09271e-05 2.13142e-05 2.18082e-05 2.24452e-05 2.32762e-05 2.43748e-05 2.58468e-05 2.78383e-05 3.05322e-05 3.41184e-05 3.87608e-05 4.46686e-05 5.2392e-05 6.31195e-05 7.81716e-05 9.76204e-05 0.000120779 0.000164464 0.000273756 0.000409598 2.11166e-05 2.11329e-05 2.11525e-05 2.11759e-05 2.1204e-05 2.12377e-05 2.12784e-05 2.13276e-05 2.1387e-05 2.1459e-05 2.15467e-05 2.16537e-05 2.17847e-05 2.19458e-05 2.21449e-05 2.23924e-05 2.2702e-05 2.30922e-05 2.35883e-05 2.42258e-05 2.50559e-05 2.61525e-05 2.76238e-05 2.96231e-05 3.23405e-05 3.5952e-05 4.05307e-05 4.60219e-05 5.24301e-05 6.02557e-05 7.08408e-05 8.58405e-05 0.000105785 0.00012924 0.000155774 0.000194864 0.000259013 2.20259e-05 2.20448e-05 2.20674e-05 2.20943e-05 2.21266e-05 2.21654e-05 2.2212e-05 2.22683e-05 2.23362e-05 2.24186e-05 2.25189e-05 2.26413e-05 2.27914e-05 2.29765e-05 2.32059e-05 2.34922e-05 2.38524e-05 2.43097e-05 2.48967e-05 2.566e-05 2.66678e-05 2.80218e-05 2.98701e-05 3.24085e-05 3.58301e-05 4.02071e-05 4.53678e-05 5.09623e-05 5.68765e-05 6.37006e-05 7.27297e-05 8.56259e-05 0.000103559 0.000125883 0.000150088 0.000173705 0.00019781 2.24188e-05 2.24389e-05 2.24629e-05 2.24916e-05 2.25259e-05 2.2567e-05 2.26165e-05 2.26762e-05 2.27484e-05 2.28359e-05 2.29426e-05 2.3073e-05 2.32333e-05 2.34315e-05 2.36783e-05 2.3988e-05 2.43804e-05 2.48832e-05 2.55365e-05 2.63993e-05 2.75608e-05 2.91552e-05 3.13701e-05 3.44184e-05 3.84056e-05 4.3139e-05 4.81179e-05 5.30088e-05 5.81852e-05 6.49148e-05 7.51439e-05 8.92726e-05 0.000105987 0.000125501 0.000147106 0.000166329 0.000183101 2.24187e-05 2.24389e-05 2.24629e-05 2.24915e-05 2.25258e-05 2.2567e-05 2.26165e-05 2.26763e-05 2.27487e-05 2.28367e-05 2.29439e-05 2.30754e-05 2.32375e-05 2.34388e-05 2.36907e-05 2.4009e-05 2.44157e-05 2.49422e-05 2.56347e-05 2.65627e-05 2.78322e-05 2.96007e-05 3.20762e-05 3.54359e-05 3.96215e-05 4.41447e-05 4.83103e-05 5.23852e-05 5.9265e-05 7.76671e-05 0.000115218 0.000157054 0.000186783 0.000208672 0.000226266 0.000239863 0.000253059 2.20257e-05 2.20446e-05 2.20671e-05 2.2094e-05 2.21263e-05 2.2165e-05 2.22116e-05 2.2268e-05 2.23362e-05 2.24193e-05 2.25207e-05 2.26453e-05 2.27993e-05 2.29914e-05 2.32329e-05 2.35401e-05 2.39358e-05 2.44535e-05 2.51434e-05 2.60826e-05 2.73903e-05 2.92417e-05 3.184e-05 3.52688e-05 3.91897e-05 4.27095e-05 4.57956e-05 5.32914e-05 8.43938e-05 0.000165853 0.000267896 0.000334616 0.000380324 0.000429598 0.000471329 0.000492069 0.000504848 2.11162e-05 2.11325e-05 2.11519e-05 2.11751e-05 2.1203e-05 2.12366e-05 2.12771e-05 2.1326e-05 2.13854e-05 2.14578e-05 2.15463e-05 2.16551e-05 2.17898e-05 2.19583e-05 2.2171e-05 2.24427e-05 2.2795e-05 2.32596e-05 2.38854e-05 2.47483e-05 2.59682e-05 2.77115e-05 3.01303e-05 3.31067e-05 3.58408e-05 3.86786e-05 4.75529e-05 9.29637e-05 0.000214366 0.000349954 0.000420995 0.000456995 0.00049194 0.000553694 0.000614615 0.000648838 0.000678545 1.93756e-05 1.93876e-05 1.9402e-05 1.94194e-05 1.94403e-05 1.94656e-05 1.94963e-05 1.95336e-05 1.9579e-05 1.96344e-05 1.97023e-05 1.97857e-05 1.9889e-05 2.00182e-05 2.01813e-05 2.03896e-05 2.06595e-05 2.10154e-05 2.14939e-05 2.21516e-05 2.30699e-05 2.43458e-05 2.6e-05 2.77347e-05 3.13247e-05 4.63137e-05 0.00010393 0.000216416 0.000335457 0.000381662 0.000409733 0.000445753 0.000478343 0.000544813 0.000613741 0.000652532 0.000701985 1.60259e-05 1.60312e-05 1.60379e-05 1.60463e-05 1.60569e-05 1.60704e-05 1.60873e-05 1.61084e-05 1.61348e-05 1.61674e-05 1.62075e-05 1.62566e-05 1.63172e-05 1.63921e-05 1.64851e-05 1.66006e-05 1.67447e-05 1.69247e-05 1.71485e-05 1.7421e-05 1.77373e-05 1.80935e-05 1.87763e-05 2.29217e-05 4.39167e-05 0.000113253 0.000185717 0.000193827 0.000183325 0.000177269 0.00019645 0.000288022 0.000377757 0.000441438 0.000511682 0.000571237 0.000639365 0.000721867 8.36657e-06 8.35376e-06 8.3418e-06 8.3313e-06 8.32303e-06 8.31801e-06 8.31745e-06 8.3225e-06 8.3345e-06 8.35487e-06 8.38471e-06 8.42527e-06 8.47799e-06 8.54449e-06 8.62667e-06 8.72692e-06 8.84843e-06 8.99564e-06 9.17482e-06 9.39548e-06 9.68121e-06 1.02261e-05 1.31689e-05 3.17055e-05 8.53347e-05 0.000111609 0.000116576 0.000116589 0.000112375 0.000114656 0.000134064 0.000188479 0.000239373 0.000289927 0.000345163 0.000370853 0.000407113 0.000455438 8.36958e-06 8.35523e-06 8.34113e-06 8.32777e-06 8.31587e-06 8.30637e-06 8.30039e-06 8.29921e-06 8.30405e-06 8.31638e-06 8.33782e-06 8.3696e-06 8.41302e-06 8.46943e-06 8.54038e-06 8.6277e-06 8.73366e-06 8.86107e-06 9.01352e-06 9.19555e-06 9.41266e-06 9.67184e-06 9.98179e-06 1.03539e-05 1.08032e-05 1.13512e-05 1.20278e-05 1.28759e-05 1.39663e-05 1.54188e-05 1.74706e-05 2.08873e-05 2.99865e-05 6.65293e-05 0.000173548 0.000292326 0.00033632 0.000356825 1.60212e-05 1.60255e-05 1.6031e-05 1.6038e-05 1.6047e-05 1.60585e-05 1.60732e-05 1.60919e-05 1.61152e-05 1.61445e-05 1.61811e-05 1.62266e-05 1.62832e-05 1.63535e-05 1.64406e-05 1.6549e-05 1.66841e-05 1.6853e-05 1.70651e-05 1.73332e-05 1.76741e-05 1.81106e-05 1.86742e-05 1.94095e-05 2.03803e-05 2.16784e-05 2.34337e-05 2.58236e-05 2.90748e-05 3.35007e-05 3.9631e-05 4.82995e-05 6.04756e-05 8.07433e-05 0.000137347 0.000268392 0.000421823 0.000488999 1.93658e-05 1.9376e-05 1.93882e-05 1.94029e-05 1.94206e-05 1.94422e-05 1.94683e-05 1.95e-05 1.95385e-05 1.95854e-05 1.96425e-05 1.97122e-05 1.97977e-05 1.99025e-05 2.00317e-05 2.01914e-05 2.03897e-05 2.06374e-05 2.09487e-05 2.13427e-05 2.18458e-05 2.24948e-05 2.33423e-05 2.44643e-05 2.59712e-05 2.80188e-05 3.08088e-05 3.45663e-05 3.95191e-05 4.59929e-05 5.47157e-05 6.69807e-05 8.38428e-05 0.000105021 0.000132774 0.000192565 0.000322754 0.000432885 2.11167e-05 2.11331e-05 2.11528e-05 2.11763e-05 2.12046e-05 2.12387e-05 2.12798e-05 2.13293e-05 2.13894e-05 2.14623e-05 2.1551e-05 2.16593e-05 2.17921e-05 2.19555e-05 2.21576e-05 2.24089e-05 2.27233e-05 2.31196e-05 2.36235e-05 2.42708e-05 2.5113e-05 2.62248e-05 2.7716e-05 2.9744e-05 3.25107e-05 3.62167e-05 4.09764e-05 4.68004e-05 5.37942e-05 6.26324e-05 7.47911e-05 9.17111e-05 0.000113304 0.000137715 0.00016696 0.000212658 0.000277435 2.20262e-05 2.20452e-05 2.20679e-05 2.20951e-05 2.21276e-05 2.21667e-05 2.22138e-05 2.22706e-05 2.23393e-05 2.24226e-05 2.25241e-05 2.26481e-05 2.28003e-05 2.29879e-05 2.32207e-05 2.35112e-05 2.38766e-05 2.43404e-05 2.4935e-05 2.5707e-05 2.67239e-05 2.80861e-05 2.99408e-05 3.24859e-05 3.59305e-05 4.03776e-05 4.56963e-05 5.15742e-05 5.79984e-05 6.56925e-05 7.60659e-05 9.07233e-05 0.000110322 0.000133678 0.000157422 0.000179613 0.000200244 2.24191e-05 2.24394e-05 2.24636e-05 2.24924e-05 2.2527e-05 2.25685e-05 2.26184e-05 2.26787e-05 2.27517e-05 2.28402e-05 2.29482e-05 2.30803e-05 2.32427e-05 2.34437e-05 2.36939e-05 2.40079e-05 2.44055e-05 2.49143e-05 2.55738e-05 2.64416e-05 2.76041e-05 2.91901e-05 3.13822e-05 3.43909e-05 3.83388e-05 4.30703e-05 4.81498e-05 5.33038e-05 5.89808e-05 6.64934e-05 7.76927e-05 9.24918e-05 0.000109632 0.000129113 0.000149005 0.000166478 0.000180595 2.24191e-05 2.24394e-05 2.24635e-05 2.24924e-05 2.25269e-05 2.25685e-05 2.26185e-05 2.26789e-05 2.2752e-05 2.2841e-05 2.29496e-05 2.30827e-05 2.3247e-05 2.3451e-05 2.37064e-05 2.40289e-05 2.44404e-05 2.49719e-05 2.56682e-05 2.6596e-05 2.78548e-05 2.95921e-05 3.20003e-05 3.5255e-05 3.93292e-05 4.37935e-05 4.80485e-05 5.23873e-05 6.01419e-05 8.01368e-05 0.000119035 0.000159337 0.00018713 0.000206335 0.000222593 0.000236441 0.000250071 2.2026e-05 2.2045e-05 2.20677e-05 2.20948e-05 2.21273e-05 2.21663e-05 2.22134e-05 2.22703e-05 2.23393e-05 2.24233e-05 2.25259e-05 2.26521e-05 2.28082e-05 2.30028e-05 2.32475e-05 2.35583e-05 2.3958e-05 2.44791e-05 2.51694e-05 2.61008e-05 2.7382e-05 2.91683e-05 3.1642e-05 3.48878e-05 3.8618e-05 4.20299e-05 4.49763e-05 5.28422e-05 8.41302e-05 0.000165084 0.000268063 0.000336083 0.00038429 0.000433704 0.000473553 0.000493783 0.000507433 2.11163e-05 2.11327e-05 2.11522e-05 2.11756e-05 2.12037e-05 2.12375e-05 2.12784e-05 2.13278e-05 2.13878e-05 2.1461e-05 2.15505e-05 2.16606e-05 2.17971e-05 2.19678e-05 2.21831e-05 2.24577e-05 2.28127e-05 2.32786e-05 2.39008e-05 2.47481e-05 2.5923e-05 2.75648e-05 2.97958e-05 3.25089e-05 3.4896e-05 3.6728e-05 4.36494e-05 8.04859e-05 0.000196288 0.000335387 0.000406652 0.000445508 0.000492504 0.000562415 0.000623275 0.00065583 0.000684172 1.93752e-05 1.93872e-05 1.94017e-05 1.94191e-05 1.94402e-05 1.94657e-05 1.94966e-05 1.95342e-05 1.958e-05 1.9636e-05 1.97045e-05 1.97889e-05 1.98935e-05 2.00242e-05 2.01891e-05 2.03993e-05 2.06705e-05 2.10256e-05 2.14976e-05 2.21339e-05 2.29971e-05 2.41497e-05 2.55676e-05 2.68594e-05 2.84142e-05 3.55632e-05 8.00948e-05 0.000189754 0.000324078 0.000384059 0.000415678 0.000445834 0.00048554 0.000561462 0.000628363 0.000663221 0.000710303 1.60241e-05 1.60292e-05 1.60358e-05 1.60441e-05 1.60546e-05 1.60679e-05 1.60848e-05 1.6106e-05 1.61324e-05 1.61651e-05 1.62053e-05 1.62548e-05 1.63159e-05 1.63915e-05 1.64852e-05 1.66013e-05 1.67455e-05 1.6924e-05 1.71426e-05 1.74009e-05 1.76821e-05 1.79398e-05 1.81912e-05 1.97745e-05 3.03864e-05 7.717e-05 0.00018105 0.000204049 0.000191037 0.000189156 0.000240613 0.000330291 0.000390463 0.000454741 0.000524271 0.000578533 0.000645506 0.00072536 8.35413e-06 8.33987e-06 8.32633e-06 8.31411e-06 8.30406e-06 8.29722e-06 8.29491e-06 8.29847e-06 8.30919e-06 8.32865e-06 8.35797e-06 8.39842e-06 8.4514e-06 8.51851e-06 8.60162e-06 8.70309e-06 8.82608e-06 8.97489e-06 9.15544e-06 9.37602e-06 9.65153e-06 1.00591e-05 1.14462e-05 2.07805e-05 6.31745e-05 0.000108445 0.000118875 0.000119561 0.000116866 0.000123292 0.000156327 0.000201144 0.000239401 0.000291493 0.000346693 0.000371548 0.000407265 0.00045524 8.3588e-06 8.34315e-06 8.32761e-06 8.31266e-06 8.29902e-06 8.28769e-06 8.27984e-06 8.27684e-06 8.28013e-06 8.29117e-06 8.31175e-06 8.34309e-06 8.38643e-06 8.44309e-06 8.51457e-06 8.60269e-06 8.70971e-06 8.83848e-06 8.99262e-06 9.17672e-06 9.39632e-06 9.65847e-06 9.97206e-06 1.03487e-05 1.08042e-05 1.13608e-05 1.20506e-05 1.29205e-05 1.40498e-05 1.55893e-05 1.78744e-05 2.22219e-05 3.63454e-05 9.13339e-05 0.000219517 0.000315525 0.000351484 0.000369358 1.60198e-05 1.60239e-05 1.60293e-05 1.60361e-05 1.6045e-05 1.60564e-05 1.60711e-05 1.60896e-05 1.6113e-05 1.61424e-05 1.61792e-05 1.62251e-05 1.62823e-05 1.63534e-05 1.64417e-05 1.65516e-05 1.66886e-05 1.68601e-05 1.70757e-05 1.73484e-05 1.76956e-05 1.81404e-05 1.87156e-05 1.94677e-05 2.04639e-05 2.18026e-05 2.36261e-05 2.61371e-05 2.96145e-05 3.44651e-05 4.13515e-05 5.1163e-05 6.52231e-05 9.30078e-05 0.000172286 0.000325497 0.000454628 0.000501286 1.93655e-05 1.93757e-05 1.93879e-05 1.94026e-05 1.94205e-05 1.94421e-05 1.94684e-05 1.95003e-05 1.95391e-05 1.95864e-05 1.96441e-05 1.97146e-05 1.9801e-05 1.99072e-05 2.0038e-05 2.01999e-05 2.0401e-05 2.06524e-05 2.09684e-05 2.13686e-05 2.18797e-05 2.25394e-05 2.34014e-05 2.45443e-05 2.60833e-05 2.81842e-05 3.10698e-05 3.50063e-05 4.02994e-05 4.74091e-05 5.72308e-05 7.10639e-05 8.96141e-05 0.000112515 0.000147564 0.00023014 0.000360881 0.000442737 2.11168e-05 2.11333e-05 2.11531e-05 2.11768e-05 2.12053e-05 2.12396e-05 2.1281e-05 2.1331e-05 2.13916e-05 2.14653e-05 2.1555e-05 2.16646e-05 2.17991e-05 2.19646e-05 2.21694e-05 2.24241e-05 2.27429e-05 2.31447e-05 2.36553e-05 2.43109e-05 2.51633e-05 2.62878e-05 2.77957e-05 2.98489e-05 3.26615e-05 3.6462e-05 4.14134e-05 4.76052e-05 5.52575e-05 6.52079e-05 7.89735e-05 9.76436e-05 0.000120538 0.000145977 0.000178423 0.000228382 0.000285208 2.20265e-05 2.20456e-05 2.20685e-05 2.20958e-05 2.21286e-05 2.2168e-05 2.22155e-05 2.22728e-05 2.23421e-05 2.24264e-05 2.2529e-05 2.26544e-05 2.28085e-05 2.29986e-05 2.32343e-05 2.35287e-05 2.38988e-05 2.43681e-05 2.49692e-05 2.57482e-05 2.67717e-05 2.81392e-05 2.99971e-05 3.25467e-05 3.6013e-05 4.05347e-05 4.60272e-05 5.22297e-05 5.92197e-05 6.78513e-05 7.96041e-05 9.59057e-05 0.000116818 0.000140436 0.000162747 0.000181745 0.000199437 2.24195e-05 2.24399e-05 2.24642e-05 2.24932e-05 2.25281e-05 2.25699e-05 2.26203e-05 2.26811e-05 2.27548e-05 2.28443e-05 2.29534e-05 2.30871e-05 2.32515e-05 2.3455e-05 2.37083e-05 2.40262e-05 2.44283e-05 2.4942e-05 2.56063e-05 2.64774e-05 2.76384e-05 2.92136e-05 3.13802e-05 3.43495e-05 3.82666e-05 4.3029e-05 4.82572e-05 5.37227e-05 5.99281e-05 6.81328e-05 8.01121e-05 9.55053e-05 0.000112613 0.0001313 0.000149361 0.000164423 0.00017541 2.24195e-05 2.24398e-05 2.24641e-05 2.24932e-05 2.2528e-05 2.25699e-05 2.26203e-05 2.26813e-05 2.27552e-05 2.28451e-05 2.29549e-05 2.30896e-05 2.32558e-05 2.34624e-05 2.37208e-05 2.4047e-05 2.44625e-05 2.49979e-05 2.56968e-05 2.66226e-05 2.78694e-05 2.95748e-05 3.19209e-05 3.50842e-05 3.9073e-05 4.35312e-05 4.79758e-05 5.26839e-05 6.13718e-05 8.25795e-05 0.000121272 0.000160016 0.000183938 0.000201022 0.000216595 0.000231433 0.000247808 2.20263e-05 2.20454e-05 2.20682e-05 2.20955e-05 2.21282e-05 2.21676e-05 2.22151e-05 2.22725e-05 2.23422e-05 2.2427e-05 2.25308e-05 2.26584e-05 2.28164e-05 2.30133e-05 2.32608e-05 2.35749e-05 2.39778e-05 2.45012e-05 2.51906e-05 2.61133e-05 2.73679e-05 2.90939e-05 3.14561e-05 3.45435e-05 3.81329e-05 4.157e-05 4.47652e-05 5.31743e-05 8.54964e-05 0.000167001 0.000270056 0.00033769 0.000386577 0.000434631 0.000472578 0.000493712 0.000509896 2.11164e-05 2.11328e-05 2.11525e-05 2.11761e-05 2.12043e-05 2.12384e-05 2.12796e-05 2.13295e-05 2.13901e-05 2.1464e-05 2.15544e-05 2.16658e-05 2.18039e-05 2.19765e-05 2.21941e-05 2.24712e-05 2.28283e-05 2.32947e-05 2.39125e-05 2.47439e-05 2.58775e-05 2.74296e-05 2.94995e-05 3.20067e-05 3.43877e-05 3.59973e-05 4.21161e-05 7.45303e-05 0.000180136 0.000318185 0.000390662 0.000435691 0.000493009 0.00056769 0.000626424 0.000657585 0.000685316 1.93749e-05 1.93869e-05 1.94014e-05 1.94189e-05 1.94401e-05 1.94657e-05 1.94968e-05 1.95347e-05 1.95809e-05 1.96374e-05 1.97066e-05 1.97918e-05 1.98975e-05 2.00296e-05 2.01961e-05 2.04079e-05 2.06801e-05 2.10341e-05 2.14996e-05 2.21167e-05 2.29334e-05 2.39872e-05 2.52297e-05 2.63754e-05 2.69604e-05 3.07299e-05 5.80741e-05 0.000155553 0.000294269 0.000374639 0.000406621 0.000437653 0.000490914 0.000573973 0.000636792 0.000668231 0.000713692 1.60224e-05 1.60274e-05 1.60338e-05 1.6042e-05 1.60524e-05 1.60656e-05 1.60823e-05 1.61035e-05 1.61299e-05 1.61627e-05 1.62031e-05 1.62529e-05 1.63145e-05 1.63907e-05 1.6485e-05 1.66017e-05 1.6746e-05 1.69233e-05 1.71378e-05 1.73858e-05 1.76465e-05 1.78452e-05 1.79014e-05 1.82069e-05 2.24174e-05 4.53796e-05 0.000139167 0.000223253 0.000219697 0.000220587 0.00026917 0.000344222 0.000399629 0.000468697 0.000535456 0.000582051 0.000648093 0.000725222 8.34211e-06 8.3264e-06 8.31123e-06 8.29725e-06 8.28533e-06 8.27661e-06 8.27246e-06 8.27445e-06 8.2839e-06 8.30249e-06 8.33137e-06 8.3718e-06 8.42516e-06 8.49299e-06 8.57712e-06 8.67988e-06 8.80439e-06 8.95485e-06 9.1369e-06 9.358e-06 9.62899e-06 9.9815e-06 1.06897e-05 1.41641e-05 3.3632e-05 8.93414e-05 0.000117325 0.000127096 0.00013124 0.000141817 0.000171849 0.000205363 0.000239748 0.000294532 0.000348037 0.000371273 0.000406837 0.000454257 8.34848e-06 8.33153e-06 8.31455e-06 8.29798e-06 8.28256e-06 8.26932e-06 8.2595e-06 8.25458e-06 8.25624e-06 8.266e-06 8.28576e-06 8.31672e-06 8.36009e-06 8.41709e-06 8.48918e-06 8.57814e-06 8.68625e-06 8.81636e-06 8.97212e-06 9.15813e-06 9.38e-06 9.64483e-06 9.96165e-06 1.03424e-05 1.08033e-05 1.13677e-05 1.20701e-05 1.29619e-05 1.41333e-05 1.57752e-05 1.83758e-05 2.42054e-05 4.59195e-05 0.000121901 0.000260006 0.000334424 0.000365277 0.000380769 1.60184e-05 1.60224e-05 1.60276e-05 1.60343e-05 1.60431e-05 1.60544e-05 1.60689e-05 1.60874e-05 1.61108e-05 1.61402e-05 1.61773e-05 1.62236e-05 1.62813e-05 1.63531e-05 1.64424e-05 1.65537e-05 1.66925e-05 1.68664e-05 1.70852e-05 1.73621e-05 1.77147e-05 1.8167e-05 1.87526e-05 1.952e-05 2.054e-05 2.19178e-05 2.38094e-05 2.64468e-05 3.01706e-05 3.54943e-05 4.31984e-05 5.42176e-05 7.08727e-05 0.000110017 0.000214306 0.000377679 0.000473913 0.000514168 1.93652e-05 1.93753e-05 1.93876e-05 1.94024e-05 1.94203e-05 1.9442e-05 1.94685e-05 1.95006e-05 1.95397e-05 1.95873e-05 1.96456e-05 1.97168e-05 1.98041e-05 1.99114e-05 2.00438e-05 2.02076e-05 2.04114e-05 2.0666e-05 2.09863e-05 2.13919e-05 2.19101e-05 2.25792e-05 2.34541e-05 2.46159e-05 2.61846e-05 2.83367e-05 3.1318e-05 3.54424e-05 4.11064e-05 4.89164e-05 5.99024e-05 7.52671e-05 9.53835e-05 0.000120508 0.000165745 0.000269217 0.000382169 0.000447015 2.11169e-05 2.11335e-05 2.11534e-05 2.11772e-05 2.12059e-05 2.12404e-05 2.12822e-05 2.13326e-05 2.13938e-05 2.14681e-05 2.15588e-05 2.16696e-05 2.18055e-05 2.1973e-05 2.21802e-05 2.2438e-05 2.27607e-05 2.31673e-05 2.36839e-05 2.43467e-05 2.52077e-05 2.63429e-05 2.78651e-05 2.99411e-05 3.27979e-05 3.6694e-05 4.18493e-05 4.84431e-05 5.68208e-05 6.79449e-05 8.32658e-05 0.000103433 0.000127258 0.000154035 0.000189949 0.000239994 0.000286449 2.20267e-05 2.2046e-05 2.2069e-05 2.20965e-05 2.21295e-05 2.21692e-05 2.2217e-05 2.22748e-05 2.23448e-05 2.24299e-05 2.25336e-05 2.26604e-05 2.28162e-05 2.30084e-05 2.32469e-05 2.35446e-05 2.39189e-05 2.4393e-05 2.49995e-05 2.57842e-05 2.68129e-05 2.8184e-05 3.00437e-05 3.25977e-05 3.60879e-05 4.06918e-05 4.63777e-05 5.29446e-05 6.05469e-05 7.015e-05 8.32429e-05 0.000100941 0.000122608 0.000145464 0.000164899 0.000181539 0.000193819 2.24198e-05 2.24403e-05 2.24648e-05 2.2494e-05 2.25291e-05 2.25712e-05 2.2622e-05 2.26834e-05 2.27577e-05 2.28481e-05 2.29584e-05 2.30934e-05 2.32597e-05 2.34654e-05 2.37216e-05 2.40428e-05 2.44488e-05 2.49668e-05 2.56348e-05 2.65079e-05 2.76665e-05 2.9231e-05 3.13746e-05 3.43133e-05 3.82178e-05 4.30411e-05 4.84586e-05 5.42727e-05 6.0986e-05 6.97812e-05 8.23957e-05 9.81358e-05 0.000114744 0.000131954 0.000147959 0.000159705 0.000167928 2.24198e-05 2.24403e-05 2.24647e-05 2.2494e-05 2.2529e-05 2.25712e-05 2.26221e-05 2.26835e-05 2.27581e-05 2.28489e-05 2.29598e-05 2.3096e-05 2.32641e-05 2.34729e-05 2.37341e-05 2.40634e-05 2.44824e-05 2.5021e-05 2.57214e-05 2.66446e-05 2.788e-05 2.95577e-05 3.18537e-05 3.49499e-05 3.88924e-05 4.34283e-05 4.80824e-05 5.33332e-05 6.27605e-05 8.45212e-05 0.000122122 0.000157441 0.000177759 0.000193158 0.000208973 0.000226588 0.000248115 2.20266e-05 2.20458e-05 2.20687e-05 2.20962e-05 2.21291e-05 2.21688e-05 2.22166e-05 2.22745e-05 2.23449e-05 2.24305e-05 2.25354e-05 2.26644e-05 2.2824e-05 2.3023e-05 2.3273e-05 2.35898e-05 2.39954e-05 2.45205e-05 2.52086e-05 2.61229e-05 2.73545e-05 2.90316e-05 3.13082e-05 3.42821e-05 3.78078e-05 4.14123e-05 4.50316e-05 5.46953e-05 8.88195e-05 0.000171922 0.000272855 0.000338183 0.000385082 0.000430867 0.000468281 0.000492324 0.00051276 2.11165e-05 2.1133e-05 2.11528e-05 2.11765e-05 2.12049e-05 2.12393e-05 2.12807e-05 2.1331e-05 2.13922e-05 2.14667e-05 2.15581e-05 2.16706e-05 2.18101e-05 2.19845e-05 2.22041e-05 2.24833e-05 2.28421e-05 2.33085e-05 2.39222e-05 2.47397e-05 2.58398e-05 2.73229e-05 2.9275e-05 3.16425e-05 3.4053e-05 3.59473e-05 4.20905e-05 7.35737e-05 0.000172157 0.000303782 0.000378389 0.000430308 0.000493246 0.000568024 0.000624197 0.000655052 0.00068311 1.93745e-05 1.93866e-05 1.94012e-05 1.94187e-05 1.944e-05 1.94657e-05 1.94971e-05 1.95352e-05 1.95818e-05 1.96387e-05 1.97085e-05 1.97945e-05 1.99012e-05 2.00346e-05 2.02024e-05 2.04155e-05 2.06884e-05 2.10414e-05 2.15015e-05 2.21035e-05 2.28861e-05 2.38725e-05 2.50136e-05 2.6093e-05 2.66395e-05 2.91011e-05 4.77822e-05 0.000125844 0.000257469 0.000346787 0.000383457 0.000426136 0.000494982 0.000580687 0.00063724 0.00066753 0.000712621 1.60208e-05 1.60256e-05 1.60319e-05 1.60399e-05 1.60502e-05 1.60633e-05 1.60799e-05 1.6101e-05 1.61274e-05 1.61602e-05 1.62008e-05 1.62509e-05 1.63129e-05 1.63897e-05 1.64846e-05 1.66019e-05 1.67463e-05 1.69229e-05 1.71347e-05 1.7377e-05 1.76324e-05 1.78083e-05 1.78006e-05 1.77016e-05 1.90509e-05 2.99541e-05 8.11251e-05 0.000208189 0.000233711 0.000233678 0.00027228 0.000343524 0.000408193 0.000481133 0.000539187 0.000581768 0.000647611 0.000723534 8.33057e-06 8.31339e-06 8.29658e-06 8.28078e-06 8.26692e-06 8.25621e-06 8.25015e-06 8.25047e-06 8.25866e-06 8.27643e-06 8.30498e-06 8.34552e-06 8.39939e-06 8.46805e-06 8.55329e-06 8.65741e-06 8.78348e-06 8.93565e-06 9.11936e-06 9.34159e-06 9.61167e-06 9.9483e-06 1.04564e-05 1.18774e-05 1.84232e-05 4.65028e-05 0.000100507 0.000124091 0.000135128 0.000150323 0.000176461 0.000206288 0.00024159 0.000298096 0.000348154 0.000370266 0.000405499 0.000452009 8.33866e-06 8.32044e-06 8.30201e-06 8.2838e-06 8.26656e-06 8.25133e-06 8.23943e-06 8.2325e-06 8.23241e-06 8.24092e-06 8.2599e-06 8.29057e-06 8.33408e-06 8.39153e-06 8.46432e-06 8.5542e-06 8.66342e-06 8.79484e-06 8.95214e-06 9.13994e-06 9.36389e-06 9.63112e-06 9.95081e-06 1.03351e-05 1.08009e-05 1.13727e-05 1.20871e-05 1.30011e-05 1.42187e-05 1.59837e-05 1.90262e-05 2.7154e-05 5.92669e-05 0.000156742 0.000292408 0.000351021 0.000378213 0.000390832 1.6017e-05 1.60208e-05 1.60259e-05 1.60325e-05 1.60412e-05 1.60524e-05 1.60668e-05 1.60852e-05 1.61085e-05 1.6138e-05 1.61753e-05 1.62219e-05 1.62802e-05 1.63527e-05 1.64429e-05 1.65554e-05 1.66959e-05 1.68719e-05 1.70935e-05 1.73741e-05 1.77316e-05 1.81906e-05 1.87856e-05 1.9567e-05 2.06092e-05 2.20247e-05 2.39846e-05 2.67543e-05 3.07461e-05 3.65865e-05 4.51513e-05 5.74906e-05 7.79387e-05 0.000131877 0.000261058 0.000417615 0.000486342 0.000532445 1.93648e-05 1.9375e-05 1.93873e-05 1.94021e-05 1.94201e-05 1.94419e-05 1.94685e-05 1.95008e-05 1.95402e-05 1.95882e-05 1.96469e-05 1.97187e-05 1.98069e-05 1.99153e-05 2.00491e-05 2.02147e-05 2.04208e-05 2.06784e-05 2.10024e-05 2.14128e-05 2.19373e-05 2.26146e-05 2.3501e-05 2.46798e-05 2.62763e-05 2.84778e-05 3.15554e-05 3.58767e-05 4.19413e-05 5.05042e-05 6.26768e-05 7.94875e-05 0.000101157 0.00013017 0.000187802 0.000302169 0.000389579 0.000450868 2.1117e-05 2.11336e-05 2.11536e-05 2.11776e-05 2.12064e-05 2.12412e-05 2.12832e-05 2.13341e-05 2.13957e-05 2.14708e-05 2.15622e-05 2.16741e-05 2.18114e-05 2.19807e-05 2.21901e-05 2.24507e-05 2.27768e-05 2.31877e-05 2.37094e-05 2.43784e-05 2.52469e-05 2.63913e-05 2.79263e-05 3.00233e-05 3.29231e-05 3.69164e-05 4.22868e-05 4.93155e-05 5.84726e-05 7.07802e-05 8.75202e-05 0.000108872 0.000133287 0.000161495 0.000200774 0.000247118 0.000284505 2.2027e-05 2.20463e-05 2.20694e-05 2.20971e-05 2.21303e-05 2.21703e-05 2.22185e-05 2.22767e-05 2.23473e-05 2.24332e-05 2.25378e-05 2.26659e-05 2.28232e-05 2.30174e-05 2.32584e-05 2.35592e-05 2.3937e-05 2.44154e-05 2.50265e-05 2.58158e-05 2.68487e-05 2.82225e-05 3.00839e-05 3.26434e-05 3.61613e-05 4.08556e-05 4.67552e-05 5.37218e-05 6.19724e-05 7.25427e-05 8.68407e-05 0.000105522 0.00012732 0.000147884 0.000165067 0.000177936 0.000186403 2.24201e-05 2.24407e-05 2.24653e-05 2.24947e-05 2.253e-05 2.25725e-05 2.26236e-05 2.26855e-05 2.27604e-05 2.28516e-05 2.29629e-05 2.30993e-05 2.32672e-05 2.3475e-05 2.37337e-05 2.40579e-05 2.44673e-05 2.49888e-05 2.56599e-05 2.65343e-05 2.76906e-05 2.9246e-05 3.13723e-05 3.42925e-05 3.82069e-05 4.31171e-05 4.87568e-05 5.49391e-05 6.21169e-05 7.14185e-05 8.4451e-05 0.000100011 0.000115545 0.000131251 0.000143883 0.000152619 0.000163636 2.24201e-05 2.24407e-05 2.24653e-05 2.24947e-05 2.253e-05 2.25725e-05 2.26237e-05 2.26857e-05 2.27609e-05 2.28524e-05 2.29644e-05 2.31019e-05 2.32716e-05 2.34824e-05 2.37461e-05 2.40782e-05 2.45002e-05 2.50414e-05 2.57429e-05 2.66637e-05 2.78896e-05 2.9546e-05 3.18072e-05 3.48662e-05 3.88169e-05 4.34549e-05 4.83984e-05 5.41565e-05 6.40396e-05 8.54751e-05 0.000121217 0.000151408 0.000168525 0.000183263 0.000200846 0.000225455 0.000255355 2.20268e-05 2.20461e-05 2.20692e-05 2.20968e-05 2.213e-05 2.21699e-05 2.22181e-05 2.22765e-05 2.23474e-05 2.24338e-05 2.25396e-05 2.26698e-05 2.2831e-05 2.30319e-05 2.32841e-05 2.36033e-05 2.40111e-05 2.45375e-05 2.52244e-05 2.61318e-05 2.73458e-05 2.89881e-05 3.12112e-05 3.41367e-05 3.76953e-05 4.14913e-05 4.58362e-05 5.68148e-05 9.25302e-05 0.000175972 0.000273983 0.000334652 0.000377624 0.00042003 0.00045835 0.000488829 0.000515326 2.11166e-05 2.11332e-05 2.1153e-05 2.11769e-05 2.12055e-05 2.12401e-05 2.12818e-05 2.13325e-05 2.13941e-05 2.14693e-05 2.15615e-05 2.1675e-05 2.18158e-05 2.19917e-05 2.22131e-05 2.24942e-05 2.28544e-05 2.33208e-05 2.39311e-05 2.47381e-05 2.5814e-05 2.72525e-05 2.91433e-05 3.1484e-05 3.40025e-05 3.66547e-05 4.44312e-05 7.90165e-05 0.000174592 0.000298792 0.000374549 0.000428786 0.000492294 0.000564326 0.000615573 0.000645686 0.00067509 1.93743e-05 1.93863e-05 1.94009e-05 1.94186e-05 1.94399e-05 1.94658e-05 1.94972e-05 1.95356e-05 1.95825e-05 1.96398e-05 1.97101e-05 1.97969e-05 1.99045e-05 2.0039e-05 2.02081e-05 2.04223e-05 2.06959e-05 2.10481e-05 2.15042e-05 2.2096e-05 2.28579e-05 2.38139e-05 2.49354e-05 2.60414e-05 2.68788e-05 2.94515e-05 4.73451e-05 0.000111404 0.000231192 0.000323817 0.000366291 0.000420609 0.000496984 0.000580578 0.000633247 0.000662754 0.000707492 1.60193e-05 1.6024e-05 1.60301e-05 1.6038e-05 1.60481e-05 1.6061e-05 1.60775e-05 1.60985e-05 1.61249e-05 1.61578e-05 1.61985e-05 1.62489e-05 1.63113e-05 1.63885e-05 1.64841e-05 1.66018e-05 1.67465e-05 1.69229e-05 1.71337e-05 1.73744e-05 1.76287e-05 1.7808e-05 1.78018e-05 1.76416e-05 1.83327e-05 2.57489e-05 5.50613e-05 0.000145872 0.000225978 0.000231068 0.000266683 0.00033925 0.000412581 0.000486665 0.000537603 0.000578816 0.000644709 0.00071863 8.31955e-06 8.30091e-06 8.28243e-06 8.26478e-06 8.2489e-06 8.2361e-06 8.22803e-06 8.22659e-06 8.23352e-06 8.25055e-06 8.27888e-06 8.3197e-06 8.37421e-06 8.44382e-06 8.53025e-06 8.63577e-06 8.76345e-06 8.91739e-06 9.10295e-06 9.32684e-06 9.59793e-06 9.93342e-06 1.04161e-05 1.15029e-05 1.49667e-05 2.55866e-05 5.68813e-05 0.0001025 0.000130436 0.000150221 0.00017638 0.000208142 0.000246795 0.000303334 0.000347612 0.000368096 0.00040229 0.000447764 8.32943e-06 8.30997e-06 8.29009e-06 8.27023e-06 8.25111e-06 8.23379e-06 8.2197e-06 8.21064e-06 8.20871e-06 8.21595e-06 8.23423e-06 8.26474e-06 8.30851e-06 8.36655e-06 8.44015e-06 8.53101e-06 8.64135e-06 8.77407e-06 8.93283e-06 9.12231e-06 9.34814e-06 9.61754e-06 9.93979e-06 1.03273e-05 1.07975e-05 1.1376e-05 1.21022e-05 1.30389e-05 1.43078e-05 1.62239e-05 1.98959e-05 3.14003e-05 7.64766e-05 0.000193663 0.00031661 0.000365603 0.000389693 0.000401195 1.60157e-05 1.60194e-05 1.60243e-05 1.60309e-05 1.60394e-05 1.60504e-05 1.60647e-05 1.6083e-05 1.61062e-05 1.61358e-05 1.61732e-05 1.62202e-05 1.62789e-05 1.6352e-05 1.64431e-05 1.65567e-05 1.66987e-05 1.68767e-05 1.71008e-05 1.73847e-05 1.77465e-05 1.82114e-05 1.88148e-05 1.9609e-05 2.0672e-05 2.21239e-05 2.41525e-05 2.7061e-05 3.13414e-05 3.77338e-05 4.71891e-05 6.10689e-05 8.70302e-05 0.000158921 0.000307744 0.000444213 0.00049616 0.000557489 1.93645e-05 1.93747e-05 1.9387e-05 1.94019e-05 1.94199e-05 1.94419e-05 1.94685e-05 1.9501e-05 1.95406e-05 1.95889e-05 1.9648e-05 1.97205e-05 1.98094e-05 1.99188e-05 2.00538e-05 2.02211e-05 2.04292e-05 2.06894e-05 2.10168e-05 2.14315e-05 2.19614e-05 2.2646e-05 2.35427e-05 2.4737e-05 2.63594e-05 2.86089e-05 3.17832e-05 3.631e-05 4.28007e-05 5.21498e-05 6.54877e-05 8.36398e-05 0.000107034 0.000141675 0.00021459 0.000325346 0.000391482 0.00046014 2.1117e-05 2.11338e-05 2.11538e-05 2.11779e-05 2.1207e-05 2.1242e-05 2.12842e-05 2.13354e-05 2.13976e-05 2.14732e-05 2.15654e-05 2.16783e-05 2.18169e-05 2.19877e-05 2.21991e-05 2.24622e-05 2.27913e-05 2.32059e-05 2.37322e-05 2.44065e-05 2.52814e-05 2.64339e-05 2.79803e-05 3.00972e-05 3.30389e-05 3.71304e-05 4.27252e-05 5.02164e-05 6.01842e-05 7.3629e-05 9.15875e-05 0.000113786 0.000138716 0.000168798 0.000210741 0.000251211 0.000283396 2.20272e-05 2.20466e-05 2.20699e-05 2.20977e-05 2.21311e-05 2.21713e-05 2.22198e-05 2.22785e-05 2.23496e-05 2.24362e-05 2.25417e-05 2.26709e-05 2.28297e-05 2.30257e-05 2.32689e-05 2.35723e-05 2.39533e-05 2.44353e-05 2.50503e-05 2.58436e-05 2.68799e-05 2.82563e-05 3.01197e-05 3.26862e-05 3.62344e-05 4.10257e-05 4.71563e-05 5.45504e-05 6.34712e-05 7.49617e-05 9.02199e-05 0.000109344 0.000130271 0.000148419 0.000163 0.000172582 0.00018424 2.24204e-05 2.24411e-05 2.24658e-05 2.24954e-05 2.25309e-05 2.25736e-05 2.26251e-05 2.26874e-05 2.2763e-05 2.28549e-05 2.29671e-05 2.31047e-05 2.32741e-05 2.34837e-05 2.37446e-05 2.40715e-05 2.44838e-05 2.50083e-05 2.5682e-05 2.65576e-05 2.7712e-05 2.92606e-05 3.13755e-05 3.4289e-05 3.82298e-05 4.32528e-05 4.91344e-05 5.56865e-05 6.32893e-05 7.30329e-05 8.61827e-05 0.000100763 0.000115421 0.000127959 0.000137015 0.000148592 0.000164649 2.24204e-05 2.24411e-05 2.24658e-05 2.24954e-05 2.25309e-05 2.25736e-05 2.26252e-05 2.26876e-05 2.27634e-05 2.28557e-05 2.29686e-05 2.31073e-05 2.32785e-05 2.34912e-05 2.3757e-05 2.40916e-05 2.45161e-05 2.50595e-05 2.5762e-05 2.6681e-05 2.78999e-05 2.9542e-05 3.17831e-05 3.48337e-05 3.88241e-05 4.36118e-05 4.88351e-05 5.50126e-05 6.50175e-05 8.57213e-05 0.00011758 0.000142071 0.000156407 0.000170827 0.000192338 0.000229314 0.000272254 2.2027e-05 2.20464e-05 2.20696e-05 2.20974e-05 2.21308e-05 2.21709e-05 2.22194e-05 2.22782e-05 2.23497e-05 2.24368e-05 2.25435e-05 2.26748e-05 2.28374e-05 2.30399e-05 2.3294e-05 2.36154e-05 2.40252e-05 2.45527e-05 2.52388e-05 2.61413e-05 2.73434e-05 2.89652e-05 3.11662e-05 3.4097e-05 3.77357e-05 4.18121e-05 4.68138e-05 5.8734e-05 9.47304e-05 0.000177579 0.000270307 0.000324393 0.000362228 0.000401207 0.000443068 0.000481854 0.000515014 2.11167e-05 2.11333e-05 2.11533e-05 2.11772e-05 2.1206e-05 2.12408e-05 2.12828e-05 2.13338e-05 2.13959e-05 2.14717e-05 2.15645e-05 2.1679e-05 2.1821e-05 2.19983e-05 2.22213e-05 2.25039e-05 2.28654e-05 2.3332e-05 2.394e-05 2.47398e-05 2.58015e-05 2.72193e-05 2.90991e-05 3.1476e-05 3.41965e-05 3.75423e-05 4.72832e-05 8.65807e-05 0.000182747 0.00030163 0.00037573 0.000427859 0.000488466 0.000554062 0.000598642 0.000628185 0.00065935 1.9374e-05 1.93861e-05 1.94007e-05 1.94184e-05 1.94398e-05 1.94658e-05 1.94974e-05 1.95359e-05 1.95831e-05 1.96408e-05 1.97116e-05 1.9799e-05 1.99075e-05 2.00429e-05 2.02131e-05 2.04283e-05 2.07026e-05 2.10545e-05 2.15083e-05 2.20945e-05 2.28483e-05 2.38012e-05 2.49474e-05 2.6187e-05 2.75312e-05 3.17964e-05 5.361e-05 0.000116564 0.000226543 0.000316569 0.000361873 0.000420121 0.000496346 0.000575777 0.000621607 0.000650908 0.000695516 1.6018e-05 1.60225e-05 1.60285e-05 1.60362e-05 1.60461e-05 1.60589e-05 1.60752e-05 1.6096e-05 1.61224e-05 1.61553e-05 1.61961e-05 1.62468e-05 1.63095e-05 1.63873e-05 1.64833e-05 1.66017e-05 1.67468e-05 1.69235e-05 1.71345e-05 1.73763e-05 1.76313e-05 1.78485e-05 1.79197e-05 1.79152e-05 1.90877e-05 2.75681e-05 5.49903e-05 0.00011559 0.000195618 0.000220358 0.000257565 0.000336075 0.000412297 0.000485686 0.000531078 0.000570844 0.000637366 0.000708259 8.30911e-06 8.28903e-06 8.26888e-06 8.24932e-06 8.23134e-06 8.21634e-06 8.20613e-06 8.20287e-06 8.20854e-06 8.22491e-06 8.25319e-06 8.29444e-06 8.34975e-06 8.42042e-06 8.50812e-06 8.61511e-06 8.74443e-06 8.90019e-06 9.08772e-06 9.31369e-06 9.58699e-06 9.92645e-06 1.0424e-05 1.16031e-05 1.54157e-05 2.52113e-05 4.25639e-05 7.28443e-05 0.000110759 0.000145332 0.000176586 0.000212783 0.000255356 0.000305986 0.000345962 0.000365622 0.000399313 0.000443286 8.32081e-06 8.30014e-06 8.27886e-06 8.25735e-06 8.2363e-06 8.21682e-06 8.20041e-06 8.18907e-06 8.18521e-06 8.19117e-06 8.20882e-06 8.23932e-06 8.28353e-06 8.34231e-06 8.41683e-06 8.50873e-06 8.62022e-06 8.7542e-06 8.91437e-06 9.10539e-06 9.33295e-06 9.60429e-06 9.92883e-06 1.03192e-05 1.07933e-05 1.13781e-05 1.21158e-05 1.3076e-05 1.44022e-05 1.65071e-05 2.1069e-05 3.72058e-05 9.69418e-05 0.000228627 0.00033594 0.000378996 0.00040015 0.000411782 1.60144e-05 1.6018e-05 1.60228e-05 1.60293e-05 1.60377e-05 1.60486e-05 1.60627e-05 1.60808e-05 1.6104e-05 1.61336e-05 1.61711e-05 1.62184e-05 1.62775e-05 1.63512e-05 1.64431e-05 1.65577e-05 1.6701e-05 1.68807e-05 1.71071e-05 1.73938e-05 1.77595e-05 1.82296e-05 1.88405e-05 1.96463e-05 2.07289e-05 2.2216e-05 2.43135e-05 2.73667e-05 3.19542e-05 3.89225e-05 4.92981e-05 6.51036e-05 9.87557e-05 0.000190098 0.00034883 0.000461905 0.00050914 0.000587105 1.93642e-05 1.93744e-05 1.93867e-05 1.94017e-05 1.94198e-05 1.94418e-05 1.94685e-05 1.95011e-05 1.95409e-05 1.95895e-05 1.96491e-05 1.9722e-05 1.98116e-05 1.99219e-05 2.0058e-05 2.02267e-05 2.04367e-05 2.06992e-05 2.10295e-05 2.14479e-05 2.19827e-05 2.26737e-05 2.35794e-05 2.47879e-05 2.64346e-05 2.87304e-05 3.20017e-05 3.67408e-05 4.36757e-05 5.38204e-05 6.82661e-05 8.76757e-05 0.000113144 0.000155437 0.000242866 0.000338512 0.00039245 0.000479822 2.11171e-05 2.11339e-05 2.11541e-05 2.11783e-05 2.12074e-05 2.12426e-05 2.12851e-05 2.13366e-05 2.13992e-05 2.14754e-05 2.15683e-05 2.16821e-05 2.18218e-05 2.1994e-05 2.22072e-05 2.24724e-05 2.28042e-05 2.32221e-05 2.37522e-05 2.44313e-05 2.53117e-05 2.64714e-05 2.80283e-05 3.01635e-05 3.31455e-05 3.73348e-05 4.316e-05 5.11314e-05 6.19097e-05 7.63965e-05 9.53358e-05 0.000118093 0.000143869 0.000177036 0.000220843 0.000254529 0.000290092 2.20274e-05 2.20469e-05 2.20703e-05 2.20982e-05 2.21318e-05 2.21723e-05 2.22211e-05 2.22801e-05 2.23517e-05 2.24389e-05 2.25453e-05 2.26755e-05 2.28355e-05 2.30331e-05 2.32782e-05 2.3584e-05 2.39678e-05 2.44529e-05 2.50714e-05 2.5868e-05 2.69074e-05 2.82861e-05 3.01519e-05 3.2726e-05 3.63052e-05 4.11957e-05 4.75679e-05 5.5407e-05 6.49985e-05 7.73063e-05 9.31854e-05 0.000112162 0.000131262 0.000147556 0.000160275 0.000170812 0.000194095 2.24207e-05 2.24414e-05 2.24663e-05 2.2496e-05 2.25317e-05 2.25746e-05 2.26265e-05 2.26892e-05 2.27652e-05 2.28578e-05 2.29709e-05 2.31096e-05 2.32803e-05 2.34916e-05 2.37545e-05 2.40836e-05 2.44985e-05 2.50256e-05 2.57016e-05 2.65782e-05 2.77314e-05 2.92754e-05 3.13835e-05 3.4298e-05 3.82772e-05 4.34274e-05 4.95593e-05 5.64717e-05 6.44555e-05 7.44664e-05 8.71152e-05 0.000100689 0.000112683 0.000121807 0.000132039 0.000149568 0.000182101 2.24206e-05 2.24414e-05 2.24662e-05 2.2496e-05 2.25317e-05 2.25747e-05 2.26265e-05 2.26894e-05 2.27657e-05 2.28587e-05 2.29724e-05 2.31122e-05 2.32847e-05 2.3499e-05 2.37667e-05 2.41035e-05 2.45302e-05 2.50755e-05 2.57791e-05 2.6697e-05 2.79113e-05 2.95447e-05 3.17773e-05 3.4837e-05 3.8895e-05 4.38626e-05 4.93708e-05 5.58146e-05 6.55024e-05 8.4332e-05 0.000111332 0.000129991 0.00014181 0.000156357 0.000189049 0.000240371 0.000297579 2.20272e-05 2.20467e-05 2.207e-05 2.20979e-05 2.21315e-05 2.21719e-05 2.22207e-05 2.22798e-05 2.23518e-05 2.24395e-05 2.2547e-05 2.26793e-05 2.28431e-05 2.30471e-05 2.3303e-05 2.36261e-05 2.40377e-05 2.45663e-05 2.52521e-05 2.61515e-05 2.73468e-05 2.89594e-05 3.11596e-05 3.41279e-05 3.7908e-05 4.2296e-05 4.77883e-05 5.99158e-05 9.55042e-05 0.000174118 0.000259065 0.000305079 0.000336767 0.000374513 0.000425091 0.000473866 0.000512423 2.11167e-05 2.11335e-05 2.11535e-05 2.11775e-05 2.12065e-05 2.12414e-05 2.12837e-05 2.1335e-05 2.13975e-05 2.14738e-05 2.15673e-05 2.16827e-05 2.18257e-05 2.20042e-05 2.22285e-05 2.25126e-05 2.28752e-05 2.33422e-05 2.39489e-05 2.47448e-05 2.58e-05 2.7214e-05 2.91121e-05 3.15856e-05 3.45896e-05 3.8556e-05 4.96196e-05 9.1693e-05 0.000190693 0.000306747 0.00037677 0.000424542 0.00047897 0.000535293 0.000574852 0.000605005 0.000638248 1.93737e-05 1.93859e-05 1.94005e-05 1.94182e-05 1.94397e-05 1.94657e-05 1.94975e-05 1.95362e-05 1.95836e-05 1.96416e-05 1.97129e-05 1.98009e-05 1.99101e-05 2.00464e-05 2.02175e-05 2.04337e-05 2.07087e-05 2.10606e-05 2.15135e-05 2.20979e-05 2.28519e-05 2.38191e-05 2.50329e-05 2.64806e-05 2.83493e-05 3.40759e-05 6.09008e-05 0.00013095 0.000235471 0.000319126 0.000364892 0.000422011 0.000492763 0.000562497 0.000600174 0.000630694 0.000675662 1.60167e-05 1.60211e-05 1.60269e-05 1.60345e-05 1.60442e-05 1.60568e-05 1.60729e-05 1.60936e-05 1.61199e-05 1.61528e-05 1.61938e-05 1.62447e-05 1.63078e-05 1.63859e-05 1.64825e-05 1.66014e-05 1.67471e-05 1.69245e-05 1.71368e-05 1.73823e-05 1.76472e-05 1.78968e-05 1.80827e-05 1.83234e-05 2.03042e-05 3.18115e-05 6.53015e-05 0.000120982 0.00018295 0.000213906 0.000256363 0.000333652 0.000409069 0.000478386 0.000514946 0.000554561 0.000622649 0.000690501 8.29931e-06 8.27781e-06 8.256e-06 8.23451e-06 8.21435e-06 8.19701e-06 8.18453e-06 8.17935e-06 8.18377e-06 8.19961e-06 8.22802e-06 8.26989e-06 8.32616e-06 8.39802e-06 8.48707e-06 8.59554e-06 8.72651e-06 8.88411e-06 9.0737e-06 9.30207e-06 9.57849e-06 9.92403e-06 1.04503e-05 1.18429e-05 1.69408e-05 3.10552e-05 5.20051e-05 7.04264e-05 9.99578e-05 0.000139632 0.000178266 0.000218567 0.000262201 0.000305491 0.000341782 0.000361696 0.00039539 0.000436778 8.31283e-06 8.29101e-06 8.26837e-06 8.24525e-06 8.22225e-06 8.20053e-06 8.18165e-06 8.16787e-06 8.16197e-06 8.16663e-06 8.18379e-06 8.21447e-06 8.25931e-06 8.31899e-06 8.39456e-06 8.48755e-06 8.60019e-06 8.7354e-06 8.89689e-06 9.08935e-06 9.31849e-06 9.59159e-06 9.91817e-06 1.03111e-05 1.07888e-05 1.13795e-05 1.21283e-05 1.31129e-05 1.45035e-05 1.68458e-05 2.26264e-05 4.46551e-05 0.000119477 0.000259627 0.000352317 0.000391283 0.000410088 0.000421786 1.60132e-05 1.60167e-05 1.60214e-05 1.60278e-05 1.60361e-05 1.60468e-05 1.60607e-05 1.60787e-05 1.61018e-05 1.61314e-05 1.6169e-05 1.62165e-05 1.6276e-05 1.63502e-05 1.64428e-05 1.65583e-05 1.67028e-05 1.68841e-05 1.71124e-05 1.74017e-05 1.77707e-05 1.82453e-05 1.8863e-05 1.96793e-05 2.078e-05 2.2301e-05 2.44673e-05 2.76705e-05 3.25783e-05 4.01348e-05 5.14769e-05 6.97813e-05 0.000113235 0.00022337 0.000382783 0.000476075 0.00052861 0.000615532 1.9364e-05 1.93741e-05 1.93865e-05 1.94014e-05 1.94196e-05 1.94417e-05 1.94685e-05 1.95012e-05 1.95412e-05 1.959e-05 1.96499e-05 1.97234e-05 1.98136e-05 1.99246e-05 2.00617e-05 2.02317e-05 2.04432e-05 2.07078e-05 2.10406e-05 2.14622e-05 2.20012e-05 2.26978e-05 2.36116e-05 2.4833e-05 2.65023e-05 2.88426e-05 3.22102e-05 3.71655e-05 4.45522e-05 5.54763e-05 7.09524e-05 9.16082e-05 0.000119934 0.000171815 0.000268174 0.000345919 0.000397943 0.00050812 2.11171e-05 2.1134e-05 2.11542e-05 2.11786e-05 2.12078e-05 2.12432e-05 2.12859e-05 2.13377e-05 2.14007e-05 2.14773e-05 2.15709e-05 2.16854e-05 2.18261e-05 2.19995e-05 2.22143e-05 2.24814e-05 2.28156e-05 2.32362e-05 2.37697e-05 2.44528e-05 2.53382e-05 2.65042e-05 2.80704e-05 3.02226e-05 3.32425e-05 3.75271e-05 4.35834e-05 5.20377e-05 6.35919e-05 7.89907e-05 9.86759e-05 0.000121874 0.000149366 0.000188003 0.000232811 0.000261086 0.000316586 2.20276e-05 2.20472e-05 2.20706e-05 2.20987e-05 2.21324e-05 2.21731e-05 2.22222e-05 2.22816e-05 2.23536e-05 2.24414e-05 2.25484e-05 2.26795e-05 2.28407e-05 2.30397e-05 2.32865e-05 2.35944e-05 2.39805e-05 2.44684e-05 2.50898e-05 2.58893e-05 2.69314e-05 2.83122e-05 3.01804e-05 3.27614e-05 3.63695e-05 4.13561e-05 4.79706e-05 5.62577e-05 6.64938e-05 7.94714e-05 9.55972e-05 0.000113864 0.000131321 0.000146626 0.00015961 0.000179131 0.000229957 2.24209e-05 2.24418e-05 2.24667e-05 2.24965e-05 2.25324e-05 2.25756e-05 2.26277e-05 2.26908e-05 2.27673e-05 2.28605e-05 2.29743e-05 2.31139e-05 2.32858e-05 2.34985e-05 2.37632e-05 2.40943e-05 2.45114e-05 2.50408e-05 2.57187e-05 2.65965e-05 2.7749e-05 2.929e-05 3.13939e-05 3.43124e-05 3.83323e-05 4.36097e-05 4.99902e-05 5.72461e-05 6.55457e-05 7.55729e-05 8.73193e-05 9.86791e-05 0.000107565 0.00011544 0.000131501 0.000164964 0.000221908 2.24209e-05 2.24417e-05 2.24666e-05 2.24965e-05 2.25324e-05 2.25756e-05 2.26278e-05 2.2691e-05 2.27677e-05 2.28613e-05 2.29758e-05 2.31165e-05 2.32903e-05 2.3506e-05 2.37754e-05 2.4114e-05 2.45427e-05 2.50897e-05 2.57943e-05 2.67118e-05 2.79234e-05 2.95519e-05 3.17824e-05 3.48602e-05 3.89967e-05 4.41463e-05 4.99195e-05 5.65114e-05 6.56226e-05 8.15792e-05 0.000102513 0.000115769 0.00012518 0.000143679 0.000191812 0.000263227 0.000330214 2.20274e-05 2.2047e-05 2.20704e-05 2.20984e-05 2.21321e-05 2.21727e-05 2.22218e-05 2.22813e-05 2.23536e-05 2.2442e-05 2.25501e-05 2.26834e-05 2.28482e-05 2.30536e-05 2.33109e-05 2.36357e-05 2.40487e-05 2.45785e-05 2.52643e-05 2.61623e-05 2.73543e-05 2.89647e-05 3.11756e-05 3.42012e-05 3.81381e-05 4.2805e-05 4.85765e-05 6.037e-05 9.34263e-05 0.000164022 0.000237479 0.000274296 0.000300248 0.00034242 0.000407918 0.000466104 0.000506723 2.11168e-05 2.11336e-05 2.11537e-05 2.11778e-05 2.12069e-05 2.1242e-05 2.12845e-05 2.13361e-05 2.13989e-05 2.14757e-05 2.15698e-05 2.16859e-05 2.18298e-05 2.20094e-05 2.22349e-05 2.25203e-05 2.2884e-05 2.33515e-05 2.39579e-05 2.47523e-05 2.58062e-05 2.72264e-05 2.91617e-05 3.17573e-05 3.50396e-05 3.94203e-05 5.10398e-05 9.43905e-05 0.000195092 0.000309062 0.000373153 0.000415029 0.000460123 0.000507462 0.000545065 0.000577182 0.000612423 1.93735e-05 1.93857e-05 1.94003e-05 1.94181e-05 1.94396e-05 1.94657e-05 1.94975e-05 1.95364e-05 1.9584e-05 1.96424e-05 1.9714e-05 1.98025e-05 1.99124e-05 2.00494e-05 2.02214e-05 2.04385e-05 2.07142e-05 2.10666e-05 2.15196e-05 2.21048e-05 2.28646e-05 2.38571e-05 2.51537e-05 2.68181e-05 2.91649e-05 3.62457e-05 6.72305e-05 0.000145443 0.000250761 0.000328753 0.000372832 0.00042182 0.000483071 0.000538365 0.000571476 0.000603993 0.000649118 1.60155e-05 1.60198e-05 1.60255e-05 1.60329e-05 1.60424e-05 1.60548e-05 1.60707e-05 1.60912e-05 1.61174e-05 1.61503e-05 1.61914e-05 1.62425e-05 1.6306e-05 1.63846e-05 1.64816e-05 1.6601e-05 1.67475e-05 1.69258e-05 1.71402e-05 1.73908e-05 1.76703e-05 1.79598e-05 1.82443e-05 1.87259e-05 2.14726e-05 3.61282e-05 7.80579e-05 0.000140597 0.000186465 0.000214892 0.000259324 0.000330076 0.000399382 0.000458674 0.000489186 0.000533777 0.000602431 0.000665855 8.29021e-06 8.26733e-06 8.24388e-06 8.22045e-06 8.19802e-06 8.1782e-06 8.16328e-06 8.15609e-06 8.15927e-06 8.17474e-06 8.2035e-06 8.24621e-06 8.30362e-06 8.37677e-06 8.46721e-06 8.57719e-06 8.7098e-06 8.86921e-06 9.06088e-06 9.29178e-06 9.57174e-06 9.92374e-06 1.04733e-05 1.20487e-05 1.8448e-05 3.7854e-05 6.89572e-05 8.32899e-05 0.000100763 0.000140288 0.000182975 0.000226337 0.000262945 0.00030298 0.000334322 0.000358211 0.000391011 0.000429253 8.30556e-06 8.28266e-06 8.25872e-06 8.23402e-06 8.2091e-06 8.18507e-06 8.16357e-06 8.14715e-06 8.13905e-06 8.14241e-06 8.15926e-06 8.19037e-06 8.23606e-06 8.29681e-06 8.37353e-06 8.46767e-06 8.58146e-06 8.71783e-06 8.88057e-06 9.07435e-06 9.30493e-06 9.57962e-06 9.90804e-06 1.03032e-05 1.07841e-05 1.13803e-05 1.21401e-05 1.31499e-05 1.46125e-05 1.72512e-05 2.4621e-05 5.35939e-05 0.000142712 0.000286171 0.000366616 0.000402491 0.000420003 0.000431099 1.60121e-05 1.60155e-05 1.60202e-05 1.60264e-05 1.60346e-05 1.60452e-05 1.60589e-05 1.60767e-05 1.60996e-05 1.61291e-05 1.61669e-05 1.62145e-05 1.62744e-05 1.63491e-05 1.64423e-05 1.65587e-05 1.67042e-05 1.68867e-05 1.71168e-05 1.74082e-05 1.77801e-05 1.82588e-05 1.88823e-05 1.97081e-05 2.08255e-05 2.23789e-05 2.46134e-05 2.79694e-05 3.32042e-05 4.13513e-05 5.37349e-05 7.52502e-05 0.000129938 0.000256596 0.000411652 0.000489459 0.000553649 0.000639388 1.93637e-05 1.93739e-05 1.93862e-05 1.94012e-05 1.94194e-05 1.94415e-05 1.94684e-05 1.95013e-05 1.95413e-05 1.95904e-05 1.96506e-05 1.97245e-05 1.98152e-05 1.99269e-05 2.00649e-05 2.02359e-05 2.04489e-05 2.07151e-05 2.10501e-05 2.14746e-05 2.20171e-05 2.27185e-05 2.36395e-05 2.48724e-05 2.65625e-05 2.89451e-05 3.24072e-05 3.75787e-05 4.54121e-05 5.70772e-05 7.35091e-05 9.55474e-05 0.00012813 0.000191017 0.000289854 0.000352381 0.000412493 0.000536861 2.11172e-05 2.11341e-05 2.11544e-05 2.11788e-05 2.12082e-05 2.12437e-05 2.12866e-05 2.13387e-05 2.14019e-05 2.1479e-05 2.15731e-05 2.16883e-05 2.18299e-05 2.20044e-05 2.22205e-05 2.24893e-05 2.28254e-05 2.32485e-05 2.37849e-05 2.44714e-05 2.53609e-05 2.65325e-05 2.8107e-05 3.02742e-05 3.33287e-05 3.77039e-05 4.39857e-05 5.29074e-05 6.51727e-05 8.13423e-05 0.000101617 0.000125641 0.00015705 0.000204204 0.000248119 0.000279643 0.000361892 2.20277e-05 2.20474e-05 2.20709e-05 2.20991e-05 2.2133e-05 2.21738e-05 2.22231e-05 2.22828e-05 2.23553e-05 2.24435e-05 2.25512e-05 2.26831e-05 2.28453e-05 2.30455e-05 2.32938e-05 2.36034e-05 2.39916e-05 2.44818e-05 2.51057e-05 2.59077e-05 2.69521e-05 2.83348e-05 3.02047e-05 3.27907e-05 3.64226e-05 4.14966e-05 4.83434e-05 5.70626e-05 6.78991e-05 8.13795e-05 9.74311e-05 0.000114735 0.000131325 0.000148113 0.000167895 0.000212581 0.000286957 2.24211e-05 2.2442e-05 2.2467e-05 2.2497e-05 2.2533e-05 2.25764e-05 2.26288e-05 2.26922e-05 2.27691e-05 2.28628e-05 2.29773e-05 2.31177e-05 2.32907e-05 2.35046e-05 2.37708e-05 2.41036e-05 2.45226e-05 2.5054e-05 2.57337e-05 2.66125e-05 2.77647e-05 2.93033e-05 3.14035e-05 3.43238e-05 3.83761e-05 4.37676e-05 5.03824e-05 5.79526e-05 6.64259e-05 7.60441e-05 8.63955e-05 9.50343e-05 0.000101628 0.000113759 0.000142628 0.000203646 0.000276952 2.24211e-05 2.2442e-05 2.2467e-05 2.2497e-05 2.2533e-05 2.25764e-05 2.26288e-05 2.26924e-05 2.27696e-05 2.28637e-05 2.29788e-05 2.31204e-05 2.32951e-05 2.35121e-05 2.37829e-05 2.41231e-05 2.45535e-05 2.51021e-05 2.58077e-05 2.67253e-05 2.79353e-05 2.9561e-05 3.17907e-05 3.48848e-05 3.909e-05 4.44008e-05 5.03833e-05 5.69191e-05 6.51632e-05 7.76434e-05 9.17914e-05 0.000100288 0.000107655 0.000139675 0.000208517 0.000296029 0.000361804 2.20276e-05 2.20472e-05 2.20707e-05 2.20988e-05 2.21326e-05 2.21734e-05 2.22228e-05 2.22826e-05 2.23553e-05 2.24441e-05 2.25529e-05 2.26869e-05 2.28527e-05 2.30592e-05 2.33178e-05 2.36439e-05 2.40583e-05 2.45892e-05 2.52755e-05 2.6173e-05 2.73638e-05 2.89751e-05 3.11994e-05 3.42781e-05 3.83502e-05 4.32224e-05 4.89723e-05 5.97198e-05 8.81959e-05 0.000146743 0.000203611 0.000231715 0.000254488 0.000310081 0.00039628 0.000457983 0.000495587 2.11169e-05 2.11337e-05 2.11539e-05 2.11781e-05 2.12073e-05 2.12425e-05 2.12852e-05 2.1337e-05 2.14002e-05 2.14773e-05 2.1572e-05 2.16887e-05 2.18334e-05 2.20139e-05 2.22405e-05 2.2527e-05 2.28917e-05 2.336e-05 2.39666e-05 2.4761e-05 2.58165e-05 2.72468e-05 2.92212e-05 3.1927e-05 3.54286e-05 3.9974e-05 5.15099e-05 9.30055e-05 0.000192605 0.000302684 0.000360041 0.000394408 0.000428173 0.000470393 0.000510822 0.000545349 0.000581409 1.93733e-05 1.93854e-05 1.94001e-05 1.94179e-05 1.94394e-05 1.94656e-05 1.94976e-05 1.95366e-05 1.95843e-05 1.96429e-05 1.97149e-05 1.98039e-05 1.99143e-05 2.0052e-05 2.02247e-05 2.04426e-05 2.07191e-05 2.10722e-05 2.1526e-05 2.21135e-05 2.28814e-05 2.39006e-05 2.52737e-05 2.71193e-05 2.97916e-05 3.73839e-05 7.05871e-05 0.000155552 0.000261514 0.000335039 0.000374404 0.000416219 0.000461905 0.000503781 0.00053584 0.000570558 0.00061516 1.60144e-05 1.60186e-05 1.60241e-05 1.60314e-05 1.60407e-05 1.60529e-05 1.60686e-05 1.60889e-05 1.6115e-05 1.61479e-05 1.61891e-05 1.62404e-05 1.63042e-05 1.63831e-05 1.64806e-05 1.66006e-05 1.67478e-05 1.69273e-05 1.7144e-05 1.74003e-05 1.76943e-05 1.80199e-05 1.83873e-05 1.90494e-05 2.22683e-05 3.94325e-05 9.05153e-05 0.000164207 0.000200843 0.000219191 0.000264254 0.00032394 0.000378467 0.000423756 0.000455969 0.000505887 0.000574193 0.000633217 8.28187e-06 8.25767e-06 8.23263e-06 8.20725e-06 8.1825e-06 8.16005e-06 8.14248e-06 8.13313e-06 8.13513e-06 8.15045e-06 8.17982e-06 8.22361e-06 8.28231e-06 8.35685e-06 8.44873e-06 8.5602e-06 8.69439e-06 8.85556e-06 9.04927e-06 9.28269e-06 9.56611e-06 9.92346e-06 1.04856e-05 1.21637e-05 1.95183e-05 4.42077e-05 8.80625e-05 0.000106516 0.000110384 0.000144987 0.000192919 0.000229202 0.000260929 0.000296309 0.000324606 0.000352393 0.000383333 0.000418975 8.29905e-06 8.27515e-06 8.24999e-06 8.22378e-06 8.19697e-06 8.17059e-06 8.14633e-06 8.12701e-06 8.11652e-06 8.11864e-06 8.13543e-06 8.16725e-06 8.21403e-06 8.27603e-06 8.35398e-06 8.4493e-06 8.5642e-06 8.70168e-06 8.86556e-06 9.06056e-06 9.29245e-06 9.56858e-06 9.89863e-06 1.02958e-05 1.07796e-05 1.13808e-05 1.21512e-05 1.31867e-05 1.47292e-05 1.77287e-05 2.70484e-05 6.36265e-05 0.000165419 0.0003087 0.000379722 0.000412885 0.000429362 0.000441142 1.60112e-05 1.60145e-05 1.60191e-05 1.60252e-05 1.60333e-05 1.60437e-05 1.60572e-05 1.60747e-05 1.60975e-05 1.6127e-05 1.61647e-05 1.62126e-05 1.62727e-05 1.63479e-05 1.64417e-05 1.65587e-05 1.67051e-05 1.68888e-05 1.71203e-05 1.74136e-05 1.77879e-05 1.827e-05 1.88986e-05 1.97329e-05 2.08655e-05 2.24492e-05 2.47504e-05 2.82589e-05 3.38194e-05 4.25515e-05 5.60831e-05 8.15612e-05 0.000148337 0.000288181 0.00043604 0.00050586 0.000580218 0.000658867 1.93635e-05 1.93737e-05 1.9386e-05 1.94011e-05 1.94193e-05 1.94414e-05 1.94684e-05 1.95013e-05 1.95415e-05 1.95907e-05 1.96512e-05 1.97253e-05 1.98165e-05 1.99288e-05 2.00675e-05 2.02395e-05 2.04536e-05 2.07213e-05 2.10582e-05 2.14849e-05 2.20305e-05 2.27361e-05 2.36632e-05 2.49062e-05 2.66153e-05 2.90375e-05 3.25909e-05 3.79733e-05 4.62355e-05 5.8589e-05 7.59343e-05 9.97086e-05 0.000138216 0.000213581 0.000309908 0.000360935 0.000435233 0.000554119 2.11172e-05 2.11342e-05 2.11545e-05 2.1179e-05 2.12085e-05 2.12441e-05 2.12872e-05 2.13395e-05 2.1403e-05 2.14805e-05 2.1575e-05 2.16908e-05 2.18331e-05 2.20086e-05 2.22258e-05 2.24959e-05 2.28338e-05 2.32588e-05 2.37977e-05 2.44871e-05 2.53802e-05 2.65564e-05 2.8138e-05 3.03182e-05 3.34036e-05 3.78624e-05 4.43571e-05 5.37139e-05 6.66084e-05 8.34355e-05 0.000104364 0.000130526 0.000169962 0.000227642 0.00026842 0.000316285 0.000405857 2.20279e-05 2.20476e-05 2.20712e-05 2.20995e-05 2.21335e-05 2.21745e-05 2.2224e-05 2.22839e-05 2.23567e-05 2.24454e-05 2.25536e-05 2.26862e-05 2.28492e-05 2.30504e-05 2.33e-05 2.3611e-05 2.4001e-05 2.44932e-05 2.51191e-05 2.59233e-05 2.69696e-05 2.83537e-05 3.02243e-05 3.28126e-05 3.64612e-05 4.16092e-05 4.86688e-05 5.77881e-05 6.91615e-05 8.30942e-05 9.89736e-05 0.000115947 0.000134834 0.000159453 0.000197135 0.000267379 0.000340598 2.24213e-05 2.24422e-05 2.24673e-05 2.24974e-05 2.25336e-05 2.25771e-05 2.26297e-05 2.26934e-05 2.27707e-05 2.28648e-05 2.29799e-05 2.3121e-05 2.32948e-05 2.35099e-05 2.37773e-05 2.41116e-05 2.45322e-05 2.50652e-05 2.57464e-05 2.66261e-05 2.77781e-05 2.93145e-05 3.14096e-05 3.43262e-05 3.83964e-05 4.38748e-05 5.06985e-05 5.85599e-05 6.70858e-05 7.59572e-05 8.42433e-05 9.10157e-05 9.9518e-05 0.000120313 0.000177635 0.000260487 0.000328007 2.24212e-05 2.24422e-05 2.24673e-05 2.24974e-05 2.25336e-05 2.25771e-05 2.26298e-05 2.26936e-05 2.27711e-05 2.28657e-05 2.29814e-05 2.31237e-05 2.32993e-05 2.35173e-05 2.37893e-05 2.41309e-05 2.45627e-05 2.51127e-05 2.58193e-05 2.67371e-05 2.79461e-05 2.95691e-05 3.17958e-05 3.48964e-05 3.91456e-05 4.4576e-05 5.07074e-05 5.70492e-05 6.40887e-05 7.29297e-05 8.06704e-05 8.49893e-05 9.91818e-05 0.000145191 0.000241224 0.000329757 0.000379921 2.20277e-05 2.20474e-05 2.20709e-05 2.20992e-05 2.21331e-05 2.21741e-05 2.22236e-05 2.22836e-05 2.23567e-05 2.24459e-05 2.25553e-05 2.26899e-05 2.28566e-05 2.3064e-05 2.33237e-05 2.3651e-05 2.40666e-05 2.45985e-05 2.52855e-05 2.61829e-05 2.73734e-05 2.89852e-05 3.12167e-05 3.43275e-05 3.84858e-05 4.34655e-05 4.89997e-05 5.78105e-05 7.96847e-05 0.000121906 0.00016009 0.00018063 0.000205509 0.000291828 0.000390495 0.000445819 0.000476008 2.11169e-05 2.11338e-05 2.1154e-05 2.11783e-05 2.12076e-05 2.12429e-05 2.12858e-05 2.13378e-05 2.14012e-05 2.14787e-05 2.15738e-05 2.16911e-05 2.18365e-05 2.20178e-05 2.22453e-05 2.25327e-05 2.28984e-05 2.33674e-05 2.39747e-05 2.47698e-05 2.58275e-05 2.72661e-05 2.9267e-05 3.20433e-05 3.56673e-05 4.01823e-05 5.03374e-05 8.63319e-05 0.000179303 0.000282557 0.000331675 0.000356338 0.000379326 0.00042701 0.000474575 0.000509755 0.000544252 1.93731e-05 1.93852e-05 1.93999e-05 1.94177e-05 1.94393e-05 1.94655e-05 1.94975e-05 1.95366e-05 1.95845e-05 1.96433e-05 1.97156e-05 1.9805e-05 1.99158e-05 2.00541e-05 2.02275e-05 2.04461e-05 2.07233e-05 2.10772e-05 2.15323e-05 2.21224e-05 2.28978e-05 2.39382e-05 2.53648e-05 2.73193e-05 3.01072e-05 3.76181e-05 7.03512e-05 0.000159043 0.000263702 0.000332485 0.000367363 0.000395759 0.000422061 0.000459515 0.000495641 0.000531599 0.000573787 1.60134e-05 1.60175e-05 1.60229e-05 1.603e-05 1.60392e-05 1.60511e-05 1.60665e-05 1.60866e-05 1.61126e-05 1.61455e-05 1.61868e-05 1.62383e-05 1.63024e-05 1.63817e-05 1.64796e-05 1.66001e-05 1.6748e-05 1.69288e-05 1.71479e-05 1.74096e-05 1.7716e-05 1.80694e-05 1.84926e-05 1.92298e-05 2.26207e-05 4.09915e-05 9.81487e-05 0.000181875 0.000217327 0.000229697 0.000265258 0.00031313 0.00034889 0.000381937 0.000420472 0.000475701 0.000539778 0.000594464 8.27435e-06 8.24892e-06 8.22234e-06 8.19506e-06 8.16795e-06 8.14271e-06 8.12224e-06 8.11056e-06 8.11147e-06 8.12692e-06 8.15722e-06 8.20231e-06 8.26246e-06 8.33846e-06 8.43178e-06 8.54468e-06 8.68038e-06 8.84321e-06 9.03884e-06 9.27465e-06 9.56116e-06 9.92176e-06 1.04804e-05 1.21555e-05 1.99449e-05 4.76085e-05 0.000102261 0.000128851 0.00013425 0.00015734 0.000203552 0.00022751 0.000253913 0.000283844 0.000315001 0.000346908 0.000374952 0.000408467 8.29333e-06 8.26854e-06 8.24227e-06 8.21465e-06 8.18603e-06 8.15731e-06 8.13014e-06 8.10762e-06 8.09449e-06 8.09547e-06 8.11255e-06 8.14542e-06 8.19354e-06 8.25691e-06 8.33616e-06 8.43266e-06 8.54862e-06 8.68713e-06 8.85205e-06 9.04813e-06 9.2812e-06 9.55863e-06 9.89012e-06 1.0289e-05 1.07753e-05 1.13811e-05 1.21615e-05 1.32228e-05 1.48517e-05 1.82717e-05 2.98258e-05 7.41822e-05 0.000187066 0.000327394 0.000391747 0.00042246 0.000437815 0.000454003 1.60103e-05 1.60136e-05 1.60181e-05 1.60241e-05 1.60321e-05 1.60423e-05 1.60556e-05 1.60729e-05 1.60954e-05 1.61248e-05 1.61626e-05 1.62106e-05 1.6271e-05 1.63466e-05 1.64409e-05 1.65586e-05 1.67057e-05 1.68903e-05 1.7123e-05 1.74179e-05 1.77942e-05 1.82791e-05 1.89121e-05 1.97536e-05 2.08998e-05 2.25115e-05 2.4876e-05 2.85327e-05 3.44086e-05 4.3714e-05 5.85181e-05 8.86151e-05 0.000167555 0.000317521 0.000457573 0.000525345 0.000603693 0.000677129 1.93633e-05 1.93734e-05 1.93858e-05 1.94009e-05 1.94192e-05 1.94413e-05 1.94683e-05 1.95012e-05 1.95415e-05 1.95909e-05 1.96515e-05 1.9726e-05 1.98175e-05 1.99303e-05 2.00696e-05 2.02424e-05 2.04574e-05 2.07264e-05 2.10648e-05 2.14934e-05 2.20414e-05 2.27505e-05 2.36828e-05 2.49347e-05 2.66605e-05 2.91191e-05 3.27586e-05 3.83413e-05 4.7003e-05 5.99892e-05 7.82678e-05 0.000104407 0.000150889 0.000239791 0.00032967 0.000373301 0.000459257 0.000559624 2.11172e-05 2.11342e-05 2.11546e-05 2.11792e-05 2.12088e-05 2.12445e-05 2.12877e-05 2.13401e-05 2.14039e-05 2.14817e-05 2.15766e-05 2.16929e-05 2.18358e-05 2.2012e-05 2.22301e-05 2.25014e-05 2.28407e-05 2.32674e-05 2.38082e-05 2.45e-05 2.53961e-05 2.65762e-05 2.81635e-05 3.03545e-05 3.34666e-05 3.80007e-05 4.46897e-05 5.44368e-05 6.78794e-05 8.53253e-05 0.000107389 0.000138319 0.000191621 0.000257826 0.00029491 0.000358822 0.000435218 2.2028e-05 2.20477e-05 2.20714e-05 2.20997e-05 2.21339e-05 2.2175e-05 2.22247e-05 2.22848e-05 2.23579e-05 2.24469e-05 2.25556e-05 2.26887e-05 2.28524e-05 2.30545e-05 2.33051e-05 2.36174e-05 2.40088e-05 2.45026e-05 2.51303e-05 2.59361e-05 2.69839e-05 2.83689e-05 3.0239e-05 3.28266e-05 3.64846e-05 4.16904e-05 4.89348e-05 5.84112e-05 7.0262e-05 8.45345e-05 0.000100694 0.000119733 0.000147937 0.000188074 0.000247664 0.000320596 0.000377522 2.24214e-05 2.24424e-05 2.24676e-05 2.24978e-05 2.2534e-05 2.25777e-05 2.26305e-05 2.26944e-05 2.2772e-05 2.28665e-05 2.29821e-05 2.31238e-05 2.32983e-05 2.35142e-05 2.37827e-05 2.41182e-05 2.45402e-05 2.50745e-05 2.57569e-05 2.66374e-05 2.77891e-05 2.93227e-05 3.14108e-05 3.43163e-05 3.83861e-05 4.39218e-05 5.09188e-05 5.90709e-05 6.75976e-05 7.57936e-05 8.29274e-05 8.97019e-05 0.000103759 0.000150198 0.000236404 0.00031262 0.000361798 2.24213e-05 2.24424e-05 2.24675e-05 2.24977e-05 2.2534e-05 2.25777e-05 2.26305e-05 2.26946e-05 2.27724e-05 2.28674e-05 2.29836e-05 2.31264e-05 2.33028e-05 2.35216e-05 2.37947e-05 2.41374e-05 2.45704e-05 2.51215e-05 2.5829e-05 2.67471e-05 2.7955e-05 2.95744e-05 3.17937e-05 3.48864e-05 3.91499e-05 4.46545e-05 5.08833e-05 5.6752e-05 6.23816e-05 6.77125e-05 7.0714e-05 7.76498e-05 9.89983e-05 0.000170858 0.000282454 0.000349459 0.000382927 2.20278e-05 2.20475e-05 2.20711e-05 2.20994e-05 2.21335e-05 2.21746e-05 2.22243e-05 2.22845e-05 2.23579e-05 2.24475e-05 2.25573e-05 2.26924e-05 2.28597e-05 2.30679e-05 2.33286e-05 2.36569e-05 2.40735e-05 2.46063e-05 2.52939e-05 2.61915e-05 2.73813e-05 2.89911e-05 3.12202e-05 3.43361e-05 3.85274e-05 4.35274e-05 4.8529e-05 5.5017e-05 6.89692e-05 9.37379e-05 0.000113626 0.000129323 0.000175031 0.000289185 0.000384538 0.000423991 0.000446074 2.11169e-05 2.11338e-05 2.11541e-05 2.11784e-05 2.12078e-05 2.12433e-05 2.12862e-05 2.13384e-05 2.14021e-05 2.14799e-05 2.15753e-05 2.16931e-05 2.1839e-05 2.2021e-05 2.22492e-05 2.25374e-05 2.29039e-05 2.33738e-05 2.39817e-05 2.47776e-05 2.58367e-05 2.72782e-05 2.9288e-05 3.20895e-05 3.57427e-05 3.99592e-05 4.77504e-05 7.47626e-05 0.000152719 0.000241141 0.000280792 0.000295356 0.000318531 0.000384406 0.000437053 0.000467831 0.000498705 1.93729e-05 1.9385e-05 1.93997e-05 1.94176e-05 1.94391e-05 1.94654e-05 1.94974e-05 1.95366e-05 1.95846e-05 1.96436e-05 1.97161e-05 1.98058e-05 1.99171e-05 2.00559e-05 2.02298e-05 2.0449e-05 2.07269e-05 2.10816e-05 2.15378e-05 2.21303e-05 2.2911e-05 2.39632e-05 2.54135e-05 2.74051e-05 3.01202e-05 3.63034e-05 6.43975e-05 0.000150683 0.000254733 0.000313782 0.000338512 0.000347688 0.000363018 0.000409514 0.000451455 0.000484527 0.000522644 1.60125e-05 1.60164e-05 1.60217e-05 1.60287e-05 1.60377e-05 1.60493e-05 1.60646e-05 1.60844e-05 1.61102e-05 1.61431e-05 1.61845e-05 1.62363e-05 1.63006e-05 1.63802e-05 1.64785e-05 1.65995e-05 1.67481e-05 1.69301e-05 1.71514e-05 1.74176e-05 1.77335e-05 1.81048e-05 1.85511e-05 1.92733e-05 2.22501e-05 3.94736e-05 9.86292e-05 0.000188456 0.000227584 0.000241682 0.000263305 0.000294098 0.000310696 0.000337892 0.000380888 0.000435303 0.000493961 0.000550285 8.26772e-06 8.24116e-06 8.21315e-06 8.18403e-06 8.15456e-06 8.12638e-06 8.10269e-06 8.08845e-06 8.08843e-06 8.1044e-06 8.13597e-06 8.18261e-06 8.24433e-06 8.32182e-06 8.41654e-06 8.5308e-06 8.66789e-06 8.83223e-06 9.02962e-06 9.26759e-06 9.55669e-06 9.91833e-06 1.04545e-05 1.19534e-05 1.92249e-05 4.78416e-05 0.000109652 0.000147094 0.000157492 0.000173459 0.00020345 0.000219129 0.00023601 0.000268018 0.000304598 0.00033726 0.00035984 0.000396024 8.28845e-06 8.26287e-06 8.23561e-06 8.20673e-06 8.17643e-06 8.14545e-06 8.11528e-06 8.08919e-06 8.07306e-06 8.0731e-06 8.09095e-06 8.12526e-06 8.17495e-06 8.2398e-06 8.32035e-06 8.41797e-06 8.53493e-06 8.67437e-06 8.84021e-06 9.03724e-06 9.27135e-06 9.54993e-06 9.88267e-06 1.0283e-05 1.07714e-05 1.13812e-05 1.21709e-05 1.32571e-05 1.49757e-05 1.88569e-05 3.27845e-05 8.4585e-05 0.000206747 0.000342691 0.000402682 0.000431194 0.00044597 0.000471355 1.60096e-05 1.60128e-05 1.60172e-05 1.60232e-05 1.60311e-05 1.60411e-05 1.60542e-05 1.60712e-05 1.60935e-05 1.61227e-05 1.61606e-05 1.62087e-05 1.62694e-05 1.63453e-05 1.644e-05 1.65581e-05 1.67059e-05 1.68913e-05 1.71249e-05 1.7421e-05 1.7799e-05 1.82863e-05 1.89228e-05 1.97703e-05 2.09281e-05 2.25649e-05 2.49878e-05 2.87832e-05 3.49541e-05 4.48128e-05 6.10031e-05 9.61521e-05 0.000186805 0.000345652 0.000478152 0.000544195 0.000623958 0.000697744 1.93631e-05 1.93733e-05 1.93857e-05 1.94007e-05 1.9419e-05 1.94412e-05 1.94682e-05 1.95012e-05 1.95415e-05 1.9591e-05 1.96518e-05 1.97264e-05 1.98182e-05 1.99314e-05 2.00712e-05 2.02446e-05 2.04604e-05 2.07304e-05 2.10699e-05 2.15001e-05 2.20501e-05 2.27619e-05 2.36985e-05 2.49576e-05 2.6698e-05 2.91891e-05 3.29074e-05 3.86738e-05 4.7697e-05 6.12671e-05 8.05835e-05 0.000109989 0.000166738 0.000269333 0.000347841 0.000387655 0.000477402 0.000561202 2.11172e-05 2.11342e-05 2.11547e-05 2.11793e-05 2.12089e-05 2.12447e-05 2.12881e-05 2.13407e-05 2.14046e-05 2.14826e-05 2.15778e-05 2.16945e-05 2.18379e-05 2.20147e-05 2.22336e-05 2.25058e-05 2.28461e-05 2.32742e-05 2.38166e-05 2.45103e-05 2.54086e-05 2.65918e-05 2.81837e-05 3.03835e-05 3.35183e-05 3.81183e-05 4.49791e-05 5.50673e-05 6.90076e-05 8.72013e-05 0.000111555 0.000151596 0.000224281 0.000289761 0.000322065 0.000390709 0.000454003 2.2028e-05 2.20478e-05 2.20715e-05 2.21e-05 2.21342e-05 2.21754e-05 2.22252e-05 2.22856e-05 2.23589e-05 2.24482e-05 2.25572e-05 2.26908e-05 2.2855e-05 2.30578e-05 2.33092e-05 2.36225e-05 2.40151e-05 2.45101e-05 2.51391e-05 2.59463e-05 2.69951e-05 2.83804e-05 3.02491e-05 3.28337e-05 3.64946e-05 4.17425e-05 4.914e-05 5.8936e-05 7.12688e-05 8.6081e-05 0.000103827 0.00013053 0.000178134 0.000234633 0.000297713 0.000356061 0.000402119 2.24215e-05 2.24426e-05 2.24678e-05 2.2498e-05 2.25344e-05 2.25782e-05 2.26311e-05 2.26951e-05 2.2773e-05 2.28679e-05 2.29838e-05 2.3126e-05 2.33011e-05 2.35177e-05 2.3787e-05 2.41235e-05 2.45465e-05 2.5082e-05 2.57653e-05 2.66464e-05 2.77975e-05 2.93279e-05 3.14071e-05 3.42952e-05 3.83477e-05 4.39099e-05 5.10496e-05 5.94892e-05 6.82835e-05 7.59871e-05 8.3187e-05 9.53335e-05 0.000129593 0.000208225 0.000291964 0.000344638 0.000380508 2.24214e-05 2.24425e-05 2.24677e-05 2.2498e-05 2.25343e-05 2.25782e-05 2.26311e-05 2.26954e-05 2.27735e-05 2.28687e-05 2.29853e-05 2.31286e-05 2.33056e-05 2.35251e-05 2.3799e-05 2.41427e-05 2.45766e-05 2.51287e-05 2.58369e-05 2.6755e-05 2.79616e-05 2.95763e-05 3.17837e-05 3.48547e-05 3.91006e-05 4.46344e-05 5.09062e-05 5.63754e-05 6.01451e-05 6.28563e-05 6.64327e-05 7.75082e-05 0.000118894 0.000220001 0.000314306 0.000352419 0.000377813 2.20279e-05 2.20476e-05 2.20713e-05 2.20997e-05 2.21338e-05 2.2175e-05 2.22248e-05 2.22853e-05 2.23588e-05 2.24487e-05 2.25588e-05 2.26945e-05 2.28623e-05 2.30712e-05 2.33325e-05 2.36617e-05 2.40791e-05 2.46126e-05 2.53008e-05 2.61984e-05 2.73869e-05 2.89918e-05 3.12077e-05 3.42995e-05 3.84682e-05 4.34278e-05 4.78229e-05 5.16972e-05 5.81474e-05 6.92859e-05 8.07946e-05 0.00010264 0.000168468 0.000301703 0.000368578 0.000389467 0.000408504 2.11169e-05 2.11338e-05 2.11541e-05 2.11785e-05 2.1208e-05 2.12435e-05 2.12866e-05 2.13389e-05 2.14027e-05 2.14807e-05 2.15765e-05 2.16946e-05 2.1841e-05 2.20235e-05 2.22524e-05 2.25412e-05 2.29084e-05 2.33789e-05 2.39875e-05 2.47838e-05 2.58428e-05 2.72817e-05 2.92813e-05 3.20594e-05 3.56484e-05 3.94383e-05 4.42508e-05 6.00247e-05 0.000112751 0.000177238 0.000207148 0.000218546 0.000266491 0.000353224 0.0003975 0.000418468 0.000446038 1.93727e-05 1.93848e-05 1.93995e-05 1.94174e-05 1.9439e-05 1.94653e-05 1.94973e-05 1.95365e-05 1.95846e-05 1.96437e-05 1.97164e-05 1.98064e-05 1.9918e-05 2.00572e-05 2.02315e-05 2.04512e-05 2.07297e-05 2.10852e-05 2.15424e-05 2.21366e-05 2.29199e-05 2.39746e-05 2.54224e-05 2.73783e-05 2.98253e-05 3.39316e-05 5.35276e-05 0.000128206 0.000227718 0.000270275 0.00028188 0.000278909 0.000299843 0.000366816 0.000406232 0.000430723 0.000463762 1.60117e-05 1.60155e-05 1.60207e-05 1.60275e-05 1.60363e-05 1.60478e-05 1.60627e-05 1.60823e-05 1.61079e-05 1.61408e-05 1.61823e-05 1.62343e-05 1.62989e-05 1.63789e-05 1.64774e-05 1.65989e-05 1.67481e-05 1.69312e-05 1.71544e-05 1.74241e-05 1.77463e-05 1.81265e-05 1.85707e-05 1.91793e-05 2.12663e-05 3.45958e-05 8.84851e-05 0.000184724 0.000227416 0.000242716 0.0002554 0.000263628 0.000272705 0.000304076 0.000344181 0.000391744 0.000444085 0.000505518 8.26203e-06 8.23446e-06 8.20516e-06 8.17434e-06 8.14257e-06 8.11133e-06 8.08405e-06 8.06691e-06 8.06623e-06 8.08324e-06 8.11646e-06 8.16484e-06 8.22821e-06 8.30716e-06 8.4032e-06 8.5187e-06 8.65704e-06 8.82271e-06 9.02166e-06 9.2615e-06 9.55269e-06 9.91401e-06 1.04184e-05 1.16254e-05 1.74103e-05 4.31508e-05 0.000108097 0.000155396 0.000170324 0.000181707 0.000194198 0.000195689 0.000213184 0.000256411 0.000296109 0.000326598 0.000347208 0.000383885 8.28439e-06 8.25817e-06 8.23008e-06 8.20011e-06 8.16833e-06 8.13526e-06 8.10209e-06 8.07202e-06 8.05237e-06 8.05186e-06 8.07116e-06 8.10728e-06 8.1587e-06 8.22507e-06 8.30687e-06 8.40553e-06 8.52338e-06 8.66362e-06 8.83023e-06 9.02806e-06 9.26307e-06 9.54265e-06 9.87643e-06 1.02779e-05 1.0768e-05 1.13811e-05 1.21788e-05 1.3288e-05 1.5094e-05 1.94415e-05 3.56791e-05 9.40738e-05 0.000223332 0.000355331 0.000412661 0.000439457 0.000454998 0.000493786 1.6009e-05 1.60122e-05 1.60166e-05 1.60225e-05 1.60302e-05 1.60401e-05 1.60529e-05 1.60696e-05 1.60917e-05 1.61208e-05 1.61586e-05 1.62069e-05 1.62678e-05 1.6344e-05 1.6439e-05 1.65576e-05 1.67058e-05 1.68918e-05 1.71262e-05 1.74232e-05 1.78024e-05 1.82914e-05 1.89307e-05 1.97831e-05 2.09504e-05 2.26084e-05 2.50825e-05 2.90012e-05 3.54361e-05 4.58139e-05 6.34456e-05 0.000103738 0.000205256 0.00037209 0.000497722 0.000561511 0.000642015 0.000727066 1.93629e-05 1.93731e-05 1.93855e-05 1.94006e-05 1.94189e-05 1.94411e-05 1.94681e-05 1.95011e-05 1.95414e-05 1.9591e-05 1.96518e-05 1.97266e-05 1.98187e-05 1.99321e-05 2.00724e-05 2.02462e-05 2.04626e-05 2.07333e-05 2.10738e-05 2.15051e-05 2.20566e-05 2.27705e-05 2.37104e-05 2.49753e-05 2.67276e-05 2.92466e-05 3.30339e-05 3.89615e-05 4.83014e-05 6.24167e-05 8.29429e-05 0.000116624 0.000185597 0.000300116 0.000362378 0.000397382 0.000488989 0.000565704 2.11172e-05 2.11343e-05 2.11548e-05 2.11794e-05 2.12091e-05 2.12449e-05 2.12883e-05 2.1341e-05 2.14051e-05 2.14833e-05 2.15788e-05 2.16957e-05 2.18395e-05 2.20168e-05 2.22362e-05 2.25091e-05 2.28503e-05 2.32794e-05 2.38229e-05 2.4518e-05 2.54181e-05 2.66035e-05 2.81988e-05 3.04056e-05 3.35591e-05 3.82155e-05 4.52247e-05 5.56089e-05 7.00497e-05 8.93509e-05 0.000117952 0.000172623 0.000263248 0.000308038 0.000339504 0.000413513 0.000474539 2.20281e-05 2.20479e-05 2.20716e-05 2.21001e-05 2.21344e-05 2.21757e-05 2.22256e-05 2.22861e-05 2.23596e-05 2.24491e-05 2.25584e-05 2.26923e-05 2.2857e-05 2.30603e-05 2.33124e-05 2.36264e-05 2.40199e-05 2.45158e-05 2.51459e-05 2.5954e-05 2.70034e-05 2.83885e-05 3.02552e-05 3.28354e-05 3.64952e-05 4.17728e-05 4.92956e-05 5.93957e-05 7.22951e-05 8.83479e-05 0.000110725 0.000154023 0.000224372 0.000270902 0.000322756 0.000382247 0.000432425 2.24215e-05 2.24426e-05 2.24679e-05 2.24982e-05 2.25346e-05 2.25785e-05 2.26315e-05 2.26958e-05 2.27738e-05 2.28689e-05 2.29851e-05 2.31277e-05 2.33033e-05 2.35204e-05 2.37904e-05 2.41276e-05 2.45514e-05 2.50877e-05 2.57718e-05 2.66531e-05 2.78035e-05 2.93303e-05 3.13998e-05 3.42673e-05 3.82922e-05 4.38589e-05 5.1127e-05 5.99102e-05 6.92397e-05 7.82944e-05 8.94213e-05 0.000118521 0.000182992 0.000259353 0.000318926 0.000362872 0.000398496 2.24215e-05 2.24426e-05 2.24679e-05 2.24982e-05 2.25346e-05 2.25785e-05 2.26316e-05 2.2696e-05 2.27743e-05 2.28698e-05 2.29866e-05 2.31303e-05 2.33077e-05 2.35278e-05 2.38023e-05 2.41467e-05 2.45814e-05 2.51341e-05 2.58428e-05 2.67609e-05 2.7966e-05 2.95751e-05 3.1768e-05 3.48088e-05 3.90158e-05 4.45502e-05 5.08859e-05 5.64153e-05 5.91108e-05 6.04925e-05 6.7162e-05 9.64691e-05 0.000170961 0.00026669 0.000324984 0.000351209 0.000378857 2.20279e-05 2.20477e-05 2.20714e-05 2.20998e-05 2.2134e-05 2.21753e-05 2.22252e-05 2.22858e-05 2.23595e-05 2.24496e-05 2.256e-05 2.2696e-05 2.28643e-05 2.30736e-05 2.33355e-05 2.36653e-05 2.40833e-05 2.46174e-05 2.5306e-05 2.62034e-05 2.73899e-05 2.89878e-05 3.11836e-05 3.42322e-05 3.83468e-05 4.33252e-05 4.71347e-05 4.84145e-05 4.99479e-05 5.52317e-05 6.8427e-05 0.000100822 0.000196657 0.000306341 0.000339515 0.000349371 0.000377204 2.11169e-05 2.11338e-05 2.11542e-05 2.11786e-05 2.12081e-05 2.12437e-05 2.12868e-05 2.13393e-05 2.14032e-05 2.14814e-05 2.15774e-05 2.16958e-05 2.18426e-05 2.20255e-05 2.22548e-05 2.25441e-05 2.29118e-05 2.33829e-05 2.39918e-05 2.47883e-05 2.58457e-05 2.72775e-05 2.92538e-05 3.19783e-05 3.54719e-05 3.88082e-05 4.05402e-05 4.61574e-05 6.8121e-05 0.000106115 0.00013139 0.000162209 0.000250289 0.000325441 0.000350812 0.000359763 0.00039166 1.93725e-05 1.93847e-05 1.93994e-05 1.94172e-05 1.94388e-05 1.94651e-05 1.94972e-05 1.95364e-05 1.95845e-05 1.96437e-05 1.97166e-05 1.98067e-05 1.99186e-05 2.00581e-05 2.02328e-05 2.04529e-05 2.07319e-05 2.10879e-05 2.15459e-05 2.2141e-05 2.29247e-05 2.39752e-05 2.54011e-05 2.72853e-05 2.94023e-05 3.12864e-05 4.04478e-05 8.71906e-05 0.000181786 0.000217826 0.000221276 0.000214749 0.000264663 0.000330173 0.000354626 0.000365443 0.000400006 1.6011e-05 1.60148e-05 1.60198e-05 1.60265e-05 1.60352e-05 1.60464e-05 1.6061e-05 1.60803e-05 1.61058e-05 1.61386e-05 1.61803e-05 1.62326e-05 1.62974e-05 1.63776e-05 1.64764e-05 1.65982e-05 1.6748e-05 1.69319e-05 1.71565e-05 1.74289e-05 1.7755e-05 1.81382e-05 1.85666e-05 1.90126e-05 2.00504e-05 2.75899e-05 6.59407e-05 0.000162654 0.000217955 0.000230135 0.000229035 0.000219545 0.000244096 0.00028026 0.000309479 0.000339349 0.000384645 0.000466927 8.2573e-06 8.22889e-06 8.19848e-06 8.16614e-06 8.13224e-06 8.09794e-06 8.0666e-06 8.04609e-06 8.04524e-06 8.06396e-06 8.09916e-06 8.14941e-06 8.21441e-06 8.29475e-06 8.39198e-06 8.50857e-06 8.64797e-06 8.81477e-06 9.01502e-06 9.25643e-06 9.54926e-06 9.90993e-06 1.03847e-05 1.1278e-05 1.49524e-05 3.34761e-05 9.3352e-05 0.000153234 0.000169759 0.000175237 0.000170724 0.000168479 0.000199374 0.000248001 0.000279974 0.000304994 0.000326777 0.000370295 8.28113e-06 8.25441e-06 8.22567e-06 8.19483e-06 8.16185e-06 8.127e-06 8.09104e-06 8.05664e-06 8.0326e-06 8.03233e-06 8.05392e-06 8.09211e-06 8.14531e-06 8.21313e-06 8.29605e-06 8.39561e-06 8.5142e-06 8.65509e-06 8.82231e-06 9.02077e-06 9.25651e-06 9.53691e-06 9.8715e-06 1.02738e-05 1.07651e-05 1.13808e-05 1.2185e-05 1.33136e-05 1.51975e-05 1.99681e-05 3.82208e-05 0.000101925 0.00023625 0.000365746 0.000421641 0.000447315 0.000465838 0.000520726 1.60086e-05 1.60117e-05 1.6016e-05 1.60219e-05 1.60295e-05 1.60393e-05 1.60519e-05 1.60683e-05 1.609e-05 1.6119e-05 1.61569e-05 1.62053e-05 1.62664e-05 1.63428e-05 1.64381e-05 1.65569e-05 1.67055e-05 1.68919e-05 1.71268e-05 1.74245e-05 1.78046e-05 1.82948e-05 1.89361e-05 1.9792e-05 2.09666e-05 2.26414e-05 2.51571e-05 2.91776e-05 3.58334e-05 4.66702e-05 6.56775e-05 0.000110727 0.000221743 0.000396027 0.000516469 0.000577521 0.000662402 0.00076891 1.93628e-05 1.9373e-05 1.93854e-05 1.94005e-05 1.94188e-05 1.9441e-05 1.9468e-05 1.95009e-05 1.95413e-05 1.95909e-05 1.96518e-05 1.97267e-05 1.98189e-05 1.99326e-05 2.00731e-05 2.02473e-05 2.04641e-05 2.07353e-05 2.10764e-05 2.15085e-05 2.2061e-05 2.27764e-05 2.37187e-05 2.4988e-05 2.67495e-05 2.92908e-05 3.31345e-05 3.91952e-05 4.87997e-05 6.34185e-05 8.53071e-05 0.000124044 0.000207237 0.000325492 0.000371191 0.000404349 0.000503467 0.000578593 2.11172e-05 2.11343e-05 2.11548e-05 2.11794e-05 2.12092e-05 2.12451e-05 2.12885e-05 2.13413e-05 2.14055e-05 2.14838e-05 2.15794e-05 2.16966e-05 2.18406e-05 2.20182e-05 2.22381e-05 2.25115e-05 2.28532e-05 2.3283e-05 2.38273e-05 2.45234e-05 2.54247e-05 2.66116e-05 2.82093e-05 3.04212e-05 3.35898e-05 3.82927e-05 4.54263e-05 5.60708e-05 7.1072e-05 9.20378e-05 0.000127351 0.000203152 0.000292433 0.00031345 0.000349375 0.000436495 0.000495256 2.20281e-05 2.20479e-05 2.20717e-05 2.21002e-05 2.21345e-05 2.21759e-05 2.22259e-05 2.22865e-05 2.23601e-05 2.24498e-05 2.25593e-05 2.26935e-05 2.28585e-05 2.30621e-05 2.33146e-05 2.36292e-05 2.40233e-05 2.45199e-05 2.51506e-05 2.59593e-05 2.70091e-05 2.83937e-05 3.02583e-05 3.2834e-05 3.64915e-05 4.17921e-05 4.94245e-05 5.98437e-05 7.35086e-05 9.19467e-05 0.000123687 0.00019276 0.000257907 0.000282304 0.00033639 0.000413593 0.000464293 2.24216e-05 2.24427e-05 2.2468e-05 2.24983e-05 2.25348e-05 2.25788e-05 2.26318e-05 2.26962e-05 2.27744e-05 2.28696e-05 2.29861e-05 2.31289e-05 2.33048e-05 2.35224e-05 2.37928e-05 2.41305e-05 2.45549e-05 2.50918e-05 2.57763e-05 2.66577e-05 2.78072e-05 2.93307e-05 3.13911e-05 3.42388e-05 3.8235e-05 4.37996e-05 5.12046e-05 6.04315e-05 7.07806e-05 8.28973e-05 0.000106566 0.000165838 0.000228674 0.000275593 0.000333098 0.000398162 0.000438487 2.24215e-05 2.24427e-05 2.2468e-05 2.24983e-05 2.25348e-05 2.25788e-05 2.26319e-05 2.26964e-05 2.27748e-05 2.28705e-05 2.29876e-05 2.31316e-05 2.33093e-05 2.35298e-05 2.38047e-05 2.41496e-05 2.45848e-05 2.5138e-05 2.58469e-05 2.67648e-05 2.79683e-05 2.95721e-05 3.17504e-05 3.47597e-05 3.89212e-05 4.44447e-05 5.09157e-05 5.68584e-05 6.04883e-05 6.33296e-05 8.36058e-05 0.000146263 0.000221328 0.000281593 0.000328752 0.000370777 0.000401521 2.20279e-05 2.20477e-05 2.20715e-05 2.20999e-05 2.21342e-05 2.21755e-05 2.22255e-05 2.22862e-05 2.23601e-05 2.24503e-05 2.25609e-05 2.26971e-05 2.28657e-05 2.30754e-05 2.33377e-05 2.36679e-05 2.40864e-05 2.46209e-05 2.53096e-05 2.62066e-05 2.73909e-05 2.89812e-05 3.11551e-05 3.41551e-05 3.82024e-05 4.31813e-05 4.68361e-05 4.70042e-05 4.64502e-05 5.20531e-05 7.67392e-05 0.000140112 0.000231276 0.000291966 0.000317407 0.000339375 0.000379168 2.11169e-05 2.11338e-05 2.11542e-05 2.11786e-05 2.12081e-05 2.12438e-05 2.1287e-05 2.13395e-05 2.14035e-05 2.14819e-05 2.1578e-05 2.16966e-05 2.18436e-05 2.20268e-05 2.22565e-05 2.25462e-05 2.29143e-05 2.33856e-05 2.39948e-05 2.4791e-05 2.58463e-05 2.72693e-05 2.92188e-05 3.18936e-05 3.54362e-05 3.8094e-05 3.81548e-05 3.83085e-05 4.50357e-05 6.48841e-05 9.44112e-05 0.000154345 0.00025168 0.000293194 0.000310243 0.00032096 0.000370074 1.93724e-05 1.93845e-05 1.93992e-05 1.9417e-05 1.94386e-05 1.94649e-05 1.9497e-05 1.95362e-05 1.95843e-05 1.96436e-05 1.97166e-05 1.98069e-05 1.9919e-05 2.00587e-05 2.02337e-05 2.0454e-05 2.07333e-05 2.10898e-05 2.15483e-05 2.21437e-05 2.29265e-05 2.39701e-05 2.53742e-05 2.72528e-05 2.90084e-05 2.94107e-05 3.11796e-05 4.61039e-05 0.000101435 0.000145297 0.000155253 0.000176524 0.000254983 0.00029011 0.000297838 0.000299843 0.000361817 1.60105e-05 1.60142e-05 1.60191e-05 1.60257e-05 1.60342e-05 1.60452e-05 1.60595e-05 1.60785e-05 1.61038e-05 1.61368e-05 1.61786e-05 1.6231e-05 1.62961e-05 1.63765e-05 1.64755e-05 1.65975e-05 1.67477e-05 1.69323e-05 1.7158e-05 1.74321e-05 1.77606e-05 1.81453e-05 1.85607e-05 1.88487e-05 1.90974e-05 2.16241e-05 3.93244e-05 0.000106364 0.000175306 0.000189531 0.000175122 0.000176631 0.000226221 0.000249982 0.00026261 0.000276439 0.000356951 0.000455343 8.25351e-06 8.22444e-06 8.19314e-06 8.15957e-06 8.12385e-06 8.08668e-06 8.05086e-06 8.02618e-06 8.02612e-06 8.0473e-06 8.08467e-06 8.13679e-06 8.20331e-06 8.28487e-06 8.38311e-06 8.50059e-06 8.64083e-06 8.80852e-06 9.0098e-06 9.25247e-06 9.54656e-06 9.90699e-06 1.0364e-05 1.10483e-05 1.29628e-05 2.23151e-05 6.14519e-05 0.000132012 0.000153393 0.00015383 0.000140547 0.000147955 0.000196257 0.00022646 0.000239426 0.000261345 0.000314142 0.000357721 8.27864e-06 8.25158e-06 8.2224e-06 8.19096e-06 8.15711e-06 8.12094e-06 8.08273e-06 8.04401e-06 8.01406e-06 8.01572e-06 8.04034e-06 8.08055e-06 8.13536e-06 8.20442e-06 8.28825e-06 8.3885e-06 8.50765e-06 8.64902e-06 8.81667e-06 9.01558e-06 9.25187e-06 9.53291e-06 9.86808e-06 1.02709e-05 1.07631e-05 1.13806e-05 1.21896e-05 1.33325e-05 1.52743e-05 2.03501e-05 3.99729e-05 0.000106968 0.000243938 0.000373005 0.000428944 0.000454592 0.000478482 0.000548951 1.60083e-05 1.60113e-05 1.60157e-05 1.60215e-05 1.6029e-05 1.60387e-05 1.60512e-05 1.60673e-05 1.60886e-05 1.61175e-05 1.61555e-05 1.6204e-05 1.62653e-05 1.63418e-05 1.64373e-05 1.65563e-05 1.67051e-05 1.68918e-05 1.7127e-05 1.74251e-05 1.78057e-05 1.82968e-05 1.89393e-05 1.97975e-05 2.09772e-05 2.26639e-05 2.52097e-05 2.93047e-05 3.61252e-05 4.73216e-05 6.7442e-05 0.000116139 0.000234221 0.000414217 0.000532311 0.000592278 0.000690694 0.000815291 1.93627e-05 1.93729e-05 1.93853e-05 1.94004e-05 1.94187e-05 1.94409e-05 1.94679e-05 1.95008e-05 1.95412e-05 1.95908e-05 1.96517e-05 1.97267e-05 1.9819e-05 1.99328e-05 2.00735e-05 2.02479e-05 2.04649e-05 2.07364e-05 2.1078e-05 2.15106e-05 2.20638e-05 2.27801e-05 2.37239e-05 2.49961e-05 2.67641e-05 2.93215e-05 3.32066e-05 3.93659e-05 4.91725e-05 6.42209e-05 8.74667e-05 0.00013137 0.000228344 0.000340767 0.000375572 0.000410142 0.000523078 0.000585483 2.11172e-05 2.11343e-05 2.11548e-05 2.11795e-05 2.12092e-05 2.12451e-05 2.12886e-05 2.13414e-05 2.14057e-05 2.1484e-05 2.15798e-05 2.16971e-05 2.18413e-05 2.20191e-05 2.22392e-05 2.2513e-05 2.28551e-05 2.32853e-05 2.38301e-05 2.45267e-05 2.54287e-05 2.66166e-05 2.82159e-05 3.04314e-05 3.36111e-05 3.83495e-05 4.55802e-05 5.64501e-05 7.20772e-05 9.52392e-05 0.000138916 0.000233885 0.000305716 0.000312676 0.000356263 0.00045438 0.000497016 2.20281e-05 2.2048e-05 2.20718e-05 2.21003e-05 2.21346e-05 2.2176e-05 2.22261e-05 2.22867e-05 2.23604e-05 2.24502e-05 2.25598e-05 2.26942e-05 2.28594e-05 2.30633e-05 2.33161e-05 2.3631e-05 2.40254e-05 2.45225e-05 2.51536e-05 2.59626e-05 2.70125e-05 2.83966e-05 3.02594e-05 3.28319e-05 3.64887e-05 4.18108e-05 4.9547e-05 6.03171e-05 7.50256e-05 9.72901e-05 0.000142515 0.000230327 0.000266388 0.000276812 0.000347227 0.000435303 0.000467793 2.24216e-05 2.24427e-05 2.24681e-05 2.24984e-05 2.25349e-05 2.25789e-05 2.26321e-05 2.26965e-05 2.27747e-05 2.28701e-05 2.29867e-05 2.31297e-05 2.33058e-05 2.35236e-05 2.37943e-05 2.41324e-05 2.45571e-05 2.50943e-05 2.5779e-05 2.66605e-05 2.78092e-05 2.933e-05 3.13834e-05 3.42163e-05 3.8192e-05 4.37656e-05 5.133e-05 6.11569e-05 7.33518e-05 9.17393e-05 0.000135122 0.000206461 0.000238032 0.000268602 0.000346639 0.000427954 0.000449963 2.24216e-05 2.24427e-05 2.2468e-05 2.24984e-05 2.25349e-05 2.25789e-05 2.26322e-05 2.26967e-05 2.27752e-05 2.2871e-05 2.29882e-05 2.31323e-05 2.33103e-05 2.3531e-05 2.38062e-05 2.41514e-05 2.45869e-05 2.51404e-05 2.58495e-05 2.67671e-05 2.79692e-05 2.95686e-05 3.17354e-05 3.47199e-05 3.8846e-05 4.43758e-05 5.11112e-05 5.80083e-05 6.46153e-05 7.70123e-05 0.000123778 0.000190803 0.000230631 0.000269246 0.000344655 0.000411194 0.000425414 2.2028e-05 2.20478e-05 2.20715e-05 2.21e-05 2.21343e-05 2.21756e-05 2.22257e-05 2.22864e-05 2.23604e-05 2.24507e-05 2.25614e-05 2.26978e-05 2.28666e-05 2.30765e-05 2.3339e-05 2.36695e-05 2.40883e-05 2.4623e-05 2.53117e-05 2.62083e-05 2.73907e-05 2.89745e-05 3.11303e-05 3.4088e-05 3.80612e-05 4.29145e-05 4.71782e-05 4.83999e-05 4.79589e-05 6.31591e-05 0.000118085 0.000185438 0.000231839 0.000269748 0.000328583 0.000389072 0.000404088 2.11169e-05 2.11338e-05 2.11542e-05 2.11786e-05 2.12082e-05 2.12439e-05 2.12871e-05 2.13397e-05 2.14037e-05 2.14821e-05 2.15784e-05 2.16971e-05 2.18443e-05 2.20277e-05 2.22575e-05 2.25475e-05 2.29158e-05 2.33873e-05 2.39966e-05 2.47924e-05 2.58456e-05 2.72607e-05 2.91863e-05 3.18043e-05 3.52496e-05 3.78241e-05 3.76987e-05 3.5154e-05 3.88629e-05 6.18656e-05 0.000115715 0.000185561 0.000235025 0.000265337 0.000307431 0.000364536 0.00038433 1.93723e-05 1.93844e-05 1.93991e-05 1.94169e-05 1.94385e-05 1.94648e-05 1.94968e-05 1.9536e-05 1.95842e-05 1.96434e-05 1.97165e-05 1.9807e-05 1.99192e-05 2.0059e-05 2.02341e-05 2.04547e-05 2.07342e-05 2.10909e-05 2.15497e-05 2.21452e-05 2.29266e-05 2.39635e-05 2.53469e-05 2.72045e-05 2.86576e-05 2.85098e-05 2.69016e-05 2.96905e-05 4.62513e-05 8.44349e-05 0.000126271 0.000186882 0.000230403 0.000255211 0.000277458 0.00032593 0.000365683 1.60101e-05 1.60137e-05 1.60186e-05 1.60251e-05 1.60335e-05 1.60444e-05 1.60584e-05 1.60769e-05 1.61023e-05 1.61353e-05 1.61773e-05 1.62299e-05 1.62951e-05 1.63756e-05 1.64748e-05 1.6597e-05 1.67475e-05 1.69325e-05 1.71589e-05 1.7434e-05 1.77639e-05 1.81523e-05 1.85586e-05 1.87221e-05 1.85444e-05 1.85345e-05 2.28942e-05 4.35036e-05 9.0684e-05 0.000120662 0.000133509 0.000173311 0.000193625 0.000213372 0.000227398 0.000285768 0.000358342 0.000417752 8.25067e-06 8.22114e-06 8.18922e-06 8.15477e-06 8.11769e-06 8.07817e-06 8.03779e-06 8.00754e-06 8.0101e-06 8.03429e-06 8.0737e-06 8.12747e-06 8.19527e-06 8.27779e-06 8.3768e-06 8.49494e-06 8.6358e-06 8.80411e-06 9.00613e-06 9.24972e-06 9.54471e-06 9.90508e-06 1.0354e-05 1.0946e-05 1.19893e-05 1.52903e-05 2.90449e-05 7.09271e-05 0.000103313 0.000107239 0.000108265 0.000148661 0.000175664 0.000183455 0.000191549 0.000240302 0.000305786 0.000329649 8.2772e-06 8.24997e-06 8.22058e-06 8.18883e-06 8.15455e-06 8.11769e-06 8.07822e-06 8.03647e-06 7.99889e-06 8.00538e-06 8.03268e-06 8.07428e-06 8.13016e-06 8.2e-06 8.28437e-06 8.38502e-06 8.50449e-06 8.64613e-06 8.81402e-06 9.01316e-06 9.24974e-06 9.5311e-06 9.86655e-06 1.02697e-05 1.07623e-05 1.13808e-05 1.21921e-05 1.3342e-05 1.53103e-05 2.05228e-05 4.07436e-05 0.000109126 0.000247138 0.000376142 0.000432242 0.000458073 0.000485449 0.000562257 1.60081e-05 1.60112e-05 1.60155e-05 1.60213e-05 1.60288e-05 1.60384e-05 1.60508e-05 1.60667e-05 1.60876e-05 1.61167e-05 1.61547e-05 1.62033e-05 1.62646e-05 1.63413e-05 1.64369e-05 1.6556e-05 1.67049e-05 1.68916e-05 1.7127e-05 1.74253e-05 1.78062e-05 1.82976e-05 1.89407e-05 1.98001e-05 2.09823e-05 2.26749e-05 2.52356e-05 2.93674e-05 3.62691e-05 4.76404e-05 6.82872e-05 0.000118642 0.000239954 0.000422663 0.000540498 0.000600868 0.000711859 0.000839524 1.93627e-05 1.93729e-05 1.93853e-05 1.94004e-05 1.94187e-05 1.94408e-05 1.94678e-05 1.95008e-05 1.95411e-05 1.95907e-05 1.96517e-05 1.97267e-05 1.9819e-05 1.99329e-05 2.00736e-05 2.02481e-05 2.04653e-05 2.0737e-05 2.10787e-05 2.15115e-05 2.2065e-05 2.27818e-05 2.37263e-05 2.5e-05 2.67712e-05 2.93367e-05 3.32432e-05 3.94534e-05 4.93663e-05 6.46498e-05 8.8656e-05 0.00013531 0.000238885 0.000347386 0.000377433 0.000417869 0.000531555 0.000572789 2.11172e-05 2.11342e-05 2.11548e-05 2.11795e-05 2.12092e-05 2.12452e-05 2.12887e-05 2.13415e-05 2.14058e-05 2.14842e-05 2.158e-05 2.16973e-05 2.18416e-05 2.20195e-05 2.22398e-05 2.25136e-05 2.28559e-05 2.32863e-05 2.38313e-05 2.45282e-05 2.54305e-05 2.66188e-05 2.82188e-05 3.04361e-05 3.36218e-05 3.83796e-05 4.56644e-05 5.66719e-05 7.27332e-05 9.74084e-05 0.000146101 0.000248783 0.00030942 0.000309725 0.000365786 0.000442843 0.000454067 2.20281e-05 2.2048e-05 2.20718e-05 2.21003e-05 2.21347e-05 2.21761e-05 2.22262e-05 2.22868e-05 2.23606e-05 2.24504e-05 2.25601e-05 2.26945e-05 2.28598e-05 2.30638e-05 2.33168e-05 2.36318e-05 2.40264e-05 2.45236e-05 2.51549e-05 2.59641e-05 2.70139e-05 2.83976e-05 3.02596e-05 3.28306e-05 3.64879e-05 4.18255e-05 4.96364e-05 6.0673e-05 7.62178e-05 0.000101513 0.000156988 0.000243328 0.000261338 0.000264909 0.000352659 0.000404947 0.000406317 2.24216e-05 2.24428e-05 2.24681e-05 2.24985e-05 2.2535e-05 2.2579e-05 2.26322e-05 2.26966e-05 2.27749e-05 2.28703e-05 2.2987e-05 2.313e-05 2.33063e-05 2.35242e-05 2.3795e-05 2.41332e-05 2.45581e-05 2.50955e-05 2.57803e-05 2.66616e-05 2.78098e-05 2.93292e-05 3.13789e-05 3.42046e-05 3.81724e-05 4.37622e-05 5.14604e-05 6.1815e-05 7.576e-05 9.96864e-05 0.000157049 0.000213437 0.000221554 0.000251558 0.000345252 0.000383842 0.000387387 2.24216e-05 2.24427e-05 2.24681e-05 2.24984e-05 2.2535e-05 2.2579e-05 2.26322e-05 2.26968e-05 2.27754e-05 2.28712e-05 2.29885e-05 2.31327e-05 2.33107e-05 2.35316e-05 2.38069e-05 2.41522e-05 2.45879e-05 2.51415e-05 2.58506e-05 2.67679e-05 2.79692e-05 2.95662e-05 3.1727e-05 3.46995e-05 3.88126e-05 4.43728e-05 5.13731e-05 5.93235e-05 6.89537e-05 8.98332e-05 0.000149477 0.00019339 0.000208491 0.000248356 0.000335397 0.000371919 0.000383629 2.2028e-05 2.20478e-05 2.20715e-05 2.21e-05 2.21343e-05 2.21757e-05 2.22258e-05 2.22865e-05 2.23605e-05 2.24509e-05 2.25617e-05 2.26981e-05 2.2867e-05 2.3077e-05 2.33397e-05 2.36703e-05 2.40892e-05 2.46239e-05 2.53127e-05 2.62089e-05 2.73902e-05 2.89705e-05 3.11168e-05 3.4054e-05 3.79989e-05 4.28319e-05 4.75749e-05 5.0887e-05 5.46792e-05 8.18394e-05 0.000145757 0.000186844 0.000206775 0.000244869 0.000320162 0.000368937 0.000388162 2.11168e-05 2.11338e-05 2.11542e-05 2.11787e-05 2.12082e-05 2.12439e-05 2.12871e-05 2.13397e-05 2.14038e-05 2.14822e-05 2.15785e-05 2.16973e-05 2.18446e-05 2.20281e-05 2.2258e-05 2.25481e-05 2.29165e-05 2.33881e-05 2.39974e-05 2.47929e-05 2.58448e-05 2.72556e-05 2.91684e-05 3.17552e-05 3.51245e-05 3.80308e-05 3.8511e-05 3.72035e-05 4.41959e-05 8.15376e-05 0.000144126 0.000186383 0.000207564 0.000236037 0.000305109 0.000370144 0.000391489 1.93722e-05 1.93843e-05 1.9399e-05 1.94168e-05 1.94385e-05 1.94647e-05 1.94968e-05 1.95359e-05 1.95841e-05 1.96434e-05 1.97165e-05 1.9807e-05 1.99192e-05 2.00592e-05 2.02344e-05 2.0455e-05 2.07346e-05 2.10914e-05 2.15503e-05 2.21457e-05 2.29263e-05 2.39595e-05 2.53311e-05 2.71587e-05 2.86106e-05 2.85495e-05 2.66077e-05 2.79413e-05 4.38519e-05 8.69195e-05 0.000146981 0.000185211 0.000202137 0.000221693 0.000292843 0.000367903 0.000389602 1.60099e-05 1.60135e-05 1.60184e-05 1.60248e-05 1.60332e-05 1.60439e-05 1.60577e-05 1.60759e-05 1.61014e-05 1.61345e-05 1.61766e-05 1.62293e-05 1.62946e-05 1.63752e-05 1.64745e-05 1.65968e-05 1.67474e-05 1.69326e-05 1.71594e-05 1.7435e-05 1.77654e-05 1.81549e-05 1.85506e-05 1.87e-05 1.84158e-05 1.78982e-05 1.92931e-05 2.77896e-05 5.26436e-05 9.45456e-05 0.000140413 0.000159641 0.000169141 0.000187906 0.000254723 0.000334674 0.000363339 0.000350103 8.24905e-06 8.2193e-06 8.18707e-06 8.15217e-06 8.11439e-06 8.07355e-06 8.02987e-06 7.99246e-06 8.00035e-06 8.02701e-06 8.06778e-06 8.12264e-06 8.19122e-06 8.27429e-06 8.37372e-06 8.49223e-06 8.63342e-06 8.80205e-06 9.00444e-06 9.24848e-06 9.54388e-06 9.90428e-06 1.03509e-05 1.09227e-05 1.17722e-05 1.3512e-05 1.85946e-05 3.30536e-05 5.84459e-05 8.30463e-05 0.000113137 0.000140856 0.000153583 0.000167788 0.000207694 0.000256553 0.000278083 0.000283593 ) ; boundaryField { top { type symmetryPlane; } inlet { type fixedValue; value nonuniform 0(); } outlet { type zeroGradient; } outletConnectMaster { type kqRWallFunction; value nonuniform 0(); } walls { type kqRWallFunction; value nonuniform List<scalar> 6745 ( 8.88133e-06 8.87592e-06 8.87023e-06 8.86428e-06 4.17038e-06 6.37492e-06 7.38931e-06 7.98616e-06 8.35622e-06 8.58992e-06 8.73629e-06 8.82577e-06 8.87863e-06 8.90845e-06 8.92406e-06 8.93122e-06 8.9336e-06 8.93316e-06 8.93098e-06 8.92779e-06 8.92393e-06 8.91959e-06 8.91486e-06 8.90978e-06 8.90437e-06 8.89867e-06 8.89267e-06 8.8864e-06 4.20626e-06 6.40548e-06 7.42011e-06 8.01691e-06 8.38648e-06 8.61949e-06 8.76516e-06 8.85404e-06 8.90641e-06 8.93586e-06 8.95117e-06 8.9581e-06 8.96032e-06 8.9597e-06 8.95735e-06 8.95397e-06 8.94991e-06 8.94535e-06 8.94038e-06 8.93504e-06 8.92938e-06 8.9234e-06 8.91711e-06 8.91054e-06 4.24465e-06 6.43822e-06 7.45309e-06 8.0499e-06 8.41894e-06 8.65124e-06 8.79619e-06 8.88443e-06 8.93631e-06 8.96536e-06 8.98037e-06 8.98707e-06 8.98912e-06 8.98833e-06 8.98581e-06 8.98225e-06 8.97799e-06 8.97322e-06 8.96802e-06 8.96245e-06 8.95654e-06 8.9503e-06 8.94373e-06 8.93687e-06 4.28563e-06 6.47321e-06 7.48832e-06 8.08519e-06 8.4537e-06 8.68526e-06 8.82946e-06 8.91705e-06 8.9684e-06 8.99705e-06 9.01176e-06 9.01823e-06 9.02013e-06 9.01917e-06 9.01649e-06 9.01277e-06 9.00834e-06 9.00339e-06 8.99799e-06 8.99221e-06 8.98606e-06 8.97957e-06 8.97274e-06 8.9656e-06 4.32923e-06 6.51048e-06 7.52584e-06 8.12285e-06 8.49082e-06 8.7216e-06 8.86503e-06 8.95195e-06 9.00278e-06 9.03102e-06 9.04544e-06 9.05171e-06 9.05348e-06 9.05239e-06 9.04959e-06 9.04574e-06 9.04117e-06 9.03606e-06 9.03049e-06 9.02452e-06 9.01817e-06 9.01145e-06 9.00439e-06 8.997e-06 4.37544e-06 6.55002e-06 7.5656e-06 8.1629e-06 8.53031e-06 8.7603e-06 8.90293e-06 8.98918e-06 9.0395e-06 9.06736e-06 9.08152e-06 9.08763e-06 9.08931e-06 9.08813e-06 9.08526e-06 9.08133e-06 9.07667e-06 9.07145e-06 9.06576e-06 9.05964e-06 9.05313e-06 9.04623e-06 9.03896e-06 9.03134e-06 4.42413e-06 6.59176e-06 7.60763e-06 8.20529e-06 8.57215e-06 8.80133e-06 8.94318e-06 9.02879e-06 9.07863e-06 9.10616e-06 9.12013e-06 9.12615e-06 9.12779e-06 9.1266e-06 9.12371e-06 9.11977e-06 9.11509e-06 9.10982e-06 9.10406e-06 9.09785e-06 9.09121e-06 9.08417e-06 9.07674e-06 9.06893e-06 4.47501e-06 6.63549e-06 7.65192e-06 8.2499e-06 8.61623e-06 8.84465e-06 8.98576e-06 9.07079e-06 9.12022e-06 9.14752e-06 9.16139e-06 9.1674e-06 9.1691e-06 9.16797e-06 9.16516e-06 9.16128e-06 9.15664e-06 9.1514e-06 9.14564e-06 9.13939e-06 9.13269e-06 9.12555e-06 9.11798e-06 9.11e-06 4.52752e-06 6.68079e-06 7.69813e-06 8.29645e-06 8.66232e-06 8.89006e-06 9.03056e-06 9.11512e-06 9.16429e-06 9.19148e-06 9.20539e-06 9.21153e-06 9.21338e-06 9.21243e-06 9.20979e-06 9.20607e-06 9.20156e-06 9.19642e-06 9.19071e-06 9.18449e-06 9.17778e-06 9.17058e-06 9.16293e-06 9.15482e-06 4.58054e-06 6.72732e-06 7.7456e-06 8.34434e-06 8.70992e-06 8.93717e-06 9.07726e-06 9.16159e-06 9.21071e-06 9.23801e-06 9.25215e-06 9.25861e-06 9.26075e-06 9.26013e-06 9.25779e-06 9.25433e-06 9.25005e-06 9.2451e-06 9.23954e-06 9.23342e-06 9.22676e-06 9.21958e-06 9.21189e-06 9.20371e-06 4.63251e-06 6.77384e-06 7.79302e-06 8.3924e-06 8.75803e-06 8.9852e-06 9.12527e-06 9.20976e-06 9.25917e-06 9.28692e-06 9.3016e-06 9.30864e-06 9.31129e-06 9.31121e-06 9.30935e-06 9.30631e-06 9.3024e-06 9.29776e-06 9.29245e-06 9.28652e-06 9.28e-06 9.27289e-06 9.26523e-06 9.25703e-06 4.68051e-06 6.81771e-06 7.83794e-06 8.43848e-06 8.80489e-06 9.03273e-06 9.17354e-06 9.25886e-06 9.30918e-06 9.33789e-06 9.35359e-06 9.36162e-06 9.36512e-06 9.36586e-06 9.36473e-06 9.36234e-06 9.35897e-06 9.35478e-06 9.34985e-06 9.34421e-06 9.33791e-06 9.33096e-06 9.32339e-06 9.31523e-06 4.71968e-06 6.8518e-06 7.87547e-06 8.47851e-06 8.84728e-06 9.07738e-06 9.22036e-06 9.30773e-06 9.36e-06 9.39054e-06 9.40797e-06 9.41757e-06 9.42244e-06 9.42436e-06 9.42431e-06 9.42282e-06 9.42021e-06 9.41665e-06 9.41222e-06 9.40699e-06 9.401e-06 9.39428e-06 9.38687e-06 9.37879e-06 4.73863e-06 6.86052e-06 7.89547e-06 8.50491e-06 8.87975e-06 9.11541e-06 9.26328e-06 9.35489e-06 9.41082e-06 9.44454e-06 9.46473e-06 9.47672e-06 9.48361e-06 9.4872e-06 9.48859e-06 9.48831e-06 9.48669e-06 9.48393e-06 9.48015e-06 9.47543e-06 9.46984e-06 9.46342e-06 9.45623e-06 9.44829e-06 4.71099e-06 6.80942e-06 7.87401e-06 8.50106e-06 8.8925e-06 9.14121e-06 9.29923e-06 9.39887e-06 9.46114e-06 9.49995e-06 9.52428e-06 9.53965e-06 9.54931e-06 9.55518e-06 9.55835e-06 9.55957e-06 9.55916e-06 9.55737e-06 9.55435e-06 9.55024e-06 9.54512e-06 9.53906e-06 9.53212e-06 9.52436e-06 4.71777e-06 6.65101e-06 7.77397e-06 8.44634e-06 8.87273e-06 9.14892e-06 9.32613e-06 9.43942e-06 9.51167e-06 9.55791e-06 9.58791e-06 9.60769e-06 9.62082e-06 9.62943e-06 9.6348e-06 9.63767e-06 9.63863e-06 9.63792e-06 9.63574e-06 9.63229e-06 9.62767e-06 9.62199e-06 9.61533e-06 9.60775e-06 1.00254e-05 9.93237e-06 8.76552e-06 8.39336e-06 8.80921e-06 9.14066e-06 9.34823e-06 9.48114e-06 9.56652e-06 9.62197e-06 9.65866e-06 9.68343e-06 9.70036e-06 9.71189e-06 9.71952e-06 9.72415e-06 9.72638e-06 9.72676e-06 9.72541e-06 9.72258e-06 9.71845e-06 9.71312e-06 9.70671e-06 9.6993e-06 4.68802e-05 4.76151e-05 3.73593e-05 1.51903e-05 9.52393e-06 9.18997e-06 9.37876e-06 9.53804e-06 9.63549e-06 9.69924e-06 9.74186e-06 9.77094e-06 9.79109e-06 9.80506e-06 9.81457e-06 9.82068e-06 9.82398e-06 9.82521e-06 9.82455e-06 9.82224e-06 9.81848e-06 9.81343e-06 9.80722e-06 9.79994e-06 6.61857e-05 8.12105e-05 7.80854e-05 5.82954e-05 2.24875e-05 1.12712e-05 9.66888e-06 9.64197e-06 9.73604e-06 9.80131e-06 9.84472e-06 9.87506e-06 9.89642e-06 9.91151e-06 9.92199e-06 9.92891e-06 9.93285e-06 9.93452e-06 9.93432e-06 9.93232e-06 9.92879e-06 9.92391e-06 9.91781e-06 9.91062e-06 6.55545e-05 8.38757e-05 8.15423e-05 6.70572e-05 3.6851e-05 1.62714e-05 1.0588e-05 9.87435e-06 9.88141e-06 9.93468e-06 9.97183e-06 9.99875e-06 1.00184e-05 1.00328e-05 1.0043e-05 1.00499e-05 1.00539e-05 1.00557e-05 1.00557e-05 1.00538e-05 1.00503e-05 1.00455e-05 1.00395e-05 1.00323e-05 6.31594e-05 7.87359e-05 7.60613e-05 6.19683e-05 3.31294e-05 1.65701e-05 1.09507e-05 1.00827e-05 1.00433e-05 1.00823e-05 1.01129e-05 1.01363e-05 1.0154e-05 1.01673e-05 1.0177e-05 1.01836e-05 1.01875e-05 1.01891e-05 1.01892e-05 1.01873e-05 1.01839e-05 1.01791e-05 1.01732e-05 1.01661e-05 6.42584e-05 7.72414e-05 7.4756e-05 6.31961e-05 3.78617e-05 1.66494e-05 1.11297e-05 1.02375e-05 1.01829e-05 1.0223e-05 1.02539e-05 1.0279e-05 1.02977e-05 1.03118e-05 1.0322e-05 1.03291e-05 1.03332e-05 1.0335e-05 1.03353e-05 1.03336e-05 1.03303e-05 1.03257e-05 1.03199e-05 1.0313e-05 6.38167e-05 7.73465e-05 7.44412e-05 6.66849e-05 5.19702e-05 2.08574e-05 1.1921e-05 1.04171e-05 1.03187e-05 1.03603e-05 1.03975e-05 1.04272e-05 1.04495e-05 1.0466e-05 1.0478e-05 1.04863e-05 1.04913e-05 1.04938e-05 1.04946e-05 1.04933e-05 1.04904e-05 1.04861e-05 1.04806e-05 1.04744e-05 5.79029e-05 7.65678e-05 7.38391e-05 6.71445e-05 5.62383e-05 3.51814e-05 1.46098e-05 1.08623e-05 1.04861e-05 1.05081e-05 1.05528e-05 1.05864e-05 1.06128e-05 1.06322e-05 1.06465e-05 1.06564e-05 1.06627e-05 1.06663e-05 1.06679e-05 1.06674e-05 1.06652e-05 1.06615e-05 1.06568e-05 1.06519e-05 5.78823e-05 7.37428e-05 7.37394e-05 6.7858e-05 5.83484e-05 4.81816e-05 2.13345e-05 1.20751e-05 1.07474e-05 1.06831e-05 1.07246e-05 1.07613e-05 1.07907e-05 1.08127e-05 1.08291e-05 1.08406e-05 1.08484e-05 1.08535e-05 1.08561e-05 1.08567e-05 1.08555e-05 1.0853e-05 1.08498e-05 1.08466e-05 0.000106928 8.00983e-05 7.44283e-05 6.99506e-05 6.05345e-05 5.15125e-05 2.95478e-05 1.43807e-05 1.11947e-05 1.0899e-05 1.09164e-05 1.09543e-05 1.09845e-05 1.10084e-05 1.10265e-05 1.10396e-05 1.10491e-05 1.10559e-05 1.10601e-05 1.1062e-05 1.10625e-05 1.10617e-05 1.10606e-05 1.10592e-05 0.000327518 0.000161339 8.72427e-05 7.34134e-05 6.30777e-05 5.31365e-05 3.54991e-05 1.74709e-05 1.18971e-05 1.11614e-05 1.11323e-05 1.11648e-05 1.11946e-05 1.1219e-05 1.12381e-05 1.12528e-05 1.12644e-05 1.12733e-05 1.12796e-05 1.12839e-05 1.12867e-05 1.12886e-05 1.129e-05 1.12905e-05 0.000544156 0.000352324 0.000133164 8.11277e-05 6.52215e-05 5.35288e-05 3.77007e-05 2.01376e-05 1.27458e-05 1.14696e-05 1.13749e-05 1.13935e-05 1.14197e-05 1.14426e-05 1.14624e-05 1.14787e-05 1.14929e-05 1.15047e-05 1.15144e-05 1.15221e-05 1.15283e-05 1.15337e-05 1.15385e-05 1.15412e-05 0.00058735 0.000561266 0.000211962 9.26912e-05 6.57825e-05 5.1646e-05 3.62672e-05 2.04885e-05 1.31649e-05 1.17555e-05 1.1629e-05 1.16329e-05 1.16513e-05 1.16719e-05 1.16908e-05 1.17106e-05 1.17294e-05 1.17468e-05 1.1762e-05 1.17755e-05 1.17872e-05 1.17979e-05 1.18069e-05 1.18129e-05 0.000593673 0.000631462 0.000301608 0.000109047 6.39676e-05 4.71074e-05 3.21457e-05 1.92463e-05 1.3104e-05 1.19879e-05 1.18724e-05 1.18613e-05 1.18704e-05 1.18861e-05 1.19143e-05 1.19433e-05 1.19701e-05 1.19959e-05 1.20213e-05 1.20429e-05 1.20626e-05 1.20794e-05 1.20942e-05 1.21043e-05 0.000588989 0.000639208 0.000358195 0.000121404 6.06872e-05 4.08563e-05 2.66219e-05 1.67655e-05 1.28694e-05 1.22152e-05 1.20922e-05 1.20525e-05 1.20473e-05 1.20816e-05 1.21161e-05 1.21443e-05 1.21945e-05 1.22434e-05 1.2283e-05 1.23224e-05 1.23547e-05 1.2384e-05 1.24058e-05 1.24243e-05 0.000548183 0.000637627 0.000382732 0.000118568 5.3151e-05 3.27741e-05 2.11064e-05 1.46883e-05 1.26604e-05 1.22542e-05 1.21888e-05 1.22046e-05 1.22042e-05 1.21519e-05 1.21647e-05 1.23076e-05 1.2416e-05 1.24847e-05 1.2562e-05 1.26184e-05 1.26682e-05 1.27042e-05 1.27389e-05 1.27516e-05 0.000510795 0.000643572 0.000419339 0.000115091 4.3019e-05 2.32908e-05 1.57186e-05 1.392e-05 1.36811e-05 1.5185e-05 2.15155e-05 2.95665e-05 3.0984e-05 2.39885e-05 1.41451e-05 1.26289e-05 1.25481e-05 1.27069e-05 1.28254e-05 1.2919e-05 1.29977e-05 1.30746e-05 1.31129e-05 1.31475e-05 0.000500614 0.000654121 0.000496773 0.000148104 3.26475e-05 2.01116e-05 1.99279e-05 3.06484e-05 5.20915e-05 7.21166e-05 8.4429e-05 8.72831e-05 8.30977e-05 7.52348e-05 5.86627e-05 2.60585e-05 1.47432e-05 1.30635e-05 1.31586e-05 1.33168e-05 1.34057e-05 1.3445e-05 1.35139e-05 1.35391e-05 0.000503201 0.000658967 0.000610153 0.000313559 5.17588e-05 2.83509e-05 4.81426e-05 7.15552e-05 8.29341e-05 9.4208e-05 9.72723e-05 9.37472e-05 8.59995e-05 7.59494e-05 6.56291e-05 4.51584e-05 2.26279e-05 1.43856e-05 1.35739e-05 1.36597e-05 1.37837e-05 1.39449e-05 1.39964e-05 1.4005e-05 0.00052264 0.000672707 0.000662279 0.000533936 0.000192053 5.7782e-05 5.8629e-05 7.01845e-05 8.68943e-05 9.86626e-05 9.76963e-05 8.17317e-05 6.89647e-05 5.59796e-05 4.00398e-05 3.34077e-05 1.90226e-05 1.48244e-05 1.43923e-05 1.44137e-05 1.44521e-05 1.44181e-05 1.44207e-05 1.47176e-05 0.000548717 0.000707952 0.000693149 0.000633869 0.000470529 0.000224961 0.000108826 7.52757e-05 8.84012e-05 9.7089e-05 8.39135e-05 5.97159e-05 5.13069e-05 4.47924e-05 2.83447e-05 2.22095e-05 1.62972e-05 1.48243e-05 1.46559e-05 1.46217e-05 1.46972e-05 1.48965e-05 1.54252e-05 1.66609e-05 8.85785e-06 8.85089e-06 8.84363e-06 8.83607e-06 8.82823e-06 8.82012e-06 8.81174e-06 8.80312e-06 8.79425e-06 8.78516e-06 8.77585e-06 8.76634e-06 8.75665e-06 8.74675e-06 8.73664e-06 8.7263e-06 8.71575e-06 8.705e-06 8.69404e-06 8.68288e-06 8.67154e-06 8.66001e-06 8.64832e-06 8.63648e-06 8.62451e-06 8.61243e-06 8.60025e-06 8.58797e-06 8.57559e-06 8.56313e-06 8.5506e-06 8.53806e-06 8.52547e-06 8.51285e-06 8.50029e-06 8.48778e-06 8.47536e-06 8.46303e-06 8.45082e-06 8.43873e-06 8.42679e-06 8.41501e-06 8.40342e-06 8.39205e-06 8.87962e-06 8.8723e-06 8.86466e-06 8.85671e-06 8.84846e-06 8.83993e-06 8.83113e-06 8.82206e-06 8.81275e-06 8.8032e-06 8.79341e-06 8.78341e-06 8.77323e-06 8.76282e-06 8.75216e-06 8.74124e-06 8.73008e-06 8.71869e-06 8.70706e-06 8.69521e-06 8.68315e-06 8.67087e-06 8.65839e-06 8.64574e-06 8.63293e-06 8.61998e-06 8.6069e-06 8.59369e-06 8.58037e-06 8.56695e-06 8.55345e-06 8.53989e-06 8.52633e-06 8.51273e-06 8.4991e-06 8.48554e-06 8.47203e-06 8.45858e-06 8.44521e-06 8.43193e-06 8.41877e-06 8.40575e-06 8.39291e-06 8.38029e-06 8.90343e-06 8.89575e-06 8.88773e-06 8.8794e-06 8.87076e-06 8.86182e-06 8.8526e-06 8.84311e-06 8.83335e-06 8.82333e-06 8.81305e-06 8.80256e-06 8.79184e-06 8.78086e-06 8.76959e-06 8.75805e-06 8.74624e-06 8.73417e-06 8.72185e-06 8.70929e-06 8.69648e-06 8.68342e-06 8.67014e-06 8.65665e-06 8.64297e-06 8.62912e-06 8.6151e-06 8.60095e-06 8.58666e-06 8.57226e-06 8.55777e-06 8.5432e-06 8.52859e-06 8.51398e-06 8.49934e-06 8.48461e-06 8.46992e-06 8.45526e-06 8.44062e-06 8.42603e-06 8.41154e-06 8.39718e-06 8.38298e-06 8.36901e-06 8.92944e-06 8.92141e-06 8.91304e-06 8.90434e-06 8.89533e-06 8.88601e-06 8.87638e-06 8.86647e-06 8.85625e-06 8.84575e-06 8.83499e-06 8.82397e-06 8.81268e-06 8.80108e-06 8.78918e-06 8.77699e-06 8.76452e-06 8.75177e-06 8.73874e-06 8.72544e-06 8.71186e-06 8.69801e-06 8.68391e-06 8.66956e-06 8.655e-06 8.64024e-06 8.62529e-06 8.61019e-06 8.59493e-06 8.57955e-06 8.56405e-06 8.54846e-06 8.53278e-06 8.51703e-06 8.50124e-06 8.48541e-06 8.46945e-06 8.45344e-06 8.43745e-06 8.42148e-06 8.40558e-06 8.38979e-06 8.37416e-06 8.35872e-06 8.95787e-06 8.94952e-06 8.94082e-06 8.93178e-06 8.92241e-06 8.91272e-06 8.90269e-06 8.89235e-06 8.88168e-06 8.87071e-06 8.85945e-06 8.84788e-06 8.83599e-06 8.82378e-06 8.81125e-06 8.79842e-06 8.78529e-06 8.77184e-06 8.75809e-06 8.74403e-06 8.72966e-06 8.715e-06 8.70006e-06 8.68486e-06 8.66942e-06 8.65375e-06 8.63789e-06 8.62183e-06 8.60562e-06 8.58924e-06 8.57273e-06 8.55608e-06 8.5393e-06 8.52238e-06 8.50534e-06 8.48821e-06 8.47102e-06 8.45371e-06 8.43628e-06 8.41886e-06 8.40151e-06 8.38425e-06 8.36711e-06 8.35013e-06 8.989e-06 8.98035e-06 8.97133e-06 8.96197e-06 8.95225e-06 8.94218e-06 8.93176e-06 8.921e-06 8.90989e-06 8.89844e-06 8.88666e-06 8.87454e-06 8.86207e-06 8.84927e-06 8.83613e-06 8.82266e-06 8.80886e-06 8.79471e-06 8.78021e-06 8.76538e-06 8.75022e-06 8.73474e-06 8.71897e-06 8.70291e-06 8.6866e-06 8.67004e-06 8.65325e-06 8.63627e-06 8.61909e-06 8.60172e-06 8.58417e-06 8.56644e-06 8.54852e-06 8.53043e-06 8.51216e-06 8.49372e-06 8.47515e-06 8.4565e-06 8.43779e-06 8.41897e-06 8.40012e-06 8.38133e-06 8.36264e-06 8.34407e-06 9.0231e-06 9.01417e-06 9.00486e-06 8.99517e-06 8.98511e-06 8.97467e-06 8.96386e-06 8.95267e-06 8.94111e-06 8.92919e-06 8.91689e-06 8.90422e-06 8.8912e-06 8.87782e-06 8.86408e-06 8.84998e-06 8.8355e-06 8.82065e-06 8.80542e-06 8.78983e-06 8.77388e-06 8.75761e-06 8.74102e-06 8.72412e-06 8.70695e-06 8.68951e-06 8.67182e-06 8.65391e-06 8.63576e-06 8.61739e-06 8.59879e-06 8.57997e-06 8.56093e-06 8.54167e-06 8.5222e-06 8.50253e-06 8.48267e-06 8.46266e-06 8.44256e-06 8.42242e-06 8.40225e-06 8.38203e-06 8.36177e-06 8.34158e-06 9.06045e-06 9.05126e-06 9.04167e-06 9.03166e-06 9.02126e-06 9.01045e-06 8.99924e-06 8.98763e-06 8.97562e-06 8.9632e-06 8.9504e-06 8.93721e-06 8.92364e-06 8.90969e-06 8.89536e-06 8.88063e-06 8.8655e-06 8.84997e-06 8.83405e-06 8.81773e-06 8.80105e-06 8.78401e-06 8.76663e-06 8.74893e-06 8.73092e-06 8.71263e-06 8.69406e-06 8.67523e-06 8.65613e-06 8.63676e-06 8.61714e-06 8.59727e-06 8.57714e-06 8.55677e-06 8.53617e-06 8.51534e-06 8.4943e-06 8.47308e-06 8.4517e-06 8.4302e-06 8.40863e-06 8.38702e-06 8.3654e-06 8.34375e-06 9.10132e-06 9.09189e-06 9.08202e-06 9.07171e-06 9.06097e-06 9.04979e-06 9.03818e-06 9.02615e-06 9.01368e-06 9.0008e-06 8.9875e-06 8.9738e-06 8.9597e-06 8.9452e-06 8.9303e-06 8.91498e-06 8.89925e-06 8.88309e-06 8.86651e-06 8.84952e-06 8.83214e-06 8.81438e-06 8.79626e-06 8.77781e-06 8.75903e-06 8.73993e-06 8.72052e-06 8.7008e-06 8.68079e-06 8.66049e-06 8.6399e-06 8.61903e-06 8.59789e-06 8.57649e-06 8.55484e-06 8.53295e-06 8.51083e-06 8.4885e-06 8.46599e-06 8.44331e-06 8.42049e-06 8.39755e-06 8.37453e-06 8.35148e-06 9.14598e-06 9.13634e-06 9.12621e-06 9.11562e-06 9.10455e-06 9.09302e-06 9.08102e-06 9.06858e-06 9.05568e-06 9.04234e-06 9.02857e-06 9.01437e-06 8.99977e-06 8.98475e-06 8.96932e-06 8.95346e-06 8.93716e-06 8.92042e-06 8.90325e-06 8.88565e-06 8.86764e-06 8.84924e-06 8.83046e-06 8.81133e-06 8.79183e-06 8.77199e-06 8.75181e-06 8.73128e-06 8.71044e-06 8.68927e-06 8.6678e-06 8.64603e-06 8.62398e-06 8.60166e-06 8.57907e-06 8.55624e-06 8.53316e-06 8.50986e-06 8.48634e-06 8.46263e-06 8.43874e-06 8.4147e-06 8.39056e-06 8.36633e-06 9.19474e-06 9.18493e-06 9.17459e-06 9.16374e-06 9.15237e-06 9.14051e-06 9.12815e-06 9.11532e-06 9.10202e-06 9.08825e-06 9.07404e-06 9.05939e-06 9.04432e-06 9.02883e-06 9.01291e-06 8.99655e-06 8.97974e-06 8.96248e-06 8.94478e-06 8.92665e-06 8.90809e-06 8.88912e-06 8.86977e-06 8.85003e-06 8.82991e-06 8.80943e-06 8.78857e-06 8.76736e-06 8.74579e-06 8.72389e-06 8.70166e-06 8.67912e-06 8.65628e-06 8.63317e-06 8.6098e-06 8.58616e-06 8.56227e-06 8.53815e-06 8.5138e-06 8.48924e-06 8.4645e-06 8.43961e-06 8.41461e-06 8.38953e-06 9.24799e-06 9.23806e-06 9.22755e-06 9.21647e-06 9.20484e-06 9.19267e-06 9.17999e-06 9.16681e-06 9.15314e-06 9.13899e-06 9.12439e-06 9.10934e-06 9.09386e-06 9.07794e-06 9.06159e-06 9.04479e-06 9.02754e-06 9.00984e-06 8.99168e-06 8.97309e-06 8.95406e-06 8.93461e-06 8.91477e-06 8.89453e-06 8.87391e-06 8.8529e-06 8.83151e-06 8.80974e-06 8.78761e-06 8.76513e-06 8.74231e-06 8.71917e-06 8.69573e-06 8.67201e-06 8.64801e-06 8.62375e-06 8.59924e-06 8.57449e-06 8.54952e-06 8.52436e-06 8.49903e-06 8.47356e-06 8.44799e-06 8.42235e-06 9.30618e-06 9.29616e-06 9.28552e-06 9.27425e-06 9.26239e-06 9.24996e-06 9.23699e-06 9.22351e-06 9.20952e-06 9.19506e-06 9.18013e-06 9.16475e-06 9.14893e-06 9.13265e-06 9.11593e-06 9.09877e-06 9.08115e-06 9.06308e-06 9.04456e-06 9.02559e-06 9.00619e-06 8.98638e-06 8.96616e-06 8.94555e-06 8.92455e-06 8.90316e-06 8.88139e-06 8.85925e-06 8.83674e-06 8.81388e-06 8.79068e-06 8.76716e-06 8.74333e-06 8.71922e-06 8.69482e-06 8.67016e-06 8.64526e-06 8.62014e-06 8.59482e-06 8.56932e-06 8.54367e-06 8.51789e-06 8.49204e-06 8.46615e-06 9.36977e-06 9.35972e-06 9.34898e-06 9.33756e-06 9.32552e-06 9.31288e-06 9.29969e-06 9.28597e-06 9.27175e-06 9.25704e-06 9.24186e-06 9.22622e-06 9.21012e-06 9.19356e-06 9.17655e-06 9.1591e-06 9.14121e-06 9.12287e-06 9.10408e-06 9.08486e-06 9.06521e-06 9.04516e-06 9.02471e-06 9.00388e-06 8.98265e-06 8.96106e-06 8.9391e-06 8.91679e-06 8.89413e-06 8.87112e-06 8.84779e-06 8.82413e-06 8.80017e-06 8.77593e-06 8.75141e-06 8.72665e-06 8.70166e-06 8.67646e-06 8.65107e-06 8.62551e-06 8.59981e-06 8.57401e-06 8.54815e-06 8.52229e-06 9.43934e-06 9.42928e-06 9.41848e-06 9.40697e-06 9.3948e-06 9.38201e-06 9.36869e-06 9.35482e-06 9.34043e-06 9.32556e-06 9.3102e-06 9.29436e-06 9.27806e-06 9.26131e-06 9.24411e-06 9.22648e-06 9.2084e-06 9.18989e-06 9.17095e-06 9.1516e-06 9.13186e-06 9.11172e-06 9.09121e-06 9.07033e-06 9.04909e-06 9.02752e-06 9.00562e-06 8.98339e-06 8.96084e-06 8.93796e-06 8.91477e-06 8.89127e-06 8.86749e-06 8.84343e-06 8.81912e-06 8.79458e-06 8.76982e-06 8.74485e-06 8.71969e-06 8.69438e-06 8.66893e-06 8.6434e-06 8.61785e-06 8.59235e-06 9.5155e-06 9.50549e-06 9.49467e-06 9.48311e-06 9.47087e-06 9.45802e-06 9.44465e-06 9.43071e-06 9.41625e-06 9.40127e-06 9.38581e-06 9.36987e-06 9.35346e-06 9.3366e-06 9.3193e-06 9.30158e-06 9.28343e-06 9.26489e-06 9.24595e-06 9.22664e-06 9.20697e-06 9.18696e-06 9.1666e-06 9.14592e-06 9.12494e-06 9.10367e-06 9.08211e-06 9.06026e-06 9.03812e-06 9.0157e-06 8.99299e-06 8.97e-06 8.94674e-06 8.92324e-06 8.8995e-06 8.87553e-06 8.85134e-06 8.82695e-06 8.80239e-06 8.77767e-06 8.75281e-06 8.72791e-06 8.70301e-06 8.67819e-06 9.59901e-06 9.58906e-06 9.57826e-06 9.56668e-06 9.55444e-06 9.54169e-06 9.52833e-06 9.51441e-06 9.49994e-06 9.48495e-06 9.46945e-06 9.45347e-06 9.43704e-06 9.42017e-06 9.40288e-06 9.38519e-06 9.36713e-06 9.34871e-06 9.32996e-06 9.31089e-06 9.29153e-06 9.27188e-06 9.25196e-06 9.23178e-06 9.21136e-06 9.19072e-06 9.16984e-06 9.14872e-06 9.12736e-06 9.10577e-06 9.08393e-06 9.06186e-06 9.03956e-06 9.01703e-06 8.99426e-06 8.97128e-06 8.9481e-06 8.92473e-06 8.90117e-06 8.87745e-06 8.85363e-06 8.82975e-06 8.80587e-06 8.78206e-06 9.69069e-06 9.6808e-06 9.67005e-06 9.65853e-06 9.64642e-06 9.63383e-06 9.62057e-06 9.60674e-06 9.59235e-06 9.5774e-06 9.56194e-06 9.54602e-06 9.52965e-06 9.51286e-06 9.4957e-06 9.47819e-06 9.46038e-06 9.44229e-06 9.42394e-06 9.40536e-06 9.38657e-06 9.36759e-06 9.34842e-06 9.3291e-06 9.30962e-06 9.28998e-06 9.27019e-06 9.25023e-06 9.23011e-06 9.2098e-06 9.18931e-06 9.16863e-06 9.14777e-06 9.12673e-06 9.10547e-06 9.08403e-06 9.06239e-06 9.04055e-06 9.01851e-06 8.9963e-06 8.97397e-06 8.95156e-06 8.92912e-06 8.90671e-06 9.79142e-06 9.7816e-06 9.77091e-06 9.75954e-06 9.7478e-06 9.73538e-06 9.72232e-06 9.70864e-06 9.69435e-06 9.67951e-06 9.66416e-06 9.64837e-06 9.63216e-06 9.61559e-06 9.59872e-06 9.58159e-06 9.56423e-06 9.5467e-06 9.529e-06 9.51118e-06 9.49327e-06 9.4753e-06 9.45727e-06 9.4392e-06 9.42108e-06 9.40293e-06 9.38472e-06 9.36645e-06 9.3481e-06 9.32965e-06 9.31108e-06 9.29239e-06 9.27358e-06 9.25465e-06 9.23559e-06 9.21637e-06 9.19693e-06 9.17728e-06 9.15741e-06 9.13733e-06 9.11707e-06 9.09666e-06 9.07614e-06 9.05558e-06 9.90216e-06 9.89241e-06 9.88186e-06 9.87102e-06 9.85959e-06 9.84742e-06 9.83459e-06 9.82107e-06 9.80694e-06 9.79226e-06 9.77711e-06 9.76154e-06 9.74562e-06 9.72943e-06 9.71302e-06 9.69645e-06 9.67976e-06 9.66302e-06 9.64625e-06 9.6295e-06 9.61282e-06 9.59625e-06 9.5798e-06 9.56347e-06 9.54726e-06 9.53115e-06 9.51514e-06 9.4992e-06 9.4833e-06 9.46741e-06 9.45152e-06 9.43562e-06 9.41969e-06 9.40372e-06 9.38767e-06 9.37152e-06 9.35516e-06 9.33855e-06 9.32165e-06 9.30446e-06 9.28698e-06 9.26922e-06 9.25124e-06 9.23309e-06 1.00239e-05 1.00143e-05 1.00044e-05 9.99402e-06 9.9829e-06 9.97104e-06 9.95842e-06 9.94511e-06 9.93119e-06 9.91675e-06 9.90188e-06 9.88665e-06 9.87116e-06 9.85549e-06 9.83971e-06 9.82389e-06 9.8081e-06 9.7924e-06 9.77684e-06 9.76149e-06 9.74644e-06 9.73175e-06 9.7174e-06 9.7034e-06 9.68974e-06 9.6764e-06 9.66334e-06 9.65055e-06 9.63799e-06 9.62562e-06 9.61343e-06 9.60136e-06 9.58937e-06 9.57743e-06 9.56547e-06 9.5534e-06 9.54119e-06 9.52868e-06 9.51578e-06 9.50245e-06 9.48865e-06 9.4744e-06 9.4597e-06 9.44461e-06 1.01578e-05 1.01488e-05 1.01396e-05 1.01297e-05 1.01189e-05 1.01073e-05 1.0095e-05 1.00819e-05 1.00683e-05 1.00542e-05 1.00397e-05 1.00249e-05 1.001e-05 9.99496e-06 9.97997e-06 9.96509e-06 9.95041e-06 9.93602e-06 9.92199e-06 9.90842e-06 9.89547e-06 9.88319e-06 9.87159e-06 9.86066e-06 9.85037e-06 9.84069e-06 9.83159e-06 9.82303e-06 9.81496e-06 9.80735e-06 9.80013e-06 9.79322e-06 9.78653e-06 9.77998e-06 9.77343e-06 9.76681e-06 9.76002e-06 9.75297e-06 9.74541e-06 9.7372e-06 9.72826e-06 9.71856e-06 9.70809e-06 9.69687e-06 1.03053e-05 1.02973e-05 1.02887e-05 1.02793e-05 1.02689e-05 1.02576e-05 1.02455e-05 1.02328e-05 1.02195e-05 1.02058e-05 1.01918e-05 1.01776e-05 1.01633e-05 1.01491e-05 1.0135e-05 1.01213e-05 1.01079e-05 1.00951e-05 1.0083e-05 1.00716e-05 1.00613e-05 1.00522e-05 1.00441e-05 1.00372e-05 1.00313e-05 1.00264e-05 1.00226e-05 1.00196e-05 1.00175e-05 1.00162e-05 1.00156e-05 1.00155e-05 1.00159e-05 1.00165e-05 1.00171e-05 1.00177e-05 1.00181e-05 1.0018e-05 1.00175e-05 1.0016e-05 1.00134e-05 1.00096e-05 1.00046e-05 9.99824e-06 1.0468e-05 1.04608e-05 1.04528e-05 1.04439e-05 1.0434e-05 1.04231e-05 1.04114e-05 1.03991e-05 1.03863e-05 1.0373e-05 1.03595e-05 1.03459e-05 1.03324e-05 1.0319e-05 1.03061e-05 1.02936e-05 1.02819e-05 1.0271e-05 1.02612e-05 1.02526e-05 1.02457e-05 1.02404e-05 1.02369e-05 1.02352e-05 1.02351e-05 1.02365e-05 1.02394e-05 1.02438e-05 1.02496e-05 1.02566e-05 1.02647e-05 1.02736e-05 1.02832e-05 1.02933e-05 1.03034e-05 1.03135e-05 1.03233e-05 1.03325e-05 1.03408e-05 1.03481e-05 1.03537e-05 1.03575e-05 1.03594e-05 1.03594e-05 1.06467e-05 1.06404e-05 1.06331e-05 1.06248e-05 1.06155e-05 1.06052e-05 1.0594e-05 1.05821e-05 1.05697e-05 1.0557e-05 1.0544e-05 1.05311e-05 1.05183e-05 1.0506e-05 1.04943e-05 1.04834e-05 1.04736e-05 1.0465e-05 1.04579e-05 1.04526e-05 1.04502e-05 1.04502e-05 1.04526e-05 1.04574e-05 1.04647e-05 1.04742e-05 1.0486e-05 1.05e-05 1.0516e-05 1.05339e-05 1.05534e-05 1.05743e-05 1.05961e-05 1.06186e-05 1.06414e-05 1.0664e-05 1.06861e-05 1.07072e-05 1.07271e-05 1.07453e-05 1.07616e-05 1.07754e-05 1.07863e-05 1.07945e-05 1.08425e-05 1.08372e-05 1.08308e-05 1.08233e-05 1.08147e-05 1.08049e-05 1.07943e-05 1.07829e-05 1.07709e-05 1.07586e-05 1.07462e-05 1.07339e-05 1.0722e-05 1.07108e-05 1.07005e-05 1.06915e-05 1.0684e-05 1.06778e-05 1.06745e-05 1.06743e-05 1.06772e-05 1.06836e-05 1.06936e-05 1.0707e-05 1.07238e-05 1.07439e-05 1.07672e-05 1.07937e-05 1.08231e-05 1.08553e-05 1.08898e-05 1.09263e-05 1.09643e-05 1.10032e-05 1.10426e-05 1.10817e-05 1.112e-05 1.11569e-05 1.11918e-05 1.12242e-05 1.12539e-05 1.12805e-05 1.13036e-05 1.13228e-05 1.10564e-05 1.10522e-05 1.10468e-05 1.10402e-05 1.10324e-05 1.10232e-05 1.1013e-05 1.10019e-05 1.09902e-05 1.09782e-05 1.09661e-05 1.09545e-05 1.09435e-05 1.09336e-05 1.0925e-05 1.09179e-05 1.09129e-05 1.09116e-05 1.0913e-05 1.09184e-05 1.09285e-05 1.09435e-05 1.09633e-05 1.09878e-05 1.1017e-05 1.10507e-05 1.10891e-05 1.11319e-05 1.11789e-05 1.12298e-05 1.12841e-05 1.13412e-05 1.14005e-05 1.14613e-05 1.15226e-05 1.15835e-05 1.16432e-05 1.17008e-05 1.17555e-05 1.18068e-05 1.18541e-05 1.18972e-05 1.1936e-05 1.19706e-05 1.12894e-05 1.12864e-05 1.12821e-05 1.12761e-05 1.12687e-05 1.12598e-05 1.12496e-05 1.12384e-05 1.12264e-05 1.12143e-05 1.12024e-05 1.11912e-05 1.11813e-05 1.11728e-05 1.11657e-05 1.11626e-05 1.11625e-05 1.11656e-05 1.11736e-05 1.11873e-05 1.12072e-05 1.12335e-05 1.12662e-05 1.13051e-05 1.13503e-05 1.14019e-05 1.14599e-05 1.1524e-05 1.15941e-05 1.16696e-05 1.175e-05 1.18344e-05 1.19218e-05 1.20113e-05 1.21015e-05 1.21912e-05 1.22791e-05 1.23641e-05 1.24453e-05 1.25219e-05 1.25934e-05 1.26594e-05 1.27201e-05 1.27757e-05 1.15422e-05 1.1541e-05 1.15372e-05 1.15316e-05 1.15238e-05 1.15137e-05 1.1502e-05 1.14892e-05 1.1476e-05 1.14629e-05 1.14507e-05 1.14401e-05 1.14307e-05 1.14247e-05 1.14233e-05 1.14243e-05 1.14299e-05 1.14411e-05 1.14587e-05 1.14837e-05 1.15167e-05 1.15582e-05 1.16078e-05 1.16656e-05 1.17319e-05 1.18069e-05 1.18906e-05 1.19828e-05 1.20832e-05 1.21911e-05 1.23056e-05 1.24256e-05 1.25498e-05 1.26767e-05 1.28045e-05 1.29317e-05 1.30567e-05 1.31781e-05 1.32949e-05 1.34063e-05 1.35118e-05 1.36115e-05 1.37055e-05 1.37945e-05 1.18156e-05 1.18162e-05 1.18133e-05 1.18056e-05 1.17944e-05 1.17823e-05 1.17687e-05 1.1753e-05 1.17366e-05 1.17215e-05 1.17078e-05 1.16963e-05 1.16914e-05 1.16904e-05 1.16928e-05 1.17013e-05 1.17162e-05 1.17386e-05 1.17698e-05 1.1811e-05 1.18624e-05 1.19238e-05 1.19955e-05 1.20783e-05 1.21724e-05 1.22783e-05 1.23958e-05 1.25247e-05 1.26645e-05 1.28142e-05 1.29727e-05 1.31384e-05 1.33094e-05 1.3484e-05 1.36599e-05 1.38353e-05 1.40085e-05 1.41779e-05 1.43429e-05 1.4503e-05 1.46583e-05 1.48095e-05 1.4958e-05 1.51058e-05 1.21089e-05 1.21099e-05 1.21057e-05 1.21014e-05 1.20924e-05 1.20711e-05 1.20438e-05 1.20204e-05 1.19989e-05 1.19778e-05 1.19613e-05 1.19541e-05 1.19523e-05 1.19555e-05 1.19679e-05 1.19887e-05 1.20192e-05 1.20597e-05 1.21113e-05 1.21743e-05 1.22496e-05 1.23376e-05 1.24392e-05 1.25551e-05 1.26859e-05 1.28319e-05 1.2993e-05 1.31688e-05 1.33585e-05 1.35607e-05 1.37739e-05 1.39961e-05 1.42249e-05 1.44582e-05 1.46936e-05 1.49292e-05 1.51637e-05 1.53962e-05 1.56273e-05 1.58578e-05 1.60899e-05 1.63268e-05 1.65734e-05 1.68363e-05 1.24346e-05 1.24382e-05 1.24293e-05 1.23939e-05 1.23553e-05 1.23378e-05 1.23237e-05 1.22884e-05 1.2251e-05 1.22211e-05 1.22056e-05 1.22e-05 1.22007e-05 1.22159e-05 1.22444e-05 1.22858e-05 1.23382e-05 1.24045e-05 1.24837e-05 1.25769e-05 1.2685e-05 1.28093e-05 1.29505e-05 1.31098e-05 1.32878e-05 1.34846e-05 1.37e-05 1.39334e-05 1.41836e-05 1.44488e-05 1.47269e-05 1.50155e-05 1.53121e-05 1.56143e-05 1.59205e-05 1.62299e-05 1.65426e-05 1.68603e-05 1.71869e-05 1.75276e-05 1.7891e-05 1.82894e-05 1.87412e-05 1.92758e-05 1.27523e-05 1.27452e-05 1.27537e-05 1.27803e-05 1.27753e-05 1.26928e-05 1.25841e-05 1.2517e-05 1.24635e-05 1.24243e-05 1.24047e-05 1.23988e-05 1.24067e-05 1.24451e-05 1.2504e-05 1.25746e-05 1.26654e-05 1.27681e-05 1.28877e-05 1.3023e-05 1.31764e-05 1.33485e-05 1.35412e-05 1.3755e-05 1.3991e-05 1.42489e-05 1.45287e-05 1.48291e-05 1.51485e-05 1.54847e-05 1.58352e-05 1.61974e-05 1.65694e-05 1.69504e-05 1.73409e-05 1.77434e-05 1.8163e-05 1.86083e-05 1.90928e-05 1.96364e-05 2.02716e-05 2.10556e-05 2.2098e-05 2.36102e-05 1.31892e-05 1.32024e-05 1.31559e-05 1.30176e-05 1.29725e-05 1.2969e-05 1.29823e-05 1.30067e-05 1.30066e-05 1.3055e-05 1.29035e-05 1.2612e-05 1.25256e-05 1.2604e-05 1.27038e-05 1.28372e-05 1.29795e-05 1.31429e-05 1.33201e-05 1.35158e-05 1.37285e-05 1.3963e-05 1.42184e-05 1.44978e-05 1.48006e-05 1.51281e-05 1.54789e-05 1.5852e-05 1.6245e-05 1.66557e-05 1.70819e-05 1.75228e-05 1.79793e-05 1.84546e-05 1.89556e-05 1.94937e-05 2.00872e-05 2.0765e-05 2.15767e-05 2.26162e-05 2.40815e-05 2.63887e-05 3.03267e-05 3.71473e-05 1.35367e-05 1.35269e-05 1.35885e-05 1.38226e-05 1.45615e-05 1.65185e-05 2.15873e-05 3.14458e-05 3.67803e-05 3.8673e-05 3.66728e-05 2.64687e-05 1.66524e-05 1.31631e-05 1.27493e-05 1.30196e-05 1.32624e-05 1.35221e-05 1.37816e-05 1.40553e-05 1.43469e-05 1.46524e-05 1.49824e-05 1.53327e-05 1.57086e-05 1.61074e-05 1.65306e-05 1.69754e-05 1.7441e-05 1.79264e-05 1.84329e-05 1.89645e-05 1.95291e-05 2.01402e-05 2.082e-05 2.16046e-05 2.25584e-05 2.38113e-05 2.56607e-05 2.87853e-05 3.4556e-05 4.51947e-05 6.33663e-05 9.08358e-05 1.41294e-05 1.47513e-05 1.66857e-05 2.17338e-05 3.18282e-05 4.48357e-05 5.77554e-05 6.66072e-05 7.48609e-05 8.26543e-05 8.57827e-05 8.1463e-05 6.64975e-05 3.88484e-05 1.48417e-05 1.30129e-05 1.34722e-05 1.38331e-05 1.4256e-05 1.46359e-05 1.50204e-05 1.54173e-05 1.58188e-05 1.62442e-05 1.66851e-05 1.71521e-05 1.76397e-05 1.8153e-05 1.86912e-05 1.92608e-05 1.98692e-05 2.05308e-05 2.1269e-05 2.21238e-05 2.31673e-05 2.45503e-05 2.66386e-05 3.03419e-05 3.76443e-05 5.19047e-05 7.69744e-05 0.000114682 0.000163871 0.000215234 1.56648e-05 1.83846e-05 2.49093e-05 3.48956e-05 4.40023e-05 5.17298e-05 6.05719e-05 7.07192e-05 8.28884e-05 9.31637e-05 9.51884e-05 9.21965e-05 8.78481e-05 7.91091e-05 5.2028e-05 1.66588e-05 1.36152e-05 1.42997e-05 1.47831e-05 1.53056e-05 1.57786e-05 1.62389e-05 1.67192e-05 1.71917e-05 1.76928e-05 1.8206e-05 1.87561e-05 1.93378e-05 1.99685e-05 2.06566e-05 2.14268e-05 2.23152e-05 2.33926e-05 2.48062e-05 2.69263e-05 3.0742e-05 3.86254e-05 5.49302e-05 8.47824e-05 0.000130346 0.000186596 0.000238447 0.000275132 0.000299767 1.95261e-05 2.49716e-05 3.17054e-05 3.79714e-05 4.64266e-05 5.93091e-05 7.53459e-05 9.11015e-05 0.00010362 0.000104504 9.80243e-05 8.81086e-05 8.08485e-05 7.69608e-05 6.79885e-05 3.55629e-05 1.52156e-05 1.45406e-05 1.53503e-05 1.59342e-05 1.65526e-05 1.71182e-05 1.7632e-05 1.81615e-05 1.86717e-05 1.92283e-05 1.98229e-05 2.0504e-05 2.12697e-05 2.21595e-05 2.32257e-05 2.4592e-05 2.65634e-05 3.00058e-05 3.722e-05 5.29985e-05 8.37391e-05 0.000132424 0.000191889 0.000242861 0.0002755 0.000297366 0.000315173 0.000330676 8.38075e-06 8.36958e-06 8.3588e-06 8.34848e-06 8.33866e-06 8.32943e-06 8.32081e-06 8.31283e-06 8.30556e-06 8.29905e-06 8.29333e-06 8.28845e-06 8.28439e-06 8.28113e-06 8.27864e-06 8.2772e-06 8.36771e-06 8.35523e-06 8.34315e-06 8.33153e-06 8.32044e-06 8.30997e-06 8.30014e-06 8.29101e-06 8.28266e-06 8.27515e-06 8.26854e-06 8.26287e-06 8.25817e-06 8.25441e-06 8.25158e-06 8.24997e-06 8.35503e-06 8.34113e-06 8.32761e-06 8.31455e-06 8.30201e-06 8.29009e-06 8.27886e-06 8.26837e-06 8.25872e-06 8.24999e-06 8.24227e-06 8.23561e-06 8.23008e-06 8.22567e-06 8.2224e-06 8.22058e-06 8.34324e-06 8.32777e-06 8.31266e-06 8.29798e-06 8.2838e-06 8.27023e-06 8.25735e-06 8.24525e-06 8.23402e-06 8.22378e-06 8.21465e-06 8.20673e-06 8.20011e-06 8.19483e-06 8.19096e-06 8.18883e-06 8.33303e-06 8.31587e-06 8.29902e-06 8.28256e-06 8.26656e-06 8.25111e-06 8.2363e-06 8.22225e-06 8.2091e-06 8.19697e-06 8.18603e-06 8.17643e-06 8.16833e-06 8.16185e-06 8.15711e-06 8.15455e-06 8.3253e-06 8.30637e-06 8.28769e-06 8.26932e-06 8.25133e-06 8.23379e-06 8.21682e-06 8.20053e-06 8.18507e-06 8.17059e-06 8.15731e-06 8.14545e-06 8.13526e-06 8.127e-06 8.12094e-06 8.11769e-06 8.3211e-06 8.30039e-06 8.27984e-06 8.2595e-06 8.23943e-06 8.2197e-06 8.20041e-06 8.18165e-06 8.16357e-06 8.14633e-06 8.13014e-06 8.11528e-06 8.10209e-06 8.09104e-06 8.08273e-06 8.07822e-06 8.32167e-06 8.29921e-06 8.27684e-06 8.25458e-06 8.2325e-06 8.21064e-06 8.18907e-06 8.16787e-06 8.14715e-06 8.12701e-06 8.10762e-06 8.08919e-06 8.07202e-06 8.05664e-06 8.04401e-06 8.03647e-06 8.32798e-06 8.30405e-06 8.28013e-06 8.25624e-06 8.23241e-06 8.20871e-06 8.18521e-06 8.16197e-06 8.13905e-06 8.11652e-06 8.09449e-06 8.07306e-06 8.05237e-06 8.0326e-06 8.01406e-06 7.99889e-06 8.34159e-06 8.31638e-06 8.29117e-06 8.266e-06 8.24092e-06 8.21595e-06 8.19117e-06 8.16663e-06 8.14241e-06 8.11864e-06 8.09547e-06 8.0731e-06 8.05186e-06 8.03233e-06 8.01572e-06 8.00538e-06 8.36392e-06 8.33782e-06 8.31175e-06 8.28576e-06 8.2599e-06 8.23423e-06 8.20882e-06 8.18379e-06 8.15926e-06 8.13543e-06 8.11255e-06 8.09095e-06 8.07116e-06 8.05392e-06 8.04034e-06 8.03268e-06 8.39621e-06 8.3696e-06 8.34309e-06 8.31672e-06 8.29057e-06 8.26474e-06 8.23932e-06 8.21447e-06 8.19037e-06 8.16725e-06 8.14542e-06 8.12526e-06 8.10728e-06 8.09211e-06 8.08055e-06 8.07428e-06 8.43979e-06 8.41302e-06 8.38643e-06 8.36009e-06 8.33408e-06 8.30851e-06 8.28353e-06 8.25931e-06 8.23606e-06 8.21403e-06 8.19354e-06 8.17495e-06 8.1587e-06 8.14531e-06 8.13536e-06 8.13016e-06 8.49603e-06 8.46943e-06 8.44309e-06 8.41709e-06 8.39153e-06 8.36655e-06 8.34231e-06 8.31899e-06 8.29681e-06 8.27603e-06 8.25691e-06 8.2398e-06 8.22507e-06 8.21313e-06 8.20442e-06 8.2e-06 8.5665e-06 8.54038e-06 8.51457e-06 8.48918e-06 8.46432e-06 8.44015e-06 8.41683e-06 8.39456e-06 8.37353e-06 8.35398e-06 8.33616e-06 8.32035e-06 8.30687e-06 8.29605e-06 8.28825e-06 8.28437e-06 8.65305e-06 8.6277e-06 8.60269e-06 8.57814e-06 8.5542e-06 8.53101e-06 8.50873e-06 8.48755e-06 8.46767e-06 8.4493e-06 8.43266e-06 8.41797e-06 8.40553e-06 8.39561e-06 8.3885e-06 8.38502e-06 8.75796e-06 8.73366e-06 8.70971e-06 8.68625e-06 8.66342e-06 8.64135e-06 8.62022e-06 8.60019e-06 8.58146e-06 8.5642e-06 8.54862e-06 8.53493e-06 8.52338e-06 8.5142e-06 8.50765e-06 8.50449e-06 8.88399e-06 8.86107e-06 8.83848e-06 8.81636e-06 8.79484e-06 8.77407e-06 8.7542e-06 8.7354e-06 8.71783e-06 8.70168e-06 8.68713e-06 8.67437e-06 8.66362e-06 8.65509e-06 8.64902e-06 8.64613e-06 9.03468e-06 9.01352e-06 8.99262e-06 8.97212e-06 8.95214e-06 8.93283e-06 8.91437e-06 8.89689e-06 8.88057e-06 8.86556e-06 8.85205e-06 8.84021e-06 8.83023e-06 8.82231e-06 8.81667e-06 8.81402e-06 9.2145e-06 9.19555e-06 9.17672e-06 9.15813e-06 9.13994e-06 9.12231e-06 9.10539e-06 9.08935e-06 9.07435e-06 9.06056e-06 9.04813e-06 9.03724e-06 9.02806e-06 9.02077e-06 9.01558e-06 9.01316e-06 9.42891e-06 9.41266e-06 9.39632e-06 9.38e-06 9.36389e-06 9.34814e-06 9.33295e-06 9.31849e-06 9.30493e-06 9.29245e-06 9.2812e-06 9.27135e-06 9.26307e-06 9.25651e-06 9.25187e-06 9.24974e-06 9.68477e-06 9.67184e-06 9.65847e-06 9.64483e-06 9.63112e-06 9.61754e-06 9.60429e-06 9.59159e-06 9.57962e-06 9.56858e-06 9.55863e-06 9.54993e-06 9.54265e-06 9.53691e-06 9.53291e-06 9.5311e-06 9.99064e-06 9.98179e-06 9.97206e-06 9.96165e-06 9.95081e-06 9.93979e-06 9.92883e-06 9.91817e-06 9.90804e-06 9.89863e-06 9.89012e-06 9.88267e-06 9.87643e-06 9.8715e-06 9.86808e-06 9.86655e-06 1.03575e-05 1.03539e-05 1.03487e-05 1.03424e-05 1.03351e-05 1.03273e-05 1.03192e-05 1.03111e-05 1.03032e-05 1.02958e-05 1.0289e-05 1.0283e-05 1.02779e-05 1.02738e-05 1.02709e-05 1.02697e-05 1.08001e-05 1.08032e-05 1.08042e-05 1.08033e-05 1.08009e-05 1.07975e-05 1.07933e-05 1.07888e-05 1.07841e-05 1.07796e-05 1.07753e-05 1.07714e-05 1.0768e-05 1.07651e-05 1.07631e-05 1.07623e-05 1.13386e-05 1.13512e-05 1.13608e-05 1.13677e-05 1.13727e-05 1.1376e-05 1.13781e-05 1.13795e-05 1.13803e-05 1.13808e-05 1.13811e-05 1.13812e-05 1.13811e-05 1.13808e-05 1.13806e-05 1.13808e-05 1.20012e-05 1.20278e-05 1.20506e-05 1.20701e-05 1.20871e-05 1.21022e-05 1.21158e-05 1.21283e-05 1.21401e-05 1.21512e-05 1.21615e-05 1.21709e-05 1.21788e-05 1.2185e-05 1.21896e-05 1.21921e-05 1.28276e-05 1.28759e-05 1.29205e-05 1.29619e-05 1.30011e-05 1.30389e-05 1.3076e-05 1.31129e-05 1.31499e-05 1.31867e-05 1.32228e-05 1.32571e-05 1.3288e-05 1.33136e-05 1.33325e-05 1.3342e-05 1.38812e-05 1.39663e-05 1.40498e-05 1.41333e-05 1.42187e-05 1.43078e-05 1.44022e-05 1.45035e-05 1.46125e-05 1.47292e-05 1.48517e-05 1.49757e-05 1.5094e-05 1.51975e-05 1.52743e-05 1.53103e-05 1.52582e-05 1.54188e-05 1.55893e-05 1.57752e-05 1.59837e-05 1.62239e-05 1.65071e-05 1.68458e-05 1.72512e-05 1.77287e-05 1.82717e-05 1.88569e-05 1.94415e-05 1.99681e-05 2.03501e-05 2.05228e-05 1.71302e-05 1.74706e-05 1.78744e-05 1.83758e-05 1.90262e-05 1.98959e-05 2.1069e-05 2.26264e-05 2.4621e-05 2.70484e-05 2.98258e-05 3.27845e-05 3.56791e-05 3.82208e-05 3.99729e-05 4.07436e-05 1.99567e-05 2.08873e-05 2.22219e-05 2.42054e-05 2.7154e-05 3.14003e-05 3.72058e-05 4.46551e-05 5.35939e-05 6.36265e-05 7.41822e-05 8.4585e-05 9.40738e-05 0.000101925 0.000106968 0.000109126 2.60137e-05 2.99865e-05 3.63454e-05 4.59195e-05 5.92669e-05 7.64766e-05 9.69418e-05 0.000119477 0.000142712 0.000165419 0.000187066 0.000206747 0.000223332 0.00023625 0.000243938 0.000247138 4.86142e-05 6.65293e-05 9.13339e-05 0.000121901 0.000156742 0.000193663 0.000228627 0.000259627 0.000286171 0.0003087 0.000327394 0.000342691 0.000355331 0.000365746 0.000373005 0.000376142 0.000127917 0.000173548 0.000219517 0.000260006 0.000292408 0.00031661 0.00033594 0.000352317 0.000366616 0.000379722 0.000391747 0.000402682 0.000412661 0.000421641 0.000428944 0.000432242 0.000259868 0.000292326 0.000315525 0.000334424 0.000351021 0.000365603 0.000378996 0.000391283 0.000402491 0.000412885 0.00042246 0.000431194 0.000439457 0.000447315 0.000454592 0.000458073 0.000319289 0.00033632 0.000351484 0.000365277 0.000378213 0.000389693 0.00040015 0.000410088 0.000420003 0.000429362 0.000437815 0.00044597 0.000454998 0.000465838 0.000478482 0.000485449 0.000344327 0.000356825 0.000369358 0.000380769 0.000390832 0.000401195 0.000411782 0.000421786 0.000431099 0.000441142 0.000454003 0.000471355 0.000493786 0.000520726 0.000548951 0.000562257 4.17242e-06 6.37641e-06 7.39103e-06 7.98784e-06 8.3573e-06 8.59096e-06 8.73729e-06 8.82675e-06 8.8796e-06 8.90946e-06 8.92513e-06 8.93237e-06 8.93481e-06 8.93446e-06 8.93237e-06 8.9294e-06 8.92583e-06 8.92172e-06 8.91718e-06 8.91226e-06 8.90699e-06 8.90137e-06 8.89543e-06 8.88916e-06 4.20918e-06 6.40772e-06 7.4227e-06 8.01941e-06 8.38824e-06 8.6212e-06 8.76683e-06 8.85566e-06 8.90801e-06 8.93746e-06 8.95282e-06 8.95982e-06 8.96209e-06 8.96155e-06 8.95931e-06 8.95616e-06 8.95239e-06 8.94808e-06 8.94332e-06 8.93817e-06 8.93264e-06 8.92675e-06 8.92051e-06 8.91393e-06 4.24885e-06 6.44157e-06 7.45697e-06 8.0536e-06 8.42171e-06 8.65393e-06 8.79881e-06 8.88697e-06 8.93878e-06 8.96781e-06 8.98283e-06 8.98956e-06 8.99165e-06 8.99091e-06 8.98851e-06 8.98516e-06 8.98116e-06 8.97662e-06 8.97162e-06 8.9662e-06 8.9604e-06 8.95422e-06 8.94768e-06 8.94079e-06 4.29164e-06 6.47812e-06 7.49399e-06 8.09056e-06 8.4579e-06 8.68931e-06 8.83341e-06 8.92087e-06 8.97211e-06 9.00067e-06 9.01533e-06 9.02177e-06 9.02366e-06 9.02274e-06 9.02017e-06 9.0166e-06 9.01235e-06 9.00756e-06 9.00229e-06 8.9966e-06 8.99049e-06 8.98401e-06 8.97717e-06 8.96997e-06 4.3378e-06 6.51756e-06 7.53397e-06 8.1305e-06 8.49707e-06 8.72755e-06 8.87081e-06 8.95754e-06 9.00818e-06 9.03626e-06 9.05053e-06 9.05667e-06 9.05837e-06 9.05728e-06 9.05453e-06 9.05075e-06 9.04625e-06 9.04119e-06 9.03564e-06 9.02964e-06 9.02324e-06 9.01645e-06 9.0093e-06 9.00179e-06 4.38761e-06 6.56016e-06 7.57717e-06 8.17371e-06 8.53951e-06 8.7689e-06 8.91129e-06 8.99725e-06 9.04727e-06 9.07483e-06 9.08871e-06 9.09459e-06 9.09614e-06 9.09487e-06 9.09192e-06 9.08792e-06 9.08316e-06 9.07782e-06 9.07197e-06 9.06567e-06 9.05898e-06 9.0519e-06 9.04444e-06 9.03662e-06 4.44139e-06 6.60618e-06 7.62388e-06 8.22049e-06 8.58554e-06 8.81381e-06 8.95516e-06 9.0403e-06 9.08967e-06 9.11674e-06 9.1303e-06 9.13597e-06 9.13734e-06 9.13587e-06 9.1327e-06 9.12845e-06 9.12343e-06 9.1178e-06 9.11167e-06 9.10509e-06 9.0981e-06 9.09073e-06 9.08296e-06 9.07481e-06 4.49952e-06 6.65595e-06 7.67445e-06 8.27119e-06 8.6355e-06 8.86266e-06 9.00293e-06 9.0872e-06 9.13593e-06 9.16253e-06 9.17577e-06 9.18119e-06 9.18237e-06 9.18066e-06 9.17724e-06 9.17273e-06 9.16744e-06 9.16154e-06 9.15513e-06 9.14827e-06 9.14098e-06 9.13329e-06 9.12519e-06 9.11668e-06 4.56241e-06 6.70983e-06 7.72925e-06 8.32622e-06 8.68984e-06 8.9159e-06 9.05509e-06 9.13848e-06 9.18655e-06 9.21266e-06 9.22554e-06 9.23069e-06 9.23163e-06 9.22964e-06 9.22595e-06 9.22116e-06 9.21558e-06 9.2094e-06 9.2027e-06 9.19554e-06 9.18793e-06 9.1799e-06 9.17144e-06 9.16256e-06 4.63058e-06 6.76828e-06 7.78879e-06 8.38611e-06 8.7491e-06 8.97407e-06 9.11217e-06 9.19466e-06 9.24204e-06 9.26763e-06 9.28011e-06 9.28491e-06 9.28557e-06 9.28326e-06 9.27925e-06 9.27414e-06 9.26826e-06 9.26176e-06 9.25474e-06 9.24723e-06 9.23927e-06 9.23087e-06 9.22203e-06 9.21275e-06 4.70463e-06 6.83181e-06 7.85363e-06 8.45144e-06 8.81386e-06 9.03778e-06 9.17478e-06 9.25632e-06 9.30297e-06 9.32795e-06 9.33995e-06 9.34437e-06 9.34468e-06 9.34199e-06 9.33762e-06 9.33216e-06 9.3259e-06 9.31904e-06 9.31163e-06 9.30373e-06 9.29536e-06 9.28655e-06 9.27728e-06 9.26757e-06 4.78525e-06 6.90101e-06 7.92437e-06 8.52284e-06 8.88478e-06 9.10766e-06 9.24353e-06 9.32407e-06 9.36991e-06 9.3942e-06 9.40563e-06 9.40962e-06 9.40947e-06 9.40635e-06 9.40156e-06 9.39567e-06 9.38899e-06 9.38168e-06 9.37383e-06 9.36547e-06 9.35664e-06 9.34735e-06 9.3376e-06 9.32741e-06 4.87321e-06 6.97651e-06 8.0017e-06 8.60103e-06 8.96257e-06 9.18442e-06 9.31913e-06 9.39861e-06 9.44354e-06 9.46701e-06 9.47775e-06 9.48125e-06 9.48054e-06 9.4769e-06 9.4716e-06 9.46521e-06 9.45802e-06 9.45019e-06 9.4418e-06 9.4329e-06 9.42353e-06 9.41369e-06 9.40341e-06 9.39269e-06 4.96937e-06 7.05902e-06 8.08636e-06 8.68679e-06 9.04804e-06 9.26887e-06 9.40236e-06 9.48069e-06 9.5246e-06 9.54712e-06 9.55703e-06 9.55996e-06 9.55855e-06 9.55428e-06 9.54836e-06 9.54134e-06 9.53352e-06 9.52505e-06 9.51602e-06 9.50649e-06 9.49649e-06 9.48605e-06 9.47517e-06 9.46388e-06 5.07466e-06 7.14932e-06 8.17918e-06 8.78097e-06 9.14203e-06 9.36185e-06 9.49405e-06 9.57113e-06 9.61385e-06 9.63526e-06 9.64419e-06 9.64642e-06 9.64415e-06 9.6391e-06 9.6324e-06 9.62463e-06 9.61605e-06 9.60681e-06 9.59704e-06 9.58678e-06 9.57608e-06 9.56495e-06 9.55342e-06 9.5415e-06 5.19007e-06 7.24825e-06 8.28102e-06 8.88446e-06 9.2454e-06 9.46419e-06 9.59502e-06 9.67073e-06 9.71203e-06 9.73217e-06 9.73992e-06 9.74133e-06 9.738e-06 9.732e-06 9.72439e-06 9.71571e-06 9.70622e-06 9.69611e-06 9.68548e-06 9.67438e-06 9.66286e-06 9.65094e-06 9.63865e-06 9.626e-06 5.31654e-06 7.35663e-06 8.39268e-06 8.99805e-06 9.3589e-06 9.57663e-06 9.70598e-06 9.78017e-06 9.81985e-06 9.83853e-06 9.84494e-06 9.84534e-06 9.84078e-06 9.83367e-06 9.825e-06 9.81526e-06 9.80474e-06 9.79361e-06 9.78197e-06 9.76989e-06 9.7574e-06 9.74454e-06 9.73134e-06 9.71781e-06 5.45488e-06 7.4752e-06 8.51486e-06 9.12241e-06 9.48318e-06 9.69977e-06 9.82751e-06 9.90005e-06 9.93785e-06 9.95487e-06 9.96009e-06 9.9591e-06 9.9532e-06 9.94483e-06 9.93495e-06 9.924e-06 9.91228e-06 9.89995e-06 9.88713e-06 9.87387e-06 9.86023e-06 9.84625e-06 9.83195e-06 9.81735e-06 5.60568e-06 7.60459e-06 8.64812e-06 9.25804e-06 9.61876e-06 9.83407e-06 9.96013e-06 1.00308e-05 1.00667e-05 1.00819e-05 1.00859e-05 1.00833e-05 1.00759e-05 1.00662e-05 1.00549e-05 1.00426e-05 1.00295e-05 1.00158e-05 1.00015e-05 9.98689e-06 9.97186e-06 9.95651e-06 9.94085e-06 9.92484e-06 5.76932e-06 7.74537e-06 8.79295e-06 9.40538e-06 9.76606e-06 9.98006e-06 1.01044e-05 1.01731e-05 1.02068e-05 1.02203e-05 1.0223e-05 1.02186e-05 1.02097e-05 1.01984e-05 1.01856e-05 1.01717e-05 1.0157e-05 1.01417e-05 1.01258e-05 1.01095e-05 1.00928e-05 1.00757e-05 1.00583e-05 1.00407e-05 5.94618e-06 7.89812e-06 8.9499e-06 9.56495e-06 9.9256e-06 1.01383e-05 1.0261e-05 1.03275e-05 1.03591e-05 1.03706e-05 1.03722e-05 1.03659e-05 1.03553e-05 1.03424e-05 1.03278e-05 1.03122e-05 1.02957e-05 1.02784e-05 1.02607e-05 1.02424e-05 1.02235e-05 1.02042e-05 1.01851e-05 1.01665e-05 6.1368e-06 8.06364e-06 9.11978e-06 9.73759e-06 1.00982e-05 1.03096e-05 1.04306e-05 1.04948e-05 1.05244e-05 1.05341e-05 1.05344e-05 1.05261e-05 1.05138e-05 1.04991e-05 1.04827e-05 1.0465e-05 1.04465e-05 1.04271e-05 1.04069e-05 1.03861e-05 1.03646e-05 1.03437e-05 1.03232e-05 1.0303e-05 6.3421e-06 8.24294e-06 9.30376e-06 9.92452e-06 1.02852e-05 1.04953e-05 1.06146e-05 1.06765e-05 1.0704e-05 1.07124e-05 1.07108e-05 1.07007e-05 1.06866e-05 1.067e-05 1.06515e-05 1.06316e-05 1.06106e-05 1.05886e-05 1.05655e-05 1.05418e-05 1.05186e-05 1.04957e-05 1.04733e-05 1.04502e-05 6.5633e-06 8.43723e-06 9.50321e-06 1.01273e-05 1.04883e-05 1.06972e-05 1.08147e-05 1.08742e-05 1.08999e-05 1.0907e-05 1.09034e-05 1.08914e-05 1.08755e-05 1.08568e-05 1.0836e-05 1.08136e-05 1.07898e-05 1.07645e-05 1.07384e-05 1.07126e-05 1.0687e-05 1.06619e-05 1.06359e-05 1.06087e-05 6.80218e-06 8.64801e-06 9.7199e-06 1.03478e-05 1.07093e-05 1.09175e-05 1.10328e-05 1.10902e-05 1.1114e-05 1.11199e-05 1.11142e-05 1.11005e-05 1.10826e-05 1.10616e-05 1.10383e-05 1.10129e-05 1.09857e-05 1.09573e-05 1.09288e-05 1.09003e-05 1.08722e-05 1.08432e-05 1.08122e-05 1.07791e-05 7.06046e-06 8.87691e-06 9.95576e-06 1.05882e-05 1.09508e-05 1.11583e-05 1.12716e-05 1.13268e-05 1.13489e-05 1.13538e-05 1.1346e-05 1.13304e-05 1.13105e-05 1.12871e-05 1.12609e-05 1.12322e-05 1.12017e-05 1.11708e-05 1.11392e-05 1.11079e-05 1.10764e-05 1.10412e-05 1.10048e-05 1.09661e-05 7.34179e-06 9.12625e-06 1.02133e-05 1.08513e-05 1.12155e-05 1.14227e-05 1.1534e-05 1.15873e-05 1.16078e-05 1.16117e-05 1.16018e-05 1.15844e-05 1.15623e-05 1.15363e-05 1.1507e-05 1.14751e-05 1.14419e-05 1.14079e-05 1.13736e-05 1.13381e-05 1.13008e-05 1.12631e-05 1.12143e-05 1.11613e-05 7.64462e-06 9.39713e-06 1.04945e-05 1.11394e-05 1.15059e-05 1.17132e-05 1.18231e-05 1.18748e-05 1.18937e-05 1.18967e-05 1.1885e-05 1.18658e-05 1.18414e-05 1.18127e-05 1.17803e-05 1.17456e-05 1.17107e-05 1.16731e-05 1.16322e-05 1.15977e-05 1.15543e-05 1.14995e-05 1.1467e-05 1.14141e-05 7.98367e-06 9.69396e-06 1.08021e-05 1.14558e-05 1.18262e-05 1.20341e-05 1.21428e-05 1.21933e-05 1.22109e-05 1.2213e-05 1.21994e-05 1.21787e-05 1.2152e-05 1.21204e-05 1.20862e-05 1.20499e-05 1.20087e-05 1.19682e-05 1.19334e-05 1.18815e-05 1.18396e-05 1.17912e-05 1.1688e-05 1.1666e-05 8.32527e-06 1.00155e-05 1.11418e-05 1.18048e-05 1.21785e-05 1.23873e-05 1.24958e-05 1.25459e-05 1.25627e-05 1.25638e-05 1.25492e-05 1.25263e-05 1.24976e-05 1.2465e-05 1.24271e-05 1.23869e-05 1.2351e-05 1.23055e-05 1.22454e-05 1.22177e-05 1.2143e-05 1.21018e-05 1.22382e-05 1.28943e-05 8.77025e-06 1.03676e-05 1.14989e-05 1.21797e-05 1.25667e-05 1.27789e-05 1.28876e-05 1.29371e-05 1.29536e-05 1.29552e-05 1.29384e-05 1.29157e-05 1.28849e-05 1.2847e-05 1.28097e-05 1.27723e-05 1.27167e-05 1.26678e-05 1.26262e-05 1.25601e-05 1.25723e-05 1.30165e-05 1.42169e-05 1.711e-05 9.08099e-06 1.07581e-05 1.19429e-05 1.26273e-05 1.3001e-05 1.32127e-05 1.33236e-05 1.33747e-05 1.33912e-05 1.33871e-05 1.33722e-05 1.33443e-05 1.33111e-05 1.32767e-05 1.32368e-05 1.31831e-05 1.31457e-05 1.30766e-05 1.30054e-05 1.31042e-05 1.37071e-05 1.52813e-05 1.87749e-05 2.62615e-05 9.75252e-06 1.11567e-05 1.22907e-05 1.30185e-05 1.34593e-05 1.36865e-05 1.37959e-05 1.3846e-05 1.38657e-05 1.38746e-05 1.38528e-05 1.38255e-05 1.37918e-05 1.37512e-05 1.36962e-05 1.36609e-05 1.35712e-05 1.3502e-05 1.36386e-05 1.43398e-05 1.61011e-05 1.98729e-05 2.80496e-05 4.4475e-05 1.0006e-05 1.16632e-05 1.29576e-05 1.36753e-05 1.40165e-05 1.42251e-05 1.43543e-05 1.44102e-05 1.44243e-05 1.43969e-05 1.43823e-05 1.43592e-05 1.43139e-05 1.42532e-05 1.42298e-05 1.41226e-05 1.40485e-05 1.41796e-05 1.49475e-05 1.68039e-05 2.08631e-05 3.02182e-05 4.90349e-05 6.9285e-05 1.09702e-05 1.21315e-05 1.32892e-05 1.40332e-05 1.45367e-05 1.48053e-05 1.4889e-05 1.4936e-05 1.49697e-05 1.50084e-05 1.49824e-05 1.49167e-05 1.48776e-05 1.48651e-05 1.47229e-05 1.46484e-05 1.47563e-05 1.55295e-05 1.74595e-05 2.1805e-05 3.25679e-05 5.33217e-05 7.37062e-05 8.77061e-05 1.10052e-05 1.25601e-05 1.40455e-05 1.48658e-05 1.52343e-05 1.54306e-05 1.56394e-05 1.57083e-05 1.56992e-05 1.56157e-05 1.55946e-05 1.55983e-05 1.55387e-05 1.53849e-05 1.53279e-05 1.53928e-05 1.60788e-05 1.80263e-05 2.25352e-05 3.41368e-05 5.54634e-05 7.47288e-05 9.01589e-05 0.00010887 1.24288e-05 1.35315e-05 1.47103e-05 1.53597e-05 1.58667e-05 1.61599e-05 1.61732e-05 1.62083e-05 1.62976e-05 1.63747e-05 1.63425e-05 1.62224e-05 1.61363e-05 1.60971e-05 1.60727e-05 1.66237e-05 1.85551e-05 2.27824e-05 3.42806e-05 5.39016e-05 7.14332e-05 8.94931e-05 0.000112744 0.000139498 8.88235e-06 8.87496e-06 8.86724e-06 8.85922e-06 8.85089e-06 8.84228e-06 8.83339e-06 8.82423e-06 8.8148e-06 8.80513e-06 8.79521e-06 8.78504e-06 8.77464e-06 8.76398e-06 8.75308e-06 8.74194e-06 8.73057e-06 8.719e-06 8.70724e-06 8.6953e-06 8.68319e-06 8.67089e-06 8.65842e-06 8.64578e-06 8.63297e-06 8.62001e-06 8.60691e-06 8.59369e-06 8.58037e-06 8.56697e-06 8.55348e-06 8.53995e-06 8.52643e-06 8.51283e-06 8.49922e-06 8.48563e-06 8.47204e-06 8.45847e-06 8.44493e-06 8.43146e-06 8.4181e-06 8.40489e-06 8.39188e-06 8.37917e-06 8.90679e-06 8.89903e-06 8.89093e-06 8.88251e-06 8.87377e-06 8.86474e-06 8.85541e-06 8.84579e-06 8.83588e-06 8.8257e-06 8.81524e-06 8.80452e-06 8.79352e-06 8.78225e-06 8.7707e-06 8.75888e-06 8.74681e-06 8.73451e-06 8.72198e-06 8.70924e-06 8.6963e-06 8.68316e-06 8.66983e-06 8.65631e-06 8.64261e-06 8.62875e-06 8.61475e-06 8.60061e-06 8.58634e-06 8.57197e-06 8.55749e-06 8.54294e-06 8.52834e-06 8.51373e-06 8.49904e-06 8.48428e-06 8.46954e-06 8.45478e-06 8.44001e-06 8.42529e-06 8.41063e-06 8.39611e-06 8.38178e-06 8.36775e-06 8.9333e-06 8.92518e-06 8.9167e-06 8.90788e-06 8.89875e-06 8.88929e-06 8.87951e-06 8.86942e-06 8.85903e-06 8.84834e-06 8.83734e-06 8.82605e-06 8.81446e-06 8.80257e-06 8.79037e-06 8.77787e-06 8.76508e-06 8.75203e-06 8.73872e-06 8.72517e-06 8.71139e-06 8.69739e-06 8.68318e-06 8.66877e-06 8.65417e-06 8.63939e-06 8.62445e-06 8.60936e-06 8.59412e-06 8.57875e-06 8.56326e-06 8.54766e-06 8.53196e-06 8.51619e-06 8.5004e-06 8.48452e-06 8.4685e-06 8.45247e-06 8.43641e-06 8.42036e-06 8.40436e-06 8.38848e-06 8.37278e-06 8.3573e-06 8.96215e-06 8.95366e-06 8.94481e-06 8.93561e-06 8.92606e-06 8.91617e-06 8.90595e-06 8.89539e-06 8.88451e-06 8.87331e-06 8.86179e-06 8.84995e-06 8.83777e-06 8.82526e-06 8.81241e-06 8.79922e-06 8.78572e-06 8.7719e-06 8.75781e-06 8.74344e-06 8.72882e-06 8.71396e-06 8.69888e-06 8.68358e-06 8.66807e-06 8.65237e-06 8.63648e-06 8.62041e-06 8.60418e-06 8.58779e-06 8.57124e-06 8.55455e-06 8.53773e-06 8.52079e-06 8.50375e-06 8.48664e-06 8.46944e-06 8.45208e-06 8.43467e-06 8.41727e-06 8.3999e-06 8.38261e-06 8.36544e-06 8.34843e-06 8.99364e-06 8.9848e-06 8.97557e-06 8.96597e-06 8.95601e-06 8.94569e-06 8.93501e-06 8.92399e-06 8.91262e-06 8.90092e-06 8.88887e-06 8.87648e-06 8.86373e-06 8.85062e-06 8.83712e-06 8.82326e-06 8.80904e-06 8.79448e-06 8.77961e-06 8.76445e-06 8.74902e-06 8.73333e-06 8.71739e-06 8.70121e-06 8.68481e-06 8.66818e-06 8.65134e-06 8.6343e-06 8.61705e-06 8.59961e-06 8.58198e-06 8.56418e-06 8.5462e-06 8.52808e-06 8.5098e-06 8.49137e-06 8.47285e-06 8.45427e-06 8.43558e-06 8.41677e-06 8.39794e-06 8.37917e-06 8.36046e-06 8.34185e-06 9.02813e-06 9.01892e-06 9.0093e-06 8.99929e-06 8.9889e-06 8.97814e-06 8.967e-06 8.95551e-06 8.94366e-06 8.93145e-06 8.91889e-06 8.90595e-06 8.89263e-06 8.87891e-06 8.86479e-06 8.85027e-06 8.83536e-06 8.8201e-06 8.80451e-06 8.7886e-06 8.77241e-06 8.75592e-06 8.73917e-06 8.72214e-06 8.70486e-06 8.68732e-06 8.66953e-06 8.65151e-06 8.63324e-06 8.61475e-06 8.59603e-06 8.57711e-06 8.55798e-06 8.53866e-06 8.51915e-06 8.49947e-06 8.47963e-06 8.45966e-06 8.43961e-06 8.4195e-06 8.39932e-06 8.37905e-06 8.35877e-06 8.33853e-06 9.06596e-06 9.05636e-06 9.04633e-06 9.03589e-06 9.02506e-06 9.01385e-06 9.00225e-06 8.99028e-06 8.97795e-06 8.96523e-06 8.95214e-06 8.93866e-06 8.92476e-06 8.91045e-06 8.89572e-06 8.88058e-06 8.86504e-06 8.84913e-06 8.83287e-06 8.81629e-06 8.79938e-06 8.78215e-06 8.76462e-06 8.74677e-06 8.72862e-06 8.71019e-06 8.69147e-06 8.67248e-06 8.65321e-06 8.63369e-06 8.61391e-06 8.59388e-06 8.57362e-06 8.55313e-06 8.53243e-06 8.51153e-06 8.49045e-06 8.46919e-06 8.44779e-06 8.42627e-06 8.40468e-06 8.38305e-06 8.36136e-06 8.33963e-06 9.10745e-06 9.09744e-06 9.08699e-06 9.07611e-06 9.06483e-06 9.05315e-06 9.04109e-06 9.02864e-06 9.0158e-06 9.00258e-06 8.98896e-06 8.97493e-06 8.96048e-06 8.94561e-06 8.9303e-06 8.91458e-06 8.89845e-06 8.88195e-06 8.86508e-06 8.84785e-06 8.83027e-06 8.81233e-06 8.79405e-06 8.77542e-06 8.75645e-06 8.73716e-06 8.71756e-06 8.69765e-06 8.67744e-06 8.65694e-06 8.63615e-06 8.61508e-06 8.59375e-06 8.57216e-06 8.55033e-06 8.52828e-06 8.50602e-06 8.48357e-06 8.46094e-06 8.43817e-06 8.41527e-06 8.39226e-06 8.36918e-06 8.34607e-06 9.15293e-06 9.14249e-06 9.13159e-06 9.12026e-06 9.10852e-06 9.09638e-06 9.08384e-06 9.0709e-06 9.05757e-06 9.04385e-06 9.0297e-06 9.01514e-06 9.00016e-06 8.98474e-06 8.96889e-06 8.95262e-06 8.93595e-06 8.91888e-06 8.90143e-06 8.8836e-06 8.86538e-06 8.84678e-06 8.8278e-06 8.80844e-06 8.78872e-06 8.76865e-06 8.74824e-06 8.7275e-06 8.70643e-06 8.68504e-06 8.66334e-06 8.64132e-06 8.61902e-06 8.59644e-06 8.5736e-06 8.55051e-06 8.52719e-06 8.50366e-06 8.47995e-06 8.45608e-06 8.43205e-06 8.40791e-06 8.38366e-06 8.35934e-06 9.20269e-06 9.19179e-06 9.18043e-06 9.16864e-06 9.15643e-06 9.14381e-06 9.13079e-06 9.11738e-06 9.10356e-06 9.08933e-06 9.07469e-06 9.05962e-06 9.04412e-06 9.02819e-06 9.01184e-06 8.99506e-06 8.97788e-06 8.96029e-06 8.94231e-06 8.92392e-06 8.90513e-06 8.88593e-06 8.86633e-06 8.84633e-06 8.82594e-06 8.80519e-06 8.78408e-06 8.76261e-06 8.7408e-06 8.71864e-06 8.69614e-06 8.67332e-06 8.65018e-06 8.62675e-06 8.60303e-06 8.57905e-06 8.55483e-06 8.5304e-06 8.50578e-06 8.48099e-06 8.45605e-06 8.43099e-06 8.40584e-06 8.38061e-06 9.25705e-06 9.24567e-06 9.23383e-06 9.22155e-06 9.20886e-06 9.19576e-06 9.18227e-06 9.16838e-06 9.15409e-06 9.13939e-06 9.12427e-06 9.10873e-06 9.09277e-06 9.07638e-06 9.05956e-06 9.04233e-06 9.02469e-06 9.00664e-06 8.98818e-06 8.9693e-06 8.95001e-06 8.9303e-06 8.91017e-06 8.88964e-06 8.86872e-06 8.84741e-06 8.82572e-06 8.80367e-06 8.78125e-06 8.75847e-06 8.73533e-06 8.71185e-06 8.68805e-06 8.66393e-06 8.63951e-06 8.61483e-06 8.5899e-06 8.56476e-06 8.53944e-06 8.51395e-06 8.48834e-06 8.46262e-06 8.43683e-06 8.41101e-06 9.31639e-06 9.3045e-06 9.29216e-06 9.27939e-06 9.26621e-06 9.25264e-06 9.23867e-06 9.22432e-06 9.20957e-06 9.19443e-06 9.17889e-06 9.16293e-06 9.14655e-06 9.12976e-06 9.11254e-06 9.09492e-06 9.07688e-06 9.05843e-06 9.03957e-06 9.0203e-06 9.00062e-06 8.98051e-06 8.95999e-06 8.93906e-06 8.91774e-06 8.89602e-06 8.87392e-06 8.85144e-06 8.82858e-06 8.80535e-06 8.78175e-06 8.75781e-06 8.73352e-06 8.70891e-06 8.68401e-06 8.65883e-06 8.63342e-06 8.60782e-06 8.58204e-06 8.55612e-06 8.5301e-06 8.50401e-06 8.47789e-06 8.45179e-06 9.38114e-06 9.36872e-06 9.35587e-06 9.34259e-06 9.32891e-06 9.31485e-06 9.30042e-06 9.28562e-06 9.27046e-06 9.25492e-06 9.239e-06 9.22267e-06 9.20593e-06 9.18879e-06 9.17124e-06 9.15329e-06 9.13494e-06 9.11619e-06 9.09705e-06 9.07751e-06 9.05757e-06 9.03721e-06 9.01646e-06 8.99531e-06 8.97376e-06 8.95181e-06 8.92948e-06 8.90675e-06 8.88364e-06 8.86016e-06 8.83632e-06 8.81213e-06 8.7876e-06 8.76275e-06 8.7376e-06 8.71221e-06 8.68659e-06 8.6608e-06 8.63485e-06 8.6088e-06 8.58267e-06 8.55652e-06 8.53039e-06 8.50435e-06 9.45178e-06 9.43879e-06 9.42539e-06 9.41158e-06 9.39738e-06 9.38283e-06 9.36795e-06 9.35275e-06 9.33721e-06 9.3213e-06 9.30503e-06 9.28837e-06 9.27132e-06 9.25389e-06 9.23609e-06 9.2179e-06 9.19935e-06 9.18043e-06 9.16115e-06 9.1415e-06 9.12146e-06 9.10105e-06 9.08026e-06 9.05909e-06 9.03753e-06 9.01558e-06 8.99324e-06 8.97051e-06 8.94741e-06 8.92394e-06 8.90012e-06 8.87595e-06 8.85146e-06 8.82667e-06 8.8016e-06 8.77631e-06 8.75082e-06 8.72516e-06 8.69939e-06 8.67353e-06 8.64762e-06 8.62174e-06 8.59596e-06 8.57034e-06 9.52876e-06 9.51516e-06 9.50114e-06 9.48675e-06 9.47201e-06 9.45698e-06 9.44169e-06 9.42609e-06 9.41017e-06 9.39392e-06 9.37732e-06 9.36037e-06 9.34307e-06 9.32543e-06 9.30746e-06 9.28916e-06 9.27054e-06 9.25161e-06 9.23236e-06 9.21279e-06 9.19289e-06 9.17265e-06 9.15208e-06 9.13116e-06 9.10986e-06 9.0882e-06 9.06617e-06 9.04376e-06 9.021e-06 8.99789e-06 8.97444e-06 8.95067e-06 8.92659e-06 8.90224e-06 8.87765e-06 8.85286e-06 8.82788e-06 8.80275e-06 8.7775e-06 8.75219e-06 8.72688e-06 8.70165e-06 8.67655e-06 8.65168e-06 9.61254e-06 9.5982e-06 9.58349e-06 9.56845e-06 9.55316e-06 9.53769e-06 9.52195e-06 9.50594e-06 9.48964e-06 9.47304e-06 9.45614e-06 9.43895e-06 9.42147e-06 9.40371e-06 9.38569e-06 9.3674e-06 9.34888e-06 9.33011e-06 9.31111e-06 9.29186e-06 9.27237e-06 9.25262e-06 9.23259e-06 9.21225e-06 9.1916e-06 9.17062e-06 9.14932e-06 9.12768e-06 9.10572e-06 9.08344e-06 9.06085e-06 9.03796e-06 9.0148e-06 8.99139e-06 8.96779e-06 8.94398e-06 8.91998e-06 8.89581e-06 8.87153e-06 8.84719e-06 8.82287e-06 8.79864e-06 8.77458e-06 8.75079e-06 9.70347e-06 9.68827e-06 9.67272e-06 9.65703e-06 9.64126e-06 9.62525e-06 9.60902e-06 9.59256e-06 9.57586e-06 9.55891e-06 9.54173e-06 9.52433e-06 9.50674e-06 9.48895e-06 9.47099e-06 9.45288e-06 9.43462e-06 9.41623e-06 9.39774e-06 9.37913e-06 9.3604e-06 9.34152e-06 9.32246e-06 9.30319e-06 9.28369e-06 9.26395e-06 9.24395e-06 9.22368e-06 9.20315e-06 9.18234e-06 9.16126e-06 9.13991e-06 9.11833e-06 9.09656e-06 9.07461e-06 9.05242e-06 9.03e-06 9.00739e-06 8.98462e-06 8.96175e-06 8.93885e-06 8.916e-06 8.89331e-06 8.87088e-06 9.80191e-06 9.78559e-06 9.76931e-06 9.75302e-06 9.73656e-06 9.71995e-06 9.70311e-06 9.68606e-06 9.66883e-06 9.65146e-06 9.63397e-06 9.61638e-06 9.59873e-06 9.58103e-06 9.56331e-06 9.54558e-06 9.52786e-06 9.51016e-06 9.49249e-06 9.47488e-06 9.45734e-06 9.43984e-06 9.42234e-06 9.40478e-06 9.38714e-06 9.36939e-06 9.3515e-06 9.33344e-06 9.31519e-06 9.29673e-06 9.27806e-06 9.2592e-06 9.24017e-06 9.22102e-06 9.20167e-06 9.18202e-06 9.16208e-06 9.14183e-06 9.12129e-06 9.10049e-06 9.0795e-06 9.05842e-06 9.03738e-06 9.01653e-06 9.90802e-06 9.89091e-06 9.87384e-06 9.85669e-06 9.83934e-06 9.82177e-06 9.80404e-06 9.7862e-06 9.7683e-06 9.75038e-06 9.73251e-06 9.71473e-06 9.69706e-06 9.67955e-06 9.66224e-06 9.64514e-06 9.62827e-06 9.61165e-06 9.59527e-06 9.57916e-06 9.56336e-06 9.54792e-06 9.53277e-06 9.51782e-06 9.50303e-06 9.48831e-06 9.47364e-06 9.45894e-06 9.44419e-06 9.42934e-06 9.41441e-06 9.39941e-06 9.38439e-06 9.36937e-06 9.35411e-06 9.33848e-06 9.32241e-06 9.30578e-06 9.28853e-06 9.27063e-06 9.25213e-06 9.23314e-06 9.21379e-06 9.19436e-06 1.0023e-05 1.00049e-05 9.98662e-06 9.96807e-06 9.94932e-06 9.93042e-06 9.91146e-06 9.89251e-06 9.87366e-06 9.85499e-06 9.83661e-06 9.81857e-06 9.80088e-06 9.78365e-06 9.76693e-06 9.75074e-06 9.73509e-06 9.72002e-06 9.70556e-06 9.69168e-06 9.6784e-06 9.66582e-06 9.65406e-06 9.64295e-06 9.63235e-06 9.62215e-06 9.61225e-06 9.6026e-06 9.59313e-06 9.58381e-06 9.57464e-06 9.56568e-06 9.55705e-06 9.54869e-06 9.54008e-06 9.53102e-06 9.52126e-06 9.51055e-06 9.49859e-06 9.48524e-06 9.4703e-06 9.45352e-06 9.435e-06 9.41545e-06 1.01476e-05 1.01277e-05 1.01074e-05 1.00869e-05 1.00661e-05 1.00453e-05 1.00246e-05 1.0004e-05 9.98379e-06 9.964e-06 9.94479e-06 9.92632e-06 9.90855e-06 9.89165e-06 9.8757e-06 9.86072e-06 9.84677e-06 9.83391e-06 9.82211e-06 9.8114e-06 9.80176e-06 9.79323e-06 9.78609e-06 9.78048e-06 9.77602e-06 9.77249e-06 9.76974e-06 9.76768e-06 9.76623e-06 9.76539e-06 9.76527e-06 9.76596e-06 9.76781e-06 9.77048e-06 9.77335e-06 9.77617e-06 9.7788e-06 9.78141e-06 9.78422e-06 9.78658e-06 9.78468e-06 9.7744e-06 9.75123e-06 9.71713e-06 1.02817e-05 1.0259e-05 1.0236e-05 1.02126e-05 1.0189e-05 1.01654e-05 1.0142e-05 1.0119e-05 1.00966e-05 1.0075e-05 1.00545e-05 1.00352e-05 1.00172e-05 1.00005e-05 9.98554e-06 9.9722e-06 9.96058e-06 9.95075e-06 9.94266e-06 9.93635e-06 9.93177e-06 9.92903e-06 9.9285e-06 9.93053e-06 9.93503e-06 9.94138e-06 9.94936e-06 9.95885e-06 9.96979e-06 9.98222e-06 9.99638e-06 1.00129e-05 1.00331e-05 1.0056e-05 1.00825e-05 1.01171e-05 1.01692e-05 1.0255e-05 1.03875e-05 1.05574e-05 1.06978e-05 1.07563e-05 1.06985e-05 1.04781e-05 1.04254e-05 1.0399e-05 1.0372e-05 1.03444e-05 1.03166e-05 1.02888e-05 1.02613e-05 1.02345e-05 1.02085e-05 1.01839e-05 1.01609e-05 1.014e-05 1.01213e-05 1.01048e-05 1.00911e-05 1.00801e-05 1.00717e-05 1.00658e-05 1.00632e-05 1.00633e-05 1.00661e-05 1.00717e-05 1.00805e-05 1.00929e-05 1.01104e-05 1.01318e-05 1.01561e-05 1.01833e-05 1.02136e-05 1.02474e-05 1.02854e-05 1.03284e-05 1.03829e-05 1.04658e-05 1.06082e-05 1.0868e-05 1.13671e-05 1.22935e-05 1.36439e-05 1.52386e-05 1.65266e-05 1.70599e-05 1.69666e-05 1.53917e-05 1.05792e-05 1.05473e-05 1.05145e-05 1.04809e-05 1.04467e-05 1.04124e-05 1.03783e-05 1.0345e-05 1.03132e-05 1.02837e-05 1.0257e-05 1.02335e-05 1.02134e-05 1.01969e-05 1.01844e-05 1.01758e-05 1.01728e-05 1.01733e-05 1.01778e-05 1.01868e-05 1.02001e-05 1.02179e-05 1.02406e-05 1.02686e-05 1.0304e-05 1.03482e-05 1.03979e-05 1.04534e-05 1.05144e-05 1.05793e-05 1.06561e-05 1.0791e-05 1.10506e-05 1.15666e-05 1.26417e-05 1.47596e-05 1.84073e-05 2.36418e-05 2.97652e-05 3.60636e-05 4.12693e-05 4.39196e-05 4.4791e-05 4.11531e-05 1.07436e-05 1.0705e-05 1.06639e-05 1.06206e-05 1.05761e-05 1.05313e-05 1.04869e-05 1.04437e-05 1.04026e-05 1.03648e-05 1.03312e-05 1.03026e-05 1.02797e-05 1.02616e-05 1.02519e-05 1.02496e-05 1.02517e-05 1.02606e-05 1.02764e-05 1.02988e-05 1.03278e-05 1.03637e-05 1.0407e-05 1.04585e-05 1.05207e-05 1.05994e-05 1.0689e-05 1.07833e-05 1.08914e-05 1.10681e-05 1.14009e-05 1.20739e-05 1.35205e-05 1.64154e-05 2.15776e-05 2.93705e-05 3.88725e-05 4.92746e-05 6.06232e-05 7.19271e-05 8.21875e-05 8.97962e-05 9.30785e-05 9.27299e-05 1.09197e-05 1.08674e-05 1.08152e-05 1.07619e-05 1.07048e-05 1.06439e-05 1.05814e-05 1.05202e-05 1.04623e-05 1.04097e-05 1.03637e-05 1.03256e-05 1.02955e-05 1.02787e-05 1.02731e-05 1.02742e-05 1.02873e-05 1.03114e-05 1.0345e-05 1.03878e-05 1.04405e-05 1.05038e-05 1.05788e-05 1.0667e-05 1.07698e-05 1.08892e-05 1.10406e-05 1.12436e-05 1.15946e-05 1.22317e-05 1.35143e-05 1.60536e-05 2.07578e-05 2.77238e-05 3.60787e-05 4.56758e-05 5.67971e-05 6.97906e-05 8.36067e-05 9.6732e-05 0.000106884 0.000113183 0.000115557 0.000113567 1.11172e-05 1.10646e-05 1.09869e-05 1.08965e-05 1.08174e-05 1.07472e-05 1.06849e-05 1.06294e-05 1.05724e-05 1.0543e-05 1.05179e-05 1.04537e-05 1.03662e-05 1.02897e-05 1.02478e-05 1.02348e-05 1.02563e-05 1.02983e-05 1.03586e-05 1.04352e-05 1.05265e-05 1.06336e-05 1.07571e-05 1.08965e-05 1.10583e-05 1.12739e-05 1.161e-05 1.21609e-05 1.31333e-05 1.49689e-05 1.83138e-05 2.33126e-05 2.92882e-05 3.65278e-05 4.59962e-05 5.86724e-05 7.38597e-05 8.99604e-05 0.000105288 0.00011757 0.000124827 0.000127669 0.00012707 0.000122032 1.13012e-05 1.12193e-05 1.11997e-05 1.12289e-05 1.13799e-05 1.1935e-05 1.3923e-05 1.66166e-05 1.86806e-05 1.9561e-05 1.96938e-05 1.87607e-05 1.70719e-05 1.50138e-05 1.30784e-05 1.1588e-05 1.07363e-05 1.03872e-05 1.03187e-05 1.04193e-05 1.05629e-05 1.07342e-05 1.09284e-05 1.11627e-05 1.14753e-05 1.19371e-05 1.26864e-05 1.39967e-05 1.62096e-05 1.94859e-05 2.35014e-05 2.83052e-05 3.567e-05 4.57513e-05 5.91902e-05 7.47801e-05 9.12183e-05 0.000107027 0.000121022 0.000130578 0.000133029 0.0001317 0.000128387 0.000121767 1.17535e-05 1.21514e-05 1.34674e-05 1.73319e-05 2.61539e-05 3.73269e-05 4.81477e-05 5.6754e-05 6.25947e-05 6.56889e-05 6.60907e-05 6.44224e-05 6.01902e-05 5.32443e-05 4.43883e-05 3.43881e-05 2.48839e-05 1.81315e-05 1.36232e-05 1.14472e-05 1.07823e-05 1.08492e-05 1.11686e-05 1.16035e-05 1.22265e-05 1.3178e-05 1.46279e-05 1.6727e-05 1.94571e-05 2.27254e-05 2.73121e-05 3.44522e-05 4.4537e-05 5.7423e-05 7.25207e-05 8.88746e-05 0.000104797 0.000118615 0.000129272 0.000132751 0.000131875 0.000128391 0.00011976 0.000112991 1.47142e-05 1.95449e-05 2.99387e-05 4.48709e-05 6.05274e-05 7.30983e-05 8.15257e-05 8.695e-05 9.01959e-05 9.194e-05 9.21109e-05 9.16124e-05 9.03192e-05 8.81487e-05 8.51835e-05 8.08631e-05 7.38615e-05 6.23498e-05 4.75079e-05 3.31398e-05 2.28621e-05 1.66425e-05 1.39867e-05 1.33936e-05 1.39091e-05 1.50507e-05 1.66469e-05 1.86516e-05 2.12747e-05 2.53462e-05 3.16483e-05 4.06559e-05 5.2068e-05 6.50592e-05 7.87962e-05 9.19171e-05 0.000103347 0.00011331 0.000118672 0.000119371 0.000118568 0.000115438 0.000112437 0.000112366 2.37375e-05 3.6762e-05 5.37455e-05 7.07102e-05 8.15823e-05 8.82371e-05 9.26613e-05 9.57152e-05 9.76679e-05 9.83569e-05 9.81946e-05 9.76559e-05 9.68593e-05 9.62086e-05 9.57555e-05 9.55226e-05 9.53547e-05 9.47565e-05 9.30414e-05 8.72667e-05 7.73975e-05 6.61476e-05 5.57548e-05 4.85795e-05 4.43478e-05 4.1958e-05 4.06332e-05 3.99036e-05 3.96565e-05 3.99603e-05 4.14812e-05 4.50865e-05 5.07411e-05 5.82705e-05 6.67681e-05 7.55829e-05 8.36269e-05 9.01988e-05 9.56354e-05 9.93863e-05 0.000103009 0.000108079 0.000113853 0.000120514 4.09302e-05 5.97514e-05 7.66389e-05 8.53078e-05 9.01465e-05 9.37549e-05 9.65351e-05 9.95505e-05 0.000102423 0.000104614 0.000105775 0.000106159 0.000106017 0.000105634 0.000105332 0.000105458 0.000106378 0.00010837 0.000111768 0.000116488 0.000120113 0.000123027 0.00012527 0.000126091 0.000125905 0.000125455 0.000124707 0.000123431 0.000121586 0.00011919 0.000116792 0.000114636 0.000112932 0.000112431 0.000112665 0.00011356 0.000115746 0.000119541 0.000124819 0.000131019 0.000138795 0.000147381 0.000156369 0.00017044 6.45777e-05 8.08042e-05 8.80648e-05 9.10243e-05 9.39808e-05 9.909e-05 0.000105807 0.000112789 0.000118846 0.000123536 0.000126455 0.000127568 0.00012749 0.000126926 0.000126114 0.00012585 0.000126276 0.000127812 0.000130589 0.000134486 0.000140041 0.000147372 0.00015629 0.000166106 0.000175777 0.000184619 0.000192183 0.000198149 0.000202268 0.000204667 0.000205886 0.000206212 0.000205924 0.00020556 0.00020569 0.000206133 0.000206951 0.000208187 0.000210691 0.000214738 0.000218274 0.000221359 0.000227817 0.000236182 8.42965e-05 9.14215e-05 9.69216e-05 0.000104344 0.00011278 0.000120902 0.00012854 0.000135506 0.000141158 0.000145271 0.000148057 0.000149977 0.000150732 0.000151087 0.000151709 0.000153033 0.000155833 0.000160274 0.000166399 0.000174186 0.000183163 0.000193336 0.000204579 0.000216742 0.00022922 0.00024217 0.000254917 0.000265794 0.000274269 0.000279757 0.000283544 0.00028558 0.000285697 0.000285316 0.000284503 0.000284 0.000283476 0.000283544 0.000283892 0.000284484 0.000285091 0.000286318 0.000287942 0.000289069 9.90078e-05 0.000113743 0.000129457 0.000142042 0.000149309 0.00015259 0.000154417 0.000154651 0.000154729 0.000155677 0.00015793 0.000161237 0.00016542 0.000170402 0.000176342 0.000183447 0.000191926 0.000201921 0.000213636 0.00022711 0.000241766 0.000259375 0.000278378 0.000297214 0.000314308 0.000328276 0.000338151 0.000344315 0.000347527 0.000348651 0.000348385 0.000347066 0.00034447 0.000342022 0.000339936 0.000338407 0.000337234 0.00033716 0.000337447 0.000338104 0.000339047 0.000340381 0.00034183 0.000343442 0.000132882 0.000157459 0.000177822 0.000192109 0.000199167 0.000200146 0.000196581 0.000190508 0.000184291 0.000180104 0.000178512 0.000179511 0.00018367 0.000190339 0.000199433 0.000211045 0.000225204 0.000241605 0.000259883 0.000279379 0.0002998 0.000318182 0.000334329 0.00034795 0.000358678 0.000366561 0.000371755 0.000374325 0.000374679 0.000374278 0.00037297 0.000370635 0.000368727 0.000366822 0.000364752 0.000363312 0.000362639 0.000362881 0.000363524 0.000364219 0.000365228 0.00036646 0.000367813 0.000369189 0.000168422 0.000198918 0.000228981 0.000257249 0.000275681 0.00028262 0.000282475 0.00027858 0.000268325 0.000254914 0.000242028 0.000234099 0.000232697 0.000234186 0.000239774 0.000250081 0.00026331 0.000278867 0.000295662 0.000312559 0.000328478 0.000342624 0.000354353 0.000363676 0.000370895 0.000376133 0.000379678 0.000381215 0.00038145 0.00038128 0.000380617 0.000380066 0.000380308 0.000381079 0.000382716 0.000385141 0.000387754 0.000390968 0.000394103 0.000396941 0.000399484 0.000401855 0.000403922 0.000405809 0.000443825 0.000447235 0.000450167 0.000452604 0.000454612 8.36657e-06 8.35413e-06 8.34211e-06 8.33057e-06 8.31955e-06 8.30911e-06 8.29931e-06 8.29021e-06 8.28187e-06 8.27435e-06 8.26772e-06 8.26203e-06 8.2573e-06 8.25351e-06 8.25067e-06 8.24905e-06 8.35376e-06 8.33987e-06 8.3264e-06 8.31339e-06 8.30091e-06 8.28903e-06 8.27781e-06 8.26733e-06 8.25767e-06 8.24892e-06 8.24116e-06 8.23446e-06 8.22889e-06 8.22444e-06 8.22114e-06 8.2193e-06 8.3418e-06 8.32633e-06 8.31123e-06 8.29658e-06 8.28243e-06 8.26888e-06 8.256e-06 8.24388e-06 8.23263e-06 8.22234e-06 8.21315e-06 8.20516e-06 8.19848e-06 8.19314e-06 8.18922e-06 8.18707e-06 8.3313e-06 8.31411e-06 8.29725e-06 8.28078e-06 8.26478e-06 8.24932e-06 8.23451e-06 8.22045e-06 8.20725e-06 8.19506e-06 8.18403e-06 8.17434e-06 8.16614e-06 8.15957e-06 8.15477e-06 8.15217e-06 8.32303e-06 8.30406e-06 8.28533e-06 8.26692e-06 8.2489e-06 8.23134e-06 8.21435e-06 8.19802e-06 8.1825e-06 8.16795e-06 8.15456e-06 8.14257e-06 8.13224e-06 8.12385e-06 8.11769e-06 8.11439e-06 8.31801e-06 8.29722e-06 8.27661e-06 8.25621e-06 8.2361e-06 8.21634e-06 8.19701e-06 8.1782e-06 8.16005e-06 8.14271e-06 8.12638e-06 8.11133e-06 8.09794e-06 8.08668e-06 8.07817e-06 8.07355e-06 8.31745e-06 8.29491e-06 8.27246e-06 8.25015e-06 8.22803e-06 8.20613e-06 8.18453e-06 8.16328e-06 8.14248e-06 8.12224e-06 8.10269e-06 8.08405e-06 8.0666e-06 8.05086e-06 8.03779e-06 8.02987e-06 8.3225e-06 8.29847e-06 8.27445e-06 8.25047e-06 8.22659e-06 8.20287e-06 8.17935e-06 8.15609e-06 8.13313e-06 8.11056e-06 8.08845e-06 8.06691e-06 8.04609e-06 8.02618e-06 8.00754e-06 7.99246e-06 8.3345e-06 8.30919e-06 8.2839e-06 8.25866e-06 8.23352e-06 8.20854e-06 8.18377e-06 8.15927e-06 8.13513e-06 8.11147e-06 8.08843e-06 8.06623e-06 8.04524e-06 8.02612e-06 8.0101e-06 8.00035e-06 8.35487e-06 8.32865e-06 8.30249e-06 8.27643e-06 8.25055e-06 8.22491e-06 8.19961e-06 8.17474e-06 8.15045e-06 8.12692e-06 8.1044e-06 8.08324e-06 8.06396e-06 8.0473e-06 8.03429e-06 8.02701e-06 8.38471e-06 8.35797e-06 8.33137e-06 8.30498e-06 8.27888e-06 8.25319e-06 8.22802e-06 8.2035e-06 8.17982e-06 8.15722e-06 8.13597e-06 8.11646e-06 8.09916e-06 8.08467e-06 8.0737e-06 8.06778e-06 8.42527e-06 8.39842e-06 8.3718e-06 8.34552e-06 8.3197e-06 8.29444e-06 8.26989e-06 8.24621e-06 8.22361e-06 8.20231e-06 8.18261e-06 8.16484e-06 8.14941e-06 8.13679e-06 8.12747e-06 8.12264e-06 8.47799e-06 8.4514e-06 8.42516e-06 8.39939e-06 8.37421e-06 8.34975e-06 8.32616e-06 8.30362e-06 8.28231e-06 8.26246e-06 8.24433e-06 8.22821e-06 8.21441e-06 8.20331e-06 8.19527e-06 8.19122e-06 8.54449e-06 8.51851e-06 8.49299e-06 8.46805e-06 8.44382e-06 8.42042e-06 8.39802e-06 8.37677e-06 8.35685e-06 8.33846e-06 8.32182e-06 8.30716e-06 8.29475e-06 8.28487e-06 8.27779e-06 8.27429e-06 8.62667e-06 8.60162e-06 8.57712e-06 8.55329e-06 8.53025e-06 8.50812e-06 8.48707e-06 8.46721e-06 8.44873e-06 8.43178e-06 8.41654e-06 8.4032e-06 8.39198e-06 8.38311e-06 8.3768e-06 8.37372e-06 8.72692e-06 8.70309e-06 8.67988e-06 8.65741e-06 8.63577e-06 8.61511e-06 8.59554e-06 8.57719e-06 8.5602e-06 8.54468e-06 8.5308e-06 8.5187e-06 8.50857e-06 8.50059e-06 8.49494e-06 8.49223e-06 8.84843e-06 8.82608e-06 8.80439e-06 8.78348e-06 8.76345e-06 8.74443e-06 8.72651e-06 8.7098e-06 8.69439e-06 8.68038e-06 8.66789e-06 8.65704e-06 8.64797e-06 8.64083e-06 8.6358e-06 8.63342e-06 8.99564e-06 8.97489e-06 8.95485e-06 8.93565e-06 8.91739e-06 8.90019e-06 8.88411e-06 8.86921e-06 8.85556e-06 8.84321e-06 8.83223e-06 8.82271e-06 8.81477e-06 8.80852e-06 8.80411e-06 8.80205e-06 9.17482e-06 9.15544e-06 9.1369e-06 9.11936e-06 9.10295e-06 9.08772e-06 9.0737e-06 9.06088e-06 9.04927e-06 9.03884e-06 9.02962e-06 9.02166e-06 9.01502e-06 9.0098e-06 9.00613e-06 9.00444e-06 9.39548e-06 9.37602e-06 9.358e-06 9.34159e-06 9.32684e-06 9.31369e-06 9.30207e-06 9.29178e-06 9.28269e-06 9.27465e-06 9.26759e-06 9.2615e-06 9.25643e-06 9.25247e-06 9.24972e-06 9.24848e-06 9.68121e-06 9.65153e-06 9.62899e-06 9.61167e-06 9.59793e-06 9.58699e-06 9.57849e-06 9.57174e-06 9.56611e-06 9.56116e-06 9.55669e-06 9.55269e-06 9.54926e-06 9.54656e-06 9.54471e-06 9.54388e-06 1.02261e-05 1.00591e-05 9.9815e-06 9.9483e-06 9.93342e-06 9.92645e-06 9.92403e-06 9.92374e-06 9.92346e-06 9.92176e-06 9.91833e-06 9.91401e-06 9.90993e-06 9.90699e-06 9.90508e-06 9.90428e-06 1.31689e-05 1.14462e-05 1.06897e-05 1.04564e-05 1.04161e-05 1.0424e-05 1.04503e-05 1.04733e-05 1.04856e-05 1.04804e-05 1.04545e-05 1.04184e-05 1.03847e-05 1.0364e-05 1.0354e-05 1.03509e-05 3.17055e-05 2.07805e-05 1.41641e-05 1.18774e-05 1.15029e-05 1.16031e-05 1.18429e-05 1.20487e-05 1.21637e-05 1.21555e-05 1.19534e-05 1.16254e-05 1.1278e-05 1.10483e-05 1.0946e-05 1.09227e-05 8.53347e-05 6.31745e-05 3.3632e-05 1.84232e-05 1.49667e-05 1.54157e-05 1.69408e-05 1.8448e-05 1.95183e-05 1.99449e-05 1.92249e-05 1.74103e-05 1.49524e-05 1.29628e-05 1.19893e-05 1.17722e-05 0.000111609 0.000108445 8.93414e-05 4.65028e-05 2.55866e-05 2.52113e-05 3.10552e-05 3.7854e-05 4.42077e-05 4.76085e-05 4.78416e-05 4.31508e-05 3.34761e-05 2.23151e-05 1.52903e-05 1.3512e-05 0.000116576 0.000118875 0.000117325 0.000100507 5.68813e-05 4.25639e-05 5.20051e-05 6.89572e-05 8.80625e-05 0.000102261 0.000109652 0.000108097 9.3352e-05 6.14519e-05 2.90449e-05 1.85946e-05 0.000116589 0.000119561 0.000127096 0.000124091 0.0001025 7.28443e-05 7.04264e-05 8.32899e-05 0.000106516 0.000128851 0.000147094 0.000155396 0.000153234 0.000132012 7.09271e-05 3.30536e-05 0.000112375 0.000116866 0.00013124 0.000135128 0.000130436 0.000110759 9.99578e-05 0.000100763 0.000110384 0.00013425 0.000157492 0.000170324 0.000169759 0.000153393 0.000103313 5.84459e-05 0.000114656 0.000123292 0.000141817 0.000150323 0.000150221 0.000145332 0.000139632 0.000140288 0.000144987 0.00015734 0.000173459 0.000181707 0.000175237 0.00015383 0.000107239 8.30463e-05 0.000134064 0.000156327 0.000171849 0.000176461 0.00017638 0.000176586 0.000178266 0.000182975 0.000192919 0.000203552 0.00020345 0.000194198 0.000170724 0.000140547 0.000108265 0.000113137 0.000188479 0.000201144 0.000205363 0.000206288 0.000208142 0.000212783 0.000218567 0.000226337 0.000229202 0.00022751 0.000219129 0.000195689 0.000168479 0.000147955 0.000148661 0.000140856 0.000239373 0.000239401 0.000239748 0.00024159 0.000246795 0.000255356 0.000262201 0.000262945 0.000260929 0.000253913 0.00023601 0.000213184 0.000199374 0.000196257 0.000175664 0.000153583 0.000289927 0.000291493 0.000294532 0.000298096 0.000303334 0.000305986 0.000305491 0.00030298 0.000296309 0.000283844 0.000268018 0.000256411 0.000248001 0.00022646 0.000183455 0.000167788 0.000345163 0.000346693 0.000348037 0.000348154 0.000347612 0.000345962 0.000341782 0.000334322 0.000324606 0.000315001 0.000304598 0.000296109 0.000279974 0.000239426 0.000191549 0.000207694 0.000370853 0.000371548 0.000371273 0.000370266 0.000368096 0.000365622 0.000361696 0.000358211 0.000352393 0.000346908 0.00033726 0.000326598 0.000304994 0.000261345 0.000240302 0.000256553 0.000407113 0.000407265 0.000406837 0.000405499 0.00040229 0.000399313 0.00039539 0.000391011 0.000383333 0.000374952 0.00035984 0.000347208 0.000326777 0.000314142 0.000305786 0.000278083 0.000455438 0.00045524 0.000454257 0.000452009 0.000447764 0.000443286 0.000436778 0.000429253 0.000418975 0.000408467 0.000396024 0.000383885 0.000370295 0.000357721 0.000329649 0.000283593 4.17038e-06 5.88237e-06 6.66706e-06 7.03863e-06 7.19766e-06 7.25341e-06 7.25336e-06 7.19777e-06 7.03907e-06 6.66825e-06 5.88458e-06 4.17242e-06 4.20626e-06 5.92762e-06 6.71331e-06 7.08548e-06 7.24489e-06 7.30089e-06 7.30102e-06 7.24557e-06 7.08681e-06 6.71565e-06 5.9311e-06 4.20918e-06 4.24465e-06 5.97599e-06 6.76275e-06 7.13562e-06 7.29551e-06 7.35186e-06 7.35226e-06 7.29704e-06 7.13831e-06 6.76682e-06 5.98133e-06 4.24885e-06 4.28563e-06 6.02753e-06 6.81547e-06 7.18916e-06 7.34968e-06 7.40649e-06 7.40727e-06 7.35236e-06 7.19372e-06 6.82195e-06 6.03551e-06 4.29164e-06 4.32923e-06 6.08227e-06 6.8715e-06 7.24619e-06 7.40752e-06 7.46497e-06 7.46626e-06 7.41177e-06 7.25329e-06 6.88128e-06 6.09388e-06 4.3378e-06 4.37544e-06 6.14015e-06 6.93084e-06 7.3068e-06 7.46919e-06 7.52749e-06 7.52946e-06 7.47555e-06 7.31734e-06 6.94515e-06 6.15681e-06 4.38761e-06 4.42413e-06 6.201e-06 6.9934e-06 7.37101e-06 7.53478e-06 7.59423e-06 7.59712e-06 7.544e-06 7.38622e-06 7.01397e-06 6.2247e-06 4.44139e-06 4.47501e-06 6.26445e-06 7.0589e-06 7.43871e-06 7.60431e-06 7.66535e-06 7.6695e-06 7.61748e-06 7.46035e-06 7.08818e-06 6.29803e-06 4.49952e-06 4.52752e-06 6.3298e-06 7.12673e-06 7.50963e-06 7.67768e-06 7.74101e-06 7.74687e-06 7.69639e-06 7.5402e-06 7.16831e-06 6.37733e-06 4.56241e-06 4.58054e-06 6.39575e-06 7.19578e-06 7.58326e-06 7.75461e-06 7.82137e-06 7.82948e-06 7.78121e-06 7.62634e-06 7.25501e-06 6.46326e-06 4.63058e-06 4.63251e-06 6.45955e-06 7.26416e-06 7.65889e-06 7.83462e-06 7.90669e-06 7.91763e-06 7.87261e-06 7.71941e-06 7.34909e-06 6.55662e-06 4.70463e-06 4.68051e-06 6.51638e-06 7.32872e-06 7.73552e-06 7.91702e-06 7.99746e-06 8.01167e-06 7.97145e-06 7.82013e-06 7.45147e-06 6.65825e-06 4.78525e-06 4.71968e-06 6.55826e-06 7.38428e-06 7.81204e-06 8.00089e-06 8.09453e-06 8.11209e-06 8.07888e-06 7.92938e-06 7.56327e-06 6.76909e-06 4.87321e-06 4.73863e-06 6.57253e-06 7.42311e-06 7.88764e-06 8.08528e-06 8.19953e-06 8.21963e-06 8.1965e-06 8.04821e-06 7.68584e-06 6.89017e-06 4.96937e-06 4.71099e-06 6.5383e-06 7.43953e-06 7.9631e-06 8.16981e-06 8.31537e-06 8.33551e-06 8.32646e-06 8.17794e-06 7.82075e-06 7.02267e-06 5.07466e-06 4.71777e-06 6.42878e-06 7.42497e-06 8.04601e-06 8.25627e-06 8.44711e-06 8.46164e-06 8.47168e-06 8.32014e-06 7.9698e-06 7.1678e-06 5.19007e-06 1.00254e-05 6.63334e-06 7.35959e-06 8.15803e-06 8.35457e-06 8.60295e-06 8.60081e-06 8.63605e-06 8.47619e-06 8.13474e-06 7.3267e-06 5.31654e-06 4.68802e-05 1.41433e-05 7.79775e-06 8.29841e-06 8.47601e-06 8.79389e-06 8.75722e-06 8.82286e-06 8.64757e-06 8.31704e-06 7.50029e-06 5.45488e-06 6.61857e-05 2.84332e-05 9.94749e-06 8.70168e-06 8.64536e-06 9.02571e-06 8.93455e-06 9.03482e-06 8.83492e-06 8.51788e-06 7.68917e-06 5.60568e-06 6.55545e-05 3.44076e-05 1.19419e-05 9.27511e-06 8.86926e-06 9.30216e-06 9.1326e-06 9.27173e-06 9.03831e-06 8.73738e-06 7.89372e-06 5.76932e-06 6.31594e-05 4.01518e-05 1.3342e-05 9.75279e-06 9.11029e-06 9.60249e-06 9.34709e-06 9.52932e-06 9.25731e-06 8.97495e-06 8.11431e-06 5.94618e-06 6.42584e-05 4.38141e-05 1.49034e-05 1.02004e-05 9.34676e-06 9.90558e-06 9.57476e-06 9.80321e-06 9.49217e-06 9.23013e-06 8.35169e-06 6.1368e-06 6.38167e-05 4.53686e-05 1.5753e-05 1.06658e-05 9.58163e-06 1.02227e-05 9.8166e-06 1.00932e-05 9.74443e-06 9.50333e-06 8.60729e-06 6.3421e-06 5.79029e-05 4.48747e-05 1.56642e-05 1.1055e-05 9.82036e-06 1.05569e-05 1.00762e-05 1.03996e-05 1.00168e-05 9.79558e-06 8.88317e-06 6.5633e-06 5.78823e-05 4.37034e-05 1.59788e-05 1.14783e-05 1.0085e-05 1.08938e-05 1.03605e-05 1.07218e-05 1.03134e-05 1.01086e-05 9.18218e-06 6.80218e-06 0.000106928 5.12348e-05 1.79811e-05 1.20797e-05 1.0407e-05 1.12234e-05 1.06784e-05 1.10608e-05 1.06391e-05 1.04448e-05 9.50723e-06 7.06046e-06 0.000327518 0.000109345 2.85952e-05 1.36024e-05 1.08458e-05 1.15627e-05 1.10385e-05 1.14217e-05 1.09991e-05 1.08081e-05 9.86261e-06 7.34179e-06 0.000544156 0.000203759 5.63341e-05 1.81544e-05 1.15975e-05 1.19589e-05 1.14475e-05 1.18119e-05 1.13969e-05 1.12013e-05 1.02487e-05 7.64462e-06 0.00058735 0.000238388 7.11886e-05 2.2721e-05 1.25931e-05 1.24423e-05 1.19022e-05 1.22377e-05 1.18364e-05 1.16305e-05 1.06759e-05 7.98367e-06 0.000593673 0.000276265 7.90556e-05 2.44691e-05 1.34133e-05 1.29617e-05 1.23847e-05 1.27014e-05 1.23167e-05 1.20956e-05 1.11252e-05 8.32527e-06 0.000588989 0.000349534 0.000107799 2.99814e-05 1.44774e-05 1.34913e-05 1.2905e-05 1.31957e-05 1.28426e-05 1.26041e-05 1.16603e-05 8.77025e-06 0.000548183 0.00041782 0.000150035 4.64883e-05 1.71412e-05 1.41563e-05 1.34777e-05 1.37537e-05 1.34179e-05 1.31542e-05 1.21191e-05 9.08099e-06 0.000510795 0.000452155 0.000188481 7.7141e-05 2.39337e-05 1.53337e-05 1.41025e-05 1.43061e-05 1.40476e-05 1.37832e-05 1.28954e-05 9.75252e-06 0.000500614 0.000468747 0.000221683 0.000108075 3.858e-05 1.81237e-05 1.49444e-05 1.51419e-05 1.47213e-05 1.43506e-05 1.32825e-05 1.0006e-05 0.000503201 0.000470375 0.00023517 0.000123751 5.40573e-05 2.25362e-05 1.62874e-05 1.58469e-05 1.57287e-05 1.53968e-05 1.43645e-05 1.09702e-05 0.00052264 0.000461704 0.000234977 0.000131507 6.67859e-05 2.97032e-05 1.77244e-05 1.71527e-05 1.64196e-05 1.59845e-05 1.4739e-05 1.10052e-05 0.000548717 0.000441404 0.000219604 0.000130309 7.01487e-05 3.46195e-05 2.06714e-05 1.81136e-05 1.79639e-05 1.75282e-05 1.62498e-05 1.24288e-05 ) ; } procBoundary6to1 { type processor; value nonuniform List<scalar> 1031 ( 0.000587379 0.000488424 0.000213534 0.000126825 7.00748e-05 3.761e-05 2.18172e-05 1.97901e-05 1.87115e-05 1.81736e-05 1.671e-05 1.23334e-05 0.000778758 0.000871121 0.000359917 0.000168214 8.03334e-05 3.37169e-05 2.37088e-05 2.32157e-05 2.20897e-05 1.98205e-05 1.59557e-05 1.38024e-05 0.000757604 0.000847128 0.000249773 9.00902e-05 5.00946e-05 3.56884e-05 3.07866e-05 2.94465e-05 2.72801e-05 2.41726e-05 1.92425e-05 1.509e-05 0.000687327 0.000534468 0.00012778 5.88905e-05 4.49069e-05 3.99359e-05 3.59097e-05 3.37676e-05 3.1128e-05 2.74083e-05 2.17556e-05 1.6e-05 0.000581491 0.000331241 9.03952e-05 5.26748e-05 4.6696e-05 4.22025e-05 3.92271e-05 3.67458e-05 3.38696e-05 2.97018e-05 2.3456e-05 1.65947e-05 0.000425427 0.000235817 7.5867e-05 5.05792e-05 4.66602e-05 4.31628e-05 4.12121e-05 3.87357e-05 3.57579e-05 3.12389e-05 2.44097e-05 1.68979e-05 0.000271699 0.000181252 7.47892e-05 4.93907e-05 4.57366e-05 4.34579e-05 4.2306e-05 4.00212e-05 3.70154e-05 3.22487e-05 2.4973e-05 1.71777e-05 0.000157324 0.000153205 9.37945e-05 4.9132e-05 4.42457e-05 4.33092e-05 4.27658e-05 4.08192e-05 3.78202e-05 3.28911e-05 2.53186e-05 1.72651e-05 9.29384e-05 0.000158432 0.000113434 4.96652e-05 4.28596e-05 4.29121e-05 4.28733e-05 4.12829e-05 3.83198e-05 3.32839e-05 2.54951e-05 1.72193e-05 8.25246e-05 0.000157388 0.000116076 4.88648e-05 4.17979e-05 4.2484e-05 4.28354e-05 4.15209e-05 3.86311e-05 3.35259e-05 2.55559e-05 1.70837e-05 7.97909e-05 0.000128057 0.000100139 4.67049e-05 4.12144e-05 4.22429e-05 4.27912e-05 4.16473e-05 3.88344e-05 3.3689e-05 2.55676e-05 1.70484e-05 5.25431e-05 0.000114689 8.15404e-05 4.40867e-05 4.10636e-05 4.21946e-05 4.27926e-05 4.17432e-05 3.89807e-05 3.38139e-05 2.55415e-05 1.70283e-05 3.6294e-05 0.000105964 5.72572e-05 4.20727e-05 4.11654e-05 4.22681e-05 4.28546e-05 4.18454e-05 3.90999e-05 3.39205e-05 2.55055e-05 1.69119e-05 3.12282e-05 6.528e-05 5.06996e-05 4.13863e-05 4.12786e-05 4.23834e-05 4.29555e-05 4.19592e-05 3.91923e-05 3.39998e-05 2.54962e-05 1.68004e-05 2.04112e-05 4.29075e-05 4.86082e-05 4.04654e-05 4.11061e-05 4.24564e-05 4.30614e-05 4.20711e-05 3.9234e-05 3.40319e-05 2.55789e-05 1.72528e-05 1.69913e-05 3.26411e-05 4.06005e-05 3.86071e-05 4.07034e-05 4.24731e-05 4.31511e-05 4.21619e-05 3.92226e-05 3.40283e-05 2.64276e-05 1.90004e-05 1.5507e-05 2.54609e-05 3.40538e-05 3.68898e-05 4.04241e-05 4.24987e-05 4.32232e-05 4.22186e-05 3.91506e-05 3.42366e-05 3.09784e-05 2.2513e-05 1.50108e-05 2.26375e-05 3.14806e-05 3.61872e-05 4.03157e-05 4.25775e-05 4.32811e-05 4.22425e-05 3.90886e-05 3.57524e-05 4.62532e-05 3.2936e-05 1.49538e-05 2.12997e-05 3.0487e-05 3.60082e-05 4.03493e-05 4.27224e-05 4.33367e-05 4.22452e-05 3.90874e-05 3.9711e-05 7.08577e-05 4.98605e-05 1.53275e-05 2.09168e-05 3.02289e-05 3.61286e-05 4.05676e-05 4.29457e-05 4.34099e-05 4.22464e-05 3.95044e-05 4.63555e-05 9.49942e-05 6.66868e-05 1.54934e-05 2.11334e-05 3.07558e-05 3.66373e-05 4.09581e-05 4.32597e-05 4.35263e-05 4.22548e-05 4.05816e-05 5.68446e-05 0.000118151 8.43091e-05 1.57791e-05 2.16942e-05 3.15535e-05 3.73448e-05 4.1496e-05 4.36782e-05 4.3725e-05 4.23315e-05 4.24932e-05 7.03788e-05 0.000142934 0.000105957 1.6502e-05 2.22535e-05 3.2331e-05 3.82051e-05 4.21836e-05 4.42153e-05 4.40592e-05 4.26252e-05 4.50128e-05 8.54618e-05 0.000170768 0.000130752 1.86273e-05 2.34689e-05 3.32883e-05 3.92407e-05 4.30289e-05 4.48831e-05 4.45553e-05 4.31316e-05 4.81121e-05 0.000100242 0.000204245 0.000158402 2.29509e-05 2.66667e-05 3.47719e-05 4.04829e-05 4.4034e-05 4.5707e-05 4.52381e-05 4.38827e-05 5.14714e-05 0.00011402 0.000247629 0.000191759 2.91401e-05 3.57451e-05 3.77283e-05 4.18896e-05 4.51209e-05 4.66735e-05 4.61218e-05 4.48972e-05 5.48715e-05 0.000127732 0.00029995 0.000231199 3.63484e-05 5.84363e-05 4.35738e-05 4.34878e-05 4.61059e-05 4.77029e-05 4.71518e-05 4.61162e-05 5.81238e-05 0.000141269 0.000353059 0.000270387 4.84217e-05 0.000103328 5.57161e-05 4.57813e-05 4.71455e-05 4.87465e-05 4.82844e-05 4.74662e-05 6.09492e-05 0.000152959 0.000398171 0.000296912 6.87401e-05 0.000152727 7.73102e-05 4.9239e-05 4.84549e-05 4.97266e-05 4.94647e-05 4.88277e-05 6.25998e-05 0.000159545 0.000428523 0.00030999 9.12187e-05 0.000177382 0.000103948 5.40314e-05 4.97351e-05 5.06374e-05 5.06416e-05 5.01518e-05 6.33782e-05 0.000161664 0.000442969 0.000315549 0.000111092 0.00019006 0.000120986 5.7775e-05 5.05486e-05 5.13688e-05 5.17645e-05 5.14067e-05 6.36439e-05 0.000160599 0.000446546 0.000316934 0.000121658 0.000197095 0.000126603 5.90176e-05 5.08433e-05 5.18698e-05 5.27636e-05 5.25715e-05 6.34718e-05 0.000156963 0.000445507 0.000316248 0.000123225 0.00019877 0.000126274 5.88675e-05 5.08329e-05 5.21514e-05 5.36039e-05 5.36461e-05 6.33204e-05 0.000152602 0.000444622 0.000313692 0.000117524 0.000187935 0.000112822 5.53844e-05 5.02965e-05 5.22766e-05 5.42885e-05 5.46196e-05 6.33172e-05 0.000149198 0.000447047 0.000310233 0.000106823 0.00016289 9.00589e-05 5.05855e-05 4.96197e-05 5.23938e-05 5.48431e-05 5.54936e-05 6.35078e-05 0.000147791 0.000454307 0.000306543 9.21702e-05 0.000123771 6.70232e-05 4.70685e-05 4.89426e-05 5.26718e-05 5.52911e-05 5.6292e-05 6.40629e-05 0.000148031 0.000466974 0.000301817 7.66115e-05 8.25728e-05 4.95972e-05 4.46316e-05 4.87244e-05 5.28215e-05 5.56462e-05 5.70584e-05 6.52345e-05 0.000152487 0.000485579 0.000299209 6.40557e-05 5.76107e-05 4.10823e-05 4.34025e-05 4.90562e-05 5.30883e-05 5.59776e-05 5.78355e-05 6.69557e-05 0.000161215 0.000509906 0.000299633 5.24591e-05 3.76175e-05 3.70847e-05 4.30927e-05 4.92919e-05 5.34155e-05 5.63287e-05 5.86885e-05 6.94462e-05 0.000175481 0.000539255 0.000301502 3.15586e-05 2.76228e-05 3.49538e-05 4.38944e-05 4.98361e-05 5.38706e-05 5.67502e-05 5.96928e-05 7.28302e-05 0.000195191 0.000571811 0.00030546 1.58026e-05 2.32702e-05 3.57113e-05 4.46661e-05 5.05398e-05 5.44564e-05 5.72986e-05 6.09489e-05 7.72638e-05 0.000219587 0.000605426 0.000312841 1.53317e-05 2.39113e-05 3.75334e-05 4.58778e-05 5.15152e-05 5.52182e-05 5.80523e-05 6.25937e-05 8.28675e-05 0.000247149 0.000637767 0.000322124 1.6487e-05 2.46795e-05 3.87015e-05 4.70659e-05 5.26016e-05 5.61065e-05 5.90863e-05 6.48121e-05 9.00162e-05 0.000276414 0.000666528 0.000332158 1.74275e-05 2.52391e-05 3.96626e-05 4.83015e-05 5.37408e-05 5.7083e-05 6.05162e-05 6.79685e-05 9.93335e-05 0.00030673 0.000689685 0.000342225 1.82096e-05 2.68269e-05 4.11342e-05 4.9641e-05 5.48719e-05 5.81249e-05 6.24444e-05 7.26926e-05 0.000111738 0.000336669 0.000707217 0.000351628 1.91121e-05 2.76088e-05 4.20585e-05 5.08398e-05 5.59131e-05 5.92608e-05 6.50904e-05 7.99379e-05 0.000128815 0.000364715 0.000719248 0.000360318 2.04623e-05 2.91073e-05 4.32164e-05 5.20207e-05 5.68779e-05 6.06245e-05 6.88606e-05 9.10385e-05 0.000151545 0.000390186 0.000725253 0.000368165 2.1262e-05 3.04306e-05 4.43361e-05 5.31711e-05 5.78115e-05 6.23421e-05 7.4231e-05 0.000107543 0.000179272 0.000412796 0.000725363 0.000374994 2.14313e-05 3.17147e-05 4.55702e-05 5.44025e-05 5.88349e-05 6.45e-05 8.14878e-05 0.00012965 0.000209111 0.000432492 0.000722406 0.000381132 2.11067e-05 3.29674e-05 4.70616e-05 5.58676e-05 6.01302e-05 6.72336e-05 9.05926e-05 0.000155142 0.000240144 0.000449391 0.000714337 0.000386015 2.10666e-05 3.42726e-05 4.89639e-05 5.7747e-05 6.19323e-05 7.06488e-05 0.000101496 0.0001832 0.000272484 0.0004643 0.000702791 0.000389684 2.16718e-05 3.59894e-05 5.15528e-05 6.02502e-05 6.44629e-05 7.47943e-05 0.000113963 0.000212986 0.000305855 0.000477732 0.000689099 0.000392757 2.26192e-05 3.80898e-05 5.4979e-05 6.35803e-05 6.7775e-05 7.97938e-05 0.000127692 0.000243562 0.000339639 0.000490532 0.000674921 0.000395402 2.3899e-05 4.08469e-05 5.94434e-05 6.79945e-05 7.20698e-05 8.56693e-05 0.000142255 0.000274126 0.000373074 0.00050389 0.000661799 0.000397918 2.56331e-05 4.43888e-05 6.51485e-05 7.37508e-05 7.75626e-05 9.24506e-05 0.000157201 0.000303993 0.000405804 0.000518638 0.000651918 0.000400821 2.84388e-05 4.88696e-05 7.2133e-05 8.10121e-05 8.44411e-05 0.000100165 0.000172049 0.000332595 0.000437651 0.000535053 0.000646183 0.000404475 3.406e-05 5.45086e-05 8.024e-05 8.97709e-05 9.27776e-05 0.000108821 0.000186319 0.000359483 0.000468474 0.000552999 0.000644508 0.000408867 4.68083e-05 6.23698e-05 8.9135e-05 9.97776e-05 0.000102464 0.00011838 0.000199666 0.000384355 0.000498122 0.000572142 0.000645816 0.000413901 7.38343e-05 7.61581e-05 9.83548e-05 0.00011061 0.000113223 0.000128719 0.000211993 0.000407014 0.000526445 0.00059205 0.000649171 0.000419252 0.000120266 0.000101138 0.000109534 0.000121924 0.000124695 0.000139589 0.000223356 0.000427329 0.000553291 0.000612359 0.000654622 0.000424706 0.000180687 0.000140376 0.000127564 0.000133772 0.000136564 0.000150612 0.000233777 0.000445222 0.000578502 0.000632719 0.000661331 0.000430064 0.000234272 0.000195629 0.000154027 0.000148228 0.00014876 0.000161293 0.000243142 0.000460653 0.000601909 0.000652785 0.000668729 0.000435081 0.000267488 0.000260549 0.000196091 0.000166192 0.000161118 0.00017148 0.000251243 0.000473596 0.000623326 0.000672174 0.000676493 0.000676493 0.000439776 0.000439776 0.000288748 0.000327489 0.000258158 0.000190052 0.0001734 0.000180989 0.000257848 0.000484052 0.000642574 0.000690403 0.000690403 0.000777431 0.00049331 0.000306215 0.000392289 0.000327806 0.000220491 0.000185949 0.000189483 0.000262549 0.000492089 0.000659506 0.000707254 0.000707254 0.000783732 0.000495778 0.000321653 0.000439605 0.000390136 0.000255825 0.000198702 0.000195976 0.000265018 0.000497957 0.000674015 0.000722523 0.000722523 0.000789692 0.000497626 0.000334965 0.000469714 0.000434883 0.000291894 0.000211483 0.000198628 0.000265874 0.00050246 0.000686044 0.000735913 0.000735913 0.000795117 0.000499283 0.000346618 0.000491189 0.000464621 0.000321081 0.00022055 0.000198943 0.000265228 0.000506068 0.000695515 0.000747089 0.000747089 0.00079989 0.000499941 0.000357942 0.000508883 0.000483458 0.000335306 0.000223339 0.000196351 0.000263171 0.000509468 0.00070245 0.000755869 0.000755869 0.000803652 0.000499717 0.000369466 0.000527284 0.000495611 0.00033869 0.000221777 0.000190701 0.000261149 0.000513553 0.000706385 0.000761466 0.000761466 0.000805258 0.000498837 0.000380649 0.000549355 0.000506735 0.000336495 0.000214466 0.000182472 0.00026119 0.000519007 0.0007068 0.000762287 0.000762287 0.000804725 0.000496901 0.000391201 0.000575337 0.000521287 0.0003329 0.000205874 0.000176825 0.000267519 0.00052601 0.000704799 0.000760339 0.000760339 0.000802544 0.000492816 0.000402319 0.000602237 0.00054191 0.000333072 0.000203374 0.000176667 0.000285296 0.000533365 0.000698253 0.000753919 0.000753919 0.000796488 0.000488272 0.000413032 0.000626887 0.000566793 0.000346428 0.000213501 0.000192368 0.000313708 0.000538022 0.00068531 0.000740213 0.000740213 0.000784117 0.000484155 0.000423925 0.000646769 0.000590362 0.000376579 0.000250444 0.000232769 0.000348368 0.000539106 0.000667443 0.000719438 0.000719438 0.000765042 0.000479167 0.000437095 0.000663096 0.000600866 0.000417226 0.000308039 0.000289191 0.000382888 0.000535511 0.000644813 0.000692121 0.000692121 0.000739774 0.000473628 0.000454784 0.000677527 0.000602647 0.000451496 0.000361798 0.000343729 0.000408737 0.000525142 0.000617081 0.000658158 0.000658158 0.000708579 0.000466264 0.000478467 0.000692374 0.000598027 0.00046978 0.00039952 0.000383192 0.000420906 0.000507765 0.000584223 0.00061828 0.00061828 0.000671257 0.000456718 0.000507529 0.00071233 0.000591229 0.000478608 0.000423164 0.000407866 0.000424495 0.000485724 0.00054687 0.000573047 0.000573047 0.000629476 0.000444266 0.000541101 0.00074218 0.00058903 0.000489427 0.000443426 0.000426251 0.000427298 0.000464973 0.000509454 0.000526727 0.000526727 0.000584007 0.000428068 0.000578415 0.000782349 0.000596003 0.000510347 0.000471679 0.000444825 0.000438242 0.000453955 0.000481359 0.000489584 0.000489584 0.000530861 0.00040759 0.000615585 0.000823531 0.000602536 0.000522748 0.000492035 0.000461772 0.000449761 0.000451529 0.000464824 0.000469493 0.000469493 0.000492617 0.000377712 0.000640905 0.000858196 0.000591506 0.000505427 0.000477019 0.000452777 0.000433921 0.000430373 0.000431558 0.000432279 0.000432279 0.000432834 0.000336413 0.000651267 0.000875122 0.00055653 0.000443332 0.000409045 0.00039869 0.000395451 0.000394764 0.000394339 0.000384556 0.000384556 0.000346875 0.000288519 ) ; } procBoundary6to7 { type processor; value nonuniform List<scalar> 1075 ( 4.13689e-06 5.8401e-06 6.62389e-06 6.99495e-06 7.15368e-06 7.20926e-06 7.20909e-06 7.15345e-06 6.99485e-06 6.62438e-06 5.84151e-06 4.13834e-06 6.34644e-06 9.54616e-06 1.1368e-05 1.22607e-05 1.26637e-05 1.28132e-05 1.28126e-05 1.26623e-05 1.2259e-05 1.13667e-05 9.54579e-06 6.34745e-06 7.3606e-06 1.18197e-05 1.4052e-05 1.5161e-05 1.56818e-05 1.58835e-05 1.5883e-05 1.56808e-05 1.51598e-05 1.40511e-05 1.18196e-05 7.36178e-06 7.95753e-06 1.32777e-05 1.57593e-05 1.69982e-05 1.75961e-05 1.78345e-05 1.78342e-05 1.75955e-05 1.69975e-05 1.57589e-05 1.32779e-05 7.95871e-06 8.32807e-06 1.42482e-05 1.69177e-05 1.82533e-05 1.89097e-05 1.91771e-05 1.91769e-05 1.89095e-05 1.8253e-05 1.69177e-05 1.42489e-05 8.3287e-06 8.56243e-06 1.48989e-05 1.77191e-05 1.91338e-05 1.98382e-05 2.01293e-05 2.01293e-05 1.98382e-05 1.91338e-05 1.77193e-05 1.48997e-05 8.56301e-06 8.70947e-06 1.53327e-05 1.82743e-05 1.97559e-05 2.05009e-05 2.0812e-05 2.0812e-05 2.0501e-05 1.97562e-05 1.82747e-05 1.53334e-05 8.71002e-06 8.79953e-06 1.5618e-05 1.8656e-05 2.01941e-05 2.09735e-05 2.13016e-05 2.13017e-05 2.09738e-05 2.01945e-05 1.86565e-05 1.56187e-05 8.80006e-06 8.85286e-06 1.5802e-05 1.89148e-05 2.04995e-05 2.1308e-05 2.16504e-05 2.16505e-05 2.13083e-05 2.05001e-05 1.89154e-05 1.58028e-05 8.8534e-06 8.88304e-06 1.59179e-05 1.90869e-05 2.07092e-05 2.15416e-05 2.18959e-05 2.1896e-05 2.1542e-05 2.07099e-05 1.90876e-05 1.59189e-05 8.88362e-06 8.89894e-06 1.59891e-05 1.91988e-05 2.08503e-05 2.17019e-05 2.20658e-05 2.20659e-05 2.17024e-05 2.08511e-05 1.91997e-05 1.59903e-05 8.89958e-06 8.90632e-06 1.60316e-05 1.92697e-05 2.09432e-05 2.18095e-05 2.21809e-05 2.21811e-05 2.181e-05 2.0944e-05 1.92707e-05 1.60331e-05 8.90705e-06 8.90886e-06 1.60563e-05 1.93134e-05 2.10026e-05 2.188e-05 2.22571e-05 2.22573e-05 2.18806e-05 2.10036e-05 1.93146e-05 1.60581e-05 8.90965e-06 8.90858e-06 1.60702e-05 1.93396e-05 2.10398e-05 2.19251e-05 2.23063e-05 2.23065e-05 2.19257e-05 2.10408e-05 1.9341e-05 1.60723e-05 8.90947e-06 8.90657e-06 1.60778e-05 1.93549e-05 2.10623e-05 2.19531e-05 2.23372e-05 2.23374e-05 2.19537e-05 2.10634e-05 1.93564e-05 1.60802e-05 8.90754e-06 8.90356e-06 1.60818e-05 1.93635e-05 2.10756e-05 2.197e-05 2.23561e-05 2.23564e-05 2.19707e-05 2.10767e-05 1.93652e-05 1.60843e-05 8.90473e-06 8.89989e-06 1.60838e-05 1.93683e-05 2.10833e-05 2.198e-05 2.23674e-05 2.23676e-05 2.19807e-05 2.10845e-05 1.93701e-05 1.60864e-05 8.90132e-06 8.89577e-06 1.60847e-05 1.93709e-05 2.10876e-05 2.19858e-05 2.2374e-05 2.23742e-05 2.19865e-05 2.10889e-05 1.93728e-05 1.60873e-05 8.89739e-06 8.89127e-06 1.60849e-05 1.93723e-05 2.109e-05 2.19891e-05 2.23778e-05 2.2378e-05 2.19898e-05 2.10913e-05 1.93742e-05 1.60876e-05 8.89305e-06 8.88645e-06 8.88645e-06 1.60847e-05 1.60847e-05 1.9373e-05 1.9373e-05 2.10914e-05 2.19909e-05 2.238e-05 2.23802e-05 2.19917e-05 2.10927e-05 1.9375e-05 1.60875e-05 8.88834e-06 8.86009e-06 1.6078e-05 1.93663e-05 2.10922e-05 2.10922e-05 2.19921e-05 2.23813e-05 2.23815e-05 2.19928e-05 2.10936e-05 1.93754e-05 1.60872e-05 8.8833e-06 8.85498e-06 1.60775e-05 1.93664e-05 2.10926e-05 2.10926e-05 2.19928e-05 2.23821e-05 2.23823e-05 2.19935e-05 2.10941e-05 1.93756e-05 1.60868e-05 8.87794e-06 8.84962e-06 1.60768e-05 1.93665e-05 2.1093e-05 2.1093e-05 2.19932e-05 2.23826e-05 2.23828e-05 2.1994e-05 2.10944e-05 1.93757e-05 1.60862e-05 8.87227e-06 8.84399e-06 1.60762e-05 1.93665e-05 2.10932e-05 2.10932e-05 2.19936e-05 2.2383e-05 2.23833e-05 2.19944e-05 2.10947e-05 1.93757e-05 1.60855e-05 8.86631e-06 8.83792e-06 1.60754e-05 1.93664e-05 2.10935e-05 2.10935e-05 2.1994e-05 2.23834e-05 2.23837e-05 2.19947e-05 2.10949e-05 1.93757e-05 1.60847e-05 8.85983e-06 8.83135e-06 1.60746e-05 1.93663e-05 2.10937e-05 2.10937e-05 2.19943e-05 2.23838e-05 2.2384e-05 2.19951e-05 2.10951e-05 1.93756e-05 1.60838e-05 8.85281e-06 8.8245e-06 1.60737e-05 1.93662e-05 2.10939e-05 2.10939e-05 2.19946e-05 2.23842e-05 2.23844e-05 2.19954e-05 2.10953e-05 1.93755e-05 1.60828e-05 8.84547e-06 8.81736e-06 1.60728e-05 1.93661e-05 2.10941e-05 2.10941e-05 2.1995e-05 2.23846e-05 2.23848e-05 2.19957e-05 2.10954e-05 1.93753e-05 1.60818e-05 8.83784e-06 8.80995e-06 1.60718e-05 1.9366e-05 2.10943e-05 2.10943e-05 2.19953e-05 2.2385e-05 2.23852e-05 2.1996e-05 2.10956e-05 1.93751e-05 1.60806e-05 8.82992e-06 8.80225e-06 1.60707e-05 1.93658e-05 2.10945e-05 2.10945e-05 2.19956e-05 2.23853e-05 2.23855e-05 2.19963e-05 2.10957e-05 1.93749e-05 1.60795e-05 8.82173e-06 8.7943e-06 1.60697e-05 1.93657e-05 2.10947e-05 2.10947e-05 2.1996e-05 2.23857e-05 2.23859e-05 2.19966e-05 2.10959e-05 1.93747e-05 1.60783e-05 8.81327e-06 8.7861e-06 1.60685e-05 1.93655e-05 2.10949e-05 2.10949e-05 2.19963e-05 2.23861e-05 2.23863e-05 2.19969e-05 2.1096e-05 1.93745e-05 1.6077e-05 8.80456e-06 8.77768e-06 1.60674e-05 1.93653e-05 2.10951e-05 2.10951e-05 2.19967e-05 2.23865e-05 2.23867e-05 2.19973e-05 2.10962e-05 1.93743e-05 1.60758e-05 8.79561e-06 8.76904e-06 1.60663e-05 1.93651e-05 2.10954e-05 2.10954e-05 2.1997e-05 2.23869e-05 2.23871e-05 2.19976e-05 2.10964e-05 1.93741e-05 1.60745e-05 8.78643e-06 8.7602e-06 1.60651e-05 1.9365e-05 2.10956e-05 2.10956e-05 2.19974e-05 2.23874e-05 2.23875e-05 2.19979e-05 2.10965e-05 1.93739e-05 1.60732e-05 8.77703e-06 8.75116e-06 1.6064e-05 1.93648e-05 2.10959e-05 2.10959e-05 2.19978e-05 2.23878e-05 2.23879e-05 2.19983e-05 2.10967e-05 1.93737e-05 1.60719e-05 8.76742e-06 8.74192e-06 1.60628e-05 1.93647e-05 2.10961e-05 2.10961e-05 2.19982e-05 2.23882e-05 2.23884e-05 2.19986e-05 2.10969e-05 1.93735e-05 1.60706e-05 8.75758e-06 8.73249e-06 1.60617e-05 1.93645e-05 2.10964e-05 2.10964e-05 2.19986e-05 2.23887e-05 2.23888e-05 2.1999e-05 2.10971e-05 1.93733e-05 1.60693e-05 8.74753e-06 8.72287e-06 1.60605e-05 1.93644e-05 2.10967e-05 2.10967e-05 2.19991e-05 2.23892e-05 2.23893e-05 2.19994e-05 2.10973e-05 1.93731e-05 1.60679e-05 8.73726e-06 8.71306e-06 1.60593e-05 1.93642e-05 2.1097e-05 2.1097e-05 2.19995e-05 2.23896e-05 2.23897e-05 2.19998e-05 2.10975e-05 1.93729e-05 1.60665e-05 8.72677e-06 8.70308e-06 1.60581e-05 1.93641e-05 2.10973e-05 2.10973e-05 2.19999e-05 2.23901e-05 2.23902e-05 2.20002e-05 2.10977e-05 1.93727e-05 1.60651e-05 8.7161e-06 8.69291e-06 1.60569e-05 1.9364e-05 2.10976e-05 2.10976e-05 2.20004e-05 2.23906e-05 2.23907e-05 2.20006e-05 2.1098e-05 1.93725e-05 1.60637e-05 8.70524e-06 8.68258e-06 1.60556e-05 1.93638e-05 2.10979e-05 2.10979e-05 2.20008e-05 2.23911e-05 2.23912e-05 2.2001e-05 2.10982e-05 1.93723e-05 1.60622e-05 8.69423e-06 8.67209e-06 1.60543e-05 1.93636e-05 2.10982e-05 2.10982e-05 2.20012e-05 2.23916e-05 2.23916e-05 2.20014e-05 2.10984e-05 1.93721e-05 1.60608e-05 8.68306e-06 8.66143e-06 1.6053e-05 1.93635e-05 2.10985e-05 2.10985e-05 2.20017e-05 2.23921e-05 2.23921e-05 2.20018e-05 2.10987e-05 1.93719e-05 1.60594e-05 8.67174e-06 8.65062e-06 1.60517e-05 1.93633e-05 2.10987e-05 2.10987e-05 2.20021e-05 2.23926e-05 2.23926e-05 2.20022e-05 2.10989e-05 1.93718e-05 1.6058e-05 8.66026e-06 8.63967e-06 1.60503e-05 1.93631e-05 2.1099e-05 2.1099e-05 2.20025e-05 2.23931e-05 2.23931e-05 2.20026e-05 2.10992e-05 1.93716e-05 1.60566e-05 8.64863e-06 8.6286e-06 1.60489e-05 1.93629e-05 2.10992e-05 2.10992e-05 2.20029e-05 2.23935e-05 2.23936e-05 2.20031e-05 2.10994e-05 1.93714e-05 1.60551e-05 8.63685e-06 8.61743e-06 1.60475e-05 1.93627e-05 2.10995e-05 2.10995e-05 2.20034e-05 2.2394e-05 2.23941e-05 2.20035e-05 2.10996e-05 1.93712e-05 1.60536e-05 8.6249e-06 8.60618e-06 1.60461e-05 1.93625e-05 2.10997e-05 2.10997e-05 2.20038e-05 2.23945e-05 2.23945e-05 2.20039e-05 2.10999e-05 1.9371e-05 1.60521e-05 8.61282e-06 8.59485e-06 1.60447e-05 1.93623e-05 2.11e-05 2.11e-05 2.20042e-05 2.2395e-05 2.2395e-05 2.20043e-05 2.11001e-05 1.93708e-05 1.60506e-05 8.60061e-06 8.58345e-06 1.60433e-05 1.9362e-05 2.11002e-05 2.11002e-05 2.20046e-05 2.23954e-05 2.23955e-05 2.20047e-05 2.11003e-05 1.93706e-05 1.6049e-05 8.58829e-06 8.57198e-06 1.60418e-05 1.93618e-05 2.11004e-05 2.11004e-05 2.2005e-05 2.23959e-05 2.23959e-05 2.2005e-05 2.11005e-05 1.93703e-05 1.60474e-05 8.57588e-06 8.56044e-06 1.60404e-05 1.93616e-05 2.11006e-05 2.11006e-05 2.20054e-05 2.23964e-05 2.23964e-05 2.20054e-05 2.11007e-05 1.93701e-05 1.60459e-05 8.5634e-06 8.54888e-06 1.60389e-05 1.93613e-05 2.11008e-05 2.11008e-05 2.20057e-05 2.23968e-05 2.23968e-05 2.20058e-05 2.11009e-05 1.93699e-05 1.60443e-05 8.55087e-06 8.53729e-06 1.60374e-05 1.93611e-05 2.1101e-05 2.1101e-05 2.20061e-05 2.23972e-05 2.23972e-05 2.20062e-05 2.11011e-05 1.93696e-05 1.60427e-05 8.53835e-06 8.52564e-06 1.60359e-05 1.93608e-05 2.11012e-05 2.11012e-05 2.20065e-05 2.23977e-05 2.23977e-05 2.20065e-05 2.11013e-05 1.93694e-05 1.60412e-05 8.52577e-06 8.51403e-06 1.60344e-05 1.93605e-05 2.11014e-05 2.11014e-05 2.20068e-05 2.23981e-05 2.23981e-05 2.20069e-05 2.11015e-05 1.93692e-05 1.60396e-05 8.51319e-06 8.50247e-06 1.60329e-05 1.93603e-05 2.11016e-05 2.11016e-05 2.20072e-05 2.23985e-05 2.23985e-05 2.20072e-05 2.11016e-05 1.93689e-05 1.60381e-05 8.50065e-06 8.49097e-06 1.60315e-05 1.936e-05 2.11017e-05 2.11017e-05 2.20075e-05 2.23989e-05 2.23989e-05 2.20075e-05 2.11018e-05 1.93687e-05 1.60365e-05 8.48812e-06 8.47957e-06 1.60301e-05 1.93597e-05 2.11019e-05 2.11019e-05 2.20078e-05 2.23993e-05 2.23993e-05 2.20079e-05 2.11019e-05 1.93684e-05 1.60349e-05 8.47562e-06 8.46829e-06 1.60287e-05 1.93595e-05 2.11021e-05 2.11021e-05 2.20082e-05 2.23996e-05 2.23996e-05 2.20082e-05 2.11021e-05 1.93681e-05 1.60333e-05 8.46316e-06 8.45714e-06 1.60273e-05 1.93592e-05 2.11022e-05 2.11022e-05 2.20085e-05 2.24e-05 2.24e-05 2.20084e-05 2.11022e-05 1.93678e-05 1.60317e-05 8.45077e-06 8.44614e-06 1.60259e-05 1.9359e-05 2.11024e-05 2.11024e-05 2.20088e-05 2.24003e-05 2.24003e-05 2.20087e-05 2.11023e-05 1.93674e-05 1.603e-05 8.43848e-06 8.4353e-06 1.60246e-05 1.93587e-05 2.11025e-05 2.11025e-05 2.2009e-05 2.24007e-05 2.24007e-05 2.2009e-05 2.11023e-05 1.93671e-05 1.60283e-05 8.42632e-06 8.42464e-06 1.60232e-05 1.93585e-05 2.11026e-05 2.11026e-05 2.20093e-05 2.2401e-05 2.2401e-05 2.20092e-05 2.11024e-05 1.93667e-05 1.60267e-05 8.41434e-06 8.41418e-06 1.60219e-05 1.93582e-05 2.11027e-05 2.11027e-05 2.20095e-05 2.24013e-05 2.24013e-05 2.20094e-05 2.11024e-05 1.93663e-05 1.6025e-05 8.40258e-06 8.40396e-06 1.60206e-05 1.93579e-05 2.11028e-05 2.11028e-05 2.20098e-05 2.24016e-05 2.24015e-05 2.20096e-05 2.11025e-05 1.93659e-05 1.60233e-05 8.3911e-06 8.39383e-06 1.60192e-05 1.93576e-05 2.11028e-05 2.11028e-05 2.201e-05 2.24019e-05 2.24018e-05 2.20099e-05 2.11025e-05 1.93655e-05 1.60217e-05 8.37977e-06 8.38385e-06 1.60179e-05 1.93573e-05 2.11029e-05 2.11029e-05 2.20102e-05 2.24021e-05 2.24021e-05 2.20101e-05 2.11026e-05 1.93652e-05 1.60201e-05 8.36862e-06 8.37425e-06 1.60166e-05 1.9357e-05 2.1103e-05 2.1103e-05 2.20104e-05 2.24024e-05 2.24024e-05 2.20103e-05 2.11026e-05 1.93648e-05 1.60185e-05 8.3579e-06 8.36508e-06 1.60154e-05 1.93567e-05 2.1103e-05 2.1103e-05 2.20106e-05 2.24026e-05 2.24026e-05 2.20104e-05 2.11026e-05 1.93645e-05 1.60171e-05 8.34764e-06 8.35639e-06 1.60141e-05 1.93564e-05 2.1103e-05 2.1103e-05 2.20108e-05 2.24029e-05 2.24028e-05 2.20106e-05 2.11027e-05 1.93642e-05 1.60158e-05 8.33789e-06 8.34823e-06 1.6013e-05 1.93562e-05 2.11031e-05 2.11031e-05 2.20109e-05 2.24031e-05 2.2403e-05 2.20108e-05 2.11027e-05 1.93639e-05 1.60145e-05 8.32869e-06 8.34064e-06 1.60119e-05 1.93559e-05 2.11031e-05 2.11031e-05 2.20111e-05 2.24033e-05 2.24032e-05 2.20109e-05 2.11028e-05 1.93637e-05 1.60134e-05 8.32009e-06 8.33365e-06 1.60108e-05 1.93556e-05 2.11031e-05 2.11031e-05 2.20112e-05 2.24034e-05 2.24034e-05 2.20111e-05 2.11028e-05 1.93635e-05 1.60123e-05 8.31215e-06 8.32729e-06 1.60099e-05 1.93554e-05 2.11031e-05 2.11031e-05 2.20113e-05 2.24036e-05 2.24035e-05 2.20112e-05 2.11028e-05 1.93633e-05 1.60113e-05 8.3049e-06 8.3216e-06 1.6009e-05 1.93552e-05 2.11031e-05 2.11031e-05 2.20114e-05 2.24037e-05 2.24037e-05 2.20113e-05 2.11028e-05 1.93631e-05 1.60104e-05 8.2984e-06 8.31662e-06 1.60082e-05 1.93549e-05 2.11031e-05 2.11031e-05 2.20114e-05 2.24038e-05 2.24037e-05 2.20113e-05 2.11028e-05 1.93629e-05 1.60096e-05 8.29269e-06 8.31236e-06 1.60076e-05 1.93548e-05 2.1103e-05 2.1103e-05 2.20115e-05 2.24038e-05 2.24038e-05 2.20114e-05 2.11028e-05 1.93627e-05 1.60089e-05 8.2878e-06 8.30882e-06 1.6007e-05 1.93546e-05 2.1103e-05 2.1103e-05 2.20115e-05 2.24039e-05 2.24038e-05 2.20114e-05 2.11028e-05 1.93625e-05 1.60084e-05 8.28374e-06 8.30596e-06 1.60066e-05 1.93545e-05 2.1103e-05 2.1103e-05 2.20115e-05 2.24039e-05 2.24039e-05 2.20114e-05 2.11028e-05 1.93624e-05 1.60079e-05 8.28048e-06 8.30374e-06 1.60063e-05 1.93544e-05 2.11029e-05 2.11029e-05 2.20115e-05 2.24039e-05 2.24039e-05 2.20114e-05 2.11027e-05 1.93623e-05 1.60076e-05 8.27799e-06 8.30242e-06 1.60061e-05 1.93543e-05 2.11029e-05 2.11029e-05 2.20115e-05 2.24039e-05 2.24039e-05 2.20114e-05 2.11027e-05 1.93623e-05 1.60074e-05 8.27654e-06 ) ; } } // ************************************************************************* //
[ "815810395@qq.com" ]
815810395@qq.com
a08b2820cb5b91a550ba9fec296a09a556385544
b0dd7779c225971e71ae12c1093dc75ed9889921
/libs/math/test/nct_asym.ipp
cc5ae7a62f8663ac89d3a8b2e0bc2db984525203
[ "LicenseRef-scancode-warranty-disclaimer", "BSL-1.0" ]
permissive
blackberry/Boost
6e653cd91a7806855a162347a5aeebd2a8c055a2
fc90c3fde129c62565c023f091eddc4a7ed9902b
refs/heads/1_48_0-gnu
2021-01-15T14:31:33.706351
2013-06-25T16:02:41
2013-06-25T16:02:41
2,599,411
244
154
BSL-1.0
2018-10-13T18:35:09
2011-10-18T14:25:18
C++
UTF-8
C++
false
false
5,677
ipp
#ifndef SC_ # define SC_(x) static_cast<T>(BOOST_JOIN(x, L)) #endif static const boost::array<boost::array<T, 5>, 26> nct_asym = {{ {{ SC_(4536808851374080.0), SC_(0.45368087291717529296875), SC_(-0.481173217296600341796875), SC_(0.1749317497754352460810908541491372795891542325487), SC_(0.8250682502245647539189091458508627204108457674513) }}, {{ SC_(4536808851374080.0), SC_(0.45368087291717529296875), SC_(1.3978519439697265625), SC_(0.82745888213761221622777144575509830758765026825781), SC_(0.17254111786238778377222855424490169241234973174219) }}, {{ SC_(5677385198338048.0), SC_(0.56773853302001953125), SC_(-0.5258305072784423828125), SC_(0.13707201688604064907083148328658590547016675560101), SC_(0.86292798311395935092916851671341409452983324439899) }}, {{ SC_(5677385198338048.0), SC_(0.56773853302001953125), SC_(0.708383023738861083984375), SC_(0.55592460048261968604418681822217801676118984510485), SC_(0.44407539951738031395581318177782198323881015489515) }}, {{ SC_(19057916648620032.0), SC_(1.905791759490966796875), SC_(3.123167514801025390625), SC_(0.88826935840310006680843037482396692978657176631796), SC_(0.11173064159689993319156962517603307021342823368204) }}, {{ SC_(19057916648620032.0), SC_(1.905791759490966796875), SC_(3.3844356536865234375), SC_(0.93038224262142835995452986318222481740507172432515), SC_(0.069617757378571640045470136817775182594928275674854) }}, {{ SC_(36700173421772800.0), SC_(3.670017242431640625), SC_(4.6750431060791015625), SC_(0.84255780194329132905115240305424746317298104246855), SC_(0.15744219805670867094884759694575253682701895753145) }}, {{ SC_(36700173421772800.0), SC_(3.670017242431640625), SC_(5.042537689208984375), SC_(0.91504926091817108755289153804799207257503305462555), SC_(0.084950739081828912447108461952007927424966945374453) }}, {{ SC_(45079461342740480.0), SC_(4.507946014404296875), SC_(3.3889064788818359375), SC_(0.13156163646802619543156433884136170088487556815931), SC_(0.86843836353197380456843566115863829911512443184069) }}, {{ SC_(45079461342740480.0), SC_(4.507946014404296875), SC_(5.9973297119140625), SC_(0.93180682050435927369046460493686411555287073533266), SC_(0.068193179495640726309535395063135884447129264667335) }}, {{ SC_(157509421545553920.0), SC_(15.750942230224609375), SC_(17.14560699462890625), SC_(0.91844152246389020936377208106238904518645300898785), SC_(0.081558477536109790636227918937610954813546991012154) }}, {{ SC_(157509421545553920.0), SC_(15.750942230224609375), SC_(17.1575450897216796875), SC_(0.92022740765138483503818882082673489052943410104556), SC_(0.079772592348615164961811179173265109470565898954439) }}, {{ SC_(306140114898124800.0), SC_(30.614013671875), SC_(31.8541412353515625), SC_(0.89253589230213680868361632253582462638850083853234), SC_(0.10746410769786319131638367746417537361149916146766) }}, {{ SC_(306140114898124800.0), SC_(30.614013671875), SC_(32.01709747314453125), SC_(0.91970407450026572598532504589599032507374844769296), SC_(0.080295925499734274014674954104009674926251552307043) }}, {{ SC_(390730904542117888.0), SC_(39.073089599609375), SC_(38.045928955078125), SC_(0.15217241315852103004776349323469720103276253578469), SC_(0.84782758684147896995223650676530279896723746421531) }}, {{ SC_(390730904542117888.0), SC_(39.073089599609375), SC_(38.2361907958984375), SC_(0.20132472643110592660423913551748708698902279471476), SC_(0.79867527356889407339576086448251291301097720528524) }}, {{ SC_(1044709769224388608.0), SC_(104.470977783203125), SC_(104.8680572509765625), SC_(0.65434556985043816570960826185482905142969403857975), SC_(0.34565443014956183429039173814517094857030596142025) }}, {{ SC_(1044709769224388608.0), SC_(104.470977783203125), SC_(105.14849090576171875), SC_(0.75095977650749132960934905238656630719173158415557), SC_(0.24904022349250867039065094761343369280826841584443) }}, {{ SC_(1674453679643557888.0), SC_(167.44537353515625), SC_(166.869873046875), SC_(0.28247643026063070467278298745564297946418695359089), SC_(0.71752356973936929532721701254435702053581304640911) }}, {{ SC_(1674453679643557888.0), SC_(167.44537353515625), SC_(168.857147216796875), SC_(0.92099169494016061238522995952802645037178736022794), SC_(0.079008305059839387614770040471973549628212639772055) }}, {{ SC_(2809703283612975104.0), SC_(280.9703369140625), SC_(279.762969970703125), SC_(0.11364543011784098836896955307019184576823123795544), SC_(0.88635456988215901163103044692980815423176876204456) }}, {{ SC_(2809703283612975104.0), SC_(280.9703369140625), SC_(282.413665771484375), SC_(0.92553607281289461499104965729721028764390548597727), SC_(0.074463927187105385008950342702789712356094514022729) }}, {{ SC_(7921767423114477568.0), SC_(792.1767578125), SC_(792.31842041015625), SC_(0.5563267401667033086322021527186481547238720682263), SC_(0.4436732598332966913677978472813518452761279317737) }}, {{ SC_(7921767423114477568.0), SC_(792.1767578125), SC_(793.54827880859375), SC_(0.91489369852628004292795662749916567238372650186026), SC_(0.085106301473719957072043372500834327616273498139738) }}, {{ SC_(13091821180254420992.0), SC_(1309.18212890625), SC_(1308.01171875), SC_(0.12091797523015676375913420093212297337117969426545), SC_(0.87908202476984323624086579906787702662882030573455) }}, {{ SC_(13091821180254420992.0), SC_(1309.18212890625), SC_(1308.517578125), SC_(0.25316892936238242974380182772830364755920164172871), SC_(0.74683107063761757025619817227169635244079835827129) }} }}; //#undef SC_
[ "tvaneerd@rim.com" ]
tvaneerd@rim.com
e467ce7df058153fde0eb8b716a9a57cb259aa6b
6d5b51a61775364b7648d90295f9bb77855f1561
/NxC_2_1/BCDDecoder.cpp
975de7d40a7f5416e10e62d7077285fc36590930
[]
no_license
lemantisee/NixieClock
51e85d386bfdfdf86878781412be5ec85b37d80e
48ee8a0c45eeee183ec7a22218ad5cc343d153ea
refs/heads/master
2023-04-08T16:31:18.769267
2021-04-06T09:14:45
2021-04-06T09:14:45
355,126,435
0
0
null
null
null
null
UTF-8
C++
false
false
1,006
cpp
#include "BCDDecoder.h" BCDDecoder::BCDDecoder() { } BCDDecoder::~BCDDecoder() { } void BCDDecoder::init(GPIO_TypeDef *port, uint16_t Apin, uint16_t Bpin, uint16_t Cpin, uint16_t Dpin) { mport = port; mApin = Apin; mBpin = Bpin; mCpin = Cpin; mDpin = Dpin; GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitStructure.GPIO_Pin = mApin | mBpin | mCpin | mDpin; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(mport, &GPIO_InitStructure); //GPIO_WriteBit(mport, mApin | mBpin | mCpin | mDpin, Bit_RESET); } void BCDDecoder::setValue(uint8_t value) { uint16_t pinStatus = 0; if ((value & (1 << 0))) { pinStatus |= mApin; } if ((value & (1 << 1))) { pinStatus |= mBpin; } if ((value & (1 << 2))) { pinStatus |= mCpin; } if ((value & (1 << 3))) { pinStatus |= mDpin; } GPIO_WriteBit(mport, mApin | mBpin | mCpin | mDpin, Bit_RESET); GPIO_WriteBit(mport, pinStatus, Bit_SET); } void BCDDecoder::clear() { }
[ "kos.chernenok@gmail.com" ]
kos.chernenok@gmail.com
25fede5658d940640da9e13b78dd23e139ed4c89
170b2a192863dd995c45c51add91460cb7569c9f
/player/src/Components/Localization/AbstractLocalization.h
1f1cd548dc02036686165ffcb74fd54aacf4e1fb
[]
no_license
mdqyy/go2012
a3b06f082eabc4e7f6e1f6c6c480603553e477d4
4a847f70bc240ff48c684f2dafa41de4d9d8412b
refs/heads/master
2020-03-31T23:00:39.641808
2013-10-09T17:47:25
2013-10-09T17:47:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,937
h
#ifndef ABSTRACTLOCALIZATION_H #define ABSTRACTLOCALIZATION_H #include "Component.h" #include "image.h" #include "GameController.h" typedef struct { int id; double x,y,t; float prob; }tRobotHipothesis; typedef struct { float reliability; float x; float y; }PostInfo; typedef struct { long p0ElapsedTimeSinceLastObs; long p1ElapsedTimeSinceLastObs; PostInfo p0r; PostInfo p0l; PostInfo p1r; PostInfo p1l; }PerceptionInfo; typedef struct { float movx; float movy; float movt; }MotionInfo; class AbstractLocalization : public Component { public: AbstractLocalization(); ~AbstractLocalization(); virtual void init(const string newName, AL::ALPtr<AL::ALBroker> parentBroker) = 0; virtual void step() = 0; /*Get the reliability of the current localization*/ virtual float getReliability() = 0; /*Reset the localization algorithm depending on the gamestate*/ virtual void resetToPosition(int state) = 0; /*Reset the localization algorithm*/ void reset(); /*Get player color*/ int getPlayerColor(); /*Get the position of the robot calculated*/ virtual void getPosition(double &xpos, double &ypos, double &thetapos) = 0; /*Get the position of the robot calculated*/ virtual void getPosition(vector<tRobotHipothesis> &hipotheses) = 0; /*Get info about the current localization*/ virtual string getInfo() = 0; /*Get an image to debug the localization*/ //virtual ALValue getImgDebug() = 0; virtual bica::ImageDataPtr getImgDebug() = 0; //set the input virtual void setInfo(MotionInfo &motion, PerceptionInfo &perception) = 0; //Do all work virtual void run() = 0; static const int reset2Initial = 0; static const int reset2Ready = 1; static const int reset2Set = 2; static const int reset2Playing = 3; static const int resetFromPenalised = 4; static const int reset2Penalty = 5; protected: int resetLocalization; GameController * _GameController; }; #endif
[ "abellagonzalo@gmail.com" ]
abellagonzalo@gmail.com
629ff776965cb961eda0dc8724db27a19ae69fe4
f7919734befc3236d78b79b4263884ad31795989
/include/tensors.hpp
19b5fd63742c835e575d05ed78af7d99ea35e2e0
[]
no_license
marwage/Talulla
bbb53c22c585e07328bfb973a9bdbd85b8a10bd4
9fd77d868810c39e3d08d2f5a0034849e4deca8f
refs/heads/master
2023-06-17T02:12:14.076655
2021-07-06T06:07:36
2021-07-06T06:07:36
383,353,726
0
0
null
null
null
null
UTF-8
C++
false
false
2,901
hpp
// Copyright 2020 Marcel Wagenländer #ifndef TENSORS_H #define TENSORS_H #include <string> #include <vector> #include "cuda_helper.hpp" template<typename T> class Matrix { public: long num_rows_ = 0; long num_columns_ = 0; long size_ = 0; T *values_ = NULL; bool is_row_major_ = true; Matrix(); Matrix(long num_rows, long num_columns, bool is_row_major); void set(long num_rows, long num_columns, bool is_row_major); void set(long num_rows, long num_columns, T *matrix_values, bool is_row_major); void set_random_values(); void set_values(T value); ~Matrix(); }; template<typename T> class SparseMatrix { public: int num_rows_ = 0; int num_columns_ = 0; int nnz_ = 0; T *csr_val_ = NULL; int *csr_row_ptr_ = NULL; int *csr_col_ind_ = NULL; SparseMatrix(); SparseMatrix(int num_rows, int num_columns, int num_nnz, T *csr_val, int *csr_row_ptr, int *csr_col_ind); SparseMatrix(int num_rows, int num_columns, int num_nnz); void set(int num_rows, int num_columns, int num_nnz); ~SparseMatrix(); }; template<typename T> class SparseMatrixCuda { public: bool freed_ = false; int num_rows_ = 0; int num_columns_ = 0; int nnz_ = 0; T *csr_val_ = NULL; int *csr_row_ptr_ = NULL; int *csr_col_ind_ = NULL; SparseMatrixCuda(); void set(int num_rows, int num_columns, int num_nnz); void set(int num_rows, int num_columns, int num_nnz, T *csr_val, int *csr_row_ptr, int *csr_col_ind); void free(); ~SparseMatrixCuda(); }; template<typename T> void print_matrix(Matrix<T> *mat); template<typename T> void print_matrix_features(Matrix<T> *mat); template<typename T> Matrix<T> load_npy_matrix(std::string path); template<typename T> void load_npy_matrix(std::string path, Matrix<T> *mat); template<typename T> SparseMatrix<T> load_mtx_matrix(std::string path); template<typename T> void load_mtx_matrix(std::string path, SparseMatrix<T> *sp_mat); template<typename T> void save_npy_matrix(Matrix<T> *mat, std::string path); template<typename T> void save_npy_matrix_no_trans(Matrix<T> *mat, std::string path); template<typename T> void to_column_major(Matrix<T> *mat_col, Matrix<T> *mat); template<typename T> void to_row_major(Matrix<T> *mat_row, Matrix<T> *mat); template<typename T> void to_column_major_inplace(Matrix<T> *mat); template<typename T> void to_row_major_inplace(Matrix<T> *mat); void get_rows(SparseMatrix<float> *reduced_mat, SparseMatrix<float> *mat, int start_row, int end_row); void print_sparse_matrix(SparseMatrix<float> *mat); void sparse_to_dense_matrix(SparseMatrix<float> *sp_mat, Matrix<float> *mat); long count_nans(Matrix<float> *x); bool check_nans(Matrix<float> *x, std::string name); bool check_nans(std::vector<Matrix<float>> *x, std::string name); bool check_equality(Matrix<float> *a, Matrix<float> *b); #endif
[ "marcel.wagenlander19@imperial.ac.uk" ]
marcel.wagenlander19@imperial.ac.uk
be3ff412f72fa7f9f23fe3267895e6f386475c96
ff342f3d84d78415ca0cabc7039bc6d5bdba9668
/include/LXeTrackingAction.hh
d69117bb681d585b68bcaa06b22226c0beec3add
[]
no_license
nexo-erlangen/geant4_simulation
4d2ef9f2ef550f951f375d7ebdd7c094db0fe88b
cce565ab24c649c4a266d735c8e9e308129847b7
refs/heads/master
2021-01-22T05:46:50.874526
2017-05-30T13:10:10
2017-05-30T13:10:10
92,493,489
0
0
null
null
null
null
UTF-8
C++
false
false
518
hh
/// \file LXeTrackingAction.hh /// \brief Definition of the LXeTrackingAction class #ifndef LXeTrackingAction_h #define LXeTrackingAction_h 1 #include "globals.hh" #include "G4Track.hh" #include "G4UserTrackingAction.hh" #include "LXeAnalysis.hh" class LXeTrackingAction : public G4UserTrackingAction { public: LXeTrackingAction(); virtual ~LXeTrackingAction(); virtual void PreUserTrackingAction(const G4Track* track); virtual void PostUserTrackingAction(const G4Track* track); private: }; #endif
[ "mppi005h@woody3.rrze.uni-erlangen.de" ]
mppi005h@woody3.rrze.uni-erlangen.de
81016762cd04a2ad647b04af4301beb430100696
8b4240ff1d4cf637f6a05ef3a99dff2b636d77cb
/decoder.h
743c78effe4954aa849b3bf3114dae5683bb9250
[]
no_license
lauzi/ITCT_JPEG
91c774fb406bf9cb7e8d60df7b47332e4ab21193
34d9afdda75bab7415bc573a0544fbd783f7355a
refs/heads/master
2020-04-05T22:54:39.117515
2014-05-29T09:54:20
2014-05-29T09:54:20
19,780,878
1
0
null
null
null
null
UTF-8
C++
false
false
3,285
h
#ifndef DECODER_H #define DECODER_H #include <cstdio> #include <cstring> #include <string> #include "huffman.h" typedef unsigned char uint8; typedef unsigned short uint16; typedef char int8; typedef short int16; typedef unsigned int uint32; class BMPWriter { public: const int height, width; BMPWriter(int n_height, int n_width, const char *file_name): height(n_height), width(n_width), _bfr_len((3 * width + 3) / 4 * 4), _x(0), _out_bfr(NULL) { _OUT = fopen(file_name, "wb"); if (_OUT == NULL) throw "BMPWriter::Could not open output file"; _out_bfr = new uint8 [_bfr_len](); _write_header(); } ~BMPWriter() { fclose(_OUT); delete [] _out_bfr; } void write_pxl(double y, double cb, double cr); private: FILE *_OUT; const int _bfr_len; int _x; uint8 *_out_bfr; size_t _write(const void *ptr, size_t size, size_t count) { return fwrite(ptr, size, count, _OUT); } void _write_header(); }; class MCUArr { public: const int height, width; MCUArr (int n_height, int n_width): height(n_height), width(n_width), _mod(height-1) { for (int i = 0; i < height; ++i) _arr[i] = new double [width]; } ~MCUArr () { for (int i = 0; i < height; ++i) delete [] _arr[i]; } double& at(int y, int x) { return _arr[y&_mod][x]; } void clear(int y) { memset(_arr[y&_mod], 0, sizeof(double) * width); } private: const int _mod; double *_arr[64]; }; class Decoder { public: std::string in, out; Decoder (std::string i_in, std::string i_out): in(i_in), out(i_out), _IN(NULL), _bmp(NULL), _has_read_ff(false), _has_read_mark(false), _bfr(NULL), _DC_predict(0) {} ~Decoder () { _close_files(); delete _bmp; } bool solve(); /* --> x y| v */ static const int zigzag_x[]; static const int zigzag_y[]; private: FILE *_IN; BMPWriter *_bmp; bool _has_read_ff; bool _has_read_mark; uint8 _next_mark; uint8 *_bfr; int _bfr_idx; void _open_files(); void _close_files(); size_t _read(void *ptr, size_t size, size_t count); int _rseek(long int offset, int origin); uint16 _Y, _X; uint8 _cs[256]; uint8 _quantization_tables[4][8][8]; uint8 _H_sampling_factor[256]; uint8 _max_H; uint8 _V_sampling_factor[256]; uint8 _max_V; uint8 _Qtable_selector[256]; uint8 _Ns; uint8 _scan_component_selector[5]; uint8 _DC_Huffman_selector[5]; uint8 _AC_Huffman_selector[5]; uint8 _Nf; Huffman _hs[2][4]; int16 _DC_predict; uint32 *_hc_data; int _hc_bfr_idx; int _hc_i; Huffman *_hc_DC, *_hc_AC; void _SOF0(); void _DHT(); void _SOS(); void _DQT(); void _DRI(); bool _read_next_header(); int _read_Huffman(Huffman *h); int16 _read_DC(); int16 _read_AC(int &zz_idx); int _read_n_bits(int n); void _read_entropy_bytes(); void _read_entropy_block(uint8 c, double out_block[8][8]); void _read_entropy_data(); }; #endif
[ "st61112@gmail.com" ]
st61112@gmail.com
fe27997206a8ce678030274e29475b6ab4d4712d
0bb6e673807a598b2879a7ed9b6a4d81ab2b07e2
/src/qt/overviewpage.cpp
84a795d4b1b5609ff58d5be08212c4bcfac08b19
[ "MIT" ]
permissive
NodeCommunity/Node
727b27af3cab9e007b8d932c0258688835f1cb3d
448a785a11ec2911327c82bc0abe82f8a88c3a96
refs/heads/master
2020-07-02T23:16:59.853577
2019-08-17T17:40:48
2019-08-17T17:40:48
196,918,415
0
0
null
null
null
null
UTF-8
C++
false
false
12,237
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "overviewpage.h" #include "ui_overviewpage.h" #include "bitcoinunits.h" #include "clientmodel.h" #include "guiconstants.h" #include "guiutil.h" #include "init.h" #include "optionsmodel.h" #include "transactionfilterproxy.h" #include "transactionrecord.h" #include "transactiontablemodel.h" #include "walletmodel.h" #include <QAbstractItemDelegate> #include <QPainter> #include <QSettings> #include <QTimer> #define DECORATION_SIZE 48 #define ICON_OFFSET 16 #define NUM_ITEMS 9 extern CWallet* pwalletMain; class TxViewDelegate : public QAbstractItemDelegate { Q_OBJECT public: TxViewDelegate() : QAbstractItemDelegate(), unit(BitcoinUnits::NOD) { } inline void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const { painter->save(); QIcon icon = qvariant_cast<QIcon>(index.data(Qt::DecorationRole)); QRect mainRect = option.rect; mainRect.moveLeft(ICON_OFFSET); QRect decorationRect(mainRect.topLeft(), QSize(DECORATION_SIZE, DECORATION_SIZE)); int xspace = DECORATION_SIZE + 8; int ypad = 6; int halfheight = (mainRect.height() - 2 * ypad) / 2; QRect amountRect(mainRect.left() + xspace, mainRect.top() + ypad, mainRect.width() - xspace - ICON_OFFSET, halfheight); QRect addressRect(mainRect.left() + xspace, mainRect.top() + ypad + halfheight, mainRect.width() - xspace, halfheight); icon.paint(painter, decorationRect); QDateTime date = index.data(TransactionTableModel::DateRole).toDateTime(); QString address = index.data(Qt::DisplayRole).toString(); qint64 amount = index.data(TransactionTableModel::AmountRole).toLongLong(); bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool(); // Check transaction status int nStatus = index.data(TransactionTableModel::StatusRole).toInt(); bool fConflicted = false; if (nStatus == TransactionStatus::Conflicted || nStatus == TransactionStatus::NotAccepted) { fConflicted = true; // Most probably orphaned, but could have other reasons as well } bool fImmature = false; if (nStatus == TransactionStatus::Immature) { fImmature = true; } QVariant value = index.data(Qt::ForegroundRole); QColor foreground = COLOR_BLACK; if (value.canConvert<QBrush>()) { QBrush brush = qvariant_cast<QBrush>(value); foreground = brush.color(); } painter->setPen(foreground); QRect boundingRect; painter->drawText(addressRect, Qt::AlignLeft | Qt::AlignVCenter, address, &boundingRect); if (index.data(TransactionTableModel::WatchonlyRole).toBool()) { QIcon iconWatchonly = qvariant_cast<QIcon>(index.data(TransactionTableModel::WatchonlyDecorationRole)); QRect watchonlyRect(boundingRect.right() + 5, mainRect.top() + ypad + halfheight, 16, halfheight); iconWatchonly.paint(painter, watchonlyRect); } if(fConflicted) { // No need to check anything else for conflicted transactions foreground = COLOR_CONFLICTED; } else if (!confirmed || fImmature) { foreground = COLOR_UNCONFIRMED; } else if (amount < 0) { foreground = COLOR_NEGATIVE; } else { foreground = COLOR_BLACK; } painter->setPen(foreground); QString amountText = BitcoinUnits::formatWithUnit(unit, amount, true, BitcoinUnits::separatorNever); if (!confirmed) { amountText = QString("[") + amountText + QString("]"); } painter->drawText(amountRect, Qt::AlignRight | Qt::AlignVCenter, amountText); painter->setPen(COLOR_BLACK); painter->drawText(amountRect, Qt::AlignLeft | Qt::AlignVCenter, GUIUtil::dateTimeStr(date)); painter->restore(); } inline QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const { return QSize(DECORATION_SIZE, DECORATION_SIZE); } int unit; }; #include "overviewpage.moc" OverviewPage::OverviewPage(QWidget* parent) : QWidget(parent), ui(new Ui::OverviewPage), clientModel(0), walletModel(0), currentBalance(-1), currentUnconfirmedBalance(-1), currentImmatureBalance(-1), currentWatchOnlyBalance(-1), currentWatchUnconfBalance(-1), currentWatchImmatureBalance(-1), txdelegate(new TxViewDelegate()), filter(0) { nDisplayUnit = 0; // just make sure it's not unitialized ui->setupUi(this); // Recent transactions ui->listTransactions->setItemDelegate(txdelegate); ui->listTransactions->setIconSize(QSize(DECORATION_SIZE, DECORATION_SIZE)); ui->listTransactions->setMinimumHeight(NUM_ITEMS * (DECORATION_SIZE + 2)); ui->listTransactions->setAttribute(Qt::WA_MacShowFocusRect, false); connect(ui->listTransactions, SIGNAL(clicked(QModelIndex)), this, SLOT(handleTransactionClicked(QModelIndex))); // init "out of sync" warning labels ui->labelWalletStatus->setText("(" + tr("out of sync") + ")"); ui->labelTransactionsStatus->setText("(" + tr("out of sync") + ")"); // start with displaying the "out of sync" warnings showOutOfSyncWarning(true); } void OverviewPage::handleTransactionClicked(const QModelIndex& index) { if (filter) emit transactionClicked(filter->mapToSource(index)); } OverviewPage::~OverviewPage() { delete ui; } void OverviewPage::setBalance(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance, const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance) { currentBalance = balance; currentUnconfirmedBalance = unconfirmedBalance; currentImmatureBalance = immatureBalance; currentWatchOnlyBalance = watchOnlyBalance; currentWatchUnconfBalance = watchUnconfBalance; currentWatchImmatureBalance = watchImmatureBalance; // NOD labels ui->labelBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance - immatureBalance, false, BitcoinUnits::separatorNever)); ui->labelUnconfirmed->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, unconfirmedBalance, false, BitcoinUnits::separatorNever)); ui->labelImmature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, immatureBalance, false, BitcoinUnits::separatorNever)); ui->labelTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance + unconfirmedBalance, false, BitcoinUnits::separatorNever)); // Watchonly labels ui->labelWatchAvailable->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchOnlyBalance, false, BitcoinUnits::separatorNever)); ui->labelWatchPending->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchUnconfBalance, false, BitcoinUnits::separatorNever)); ui->labelWatchImmature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchImmatureBalance, false, BitcoinUnits::separatorNever)); ui->labelWatchTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchOnlyBalance + watchUnconfBalance + watchImmatureBalance, false, BitcoinUnits::separatorNever)); // only show immature (newly mined) balance if it's non-zero, so as not to complicate things // for the non-mining users bool showImmature = immatureBalance != 0; bool showWatchOnlyImmature = watchImmatureBalance != 0; // for symmetry reasons also show immature label when the watch-only one is shown ui->labelImmature->setVisible(showImmature || showWatchOnlyImmature); ui->labelImmatureText->setVisible(showImmature || showWatchOnlyImmature); ui->labelWatchImmature->setVisible(showWatchOnlyImmature); // show watch-only immature balance static int cachedTxLocks = 0; if (cachedTxLocks != nCompleteTXLocks) { cachedTxLocks = nCompleteTXLocks; ui->listTransactions->update(); } } // show/hide watch-only labels void OverviewPage::updateWatchOnlyLabels(bool showWatchOnly) { ui->labelSpendable->setVisible(showWatchOnly); // show spendable label (only when watch-only is active) ui->labelWatchonly->setVisible(showWatchOnly); // show watch-only label ui->labelWatchAvailable->setVisible(showWatchOnly); // show watch-only available balance ui->labelWatchPending->setVisible(showWatchOnly); // show watch-only pending balance ui->labelWatchTotal->setVisible(showWatchOnly); // show watch-only total balance if (!showWatchOnly) { ui->labelWatchImmature->hide(); } else { ui->labelBalance->setIndent(20); ui->labelUnconfirmed->setIndent(20); ui->labelImmature->setIndent(20); ui->labelTotal->setIndent(20); } } void OverviewPage::setClientModel(ClientModel* model) { this->clientModel = model; if (model) { // Show warning if this is a prerelease version connect(model, SIGNAL(alertsChanged(QString)), this, SLOT(updateAlerts(QString))); updateAlerts(model->getStatusBarWarnings()); } } void OverviewPage::setWalletModel(WalletModel* model) { this->walletModel = model; if (model && model->getOptionsModel()) { // Set up transaction list filter = new TransactionFilterProxy(); filter->setSourceModel(model->getTransactionTableModel()); filter->setLimit(NUM_ITEMS); filter->setDynamicSortFilter(true); filter->setSortRole(Qt::EditRole); filter->setShowInactive(false); filter->sort(TransactionTableModel::Date, Qt::DescendingOrder); ui->listTransactions->setModel(filter); ui->listTransactions->setModelColumn(TransactionTableModel::ToAddress); // Keep up to date with wallet setBalance(model->getBalance(), model->getUnconfirmedBalance(), model->getImmatureBalance(), model->getWatchBalance(), model->getWatchUnconfirmedBalance(), model->getWatchImmatureBalance()); connect(model, SIGNAL(balanceChanged(CAmount, CAmount, CAmount, CAmount, CAmount, CAmount)), this, SLOT(setBalance(CAmount, CAmount, CAmount, CAmount, CAmount, CAmount))); connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); updateWatchOnlyLabels(model->haveWatchOnly()); connect(model, SIGNAL(notifyWatchonlyChanged(bool)), this, SLOT(updateWatchOnlyLabels(bool))); } // update the display unit, to not use the default ("NOD") updateDisplayUnit(); } void OverviewPage::updateDisplayUnit() { if (walletModel && walletModel->getOptionsModel()) { nDisplayUnit = walletModel->getOptionsModel()->getDisplayUnit(); if (currentBalance != -1) setBalance(currentBalance, currentUnconfirmedBalance, currentImmatureBalance, currentWatchOnlyBalance, currentWatchUnconfBalance, currentWatchImmatureBalance); // Update txdelegate->unit with the current unit txdelegate->unit = nDisplayUnit; ui->listTransactions->update(); } } void OverviewPage::updateAlerts(const QString& warnings) { this->ui->labelAlerts->setVisible(!warnings.isEmpty()); this->ui->labelAlerts->setText(warnings); } void OverviewPage::showOutOfSyncWarning(bool fShow) { ui->labelWalletStatus->setVisible(fShow); ui->labelTransactionsStatus->setVisible(fShow); }
[ "falcon@gmail.com" ]
falcon@gmail.com
d5d8bc13f348288df81233a0860250c5456f7bb4
88ae8695987ada722184307301e221e1ba3cc2fa
/chromeos/components/kcer/kcer_impl.cc
b83f6d41cb22f9bb47b81efcd14dedb89e551885
[ "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
20,058
cc
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chromeos/components/kcer/kcer_impl.h" #include <stdint.h> #include <string> #include <utility> #include <vector> #include "base/callback_list.h" #include "base/containers/flat_set.h" #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "base/task/bind_post_task.h" #include "base/task/task_runner.h" #include "base/types/expected.h" #include "chromeos/components/kcer/kcer.h" #include "chromeos/components/kcer/kcer_token.h" #include "chromeos/components/kcer/token_key_finder.h" #include "chromeos/components/kcer/token_results_merger.h" #include "net/cert/x509_certificate.h" namespace kcer::internal { KcerImpl::KcerImpl(scoped_refptr<base::TaskRunner> token_task_runner, base::WeakPtr<KcerToken> user_token, base::WeakPtr<KcerToken> device_token) : token_task_runner_(std::move(token_task_runner)), user_token_(std::move(user_token)), device_token_(std::move(device_token)) {} KcerImpl::~KcerImpl() = default; base::CallbackListSubscription KcerImpl::AddObserver( base::RepeatingClosure callback) { // TODO(244408716): Implement. return {}; } void KcerImpl::GenerateRsaKey(Token token, uint32_t modulus_length_bits, bool hardware_backed, GenerateKeyCallback callback) { const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::GenerateRsaKey, kcer_token, modulus_length_bits, hardware_backed, base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::GenerateEcKey(Token token, EllipticCurve curve, bool hardware_backed, GenerateKeyCallback callback) { const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::GenerateEcKey, kcer_token, curve, hardware_backed, base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::ImportKey(Token token, Pkcs8PrivateKeyInfoDer pkcs8_private_key_info_der, ImportKeyCallback callback) { const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::ImportKey, kcer_token, std::move(pkcs8_private_key_info_der), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::ImportCertFromBytes(Token token, CertDer cert_der, StatusCallback callback) { const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::ImportCertFromBytes, kcer_token, std::move(cert_der), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::ImportX509Cert(Token token, scoped_refptr<net::X509Certificate> cert, StatusCallback callback) { if (!cert) { return std::move(callback).Run( base::unexpected(Error::kInvalidCertificate)); } const CRYPTO_BUFFER* buffer = cert->cert_buffer(); CertDer cert_der(std::vector<uint8_t>( CRYPTO_BUFFER_data(buffer), CRYPTO_BUFFER_data(buffer) + CRYPTO_BUFFER_len(buffer))); return ImportCertFromBytes(token, std::move(cert_der), std::move(callback)); } void KcerImpl::ImportPkcs12Cert(Token token, Pkcs12Blob pkcs12_blob, std::string password, bool hardware_backed, StatusCallback callback) { // TODO(244408716): Implement. } void KcerImpl::ExportPkcs12Cert(scoped_refptr<const Cert> cert, ExportPkcs12Callback callback) { // TODO(244408716): Implement. } void KcerImpl::RemoveKeyAndCerts(PrivateKeyHandle key, StatusCallback callback) { // TODO(244408716): Implement. } void KcerImpl::RemoveCert(scoped_refptr<const Cert> cert, StatusCallback callback) { if (!cert) { return std::move(callback).Run( base::unexpected(Error::kInvalidCertificate)); } const base::WeakPtr<KcerToken>& kcer_token = GetToken(cert->GetToken()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::RemoveCert, kcer_token, std::move(cert), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::ListKeys(base::flat_set<Token> tokens, ListKeysCallback callback) { if (tokens.empty()) { return std::move(callback).Run(/*certs=*/{}, /*errors=*/{}); } scoped_refptr<TokenResultsMerger<PublicKey>> merger = internal::TokenResultsMerger<PublicKey>::Create( /*results_to_receive=*/tokens.size(), std::move(callback)); for (Token token : tokens) { auto callback_for_token = merger->GetCallback(token); const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { std::move(callback_for_token) .Run(base::unexpected(Error::kTokenIsNotAvailable)); } else { token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::ListKeys, kcer_token, base::BindPostTaskToCurrentDefault( std::move(callback_for_token)))); } } } void KcerImpl::ListCerts(base::flat_set<Token> tokens, ListCertsCallback callback) { if (tokens.empty()) { return std::move(callback).Run(/*certs=*/{}, /*errors=*/{}); } scoped_refptr<TokenResultsMerger<scoped_refptr<const Cert>>> merger = TokenResultsMerger<scoped_refptr<const Cert>>::Create( /*results_to_receive=*/tokens.size(), std::move(callback)); for (Token token : tokens) { auto callback_for_token = merger->GetCallback(token); const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { std::move(callback_for_token) .Run(base::unexpected(Error::kTokenIsNotAvailable)); } else { token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::ListCerts, kcer_token, base::BindPostTaskToCurrentDefault( std::move(callback_for_token)))); } } } void KcerImpl::DoesPrivateKeyExist(PrivateKeyHandle key, DoesKeyExistCallback callback) { if (key.GetTokenInternal().has_value()) { const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce( &KcerToken::DoesPrivateKeyExist, kcer_token, std::move(key), base::BindPostTaskToCurrentDefault(std::move(callback)))); return; } auto on_find_key_done = base::BindOnce(&KcerImpl::DoesPrivateKeyExistWithToken, weak_factory_.GetWeakPtr(), std::move(callback)); return FindKeyToken(/*allow_guessing=*/false, /*key=*/std::move(key), std::move(on_find_key_done)); } void KcerImpl::DoesPrivateKeyExistWithToken( DoesKeyExistCallback callback, base::expected<absl::optional<Token>, Error> find_key_result) { if (!find_key_result.has_value()) { return std::move(callback).Run(base::unexpected(find_key_result.error())); } const absl::optional<Token>& token = find_key_result.value(); return std::move(callback).Run(token.has_value()); } void KcerImpl::Sign(PrivateKeyHandle key, SigningScheme signing_scheme, DataToSign data, SignCallback callback) { if (key.GetTokenInternal().has_value()) { return SignWithToken(signing_scheme, std::move(data), std::move(callback), std::move(key)); } auto on_find_key_done = base::BindOnce(&KcerImpl::SignWithToken, weak_factory_.GetWeakPtr(), signing_scheme, std::move(data), std::move(callback)); return PopulateTokenForKey(std::move(key), std::move(on_find_key_done)); } void KcerImpl::SignWithToken( SigningScheme signing_scheme, DataToSign data, SignCallback callback, base::expected<PrivateKeyHandle, Error> key_or_error) { if (!key_or_error.has_value()) { return std::move(callback).Run(base::unexpected(key_or_error.error())); } PrivateKeyHandle key = std::move(key_or_error).value(); const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::Sign, kcer_token, std::move(key), signing_scheme, std::move(data), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::SignRsaPkcs1Raw(PrivateKeyHandle key, DigestWithPrefix digest_with_prefix, SignCallback callback) { if (key.GetTokenInternal().has_value()) { return SignRsaPkcs1RawWithToken(std::move(digest_with_prefix), std::move(callback), std::move(key)); } auto on_find_key_done = base::BindOnce( &KcerImpl::SignRsaPkcs1RawWithToken, weak_factory_.GetWeakPtr(), std::move(digest_with_prefix), std::move(callback)); return PopulateTokenForKey(std::move(key), std::move(on_find_key_done)); } void KcerImpl::SignRsaPkcs1RawWithToken( DigestWithPrefix digest_with_prefix, SignCallback callback, base::expected<PrivateKeyHandle, Error> key_or_error) { if (!key_or_error.has_value()) { return std::move(callback).Run(base::unexpected(key_or_error.error())); } PrivateKeyHandle key = std::move(key_or_error).value(); const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::SignRsaPkcs1Raw, kcer_token, std::move(key), std::move(digest_with_prefix), base::BindPostTaskToCurrentDefault(std::move(callback)))); } base::flat_set<Token> KcerImpl::GetAvailableTokens() { base::flat_set<Token> result; if (user_token_.MaybeValid()) { result.insert(Token::kUser); } if (device_token_.MaybeValid()) { result.insert(Token::kDevice); } return result; } void KcerImpl::GetTokenInfo(Token token, GetTokenInfoCallback callback) { const base::WeakPtr<KcerToken>& kcer_token = GetToken(token); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::GetTokenInfo, kcer_token, base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::GetKeyInfo(PrivateKeyHandle key, GetKeyInfoCallback callback) { if (key.GetTokenInternal().has_value()) { return GetKeyInfoWithToken(std::move(callback), std::move(key)); } auto on_find_key_done = base::BindOnce(&KcerImpl::GetKeyInfoWithToken, weak_factory_.GetWeakPtr(), std::move(callback)); return PopulateTokenForKey(std::move(key), std::move(on_find_key_done)); } void KcerImpl::GetKeyInfoWithToken( GetKeyInfoCallback callback, base::expected<PrivateKeyHandle, Error> key_or_error) { if (!key_or_error.has_value()) { return std::move(callback).Run(base::unexpected(key_or_error.error())); } PrivateKeyHandle key = std::move(key_or_error).value(); const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::GetKeyInfo, kcer_token, std::move(key), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::SetKeyNickname(PrivateKeyHandle key, std::string nickname, StatusCallback callback) { if (key.GetTokenInternal().has_value()) { return SetKeyNicknameWithToken(std::move(nickname), std::move(callback), std::move(key)); } auto on_token_populated = base::BindOnce( &KcerImpl::SetKeyNicknameWithToken, weak_factory_.GetWeakPtr(), std::move(nickname), std::move(callback)); return PopulateTokenForKey(std::move(key), std::move(on_token_populated)); } void KcerImpl::SetKeyNicknameWithToken( std::string nickname, StatusCallback callback, base::expected<PrivateKeyHandle, Error> key_or_error) { if (!key_or_error.has_value()) { return std::move(callback).Run(base::unexpected(key_or_error.error())); } PrivateKeyHandle key = std::move(key_or_error).value(); const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::SetKeyNickname, kcer_token, std::move(key), std::move(nickname), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::SetKeyPermissions(PrivateKeyHandle key, chaps::KeyPermissions key_permissions, StatusCallback callback) { if (key.GetTokenInternal().has_value()) { return SetKeyPermissionsWithToken(std::move(key_permissions), std::move(callback), std::move(key)); } auto on_find_key_done = base::BindOnce( &KcerImpl::SetKeyPermissionsWithToken, weak_factory_.GetWeakPtr(), std::move(key_permissions), std::move(callback)); return PopulateTokenForKey(std::move(key), std::move(on_find_key_done)); } void KcerImpl::SetKeyPermissionsWithToken( chaps::KeyPermissions key_permissions, StatusCallback callback, base::expected<PrivateKeyHandle, Error> key_or_error) { if (!key_or_error.has_value()) { return std::move(callback).Run(base::unexpected(key_or_error.error())); } PrivateKeyHandle key = std::move(key_or_error).value(); const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::SetKeyPermissions, kcer_token, std::move(key), std::move(key_permissions), base::BindPostTaskToCurrentDefault(std::move(callback)))); } void KcerImpl::SetCertProvisioningProfileId(PrivateKeyHandle key, std::string profile_id, StatusCallback callback) { if (key.GetTokenInternal().has_value()) { return SetCertProvisioningProfileIdWithToken( std::move(profile_id), std::move(callback), std::move(key)); } auto on_find_key_done = base::BindOnce( &KcerImpl::SetCertProvisioningProfileIdWithToken, weak_factory_.GetWeakPtr(), std::move(profile_id), std::move(callback)); return PopulateTokenForKey(std::move(key), std::move(on_find_key_done)); } void KcerImpl::SetCertProvisioningProfileIdWithToken( std::string profile_id, StatusCallback callback, base::expected<PrivateKeyHandle, Error> key_or_error) { if (!key_or_error.has_value()) { return std::move(callback).Run(base::unexpected(key_or_error.error())); } PrivateKeyHandle key = std::move(key_or_error).value(); const base::WeakPtr<KcerToken>& kcer_token = GetToken(key.GetTokenInternal().value()); if (!kcer_token.MaybeValid()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::SetCertProvisioningProfileId, kcer_token, std::move(key), std::move(profile_id), base::BindPostTaskToCurrentDefault(std::move(callback)))); } base::WeakPtr<internal::KcerToken>& KcerImpl::GetToken(Token token) { switch (token) { case Token::kUser: return user_token_; case Token::kDevice: return device_token_; } } void KcerImpl::FindKeyToken( bool allow_guessing, PrivateKeyHandle key, base::OnceCallback<void(base::expected<absl::optional<Token>, Error>)> callback) { base::flat_set<Token> tokens = GetAvailableTokens(); if (tokens.empty()) { return std::move(callback).Run( base::unexpected(Error::kTokenIsNotAvailable)); } if (allow_guessing && (tokens.size() == 1)) { return std::move(callback).Run(*tokens.begin()); } auto key_finder = TokenKeyFinder::Create( /*results_to_receive=*/tokens.size(), std::move(callback)); for (Token token : tokens) { auto token_callback = base::BindPostTaskToCurrentDefault(key_finder->GetCallback(token)); token_task_runner_->PostTask( FROM_HERE, base::BindOnce(&KcerToken::DoesPrivateKeyExist, GetToken(token), key, std::move(token_callback))); } } void KcerImpl::PopulateTokenForKey( PrivateKeyHandle key, base::OnceCallback<void(base::expected<PrivateKeyHandle, Error>)> callback) { auto on_find_key_done = base::BindOnce(&KcerImpl::PopulateTokenForKeyWithToken, weak_factory_.GetWeakPtr(), key, std::move(callback)); FindKeyToken(/*allow_guessing=*/true, /*key=*/std::move(key), std::move(on_find_key_done)); } void KcerImpl::PopulateTokenForKeyWithToken( PrivateKeyHandle key, base::OnceCallback<void(base::expected<PrivateKeyHandle, Error>)> callback, base::expected<absl::optional<Token>, Error> find_key_result) { if (!find_key_result.has_value()) { return std::move(callback).Run(base::unexpected(find_key_result.error())); } if (!find_key_result.value().has_value()) { return std::move(callback).Run(base::unexpected(Error::kKeyNotFound)); } Token token = find_key_result.value().value(); return std::move(callback).Run(PrivateKeyHandle(token, std::move(key))); } } // namespace kcer::internal
[ "jengelh@inai.de" ]
jengelh@inai.de
5b3a51f6c018ff942d3ba17d0e894efd55b954ac
3a1171f55678572e874fb54cb4cccfaa4fbb8319
/Being-Zero/Binary-Search/sum-pair.cpp
b7110deb1f0feb5317b5d0fed45247d4064d99ec
[]
no_license
FaryalAjradh/Code-Practice
8a946dbde2d08f245374d02d226b76cac20fd46c
0ecf246d29aa4125067f28e58c6d40c7c7dd5591
refs/heads/master
2023-07-10T03:50:52.597979
2021-08-11T11:55:52
2021-08-11T11:55:52
281,604,753
1
0
null
null
null
null
UTF-8
C++
false
false
1,207
cpp
// Given an array of integers and a number K, check if there exist a pair of indices i,j s.t. a[i] + a[j] = K and i!=j. #include<bits/stdc++.h> using namespace std; typedef long long int ll; // Naive Approach void doesPairExist(int *arr, int n, int k) { for(int i = 0; i < n; i++) { for(int j = i + 1; j < n; j++) { if(arr[i] + arr[j] == k) { cout << "True" << endl; return; } } } cout << "False" << endl; return; } void doesPairExist(int *arr, int n, int k) { int low = 0, high = n - 1, mid; sort(arr, arr + n); while(low < high) { if(arr[low] + arr[high] == k) { cout << "True" << endl; return; } else if(k < arr[low] + arr[high]) high--; else low++; } cout << "False" << endl; return; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int t; cin >> t; // cin.ignore(); while(t--) { int n, k; cin >> n >> k; int arr[n]; for(int i = 0; i < n; i++) cin >> arr[i]; doesPairExist(arr, n, k); } return 0; }
[ "ajradfariyal@gmail.com" ]
ajradfariyal@gmail.com
3e0f4586a67cc630aeab9dcafc616f0440a59861
3d997531798d7eba72627576fe18bb055049d8e0
/egami/wrapperEDF.cpp
c7c88e7ad04383a805b761ee9e4f36b6feafbdba
[ "Apache-2.0" ]
permissive
chagge/egami
a6452e584eb0f36ad05a936906d7d7a48f427a84
f88b8e8e92abbb7188e267fb90cf304eaa7c846e
refs/heads/master
2020-12-11T03:35:56.989657
2015-05-08T20:36:40
2015-05-08T20:36:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,540
cpp
/** * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved * * @license APACHE v2.0 (see license file) */ #include <etk/types.h> #include <egami/debug.h> #include <egami/Image.h> #include <egami/wrapperEDF.h> #include <etk/os/FSNode.h> #undef __class__ #define __class__ "wrapperEDF" //EDF format is a simple format for image in text for distance field image (special case) // it is composed of the fist line : description of type (starting with #EDF and some other information, the data start just after the first \n bool egami::loadEDF(const std::string& _inputFile, egami::Image& _ouputImage) { etk::FSNode file(_inputFile); if (false == file.exist()) { EGAMI_ERROR("File does not existed='" << file << "'"); return false; } if(false == file.fileOpenRead() ) { EGAMI_ERROR("Can not find the file name='" << file << "'"); return false; } std::string line; file.fileGets(line); if (etk::start_with(line, "#edf", false) == false) { EGAMI_ERROR("This file seams not to be a EDF file ..."); file.fileClose(); return false; } // count number of colomn max an number of line max: ivec2 size(0,0); while (file.fileGets(line) == true) { if (line.size()/2 > (size_t)size.x()) { size.setValue(line.size()/2, size.y()+1); } else { size += ivec2(0,1); } } if (line.size()/2 > (size_t)size.x()) { size.setValue(line.size()/2, size.y()+1); } else { size += ivec2(0,1); } EGAMI_DEBUG("'" << file << "' ==> size=" << size); // jup to the start of the file file.fileSeek(0, etk::FSN_SEEK_START); // drop the first line file.fileGets(line); // resize output: _ouputImage.resize(size); int32_t currentLineId = 0; char tmp[3]; tmp[2] = '\0'; while (file.fileGets(line) == true) { if (line.size() <= 0) { continue; } for (size_t xxx = 0; xxx < line.size()-1; xxx+=2) { tmp[0] = line[xxx]; tmp[1] = line[xxx+1]; int32_t val = 0; sscanf(tmp, "%x", &val); _ouputImage.set(ivec2(xxx/2, currentLineId), etk::Color<>((uint8_t)val, (uint8_t)val, (uint8_t)val, (uint8_t)val)); } ++currentLineId; } if (line.size() > 0) { for (size_t xxx = 0; xxx < line.size()-1; xxx+=2) { tmp[0] = line[xxx]; tmp[1] = line[xxx+1]; int32_t val = 0; sscanf(tmp, "%x", &val); _ouputImage.set(ivec2(xxx/2, currentLineId), etk::Color<>((uint8_t)val, (uint8_t)val, (uint8_t)val, (uint8_t)val)); } } file.fileClose(); return true; } bool egami::storeEDF(const std::string& _fileName, const egami::Image& _inputImage) { bool anErrorEccured = false; etk::FSNode file(_fileName); if (file.fileOpenWrite() == false) { EGAMI_ERROR("Can not find the file name=\"" << file << "\""); return false; } anErrorEccured = file.filePuts( std::string("#EDF // Generate with EGAMI (") + etk::to_string(_inputImage.getSize().x()) + "," + etk::to_string(_inputImage.getSize().y()) + ")\n"); char tmp[256]; for (int32_t yyy = 0; yyy < _inputImage.getSize().y(); ++yyy) { if (yyy != 0) { if (file.filePut('\n') == false) { anErrorEccured = false; } } for (int32_t xxx = 0; xxx < _inputImage.getSize().x(); ++xxx) { sprintf(tmp, "%02X", _inputImage.get(ivec2(xxx, yyy)).a()); /* if (yyy == 25) { EGAMI_DEBUG(" set : " << _inputImage.get(ivec2(xxx, yyy)) << " : '" << tmp << "'"); } */ if (file.filePuts(tmp) == false) { anErrorEccured = false; } } } file.fileClose(); return anErrorEccured; }
[ "yui.heero@gmail.com" ]
yui.heero@gmail.com
a2bd03b9c1b7fce3dfe795db4a7b4f02acfc00f1
83e3e0e245c5cb1c37d8b3856d92e4729dd5ab18
/tournament/summaryProficiency.cpp
8d89326632b290940a0377403ff2a716e33f3838
[]
no_license
madukubah/codefight
e829cce3593a7e4a7abc5b770810c0dd918c32a3
85d892bce54f0e2bddca0164f526a0def8907d30
refs/heads/master
2020-08-22T04:31:29.384953
2019-10-20T06:30:20
2019-10-20T06:30:20
216,317,544
1
0
null
null
null
null
UTF-8
C++
false
false
1,376
cpp
/* A number of people are applying for a place in some team. Each of them has his own proficiency level (p.l.), which is represented as a positive integer, and the higher the level is - the better. There are only n places in the team, and the recruiter hires only those who have their p.l. not less than m. All applicants are standing in a queue and if the current one satisfies the required conditions, he is taken into the team right away. Once the team is full, all the remaining people are denied regardless of their p.l. What is the total p.l. of the applicants that get be hired? It is guaranteed that all n places can be taken. Example For a = [4, 2, 3, 6, 2, 5, 4], n = 3 and m = 4, the output should be summaryProficiency(a, n, m) = 15. Explanation: 4 + 6 + 5 = 15. Input/Output [execution time limit] 4 seconds (js) [input] array.integer a An array of positive integers, representing a queue of proficiency levels. Guaranteed constraints: 5 ≤ a.length ≤ 15, 0 ≤ a[i] ≤ 100. [input] integer n Guaranteed constraints: 1 ≤ n ≤ 10. [input] integer m Guaranteed constraints: 1 ≤ m ≤ 10. */ #include<iostream> using namespace std; int summaryProficiency(std::vector<int> a, int n, int m) { int result = 0; for (int i = 0; n > 0; i++) { if (a[i] >= m) { result += a[i]; n--; } } return result; } int main(){ }
[ "muhalfalah1998@gmail.com.com" ]
muhalfalah1998@gmail.com.com
2ad05fbcccfd639959428077f5ce22966578a9ba
3c53d57793ed7f416cbe57d3be02e4670ee1742a
/Qt/Project/Qt5开发实例/3.Qt5布局管理/3.2.停靠窗口QDockWidget类/DockWindows/mainwindow.cpp
c9537f8628f94005201608a33aeafb256012f35d
[ "WTFPL" ]
permissive
znvmk/Study
a6f0edd61e7c7befc2b63ed7fa31e0ad9cd747cf
9af11d2addad51c1b806411b876920ea95482b1b
refs/heads/master
2022-09-14T01:34:54.792597
2022-08-26T20:12:53
2022-08-26T20:12:53
248,516,565
3
1
null
null
null
null
UTF-8
C++
false
false
1,773
cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include "QTextEdit" #include "QDockWidget" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::MainWindow) { ui->setupUi(this); setWindowTitle(tr("DockWindos"));//设置主窗口的标题栏文字 QTextEdit* te=new QTextEdit(this);//定义一个QTextEdit对象作为主窗口 te->setText(tr("Main Window")); te->setAlignment(Qt::AlignCenter); setCentralWidget(te);//将此编辑框设为主窗口中央窗体 //停靠窗口1 QDockWidget* dock=new QDockWidget(tr("DockWindow1"),this); dock->setFeatures(QDockWidget::DockWidgetMovable);//可移动 dock->setAllowedAreas(Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea); QTextEdit* te1=new QTextEdit(); te1->setText(tr("Windwo1,The dock widget can be moved between docks by the user" "")); dock->setWidget(te1); addDockWidget(Qt::RightDockWidgetArea,dock); //停靠窗口2 dock =new QDockWidget(tr("DockWindow2"),this); dock->setFeatures(QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetFloatable);//可关闭、可浮动 QTextEdit* te2=new QTextEdit(); te2->setText(tr("Window2,The dock widget can be detached from the main window,""and floated as an independent window,and can be closed.")); dock->setWidget(te2); addDockWidget(Qt::RightDockWidgetArea,dock); //停靠窗口3 dock =new QDockWidget(tr("DockWindow3"),this); dock->setFeatures(QDockWidget::DockWidgetFeatures());//全部特性 QTextEdit* te3=new QTextEdit(); te3->setText(tr("Window3,The dock widget can be closed,moved,and floated.")); dock->setWidget(te3); addDockWidget(Qt::RightDockWidgetArea,dock); } MainWindow::~MainWindow() { delete ui; }
[ "33738804+znvmk@users.noreply.github.com" ]
33738804+znvmk@users.noreply.github.com
7b37ed8cb19ab4b8bb370b34295a994003cd9831
334558bf31b6a8fd3caaf09c24898ff331c7e2da
/GenieWindow/plugins/GeniePlugin_Wireless/QGenieWirelessChannelLegendWidget.cpp
69e5a6e07790940d75b3b60ebfe3c46a769fea2d
[]
no_license
roygaogit/Bigit_Genie
e38bac558e81d9966ec6efbdeef0a7e2592156a7
936a56154a5f933b1e9c049ee044d76ff1d6d4db
refs/heads/master
2020-03-31T04:20:04.177461
2013-12-09T03:38:15
2013-12-09T03:38:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,740
cpp
#include "QGenieWirelessChannelLegendWidget.h" #include "GeniePlugin_Wireless.h" QGenieWirelessChannelLegendWidget::QGenieWirelessChannelLegendWidget(QWidget *parent) : QFrame(parent) { setupUi(); } void QGenieWirelessChannelLegendWidget::setupUi() { //this->setWindowOpacity(0.1); this->setObjectName(QString::fromUtf8("this")); this->setGeometry(QRect(50, 80, 100, 30)); QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); sizePolicy.setHorizontalStretch(0); sizePolicy.setVerticalStretch(0); sizePolicy.setHeightForWidth(this->sizePolicy().hasHeightForWidth()); this->setSizePolicy(sizePolicy); //this->setStyleSheet(QString::fromUtf8("background-color: rgb(255, 255, 255);")); this->setFrameShape(QFrame::StyledPanel); this->setFrameShadow(QFrame::Raised); legendFrameVerLayout = new QVBoxLayout(this); legendFrameVerLayout->setSpacing(1); legendFrameVerLayout->setContentsMargins(0, 0, 0, 0); legendFrameVerLayout->setObjectName(QString::fromUtf8("thisVerLayout")); //legendLB = new QLabel(this); //legendLB->setObjectName(QString::fromUtf8("legendLB")); //legendLB->setStyleSheet(QString::fromUtf8("font: 9pt \"\345\256\213\344\275\223\";")); //legendFrameVerLayout->addWidget(legendLB); this->setFrameShadow(QFrame::Plain); this->setFrameShape(QFrame::NoFrame); legendHorLayout = new QHBoxLayout(); legendHorLayout->setObjectName(QString::fromUtf8("legendHorLayout")); horizontalSpacer = new QSpacerItem(6, 6, QSizePolicy::Fixed, QSizePolicy::Minimum); legendHorLayout->addItem(horizontalSpacer); legendColorVerLayout = new QVBoxLayout(); legendColorVerLayout->setSpacing(1); legendColorVerLayout->setObjectName(QString::fromUtf8("legendColorVerLayout")); horizontalLayout = new QHBoxLayout(); horizontalLayout->setAlignment(Qt::AlignLeft); horizontalLayout->setSpacing(6); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); legendColorMyLB = new QLabel(this); legendColorMyLB->setObjectName(QString::fromUtf8("legendColorMyLB")); sizePolicy.setHeightForWidth(legendColorMyLB->sizePolicy().hasHeightForWidth()); legendColorMyLB->setSizePolicy(sizePolicy); legendColorMyLB->setMinimumSize(QSize(10, 5)); legendColorMyLB->setMaximumSize(QSize(10, 5)); legendColorMyLB->setStyleSheet(QString::fromUtf8("background-color: rgb(0,113,215);")); horizontalLayout->addWidget(legendColorMyLB); myWiFiLB = new QLabel(this); //myWiFiLB->setWordWrap(true); myWiFiLB->setObjectName(QString::fromUtf8("myWiFiLB")); myWiFiLB->setStyleSheet(QString::fromUtf8("font: 9pt \"\345\256\213\344\275\223\";")); horizontalLayout->addWidget(myWiFiLB); legendColorVerLayout->addLayout(horizontalLayout); horizontalLayout_2 = new QHBoxLayout(); horizontalLayout_2->setAlignment(Qt::AlignLeft); horizontalLayout_2->setSpacing(6); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); legendColorOtherLB = new QLabel(this); legendColorOtherLB->setObjectName(QString::fromUtf8("legendColorOtherLB")); sizePolicy.setHeightForWidth(legendColorOtherLB->sizePolicy().hasHeightForWidth()); legendColorOtherLB->setSizePolicy(sizePolicy); legendColorOtherLB->setMinimumSize(QSize(10, 5)); legendColorOtherLB->setMaximumSize(QSize(10, 5)); legendColorOtherLB->setStyleSheet(QString::fromUtf8("background-color: rgb(238,210,51);")); horizontalLayout_2->addWidget(legendColorOtherLB); otherWiFiLB = new QLabel(this); //otherWiFiLB->setWordWrap(true); otherWiFiLB->setObjectName(QString::fromUtf8("otherWiFiLB")); otherWiFiLB->setStyleSheet(QString::fromUtf8("font: 9pt \"\345\256\213\344\275\223\";")); horizontalLayout_2->addWidget(otherWiFiLB); legendColorVerLayout->addLayout(horizontalLayout_2); legendHorLayout->addLayout(legendColorVerLayout); legendFrameVerLayout->addLayout(legendHorLayout); retranslateUi(); } // setupUi void QGenieWirelessChannelLegendWidget::retranslateUi() { //legendLB->setText(GeniePlugin_Wireless::translateText(L_WIRELESS_WCV_WIFI_LEGEND_TEXT)/*"Legend"*/); legendColorMyLB->setText(QString()); myWiFiLB->setText(GeniePlugin_Wireless::translateText(L_WIRELESS_WCV_WIFI_MYWIFI_TEXT)/*"My WiFi"*/); legendColorOtherLB->setText(QString()); otherWiFiLB->setText(GeniePlugin_Wireless::translateText(L_WIRELESS_WCV_WIFI_OTHERWIFI_TEXT)/*"Other's WiFi"*/); } // retranslateUi void QGenieWirelessChannelLegendWidget::changeEvent(QEvent *event) { if(event->type() == QEvent::LanguageChange) { retranslateUi(); } QFrame::changeEvent(event); }
[ "raylq@qq.com" ]
raylq@qq.com
ccf3ed7f819b2725ef08323fa03b07da08ea122a
02b8dd694e2283017a629b5843dcae3b7729375f
/Trabalho 3/PacMan/Game/ObjectModel.h
7b977a9cfec59af869fe23d233fd33ff2036c7f9
[]
no_license
paletas-isel/ISEL-CG
04a959274a38117375195559886a36afa41eed46
da5f8e392c880e1826c0bd21ff0c39155261e691
refs/heads/master
2021-05-27T08:58:49.762811
2012-02-15T13:02:30
2012-02-15T13:02:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
222
h
#ifndef _PACMAN_OBJMODEL_ #define _PACMAN_OBJMODEL_ #include "model.h" class ObjectModel : public Model { protected: virtual void DoDraw() = 0; public: ObjectModel(void); ~ObjectModel(void); void Draw(); }; #endif
[ "joaopaulosilvestre@hotmail.com" ]
joaopaulosilvestre@hotmail.com
8cedc6fd6208d1186744c81b93782607f06e9677
1da7d378d84fb995bf118e94839a4131a178499b
/sinkworld/tentacle/python/add_IDecoration.cpp
5b1e9654f8ea0fd99fe09b89af4888c2ac391dcd
[ "MIT" ]
permissive
calandoa/zxite
f85ed7b8cc0f3ed5194b5ea3c4ce5859cb487312
8122da2e5dc2907ccb84fe295a9a86e843402378
refs/heads/master
2021-07-14T21:14:16.559063
2017-10-20T16:12:09
2017-10-20T16:12:09
28,239,704
0
1
null
null
null
null
UTF-8
C++
false
false
1,727
cpp
#include <boost/python.hpp> #include <boost/cstdint.hpp> #include <string> #include <iostream> #include <assert.h> #include "base.h" #include "lexers.h" // Using ======================================================================= using namespace boost::python; typedef void *HWND; typedef void *HINSTANCE; #include "PhysicalLayout.h" #include "RegisteredLexers.h" #include "RGBColor.h" #include "IDecoration.h" #include "BaseDecoration.h" #include "RegisteredDecorations.h" #include "Style.h" #include "StyleModification.h" #include "StyleSet.h" #include "StyleSetCollection.h" #include "FontDescription.h" #include "Surface.h" #include "ChangeLayer.h" #include "ChangeFinder.h" #include "StyleLayer.h" #include "SubstanceLayer.h" #include "PositionCache.h" #include "LinePositionCache.h" #include "ChangePositionsCache.h" #include "Document.h" #include "PhasedPaint.h" #include "TextView.h" #include "RangeSelection.h" #include "DecorationBox.h" #include "DecorationButton.h" #include "DecorationCaret.h" #include "DecorationGraduatedBox.h" #include "DecorationStrikeOut.h" #include "DecorationRoundedBox.h" #include "DecorationUnderLine.h" #include "TentacleControl.h" #include "SWWrappers.h" void add_IDecoration() { class_< IDecoration, boost::noncopyable, IDecoration_Wrapper >("IDecoration", no_init) .def("CreateNew", pure_virtual(&IDecoration::CreateNew), return_value_policy< manage_new_object >()) .def("Clone", pure_virtual(&IDecoration::Clone), return_value_policy< manage_new_object >()) .def("Paint", pure_virtual(&IDecoration::Paint)) .def("SetFore", pure_virtual(&IDecoration::SetFore)) .def("SetFore", pure_virtual(&IDecoration::FromOptions)) ; }
[ "antoine.calando@intel.com" ]
antoine.calando@intel.com
0f0d737adf28a2f06093bcefb599b55a2b7503e5
18a793eef3b90e610af0a2618e7902578f9d7858
/XRangePingPong/SX1272Lib/sx1272/sx1272.h
05d748030c4f9c481dc4289ca7a4b09ee92b89e5
[]
no_license
lorabeeio/netblocks
90a9f2f6fba0eabce638765d85ef6cd3c6c68213
bf176831a13165d2b4c12e675aa59379399346cc
refs/heads/master
2021-01-20T16:09:50.890361
2016-07-02T11:23:53
2016-07-02T11:23:53
62,446,748
0
0
null
null
null
null
UTF-8
C++
false
false
16,954
h
/* / _____) _ | | ( (____ _____ ____ _| |_ _____ ____| |__ \____ \| ___ | (_ _) ___ |/ ___) _ \ _____) ) ____| | | || |_| ____( (___| | | | (______/|_____)_|_|_| \__)_____)\____)_| |_| ( C )2014 Semtech Description: Actual implementation of a SX1276 radio, inherits Radio License: Revised BSD License, see LICENSE.TXT file include in the project Maintainers: www.netblocks.eu SX1272 LoRa RF module : http://www.netblocks.eu/xrange-sx1272-lora-datasheet/ */ #ifndef __SX1272_H__ #define __SX1272_H__ #include "radio.h" #include "./registers/sx1272Regs-Fsk.h" #include "./registers/sx1272Regs-LoRa.h" #include "./typedefs/typedefs.h" /*! * Radio wakeup time from SLEEP mode */ #define RADIO_WAKEUP_TIME 1000 // [us] /*! * SX1276 definitions */ #define XTAL_FREQ 32000000 #define FREQ_STEP 61.03515625 #define RX_BUFFER_SIZE 256 #define DEFAULT_TIMEOUT 200 //usec #define RSSI_OFFSET -139.0 /*! * Constant values need to compute the RSSI value */ //#define RSSI_OFFSET_LF -164.0 //#define RSSI_OFFSET_HF -157.0 //#define RF_MID_BAND_THRESH 525000000 /*! * Actual implementation of a SX1276 radio, inherits Radio */ class SX1272 : public Radio { protected: /*! * SPI Interface */ SPI spi; // mosi, miso, sclk DigitalOut nss; /*! * SX1276 Reset pin */ DigitalInOut reset; /*! * SX1276 DIO pins */ InterruptIn dio0; InterruptIn dio1; InterruptIn dio2; InterruptIn dio3; InterruptIn dio4; DigitalIn dio5; bool isRadioActive; uint8_t *rxBuffer; uint8_t previousOpMode; /*! * Hardware DIO IRQ functions */ DioIrqHandler *dioIrq; /*! * Tx and Rx timers */ Timeout txTimeoutTimer; Timeout rxTimeoutTimer; Timeout rxTimeoutSyncWord; /*! * rxTx: [1: Tx, 0: Rx] */ uint8_t rxTx; RadioSettings_t settings; static const FskBandwidth_t FskBandwidths[] ; protected: /*! * Performs the Rx chain calibration for LF and HF bands * \remark Must be called just after the reset so all registers are at their * default values */ void RxChainCalibration( void ); public: SX1272( void ( *txDone )( ), void ( *txTimeout ) ( ), void ( *rxDone ) ( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr ), void ( *rxTimeout ) ( ), void ( *rxError ) ( ), void ( *fhssChangeChannel ) ( uint8_t channelIndex ), void ( *cadDone ) ( bool channelActivityDetected ), PinName mosi, PinName miso, PinName sclk, PinName nss, PinName reset, PinName dio0, PinName dio1, PinName dio2, PinName dio3, PinName dio4, PinName dio5 ); SX1272( void ( *txDone )( ), void ( *txTimeout ) ( ), void ( *rxDone ) ( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr ), void ( *rxTimeout ) ( ), void ( *rxError ) ( ), void ( *fhssChangeChannel ) ( uint8_t channelIndex ), void ( *cadDone ) ( bool channelActivityDetected ) ); virtual ~SX1272( ); //------------------------------------------------------------------------- // Redefined Radio functions //------------------------------------------------------------------------- /*! * Return current radio status * * @param status Radio status. [IDLE, RX_RUNNING, TX_RUNNING] */ virtual RadioState GetState( void ); /*! * @brief Configures the SX1276 with the given modem * * @param [IN] modem Modem to be used [0: FSK, 1: LoRa] */ virtual void SetModem( ModemType modem ); /*! * @brief Sets the channel frequency * * @param [IN] freq Channel RF frequency */ virtual void SetChannel( uint32_t freq ); /*! * @brief Sets the channels configuration * * @param [IN] modem Radio modem to be used [0: FSK, 1: LoRa] * @param [IN] freq Channel RF frequency * @param [IN] rssiThresh RSSI threshold * * @retval isFree [true: Channel is free, false: Channel is not free] */ virtual bool IsChannelFree( ModemType modem, uint32_t freq, int8_t rssiThresh ); /*! * @brief Generates a 32 bits random value based on the RSSI readings * * \remark This function sets the radio in LoRa modem mode and disables * all interrupts. * After calling this function either Radio.SetRxConfig or * Radio.SetTxConfig functions must be called. * * @retval randomValue 32 bits random value */ virtual uint32_t Random( void ); /*! * @brief Sets the reception parameters * * @param [IN] modem Radio modem to be used [0: FSK, 1: LoRa] * @param [IN] bandwidth Sets the bandwidth * FSK : >= 2600 and <= 250000 Hz * LoRa: [0: 125 kHz, 1: 250 kHz, * 2: 500 kHz, 3: Reserved] * @param [IN] datarate Sets the Datarate * FSK : 600..300000 bits/s * LoRa: [6: 64, 7: 128, 8: 256, 9: 512, * 10: 1024, 11: 2048, 12: 4096 chips] * @param [IN] coderate Sets the coding rate ( LoRa only ) * FSK : N/A ( set to 0 ) * LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8] * @param [IN] bandwidthAfc Sets the AFC Bandwidth ( FSK only ) * FSK : >= 2600 and <= 250000 Hz * LoRa: N/A ( set to 0 ) * @param [IN] preambleLen Sets the Preamble length ( LoRa only ) * FSK : N/A ( set to 0 ) * LoRa: Length in symbols ( the hardware adds 4 more symbols ) * @param [IN] symbTimeout Sets the RxSingle timeout value ( LoRa only ) * FSK : N/A ( set to 0 ) * LoRa: timeout in symbols * @param [IN] fixLen Fixed length packets [0: variable, 1: fixed] * @param [IN] payloadLen Sets payload length when fixed lenght is used * @param [IN] crcOn Enables/Disables the CRC [0: OFF, 1: ON] * @param [IN] freqHopOn Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only) * @param [IN] hopPeriod Number of symbols bewteen each hop (LoRa only) * @param [IN] iqInverted Inverts IQ signals ( LoRa only ) * FSK : N/A ( set to 0 ) * LoRa: [0: not inverted, 1: inverted] * @param [IN] rxContinuous Sets the reception in continuous mode * [false: single mode, true: continuous mode] */ virtual void SetRxConfig ( ModemType modem, uint32_t bandwidth, uint32_t datarate, uint8_t coderate, uint32_t bandwidthAfc, uint16_t preambleLen, uint16_t symbTimeout, bool fixLen, uint8_t payloadLen, bool crcOn, bool freqHopOn, uint8_t hopPeriod, bool iqInverted, bool rxContinuous ); /*! * @brief Sets the transmission parameters * * @param [IN] modem Radio modem to be used [0: FSK, 1: LoRa] * @param [IN] power Sets the output power [dBm] * @param [IN] fdev Sets the frequency deviation ( FSK only ) * FSK : [Hz] * LoRa: 0 * @param [IN] bandwidth Sets the bandwidth ( LoRa only ) * FSK : 0 * LoRa: [0: 125 kHz, 1: 250 kHz, * 2: 500 kHz, 3: Reserved] * @param [IN] datarate Sets the Datarate * FSK : 600..300000 bits/s * LoRa: [6: 64, 7: 128, 8: 256, 9: 512, * 10: 1024, 11: 2048, 12: 4096 chips] * @param [IN] coderate Sets the coding rate ( LoRa only ) * FSK : N/A ( set to 0 ) * LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8] * @param [IN] preambleLen Sets the preamble length * @param [IN] fixLen Fixed length packets [0: variable, 1: fixed] * @param [IN] crcOn Enables disables the CRC [0: OFF, 1: ON] * @param [IN] freqHopOn Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only) * @param [IN] hopPeriod Number of symbols bewteen each hop (LoRa only) * @param [IN] iqInverted Inverts IQ signals ( LoRa only ) * FSK : N/A ( set to 0 ) * LoRa: [0: not inverted, 1: inverted] * @param [IN] timeout Transmission timeout [us] */ virtual void SetTxConfig( ModemType modem, int8_t power, uint32_t fdev, uint32_t bandwidth, uint32_t datarate, uint8_t coderate, uint16_t preambleLen, bool fixLen, bool crcOn, bool freqHopOn, uint8_t hopPeriod, bool iqInverted, uint32_t timeout ); /*! * @brief Computes the packet time on air for the given payload * * \Remark Can only be called once SetRxConfig or SetTxConfig have been called * * @param [IN] modem Radio modem to be used [0: FSK, 1: LoRa] * @param [IN] pktLen Packet payload length * * @retval airTime Computed airTime for the given packet payload length */ virtual double TimeOnAir ( ModemType modem, uint8_t pktLen ); /*! * @brief Sends the buffer of size. Prepares the packet to be sent and sets * the radio in transmission * * @param [IN]: buffer Buffer pointer * @param [IN]: size Buffer size */ virtual void Send( uint8_t *buffer, uint8_t size ); /*! * @brief Sets the radio in sleep mode */ virtual void Sleep( void ); /*! * @brief Sets the radio in standby mode */ virtual void Standby( void ); /*! * @brief Sets the radio in reception mode for the given time * @param [IN] timeout Reception timeout [us] * [0: continuous, others timeout] */ virtual void Rx( uint32_t timeout ); /*! * @brief Sets the radio in transmission mode for the given time * @param [IN] timeout Transmission timeout [us] * [0: continuous, others timeout] */ virtual void Tx( uint32_t timeout ); /*! * @brief Start a Channel Activity Detection */ virtual void StartCad( void ); /*! * @brief Reads the current RSSI value * * @retval rssiValue Current RSSI value in [dBm] */ virtual int16_t GetRssi ( ModemType modem ); /*! * @brief Writes the radio register at the specified address * * @param [IN]: addr Register address * @param [IN]: data New register value */ virtual void Write ( uint8_t addr, uint8_t data ) = 0; /*! * @brief Reads the radio register at the specified address * * @param [IN]: addr Register address * @retval data Register value */ virtual uint8_t Read ( uint8_t addr ) = 0; /*! * @brief Writes multiple radio registers starting at address * * @param [IN] addr First Radio register address * @param [IN] buffer Buffer containing the new register's values * @param [IN] size Number of registers to be written */ virtual void Write( uint8_t addr, uint8_t *buffer, uint8_t size ) = 0; /*! * @brief Reads multiple radio registers starting at address * * @param [IN] addr First Radio register address * @param [OUT] buffer Buffer where to copy the registers data * @param [IN] size Number of registers to be read */ virtual void Read ( uint8_t addr, uint8_t *buffer, uint8_t size ) = 0; /*! * @brief Writes the buffer contents to the SX1276 FIFO * * @param [IN] buffer Buffer containing data to be put on the FIFO. * @param [IN] size Number of bytes to be written to the FIFO */ virtual void WriteFifo( uint8_t *buffer, uint8_t size ) = 0; /*! * @brief Reads the contents of the SX1276 FIFO * * @param [OUT] buffer Buffer where to copy the FIFO read data. * @param [IN] size Number of bytes to be read from the FIFO */ virtual void ReadFifo( uint8_t *buffer, uint8_t size ) = 0; /*! * @brief Resets the SX1276 */ virtual void Reset( void ) = 0; //------------------------------------------------------------------------- // Board relative functions //------------------------------------------------------------------------- protected: /*! * @brief Initializes the radio I/Os pins interface */ virtual void IoInit( void ) = 0; /*! * @brief Initializes the radio registers */ virtual void RadioRegistersInit( ) = 0; /*! * @brief Initializes the radio SPI */ virtual void SpiInit( void ) = 0; /*! * @brief Initializes DIO IRQ handlers * * @param [IN] irqHandlers Array containing the IRQ callback functions */ virtual void IoIrqInit( DioIrqHandler *irqHandlers ) = 0; /*! * @brief De-initializes the radio I/Os pins interface. * * \remark Useful when going in MCU lowpower modes */ virtual void IoDeInit( void ) = 0; /*! * @brief Gets the board PA selection configuration * * @param [IN] channel Channel frequency in Hz * @retval PaSelect RegPaConfig PaSelect value */ virtual uint8_t GetPaSelect( uint32_t channel ) = 0; /*! * @brief Set the RF Switch I/Os pins in Low Power mode * * @param [IN] status enable or disable */ virtual void SetAntSwLowPower( bool status ) = 0; /*! * @brief Initializes the RF Switch I/Os pins interface */ virtual void AntSwInit( void ) = 0; /*! * @brief De-initializes the RF Switch I/Os pins interface * * \remark Needed to decrease the power consumption in MCU lowpower modes */ virtual void AntSwDeInit( void ) = 0; /*! * @brief Controls the antena switch if necessary. * * \remark see errata note * * @param [IN] rxTx [1: Tx, 0: Rx] */ virtual void SetAntSw( uint8_t rxTx ) = 0; /*! * @brief Checks if the given RF frequency is supported by the hardware * * @param [IN] frequency RF frequency to be checked * @retval isSupported [true: supported, false: unsupported] */ virtual bool CheckRfFrequency( uint32_t frequency ) = 0; protected: /*! * @brief Sets the SX1276 operating mode * * @param [IN] opMode New operating mode */ virtual void SetOpMode( uint8_t opMode ); /* * SX1276 DIO IRQ callback functions prototype */ /*! * @brief DIO 0 IRQ callback */ virtual void OnDio0Irq( void ); /*! * @brief DIO 1 IRQ callback */ virtual void OnDio1Irq( void ); /*! * @brief DIO 2 IRQ callback */ virtual void OnDio2Irq( void ); /*! * @brief DIO 3 IRQ callback */ virtual void OnDio3Irq( void ); /*! * @brief DIO 4 IRQ callback */ virtual void OnDio4Irq( void ); /*! * @brief DIO 5 IRQ callback */ virtual void OnDio5Irq( void ); /*! * @brief Tx & Rx timeout timer callback */ virtual void OnTimeoutIrq( void ); /*! * Returns the known FSK bandwidth registers value * * \param [IN] bandwidth Bandwidth value in Hz * \retval regValue Bandwidth register value. */ static uint8_t GetFskBandwidthRegValue( uint32_t bandwidth ); }; #endif //__SX1272_H__
[ "git@pbrier.nl" ]
git@pbrier.nl
53537d1cf678701c2eb56a97ca90d63285fe1252
37dfdfbae6886a23cf6a3626a05f57869a89b3f5
/Source/FairyGUIEnginePlugin/fairygui/third_party/cc/CCAction.h
e9d81591f2b475e6d8393a9e0fed3e62dcefcfc5
[ "MIT" ]
permissive
fhaoquan/FairyGUI-vision
8dbf79982d2c9b07e0f8fe73ada1f5c91dee2ef8
63c2f5a4bfc7e3db954ef55a689be26b9a0f3518
refs/heads/master
2020-03-30T22:33:17.013554
2018-05-24T15:07:44
2018-05-24T15:07:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,236
h
/**************************************************************************** Copyright (c) 2008-2010 Ricardo Quesada Copyright (c) 2010-2012 cocos2d-x.org Copyright (c) 2011 Zynga Inc. Copyright (c) 2013-2017 Chukong Technologies Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #ifndef __ACTIONS_CCACTION_H__ #define __ACTIONS_CCACTION_H__ #include "CCRef.h" #include "ccMacros.h" //#include "math/CCGeometry.h" //#include "base/CCScriptSupport.h" NS_CC_BEGIN class Node; enum { kActionUpdate }; /** * @addtogroup actions * @{ */ /** * @brief Base class for Action objects. */ class CC_DLL Action : public Ref, public Clonable { public: /** Default tag used for all the actions. */ static const int INVALID_TAG = -1; /** * @js NA * @lua NA */ virtual std::string description() const; /** Returns a clone of action. * * @return A clone action. */ virtual Action* clone() const { CC_ASSERT(0); return nullptr; } /** Returns a new action that performs the exact reverse of the action. * * @return A new action that performs the exact reverse of the action. * @js NA */ virtual Action* reverse() const { CC_ASSERT(0); return nullptr; } /** Return true if the action has finished. * * @return Is true if the action has finished. */ virtual bool isDone() const; /** Called before the action start. It will also set the target. * * @param target A certain target. */ virtual void startWithTarget(Node *target); /** * Called after the action has finished. It will set the 'target' to nil. * IMPORTANT: You should never call "Action::stop()" manually. Instead, use: "target->stopAction(action);". */ virtual void stop(); /** Called every frame with it's delta time, dt in seconds. DON'T override unless you know what you are doing. * * @param dt In seconds. */ virtual void step(float dt); /** * Called once per frame. time a value between 0 and 1. * For example: * - 0 Means that the action just started. * - 0.5 Means that the action is in the middle. * - 1 Means that the action is over. * * @param time A value between 0 and 1. */ virtual void update(float time); /** Return certain target. * * @return A certain target. */ Node* getTarget() const { return _target; } /** The action will modify the target properties. * * @param target A certain target. */ void setTarget(Node *target) { _target = target; } /** Return a original Target. * * @return A original Target. */ Node* getOriginalTarget() const { return _originalTarget; } /** * Set the original target, since target can be nil. * Is the target that were used to run the action. Unless you are doing something complex, like ActionManager, you should NOT call this method. * The target is 'assigned', it is not 'retained'. * @since v0.8.2 * * @param originalTarget Is 'assigned', it is not 'retained'. */ void setOriginalTarget(Node *originalTarget) { _originalTarget = originalTarget; } /** Returns a tag that is used to identify the action easily. * * @return A tag. */ int getTag() const { return _tag; } /** Changes the tag that is used to identify the action easily. * * @param tag Used to identify the action easily. */ void setTag(int tag) { _tag = tag; } /** Returns a flag field that is used to group the actions easily. * * @return A tag. */ unsigned int getFlags() const { return _flags; } /** Changes the flag field that is used to group the actions easily. * * @param flags Used to group the actions easily. */ void setFlags(unsigned int flags) { _flags = flags; } CC_CONSTRUCTOR_ACCESS: Action(); virtual ~Action(); protected: Node *_originalTarget; /** * The "target". * The target will be set with the 'startWithTarget' method. * When the 'stop' method is called, target will be set to nil. * The target is 'assigned', it is not 'retained'. */ Node *_target; /** The action tag. An identifier of the action. */ int _tag; /** The action flag field. To categorize action into certain groups.*/ unsigned int _flags; #if CC_ENABLE_SCRIPT_BINDING ccScriptType _scriptType; ///< type of script binding, lua or javascript #endif private: CC_DISALLOW_COPY_AND_ASSIGN(Action); }; /** @class FiniteTimeAction * @brief * Base class actions that do have a finite time duration. * Possible actions: * - An action with a duration of 0 seconds. * - An action with a duration of 35.5 seconds. * Infinite time actions are valid. */ class CC_DLL FiniteTimeAction : public Action { public: /** Get duration in seconds of the action. * * @return The duration in seconds of the action. */ float getDuration() const { return _duration; } /** Set duration in seconds of the action. * * @param duration In seconds of the action. */ void setDuration(float duration) { _duration = duration; } // // Overrides // virtual FiniteTimeAction* reverse() const override { CC_ASSERT(0); return nullptr; } virtual FiniteTimeAction* clone() const override { CC_ASSERT(0); return nullptr; } CC_CONSTRUCTOR_ACCESS: FiniteTimeAction() : _duration(0) {} virtual ~FiniteTimeAction(){} protected: //! Duration in seconds. float _duration; private: CC_DISALLOW_COPY_AND_ASSIGN(FiniteTimeAction); }; class ActionInterval; class RepeatForever; // ///** @class Speed // * @brief Changes the speed of an action, making it take longer (speed>1) // * or shorter (speed<1) time. // * Useful to simulate 'slow motion' or 'fast forward' effect. // * @warning This action can't be Sequenceable because it is not an IntervalAction. // */ //class CC_DLL Speed : public Action //{ //public: // /** Create the action and set the speed. // * // * @param action An action. // * @param speed The action speed. // */ // static Speed* create(ActionInterval* action, float speed); // /** Return the speed. // * // * @return The action speed. // */ // float getSpeed() const { return _speed; } // /** Alter the speed of the inner function in runtime. // * // * @param speed Alter the speed of the inner function in runtime. // */ // void setSpeed(float speed) { _speed = speed; } // // /** Replace the interior action. // * // * @param action The new action, it will replace the running action. // */ // void setInnerAction(ActionInterval *action); // /** Return the interior action. // * // * @return The interior action. // */ // ActionInterval* getInnerAction() const { return _innerAction; } // // // // // Override // // // virtual Speed* clone() const override; // virtual Speed* reverse() const override; // virtual void startWithTarget(Node* target) override; // virtual void stop() override; // /** // * @param dt in seconds. // */ // virtual void step(float dt) override; // /** Return true if the action has finished. // * // * @return Is true if the action has finished. // */ // virtual bool isDone() const override; // //CC_CONSTRUCTOR_ACCESS: // Speed(); // virtual ~Speed(void); // /** Initializes the action. */ // bool initWithAction(ActionInterval *action, float speed); // //protected: // float _speed; // ActionInterval *_innerAction; // //private: // CC_DISALLOW_COPY_AND_ASSIGN(Speed); //}; // ///** @class Follow // * @brief Follow is an action that "follows" a node. // * Eg: // * @code // * layer->runAction(Follow::create(hero)); // * @endcode // * Instead of using Camera as a "follower", use this action instead. // * @since v0.99.2 // */ //class CC_DLL Follow : public Action //{ //public: // /** // * Creates the action with a set boundary or with no boundary. // * // * @param followedNode The node to be followed. // * @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work // * with no boundary. // */ // // static Follow* create(Node *followedNode, const Rect& rect = Rect::ZERO); // // /** // * Creates the action with a set boundary or with no boundary with offsets. // * // * @param followedNode The node to be followed. // * @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work // * with no boundary. // * @param xOffset The horizontal offset from the center of the screen from which the // * node is to be followed.It can be positive,negative or zero.If // * set to zero the node will be horizontally centered followed. // * @param yOffset The vertical offset from the center of the screen from which the // * node is to be followed.It can be positive,negative or zero. // * If set to zero the node will be vertically centered followed. // * If both xOffset and yOffset are set to zero,then the node will be horizontally and vertically centered followed. // */ // // static Follow* createWithOffset(Node* followedNode,float xOffset,float yOffset,const Rect& rect = Rect::ZERO); // // /** Return boundarySet. // * // * @return Return boundarySet. // */ // bool isBoundarySet() const { return _boundarySet; } // /** Alter behavior - turn on/off boundary. // * // * @param value Turn on/off boundary. // */ // void setBoundarySet(bool value) { _boundarySet = value; } // // /** @deprecated Alter behavior - turn on/off boundary. // * // * @param value Turn on/off boundary. // */ // CC_DEPRECATED_ATTRIBUTE void setBoudarySet(bool value) { setBoundarySet(value); } // // // // // Override // // // virtual Follow* clone() const override; // virtual Follow* reverse() const override; // /** // * @param dt in seconds. // * @js NA // */ // virtual void step(float dt) override; // virtual bool isDone() const override; // virtual void stop() override; // //CC_CONSTRUCTOR_ACCESS: // /** // * @js ctor // */ // Follow() // : _followedNode(nullptr) // , _boundarySet(false) // , _boundaryFullyCovered(false) // , _leftBoundary(0.0) // , _rightBoundary(0.0) // , _topBoundary(0.0) // , _bottomBoundary(0.0) // , _offsetX(0.0) // , _offsetY(0.0) // , _worldRect(Rect::ZERO) // {} // /** // * @js NA // * @lua NA // */ // virtual ~Follow(); // // /** // * Initializes the action with a set boundary or with no boundary. // * // * @param followedNode The node to be followed. // * @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work // * with no boundary. // */ // bool initWithTarget(Node *followedNode, const Rect& rect = Rect::ZERO); // // // /** // * Initializes the action with a set boundary or with no boundary with offsets. // * // * @param followedNode The node to be followed. // * @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work // * with no boundary. // * @param xOffset The horizontal offset from the center of the screen from which the // * node is to be followed.It can be positive,negative or zero.If // * set to zero the node will be horizontally centered followed. // * @param yOffset The vertical offset from the center of the screen from which the // * node is to be followed.It can be positive,negative or zero. // * If set to zero the node will be vertically centered followed. // * If both xOffset and yOffset are set to zero,then the node will be horizontally and vertically centered followed. // // */ // bool initWithTargetAndOffset(Node *followedNode,float xOffset,float yOffset,const Rect& rect = Rect::ZERO); // //protected: // /** Node to follow. */ // Node *_followedNode; // // /** Whether camera should be limited to certain area. */ // bool _boundarySet; // // /** If screen size is bigger than the boundary - update not needed. */ // bool _boundaryFullyCovered; // // /** Fast access to the screen dimensions. */ // Vec2 _halfScreenSize; // Vec2 _fullScreenSize; // // /** World boundaries. */ // float _leftBoundary; // float _rightBoundary; // float _topBoundary; // float _bottomBoundary; // // /** Horizontal (x) and vertical (y) offset values. */ // float _offsetX; // float _offsetY; // // Rect _worldRect; // //private: // CC_DISALLOW_COPY_AND_ASSIGN(Follow); //}; // end of actions group /// @} NS_CC_END #endif // __ACTIONS_CCACTION_H__
[ "gzytom@139.com" ]
gzytom@139.com
95673d4551b9817c2422e79e5514e254a4e461b3
785df77400157c058a934069298568e47950e40b
/TnbPtdModel/TnbLib/PtdModel/Entities/Profiles/PtdModel_ProfilesIO.cxx
d3f94da5b22e6105de5963d4d9886da908d20a22
[]
no_license
amir5200fx/Tonb
cb108de09bf59c5c7e139435e0be008a888d99d5
ed679923dc4b2e69b12ffe621fc5a6c8e3652465
refs/heads/master
2023-08-31T08:59:00.366903
2023-08-31T07:42:24
2023-08-31T07:42:24
230,028,961
9
3
null
2023-07-20T16:53:31
2019-12-25T02:29:32
C++
UTF-8
C++
false
false
405
cxx
#include <PtdModel_Profiles.hxx> #include <PtdModel_Profile.hxx> TNB_SAVE_IMPLEMENTATION(tnbLib::PtdModel_Profiles) { ar & boost::serialization::base_object<PtdModel_Entity>(*this); ar & theProfiles_; } TNB_LOAD_IMPLEMENTATION(tnbLib::PtdModel_Profiles) { ar & boost::serialization::base_object<PtdModel_Entity>(*this); ar & theProfiles_; } BOOST_CLASS_EXPORT_IMPLEMENT(tnbLib::PtdModel_Profiles);
[ "aasoleimani86@gmail.com" ]
aasoleimani86@gmail.com
03ec5f9fae976613779081aad7b9611e8c7170ce
0d52c6126c6858c75fa5e6bb2c600e66c8120818
/soda_codes/cp_1_opt_d_ic/our_code/cp_1_opt_d_ic_host.cpp
c41a904a1227615f2af20c874362f4c1ab157d70
[]
no_license
ZhuangzhuangWu/clockwork
17037d55ac1817e89ba065e168554468b1c89832
44909d373f912bdc361c2804dc6b611d7c652034
refs/heads/master
2023-08-18T22:47:52.636943
2021-10-06T17:46:50
2021-10-06T17:46:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,979
cpp
#include "xcl2.hpp" #include <algorithm> #include <fstream> #include <vector> #include <cstdlib> #include "clockwork_standard_compute_units.h" #define __POPULATE_HOST_INPUTS__ int main(int argc, char **argv) { srand(234); if (argc != 2) { std::cout << "Usage: " << argv[0] << " <XCLBIN File>" << std::endl; return EXIT_FAILURE; } std::string binaryFile = argv[1]; int num_epochs = 1; std::cout << "num_epochs = " << num_epochs << std::endl; size_t total_size_bytes = 0; const int cp_1_update_0_sm98_0167_write_pipe0_DATA_SIZE = num_epochs*1166400; const int cp_1_update_0_sm98_0167_write_pipe0_BYTES_PER_PIXEL = 16 / 8; size_t cp_1_update_0_sm98_0167_write_pipe0_size_bytes = cp_1_update_0_sm98_0167_write_pipe0_BYTES_PER_PIXEL * cp_1_update_0_sm98_0167_write_pipe0_DATA_SIZE; total_size_bytes += cp_1_update_0_sm98_0167_write_pipe0_size_bytes; const int raw_update_0_sm88_0147_read_pipe0_DATA_SIZE = num_epochs*1183744; const int raw_update_0_sm88_0147_read_pipe0_BYTES_PER_PIXEL = 16 / 8; size_t raw_update_0_sm88_0147_read_pipe0_size_bytes = raw_update_0_sm88_0147_read_pipe0_BYTES_PER_PIXEL * raw_update_0_sm88_0147_read_pipe0_DATA_SIZE; total_size_bytes += raw_update_0_sm88_0147_read_pipe0_size_bytes; cl_int err; cl::Context context; cl::Kernel krnl_vector_add; cl::CommandQueue q; std::vector<uint8_t, aligned_allocator<uint8_t> > cp_1_update_0_sm98_0167_write_pipe0(cp_1_update_0_sm98_0167_write_pipe0_size_bytes); std::vector<uint8_t, aligned_allocator<uint8_t> > raw_update_0_sm88_0147_read_pipe0(raw_update_0_sm88_0147_read_pipe0_size_bytes); // TODO: POPULATE BUFFERS FOR EACH PIPELINE #ifdef __POPULATE_HOST_INPUTS__ std::ofstream input_raw_update_0_sm88_0147_read("raw_update_0_sm88_0147_read.csv"); for (int i = 0; i < raw_update_0_sm88_0147_read_pipe0_DATA_SIZE; i++) { #ifdef __FLOAT_OUTPUT__ float val = static_cast <float> (rand()) / static_cast <float> (RAND_MAX); #else // __FLOAT_OUTPUT__ uint16_t val = (rand() % 256); #endif // __FLOAT_OUTPUT__ #ifdef __FLOAT_OUTPUT__ input_raw_update_0_sm88_0147_read << val << std::endl; #else // __FLOAT_OUTPUT__ input_raw_update_0_sm88_0147_read << val << std::endl; #endif // __FLOAT_OUTPUT__ #ifdef __FLOAT_OUTPUT__ ((uint16_t*) (raw_update_0_sm88_0147_read_pipe0.data()))[i] = bitcast<uint16_t, float>(val); #else // __FLOAT_OUTPUT__ ((uint16_t*) (raw_update_0_sm88_0147_read_pipe0.data()))[i] = val; #endif // __FLOAT_OUTPUT__ } input_raw_update_0_sm88_0147_read.close(); for (int i = 0; i < cp_1_update_0_sm98_0167_write_pipe0_DATA_SIZE; i++) { ((uint16_t*) (cp_1_update_0_sm98_0167_write_pipe0.data()))[i] = 0; } #endif // __POPULATE_HOST_INPUTS__ auto devices = xcl::get_xil_devices(); auto fileBuf = xcl::read_binary_file(binaryFile); cl::Program::Binaries bins{{fileBuf.data(), fileBuf.size()}}; int valid_device = 0; for (unsigned int i = 0; i < devices.size(); i++) { auto device = devices[i]; OCL_CHECK(err, context = cl::Context({device}, NULL, NULL, NULL, &err)); OCL_CHECK(err, q = cl::CommandQueue( context, {device}, CL_QUEUE_PROFILING_ENABLE, &err)); std::cout << "Trying to program device[" << i << "]: " << device.getInfo<CL_DEVICE_NAME>() << std::endl; OCL_CHECK(err, cl::Program program(context, {device}, bins, NULL, &err)); if (err != CL_SUCCESS) { std::cout << "Failed to program device[" << i << "] with xclbin file!\n"; } else { std::cout << "Device[" << i << "]: program successful!\n"; OCL_CHECK(err, krnl_vector_add = cl::Kernel(program, "cp_1_opt_d_ic_accel", &err)); valid_device++; break; } } if (valid_device == 0) { std::cout << "Failed to program any device found, exit!\n"; exit(EXIT_FAILURE); } OCL_CHECK(err, cl::Buffer raw_update_0_sm88_0147_read_pipe0_ocl_buf(context, CL_MEM_USE_HOST_PTR | CL_MEM_WRITE_ONLY, raw_update_0_sm88_0147_read_pipe0_size_bytes, raw_update_0_sm88_0147_read_pipe0.data(), &err)); OCL_CHECK(err, err = krnl_vector_add.setArg(0, raw_update_0_sm88_0147_read_pipe0_ocl_buf)); OCL_CHECK(err, cl::Buffer cp_1_update_0_sm98_0167_write_pipe0_ocl_buf(context, CL_MEM_USE_HOST_PTR | CL_MEM_READ_ONLY, cp_1_update_0_sm98_0167_write_pipe0_size_bytes, cp_1_update_0_sm98_0167_write_pipe0.data(), &err)); OCL_CHECK(err, err = krnl_vector_add.setArg(1, cp_1_update_0_sm98_0167_write_pipe0_ocl_buf)); OCL_CHECK(err, err = krnl_vector_add.setArg(2, num_epochs)); std::cout << "Migrating memory" << std::endl; OCL_CHECK(err, err = q.enqueueMigrateMemObjects({raw_update_0_sm88_0147_read_pipe0_ocl_buf}, 0)); unsigned long start, end, nsduration; cl::Event event; std::cout << "Starting kernel" << std::endl; OCL_CHECK(err, err = q.enqueueTask(krnl_vector_add, NULL, &event)); OCL_CHECK(err, err = event.wait()); end = OCL_CHECK(err, event.getProfilingInfo<CL_PROFILING_COMMAND_END>(&err)); start = OCL_CHECK(err, event.getProfilingInfo<CL_PROFILING_COMMAND_START>(&err)); nsduration = end - start; OCL_CHECK(err, err = q.enqueueMigrateMemObjects({cp_1_update_0_sm98_0167_write_pipe0_ocl_buf}, CL_MIGRATE_MEM_OBJECT_HOST)); q.finish(); double dnsduration = ((double)nsduration); double dsduration = dnsduration / ((double)1000000000); double dbytes = total_size_bytes; double bpersec = (dbytes / dsduration); double gbpersec = bpersec / ((double)1024 * 1024 * 1024); std::cout << "bytes = " << dbytes << std::endl; std::cout << "bytes / sec = " << bpersec << std::endl; std::cout << "GB / sec = " << gbpersec << std::endl; printf("Execution time = %f (sec) \n", dsduration); { std::ofstream regression_result("cp_1_update_0_sm98_0167_write_pipe0_accel_result.csv"); for (int i = 0; i < cp_1_update_0_sm98_0167_write_pipe0_DATA_SIZE; i++) { regression_result << ((uint16_t*) (cp_1_update_0_sm98_0167_write_pipe0.data()))[i] << std::endl; } } return 0; }
[ "setter@stanford.edu" ]
setter@stanford.edu
2497121e8f0afb16036d8f4dcafdc9ccbcb2c264
f81b774e5306ac01d2c6c1289d9e01b5264aae70
/chrome/browser/ui/views/passwords/auto_signin_first_run_dialog_view.cc
3e161fc709e0d7ee67cee46f1ef529e59754eed8
[ "BSD-3-Clause" ]
permissive
waaberi/chromium
a4015160d8460233b33fe1304e8fd9960a3650a9
6549065bd785179608f7b8828da403f3ca5f7aab
refs/heads/master
2022-12-13T03:09:16.887475
2020-09-05T20:29:36
2020-09-05T20:29:36
293,153,821
1
1
BSD-3-Clause
2020-09-05T21:02:50
2020-09-05T21:02:49
null
UTF-8
C++
false
false
3,858
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/views/passwords/auto_signin_first_run_dialog_view.h" #include "build/build_config.h" #include "chrome/browser/ui/browser_dialogs.h" #include "chrome/browser/ui/passwords/credential_manager_dialog_controller.h" #include "chrome/browser/ui/views/chrome_layout_provider.h" #include "chrome/browser/ui/views/chrome_typography.h" #include "chrome/grit/generated_resources.h" #include "components/constrained_window/constrained_window_views.h" #include "components/strings/grit/components_strings.h" #include "ui/base/l10n/l10n_util.h" #include "ui/views/border.h" #include "ui/views/controls/label.h" #include "ui/views/layout/fill_layout.h" #include "ui/views/widget/widget.h" AutoSigninFirstRunDialogView::AutoSigninFirstRunDialogView( CredentialManagerDialogController* controller, content::WebContents* web_contents) : controller_(controller), web_contents_(web_contents) { SetButtonLabel(ui::DIALOG_BUTTON_OK, l10n_util::GetStringUTF16(IDS_AUTO_SIGNIN_FIRST_RUN_OK)); SetButtonLabel(ui::DIALOG_BUTTON_CANCEL, l10n_util::GetStringUTF16(IDS_TURN_OFF)); using ControllerCallbackFn = void (CredentialManagerDialogController::*)(); auto call_controller = [](AutoSigninFirstRunDialogView* dialog, ControllerCallbackFn func) { if (dialog->controller_) { (dialog->controller_->*func)(); } }; SetAcceptCallback( base::BindOnce(call_controller, base::Unretained(this), &CredentialManagerDialogController::OnAutoSigninOK)); SetCancelCallback( base::BindOnce(call_controller, base::Unretained(this), &CredentialManagerDialogController::OnAutoSigninTurnOff)); chrome::RecordDialogCreation(chrome::DialogIdentifier::AUTO_SIGNIN_FIRST_RUN); } AutoSigninFirstRunDialogView::~AutoSigninFirstRunDialogView() { } void AutoSigninFirstRunDialogView::ShowAutoSigninPrompt() { InitWindow(); constrained_window::ShowWebModalDialogViews(this, web_contents_); } void AutoSigninFirstRunDialogView::ControllerGone() { // During Widget::Close() phase some accessibility event may occur. Thus, // |controller_| should be kept around. GetWidget()->Close(); controller_ = nullptr; } ui::ModalType AutoSigninFirstRunDialogView::GetModalType() const { return ui::MODAL_TYPE_CHILD; } base::string16 AutoSigninFirstRunDialogView::GetWindowTitle() const { return controller_->GetAutoSigninPromoTitle(); } bool AutoSigninFirstRunDialogView::ShouldShowCloseButton() const { return false; } gfx::Size AutoSigninFirstRunDialogView::CalculatePreferredSize() const { const int width = ChromeLayoutProvider::Get()->GetDistanceMetric( DISTANCE_MODAL_DIALOG_PREFERRED_WIDTH) - margins().width(); return gfx::Size(width, GetHeightForWidth(width)); } void AutoSigninFirstRunDialogView::WindowClosing() { if (controller_) controller_->OnCloseDialog(); } void AutoSigninFirstRunDialogView::InitWindow() { set_margins(ChromeLayoutProvider::Get()->GetDialogInsetsForContentType( views::TEXT, views::TEXT)); SetLayoutManager(std::make_unique<views::FillLayout>()); auto label = std::make_unique<views::Label>( controller_->GetAutoSigninText(), views::style::CONTEXT_DIALOG_BODY_TEXT, views::style::STYLE_SECONDARY); label->SetMultiLine(true); label->SetHorizontalAlignment(gfx::ALIGN_LEFT); AddChildView(label.release()); } AutoSigninFirstRunPrompt* CreateAutoSigninPromptView( CredentialManagerDialogController* controller, content::WebContents* web_contents) { return new AutoSigninFirstRunDialogView(controller, web_contents); }
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
016e8c15901648724c73125cf4e917bffbb51e99
dbfd257174fd97727733e187bda875b04bdd4642
/tsp/src/TspData.h
4179955d3da73e3ca5306b1d60ff45a6ff433b16
[]
no_license
WMielczarek/data-structures-and-algorithms
d3603b0b2b57f6d7c54db8c4c852e234bd419e7f
01a41453230da31b60ad8630f1e3f5d70663d930
refs/heads/master
2022-11-14T11:49:34.861769
2020-07-08T16:14:17
2020-07-08T16:14:17
278,135,321
0
0
null
null
null
null
UTF-8
C++
false
false
423
h
#pragma once #include <string> class TspData { int size; int **data; int **resetData; int resetSize; int randomIntFromRange(int min, int max); public: void generateData(int min, int max, int size); void print(); bool load(std::string filename); void save(std::string filename); void reset(); int getSize(); void setSize(int size); int get(int i, int j); void set(int i, int j, int value); ~TspData(); };
[ "mielczarek.woj@gmail.com" ]
mielczarek.woj@gmail.com
e9fb144ac4958cf6866233185878894c06c2636c
0b600fe68cc64779710950952d3d8bed1d3ef809
/AutowareAuto/src/drivers/spinnaker_camera_driver/src/system_wrapper.cpp
f483eb7a06ace5303a720e10a65f9acb6d3e7954
[ "Apache-2.0" ]
permissive
JRestovich/Docker-Plantium
13957695afff2862fdddcaa75e563b41da1c06ac
efbf4f7baf4f6bfe22fe337bd46273429ea429b8
refs/heads/master
2023-08-05T09:13:00.270353
2021-09-13T21:23:00
2021-09-13T21:23:00
406,120,080
0
0
null
null
null
null
UTF-8
C++
false
false
1,992
cpp
// Copyright 2020 Apex.AI, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // //    http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <spinnaker_camera_driver/system_wrapper.hpp> #include <vector> #include <memory> namespace autoware { namespace drivers { namespace camera { namespace spinnaker { SystemWrapper::SystemWrapper() : m_system{Spinnaker::System::GetInstance()} {} SystemWrapper::~SystemWrapper() { // We need to cleanup the camera list *before* we release the system instance. m_camera_list.reset(); m_system->ReleaseInstance(); } CameraListWrapper & SystemWrapper::create_cameras( const CameraSettings & camera_settings) { if (m_camera_list) { throw std::logic_error("Camera list already initialized. Cannot create cameras again."); } m_camera_list = std::make_unique<CameraListWrapper>(m_system->GetCameras(), camera_settings); return *m_camera_list; } CameraListWrapper & SystemWrapper::create_cameras( const std::vector<CameraSettings> & camera_settings) { if (m_camera_list) { throw std::logic_error("Camera list already initialized. Cannot create cameras again."); } m_camera_list = std::make_unique<CameraListWrapper>(m_system->GetCameras(), camera_settings); return *m_camera_list; } CameraListWrapper & SystemWrapper::get_cameras() { if (!m_camera_list) { throw std::logic_error("Camera list has not been initialized."); } return *m_camera_list; } } // namespace spinnaker } // namespace camera } // namespace drivers } // namespace autoware
[ "jrestovich@plantium.com" ]
jrestovich@plantium.com
d2646fe9994ee8846c2652460f4c68120f6aff29
2b7d422e78c188923158a2a0780a99eca960e746
/opt/ros/melodic/include/topic_tools/MuxDeleteRequest.h
782a8c2182ef9352ee4978038042104705fb65e5
[]
no_license
sroberti/VREP-Sandbox
4fd6839cd85ac01aa0f2617b5d6e28440451b913
44f7d42494654357b6524aefeb79d7e30599c01d
refs/heads/master
2022-12-24T14:56:10.155484
2019-04-18T15:11:54
2019-04-18T15:11:54
180,481,713
0
1
null
2022-12-14T18:05:19
2019-04-10T02:00:14
C++
UTF-8
C++
false
false
5,163
h
// Generated by gencpp from file topic_tools/MuxDeleteRequest.msg // DO NOT EDIT! #ifndef TOPIC_TOOLS_MESSAGE_MUXDELETEREQUEST_H #define TOPIC_TOOLS_MESSAGE_MUXDELETEREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> namespace topic_tools { template <class ContainerAllocator> struct MuxDeleteRequest_ { typedef MuxDeleteRequest_<ContainerAllocator> Type; MuxDeleteRequest_() : topic() { } MuxDeleteRequest_(const ContainerAllocator& _alloc) : topic(_alloc) { (void)_alloc; } typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _topic_type; _topic_type topic; typedef boost::shared_ptr< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> const> ConstPtr; }; // struct MuxDeleteRequest_ typedef ::topic_tools::MuxDeleteRequest_<std::allocator<void> > MuxDeleteRequest; typedef boost::shared_ptr< ::topic_tools::MuxDeleteRequest > MuxDeleteRequestPtr; typedef boost::shared_ptr< ::topic_tools::MuxDeleteRequest const> MuxDeleteRequestConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::topic_tools::MuxDeleteRequest_<ContainerAllocator> & v) { ros::message_operations::Printer< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace topic_tools namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False} // {'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > { static const char* value() { return "d8f94bae31b356b24d0427f80426d0c3"; } static const char* value(const ::topic_tools::MuxDeleteRequest_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xd8f94bae31b356b2ULL; static const uint64_t static_value2 = 0x4d0427f80426d0c3ULL; }; template<class ContainerAllocator> struct DataType< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > { static const char* value() { return "topic_tools/MuxDeleteRequest"; } static const char* value(const ::topic_tools::MuxDeleteRequest_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > { static const char* value() { return "string topic\n" ; } static const char* value(const ::topic_tools::MuxDeleteRequest_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.topic); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct MuxDeleteRequest_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::topic_tools::MuxDeleteRequest_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::topic_tools::MuxDeleteRequest_<ContainerAllocator>& v) { s << indent << "topic: "; Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.topic); } }; } // namespace message_operations } // namespace ros #endif // TOPIC_TOOLS_MESSAGE_MUXDELETEREQUEST_H
[ "samuel.p.roberti@gmail.com" ]
samuel.p.roberti@gmail.com
d83b53a1e84a7693736a4030803b7c1e251cbbb4
48ebb9aa139b70ed9d8411168c9bd073741393f5
/Classes/Native/mscorlib_System_Collections_ObjectModel_ReadOnlyCo2378261673.h
1ae9fb684f212d955262e1abc0695560c524e506
[]
no_license
JasonRy/0.9.1
36cae42b24faa025659252293d8c7f8bfa8ee529
b72ec7b76d3e26eb055574712a5150b1123beaa5
refs/heads/master
2021-07-22T12:25:04.214322
2017-11-02T07:42:18
2017-11-02T07:42:18
109,232,088
1
0
null
null
null
null
UTF-8
C++
false
false
1,232
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object2689449295.h" // System.Collections.Generic.IList`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct IList_1_t2733416582; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ObjectModel.ReadOnlyCollection`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct ReadOnlyCollection_1_t2378261673 : public Il2CppObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list Il2CppObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2378261673, ___list_0)); } inline Il2CppObject* get_list_0() const { return ___list_0; } inline Il2CppObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(Il2CppObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier(&___list_0, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "renxiaoyi@me.com" ]
renxiaoyi@me.com
ded59c3f049b95e71069dcd0b43cb91f69281ac1
bead866c7dd1451bf2eca3d3df1dc3ede36df444
/WebrtcCommon/libwebrtc/src/rtc_session_description_impl.cc
ea63e43e772df59edaa282970a3d7a5abb80740c
[]
no_license
asdlei99/WebrtcSDK_Net
df0f631b78e8b4f6234115367f8b417ef6818f1d
9a3f94517d408622ef14e6f2c385280b6c089948
refs/heads/master
2020-08-08T14:40:14.801050
2019-08-01T15:16:43
2019-08-01T15:16:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,551
cc
#include "rtc_session_description_impl.h" namespace libwebrtc { scoped_refptr<RTCSessionDescription> CreateRTCSessionDescription( const char* type, const char* sdp, SdpParseError* error) { webrtc::SdpParseError sdp_error; std::unique_ptr<webrtc::SessionDescriptionInterface> rtc_description( webrtc::CreateSessionDescription(type, sdp, &sdp_error)); strncpy(error->description, sdp_error.description.c_str(), sdp_error.description.size()); strncpy(error->line, sdp_error.line.c_str(), sdp_error.line.size()); scoped_refptr<RTCSessionDescriptionImpl> session_description = scoped_refptr<RTCSessionDescriptionImpl>( new RefCountedObject<RTCSessionDescriptionImpl>(std::move(rtc_description))); return session_description; } RTCSessionDescriptionImpl::RTCSessionDescriptionImpl( std::unique_ptr<webrtc::SessionDescriptionInterface> description) : description_(std::move(description)) {} const char* RTCSessionDescriptionImpl::sdp() const { description_->ToString((std::string*)&sdp_); return sdp_.c_str(); } RTCSessionDescription::SdpType RTCSessionDescriptionImpl::GetType() { return (RTCSessionDescription::SdpType)description_->GetType(); } const char* RTCSessionDescriptionImpl::type(){ type_ = description_->type(); return type_.c_str(); } bool RTCSessionDescriptionImpl::ToString(char* out, int length) { std::string tmp; if (description_->ToString(&tmp)) { strncpy(out, tmp.c_str(), length); return true; } return false; } }; // namespace libwebrtc
[ "742923150@qq.com" ]
742923150@qq.com
0574de4454b960bf6c66cebabfb2c2bc7737a13b
c136c9813c77df614f1bca1c869a5bcdbfa01d0b
/electronic_table/src/ast_visitor.h
ac488b1da89a0dd8dd00ccd69bb06084691f317f
[]
no_license
anuar-a/CPP-Yandex-belts
21076f8216b731fedb8533a388bd970b51efad61
e93ac12ec99c508fd03353d628c79c8dd16cc4a4
refs/heads/master
2023-03-26T22:40:30.225941
2021-03-28T16:36:02
2021-03-28T16:36:09
352,305,363
0
0
null
null
null
null
UTF-8
C++
false
false
1,184
h
#pragma once namespace Ast { class NumberNode; template<char op> class UnaryNode; template<char op> class BinaryNode; class CellNode; class NodeVisitor { public: virtual ~NodeVisitor() = default; virtual void Visit(const NumberNode& node); virtual void Visit(const UnaryNode<'-'>& node); virtual void Visit(const UnaryNode<'+'>& node); virtual void Visit(const BinaryNode<'+'>& node); virtual void Visit(const BinaryNode<'-'>& node); virtual void Visit(const BinaryNode<'*'>& node); virtual void Visit(const BinaryNode<'/'>& node); virtual void Visit(const CellNode& node); }; class NodeVisitorModifier { public: virtual ~NodeVisitorModifier() = default; virtual void Visit(NumberNode& node); virtual void Visit(UnaryNode<'-'>& node); virtual void Visit(UnaryNode<'+'>& node); virtual void Visit(BinaryNode<'+'>& node); virtual void Visit(BinaryNode<'-'>& node); virtual void Visit(BinaryNode<'*'>& node); virtual void Visit(BinaryNode<'/'>& node); virtual void Visit(CellNode& node); }; }
[ "anuar8989@inbox.ru" ]
anuar8989@inbox.ru
9add0fbf1bde1679d7f4bf9b5d0ca0428b67a719
21f8cdc85aa65b20c94e77b56d26966a80e183b3
/Source/SwordFly/GamePlay/PlayerController/SwordFlyPlayerController.h
68efe65d86d6d15a1a5be162c2e4fee316358216
[]
no_license
hpyyangnone/SwordFly
5de3f7d18b8e03693c9b81ecff97a1e1a44fe11d
d398c9d00c770bff0bdc59ce5fce0f4ee8b0284f
refs/heads/master
2022-12-26T01:41:15.025960
2020-10-15T09:57:22
2020-10-15T09:57:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,899
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Runtime/UMG/Public/UMG.h" #include "Blueprint/UserWidget.h" #include "GameFramework/PlayerController.h" #include "SwordFlyPlayerController.generated.h" enum class EInputMode : unsigned char; /** * */ UCLASS() class SWORDFLY_API ASwordFlyPlayerController : public APlayerController { GENERATED_BODY() public: ASwordFlyPlayerController(); //To hold a reference to our UMG HUD widget UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Player") TSubclassOf<class UUserWidget> cHUD; //HUD instance UUserWidget *HUD; //to hide or show pause menu UPROPERTY(BlueprintReadOnly, Category = "Platformer Player Controller") bool bPauseMenuDisplayed; EInputMode ModeBeforePause; bool bShowCursorBeforePause; //to hide or show the player list UPROPERTY(BlueprintReadOnly, Category = "Platformer Player Controller") bool bPlayerListDisplayed; //To setup the input component virtual void SetupInputComponent() override; //tick virtual void Tick(float DeltaTime) override; //endplay virtual void EndPlay(EEndPlayReason::Type EndPlayReason) override; void TogglePauseMenu(); void ShowPlayerList(); void HidePlayerList(); //装备信息面板 UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Player") TSubclassOf<class UUserWidget> InfoWBP; //库存 void Inventory(); bool bisInventoryOpen; UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Player") UUserWidget *InfoWBPList; UFUNCTION(BlueprintNativeEvent) void UpDateInfoWBPList(); UFUNCTION(BlueprintCallable, Category = "Platformer Player Controller") void HideAllMenus(); bool isRuning; UFUNCTION() void Run(); UFUNCTION(Server, WithValidation, Reliable) void RunServer(); UFUNCTION(NetMulticast, Reliable) void RunNetMulticast(); };
[ "974805475@qq.com" ]
974805475@qq.com
dbdc803d096b11b2bbfc570ed8e2c461d61f7bf7
427f48b76d1b312cff7af2d9b535ea333e8d154e
/cpp/utility_functional_bind12.cpp
a135779a14ec87a165e388e872a03c942452747b
[ "MIT" ]
permissive
rpuntaie/c-examples
8925146dd1a59edb137c6240363e2794eccce004
385b3c792e5b39f81a187870100ed6401520a404
refs/heads/main
2023-05-31T15:29:38.919736
2021-06-28T16:53:07
2021-06-28T16:53:07
381,098,552
1
0
null
null
null
null
UTF-8
C++
false
false
898
cpp
/* g++ --std=c++20 -pthread -o ../_build/cpp/utility_functional_bind12.exe ./cpp/utility_functional_bind12.cpp && (cd ../_build/cpp/;./utility_functional_bind12.exe) https://en.cppreference.com/w/cpp/utility/functional/bind12 */ #include <iostream> #include <iomanip> #include <algorithm> #include <functional> #include <cmath> #include <cstddef> #include <vector> int main() { std::vector<double> a = {0, 30, 45, 60, 90, 180}; std::vector<double> r(a.size()); const double pi = std::acos(-1); // since C++20 use std::numbers::pi std::transform(a.begin(), a.end(), r.begin(), std::bind1st(std::multiplies<double>(), pi / 180.)); // an equivalent lambda is: [pi](double a){ return a*pi / 180.; }); for(std::size_t n = 0; n < a.size(); ++n) std::cout << std::setw(3) << a[n] << "° = " << std::fixed << r[n] << " rad\n" << std::defaultfloat; }
[ "roland.puntaier@gmail.com" ]
roland.puntaier@gmail.com
d290e6884f614ae504f7f0d4837aa13d812036e5
22b75c8c6e917e9326fa927c777d266a067e72ea
/ThreeDimensional/MathUtil.cpp
1a8ebc3bf5e53517c6920c237bacb1fc05f91b6e
[]
no_license
derek022/ThreeDimensional
69744fc9d66ed3beb85ff26eb1640b456aba0bfc
26f925a7aaaa273845505f4aa67bf966ec8b89f3
refs/heads/master
2023-07-31T06:14:26.341044
2021-09-20T08:09:51
2021-09-20T08:09:51
355,237,840
0
0
null
null
null
null
UTF-8
C++
false
false
336
cpp
#include "MathUtil.h" #include "Vector3.h" extern const Vector3 kZeroVector(0.0f, 0.0f, 0.0f); float wrapPi(float theta) { theta += kPi; theta -= floor(theta * k1Over2Pi) * k2Pi; theta -= kPi; return theta; } float safeAcos(float x) { if (x -= -1.0f) { return kPi; } if (x >= 1.0f) { return 0.0f; } return acos(x); }
[ "14247289+derek022@users.noreply.github.com" ]
14247289+derek022@users.noreply.github.com
23fa6ed0dca5d25f24e47fd1f47be4fede461ff6
20d969f85e38763a33dcdea97af2ed39ba1656e9
/CLibs/00_char_traits.cpp
7dae33d3723fa821549ab13cffd75ba0496941fb
[]
no_license
c437yuyang/Demos_Cpp
27f69fbaeac9a09b7cd0799a6fb41e3175b11fca
d38cb838d64b0736754937c91cd91a9a4a66afe6
refs/heads/master
2020-03-11T03:36:16.336983
2019-07-14T12:14:24
2019-07-14T12:14:24
129,752,768
0
1
null
null
null
null
UTF-8
C++
false
false
247
cpp
#include <iostream> #include <string.h> int main() { std::cout << isalnum('a') << std::endl; std::cout << isalnum('1') << std::endl; std::cout << isalnum('A') << std::endl; std::cout << tolower('1') << std::endl; return 0; }
[ "954222619@qq.com" ]
954222619@qq.com
40b93a9199ed4f966b4c9f7281b8b5a1b7fac678
435dc9c6e1cd8d201f797dacd049b72f65f5ffc4
/utils_d3d11/aruco_test_d3d11.cpp
d621223e433e8ab4116101fbbe6b1bbc2891bcab
[]
no_license
ousttrue/aruco_test
b2eb59699e4afe38d1a39015bc5e1c721af6a813
17110279ac3aadc3cc4f68661b3ac601f0c417b0
refs/heads/master
2023-08-01T01:03:05.194994
2017-07-04T11:35:25
2017-07-04T11:35:25
95,970,229
0
0
null
null
null
null
UTF-8
C++
false
false
10,609
cpp
#include "capture.h" #include "detector.h" #include "win32window.h" #include "swapchain.h" #include "ThreadName.h" #include <libdxgiutil.h> #include <iostream> #include <memory> #include <thread> #include <DirectXMath.h> #include <dwrite.h> #include <opencv2/imgproc/imgproc.hpp> #define SHADERPATH L"D:/dev/_ar/aruco_sample" int main(int argc,char **argv) { // initialize capture auto capture=std::make_shared<Capture>(); if(!capture->Open(1)){ std::cerr<<"Could not open video"<<std::endl; return 2; } cv::Mat TheInputImage; if (!capture->GetFrame(TheInputImage)) { return 6; } // create window auto window = win32::RegisterAndCreateWindow( GetModuleHandle(NULL), TEXT("aruco_test_d3d11_class"), TEXT("aruco_test_d3d11"), 640, 480); if (!window){ return 3; } int iWidth = 640; int iHeight = 480; auto callback = [&iWidth, &iHeight](int w, int h){ iWidth = w; iHeight = h; }; window->addResizeCallback(callback); ShowWindow(window->GetHandle(), SW_SHOW); { // Initialize DXGI Device auto deviceManager = dxgiutil::DeviceManager::Create(); if (!deviceManager){ return 4; } // Create Swapchain auto swapchain = deviceManager->CreateSwapchain(window->GetHandle()); if (!swapchain){ return 5; } std::weak_ptr<dxgiutil::Swapchain> weakSC(swapchain); window->addResizeCallback([weakSC](int w, int h){ auto sc = weakSC.lock(); if (sc){ sc->SetSize(w, h); } }); window->addKeyDownCallback([weakSC](HWND hWnd, int key){ auto sc = weakSC.lock(); if (sc){ switch (key) { case VK_ESCAPE: PostMessage(hWnd, WM_CLOSE, 0, 0); break; case VK_F11: sc->SetFullscreen(!sc->IsFullscreen()); break; } } }); // renderer auto deferredRenderer = std::make_shared<dxgiutil::DeferredDeviceContext>( deviceManager->GetD3D11Device()); auto deferredCapture = std::make_shared<dxgiutil::DeferredDeviceContext>( deviceManager->GetD3D11Device()); deferredRenderer->AddSubcontext(deferredCapture); auto deferredMarker = std::make_shared<dxgiutil::DeferredDeviceContext>( deviceManager->GetD3D11Device()); deferredRenderer->AddSubcontext(deferredMarker); std::shared_ptr<dxgiutil::Texture> captureTexture; std::shared_ptr<dxgiutil::Texture> renderTexture; { captureTexture= deviceManager->CreateTexture(TheInputImage.size().width, TheInputImage.size().height , 4); renderTexture = deviceManager->CreateTexture(TheInputImage.size().width, TheInputImage.size().height , 4); } auto sampler = deviceManager->CreateSampler(); // background capture image { auto rect = std::make_shared<dxgiutil::Shader>(); if (!rect->Initialize(deviceManager->GetD3D11Device(), SHADERPATH L"/utils_d3d11/rect.hlsl", "VS", "GS", "PS")){ return 6; } auto ia = std::make_shared<dxgiutil::InputAssemblerSource>(); if (!ia->CreateRectForGS(deviceManager->GetD3D11Device())){ return 7; } rect->SetIA(ia); deferredRenderer->AddPipeline(rect); rect->SetTexture("tex0", captureTexture); rect->SetSampler("sample0", sampler); } { auto rect = std::make_shared<dxgiutil::Shader>(); if (!rect->Initialize(deviceManager->GetD3D11Device(), SHADERPATH L"/utils_d3d11/rect.hlsl", "VS", "GS", "PS")){ return 6; } auto ia = std::make_shared<dxgiutil::InputAssemblerSource>(); if (!ia->CreateRectForGS(deviceManager->GetD3D11Device())){ return 7; } rect->SetIA(ia); deferredRenderer->AddPipeline(rect); rect->SetTexture("tex0", renderTexture); rect->SetSampler("sample0", sampler); } // capture thread bool stop = false; int captureFPS; auto captureLoop = [&stop, &iWidth, &iHeight, capture, captureTexture , deferredCapture, deviceManager, deferredMarker, renderTexture]() { // detector Detector detector; cv::Mat TheInputImage; cv::Mat TheResizedImage; cv::Mat The32bit; while (!stop){ if (!capture->GetFrame(TheInputImage)){ Sleep(33); continue; } capture->Resize(TheInputImage, iWidth, iHeight, TheResizedImage); cv::cvtColor(TheResizedImage, The32bit, CV_BGR2RGBA, 4); /////////////////////////////////// // intrinsics float ratioX = iWidth / (float)TheInputImage.size().width; float ratioY = iHeight / (float)TheInputImage.size().height; float f = 628.0f; float fx = f; float cx = TheInputImage.cols*0.5f; float fy = f; float cy = TheInputImage.rows*0.5f; float tmp[] = { fx, 0, cx, 0, fy, cy, 0, 0, 1.0f, }; cv::Mat intrinsics(3, 3, CV_32FC1, tmp); // Projection double zNear = 0.05; double zFar = 10; //float aspect = (float)iWidth / (float)iHeight; float aspect = (float)TheInputImage.size().width / (float)TheInputImage.size().height; float fovy = 2.0f * (float)atan(cy / fy); auto p = DirectX::XMMatrixPerspectiveFovLH(fovy, aspect, zNear, zFar); DirectX::XMFLOAT4X4 projMatrix; DirectX::XMStoreFloat4x4(&projMatrix, p); // View auto sy = DirectX::XMMatrixScaling(1.0f, -1.0f, 1.0f); DirectX::XMFLOAT4X4 viewMatrix; DirectX::XMStoreFloat4x4(&viewMatrix, sy); try{ // Model auto markers = detector.Detect(TheInputImage, intrinsics); deferredMarker->ResizePipelines(markers); for (size_t i = 0; i < markers; ++i){ float modelview_matrix[16]; detector.GetModelViewMatrix(i, modelview_matrix); auto marker = deferredMarker->GetPipeline(i); if (!marker){ auto device = deviceManager->GetD3D11Device(); marker = std::make_shared<dxgiutil::Shader>(); if (!marker->Initialize(device, SHADERPATH L"/utils_d3d11/marker.hlsl", "VS", "", "PS")){ //return; } auto ia = std::make_shared<dxgiutil::InputAssemblerSource>(); if (!ia->CreateRect(device, detector.GetMarkerSize())){ //return; } marker->SetIA(ia); deferredMarker->SetPipeline(i, marker); } marker->SetCB("ModelMatrix", *((const DirectX::XMFLOAT4X4*)modelview_matrix)); marker->SetCB("ViewMatrix", viewMatrix); marker->SetCB("ProjectionMatrix", projMatrix); } auto rtv = renderTexture->GetRTV(); if (rtv){ float clear[] = { 0, 0, 0, 0 }; //deferredMarker->GetContext()->ClearRenderTargetView(rtv.Get(), clear); deferredMarker->RenderPipelines(rtv, iWidth, iHeight); } } catch (const cv::Exception &ex) { std::cerr << ex.what() << std::endl; } // update capture texture deferredCapture->OnFrame(captureTexture->GetTexture() , The32bit.data, The32bit.step*The32bit.rows, The32bit.step); } }; std::thread captureTask(captureLoop); // rendering thread //////////////////////////////////////////////////////////// // rendering thread //////////////////////////////////////////////////////////// auto renderTask = [&stop, deviceManager, swapchain, deferredRenderer, &captureFPS , captureTexture]() { SetThreadName("RenderingThread"); // d3d Microsoft::WRL::ComPtr<ID3D11DeviceContext> pContext; deviceManager->GetD3D11Device()->GetImmediateContext(&pContext); // d2d auto d2d = deviceManager->GetD2D1DeviceContext(); // brush Microsoft::WRL::ComPtr<ID2D1SolidColorBrush> brush; d2d->CreateSolidColorBrush(D2D1::ColorF(D2D1::ColorF::White), &brush); // dwrite Microsoft::WRL::ComPtr<IDWriteFactory> pDWriteFactory; if (FAILED(DWriteCreateFactory( DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory), &pDWriteFactory ))){ return; } Microsoft::WRL::ComPtr<IDWriteTextFormat> textFormat; if (FAILED(pDWriteFactory->CreateTextFormat( L"Gabriola", // Font family name. NULL, // Font collection (NULL sets it to use the system font collection). DWRITE_FONT_WEIGHT_REGULAR, DWRITE_FONT_STYLE_NORMAL, DWRITE_FONT_STRETCH_NORMAL, 72.0f, L"en-us", &textFormat ))){ return; } if (FAILED(textFormat->SetTextAlignment(DWRITE_TEXT_ALIGNMENT_LEADING))){ return; } if (FAILED(textFormat->SetParagraphAlignment(DWRITE_PARAGRAPH_ALIGNMENT_CENTER))){ return; } // timer int frameCount = 0; int frameCountParSecond = 0; int renderFPS = 0; DWORD lastSecond = 0; while (!stop) { // update ++frameCount; ++frameCountParSecond; auto now = timeGetTime(); auto nowSecond = now / 1000; if (nowSecond != lastSecond){ renderFPS = frameCountParSecond; frameCountParSecond = 0; lastSecond = nowSecond; } // backbuffer auto backbuffer = swapchain->GetBackBuffer(); if (!backbuffer){ //std::cout << "no backbuffer. recreate" << std::endl; deferredRenderer->SetCommandList(nullptr); continue; } int width = backbuffer->GetDesc().Width; int height = backbuffer->GetDesc().Height; deferredRenderer->RenderPipelines(backbuffer->GetRTV(), width, height); { deferredRenderer->ExecuteCommandList(pContext); } auto bitmap = backbuffer->GetD2D1Bitmap(d2d); if (bitmap) { d2d->SetTarget(bitmap.Get()); d2d->BeginDraw(); D2D1_RECT_F layoutRect = D2D1::RectF( 0, 0, (float)width, (float)height ); std::wstringstream ss; ss //<< "frame: " << frameCount << std::endl << L"Rendering fps: " << renderFPS << std::endl << L"Capture fps:" << captureFPS << std::endl ; std::wstring text = ss.str(); d2d->DrawText( text.c_str(), // The string to render. text.size(), // The string's length. textFormat.Get(), // The text format. layoutRect, // The region of the window where the text will be rendered. brush.Get() // The brush used to draw the text. ); d2d->EndDraw(); d2d->SetTarget(nullptr); } swapchain->Present(); } }; std::thread renderThread(renderTask); // start message pump MSG msg; while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } stop = true; captureTask.join(); renderThread.join(); return msg.wParam; } }
[ "ousttrue@gmail.com" ]
ousttrue@gmail.com
a16888eafd6aa1d02f243e1a35c7c3b59b87186d
ca0b94e75b24d4eeab8f9e41c17ecd24211aea59
/NetwordLibrary/Net/Channel.h
ae13b3f3189e379e3c343aca0349b4842a1833e9
[]
no_license
iwillusethenameaslongasican/c-11Network-library-based-on-Muduo
2252a6deaf212f59b95894af8d253c831bd5a941
9fe66be5a207647a0f083f71d35e4204418726d6
refs/heads/master
2020-05-22T00:35:58.754392
2017-03-13T00:32:15
2017-03-13T00:32:15
84,656,076
2
1
null
null
null
null
UTF-8
C++
false
false
5,671
h
// // Created by jackson on 17-3-11. // #ifndef SIMPLENETWORDLIBRARY_CHANNEL_H #define SIMPLENETWORDLIBRARY_CHANNEL_H #include <memory> #include "../Base/TimeStamp.h" namespace Mu{ namespace Net{ class EventLoop; //事件处理器 对一个套接字(也可以是其他类型的描述符进行包装)进行包装 //但是Channel不拥有这个描述符 也就是它不负责这个描述符的生命期 //Channel一般不由用户直接使用,而是一般使用更高层的封装,例如Tcpconnection //Channel的owner负责Channel的生命期,同时也管理套接字(描述符)的生命期 class Channel { public: typedef std::function<void()> EventCallback; typedef std::function<void(Mu::Base::Timestamp)> ReadEventCallback; //禁止复制 Channel(const Channel &channel) = delete; Channel& operator=(const Channel &channel) = delete; //构造函数 Channel(EventLoop *loop, int fd): loop_(loop), fd_(fd), events_(0), revents_(0), index_(-1), tied_(false), logHug_(true), eventHandling_(false), addedToLoop_(false) {} ~Channel(); //处理事件 void handleEvent(Mu::Base::Timestamp receiveTime); //设置回调函数 void setReadCallback(const ReadEventCallback&& readCallback) { readCallback_ = std::move(readCallback); } void setWriteCallback(const EventCallback&& writeCallback) { writeCallback_ = std::move(writeCallback); } void setCloseCallback(const EventCallback&& closeCallback) { closeCallback_ = std::move(closeCallback); } void setErrorCallback(const EventCallback&& errorCallback) { errorCallback_ = std::move(errorCallback); } //返回文件描述符 int fd() const { return fd_; } //返回事件 int events() const { return events_; } //设置事件 void set_revent(int revent) { revents_ = revent; } //判断是否有事件 bool isNoneEvent() const { return events_ == kNoneEvent; } //启动写 void enableWrite() { events_ |= kWriteEvent; update(); } //启动读 void enableRead() { events_ |= kReadEvent; update(); } //禁止写 void disableWrite() { events_ &= ~kWriteEvent; update(); } //禁止读 void disableRead() { events_ &= ~kReadEvent; update(); } //禁止所有 void disableAll() { events_ = kNoneEvent; update(); } //判断是否在写 bool isWriting() const { return (events_ & kWriteEvent); } //返回索引 int index() const { return index_; } //设置索引 void set_index(int index) { index_ = index; } //把当前的chanel绑定到它的由shared_ptr管理的owner对象 //防止owner对象在handleEvent时析构 //tie:把当前channel(事件处理器)依附到某一个对象上 void tie(const std::shared_ptr<void> &); //用于调试 把事件转换成字符串 std::string eventToString(); std::string reventToString(); //不记录pollhup事件(POLLHUP 对方描述符挂起) void doNotLogHup() { logHug_ = false; } //返回所属的时间循环 EventLoop * ownerLoop() { return loop_; } //从事件循环对象中把中间删除 void remove(); private: static std::string eventsToString(int fd, int event); //更新 void update(); //处理事件 void handleEventWithGuard(Mu::Base::Timestamp receiveTime); //没事件 static const int kNoneEvent; //读事件 static const int kWriteEvent; //写事件 static const int kReadEvent; //所属的事件循环 EventLoop *loop_; //文件描述符 注意:Channel负责它的生命期 它的生命期由Channle的Owner复制 const int fd_; //当前的事件 int events_; //epoll返回时的活动事件 int revents_; //索引 被Poller使用 表示在poll的事件数组中的序号 epoll中的状态 int index_; //用于把直接依附到某一个对象上 // tie()的作用是防止Channel::handleEvent() 运行期间其 owner 对象析构,导致 Channel 本身被销毁 std::weak_ptr<void> tie_; bool tied_; //是否记录pollhup事件(POLLHUP 对方描述符挂起) bool logHug_; //是否正在处理事件 bool eventHandling_; //是否已经被添加到事件队列 bool addedToLoop_; //读事件的回调 ReadEventCallback readCallback_; //写事件的回调 EventCallback writeCallback_; //关闭事件的回调 EventCallback closeCallback_; //错误事件的回调 EventCallback errorCallback_; }; } } #endif //SIMPLENETWORDLIBRARY_CHANNEL_H
[ "ithinkily@vip.qq.com" ]
ithinkily@vip.qq.com
0b939e08d4716eda524507f238c36c2fc71b1804
c25be62d3fcf5806de093c6b61f4203e0654728b
/MySTD/src/MySTD/string.cpp
4280da59d7ec07f048a1beca2cdc8a9a6f26ccd9
[]
no_license
danhayes1996/MyStandardLib
4d6eddb300fc86083018c43cf05aa9d042942c79
1c3b8e89bda584f76f165096311a572f0210f395
refs/heads/master
2020-03-07T12:08:41.176472
2019-09-19T15:13:42
2019-09-19T15:13:42
127,467,564
0
0
null
null
null
null
UTF-8
C++
false
false
12,799
cpp
#include "string.h" #include <stdexcept> namespace mystd { string::string() { m_BufferCount = 0; m_Buffer = new char[1]; m_Buffer[0] = 0; } string::string(const char* text) { m_BufferCount = strlen(text); m_Buffer = new char[m_BufferCount + 1]; memcpy(m_Buffer, text, m_BufferCount); m_Buffer[m_BufferCount] = 0; } string::string(const string& text) : string(text.m_Buffer) { } string::string(const string& text, size_t pos, size_t length/* = npos*/) { *this = text.substr(pos, length); } string::string(const char* text, size_t length) : m_Buffer(new char[length + 1]), m_BufferCount(length) { memcpy(m_Buffer, text, m_BufferCount); m_Buffer[m_BufferCount] = 0; } string::string(const std::initializer_list<char> list) : m_Buffer(new char[list.size() + 1]), m_BufferCount(list.size()) { for (unsigned int i = 0; i < list.size(); i++) m_Buffer[i] = *(list.begin() + i); m_Buffer[m_BufferCount] = 0; } string::~string() { delete[] m_Buffer; } bool string::starts_with(char c) const { return m_Buffer[0] == c; } bool string::starts_with(const string& charSeq) const { for (size_t i = 0; i < charSeq.m_BufferCount; i++) if (m_Buffer[i] != charSeq.m_Buffer[i]) return false; return true; } bool string::ends_with(char c) const { return m_Buffer[m_BufferCount - 1] == c; } bool string::ends_with(const string& charSeq) const { for (size_t i = 0; i < charSeq.m_BufferCount; i++) if (m_Buffer[m_BufferCount - charSeq.m_BufferCount + i] != charSeq[i]) return false; return true; } bool string::is_alpha() const { for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] < 'A' || (m_Buffer[i] > 'Z' && m_Buffer[i] < 'a') || m_Buffer[i] > 'z') return false; } return true; } bool string::is_numeric() const { for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] < '0' || m_Buffer[i] > '9') return false; } return true; } bool string::is_alphanumeric() const { for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] < '0' || (m_Buffer[i] > '9' && m_Buffer[i] < 'A') || (m_Buffer[i] > 'Z' && m_Buffer[i] < 'a') || m_Buffer[i] > 'z') return false; } return true; } size_t string::index_of(char c, int index/* = 0*/) const { for (size_t i = index; i < m_BufferCount; i++) if (m_Buffer[i] == c) return i; return npos; } size_t string::index_of(const string& charSeq, int index/* = 0*/) const { for (size_t i = index; i < m_BufferCount; i++) { bool found = true; for (size_t j = 0; j < charSeq.m_BufferCount; j++) { if (m_Buffer[i + j] != charSeq.m_Buffer[j]) { found = false; break; } } if (found) return i; } return npos; } size_t string::last_index_of(char c, size_t index/* = npos*/) const { if (index >= m_BufferCount) index = m_BufferCount; for (size_t i = index; i >= 0; i--) if (m_Buffer[i] == c) return i; return string::npos; } size_t string::last_index_of(const string& charSeq, size_t index/* = npos*/) const { if (index >= m_BufferCount) index = m_BufferCount; for (int i = index - charSeq.m_BufferCount; i >= 0; i--) { bool found = true; for (size_t j = 0; j < charSeq.m_BufferCount; j++) { if (m_Buffer[i + j] != charSeq.m_Buffer[j]) { found = false; break; } } if (found) return i; } return npos; } size_t string::occurrences(char c, size_t index/* = 0*/) const { size_t cnt = 0; for (size_t i = index; i < m_BufferCount; i++) if (m_Buffer[i] == c) cnt++; return cnt; } size_t string::occurrences(const string& charSeq, size_t index/* = 0*/) const { if (charSeq.m_BufferCount == 0 || m_BufferCount == 0 || m_BufferCount < charSeq.m_BufferCount) return 0; size_t cnt = 0; for (size_t i = index; i < m_BufferCount - charSeq.m_BufferCount; i++) { bool found = true; for (size_t j = 0; j < charSeq.m_BufferCount; j++) { if (m_Buffer[i + j] != charSeq.m_Buffer[j]) { found = false; break; } } if (found) { cnt++; i += charSeq.m_BufferCount - 1; //extra 1 gets added at the start of the next loop } } return cnt; } string string::substr(size_t pos/* = 0*/, size_t length/* = npos*/) const { if (pos >= m_BufferCount) throw std::out_of_range("pos is greater than the string length"); if (length >= m_BufferCount) length = m_BufferCount - pos; if (length == 0) return string(); char* buffer = new char[length + 1]; for (size_t i = 0; i < length; i++) buffer[i] = m_Buffer[pos + i]; buffer[length] = 0; string res = buffer; delete[] buffer; return res; } string string::to_lower() const { char* buffer = new char[m_BufferCount + 1]; for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] >= 'A' && m_Buffer[i] <= 'Z') buffer[i] = m_Buffer[i] + 32; else buffer[i] = m_Buffer[i]; } buffer[m_BufferCount] = 0; string res = buffer; delete[] buffer; return res; } string string::to_upper() const { char* buffer = new char[m_BufferCount + 1]; for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] >= 'a' && m_Buffer[i] <= 'z') buffer[i] = m_Buffer[i] - 32; else buffer[i] = m_Buffer[i]; } buffer[m_BufferCount] = 0; string res = buffer; delete[] buffer; return res; } string string::to_proper() const { char* buffer = new char[m_BufferCount + 1]; bool prevIsSpace = true; for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] == ' ') { prevIsSpace = true; buffer[i] = m_Buffer[i]; } else if (m_Buffer[i] >= 'a' && m_Buffer[i] <= 'z' && prevIsSpace) { buffer[i] = m_Buffer[i] - 32; prevIsSpace = false; } else { buffer[i] = m_Buffer[i]; prevIsSpace = false; //for cases where the first character in a word isnt a letter (e.g. "123abc") } } buffer[m_BufferCount] = 0; string res = buffer; delete[] buffer; return res; } string string::reverse() const { char* buffer = new char[m_BufferCount + 1]; for (size_t i = 0; i < m_BufferCount; i++) buffer[i] = m_Buffer[m_BufferCount - i - 1]; buffer[m_BufferCount] = 0; string res = buffer; delete[] buffer; return res; } string string::trim() const { int start = 0, end = m_BufferCount - 1; while (m_Buffer[start] == ' ') start++; while (m_Buffer[end] == ' ') end--; return substr(start, end + 1); } string string::unique(bool keepSpaces /*= true*/) const { char* str = new char[m_BufferCount + 1]; size_t index = 0; //keep track of index of str (str[index]) for (int i = 0; i < (int)m_BufferCount; i++) { bool isDuplicate = false; if ((keepSpaces && m_Buffer[i] != ' ') || !keepSpaces) { for (int j = i - 1; j >= 0; j--) { if (m_Buffer[i] == m_Buffer[j]) { isDuplicate = true; break; } } } if (!isDuplicate) str[index++] = m_Buffer[i]; } str[index] = 0; string res = str; delete[] str; return res; } void string::clear() { delete[] m_Buffer; m_Buffer = new char[1]; m_Buffer[0] = 0; m_BufferCount = 0; } size_t string::words() const { size_t cnt = 0; bool prevIsSpace = true; for (size_t i = 0; i < m_BufferCount; i++) { if (m_Buffer[i] == ' ') { prevIsSpace = true; } else if (m_Buffer[i] != ' ' && prevIsSpace) { cnt++; prevIsSpace = false; } } return cnt; } arraylist<string> string::split(char c /*= ' '*/) const { arraylist<string> list(occurrences(c)); size_t from = 0; size_t to = index_of(c); do { if (m_Buffer[from] != c) list.push_back(substr(from, to - from)); from = to + 1; to = index_of(c, from); } while (to != -1); //add the rest of the string to the list if the last character isnt the same as c. if (m_Buffer[m_BufferCount - 1] != c) list.push_back(substr(last_index_of(c) + 1)); return list; } string string::hex() const { //credit for this function goes to fredoverflow for their answer here: https://stackoverflow.com/questions/3381614/c-convert-string-to-hexadecimal-and-vice-versa static const char* hex_vals = "0123456789ABCDEF"; char* buffer = new char[m_BufferCount * 3]; //each character will have 2 characters (from hex_vals) followed by a space (last space will be replaced with null) size_t index = 0; //current index in the buffer above for (size_t i = 0; i < m_BufferCount; i++) { char c = m_Buffer[i]; buffer[index++] = hex_vals[c >> 4]; buffer[index++] = hex_vals[c & 15]; buffer[index++] = ' '; } buffer[m_BufferCount * 3 - 1] = 0; string res = buffer; delete[] buffer; return res; } string string::binary() const { char* buffer = new char[m_BufferCount * 9]; //each character will have 8 numbers (1 or 0) followed by a space (last space will be replaced with null) string temp = m_Buffer; //edit a copy of this string instead of the actual one size_t index = 0; //current index in the buffer above for (size_t i = 0; i < m_BufferCount; i++) { for (int b = 128; b > 0; b /= 2) { if (temp.m_Buffer[i] - b >= 0) { buffer[index++] = '1'; temp.m_Buffer[i] -= b; } else { buffer[index++] = '0'; } } buffer[index++] = ' '; } buffer[m_BufferCount * 9 - 1] = 0; string res = buffer; delete[] buffer; return res; } string::iterator string::begin() { return &m_Buffer[0]; } string::const_iterator string::begin() const { return &m_Buffer[0]; } string::const_iterator string::cbegin() const { return &m_Buffer[0]; } string::reverse_iterator string::rbegin() { return &m_Buffer[m_BufferCount - 1]; } string::const_reverse_iterator string::crbegin() const { return &m_Buffer[m_BufferCount - 1]; } string::iterator string::end() { return &m_Buffer[m_BufferCount]; } string::const_iterator string::end() const { return &m_Buffer[m_BufferCount]; } string::const_iterator string::cend() const { return &m_Buffer[m_BufferCount]; } string::reverse_iterator string::rend() { return &m_Buffer[-1]; } string::const_reverse_iterator string::crend() const { return &m_Buffer[-1]; } char& string::at(size_t index) { if (index >= m_BufferCount) throw std::out_of_range("index is greater than the string length"); return m_Buffer[index]; } const char& string::at(size_t index) const { if (index >= m_BufferCount) throw std::out_of_range("index is greater than the string length"); return m_Buffer[index]; } char& string::operator[](size_t index) { return at(index); } const char& string::operator[](size_t index) const { return at(index); } string& string::operator=(const string& other) { delete[] m_Buffer; m_BufferCount = other.m_BufferCount; m_Buffer = new char[m_BufferCount + 1]; memcpy(m_Buffer, other.m_Buffer, m_BufferCount); m_Buffer[m_BufferCount] = 0; return *this; } string operator+(const string& left, const string& right) { char* buffer = new char[left.m_BufferCount + right.m_BufferCount + 1]; for (size_t i = 0; i < left.m_BufferCount; i++) buffer[i] = left.m_Buffer[i]; for (size_t i = 0; i < right.m_BufferCount; i++) buffer[left.m_BufferCount + i] = right.m_Buffer[i]; buffer[left.m_BufferCount + right.m_BufferCount] = 0; string res = string(buffer); delete[] buffer; return res; } //alphabetical > operator bool operator>(const string& left, const string& right) { for (size_t i = 0; i < left.m_BufferCount; i++) if (left.m_Buffer[i] > right.m_Buffer[i]) return true; return false; } bool operator<(const string& left, const string& right) { for (size_t i = 0; i < left.m_BufferCount; i++) if (left.m_Buffer[i] < right.m_Buffer[i]) return true; return false; } bool operator>=(const string& left, const string& right) { return !(left < right); } bool operator<=(const string& left, const string& right) { return !(left > right); } bool operator==(const string& left, const string& right) { if (left.m_BufferCount != right.m_BufferCount) return false; for (size_t i = 0; i < left.m_BufferCount; i++) if (left[i] != right[i]) return false; return true; } bool operator!=(const string& left, const string& right) { return !(right == left); } std::ostream& operator<<(std::ostream& stream, const string& text) { return stream << text.m_Buffer; } std::istream& operator>>(std::istream& stream, string& obj) { char* buffer = new char[MAX_STRING_LENGTH]; stream.getline(buffer, MAX_STRING_LENGTH, '\n'); //set obj data obj.m_BufferCount = strlen(buffer); obj.m_Buffer = new char[obj.m_BufferCount + 1]; memcpy(obj.m_Buffer, buffer, obj.m_BufferCount); obj.m_Buffer[obj.m_BufferCount] = 0; delete[] buffer; return stream; } }
[ "dan.hayes1996@gmail.com" ]
dan.hayes1996@gmail.com
79f5e4014968df90a5c24b6f91117fca0fd9455d
1776b36a0467747b540fc5ee4755ea8ea79938d9
/Homebase/Entities/Starfield.h
231f8d561d8c93ffd070533d08dc2ba832f55321
[ "MIT" ]
permissive
Mesiow/Homebase
699da42125d1401e9531a30e06347ca74b0d97dc
1999ad707b88623e2f21bcac837e4c2e32180cc1
refs/heads/main
2023-03-08T09:39:47.071382
2021-02-27T01:41:39
2021-02-27T01:41:39
338,489,766
0
0
MIT
2021-02-25T02:33:58
2021-02-13T03:38:59
C++
UTF-8
C++
false
false
473
h
#pragma once #include <Thor/Math.hpp> #include <SFML/Graphics.hpp> #include "../Constants.h" struct Star { sf::Vertex vert; }; class Starfield { public: Starfield(); ~Starfield(); void render(sf::RenderTarget& target); void update(); void setStarCount(int count); /* Populate the arena with stars */ void populate(); private: void initBorder(); void addStar(Star &star); private: sf::VertexArray _stars; int _starCount; sf::RectangleShape _border; };
[ "34993144+Mesiow@users.noreply.github.com" ]
34993144+Mesiow@users.noreply.github.com
1449ebb489ce7fbf0b765cc6bb213b0226b1c6d9
6249ee47c32a45eaa5b39ca8f0b46638d3cf26ba
/src/Scene/ParticleAttributeBuffers.cpp
b68155d352393c7151d9279084df82519aaf9beb
[]
no_license
lubosz/Flewnit
1f52f4d805452353eb9b05e68e249ee0e3dfb983
8b3cfd14d579f6be8472844a8cf0295b1ea23771
refs/heads/master
2021-01-17T07:31:12.844479
2011-05-05T22:38:14
2011-05-05T22:38:14
1,466,428
0
0
null
null
null
null
UTF-8
C++
false
false
14,380
cpp
/* * ParticleAttributeBuffers.cpp * * Created on: Apr 27, 2011 * Author: tychi */ #include "ParticleAttributeBuffers.h" #include "Buffer/BufferSharedDefinitions.h" #include "Buffer/Buffer.h" #include "Buffer/PingPongBuffer.h" #define FLEWNIT_INCLUDED_BY_APPLICATION_SOURCE_CODE #include "MPP/OpenCLProgram/ProgramSources/common/physicsDataStructures.cl" #undef FLEWNIT_INCLUDED_BY_APPLICATION_SOURCE_CODE #include "Util/HelperFunctions.h" #include "URE.h" #include "Util/Log/Log.h" namespace Flewnit { ParticleAttributeBuffers::ParticleAttributeBuffers( unsigned int numTotalParticles, unsigned int invalidObjectID, bool initToInvalidObjectID) : mNumTotalParticles(numTotalParticles) { Buffer* ping; Buffer* pong; BufferInfo glCLSharedIndexBufferInfo( "particleIndexTableBuffer", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), INDEX_SEMANTICS, TYPE_UINT32, numTotalParticles, BufferElementInfo(1,GPU_DATA_TYPE_UINT,32,false), VERTEX_INDEX_BUFFER_TYPE, NO_CONTEXT_TYPE ); mParticleIndexTableBuffer = new Buffer( glCLSharedIndexBufferInfo, true, 0 ); //----- following the differnt index ping pong buffers BufferInfo glCLSharedZIndicesBufferInfo( "particleZIndicesBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), Z_INDEX_SEMANTICS, TYPE_UINT32, //numTotalParticles *2, numTotalParticles, BufferElementInfo(1,GPU_DATA_TYPE_UINT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedZIndicesBufferInfo, true, 0 ); glCLSharedZIndicesBufferInfo.name = "particleZIndicesBufferPong"; pong = new Buffer( glCLSharedZIndicesBufferInfo, true, 0 ); mZIndicesPiPoBuffer = new PingPongBuffer("particleZIndicesPiPoBuffer",ping,pong); BufferInfo glCLSharedOldIndicesBufferInfo( "particleOldIndicesBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), CUSTOM_SEMANTICS, //actually, it is not planned to bind this buffer as vertex attribute to GL, //hence it has no real semantics, it is just a helper buffer for sorting; //but maybe for debug purposes, one would want to bind it anyway ;(... TYPE_UINT32, //numTotalParticles *2, numTotalParticles, BufferElementInfo(1,GPU_DATA_TYPE_UINT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedOldIndicesBufferInfo, true, 0 ); glCLSharedOldIndicesBufferInfo.name = "particleOldIndicesBufferPong"; pong = new Buffer( glCLSharedOldIndicesBufferInfo, true, 0 ); mOldIndicesPiPoBuffer = new PingPongBuffer("particleOldIndicesPiPoBuffer",ping,pong); BufferInfo glCLSharedObjectInfoBufferInfo( "particleObjectInfoBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), PRIMITIVE_ID_SEMANTICS, TYPE_UINT32, numTotalParticles, BufferElementInfo(1,GPU_DATA_TYPE_UINT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedObjectInfoBufferInfo, true, 0 ); glCLSharedObjectInfoBufferInfo.name = "particleObjectInfoBufferPong"; pong = new Buffer( glCLSharedObjectInfoBufferInfo, true, 0 ); mObjectInfoPiPoBuffer = new PingPongBuffer("particleObjectInfoPiPoBuffer",ping,pong); //------------------------------------------------------------------------------------------------------------------- //beginning with the actual physical attributes: BufferInfo glCLSharedPositionsBufferInfo( "particlePositionsBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), POSITION_SEMANTICS, TYPE_VEC4F, numTotalParticles, BufferElementInfo(4,GPU_DATA_TYPE_FLOAT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedPositionsBufferInfo, true, 0 ); glCLSharedPositionsBufferInfo.name = "particlePositionsBufferPong"; pong = new Buffer( glCLSharedPositionsBufferInfo, true, 0 ); mPositionsPiPoBuffer = new PingPongBuffer("particlePositionsPiPoBuffer",ping,pong); BufferInfo glCLSharedDensitiesBufferInfo( "particleDensitiesBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), DENSITY_SEMANTICS, TYPE_FLOAT, numTotalParticles, BufferElementInfo(1,GPU_DATA_TYPE_FLOAT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedDensitiesBufferInfo, true, 0 ); glCLSharedDensitiesBufferInfo.name = "particleDensitiesBufferPong"; pong = new Buffer( glCLSharedDensitiesBufferInfo, true, 0 ); mDensitiesPiPoBuffer = new PingPongBuffer("particleDensitiesPiPoBuffer",ping,pong); BufferInfo glCLSharedVelocitiesBufferInfo( "particleCorrectedVelocitiesBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), VELOCITY_SEMANTICS, TYPE_VEC4F, numTotalParticles, BufferElementInfo(4,GPU_DATA_TYPE_FLOAT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedVelocitiesBufferInfo, true, 0 ); glCLSharedVelocitiesBufferInfo.name = "particleCorrectedVelocitiesBufferPong"; pong = new Buffer( glCLSharedVelocitiesBufferInfo, true, 0 ); mCorrectedVelocitiesPiPoBuffer = new PingPongBuffer("particleCorrectedVelocitiesPiPoBuffer",ping,pong); //at least one time, a buffer infor object can be reused ;) glCLSharedVelocitiesBufferInfo.name = "particlePredictedVelocitiesBufferPing"; ping = new Buffer( glCLSharedVelocitiesBufferInfo, true, 0 ); glCLSharedVelocitiesBufferInfo.name = "particlePredictedVelocitiesBufferPong"; pong = new Buffer( glCLSharedVelocitiesBufferInfo, true, 0 ); mPredictedVelocitiesPiPoBuffer = new PingPongBuffer("particlePredictedVelocitiesPiPoBuffer",ping,pong); BufferInfo glCLSharedAccelerationsBufferInfo( "particleAccelerationsBufferPing", //all three contexts; ContextTypeFlags( HOST_CONTEXT_TYPE_FLAG | OPEN_GL_CONTEXT_TYPE_FLAG | OPEN_CL_CONTEXT_TYPE_FLAG), FORCE_SEMANTICS, //k, have to refactor ;(.. but F=m*a, particle mass is known ;) TYPE_VEC4F, numTotalParticles, BufferElementInfo(4,GPU_DATA_TYPE_FLOAT,32,false), VERTEX_ATTRIBUTE_BUFFER_TYPE, NO_CONTEXT_TYPE ); ping = new Buffer( glCLSharedAccelerationsBufferInfo, true, 0 ); glCLSharedAccelerationsBufferInfo.name = "particleAccelerationsBufferPong"; pong = new Buffer( glCLSharedAccelerationsBufferInfo, true, 0 ); mLastStepsAccelerationsPiPoBuffer = new PingPongBuffer("particleAccelerationsPiPoBuffer",ping,pong); //------------------------------------------------------------------------------------------------------- if(initToInvalidObjectID) { unsigned int* objectInfos = reinterpret_cast<unsigned int*>( mObjectInfoPiPoBuffer->getCPUBufferHandle() ); for(unsigned int i = 0; i< numTotalParticles; i++) { objectInfos[i] =0; //init SET_OBJECT_ID(objectInfos[i], invalidObjectID); SET_PARTICLE_ID(objectInfos[i], i); } //no GPU upload, this is done when all RB and fluids are initialized; } } ParticleAttributeBuffers::~ParticleAttributeBuffers() { //nothing to do, buffers are deleted by SimResourceMan. } void ParticleAttributeBuffers::toggleAllBuffersButZIndicesAndOldIndices() { //the ping pong functionality of mOldIndicesPiPoBuffer is only needed //because of the several passes during radix sort; //After sorting, this buffer is only used for reordering, afterwards, its values are irrelevant //and are overwritten with the next radix sort pass; //mZIndicesPiPoBuffer->toggleBuffers(); //mOldIndicesPiPoBuffer->toggleBuffers(); mObjectInfoPiPoBuffer->toggleBuffers(); mPositionsPiPoBuffer->toggleBuffers(); mDensitiesPiPoBuffer->toggleBuffers(); mCorrectedVelocitiesPiPoBuffer->toggleBuffers(); mPredictedVelocitiesPiPoBuffer->toggleBuffers(); mLastStepsAccelerationsPiPoBuffer->toggleBuffers(); } //after all fluids and rigid bodies have been initialized, they have to be uploaded to the //cl device; void ParticleAttributeBuffers::flushBuffers() { //what an amazing piece of code this routine is ;) mParticleIndexTableBuffer->copyFromHostToGPU(); mZIndicesPiPoBuffer->copyFromHostToGPU(); mOldIndicesPiPoBuffer->copyFromHostToGPU(); mObjectInfoPiPoBuffer->copyFromHostToGPU(); mPositionsPiPoBuffer->copyFromHostToGPU(); mDensitiesPiPoBuffer->copyFromHostToGPU(); mCorrectedVelocitiesPiPoBuffer->copyFromHostToGPU(); mPredictedVelocitiesPiPoBuffer->copyFromHostToGPU(); mLastStepsAccelerationsPiPoBuffer->copyFromHostToGPU(); } //usually, all particle attribute data remains on the GPU and don't need to be read back; //but for debugging purposes during development, we will need the read-back functionality; void ParticleAttributeBuffers::readBackBuffers() { //what an amazing piece of code this routine is ;) //read back with forced barrier; this will be slow, but this is a degug routine! mParticleIndexTableBuffer->readBack(true); mZIndicesPiPoBuffer->readBack(true); mOldIndicesPiPoBuffer->readBack(true); mObjectInfoPiPoBuffer->readBack(true); mPositionsPiPoBuffer->readBack(true); mDensitiesPiPoBuffer->readBack(true); mCorrectedVelocitiesPiPoBuffer->readBack(true); mPredictedVelocitiesPiPoBuffer->readBack(true); mLastStepsAccelerationsPiPoBuffer->readBack(true); } void ParticleAttributeBuffers::dumpBuffers( String dumpName, unsigned int frameNumber,bool abortAfterDump, bool zIndicesOnly) { //read back active components; readBackBuffers(); // //read back inactive components // //{ // toggleBuffers(); // readBackBuffers(); // //} // //restore to "real" active buffers; // toggleBuffers(); std::fstream fileStream; Path path = Path( FLEWNIT_DEFAULT_OPEN_CL_KERNEL_SOURCES_PATH ) / String("bufferDumps") / Path( String("bufferDump_")+ dumpName + String("_")+ HelperFunctions::toString(frameNumber)+String(".txt") ); fileStream.open( path.string().c_str(), std::ios::out ); uint* particleIndexTableBuffer = reinterpret_cast<uint*>(mParticleIndexTableBuffer->getCPUBufferHandle()); uint* activeOldIndices = reinterpret_cast<uint*>(mOldIndicesPiPoBuffer->getCPUBufferHandle()); //irrelevant radix sort internal stuff, must be correct wehn radix sort is correct // uint* inactiveOldIndices = // reinterpret_cast<uint*>(mOldIndicesPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); uint* activeObjectInfos = reinterpret_cast<uint*>(mObjectInfoPiPoBuffer->getCPUBufferHandle()); // uint* inactiveObjectInfos = // reinterpret_cast<uint*>(mObjectInfoPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); uint* activeZIndices = reinterpret_cast<uint*>(mZIndicesPiPoBuffer->getCPUBufferHandle()); // uint* inactiveZIndices = // reinterpret_cast<uint*>(mZIndicesPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); Vector4D* activePositions = reinterpret_cast<Vector4D*>(mPositionsPiPoBuffer->getCPUBufferHandle()); Vector4D* inactivePositions = reinterpret_cast<Vector4D*>(mPositionsPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); float* activeDensities = reinterpret_cast<float*>(mDensitiesPiPoBuffer->getCPUBufferHandle()); float* inactiveDensities = reinterpret_cast<float*>(mDensitiesPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); Vector4D* activeCorrectedVelocities = reinterpret_cast<Vector4D*>(mCorrectedVelocitiesPiPoBuffer->getCPUBufferHandle()); Vector4D* inactiveCorrectedVelocities = reinterpret_cast<Vector4D*>(mCorrectedVelocitiesPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); Vector4D* activePredictedVelocities = reinterpret_cast<Vector4D*>(mPredictedVelocitiesPiPoBuffer->getCPUBufferHandle()); Vector4D* inactivePredictedVelocities = reinterpret_cast<Vector4D*>(mPredictedVelocitiesPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); Vector4D* activeAccelerations = reinterpret_cast<Vector4D*>(mLastStepsAccelerationsPiPoBuffer->getCPUBufferHandle()); Vector4D* inactiveAccelerations = reinterpret_cast<Vector4D*>(mLastStepsAccelerationsPiPoBuffer->getInactiveBuffer()->getCPUBufferHandle()); if(zIndicesOnly) { for(unsigned int i = 0 ; i< mNumTotalParticles; i++) { fileStream<<"buff index: "<<i<<"; " <<"Z-Index: (bin.)(" <<HelperFunctions::getBitString(activeZIndices[i])<<")," <<"(dec.):(" <<activeZIndices[i]<<");" <<"part.ID in obj.: "<< GET_PARTICLE_ID(activeObjectInfos[i])<<", " <<"obj.ID of part.: "<< GET_OBJECT_ID(activeObjectInfos[i]) <<";\n" ; } } else { for(unsigned int i = 0 ; i< mNumTotalParticles; i++) { fileStream <<"current buffer index: "<<i<<":\n" <<"part.ID in obj.: "<< GET_PARTICLE_ID(activeObjectInfos[i])<<", " <<"obj.ID of part.: "<< GET_OBJECT_ID(activeObjectInfos[i])<<";\n" <<"particle being initially (at the begin of the simulation) at this index is now at index " <<particleIndexTableBuffer[i]<<";\n" <<"Before the last reordering, this particle was at buffer index " <<activeOldIndices[i]<<";\n" <<"Z-Index bin.(" <<HelperFunctions::getBitString(activeZIndices[i])<<"), " <<"Z-Index dec.(" <<activeZIndices[i]<<");\n" <<"pos(" <<activePositions[i].x<<"," <<activePositions[i].y<<"," <<activePositions[i].z<<"," <<activePositions[i].w<<"), " <<"dens("<<activeDensities[i]<<")," <<"pred.vel(" <<activePredictedVelocities[i].x<<"," <<activePredictedVelocities[i].y<<"," <<activePredictedVelocities[i].z<<"," <<activePredictedVelocities[i].w<<"), " <<"corr.vel(" <<activeCorrectedVelocities[i].x<<"," <<activeCorrectedVelocities[i].y<<"," <<activeCorrectedVelocities[i].z<<"," <<activeCorrectedVelocities[i].w<<"), " <<"accel.(" <<activeAccelerations[i].x<<"," <<activeAccelerations[i].y<<"," <<activeAccelerations[i].z<<"," <<activeAccelerations[i].w<<")," <<"\n\n"; } } fileStream.close(); if(abortAfterDump) { //shut down assert(0&&"abort on purpose after programmer requested buffer dump :)"); //URE_INSTANCE->requestMainLoopQuit(); } } }
[ "markusschlueter@uni-koblenz.de" ]
markusschlueter@uni-koblenz.de
6a0a6ba3fbcd1b3f071c27d449e6b979029eed64
b392c81ac2462ef8c06c89e56630e5f3e3d46b65
/GALPROP_56.0.2870_Source/source/AvXCO.cc
510ec5fadeccc905373dfcc6fd0abfc4cc5da9a0
[]
no_license
sadkoeni/galprop
a577cde365008297dca13b241b1ce3ebff60a124
002838850041b2d560a0926e2bf810acc433e6ee
refs/heads/master
2023-01-08T22:38:59.428165
2020-11-16T15:08:39
2020-11-16T15:08:39
312,309,109
0
1
null
null
null
null
UTF-8
C++
false
false
4,218
cc
#include "galprop_classes.h" #include "galprop_internal.h" #include <ErrorLogger.h> #include <BaseSkyFitsIO.h> #include <iostream> #include <fstream> int Galprop::AvXCO(std::string galdefPath, std::string fitsPath, std::string outputPath, std::string outputPrefix, std::string runNumber) { if (configure.init(galdefPath, fitsPath, outputPath, outputPrefix)) { FATAL("Internal error. Fix data paths!"); return 1; } if (galdef.read(configure.fVersion, runNumber, configure.fGaldefDirectory)) { FATAL("Internal error. Problem reading from galdef file!"); return 1; } /* if ( 0 != create_galaxy() ) { FATAL("Internal error. Problem allocating memory."); return 1; } */ //Read in the CO gas maps read_gas_maps("COR"); //Set up the los integrators std::vector< std::unique_ptr< SM::LOSfunction<double> > > funcs(3); funcs[0].reset(new GasFunction("CO", 0, *this)); //Plain CO funcs[1].reset(new GasFunction("H2", 0, *this)); //H2, X corrected CO funcs[2].reset(new GasFunction("H2", 1.0, *this)); //H2, scaled with radius to get effective radius std::vector<double> Rbins(&galaxy.R_bins[0], &galaxy.R_bins[0]+galaxy.n_Ring); Rbins.push_back(galaxy.R_bins[2*galaxy.n_Ring-1]); SM::LOSintegrator<double> losInt(galdef.r_max, galdef.z_min, galdef.z_max, Rbins, galdef.fCameraLocation, galdef.LoS_step, galdef.los_integration_accuracy, galdef.LoS_minStep); if (3 == galdef.skymap_format) { std::vector< std::unique_ptr< SM::BaseSky<double> > > avXCOhp(galaxy.n_Ring), avRhp(galaxy.n_Ring); for (int i = 0; i < galaxy.n_Ring; ++i ) { avXCOhp[i] = galaxy.hpCOR[i]->clone(); avRhp[i] = galaxy.hpCOR[i]->clone(); } #pragma omp parallel for schedule(dynamic) default(shared) for ( int ii = 0; ii < galaxy.hpCOR[0]->Npix(); ++ii ) { auto co = galaxy.hpCOR[0]->GetCoordinate(ii); double l, b; co.getCoordinates(l, b, SM::CoordSys::GAL); l *= utl::kConvertRadiansToDegrees; b *= utl::kConvertRadiansToDegrees; double dl = 90./galaxy.hpCOR[0]->Nside(); vector< vector<double> > gas = losInt.integrate(l, b, funcs); for ( size_t j = 0; j < gas[0].size(); ++j ) { if ( gas[0][j] != 0 ) { #pragma omp critical (avXCO) { avXCOhp[j]->SetValue(ii, 0, gas[1][j]/gas[0][j]); avRhp [j]->SetValue(ii, 0, gas[2][j]/gas[1][j]); } } } } const std::string filestart = configure.fOutputDirectory + configure.fOutputPrefix; const std::string fileend = "_healpix_" + galdef.galdef_ID + ".gz"; for ( int i = 0; i < galaxy.n_Ring; ++i ) { std::ostringstream ost; ost << filestart << "averageXCO_ring_"<<i+1<<fileend; SM::writeToFits(*avXCOhp[i], ost.str(), true, true, "Radius", "kpc"); ost.str(""); ost << filestart << "averageXCORadius_ring_"<<i+1<<fileend; SM::writeToFits(*avRhp[i], ost.str(), true, true, "Radius", "kpc"); } // Calculate the average XCO and the corresponding radius, weighted by the // real CO map. std::vector<double> avXCO(galaxy.n_Ring, 0.0), avR(galaxy.n_Ring, 0.0); for (size_t i_ring = 0; i_ring < galaxy.n_Ring; ++i_ring) { double weight(0), weightR(0); for ( auto it = galaxy.hpCOR[i_ring]->begin(); it != galaxy.hpCOR[i_ring]->end(); ++it) { const size_t ihp = it.healpixIndex(); avXCO[i_ring] += avXCOhp[i_ring]->GetValue(ihp,0) * (*it); avR [i_ring] += avRhp [i_ring]->GetValue(ihp,0)*avXCOhp[i_ring]->GetValue(ihp,0) * (*it); weight += *it; weightR += avXCOhp[i_ring]->GetValue(ihp,0) * (*it); } avXCO[i_ring] /= weight; avR [i_ring] /= weightR; } // Possibly store it as a fits file in the future, but a simple text file // will due for now const std::string filename = filestart + "averageXCO_" + galdef.galdef_ID + ".txt"; std::fstream ofs(filename.c_str(), std::fstream::trunc | std::fstream::out); for (size_t i_ring = 0; i_ring < galaxy.n_Ring; ++i_ring) { ofs << avR[i_ring] << "\t" << avXCO[i_ring] << std::endl; } ofs.close(); } return 0; }
[ "stephan.koenigstorfer@cern.ch" ]
stephan.koenigstorfer@cern.ch
e15c13aea3e9d46238f560cd954d2db47f8b0b43
84f2b24c65a4c6109dbaceaaab8da7078951cd8d
/Arrays/RowWithMax1s.cpp
c722cb4af5d0536f34ea7adf71a84d37fdb45d6b
[]
no_license
devedu-AI/Competitive-Coding-for-Interviews
4e6c2fb5784ef994625685d1578e617eb94b62fd
5ac81e3fc221dc8d6c3f4b12d7c57a5ae989427c
refs/heads/master
2023-06-28T01:55:33.072689
2021-07-11T17:42:12
2021-07-11T17:42:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
890
cpp
// { Driver Code Starts #include <bits/stdc++.h> using namespace std; // } Driver Code Ends //User function template for C++ class Solution{ public: int rowWithMax1s(vector<vector<int> > arr, int n, int m) { // code here int i = 0, j = m-1, res = -1; while(i < n && j < m && i >= 0 && j >= 0) { if(arr[i][j] == 1) res = i, j--; else i++; } return res; } }; // { Driver Code Starts. int main() { int t; cin >> t; while (t--) { int n, m; cin >> n >> m; vector< vector<int> > arr(n,vector<int>(m)); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin>>arr[i][j]; } } Solution ob; auto ans = ob.rowWithMax1s(arr, n, m); cout << ans << "\n"; } return 0; } // } Driver Code Ends
[ "52482148+spaceman-dev@users.noreply.github.com" ]
52482148+spaceman-dev@users.noreply.github.com
5187efde8e4e75ad67792a5b9720ad307f41c261
5ee0eb940cfad30f7a3b41762eb4abd9cd052f38
/Case_save/case6/2700/epsilon
9d4fcc6a3bf598d1fa9c76d0324e8c82a9c8ee37
[]
no_license
mamitsu2/aircond5_play4
052d2ff593661912b53379e74af1f7cee20bf24d
c5800df67e4eba5415c0e877bdeff06154d51ba6
refs/heads/master
2020-05-25T02:11:13.406899
2019-05-20T04:56:10
2019-05-20T04:56:10
187,570,146
0
0
null
null
null
null
UTF-8
C++
false
false
10,235
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "2700"; object epsilon; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -3 0 0 0 0]; internalField nonuniform List<scalar> 459 ( 0.000523194 0.000687172 0.000727944 0.000841351 0.000957939 0.00107814 0.00120786 0.0013349 0.00142444 0.00145476 0.00140975 0.00128621 0.001096 0.000870628 0.000654874 4.74036e-05 8.28084e-05 0.000117827 0.000117335 0.000105955 9.17959e-05 7.55259e-05 6.13738e-05 5.01857e-05 4.14907e-05 3.47003e-05 2.93407e-05 2.50706e-05 2.16191e-05 1.87433e-05 1.62365e-05 1.39118e-05 1.26782e-05 9.84907e-06 0.00131864 0.00186589 0.0006512 0.000633899 0.000670295 0.000728157 0.000811053 0.000911661 0.000999708 0.00104743 0.00103585 0.000961796 0.000835222 0.000683745 0.000567539 0.000709728 0.000143585 5.65115e-05 0.000132539 0.000142154 0.000130281 0.000111442 9.35836e-05 8.44409e-05 6.82195e-05 5.39079e-05 4.26088e-05 3.39266e-05 2.72838e-05 2.2195e-05 1.83021e-05 1.54211e-05 1.3623e-05 1.2852e-05 3.48723e-05 2.33088e-05 0.00238788 0.00450478 0.000817299 0.0006152 0.000653559 0.000745847 0.000877391 0.00102921 0.00115502 0.0012207 0.0012118 0.00113315 0.000997115 0.000836968 0.000690813 0.000622539 0.000770351 0.00040328 0.000297543 0.000228081 0.000178073 0.000141216 0.000119351 0.000217663 0.000148745 0.00010537 7.73152e-05 5.85791e-05 4.56704e-05 3.65385e-05 2.99735e-05 2.5278e-05 1.91489e-05 1.62164e-05 6.84702e-05 3.76248e-05 0.00383439 0.00924312 0.00130849 0.000645278 0.000664936 0.000803137 0.00101639 0.00124123 0.00139606 0.00145884 0.00143184 0.00132966 0.00116106 0.000969333 0.000797649 0.000682831 0.00066379 0.00125677 0.000714187 0.000431328 0.000290022 0.000209753 0.00016009 0.000137055 0.000311058 0.000232709 0.000185445 0.000153866 0.000129878 0.000110418 9.36406e-05 7.80162e-05 6.22974e-05 3.65097e-05 2.48718e-05 0.000122581 5.11491e-05 0.00580297 0.0163024 0.00259601 0.000821622 0.0007428 0.000948001 0.00133353 0.00162702 0.0017681 0.00178993 0.00171924 0.00156962 0.00135505 0.00110755 0.000867278 0.000669034 0.000533451 0.000479584 0.000391243 0.000309176 0.00024302 0.000191947 0.000153522 0.000127852 0.000122754 0.000113183 0.000103701 9.44543e-05 8.49785e-05 7.53267e-05 6.59137e-05 5.71072e-05 4.90637e-05 3.86098e-05 3.03343e-05 8.42445e-05 5.91474e-05 9.44938e-05 0.000160337 0.000225508 0.00851125 0.024022 0.00579897 0.00169374 0.00126806 0.0016277 0.00213763 0.00232792 0.00234351 0.00226751 0.00212357 0.00190471 0.00161452 0.00128311 0.000959152 0.000690169 0.000502513 0.000393739 0.000324413 0.000267816 0.00021761 0.00017578 0.000143538 0.00012162 0.000110551 0.000105145 0.000101422 9.72124e-05 9.13099e-05 8.27315e-05 7.17738e-05 6.07081e-05 5.07672e-05 4.20623e-05 3.77671e-05 5.88898e-05 6.17037e-05 7.33467e-05 0.000299985 0.000260864 0.011529 0.0285617 0.0117031 0.00538119 0.0040189 0.00401232 0.00379992 0.0035065 0.00322038 0.00295852 0.00268467 0.00235078 0.00194305 0.0014941 0.00106533 0.00072079 0.000490482 0.000359802 0.000285903 0.000233058 0.000189107 0.000154321 0.000129687 0.000115203 0.00010981 0.000110031 0.000112248 0.000114641 0.000115974 0.000114387 0.000105814 9.35003e-05 8.1496e-05 7.14491e-05 6.91759e-05 8.21191e-05 0.000106089 0.00017156 0.000423553 0.000392411 0.0121115 0.0299105 0.017235 0.0123212 0.00968207 0.00754627 0.00601553 0.0049999 0.00433975 0.00386636 0.003426 0.00291425 0.00231794 0.00169303 0.00112216 0.00069543 0.000436569 0.000300961 0.000232126 0.000187387 0.000153968 0.000130664 0.00011688 0.000111473 0.000112842 0.000118972 0.000128389 0.000140789 0.000156377 0.000175095 0.000195705 0.000208988 0.000221377 0.00024745 0.000300185 0.000458413 0.000842893 0.00166428 0.00558454 0.00133902 0.0111131 0.0182108 0.0146319 0.0112079 0.00880918 0.00730598 0.00640588 0.00586688 0.00547144 0.00502293 0.00438549 0.003528 0.00258213 0.00169289 0.000952099 0.000513034 0.000318026 0.000225832 0.000176252 0.000144495 0.000123355 0.000110856 0.000105624 0.000106362 0.000111964 0.000121763 0.000135873 0.000155326 0.000181991 0.000218636 0.000269102 0.000338718 0.000435319 0.000579851 0.00079246 0.00108156 0.00141583 0.00171596 0.00194279 0.00106987 0.00375318 0.00660938 0.00845851 0.00893443 0.00891127 0.00843306 0.00743137 0.00602186 0.0044141 0.00276041 0.00165772 0.000959361 0.00054565 0.0003321 0.000229487 0.000177244 0.000147155 0.000127768 0.000115058 0.00010771 0.000104928 0.000106044 0.000110591 0.000118495 0.000130174 0.00014663 0.000169613 0.000201956 0.000248073 0.000314224 0.000408198 0.00054063 0.000719926 0.000940419 0.00117537 0.00139731 0.00124472 0.000606832 0.00373394 0.00849311 0.00847977 0.00702218 0.00607326 0.00508819 0.00401246 0.00295177 0.00200846 0.00125448 0.00076561 0.000477842 0.000320571 0.000239928 0.000198767 0.00017591 0.000161231 0.000150494 0.000142066 0.000135387 0.00013073 0.000128619 0.000129393 0.000133564 0.00014191 0.000155532 0.000175997 0.000205595 0.000247672 0.00030676 0.000389034 0.000501163 0.000645965 0.000816868 0.000997637 0.00125215 0.000664731 0.000668745 0.00267926 0.00319686 0.00360898 0.00452458 0.00401073 0.00356879 0.00323288 0.00278467 0.0022479 0.00170075 0.0012051 0.00081206 0.000543135 0.000376754 0.000277085 0.00021607 0.00017699 0.000150941 0.000133436 0.000122178 0.000115824 0.00011356 0.000114609 0.000118317 0.000124647 0.000133779 0.000146121 0.000162373 0.000183707 0.000211759 0.000247592 0.000293372 0.000351707 0.000425917 0.000519247 0.000642744 0.000677597 0.000513279 0.000413492 0.000598973 ) ; boundaryField { floor { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 29 ( 0.000654874 4.74036e-05 8.28084e-05 0.000117827 0.000117335 0.000105955 9.17959e-05 7.55259e-05 6.13738e-05 5.01857e-05 4.14907e-05 3.47003e-05 2.93407e-05 2.50706e-05 2.16191e-05 1.87433e-05 1.62365e-05 1.39118e-05 1.26782e-05 9.84907e-06 9.84907e-06 2.33088e-05 3.76248e-05 5.11491e-05 0.000654874 4.74036e-05 5.65115e-05 0.00040328 0.00125677 ) ; } ceiling { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 43 ( 0.00267926 0.00319686 0.00360898 0.00452458 0.00401073 0.00356879 0.00323288 0.00278467 0.0022479 0.00170075 0.0012051 0.00081206 0.000543135 0.000376754 0.000277085 0.00021607 0.00017699 0.000150941 0.000133436 0.000122178 0.000115824 0.00011356 0.000114609 0.000118317 0.000124647 0.000133779 0.000146121 0.000162373 0.000183707 0.000211759 0.000247592 0.000293372 0.000351707 0.000425917 0.000519247 0.000642744 0.000677597 0.000513279 0.000413492 0.000598973 0.0111131 0.0182108 0.00373394 ) ; } sWall { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value uniform 0.00267926; } nWall { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 6(0.000225508 0.000260864 0.000392411 0.000606832 0.000668745 0.000598973); } sideWalls { type empty; } glass1 { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 9(0.000523194 0.00131864 0.00238788 0.00383439 0.00580297 0.00851125 0.011529 0.0121115 0.0111131); } glass2 { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 2(0.00133902 0.00106987); } sun { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 14 ( 0.000523194 0.000687172 0.000727944 0.000841351 0.000957939 0.00107814 0.00120786 0.0013349 0.00142444 0.00145476 0.00140975 0.00128621 0.001096 0.000870628 ) ; } heatsource1 { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 3(9.44938e-05 0.000160337 0.000225508); } heatsource2 { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 4(0.000709728 0.000143585 0.000143585 0.000770351); } Table_master { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 9(0.000217663 0.000148745 0.00010537 7.73152e-05 5.85791e-05 4.56704e-05 3.65385e-05 2.99735e-05 2.5278e-05); } Table_slave { Cmu 0.09; kappa 0.41; E 9.8; type epsilonWallFunction; value nonuniform List<scalar> 9(0.000311058 0.000232709 0.000185445 0.000153866 0.000129878 0.000110418 9.36406e-05 7.80162e-05 6.22974e-05); } inlet { type turbulentMixingLengthDissipationRateInlet; mixingLength 0.01; phi phi; k k; value uniform 0.000101881; } outlet { type zeroGradient; } } // ************************************************************************* //
[ "mitsuaki.makino@tryeting.jp" ]
mitsuaki.makino@tryeting.jp
64ac546299bb2ceaacf6ae3207c66bc50a89bd6f
3cad09b3874f44689b9957bf83fccb7d665d64dd
/common/IMessage.cpp
abe924c1af726d08e5f52eac57784502f5047f7f
[]
no_license
YLeventhal/Final-Project---Messaging-service
0f65227affc06a9636f4095c1ef1eb2d511e52e8
76c108f7ac923343090053ccbf864b5de4cbc61c
refs/heads/master
2020-05-06T13:42:34.139143
2019-04-08T14:16:25
2019-04-08T14:16:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
120
cpp
#include "stdafx.h" #include "IMessage.h" #include "constants.h" IMessage::IMessage() { } IMessage::~IMessage() { }
[ "43444695+TourFourier@users.noreply.github.com" ]
43444695+TourFourier@users.noreply.github.com
f4494408fcac7546f08d297ed3d0d725bede0dec
8d81f8a15efd9a4d0f11ac3fe64d822eb98bd37d
/1_leetcode/game_of_life.cpp
1de0e3452a526729f338efa790b76c9f35227944
[]
no_license
wyxmails/MyCode
b32a14d3b3a63dd9b3049d266231728419ed60d1
641abffc65b52b6f4a279432a8c4037a3b6a900c
refs/heads/master
2020-12-25T17:24:03.304677
2016-08-28T14:05:10
2016-08-28T14:05:10
18,900,363
2
0
null
null
null
null
UTF-8
C++
false
false
2,732
cpp
/* Game of Life My Submissions Question Solution Total Accepted: 3621 Total Submissions: 11545 Difficulty: Medium According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970." Given a board with m by n cells, each cell has an initial state live (1) or dead (0). Each cell interacts with its eight neighbors (horizontal, vertical, diagonal) using the following four rules (taken from the above Wikipedia article): Any live cell with fewer than two live neighbors dies, as if caused by under-population. Any live cell with two or three live neighbors lives on to the next generation. Any live cell with more than three live neighbors dies, as if by over-population.. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction. Write a function to compute the next state (after one update) of the board given its current state. Follow up: Could you solve it in-place? Remember that the board needs to be updated at the same time: You cannot update some cells first and then use their updated values to update other cells. In this question, we represent the board using a 2D array. In principle, the board is infinite, which would cause problems when the active area encroaches the border of the array. How would you address these problems? */ class Solution { public: void gameOfLife(vector<vector<int>>& board) { int m = board.size(); if(m==0) return; int n = board[0].size(); if(n==0) return; for(int i=0;i<m;++i){ for(int j=0;j<n;++j){ int alives = countAlive(i,j,m,n,board); if(board[i][j]==0&&alives==3) board[i][j] = 3; else if(board[i][j]==1&&(alives<=1||alives>3)) board[i][j] = 2; } } for(int i=0;i<m;++i){ for(int j=0;j<n;++j){ if(board[i][j]>1) board[i][j] -= 2; } } } int countAlive(int i,int j,int m,int n,const vector<vector<int>>& board){ int res = 0; if(i-1>=0){ if(j-1>=0&&(board[i-1][j-1]==1||board[i-1][j-1]==2)) res++; if(board[i-1][j]==1||board[i-1][j]==2) res++; if(j+1<n&&(board[i-1][j+1]==1||board[i-1][j+1]==2)) res++; } if(i+1<m){ if(j+1<n&&(board[i+1][j+1]==1||board[i+1][j+1]==2)) res++; if(board[i+1][j]==1||board[i+1][j]==2) res++; if(j-1>=0&&(board[i+1][j-1]==1||board[i+1][j-1]==2)) res++; } if(j-1>=0&&(board[i][j-1]==1||board[i][j-1]==2)) res++; if(j+1<n&&(board[i][j+1]==1||board[i][j+1]==2)) res++; return res; } };
[ "wyxmails@gmail.com" ]
wyxmails@gmail.com
efebacd240a6a8a08aa4436e9024df908cb0e848
8ed94ce31ed8ad8a18b712dda877e7b6b179609c
/Data Extraction/review_parser2.cpp
c0f4efc8dfb506eb499281f98c334a37cf4ac5cf
[]
no_license
TGtony/Munchies
ae9a3c3e672cab3e4d909c019dc76d2b9fec5a11
de6634ea4460733967a6c557c14f5b9127711bd0
refs/heads/master
2021-01-24T07:55:07.324492
2016-05-23T18:28:55
2016-05-23T18:28:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,231
cpp
/** * Combines reviews of each product into 1 rview * inputs: data.txt (review data) * output: sorted_chips_data.txt (review data that's ready for adjective extraction) * Next program: adjectiveExtractor.py */ #include <iostream> #include <fstream> #include <sstream> #include <vector> using namespace std; int main() { ifstream thing1; thing1.open("data.txt"); ofstream thing2; thing2.open("sorted_chips_data.txt"); string line; string asin = "9742894116"; thing2 << asin << endl; string review; while(getline(thing1, line)) { string asin1; stringstream sstream(line); sstream >> asin1; if(asin1 != asin) { thing2 << endl; asin = asin1; thing2 << asin << endl; getline(sstream, review); review = review.substr(1, review.size()); thing2 << review << " "; //cout << endl; } else { //thing2 << asin << endl; getline(sstream, review); review = review.substr(1, review.size()); thing2 << review << " "; //cout << endl; } //thing2 << endl; } return 0; }
[ "Tony.Gong04@myhunter.cuny.edu" ]
Tony.Gong04@myhunter.cuny.edu
9e7fb3934beae1b0625cd1e862e8be94e44f1b89
eefd43963108cc839164879ec9a33e6b7949d951
/srcs/PointCloudFilter.cpp
66b4a708f79e889e4da9a3bcbf4acd5cd4aa0550
[ "MIT" ]
permissive
ardasdasdas/point-cloud-processing
afa869077bb5045880ac58bc243946d403457a29
68f08d3c881399bbdd10913bcce8b0ae659a8427
refs/heads/master
2022-12-24T12:30:51.097842
2020-09-17T08:20:11
2020-09-17T08:20:11
281,771,082
4
4
null
2020-09-17T08:20:12
2020-07-22T19:57:09
C++
UTF-8
C++
false
false
570
cpp
#include "PointCloudFilter.h" /** * @file PointCloudFilter.cpp * @author Gokhan Samet Albayrak --> e-mail: gokhanalbayrak43@gmail.com * @date 3 Ocak 2020 Cuma * @brief Bu kod parcacigi uye fonksiyonlarin islemini yapar. */ /* * @brief : Bu fonksiyon yapici fonksiyondur. * @see main() : Fonksiyonun hangi amacla cagirildigini inceleyiniz. */ PointCloudFilter::PointCloudFilter() { } /* * @brief : Bu fonksiyon yikici fonksiyondur. * @see main() : Fonksiyonun hangi amacla cagirildigini inceleyiniz. */ PointCloudFilter::~PointCloudFilter() { }
[ "152120171007@ogrenci.ogu.edu.tr" ]
152120171007@ogrenci.ogu.edu.tr
1f9c1ff6881f95bd76ddfc426585744e5e2a3abc
a89842910b5ba6566a9ba211489780dcea416510
/Project3/Project3/Sprite.h
f22830c4684b2243510cd6632df14d7f663aaec0
[]
no_license
uxrgrtjigtiyrt/sosujuengong
2fdddab98a0f7c67a72c0bd153a25003cfa114ad
2e8a5c1a4c5b35bbce14d7ccb9ec017d2791ddcf
refs/heads/master
2022-12-02T06:09:36.273409
2020-08-19T06:12:16
2020-08-19T06:12:16
286,415,671
0
0
null
null
null
null
UTF-8
C++
false
false
373
h
#pragma once #include "Object.h" class Sprite : public Object { private: LPDIRECT3DTEXTURE9 texture; D3DCOLOR color; RECT visibleRect; int width; int height; public: Sprite(char* path); ~Sprite(); void Render(); int getWidth(); int getHeight(); D3DCOLOR getColor(); void setColor(D3DCOLOR color); void setCenter(int width, int height, Sprite* sprite); };
[ "rovin2393@naver.com" ]
rovin2393@naver.com